@import url('https://fonts.googleapis.com/css2?family=Syne:wght@400;500;600;700;800&family=Plus+Jakarta+Sans:wght@300;400;500;600;700&display=swap');

/* ========== Variables ========== */
:root {
    --primary-color: #208CC8;
    --secondary-color: #DC7125;
    --dark-color: #0f172a;
    /* Deeper, more modern dark */
    --light-color: #f8fafc;
    /* Cleaner light */
    --white: #ffffff;
    --gray: #64748b;
    /* Cool gray */
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    /* Smoother transition */
    --font-heading: 'Syne', sans-serif;
    /* Consistent with Logo */
    --font-body: 'Plus Jakarta Sans', sans-serif;
    /* Modern, Geometric, Tech */

    /* Modern Gradients & Effects */
    --primary-gradient: linear-gradient(135deg, #208CC8 0%, #0284c7 100%);
    --secondary-gradient: linear-gradient(135deg, #DC7125 0%, #ea580c 100%);
    --glass-bg: rgba(255, 255, 255, 0.9);
    --glass-border: 1px solid rgba(255, 255, 255, 0.2);
    --glass-shadow: 0 8px 32px 0 rgba(31, 38, 135, 0.15);
    --card-shadow: 0 10px 30px -10px rgba(0, 0, 0, 0.1);
    --card-hover-shadow: 0 20px 40px -10px rgba(0, 0, 0, 0.2);
}

/* ========== Global Styles ========== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: var(--font-body);
    line-height: 1.6;
    color: var(--dark-color);
    overflow-x: hidden;
    letter-spacing: -0.015em;
    /* Tighter for modern feel */
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-heading);
    font-weight: 700;
    line-height: 1.1;
    letter-spacing: -0.02em;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

img {
    max-width: 100%;
    height: auto;
}

a {
    text-decoration: none;
    color: inherit;
}

/* ========== Header & Navigation ========== */
.header {
    background: var(--dark-color);
    /* Default to dark background for visibility */
    position: sticky;
    top: 0;
    z-index: 1000;
    transition: background-color 0.3s ease, padding 0.3s ease, box-shadow 0.3s ease;
    padding: 1rem 0;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    -webkit-backdrop-filter: blur(0px);
    backdrop-filter: blur(0px);
}

.header.scrolled {
    background: rgba(15, 23, 42, 0.95);
    /* Keep dark theme consistent */
    backdrop-filter: blur(10px);
    padding: 0.8rem 0;
    /* Reduced change to minimize jump */
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
}

.header.scrolled .logo-text span {
    color: var(--white);
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.5rem 0;
    /* Reduced padding */
    gap: 1.5rem;
}

.logo {
    display: flex;
    align-items: center;
    text-decoration: none;
    gap: 0.8rem;
    /* Reduced gap */
}

.logo-text-wrapper {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.logo-title {
    font-family: var(--font-heading);
    font-size: 1.3rem;
    /* Reduced size */
    font-weight: 800;
    color: var(--white);
    line-height: 1;
    letter-spacing: -0.02em;
    /* Tighter spacing */
    text-transform: uppercase;
    transition: var(--transition);
}

.logo:hover .logo-title {
    color: var(--primary-color);
}

.logo-slogan {
    font-family: var(--font-body);
    font-size: 0.75rem;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.7);
    margin-top: 4px;
    letter-spacing: 0.08em;
    font-style: italic;
}

.logo img {
    height: 70px;
    width: auto;
    object-fit: contain;
    filter: drop-shadow(0 0 8px rgba(32, 140, 200, 0.3));
    transition: var(--transition);
}

.logo img:hover {
    filter: drop-shadow(0 0 12px rgba(32, 140, 200, 0.5));
    transform: scale(1.05);
}

.footer-logo-img {
    display: block;
    height: 120px;
    width: auto;
    object-fit: contain;
    margin-bottom: 1rem;
    filter: drop-shadow(0 0 8px rgba(32, 140, 200, 0.3));
}


.nav-links {
    display: flex;
    list-style: none;
    gap: 2rem;
    align-items: center;
}

.nav-link {
    color: white;
    font-family: var(--font-body);
    font-weight: 500;
    transition: var(--transition);
    padding: 0.5rem 0;
    letter-spacing: 0.02em;
}

.nav-link:hover,
.nav-link.active {
    color: rgba(255, 255, 255, 0.9);
    text-shadow: 0 0 20px rgba(255, 255, 255, 0.4);
}

.dropdown {
    position: relative;
}

.dropdown::before {
    content: '';
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    height: 0.2rem;
    background: transparent;
}

.dropdown-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    min-width: 250px;
    background: var(--white);
    border-radius: 12px;
    padding: 0.8rem 0;
    margin-top: 0;
    /* Removed gap */
    /* top: 100%; */
    /* Position directly below */
    padding-top: 1rem;
    /* Invisible bridge area */
    clip-path: inset(-20px -20px -20px -20px);
    /* Expand interactive area */
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    z-index: 1001;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all 0.3s cubic-bezier(0.165, 0.84, 0.44, 1);
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.dropdown-menu::before {
    content: '';
    position: absolute;
    top: -20px;
    /* Bridge the gap */
    left: 0;
    width: 100%;
    height: 20px;
    background: transparent;
}

.dropdown:hover .dropdown-menu {
    display: block;
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-menu li {
    padding: 0;
}

.dropdown-menu a {
    display: block;
    padding: 0.8rem 1.5rem;
    color: var(--dark-color);
    font-family: var(--font-body);
    font-weight: 500;
    font-size: 0.95rem;
    transition: all 0.2s ease;
    border-left: 3px solid transparent;
}

.dropdown-menu a:hover,
.dropdown-menu a.active {
    background: var(--light-color);
    color: var(--primary-color);
    border-left-color: var(--primary-color);
    padding-left: 1.8rem;
}

.lang-switcher {
    display: flex;
    gap: 0.5rem;
}

.lang-btn {
    padding: 0.5rem;
    border: 2px solid white;
    background: transparent;
    cursor: pointer;
    border-radius: 5px;
    transition: var(--transition);
    display: flex;
    align-items: center;
    justify-content: center;
}

.lang-btn img {
    border-radius: 2px;
    transition: var(--transition);
}

.lang-btn.active,
.lang-btn:hover {
    background: white;
    transform: scale(1.1);
}

.lang-btn.active img,
.lang-btn:hover img {
    transform: scale(1.1);
}

.mobile-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
}

.mobile-toggle span {
    width: 25px;
    height: 3px;
    background: white;
    transition: var(--transition);
    border-radius: 2px;
}

.mobile-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(8px, 8px);
}

.mobile-toggle.active span:nth-child(2) {
    opacity: 0;
}

.mobile-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(8px, -8px);
}

/* ========== Hero Slider ========== */
.hero-slider {
    position: relative;
    width: 100vw;
    height: 70vh;
    overflow: hidden;
    margin-left: calc(-50vw + 50%);
    margin-top: 0;
}

.hero-slider::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100vw;
    height: 15px;
    background: var(--primary-color);
    z-index: 10;
}

.hero-slider::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100vw;
    height: 15px;
    background: var(--secondary-color);
    z-index: 10;
}

.slider-container {
    position: relative;
    width: 100%;
    height: 100%;
}

.slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 0.5s ease-in-out;
    display: flex;
    align-items: center;
    justify-content: center;
}

.slide.active {
    opacity: 1;
}

.slide img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center;
}

.slide-content {
    position: absolute;
    top: 50%;
    left: 50px;
    transform: translateY(-50%);
    color: white;
    max-width: 600px;
    z-index: 2;
}

.slide-content h2 {
    font-family: var(--font-heading);
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    line-height: 1.1;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.slide-content p {
    font-family: var(--font-body);
    font-size: 1.25rem;
    line-height: 1.6;
    font-weight: 400;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
}

.slider-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 3;
}

.prev-btn {
    left: 20px;
}

.next-btn {
    right: 20px;
}

.prev-btn,
.next-btn {
    position: absolute;
    background: rgba(255, 255, 255, 0.2);
    border: none;
    color: white;
    font-size: 1.5rem;
    padding: 15px 20px;
    border-radius: 50%;
    cursor: pointer;
    transition: var(--transition);
    backdrop-filter: blur(10px);
}

.prev-btn:hover,
.next-btn:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: scale(1.1);
}

.slider-dots {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
    z-index: 3;
}

.dot {
    width: 16px;
    height: 16px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.7);
    cursor: pointer;
    transition: var(--transition);
    border: 2px solid rgba(255, 255, 255, 0.3);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
    padding: 0;
    outline: none;
}

.dot:focus {
    outline: 2px solid white;
    outline-offset: 2px;
}

.dot.active,
.dot:hover {
    background: white;
    transform: scale(1.3);
    border: 2px solid var(--primary-color);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.4);
}

.slider-loading {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 5;
    display: none;
}

.loading-spinner {
    width: 40px;
    height: 40px;
    border: 4px solid rgba(255, 255, 255, 0.3);
    border-top: 4px solid white;
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

/* ========== Products Section ========== */
.products-section {
    padding: 4rem 0 4rem 0;
    background: var(--light-color);
    margin-top: 0;
}

/* Product Categories */
.product-categories {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 3rem;
    flex-wrap: wrap;
}

.category-btn {
    padding: 0.8rem 1.8rem;
    border: 1px solid rgba(32, 140, 200, 0.3);
    background: rgba(255, 255, 255, 0.5);
    color: var(--dark-color);
    border-radius: 50px;
    cursor: pointer;
    transition: var(--transition);
    font-family: var(--font-body);
    font-weight: 600;
    font-size: 0.95rem;
    backdrop-filter: blur(5px);
}

.category-btn:hover,
.category-btn.active {
    background: var(--primary-color);
    border-color: var(--primary-color);
    color: white;
    box-shadow: 0 5px 15px rgba(32, 140, 200, 0.2);
}

/* Product Badges */
.product-card {
    position: relative;
}

.product-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    padding: 0.4rem 1rem;
    border-radius: 30px;
    font-family: var(--font-heading);
    font-size: 0.75rem;
    font-weight: 700;
    color: white;
    z-index: 2;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.product-badge.popular {
    background: var(--primary-color);
}

.product-badge.new {
    background: var(--secondary-color);
}

.product-badge.bestseller {
    background: #28a745;
}

.main-title {
    text-align: center;
    font-size: 3rem;
    margin-bottom: 3rem;
    color: var(--primary-color);
    font-weight: 700;
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.product-card {
    background: var(--white);
    border-radius: 20px;
    /* Softer corners */
    overflow: hidden;
    box-shadow: var(--card-shadow);
    transition: var(--transition);
    text-decoration: none;
    color: inherit;
    display: flex;
    flex-direction: column;
    height: 100%;
    border: 1px solid rgba(0, 0, 0, 0.05);
    /* Subtle border */
}

.product-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--card-hover-shadow);
    border-color: rgba(32, 140, 200, 0.2);
}

.product-image {
    position: relative;
    height: 140px;
    overflow: hidden;
    flex-shrink: 0;
}

.product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transition: var(--transition);
}

.product-image img[src*="ADA-7-RENDER"] {
    object-fit: contain;
    background: var(--white);
    padding: 15px;
}

.product-image img[src*="mada-beyaz"] {
    object-fit: contain;
    background: var(--white);
    padding: 15px;
}

.product-image img[src*="ROBOT-KOL-RENDER"] {
    object-fit: contain;
    background: var(--white);
    padding: 15px;
}

.product-image img[src*="arat.png"] {
    object-fit: contain;
    background: var(--white);
    padding: 15px;
}

.product-image img[src*="fabrika-servis-robotu.webp"],
.product-image img[src*="fabrika-servis-featured"] {
    object-fit: contain;
    background: var(--white);
    padding: 15px;
    max-width: 100%;
    max-height: 100%;
    width: auto;
    height: auto;
}

.product-image img[src*="servis-robotu-v3.webp"],
.product-image img[src*="servis-featured"] {
    object-fit: contain;
    background: var(--white);
    padding: 15px;
    max-width: 100%;
    max-height: 100%;
    width: auto;
    height: auto;
}

.product-card:hover .product-image img {
    transform: scale(1.05);
}

.product-info {
    padding: 1rem;
    text-align: left;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

/* Genel product-info stilleri kaldırıldı - sadece sınıf bazlı kurallar kullanılıyor */

/* Ürün başlıklarının uzunluğuna göre font boyutları - Sınıf bazlı */

/* Kısa başlıklar */
.product-card.short-title .product-info h3 {
    font-size: 1rem;
    margin-bottom: 0.5rem;
    color: var(--primary-color);
    font-weight: 600;
    text-align: center;
}

.product-card.short-title .product-info p {
    color: var(--gray);
    font-size: 1rem;
    line-height: 1.4;
    text-align: left;
    flex-grow: 1;
}

/* Orta uzunluk başlıklar */
.product-card.medium-title .product-info h3 {
    font-size: 1rem;
    margin-bottom: 0.5rem;
    color: var(--primary-color);
    font-weight: 600;
    text-align: center;
}

.product-card.medium-title .product-info p {
    color: var(--gray);
    font-size: 1rem;
    line-height: 1.4;
    text-align: left;
    flex-grow: 1;
}

/* Uzun başlıklar */
.product-card.long-title .product-info h3 {
    font-size: 1rem;
    margin-bottom: 0.5rem;
    color: var(--primary-color);
    font-weight: 600;
    text-align: center;
}

.product-card.long-title .product-info p {
    color: var(--gray);
    font-size: 1rem;
    line-height: 1.4;
    text-align: left;
    flex-grow: 1;
}

/* ========== Buttons ========== */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 1rem 2.5rem;
    border-radius: 50px;
    font-family: var(--font-heading);
    font-weight: 600;
    transition: var(--transition);
    cursor: pointer;
    border: none;
    font-size: 1rem;
    letter-spacing: 0.02em;
    position: relative;
    overflow: hidden;
}

.btn-primary {
    background: var(--primary-gradient);
    color: var(--white);
    box-shadow: 0 4px 15px rgba(32, 140, 200, 0.3);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.btn-primary:hover {
    background: linear-gradient(135deg, #0284c7 0%, #208CC8 100%);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(32, 140, 200, 0.4);
}

.btn-secondary {
    background: var(--secondary-gradient);
    color: var(--white);
    box-shadow: 0 4px 15px rgba(220, 113, 37, 0.3);
}

.btn-secondary:hover {
    background: linear-gradient(135deg, #ea580c 0%, #DC7125 100%);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(220, 113, 37, 0.4);
}

.btn-catalog {
    background: var(--primary-color);
    color: var(--white);
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.btn-catalog:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.catalog-download {
    text-align: center;
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 2px solid #eee;
}

.product-btn {
    display: inline-block;
    background: var(--primary-color);
    color: var(--white);
    padding: 0.75rem 1.5rem;
    border-radius: 25px;
    font-weight: 600;
    font-size: 0.9rem;
    text-decoration: none;
    transition: var(--transition);
    margin-top: 1rem;
    text-align: center;
}

.product-btn:hover {
    background: #1a7ab0;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(32, 140, 200, 0.3);
}



/* ========== Section Titles ========== */
.section-title {
    text-align: center;
    font-family: var(--font-heading);
    font-size: 2.8rem;
    margin-bottom: 4rem;
    color: var(--dark-color);
    position: relative;
    padding-bottom: 1rem;
    letter-spacing: -0.02em;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: var(--primary-gradient);
    border-radius: 2px;
}

/* ========== Why Choose Us ========== */
.why-choose-us {
    padding: 5rem 0;
    background: var(--light-color);
}

.section-subtitle {
    text-align: center;
    color: var(--gray);
    font-size: 1.2rem;
    margin-bottom: 3rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.feature-card {
    background: var(--white);
    padding: 3rem 2rem;
    border-radius: 20px;
    text-align: center;
    box-shadow: var(--card-shadow);
    transition: var(--transition);
    border-top: none;
    /* Removing the thick top border for a cleaner look */
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: var(--primary-gradient);
    transition: var(--transition);
    transform: scaleX(0);
    transform-origin: left;
}

.feature-card:nth-child(even)::before {
    background: var(--secondary-gradient);
}

.feature-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--card-hover-shadow);
}

.feature-card:hover::before {
    transform: scaleX(1);
}

.feature-icon {
    width: 80px;
    height: 80px;
    background: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 2rem;
    color: white;
}

.feature-card:nth-child(even) .feature-icon {
    background: var(--secondary-color);
}

.feature-card h3 {
    color: var(--dark-color);
    font-size: 1.4rem;
    margin-bottom: 1rem;
}

.feature-card p {
    color: var(--gray);
    line-height: 1.6;
    font-size: 1rem;
}

/* ========== Success Stories ========== */
.success-stories {
    padding: 5rem 0;
    background: var(--white);
}

.stories-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.story-card {
    background: var(--light-color);
    padding: 2.5rem 2rem;
    border-radius: 15px;
    text-align: center;
    transition: var(--transition);
    border-left: 5px solid var(--primary-color);
}

.story-card:nth-child(2) {
    border-left-color: var(--secondary-color);
}

.story-card:nth-child(3) {
    border-left-color: var(--primary-color);
}

.story-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.story-stats {
    margin-bottom: 1.5rem;
}

.stat-number {
    display: block;
    font-size: 3rem;
    font-weight: bold;
    color: var(--primary-color);
    line-height: 1;
}

.story-card:nth-child(2) .stat-number {
    color: var(--secondary-color);
}

.stat-label {
    display: block;
    font-size: 0.9rem;
    color: var(--gray);
    margin-top: 0.5rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.story-card h4 {
    color: var(--dark-color);
    font-size: 1.3rem;
    margin-bottom: 1rem;
}

.story-card p {
    color: var(--gray);
    line-height: 1.6;
    font-size: 1rem;
}

/* ========== Modal ========== */
.modal {
    display: none;
    position: fixed;
    z-index: 2000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7);
    overflow: auto;
}

.modal-content {
    background-color: var(--white);
    margin: 5% auto;
    padding: 3rem;
    border-radius: 15px;
    width: 90%;
    max-width: 600px;
    position: relative;
    animation: slideDown 0.3s ease-out;
}

@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-50px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.close {
    color: var(--gray);
    float: right;
    font-size: 2rem;
    font-weight: bold;
    cursor: pointer;
    transition: var(--transition);
}

.close:hover {
    color: var(--dark-color);
}

.modal-content h2 {
    margin-bottom: 2rem;
    color: var(--primary-color);
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
    color: var(--dark-color);
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.75rem;
    border: 2px solid #ddd;
    border-radius: 8px;
    font-size: 1rem;
    font-family: inherit;
    transition: var(--transition);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
}

/* ========== Footer ========== */
.footer {
    background: var(--dark-color);
    color: var(--white);
    padding: 4rem 0 2rem 0;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 2fr 1.5fr;
    gap: 2rem;
    align-items: center;
    margin-bottom: 1rem;
}

/* Footer Left */
.footer-left {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.footer-left p {
    font-size: 0.9rem;
    color: #ccc;
    margin: 0;
}

/* Footer Center */
.footer-center {
    display: flex;
    justify-content: center;
}

.footer-links-inline {
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
}

.footer-links-inline a {
    color: #e0e0e0;
    text-decoration: none;
    font-size: 0.9rem;
    transition: var(--transition);
}

.footer-links-inline a:hover {
    color: var(--primary-color);
}

/* Footer Right */
.footer-right {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    align-items: flex-end;
}

.contact-compact {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.contact-compact a {
    color: #e0e0e0;
    text-decoration: none;
    font-size: 0.85rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    transition: var(--transition);
}

.contact-compact a:hover {
    color: var(--primary-color);
}

.contact-compact i {
    width: 14px;
    color: var(--primary-color);
}

.footer-section h5 {
    font-size: 1rem;
    margin-bottom: 1rem;
    margin-top: 2rem;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 0.75rem;
}

.footer-section a {
    color: #ccc;
    transition: var(--transition);
}

.footer-section a:hover {
    color: var(--white);
    padding-left: 5px;
}

/* Company Info */
.company-info .footer-logo {
    margin-bottom: 1rem;
}

.company-description {
    color: #ccc;
    line-height: 1.6;
    margin-bottom: 2rem;
    font-size: 0.95rem;
}

/* Newsletter */
.newsletter-form {
    display: flex;
    gap: 0.5rem;
    margin-top: 1rem;
}

.newsletter-form input {
    flex: 1;
    padding: 0.8rem;
    border: 1px solid #444;
    background: #333;
    color: white;
    border-radius: 5px;
    font-size: 0.9rem;
}

.newsletter-form input::placeholder {
    color: #999;
}

.newsletter-form button {
    padding: 0.8rem 1.5rem;
    background: var(--primary-color);
    color: white;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: var(--transition);
    font-size: 0.9rem;
    font-weight: 600;
}

.newsletter-form button:hover {
    background: var(--secondary-color);
}

/* Contact Info */
.contact-info {
    margin-bottom: 2rem;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    margin-bottom: 1rem;
    color: #ccc;
    font-size: 0.9rem;
}

.contact-item i {
    color: var(--primary-color);
    width: 16px;
    text-align: center;
}

.contact-item a {
    color: #e0e0e0;
    text-decoration: none;
}

.contact-item a:hover {
    color: white;
    padding-left: 0;
}

.contact-item span {
    color: #e0e0e0;
}

/* Social Media */
.social-section {
    margin-top: 2rem;
}

.social-icons {
    display: flex;
    gap: 0.8rem;
}

.social-icons a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    background: var(--primary-color);
    border-radius: 50%;
    color: var(--white);
    font-size: 0.9rem;
    transition: var(--transition);
}

.social-icons a:hover {
    background: var(--secondary-color);
    transform: translateY(-2px);
}

/* Footer Bottom */
.footer-bottom {
    border-top: 1px solid #333;
    padding: 1rem 0;
    text-align: center;
}

.footer-bottom p {
    color: #999;
    margin: 0;
    font-size: 0.85rem;
}

.footer-links {
    display: flex;
    gap: 2rem;
}

.footer-links a {
    color: #999;
    font-size: 0.9rem;
    transition: var(--transition);
}

.footer-links a:hover {
    color: white;
}

/* ========== Product Page Styles ========== */
.product-main-grid {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 3rem;
    align-items: start;
    margin-top: 2rem;
}

/* Layout for product with additional image - all in one row */
.product-main-grid.product-with-additional-image {
    grid-template-columns: 1fr 1.5fr 1fr;
    gap: 2rem;
}

.product-main-grid.product-with-additional-image .product-main-image {
    display: none;
}

.product-main-grid.product-with-additional-image .product-additional-image {
    grid-column: 1;
    grid-row: 1;
    align-self: start;
    display: flex;
    align-items: center;
    justify-content: center;
}

.product-main-grid.product-with-additional-image .product-additional-image img {
    width: 100%;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.product-main-grid.product-with-additional-image .product-description {
    grid-column: 2;
    grid-row: 1;
    align-self: start;
}

.product-main-grid.product-with-additional-image .product-features {
    grid-column: 3;
    grid-row: 1;
    align-self: start;
    margin-top: 0;
}

.product-banner {
    height: 500px;
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.product-banner::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.3);
    z-index: 1;
}

.product-banner-content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: white;
    max-width: 800px;
    padding: 0 2rem;
}

.product-banner h1 {
    font-size: 4.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.7);
    line-height: 1.1;
}

.product-banner .subtitle {
    font-size: 1.4rem;
    margin-bottom: 1.5rem;
    opacity: 0.95;
    font-weight: 300;
    text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.7);
}

.product-banner .features-list {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-bottom: 2rem;
    flex-wrap: wrap;
}

.product-banner .feature-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 1rem;
    background: rgba(255, 255, 255, 0.1);
    padding: 0.5rem 1rem;
    border-radius: 25px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.product-banner .feature-item i {
    color: var(--accent-color);
    font-size: 1.2rem;
}

.product-banner .banner-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.product-banner .btn {
    padding: 1rem 2rem;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 30px;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.product-banner .btn-primary {
    background: linear-gradient(135deg, var(--primary-color), #1a7bb8);
    color: white;
    border: none;
    box-shadow: 0 4px 15px rgba(32, 140, 200, 0.3);
}

.product-banner .btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(32, 140, 200, 0.4);
}

.product-banner .btn-secondary {
    background: rgba(255, 255, 255, 0.1);
    color: white;
    border: 2px solid rgba(255, 255, 255, 0.3);
    backdrop-filter: blur(10px);
}

.product-banner .btn-secondary:hover {
    background: rgba(255, 255, 255, 0.2);
    border-color: rgba(255, 255, 255, 0.5);
    transform: translateY(-2px);
}

.scroll-indicator {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
    color: white;
    text-align: center;
    opacity: 0.8;
    cursor: pointer;
    transition: opacity 0.3s ease;
}

.scroll-indicator i {
    font-size: 1.5rem;
    animation: bounce 2s infinite;
}

.scroll-indicator:hover {
    opacity: 1;
}

.scroll-indicator:hover i {
    animation-duration: 1s;
}

@keyframes bounce {

    0%,
    20%,
    50%,
    80%,
    100% {
        transform: translateY(0);
    }

    40% {
        transform: translateY(-10px);
    }

    60% {
        transform: translateY(-5px);
    }
}

/* Responsive Design */
@media (max-width: 768px) {
    .product-banner {
        height: 500px;
    }

    .product-banner h1 {
        font-size: 2.8rem;
        line-height: 1.2;
    }

    .product-banner .subtitle {
        font-size: 1.1rem;
        margin-bottom: 1.2rem;
    }

    .product-banner .features-list {
        gap: 0.8rem;
        margin-bottom: 1.5rem;
    }

    .product-banner .feature-item {
        font-size: 0.85rem;
        padding: 0.4rem 0.8rem;
    }

    .product-banner .banner-buttons {
        flex-direction: column;
        align-items: center;
    }

    .product-banner .btn {
        padding: 0.8rem 1.5rem;
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .product-banner {
        height: 450px;
    }

    .product-banner h1 {
        font-size: 2.2rem;
        line-height: 1.3;
    }

    .product-banner .subtitle {
        font-size: 1rem;
    }

    .product-banner .features-list {
        flex-direction: column;
        gap: 0.5rem;
        align-items: center;
    }

    .product-banner .feature-item {
        font-size: 0.8rem;
        padding: 0.3rem 0.6rem;
    }
}

.product-header {
    padding: 3rem 0;
    text-align: center;
}

.product-header h1 {
    font-size: 3rem;
    margin-bottom: 2rem;
    color: var(--primary-color);
}

.product-buttons {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    margin-bottom: 3rem;
    flex-wrap: wrap;
}

.product-buttons .btn {
    padding: 1rem 2rem;
    font-size: 1.1rem;
    font-weight: 600;
    min-width: 180px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.product-buttons .btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
}

.product-main {
    padding: 3rem 0;
}

.product-main-image img {
    width: 100%;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.product-description {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--gray);
}

.product-description h3 {
    color: var(--primary-color);
    font-size: 1.5rem;
    margin: 2rem 0 1rem 0;
}

.product-features {
    background: var(--white);
    padding: 1.5rem;
    border-radius: 15px;
    border: 1px solid #e9ecef;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    border-top: 4px solid var(--primary-color);
    height: fit-content;
}

.product-features h3 {
    color: var(--primary-color);
    font-size: 1.3rem;
    margin: 0 0 1.5rem 0;
    text-align: center;
}

.product-additional-image {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 0;
    align-self: start;
    padding-top: 1rem;
}

.product-additional-image img {
    width: 100%;
    max-width: 100%;
    height: auto;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    object-fit: contain;
    transition: var(--transition);
}

.product-additional-image img:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
}

.key-features {
    list-style: none;
    padding: 0;
    margin: 1rem 0;
    font-size: 0.9rem;
}

.key-features li {
    margin-bottom: 0.5rem;
    padding: 0.3rem 0;
}

.key-features li {
    padding: 1rem 0;
    border-bottom: 1px solid #f0f0f0;
    font-size: 1rem;
    color: var(--dark-color);
    transition: var(--transition);
}

.key-features li:hover {
    background: rgba(32, 140, 200, 0.05);
    padding-left: 1rem;
    margin: 0 -1rem;
    border-radius: 8px;
}

.key-features li:last-child {
    border-bottom: none;
}

.product-specs {
    padding: 4rem 0;
    background: var(--light-color);
}

.specs-list {
    list-style: none;
    max-width: 900px;
    margin: 0 auto;
}

.specs-list li {
    padding: 1.5rem;
    margin-bottom: 1rem;
    background: var(--white);
    border-left: 4px solid var(--primary-color);
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.specs-list li::before {
    content: '✓';
    color: var(--primary-color);
    font-weight: bold;
    margin-right: 1rem;
    font-size: 1.2rem;
}

.tech-specs {
    padding: 4rem 0;
}

.tech-specs-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    max-width: 1000px;
    margin: 0 auto;
}

.tech-spec-item {
    background: var(--white);
    padding: 1.5rem;
    border-radius: 10px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    transition: var(--transition);
}

.tech-spec-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.tech-spec-item strong {
    display: block;
    color: var(--secondary-color);
    margin-bottom: 0.5rem;
    font-size: 1.1rem;
}

/* ========== Table Styles ========== */
.tech-specs-table {
    max-width: 1000px;
    margin: 0 auto;
    background: var(--white);
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
    border: 1px solid #e0e6ed;
}

.tech-specs-table table {
    width: 100%;
    border-collapse: collapse;
    font-size: 0.85rem;
}

.tech-specs-table tbody tr {
    border-bottom: 1px solid #e0e6ed;
    transition: all 0.2s ease;
}

.tech-specs-table tbody tr:hover {
    background: #f8f9fa;
    transform: translateX(2px);
}

.tech-specs-table tbody tr:last-child {
    border-bottom: none;
}

.tech-specs-table tbody tr:nth-child(even) {
    background: rgba(245, 248, 250, 0.5);
}

.tech-specs-table tbody tr:nth-child(even):hover {
    background: #f0f4f7;
}

.tech-specs-table td {
    padding: 1.2rem 2rem;
    vertical-align: middle;
    position: relative;
    font-size: 1rem;
}

.tech-specs-table td:first-child {
    font-weight: 700;
    color: var(--primary-color);
    background: #f0f4f7;
    width: 30%;
    border-right: 3px solid var(--primary-color);
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    position: relative;
}

.tech-specs-table td:first-child::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 4px;
    background: var(--primary-color);
}

.tech-specs-table td:last-child {
    color: var(--dark-color);
    font-weight: 600;
    font-size: 0.85rem;
    background: var(--white);
}

.certificates {
    padding: 3rem 0;
    text-align: center;
}

.cert-images {
    display: flex;
    gap: 2rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 2rem;
}

.cert-images a img {
    width: 150px;
    height: auto;
    transition: var(--transition);
    border-radius: 10px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.cert-images a img:hover {
    transform: scale(1.1);
}

.testimonials {
    padding: 6rem 0;
    background: #fffafa;
    /* Snow White for warmth */
    background: linear-gradient(to bottom, #ffffff, #fff9f2);
    /* Trust and warmth gradient */
}

.testimonial-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.testimonial-item {
    background: var(--white);
    padding: 2.5rem 2rem;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    transition: var(--transition);
}

.testimonial-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
}

.testimonial-header {
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid #f1f1f1;
}

.testimonial-info {
    display: flex;
    flex-direction: column;
}

.testimonial-item p {
    font-style: italic;
    color: var(--gray);
    margin-bottom: 1rem;
}

.testimonial-author {
    font-weight: 700;
    color: var(--primary-color);
    font-size: 1.1rem;
}

.testimonial-author span {
    display: block;
    font-size: 0.85rem;
    color: var(--gray);
    font-weight: 400;
    margin-top: 2px;
}

.video-section {
    padding: 4rem 0;
    text-align: center;
}

.video-container {
    max-width: 800px;
    margin: 2rem auto;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.video-container iframe,
.video-container img {
    width: 100%;
    height: 450px;
    border: none;
}

/* ========== About Page ========== */
.about-hero {
    padding: 5rem 0;
    text-align: center;
    background: var(--white);
    color: var(--dark-color);
    border-bottom: 1px solid #e9ecef;
}

.about-hero h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
    font-weight: 700;
    color: var(--primary-color);
    position: relative;
}

.about-hero h1::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: var(--secondary-color);
    border-radius: 2px;
}

.about-hero p {
    font-size: 1.2rem;
    max-width: 600px;
    margin: 2rem auto 0;
    line-height: 1.7;
    color: var(--gray);
    font-weight: 400;
}

.about-section {
    padding: 5rem 0;
    background: var(--light-color);
}

.vision-mission {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    margin-top: 3rem;
}

.vm-box {
    background: var(--light-color);
    padding: 3rem;
    border-radius: 15px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.vm-box h3 {
    color: var(--primary-color);
    font-size: 2rem;
    margin-bottom: 1.5rem;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.value-item {
    background: var(--white);
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    text-align: center;
    transition: var(--transition);
}

.value-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.value-item h4 {
    color: var(--secondary-color);
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.parallax-section {
    background: url('images/parallax-bg.jpg') no-repeat center center fixed;
    background-size: cover;
    padding: 8rem 0;
    position: relative;
}

.parallax-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.6);
}

.parallax-content {
    position: relative;
    z-index: 1;
    text-align: center;
    color: var(--white);
}

.parallax-content h2 {
    font-size: 3rem;
    margin-bottom: 2rem;
}

.parallax-content p {
    font-size: 1.3rem;
    margin-bottom: 2rem;
}

.parallax-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* ========== Contact Page ========== */
.contact-section {
    padding: 4rem 0;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    margin-top: 3rem;
}

.contact-info {
    background: var(--light-color);
    padding: 3rem;
    border-radius: 15px;
}

.contact-info h3 {
    color: var(--primary-color);
    margin-bottom: 2rem;
}

.info-item {
    display: flex;
    align-items: start;
    gap: 1rem;
    margin-bottom: 2rem;
}

.info-item i {
    color: var(--secondary-color);
    font-size: 1.5rem;
    margin-top: 0.2rem;
}

.map-section.full-width {
    padding: 4rem 0 0 0;
    background: #fbfbfb;
}

.map-section.full-width .section-title {
    margin-bottom: 3rem;
}

.map-container {
    width: 100%;
    height: 500px;
    margin-top: 0;
    border-radius: 0;
    overflow: hidden;
    box-shadow: none;
    border: none;
}

.map-container iframe {
    width: 100%;
    height: 100%;
    border: none;
}

/* ========== Responsive Design ========== */
@media (max-width: 768px) {
    .navbar {
        flex-wrap: wrap;
    }

    .nav-links {
        display: none;
        width: 100%;
        flex-direction: column;
        gap: 0;
        background: var(--primary-color);
        margin-top: 1rem;
        border-radius: 8px;
        overflow: hidden;
    }

    .nav-links.active {
        display: flex;
    }

    .nav-link {
        padding: 1rem;
        width: 100%;
        color: white;
    }

    .dropdown {
        position: relative;
    }

    .dropdown-menu {
        position: static;
        display: block;
        opacity: 1;
        visibility: visible;
        transform: none;
        box-shadow: none;
        background: rgba(255, 255, 255, 0.1);
        margin: 0;
        border-radius: 0;
        padding: 0;
        min-width: auto;
    }

    .dropdown-menu li {
        padding: 0;
    }

    .dropdown-menu a {
        color: rgba(255, 255, 255, 0.9);
        padding: 0.75rem 2rem;
        display: block;
        text-decoration: none;
    }

    .dropdown-menu a:hover {
        background: rgba(255, 255, 255, 0.1);
        color: white;
    }

    .mobile-toggle {
        display: flex;
    }

    /* Hero Slider Mobile */
    .hero-slider {
        height: 50vh;
        min-height: 300px;
    }

    .slide-content {
        left: 20px;
        right: 20px;
        max-width: none;
        text-align: center;
    }

    .slide-content h2 {
        font-size: 1.5rem;
        margin-bottom: 0.5rem;
    }

    .slide-content p {
        font-size: 1rem;
        line-height: 1.4;
    }

    .prev-btn,
    .next-btn {
        font-size: 1.2rem;
        padding: 10px 15px;
    }

    .prev-btn {
        left: 10px;
    }

    .next-btn {
        right: 10px;
    }

    .slider-dots {
        bottom: 20px;
    }

    .main-title {
        font-size: 2rem;
        margin-bottom: 2rem;
    }

    .products-grid {
        grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
        gap: 1rem;
    }

    .product-image {
        height: 120px;
    }

    .product-info {
        padding: 0.8rem;
    }

    .product-info h3 {
        font-size: 1rem;
        margin-bottom: 0.4rem;
    }

    .product-info p {
        font-size: 0.7rem;
        line-height: 1.3;
    }

    /* Mobilde ürün başlıklarının uzunluğuna göre font boyutları */

    /* Mobilde ürün başlıkları - Sınıf bazlı */

    /* Kısa başlıklar */
    .product-card.short-title .product-info h3 {
        font-size: 1rem;
        margin-bottom: 0.4rem;
    }

    .product-card.short-title .product-info p {
        font-size: 1rem;
        line-height: 1.3;
    }

    /* Orta uzunluk başlıklar */
    .product-card.medium-title .product-info h3 {
        font-size: 1rem;
        margin-bottom: 0.4rem;
    }

    .product-card.medium-title .product-info p {
        font-size: 1rem;
        line-height: 1.3;
    }

    /* Uzun başlıklar */
    .product-card.long-title .product-info h3 {
        font-size: 1rem;
        margin-bottom: 0.4rem;
    }

    .product-card.long-title .product-info p {
        font-size: 1rem;
        line-height: 1.3;
    }

    .product-btn {
        padding: 0.6rem 1.2rem;
        font-size: 0.85rem;
        margin-top: 0.8rem;
    }

    /* Mobil tablo stilleri */
    .tech-specs-table {
        margin: 0 0.5rem;
        border-radius: 12px;
        box-shadow: 0 6px 20px rgba(0, 0, 0, 0.08);
    }

    .tech-specs-table td {
        padding: 0.7rem 1rem;
        font-size: 0.75rem;
    }

    .tech-specs-table td:first-child {
        width: 35%;
        font-size: 0.7rem;
        letter-spacing: 0.3px;
    }

    .tech-specs-table td:first-child::before {
        width: 3px;
    }

    .tech-specs-table td:last-child {
        font-size: 0.75rem;
    }

    .tech-specs-table tbody tr:hover {
        transform: translateX(1px);
    }

    .product-main-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .product-main,
    .vision-mission,
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .product-features {
        margin-top: 2rem;
        padding: 1.5rem;
    }

    .product-features h3 {
        font-size: 1.2rem;
    }

    /* Why Choose Us Mobile */
    .features-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .feature-card {
        padding: 2rem 1.5rem;
    }

    .feature-icon {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
    }

    /* Success Stories Mobile */
    .stories-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .story-card {
        padding: 2rem 1.5rem;
    }

    .stat-number {
        font-size: 2.5rem;
    }

    /* Product Categories Mobile */
    .product-categories {
        gap: 0.5rem;
        margin-bottom: 2rem;
    }

    .category-btn {
        padding: 0.6rem 1rem;
        font-size: 0.8rem;
    }

    .product-badge {
        top: 8px;
        right: 8px;
        padding: 0.2rem 0.6rem;
        font-size: 0.6rem;
    }

    .section-title,
    .product-header h1 {
        font-size: 2rem;
    }

    .about-hero {
        padding: 3rem 0;
    }

    .about-hero h1 {
        font-size: 2.2rem;
        margin-bottom: 1rem;
    }

    .about-hero h1::after {
        width: 60px;
        height: 3px;
    }

    .about-hero p {
        font-size: 1rem;
        padding: 0 1rem;
        line-height: 1.6;
    }

    .about-features-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        margin-top: 2rem;
    }

    .about-feature-card {
        flex-direction: column;
        text-align: center;
        padding: 1.5rem;
        gap: 1rem;
    }

    .feature-number {
        font-size: 2rem;
        min-width: auto;
    }

    .features-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        margin-top: 2rem;
    }

    .feature-item {
        padding: 2rem 1.5rem;
    }

    .parallax-content h2 {
        font-size: 2rem;
    }
}

/* Footer Mobile */
.footer-content {
    grid-template-columns: 1fr;
    gap: 1.5rem;
    text-align: center;
}

.footer-left,
.footer-center,
.footer-right {
    align-items: center;
}

.footer-links-inline {
    justify-content: center;
    gap: 1.5rem;
}

.footer-links-inline a {
    font-size: 0.85rem;
}

.footer-right {
    align-items: center;
}

.contact-compact {
    align-items: center;
}

.social-icons {
    justify-content: center;
}

/* ========== About Page Improvements ========== */

/* About Content */
.about-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.about-content p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--gray);
    margin-bottom: 3rem;
}

/* Simple Features Grid */
.simple-features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 3rem;
}

.simple-feature-card {
    background: var(--white);
    border-radius: 12px;
    padding: 2rem;
    text-align: center;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    transition: var(--transition);
    border-top: 3px solid var(--primary-color);
}

.simple-feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12);
    border-top-color: var(--secondary-color);
}

.simple-icon {
    width: 60px;
    height: 60px;
    background: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    transition: var(--transition);
}

.simple-icon i {
    color: white;
    font-size: 1.8rem;
}

.simple-feature-card:hover .simple-icon {
    background: var(--secondary-color);
    transform: scale(1.1);
}

.simple-feature-card h4 {
    color: var(--dark-color);
    margin-bottom: 1rem;
    font-size: 1.1rem;
    font-weight: 600;
}

.simple-feature-card p {
    color: var(--gray);
    font-size: 0.9rem;
    line-height: 1.6;
    margin: 0;
}

/* Keep original features-grid for other pages */
.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.feature-item {
    text-align: center;
    padding: 2.5rem 1.5rem;
    background: var(--white);
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    transition: var(--transition);
    border: 1px solid #f0f0f0;
}

.feature-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12);
    border-color: var(--primary-color);
}

.feature-item i {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
    display: block;
    transition: var(--transition);
}

.feature-item:hover i {
    color: var(--secondary-color);
    transform: scale(1.05);
}

.feature-item h4 {
    color: var(--dark-color);
    margin-bottom: 1rem;
    font-size: 1.1rem;
    font-weight: 600;
}

.feature-item p {
    color: var(--gray);
    font-size: 0.9rem;
    line-height: 1.6;
}

/* Vision Mission Section */
.vision-mission-section {
    padding: 4rem 0;
}

.vision-mission {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 3rem;
    margin-top: 2rem;
}

.vm-box {
    background: white;
    padding: 3rem;
    border-radius: 12px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    text-align: center;
    transition: var(--transition);
}

.vm-box:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.vm-icon {
    width: 80px;
    height: 80px;
    background: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 2rem;
}

.vm-icon i {
    font-size: 2rem;
    color: white;
}

.vm-box h3 {
    color: var(--dark-color);
    margin-bottom: 1.5rem;
}

.vm-box p {
    color: var(--gray);
    line-height: 1.7;
}

/* Team Section */
.team-section {
    padding: 4rem 0;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 3rem;
    margin-top: 3rem;
}

.team-member {
    text-align: center;
    background: white;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    transition: var(--transition);
}

.team-member:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.member-image {
    width: 120px;
    height: 120px;
    margin: 0 auto 1.5rem;
    border-radius: 50%;
    overflow: hidden;
    border: 4px solid var(--primary-color);
}

.member-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.team-member h4 {
    color: var(--dark-color);
    margin-bottom: 0.5rem;
}

.member-role {
    color: var(--primary-color);
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.member-desc {
    color: var(--gray);
    font-size: 0.9rem;
}

/* Products Showcase Section */
.products-showcase {
    padding: 4rem 0;
}

.section-subtitle {
    text-align: center;
    color: var(--gray);
    font-size: 1.1rem;
    margin-bottom: 3rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.product-categories {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.category-item {
    background: white;
    padding: 2.5rem;
    border-radius: 12px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    text-align: center;
    transition: var(--transition);
}

.category-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.category-icon {
    width: 70px;
    height: 70px;
    background: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
}

.category-icon i {
    font-size: 1.8rem;
    color: white;
}

.category-item h4 {
    color: var(--dark-color);
    margin-bottom: 0.5rem;
}

.category-item p {
    color: var(--primary-color);
    font-weight: 600;
    margin-bottom: 1rem;
}

.category-desc {
    color: var(--gray);
    font-size: 0.9rem;
    display: block;
}

/* Why Choose Section */
.why-choose-section {
    padding: 4rem 0;
}

.why-choose-section .advantages-grid {
    display: grid !important;
    grid-template-columns: repeat(4, 1fr) !important;
    gap: 1.5rem;
    margin-top: 3rem;
}

.advantage-item {
    background: white;
    padding: 2rem 1.5rem;
    border-radius: 12px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    text-align: center;
    transition: var(--transition);
}

.advantage-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.advantage-icon {
    width: 60px;
    height: 60px;
    background: var(--secondary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
}

.advantage-icon i {
    font-size: 1.5rem;
    color: white;
}

.advantage-item h4 {
    color: var(--dark-color);
    margin-bottom: 1rem;
    font-size: 1.1rem;
    font-weight: 600;
}

.advantage-item p {
    color: var(--gray);
    line-height: 1.6;
    font-size: 0.9rem;
}

/* Clients Section */
.clients-section {
    padding: 4rem 0;
    background: var(--light-color);
}

.clients-subtitle {
    text-align: center;
    color: var(--gray);
    margin-bottom: 3rem;
    font-size: 1.1rem;
}

.clients-logos {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 2rem;
    align-items: center;
}

.client-logo {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1rem;
    background: white;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    transition: var(--transition);
}

.client-logo:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.client-logo img {
    max-width: 100%;
    max-height: 60px;
    opacity: 0.7;
    transition: var(--transition);
}

.client-logo:hover img {
    opacity: 1;
}

/* Tablet Responsive */
@media (max-width: 1024px) and (min-width: 769px) {
    .simple-features-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }

    .simple-feature-card:last-child {
        grid-column: 1 / -1;
        max-width: 50%;
        margin: 0 auto;
    }
}

/* Tablet Responsive */
@media (max-width: 1024px) and (min-width: 769px) {
    .product-main-grid {
        grid-template-columns: 1fr 1fr;
        gap: 2rem;
    }

    .product-main-grid .product-features {
        grid-column: 1 / -1;
    }
    
    .product-main-grid.product-with-additional-image {
        grid-template-columns: 1fr;
    }
    
    .product-main-grid.product-with-additional-image .product-main-image {
        display: none;
    }
    
    .product-main-grid.product-with-additional-image .product-additional-image {
        grid-column: 1;
        grid-row: auto;
        display: flex;
        align-items: center;
        justify-content: center;
        margin-bottom: 1rem;
    }
    
    .product-main-grid.product-with-additional-image .product-description {
        grid-column: 1;
        grid-row: auto;
        width: 100%;
        margin-bottom: 1rem;
    }
    
    .product-main-grid.product-with-additional-image .product-features {
        grid-column: 1;
        grid-row: auto;
        width: 100%;
        margin-bottom: 1rem;
    }
    
    .product-features {
        padding: 1.2rem;
    }
    
    .key-features {
        font-size: 0.85rem;
    }
}

/* Tablet Responsive for Advantages Grid */
@media (max-width: 1200px) and (min-width: 769px) {
    .why-choose-section .advantages-grid {
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 1.5rem;
    }
}

/* Mobile Responsive for About Page */
@media (max-width: 768px) {
    .product-main-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .product-main-grid.product-with-additional-image {
        grid-template-columns: 1fr;
    }
    
    .product-main-grid.product-with-additional-image .product-main-image {
        display: none;
    }
    
    .product-main-grid.product-with-additional-image .product-additional-image,
    .product-main-grid.product-with-additional-image .product-description,
    .product-main-grid.product-with-additional-image .product-features {
        grid-column: 1;
        grid-row: auto;
        width: 100%;
        margin-bottom: 1.5rem;
    }
    
    .product-main-grid.product-with-additional-image .product-additional-image {
        display: flex;
        align-items: center;
        justify-content: center;
    }
    
    .product-features {
        padding: 1.5rem;
        margin-bottom: 1.5rem;
    }
    
    .key-features {
        font-size: 0.85rem;
    }
    
    .key-features li {
        margin-bottom: 0.4rem;
        padding: 0.2rem 0;
    }
    
    .product-description {
        order: 2;
    }
    
    .product-features {
        order: 3;
    }

    .simple-features-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        margin-top: 2rem;
    }

    .simple-feature-card {
        padding: 1.5rem;
    }

    .simple-icon {
        width: 50px;
        height: 50px;
        margin-bottom: 1rem;
    }

    .simple-icon i {
        font-size: 1.5rem;
    }

    .features-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .vision-mission {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .product-categories {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .why-choose-section .advantages-grid {
        grid-template-columns: 1fr !important;
        gap: 1.5rem;
    }

    .vm-box {
        padding: 2rem;
    }

    .category-item,
    .advantage-item {
        padding: 2rem;
    }
}

/* ========== Contact Page Improvements ========== */

/* Contact Hero */
.contact-hero {
    background: var(--dark-color);
    color: white;
    padding: 4rem 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.contact-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grid" width="10" height="10" patternUnits="userSpaceOnUse"><path d="M 10 0 L 0 0 0 10" fill="none" stroke="rgba(255,255,255,0.05)" stroke-width="0.5"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>');
    opacity: 0.3;
}

.contact-hero h1 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    position: relative;
    z-index: 1;
    font-weight: 700;
}

.contact-hero p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    opacity: 0.9;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    position: relative;
    z-index: 1;
    line-height: 1.6;
}

.response-time {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: var(--primary-color);
    padding: 0.8rem 1.5rem;
    border-radius: 8px;
    font-weight: 500;
    position: relative;
    z-index: 1;
    box-shadow: 0 4px 12px rgba(32, 140, 200, 0.3);
}

.response-time i {
    color: white;
}

/* Quick Contact */
.quick-contact {
    padding: 3rem 0;
    background: var(--light-color);
}

.quick-contact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.quick-contact-item {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    text-align: center;
    text-decoration: none;
    color: var(--dark-color);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    transition: var(--transition);
}

.quick-contact-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    color: var(--dark-color);
}

.quick-icon {
    width: 60px;
    height: 60px;
    background: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    transition: var(--transition);
}

.quick-contact-item:hover .quick-icon {
    background: var(--secondary-color);
    transform: scale(1.1);
}

.quick-icon i {
    font-size: 1.5rem;
    color: white;
}

.quick-contact-item h4 {
    margin-bottom: 0.5rem;
    color: var(--dark-color);
}

.quick-contact-item p {
    color: var(--gray);
    font-size: 0.9rem;
}

/* Modern Form */
.contact-form-container {
    background: white;
    padding: 2.5rem;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.form-subtitle {
    color: var(--gray);
    margin-bottom: 2rem;
    font-size: 0.95rem;
}

.modern-form {
    margin-top: 1.5rem;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    margin-bottom: 1rem;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 500;
    color: var(--dark-color);
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.8rem;
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    font-size: 1rem;
    transition: var(--transition);
    background: white;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(32, 140, 200, 0.1);
}

.form-error {
    color: #e74c3c;
    font-size: 0.8rem;
    margin-top: 0.3rem;
    display: block;
}

.btn-submit {
    width: 100%;
    padding: 1rem;
    font-size: 1.1rem;
    font-weight: 600;
    position: relative;
}

.form-success {
    background: #d4edda;
    color: #155724;
    padding: 1rem;
    border-radius: 8px;
    margin-top: 1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.form-success i {
    color: #28a745;
}

/* Contact Info Cards */
.contact-info-container {
    background: white;
    padding: 2.5rem;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.info-cards {
    margin-top: 2rem;
}

.info-card {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1.5rem;
    margin-bottom: 1rem;
    background: var(--light-color);
    border-radius: 10px;
    transition: var(--transition);
}

.info-card:hover {
    background: #f0f8ff;
    transform: translateX(5px);
}

.info-icon {
    width: 50px;
    height: 50px;
    background: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.info-icon i {
    color: white;
    font-size: 1.2rem;
}

.info-content h4 {
    color: var(--dark-color);
    margin-bottom: 0.5rem;
    font-size: 1rem;
}

.info-content p {
    color: var(--gray);
    margin: 0;
    line-height: 1.5;
}

.info-content a {
    color: var(--primary-color);
    text-decoration: none;
}

.info-content a:hover {
    text-decoration: underline;
}

.social-section {
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 1px solid #e0e0e0;
}

.social-section h4 {
    color: var(--dark-color);
    margin-bottom: 1rem;
}

/* FAQ Section */
.faq-section {
    padding: 4rem 0;
    background: white;
}

.faq-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 1rem;
    margin-top: 3rem;
}

.faq-item {
    border: 1px solid #e0e0e0;
    border-radius: 10px;
    overflow: hidden;
    transition: var(--transition);
}

.faq-item:hover {
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.faq-question {
    padding: 1.5rem;
    background: var(--light-color);
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: var(--transition);
}

.faq-question:hover {
    background: #f0f8ff;
}

.faq-question h4 {
    margin: 0;
    color: var(--dark-color);
    font-size: 1rem;
}

.faq-question i {
    color: var(--primary-color);
    transition: var(--transition);
}

.faq-item.active .faq-question i {
    transform: rotate(45deg);
}

.faq-answer {
    padding: 0 1.5rem;
    max-height: 0;
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item.active .faq-answer {
    padding: 1.5rem;
    max-height: 200px;
}

.faq-answer p {
    margin: 0;
    color: var(--gray);
    line-height: 1.6;
}

/* Mobile Responsive for Contact Page */
@media (max-width: 768px) {
    .contact-hero {
        padding: 3rem 0;
    }

    .contact-hero h1 {
        font-size: 2rem;
    }

    .contact-hero p {
        font-size: 1rem;
        margin-bottom: 1.5rem;
    }

    .response-time {
        padding: 0.6rem 1.2rem;
        font-size: 0.9rem;
    }

    .quick-contact-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .contact-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .form-row {
        grid-template-columns: 1fr;
        gap: 0;
    }

    .contact-form-container,
    .contact-info-container {
        padding: 1.5rem;
    }

    .faq-grid {
        grid-template-columns: 1fr;
    }

    .faq-question {
        padding: 1rem;
    }

    .faq-item.active .faq-answer {
        padding: 1rem;
    }
}

/* Video Container Responsive Styling */
.video-container {
    position: relative;
    width: 100%;
    max-width: 800px;
    margin: 0 auto;
    padding-bottom: 56.25%;
    /* 16:9 aspect ratio */
    height: 0;
    overflow: hidden;
}

.video-container iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100% !important;
    height: 100% !important;
    border-radius: 8px;
}

@media (max-width: 768px) {
    .video-container {
        padding-bottom: 56.25%;
    }
}

/* Product Gallery Styles */
.product-gallery {
    padding: 4rem 0;
    background: #fff;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
    margin-top: 2rem;
}

.gallery-item {
    position: relative;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.gallery-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.gallery-item img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.gallery-item:hover img {
    transform: scale(1.05);
}

.gallery-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.8));
    color: white;
    padding: 1.5rem 1rem 1rem;
    transform: translateY(100%);
    transition: transform 0.3s ease;
}

.gallery-item:hover .gallery-overlay {
    transform: translateY(0);
}

.gallery-overlay h4 {
    margin: 0;
    font-size: 1.1rem;
    font-weight: 600;
}

.video-link-section {
    border: 2px dashed #208CC8;
}

.video-link-section:hover {
    background: #f0f8ff !important;
    border-color: #DC7125;
}

@media (max-width: 768px) {
    .gallery-grid {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        gap: 1rem;
    }

    .gallery-item img {
        height: 180px;
    }
}

/* ========== Interactive Feature Map ========== */
.interactive-features {
    padding: 6rem 0;
    background: linear-gradient(135deg, #eef2f3 0%, #d9e3e8 100%);
    position: relative;
    overflow: hidden;
}

.interactive-features::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 20% 30%, rgba(32, 140, 200, 0.05) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(220, 113, 37, 0.05) 0%, transparent 50%);
    pointer-events: none;
}

.interactive-features .section-subtitle {
    text-align: center;
    color: #6c757d;
    font-size: 1.1rem;
    margin-bottom: 3rem;
    font-style: italic;
}

.feature-map-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: start;
    max-width: 1200px;
    margin: 0 auto;
}

.robot-diagram {
    position: relative;
    background: white;
    border-radius: 20px;
    padding: 2rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    text-align: center;
}

.robot-diagram img {
    max-width: 100%;
    height: auto;
    border-radius: 10px;
}

.hotspot {
    position: absolute;
    width: 40px;
    height: 40px;
    transform: translate(-50%, -50%);
    cursor: pointer;
    z-index: 10;
}

.hotspot-pulse {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 20px;
    height: 20px;
    background: #3498db;
    border-radius: 50%;
    transform: translate(-50%, -50%);
    animation: pulse 2s infinite;
}

.hotspot-number {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 30px;
    height: 30px;
    background: linear-gradient(135deg, #3498db, #2980b9);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 0.9rem;
    transform: translate(-50%, -50%);
    border: 3px solid white;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease;
}

.hotspot:hover .hotspot-number {
    transform: translate(-50%, -50%) scale(1.3);
    box-shadow: 0 6px 25px rgba(52, 152, 219, 0.5);
}

.hotspot.active .hotspot-number {
    transform: translate(-50%, -50%) scale(1.2);
    box-shadow: 0 6px 25px rgba(46, 204, 113, 0.6);
    background: linear-gradient(135deg, #2ecc71, #27ae60);
}

@keyframes pulse {
    0% {
        transform: translate(-50%, -50%) scale(1);
        opacity: 1;
    }

    50% {
        transform: translate(-50%, -50%) scale(1.5);
        opacity: 0.5;
    }

    100% {
        transform: translate(-50%, -50%) scale(2);
        opacity: 0;
    }
}

.feature-details {
    position: relative;
}

.feature-card {
    background: white;
    border-radius: 15px;
    padding: 2rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.4s ease;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
}

.feature-card.active {
    opacity: 1;
    transform: translateY(0);
    position: relative;
}

.feature-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
}

.feature-icon i {
    font-size: 1.8rem;
    color: white;
}

.feature-card h3 {
    color: var(--primary-color);
    margin-bottom: 1rem;
    font-size: 1.4rem;
    font-weight: 600;
}

.feature-card p {
    color: #6c757d;
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.feature-card ul {
    list-style: none;
    padding: 0;
}

.feature-card ul li {
    padding: 0.5rem 0;
    color: #495057;
    position: relative;
    padding-left: 1.5rem;
}

.feature-card ul li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--accent-color);
    font-weight: bold;
}

.video-link-section {
    text-align: center;
    margin-top: 3rem;
    padding: 2rem;
    background: white;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.video-link-section h3 {
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.video-link-section p {
    color: #6c757d;
    margin-bottom: 1.5rem;
}

/* Responsive Design */
@media (max-width: 768px) {
    .feature-map-container {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .robot-diagram {
        padding: 1rem;
    }

    .hotspot {
        width: 35px;
        height: 35px;
    }

    .hotspot-number {
        width: 25px;
        height: 25px;
        font-size: 0.8rem;
    }

    .feature-card {
        padding: 1.5rem;
    }

    .feature-icon {
        width: 50px;
        height: 50px;
    }

    .feature-icon i {
        font-size: 1.5rem;
    }
}

/* ========== Interactive Feature Map - Connection Lines ========== */
.feature-map-container {
    position: relative;
}

.connection-line {
    position: absolute;
    background: linear-gradient(90deg, #3498db, #2ecc71);
    height: 3px;
    border-radius: 2px;
    opacity: 0;
    transition: all 0.4s ease;
    z-index: 5;
    box-shadow: 0 2px 15px rgba(52, 152, 219, 0.4);
}

.connection-line.active {
    opacity: 0.8;
    animation: lineGlow 2s ease-in-out infinite alternate;
}

.connection-line::before {
    content: '';
    position: absolute;
    right: -8px;
    top: 50%;
    transform: translateY(-50%);
    width: 0;
    height: 0;
    border-left: 8px solid #2ecc71;
    border-top: 4px solid transparent;
    border-bottom: 4px solid transparent;
}

.connection-line::after {
    content: '';
    position: absolute;
    left: -4px;
    top: 50%;
    transform: translateY(-50%);
    width: 8px;
    height: 8px;
    background: #3498db;
    border-radius: 50%;
    border: 2px solid white;
}

@keyframes lineGlow {
    0% {
        box-shadow: 0 2px 15px rgba(52, 152, 219, 0.4);
    }

    100% {
        box-shadow: 0 2px 25px rgba(52, 152, 219, 0.7), 0 0 30px rgba(46, 204, 113, 0.4);
    }
}

/* Animated dots along the line */
.connection-line .line-dots {
    position: absolute;
    top: 50%;
    left: 0;
    width: 100%;
    height: 2px;
    transform: translateY(-50%);
    overflow: hidden;
}

.connection-line .line-dots::before {
    content: '';
    position: absolute;
    top: 0;
    left: -20px;
    width: 20px;
    height: 2px;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.8), transparent);
    animation: moveDots 2s linear infinite;
}

@keyframes moveDots {
    0% {
        left: -20px;
    }

    100% {
        left: 100%;
    }
}



/* Responsive adjustments for lines */
@media (max-width: 768px) {
    .connection-line {
        display: none;
        /* Hide lines on mobile for cleaner look */
    }
}

/* Feature card enhancement for line connection */
.feature-card.active {
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1), 0 0 20px rgba(32, 140, 200, 0.1);
    border-left: 4px solid var(--accent-color);
}

/* ========== Feature Labels on Image ========== */
.feature-label {
    position: absolute;
    background: linear-gradient(135deg, #2c3e50 0%, #34495e 100%);
    color: white;
    padding: 0.8rem 1.2rem;
    border-radius: 25px;
    font-size: 0.9rem;
    font-weight: 600;
    opacity: 0;
    transform: scale(0.8);
    transition: all 0.4s ease;
    z-index: 10;
    backdrop-filter: blur(10px);
    border: 2px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.25);
    pointer-events: none;
    white-space: nowrap;
}

.feature-label.active {
    opacity: 1;
    transform: scale(1);
    animation: labelPulse 3s ease-in-out infinite;
}

.feature-label::before {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 0;
    border-left: 8px solid transparent;
    border-right: 8px solid transparent;
    border-top: 8px solid #2c3e50;
}

@keyframes labelPulse {

    0%,
    100% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.05);
    }
}

/* Remove feature cards and details section */
.feature-details {
    display: none;
}

/* Adjust container layout */
.feature-map-container {
    display: block;
    max-width: 800px;
    margin: 0 auto;
}

.robot-diagram {
    max-width: 100%;
    margin: 0 auto;
}



/* Responsive adjustments */
@media (max-width: 768px) {
    .feature-label {
        font-size: 0.8rem;
        padding: 0.6rem 1rem;
    }

    .connection-line {
        height: 2px;
    }
}

@media (max-width: 480px) {
    .feature-label {
        font-size: 0.75rem;
        padding: 0.5rem 0.8rem;
    }
}

/* ========== Certification Section ========== */
.certification-section {
    padding: 3rem 0;
    background: #f8f9fa;
    border-top: 1px solid #e9ecef;
}

.certification-container {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 3rem;
    max-width: 600px;
    margin: 0 auto;
}

.certification-item {
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease;
}

.certification-item:hover {
    transform: scale(1.05);
}

.certification-logo {
    width: 120px;
    height: 80px;
    object-fit: contain;
    border-radius: 8px;
    transition: all 0.3s ease;
}

/* Responsive Design */
@media (max-width: 768px) {
    .certification-container {
        flex-direction: column;
        gap: 2rem;
    }

    .certification-logo {
        width: 100px;
        height: 70px;
    }
}

/* ========== User Manual Section ========== */
.user-manual-section {
    padding: 6rem 0;
    text-align: center;
    background-color: #f0f7fa;
    /* Calming Alice Blue variant */
    border-top: 1px solid rgba(32, 140, 200, 0.1);
    border-bottom: 1px solid rgba(32, 140, 200, 0.1);
}

.user-manual-section .section-title {
    color: #2c3e50;
    margin-bottom: 1.5rem;
}

/* ========== Product Parallax Utility ========== */
.product-parallax {
    height: 300px;
    background-attachment: fixed;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-shadow: 2px 2px 10px rgba(0, 0, 0, 0.5);
    position: relative;
    margin: 4rem 0;
}

.product-parallax::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.4);
}

.product-parallax-content {
    position: relative;
    z-index: 1;
    text-align: center;
}

.product-parallax h2 {
    font-size: 2.5rem;
    margin: 0;
}

@media (max-width: 768px) {

    .testimonials,
    .interactive-features,
    .user-manual-section {
        padding: 4rem 0;
    }

    .product-parallax {
        height: 200px;
    }

    .product-parallax h2 {
        font-size: 1.8rem;
    }
}

@media (max-width: 480px) {
    .certification-section {
        padding: 2rem 0;
    }

    .certification-logo {
        width: 90px;
        height: 60px;
    }

    .certification-text {
        font-size: 0.8rem;
    }
}