/* Fonts loaded in Master Page via Google Fonts Link */

:root {
    --primary-color: #54A697;
    /* Teal - Action Buttons */
    --accent-color: #FFDB13;
    /* Yellow - Highlights/Menu */
    --secondary-color: #1a1a1a;
    /* Dark Elements */
    --background-color: #ffffff;
    --card-bg: #ffffff;
    --text-main: #515151;
    /* Soft Dark Grey */
    --text-light: #666666;
    --border-radius: 6px;
    /* Sharper, modern radius */
    --shadow: none;
    /* Minimalist default */
    --shadow-hover: 0 10px 20px rgba(0, 0, 0, 0.08);
    /* Soft hover shadow */
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Quicksand', sans-serif;
    background-color: #ffffff;
    color: var(--text-main);
    line-height: 1.6;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

/* Header */
header {
    background-color: var(--primary-color);
    color: white;
    padding: 0;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.container {
    max-width: 1270px;
    margin: 0 auto;
    padding: 0 30px;
}

@media (max-width: 768px) {
    .container {
        width: 85%;
        /* GENEL DARALTMA: Ekranin %85'ini kullan */
        margin: 0 auto;
        /* Ortala */
        padding: 0;
        /* Padding iptal, genislik width ile kontrol ediliyor */
    }
}

.navbar {
    display: flex;
    flex-direction: column;
    /* Stack top and bottom rows */
    padding: 0;
    height: auto;
    /* Allow height to grow */
}

.header-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    padding: 15px 0;
    /* Add vertical padding */
}

.header-bottom {
    width: 100%;
    background-color: rgba(0, 0, 0, 0.1);
    /* Slight contrast */
    padding: 0;
}

/* Ensure container inside header-bottom aligns correctly */
.header-bottom .container {
    padding: 0;
}

.brand {
    font-size: 1.5rem;
    font-weight: 700;
    color: #fff;
    text-decoration: none;
    display: flex;
    align-items: center;
}

.brand img {
    filter: brightness(0) invert(1);
    /* Logoyu beyaz yapar */
    opacity: 0.9;
    /* Hafif transparanlık daha şık durur */
}

.brand span {
    color: var(--secondary-color);
}

/* Header Search Bar */
.header-search {
    flex-grow: 1;
    max-width: 500px;
    margin: 0 40px;
    /* Spacing from logo and actions */
    position: relative;
    display: flex;
    align-items: center;
}

/* Header Actions (Top Right) */
.header-actions {
    display: flex;
    gap: 20px;
    align-items: center;
}

.action-link {
    color: white;
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 5px;
    transition: opacity 0.2s;
}

.action-link:hover {
    opacity: 0.8;
}

@media (max-width: 992px) {
    .header-search {
        max-width: 100%;
        margin: 10px 0;
        /* Width handled by flex */
        width: 100%;
    }

    .navbar {
        height: auto;
    }

    .header-top {
        flex-wrap: wrap;
        justify-content: space-between;
        /* Logo left, Hamburger right */
        align-items: center;
        position: relative;
    }

    .brand {
        order: 1;
        flex: 1;
        /* Stay left */
    }

    .hamburger {
        order: 2;
        /* Right */
        display: block;
        /* Ensure visible */
    }

    .header-search {
        order: 3;
        width: 100%;
        /* Full width below */
        margin-top: 10px;
    }

    /* Hide desktop action links on mobile since they are in menu now */
    .header-actions {
        display: none;
    }

    .header-bottom {
        display: none;
        /* Default hidden, managed by mobile menu */
    }

    /* Logic for mobile-only links in nav */
    .mobile-only {
        display: block;
        border-top: none;
        /* Remove disruptive border */
        margin-top: 10px;
    }
}

@media (min-width: 993px) {
    .mobile-only {
        display: none;
        /* Hide on desktop */
    }
}

.header-search input {
    width: 100%;
    padding: 10px 15px;
    padding-right: 40px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 20px;
    background: rgba(255, 255, 255, 0.1);
    color: white;
    outline: none;
    transition: all 0.3s;
    opacity: 1;
    /* Hep görünür */
    cursor: text;
    pointer-events: auto;
    position: relative;
    right: auto;
}

.header-search input::placeholder {
    color: rgba(255, 255, 255, 0.7);
}

.header-search input:focus {
    background: white;
    color: var(--text-main);
    border-color: white;
}

.header-search button {
    position: absolute;
    right: 5px;
    width: auto;
    height: auto;
    background: none;
    border: none;
    color: white;
    cursor: pointer;
    padding: 5px 10px;
    z-index: 1;
}

.header-search input:focus+button {
    color: var(--primary-color);
}

/* Desktop Navigation */
.nav-menu {
    display: flex;
    gap: 30px;
    /* More space between items */
    align-items: center;
    justify-content: center;
    /* Center the menu */
    width: 100%;
    margin: 0;
    padding: 0;
    list-style: none;
}

@media (max-width: 992px) {
    .nav-menu {
        position: fixed;
        top: 134px !important;
        /* Precision adjust */
        left: -100%;
        flex-direction: column;
        background-color: #ffffff !important;
        /* White Background */
        width: 100%;
        height: calc(100vh - 134px);
        /* Adjust height */
        text-align: center;
        transition: 0.3s;
        box-shadow: 0 10px 27px rgba(0, 0, 0, 0.05);
        z-index: 9999;
        justify-content: flex-start;
        padding-top: 10px;
        gap: 0;
        overflow-y: auto;
    }

    .nav-menu.active {
        left: 0;
    }

    /* Mobile Menu Links - Dark Text for Light Theme */
    .nav-menu .nav-link {
        color: #333333;
        /* Dark Text */
        justify-content: space-between;
        padding: 18px 24px;
        /* Slightly taller for elegance */
        border-bottom: 1px solid #f0f0f0;
        /* Light Gray Separator */
        width: 100%;
        border-radius: 0;
        font-weight: 500;
        /* Medium weight */
        font-size: 1rem;
        transition: all 0.3s ease;
    }

    /* Simplified Mobile Contact Links */
    .nav-menu .mobile-only .nav-link {
        color: #333333;
        /* Dark Text */
        font-weight: 500;
        background-color: transparent;
        border-bottom: 1px solid #f0f0f0 !important;
        /* Unified border style - Exact Match */
    }

    .nav-menu .mobile-only .nav-link i {
        color: var(--primary-color);
        /* Icon Primary Color */
        margin-left: 12px;
        /* Margin on left since icon is now on right */
        margin-right: 0;
    }

    .nav-menu .nav-link:hover {
        background-color: #f9f9f9;
        /* Very light gray highlight */
        color: var(--primary-color);
        /* Primary color on hover */
        padding-left: 28px;
        border-bottom-color: #e0e0e0;
    }

    /* Ensure hover doesn't change icon color for mobile contct links */
    .nav-menu .mobile-only .nav-link:hover i {
        color: var(--primary-color);
    }

    .nav-menu.active {
        left: 0;
    }

    .header-bottom {
        display: block;
        /* Ensure container exists but menu inside is absolute */
        height: 0;
        /* Take no space in flow */
    }

    /* Mobile Dropdown Overrides (Light Theme) */
    .dropdown-menu {
        background-color: #f8f9fa;
        /* Light Gray for Dropdowns */
        position: static;
        /* Stack naturally on mobile */
        box-shadow: inset 0 4px 6px -4px rgba(0, 0, 0, 0.1);
        width: 100%;
        margin-top: 0;
        padding: 0;
        border: none;
        display: none;
        /* Hide by default */
        opacity: 1;
        visibility: visible;
        transform: none;
    }

    .nav-item.open>.dropdown-menu {
        display: block;
        /* Show when parent is open */
    }

    .dropdown-item {
        color: #555555;
        border-bottom: 1px solid #e9ecef;
        padding-left: 30px !important;
        /* Indent */
    }

    .dropdown-item:hover {
        background-color: #e9ecef !important;
        color: #333333 !important;
        padding-left: 35px !important;
    }

    /* Mobile Submenu Overrides (Recursive) */
    .dropdown-menu .submenu {
        position: static;
        /* Stack naturally */
        width: 100%;
        box-shadow: none;
        background-color: #f1f3f5;
        /* Slightly darker gray for level 3 */
        border-left: none;
        display: none;
        /* Hidden by default, shown on hover/click */
        padding-left: 15px;
    }

    .dropdown-menu li:hover>.submenu,
    .dropdown-menu li.active>.submenu,
    .dropdown-menu li.open>.submenu {
        display: block;
    }

    .dropdown-menu .submenu li a {
        color: #666666 !important;
        border-bottom: 1px solid #e0e0e0;
        padding-left: 40px !important;
        /* Indent more */
    }

    .dropdown-menu .submenu li a:hover {
        background-color: #e9ecef;
        color: var(--primary-color) !important;
    }
}

.nav-item {
    position: relative;
    list-style: none;
}

.nav-link {
    color: white;
    text-decoration: none;
    font-weight: 500;
    padding: 12px 20px;
    /* Larger click area */
    border-radius: 6px;
    transition: background-color 0.2s;
    display: flex;
    align-items: center;
    gap: 8px;
}

.nav-link:hover {
    background-color: rgba(255, 255, 255, 0.1);
}

/* Dropdown Menu */
.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    margin-top: 0;
    /* Remove gap */
    background-color: white;
    border-radius: 8px;
    box-shadow: var(--shadow-hover);
    min-width: 230px;
    /* Slightly wider */
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all 0.3s ease;
    z-index: 1001;
    padding: 10px 0;
    /* Vertical padding */
    border: 1px solid rgba(0, 0, 0, 0.05);
    /* Subtle border */
    display: block;
    /* Ensure it takes space when visible */
}

/* Fix for recursive structure: reset ul/li defaults inside dropdown */
.dropdown-menu ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

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

/* Target ALL links inside dropdown (Level 2) */
.dropdown-menu>.dropdown-content>ul>li>a {
    display: flex;
    /* Better alignment for icons */
    justify-content: space-between;
    align-items: center;
    padding: 12px 20px;
    color: var(--text-main);
    /* Ensure dark text */
    text-decoration: none;
    transition: background 0.2s;
    border-bottom: 1px solid #f9f9f9;
    font-size: 0.95rem;
    white-space: nowrap;
    /* Prevent wrapping */
}

.dropdown-menu>.dropdown-content>ul>li:last-child>a {
    border-bottom: none;
}

.dropdown-menu>.dropdown-content>ul>li>a:hover {
    background-color: #f8f9fa;
    color: var(--primary-color);
    padding-left: 25px;
    /* Hover effect */
}

/* Recursive Submenu (Level 3+) - FIXED ALIGNMENT */
.dropdown-menu .submenu {
    display: none;
    position: absolute;
    left: 100%;
    /* Right of parent */
    top: 0;
    /* Align with top of parent li */
    min-width: 230px;
    background-color: white;
    border-radius: 8px;
    box-shadow: var(--shadow-hover);
    z-index: 1002;
    /* Higher than parent */
    padding: 10px 0;
    margin: 0;
    list-style: none;
    border: 1px solid rgba(0, 0, 0, 0.05);
}

/* Show submenu on hover of the parent li */
.dropdown-menu li {
    position: relative;
    /* Anchor for submenu */
}

.dropdown-menu li:hover>.submenu {
    display: block;
}

/* Level 3+ Links */
.dropdown-menu .submenu li a {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 20px;
    color: var(--text-main);
    text-decoration: none;
    transition: background 0.2s;
    border-bottom: 1px solid #f9f9f9;
    font-size: 0.95rem;
    white-space: nowrap;
}

.dropdown-menu .submenu li:last-child a {
    border-bottom: none;
}

.dropdown-menu .submenu li a:hover {
    background-color: #f8f9fa;
    color: var(--primary-color);
    padding-left: 25px;
}


/* Hamburger Menu Icon */
.hamburger {
    display: none;
    cursor: pointer;
    font-size: 1.5rem;
    color: white;
}

/* Hero Section (Static Image Fallback or Main) */
.hero {
    background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)), url('../img/hero_bg.jpg') no-repeat center center/cover;
    height: 400px;
    display: flex;
    align-items: center;
    color: white;
    text-align: center;
    margin-bottom: 40px;
}

.hero h1 {
    font-size: 3rem;
    margin-bottom: 15px;
}

.hero p {
    font-size: 1.2rem;
    margin-bottom: 30px;
    opacity: 0.9;
}

/* Hero Search Bar */
.hero-search {
    max-width: 600px;
    margin: 0 auto;
    display: flex;
    background: white;
    border-radius: 50px;
    padding: 5px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.hero-search input {
    flex: 1;
    border: none;
    padding: 15px 25px;
    font-size: 1rem;
    border-radius: 50px 0 0 50px;
    outline: none;
}

.hero-search button {
    background: var(--primary-color);
    color: white;
    border: none;
    padding: 12px 30px;
    border-radius: 50px;
    font-size: 1rem;
    cursor: pointer;
    transition: background 0.3s;
}

.hero-search button:hover {
    background: var(--secondary-color);
}

/* Slider (Hero) */
.hero-slider {
    position: relative;
    width: 100%;
    height: 650px;
    overflow: hidden;
    margin-bottom: 30px;
}

@media (max-width: 768px) {
    .hero-slider {
        height: 400px;
        /* Mobilde daha kisa yukseklik */
    }
}

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

.slide.active {
    opacity: 1;
}

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

/* Slider Navigation Buttons */
.slider-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.5);
    color: white;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-size: 1.2rem;
    transition: all 0.3s ease;
    z-index: 10;
    backdrop-filter: blur(5px);
}

.slider-btn:hover {
    background: white;
    color: var(--primary-color);
    border-color: white;
    transform: translateY(-50%) scale(1.1);
    box-shadow: 0 0 15px rgba(255, 255, 255, 0.3);
}

.slider-prev {
    left: 20px;
}

.slider-next {
    right: 20px;
}

/* Slider Dots */
.slider-dots {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
    z-index: 10;
}

.slider-dot {
    width: 12px;
    height: 12px;
    background: rgba(255, 255, 255, 0.5);
    border: 2px solid transparent;
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.3s ease;
}

.slider-dot:hover {
    background: rgba(255, 255, 255, 0.8);
    transform: scale(1.2);
}

.slider-dot.active {
    background: white;
    border-color: rgba(255, 255, 255, 0.2);
    transform: scale(1.2);
    box-shadow: 0 0 10px rgba(255, 255, 255, 0.4);
}

@media (max-width: 576px) {
    .slider-btn {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }

    .slider-prev {
        left: 10px;
    }

    .slider-next {
        right: 10px;
    }

    .slider-dot {
        width: 10px;
        height: 10px;
    }
}

.hero-content {
    position: relative;
    color: white;
    text-align: center;
    z-index: 1;
    max-width: 800px;
    padding: 0 20px;
}

.hero-content h1 {
    font-size: 3.5rem;
    margin-bottom: 20px;
    font-weight: 800;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

@media (max-width: 576px) {
    .hero-content h1 {
        font-size: 2rem;
        /* Mobilde daha kucuk baslik */
    }

    .hero-content p {
        font-size: 1rem;
    }

    .hero-content .btn {
        padding: 10px 20px;
        font-size: 0.9rem;
    }
}

.hero-content p {
    font-size: 1.3rem;
    margin-bottom: 30px;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
}

/* Page Header (Inner Pages) */
.page-header {
    background-image: url('../img/page_header_soft.png');
    background-size: cover;
    background-position: center center;
    background-attachment: scroll;
    /* Mobilde sorunsuz kaydırma için */
    height: 180px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    position: relative;
    margin-bottom: 40px;
    border-bottom: 1px solid #e0e0e0;
}

.page-header-content {
    position: relative;
    z-index: 1;
    color: var(--primary-color);
    /* Metin rengi koyu */
}

.page-header-content h1 {
    font-size: 2.2rem;
    font-weight: 800;
    margin-bottom: 10px;
}

.page-header-content .breadcrumb {
    color: var(--text-light);
    justify-content: center;
    font-size: 0.95rem;
    margin: 0;
}

.page-header-content .breadcrumb a {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 600;
}

.page-header-content .breadcrumb a:hover {
    text-decoration: underline;
    color: var(--secondary-color);
}


/* Grid Layouts */
.grid-container {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    margin-bottom: 60px;
}

@media (max-width: 768px) {
    .grid-container {
        grid-template-columns: 1fr;
        /* KESIN COZUM: Zorla tek kolon yap */
        gap: 20px;
        /* Mobilde daha kucuk bosluk */
        margin-bottom: 40px;
    }
}

@media (max-width: 1200px) {
    .grid-container {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 900px) {
    .grid-container {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 500px) {
    .grid-container {
        grid-template-columns: 1fr;
    }
}

/* Cards */
.card {
    background: var(--card-bg);
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    text-decoration: none;
    color: inherit;
    display: flex;
    flex-direction: column;
}

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

.card-image-wrapper {
    width: 100%;
    /* height: 220px; REMOVED fixed height */
    aspect-ratio: 1 / 1;
    /* Kare Format */
    height: auto;
    background-color: #fff;
    overflow: hidden;
    position: relative;
    border-bottom: 1px solid #eee;
    /* Hafif ayırıcı çizgi */
}

.card-image {
    width: 100%;
    height: 100%;
    object-fit: contain;
    /* Ürünün tamamı görünsün */
    padding: 15px;
    /* Kenar boşluğu */
    transition: transform 0.5s ease;
}

.card:hover .card-image {
    transform: scale(1.1);
}

.card-content {
    padding: 25px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.card-title {
    font-size: 1.35rem;
    font-weight: 700;
    margin-bottom: 10px;
    color: var(--primary-color);
}

.card-desc {
    font-size: 0.95rem;
    color: var(--text-light);
    margin-bottom: 20px;
    flex-grow: 1;
}

.btn-link {
    display: inline-block;
    color: var(--secondary-color);
    font-weight: 600;
    margin-top: auto;
    transition: transform 0.2s;
}

.card:hover .btn-link {
    transform: translateX(5px);
}

/* Other Pages & Utils */
.breadcrumb {
    margin: 20px 0;
    font-size: 0.9rem;
    color: var(--text-light);
}

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

.breadcrumb span {
    margin: 0 5px;
}

.product-detail-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    background: white;
    padding: 50px;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
    margin-bottom: 60px;
}

.product-gallery img {
    width: 100%;
    border-radius: var(--border-radius);
}

.product-info h1 {
    font-size: 2.2rem;
    color: var(--primary-color);
    margin-bottom: 20px;
    line-height: 1.2;
}

.product-description {
    color: var(--text-light);
    margin-bottom: 30px;
    font-size: 1.1rem;
}

.action-buttons {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
    margin-bottom: 40px;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 14px 28px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.2s;
    border: none;
    cursor: pointer;
    font-size: 1rem;
}

.btn-primary {
    background-color: var(--primary-color);
    color: white;
    box-shadow: 0 4px 10px rgba(26, 35, 126, 0.3);
}

.btn-primary:hover {
    background-color: #121858;
    transform: translateY(-2px);
    box-shadow: 0 6px 15px rgba(26, 35, 126, 0.4);
}

.btn-secondary {
    background-color: var(--secondary-color);
    color: white;
    box-shadow: 0 4px 10px rgba(255, 111, 0, 0.3);
}

.btn-secondary:hover {
    background-color: #e65100;
    transform: translateY(-2px);
    box-shadow: 0 6px 15px rgba(255, 111, 0, 0.4);
}

.video-section {
    margin-top: 50px;
}

.video-section h2 {
    margin-bottom: 25px;
    color: var(--primary-color);
    font-size: 1.8rem;
}

.video-wrapper {
    position: relative;
    padding-bottom: 56.25%;
    height: 0;
    overflow: hidden;
    border-radius: var(--border-radius);
    background: #000;
    box-shadow: var(--shadow-hover);
}

.video-wrapper iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

/* Contact Page Specific */
.contact-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    background: white;
    padding: 40px;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
    margin-bottom: 60px;
}

.contact-info-block {
    margin-bottom: 30px;
}

.contact-info-block h3 {
    color: var(--primary-color);
    margin-bottom: 10px;
    font-size: 1.2rem;
}

.contact-info-block p {
    color: #555;
    margin-bottom: 5px;
}

.contact-form .form-group {
    margin-bottom: 20px;
}

.contact-form label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
    color: var(--text-main);
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 12px;
    border: 1px solid #ddd;
    border-radius: 8px;
    font-family: inherit;
    font-size: 1rem;
}

.contact-form textarea {
    height: 150px;
    resize: vertical;
}

/* Footer (Updated) */
/* Footer (Updated Design) */
footer {
    background-color: var(--primary-color);
    color: white;
    padding: 70px 0 30px 0;
    text-align: left;
    margin-top: auto;
    font-size: 0.95rem;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
    margin-bottom: 50px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.15);
    padding-bottom: 50px;
}

.footer-section p {
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.6;
    margin-bottom: 20px;
}

.footer-section h3 {
    color: white;
    margin-bottom: 25px;
    font-size: 1.25rem;
    font-weight: 700;
    position: relative;
    padding-bottom: 10px;
}

.footer-section h3::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 40px;
    height: 3px;
    background-color: rgba(255, 255, 255, 0.3);
    border-radius: 2px;
}

/* Footer logosuna beyaz kontur (stroke) efekti */
.footer-section img {
    height: 60px !important;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.2)) brightness(0) invert(1);
    opacity: 1;
    margin-bottom: 25px !important;
}

.footer-links {
    list-style: none;
    padding: 0;
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.85);
    text-decoration: none;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 5px;
}

.footer-links a:hover {
    color: #ffffff;
    padding-left: 8px;
    /* Slide effect */
    text-decoration: none;
}

/* Remove black color on hover from generic btn-link if applied inside footer */
.footer-section .btn-link:hover {
    color: white;
}

.footer-bottom {
    text-align: center;
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.6);
    padding-top: 10px;
}

/* Contact Icons in Footer */
.footer-links i {
    width: 25px;
    /* Fixed width for alignment */
    color: rgba(255, 255, 255, 0.6);
}

.footer-links li:hover i {
    color: white;
}

/* Product Specifications Layout */
.product-specs-container {
    display: flex;
    flex-direction: column;
    gap: 30px;
    margin-top: 40px;
}

.specs-top-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    margin-bottom: 30px;
}

/* 1. Dimensions Box */
.dimensions-box {
    background-color: white;
    padding: 25px;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
    border: 1px solid #e0e0e0;
    height: 100%;
    /* Eşit yükseklik için */
}

.dimensions-title {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 15px;
    border-bottom: 2px solid #f0f0f0;
    padding-bottom: 10px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.dimensions-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 15px;
    text-align: center;
}

.dim-item {
    background-color: #f9f9f9;
    padding: 15px 10px;
    border-radius: 8px;
}

.dim-label {
    display: block;
    font-size: 0.9rem;
    color: #777;
    margin-bottom: 5px;
}

.dim-value {
    display: block;
    font-size: 1.1rem;
    font-weight: 700;
    color: #333;
}

/* 2. Package List */
.package-list {
    list-style: none;
    padding: 0;
}

.package-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px;
    background-color: #fff;
    border-bottom: 1px solid #eee;
    font-size: 0.95rem;
}

.package-item:last-child {
    border-bottom: none;
}

.pkg-name {
    font-weight: 600;
    color: #444;
}

.pkg-dims {
    color: #888;
    background-color: #f5f5f5;
    padding: 4px 10px;
    border-radius: 4px;
    font-size: 0.85rem;
}

/* 3. Hardware Grid */
.hardware-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(140px, 1fr));
    gap: 15px;
}

.hardware-card {
    background-color: white;
    border: 1px solid #eee;
    border-radius: 12px;
    padding: 15px;
    text-align: center;
    transition: transform 0.2s;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
    height: 100%;
    min-height: 180px;
}

.hardware-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
}

.hardware-img {
    width: 80px;
    height: 80px;
    object-fit: contain;
    margin-bottom: 10px;
    border-radius: 8px;
    background-color: #f9f9f9;
}

.hw-name {
    display: block;
    font-size: 1rem;
    color: #333;
    font-weight: 600;
    margin-bottom: 5px;
}

.hw-count {
    display: block;
}

.whatsapp-content h2 {
    color: #2e7d32;
    font-size: 2rem;
    margin-bottom: 15px;
}

.whatsapp-content p {
    font-size: 1.1rem;
    color: #333;
    margin-bottom: 25px;
}

.whatsapp-image {
    flex: 1;
    max-width: 400px;
    text-align: center;
}

.whatsapp-image img {
    width: 100%;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-hover);
}

.btn-whatsapp {
    background-color: #25d366;
    color: white;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 30px;
    border-radius: 50px;
    font-weight: 600;
    text-decoration: none;
    font-size: 1.1rem;
    transition: all 0.2s;
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.4);
}

.btn-whatsapp:hover {
    background-color: #1ebc57;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.5);
}

/* WhatsApp Button */
.whatsapp-float {
    position: fixed;
    width: 60px;
    height: 60px;
    bottom: 80px;
    /* Moved up for desktop */
    right: 40px;
    background-color: #25d366;
    color: #FFF;
    border-radius: 50px;
    text-align: center;
    font-size: 30px;
    box-shadow: 2px 2px 10px rgba(0, 0, 0, 0.3);
    z-index: 10000;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: all 0.3s ease;
}

.whatsapp-float:hover {
    background-color: #1ebc57;
    transform: scale(1.1);
}

@media (max-width: 768px) {
    .whatsapp-float {
        bottom: 125px;
        /* Moved up more for mobile */
    }
}

/* Mobile Responsive */
@media (max-width: 992px) {
    .hamburger {
        display: block;
    }

    .whatsapp-section {
        flex-direction: column-reverse;
        text-align: center;
    }

    .nav-menu {
        position: fixed;
        left: -100%;
        top: 100px;
        flex-direction: column;
        background-color: var(--primary-color);
        width: 100%;
        text-align: center;
        transition: 0.3s;
        padding: 20px 0;
        box-shadow: 0 5px 10px rgba(0, 0, 0, 0.2);
        gap: 0;
        align-items: stretch;
    }

    .nav-menu.active {
        left: 0;
    }

    .nav-item {
        margin: 0;
    }

    .nav-link {
        padding: 15px;
        justify-content: space-between;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
        border-radius: 0;
    }

    .dropdown-menu {
        position: static;
        opacity: 1;
        visibility: visible;
        transform: none;
        box-shadow: none;
        background-color: rgba(0, 0, 0, 0.1);
        display: none;
        border-radius: 0;
        min-width: 100%;
    }

    .dropdown-menu.active {
        display: block;
    }

    .dropdown-item {
        color: white;
        background: transparent;
        padding-left: 30px;
        text-align: left;
        border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    }

    .dropdown-item:hover {
        background-color: rgba(255, 255, 255, 0.1);
        color: var(--secondary-color);
        padding-left: 30px;
    }

    .product-detail-container,
    .contact-container {
        grid-template-columns: 1fr;
    }

    .footer-content {
        grid-template-columns: 1fr 1fr;
    }

    .hero-content h1 {
        font-size: 2.2rem;
    }

    /* Detay Sayfası Responsive */
    .product-detail-container {
        padding: 20px;
        /* Mobilde padding'i düşür */
    }

    .specs-top-row {
        grid-template-columns: 1fr;
        /* Tabloları alt alta al */
        gap: 20px;
    }

    .dimensions-grid {
        gap: 5px;
        /* Ölçü kutuları arası boşluk */
    }

    .dim-value {
        font-size: 1rem;
        /* Mobilde fontu küçült */
    }

    /* Dimensions Box Mobile Fix */
    .dimensions-box {
        padding: 15px;
        /* Reduce padding slightly but keep it */
        margin-bottom: 20px !important;
        /* Ensure separation */
        border: 1px solid #e0e0e0;
        /* Force border */
        box-shadow: var(--shadow);
        /* Force shadow */
    }

    /* Hırdavat Mobilde (Parts ile aynı) */

    .hardware-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
    }

    .hardware-card {
        padding: 10px;
        min-height: 160px;
    }

    .hardware-img {
        width: 60px;
        height: 60px;
    }
}

@media (max-width: 576px) {
    .footer-content {
        grid-template-columns: 1fr;
    }
}

/* Kurulum Aşamaları (Step Cards) */
.steps-container {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.step-card {
    background: white;
    border: 1px solid #e0e0e0;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
    overflow: hidden;
    transition: transform 0.2s;
}

.step-card:hover {
    box-shadow: var(--shadow-hover);
}

.step-header {
    background-color: #f8f9fa;
    padding: 15px 25px;
    border-bottom: 1px solid #eee;
    display: flex;
    align-items: center;
    gap: 15px;
}

.step-number {
    background-color: var(--primary-color);
    color: white;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.1rem;
    flex-shrink: 0;
}

.step-header h3 {
    margin: 0;
    font-size: 1.1rem;
    color: #333;
    font-weight: 600;
}

.step-body {
    display: grid;
    grid-template-columns: 300px 1fr;
    gap: 0;
    /* İçerik padding ile ayrılacak */
}

.step-image {
    background-color: #fff;
    border-right: 1px solid #eee;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.step-info {
    padding: 25px;
}

.step-description p {
    color: #555;
    line-height: 1.6;
    margin-bottom: 20px;
    font-size: 1.05rem;
}

.step-meta-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    background-color: #f9f9f9;
    padding: 15px;
    border-radius: 8px;
}

.meta-box {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.meta-label {
    font-size: 0.85rem;
    color: #888;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.meta-value {
    font-weight: 600;
    color: #333;
}

.mini-hardware-list {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    margin-top: 5px;
}

.mini-hw-item {
    display: flex;
    align-items: center;
    gap: 8px;
    background: white;
    padding: 5px 10px;
    border-radius: 20px;
    border: 1px solid #ddd;
    font-size: 0.85rem;
}

.mini-hw-item img {
    width: 20px;
    height: 20px;
    object-fit: contain;
}

/* Mobile Responsive Steps */
@media (max-width: 768px) {
    .step-body {
        grid-template-columns: 1fr;
        /* Alt alta */
    }

    .step-image {
        border-right: none;
        border-bottom: 1px solid #eee;
        height: auto;
    }

    .step-image img {
        height: auto !important;
        max-height: 250px;
    }

    .step-meta-grid {
        grid-template-columns: 1fr;
        /* Meta bilgileri de alt alta */
    }

    .step-header {
        padding: 15px;
    }
}

/* --- Step Image Update --- */
.step-body {
    grid-template-columns: 380px 1fr !important;
    /* Görsel alanı genişletildi */
}

.step-image img {
    cursor: zoom-in;
    transition: transform 0.3s;
}

.step-image:hover img {
    transform: scale(1.03);
}

/* --- Step Video Button --- */
.btn-step-video {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background-color: #fff;
    color: #cc0000;
    border: 1px solid #cc0000;
    padding: 8px 16px;
    border-radius: 6px;
    font-size: 0.9rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s;
    text-decoration: none;
    margin-top: 15px;
}

.btn-step-video:hover {
    background-color: #cc0000;
    color: white;
}

/* --- LIGHTBOX MODAL STYLES --- */
.lightbox-modal {
    display: none;
    position: fixed;
    z-index: 99999;
    padding-top: 50px;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0, 0, 0, 0.9);
}

.lightbox-content {
    margin: auto;
    display: block;
    width: auto;
    /* Fit to image width */
    max-width: 90%;
    /* Prevent overflow */
    max-height: 85vh;
    object-fit: contain;
    border-radius: 4px;
    box-shadow: 0 0 20px rgba(255, 255, 255, 0.1);
    animation: zoom 0.3s;
}

@keyframes zoom {
    from {
        transform: scale(0)
    }

    to {
        transform: scale(1)
    }
}

.close-lightbox {
    position: absolute;
    top: 25px;
    right: 35px;
    color: #f1f1f1;
    font-size: 40px;
    font-weight: bold;
    transition: 0.3s;
    cursor: pointer;
    z-index: 100000;
}

.close-lightbox:hover,
.close-lightbox:focus {
    color: #bbb;
    text-decoration: none;
    cursor: pointer;
}

/* Mobile Responsive Update */
@media (max-width: 768px) {
    .step-body {
        grid-template-columns: 1fr !important;
    }

    .lightbox-content {
        width: 100%;
    }
}

/* --- Video Modal Styles --- */
.video-modal-content {
    margin: 8vh auto;
    /* Dikeyde ortala */
    width: 80%;
    max-width: 900px;
    background: #000;
    position: relative;
    /* Aspect Ratio kullanarak tam dikdörtgen (16:9) oranını garantiye al */
    aspect-ratio: 16 / 9;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.6);
}

.video-modal-content iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

/* Mobile Adjustments */
@media (max-width: 768px) {
    .video-modal-content {
        width: 95%;
        /* Mobilde kenarlara yanaşsın */
        margin: 20vh auto;
    }
}

/* --- Installation Prep Box --- */
.installation-prep {
    background-color: #f8fbfa;
    /* Çok açık yeşil tonu */
    border: 1px solid #e0ece4;
    border-radius: 12px;
    padding: 20px;
    margin-bottom: 25px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.02);
}

.installation-prep h3 {
    font-size: 1.1rem;
    color: var(--primary-color);
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 10px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    padding-bottom: 10px;
}

.prep-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(100px, 1fr));
    gap: 12px;
    margin-bottom: 20px;
}

.prep-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 8px;
    background: white;
    padding: 15px 10px;
    border-radius: 10px;
    border: 1px solid #eee;
    font-size: 0.85rem;
    color: #555;
    font-weight: 600;
    text-align: center;
    transition: all 0.2s ease;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.03);
}

.prep-item:hover {
    transform: translateY(-2px);
    border-color: var(--primary-color);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.08);
}

.prep-item i {
    font-size: 1.2rem;
    color: var(--secondary-color);
    margin-bottom: 2px;
}

.prep-item.highlight {
    background-color: #e8f5e9;
    border-color: #c8e6c9;
    color: #2e7d32;
}

.prep-item.highlight i {
    color: #2e7d32;
}

.parts-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(140px, 1fr));
    gap: 15px;
}

/* Mobilde tek satırda 2 tane sığsın */
@media (max-width: 480px) {
    .parts-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

.part-card {
    background: white;
    border: 1px solid #eee;
    border-radius: 12px;
    padding: 15px;
    text-align: center;
    cursor: pointer;
    transition: all 0.2s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
    height: 100%;
    min-height: 180px;
}

.part-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    border-color: var(--primary-color);
}

.part-card img.hardware-img {
    width: 80px;
    height: 80px;
    object-fit: contain;
    /* veya cover, görsele göre */
    margin-bottom: 10px;
    border-radius: 8px;
    background-color: #f9f9f9;
}

.part-card .hw-name {
    font-weight: 600;
    color: var(--text-main);
    font-size: 0.9rem;
    margin-bottom: 5px;
    display: block;
    line-height: 1.3;
}

.part-card .hw-count {
    font-size: 0.8rem;
    color: #888;
    background: #f5f5f5;
    padding: 4px 8px;
    border-radius: 4px;
    display: inline-block;
}

/* Mobile Adjustments for Parts Grid */
@media (max-width: 768px) {
    .parts-grid {
        grid-template-columns: repeat(2, 1fr);
        /* Mobilde net 2 kolon */
        gap: 10px;
    }

    .part-card {
        padding: 10px;
        min-height: 160px;
    }

    .part-card img.hardware-img {
        width: 60px;
        height: 60px;
    }

    .part-card .hw-name {
        font-size: 0.85rem;
    }
}


.prep-note {
    display: flex;
    gap: 10px;
    font-size: 0.9rem;
    color: #666;
    background: #fff;
    padding: 10px;
    border-radius: 6px;
    border-left: 4px solid var(--secondary-color);
}

.prep-note i {
    color: var(--secondary-color);
    margin-top: 3px;
}

/* --- New Action Buttons --- */
.btn-outline-primary {
    background-color: transparent;
    border: 2px solid var(--primary-color);
    color: var(--primary-color);
}

.btn-outline-primary:hover {
    background-color: var(--primary-color);
    color: white;
}

.btn-order {
    background-color: #27ae60;
    /* Canlı bir yeşil (Sipariş/Sepet rengi) */
    color: white;
    box-shadow: 0 4px 10px rgba(39, 174, 96, 0.3);
    border: 2px solid #27ae60;
}

.btn-order:hover {
    background-color: #219150;
    border-color: #219150;
    transform: translateY(-2px);
    box-shadow: 0 6px 15px rgba(39, 174, 96, 0.4);
}

.action-buttons {
    gap: 15px;
    /* Boşluğu biraz kısalttım */
}

/* --- EXPANDED STEP IMAGES --- */
.step-body {
    /* Görsel alanını kartın yarısı (%50) olacak şekilde genişlet */
    grid-template-columns: 1fr 1fr !important;
    align-items: center;
    /* Resmi dikeyde ortala */
}

.step-image {
    padding: 10px !important;
    background-color: #fdfdfd;
}

.step-image img {
    /* HTML inline style'ı ezmek için !important kullanıyoruz */
    height: auto !important;
    max-height: 450px !important;
    /* Resim daha uzun olabilir */
    width: 100% !important;
    object-fit: contain;
}

/* Mobilde yine alt alta olsun */
@media (max-width: 992px) {
    .step-body {
        grid-template-columns: 1fr !important;
    }

    .step-image img {
        max-height: 300px !important;
    }
}

/* --- NO IMAGE STEP LAYOUT --- */
.step-body.no-image {
    grid-template-columns: 1fr !important;
    /* Tek kolon yap */
}

.step-body.no-image .step-image {
    display: none !important;
    /* Resim alanını tamamen gizle */
}

.step-body.no-image .step-info {
    padding: 30px;
    /* İçeriğe biraz daha ferah boşluk ver */
}

/* Eğer resim yoksa açıklama metni daha büyük olabilir */
.step-body.no-image .step-description p {
    font-size: 1.1rem;
}

/* --- Hardware Modal Styles --- */
.hw-modal-content {
    background-color: #fefefe;
    margin: 10% auto;
    padding: 0;
    width: 60%;
    max-width: 700px;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.4);
    animation: zoom 0.3s;
}

.hw-modal-grid {
    display: grid;
    grid-template-columns: 250px 1fr;
    min-height: 300px;
}

.hw-modal-image {
    background-color: #f5f5f5;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 30px;
    border-right: 1px solid #eee;
}

.hw-modal-image img {
    width: 100%;
    max-height: 200px;
    object-fit: contain;
}

.hw-modal-info {
    padding: 40px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.hw-modal-info h3 {
    font-size: 1.8rem;
    margin-bottom: 20px;
    color: var(--primary-color);
    border-bottom: 2px solid var(--secondary-color);
    /* Başlık altı çizgi */
    display: inline-block;
    padding-bottom: 10px;
}

.hw-modal-info p {
    font-size: 1.1rem;
    line-height: 1.6;
    color: #444;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .hw-modal-content {
        width: 90%;
        margin: 20% auto;
    }

    .hw-modal-grid {
        grid-template-columns: 1fr;
    }

    .hw-modal-image {
        padding: 20px;
        min-height: 200px;
    }

    .hw-modal-image img {
        max-height: 150px;
    }

    .hw-modal-info {
        padding: 25px;
    }
}

/* --- WhatsApp Support Section Fix --- */
.whatsapp-section {
    display: flex;
    align-items: center;
    background: linear-gradient(135deg, #e0f2f1 0%, #b9f6ca 100%);
    border-radius: 12px;
    padding: 0 50px;
    margin: 60px 0;
    box-shadow: 0 10px 30px rgba(46, 125, 50, 0.15);
    overflow: hidden;
    position: relative;
    gap: 40px;
}

.whatsapp-content {
    flex: 1;
    padding: 40px 0;
    z-index: 2;
}

.whatsapp-content h2 {
    color: #1b5e20;
    font-size: 2rem;
    margin-bottom: 15px;
}

.whatsapp-content p {
    color: #2e7d32;
    font-size: 1.1rem;
    margin-bottom: 25px;
    line-height: 1.6;
    max-width: 600px;
}

.btn-whatsapp {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background-color: #25D366;
    color: white;
    padding: 15px 30px;
    border-radius: 50px;
    font-weight: bold;
    font-size: 1.1rem;
    text-decoration: none;
    box-shadow: 0 5px 15px rgba(37, 211, 102, 0.4);
    transition: all 0.3s;
}

.btn-whatsapp:hover {
    background-color: #128C7E;
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(37, 211, 102, 0.6);
}

.whatsapp-image {
    flex: 1;
    display: flex;
    justify-content: flex-end;
    align-items: flex-end;
    position: relative;
    height: 100%;
}

.whatsapp-image img {
    max-width: 100%;
    /*height: auto;*/
    max-height: 250px;
    /* Reduced from 350px */
    object-fit: contain;
    margin-bottom: 0px;
    /* Slight offset fixed */
}

/* Mobile Responsive Override */
@media (max-width: 992px) {
    .whatsapp-section {
        flex-direction: column-reverse;
        text-align: center;
        padding: 40px 20px 0 20px;
        gap: 20px;
    }

    .whatsapp-content {
        padding: 20px 0 40px 0;
    }

    .whatsapp-content p {
        margin: 0 auto 25px auto;
    }

    .whatsapp-image {
        justify-content: center;
    }

    .whatsapp-image img {
        max-height: 180px;
        /* Reduced from 250px */
        margin-bottom: 20px;
        /* Gorsel ile yazi arasina bosluk ekle */
    }
}

/* --- Button Group & Call Button --- */
.button-group {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.btn-call {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background-color: #0288d1;
    /* Canlı Mavi */
    color: white;
    padding: 15px 30px;
    border-radius: 50px;
    font-weight: bold;
    font-size: 1.1rem;
    text-decoration: none;
    box-shadow: 0 5px 15px rgba(2, 136, 209, 0.4);
    transition: all 0.3s;
}

.btn-call:hover {
    background-color: #01579b;
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(2, 136, 209, 0.6);
}

/* Mobile Responsive Override */
@media (max-width: 768px) {
    .button-group {
        justify-content: center;
        flex-direction: column;
        /* Mobilde butonlar alt alta daha rahat basılır */
        gap: 15px;
        width: 100%;
    }

    .btn-whatsapp,
    .btn-call {
        width: 100%;
        /* Tam genişlik */
        justify-content: center;
    }
}

/* --- Category Card Design (Overlay Style) --- */
.category-grid .card {
    height: 300px;
    /* Sabit yükseklik, görsel kapağını garanti eder */
    position: relative;
    border: none;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.category-grid .card-image-wrapper {
    height: 100%;
    /* Tüm kartı kapla */
    aspect-ratio: auto !important;
    /* Kare zorunluluğunu kaldır (yatay dikdörtgen olabilir) */
    border-bottom: none;
}

.category-grid .card-image {
    object-fit: cover !important;
    /* Görseli tam doldur */
    padding: 0 !important;
    /* Kenar boşluğunu kaldır */
    filter: brightness(0.85);
    /* Hafif karart */
    transition: all 0.5s ease;
}

.category-grid .card:hover .card-image {
    filter: brightness(0.7);
    transform: scale(1.05);
    /* Yavaşça zoom yap */
}

.category-grid .card-content {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8), transparent);
    color: white;
    padding: 30px 20px 20px 20px;
    z-index: 2;
    text-align: center;
    justify-content: flex-end;
    /* İçeriği alta yasla */
    height: 100%;
    /* Gradient için tam boy verilebilir ama içerik altta kalsın */
    pointer-events: none;
    /* Tıklamayı engelleme (link kapsayıcıda), ama hover efekti */
}

/* Kategori Başlığı */
.category-grid .card-title {
    color: white !important;
    font-size: 1.6rem;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
    margin-bottom: 5px;
}

/* Açıklama metni */
.category-grid .card-desc {
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.95rem;
    margin-bottom: 15px;
    display: block;
    /* Veya gizle: none */
    flex-grow: 0;
}

/* Buton linkini gizle veya değiştir */
.category-grid .btn-link {
    color: #fff;
    background: rgba(255, 255, 255, 0.2);
    padding: 8px 16px;
    border-radius: 20px;
    backdrop-filter: blur(5px);
    width: max-content;
    margin: 0 auto;
    font-size: 0.9rem;
}

@media (max-width: 768px) {

    /* Konteyner'a padding ekleyerek kartlari daralt (Genişlik sorunu çözümü) */
    /* Konteyner'a padding ekleyerek kartlari daraltma IMIZ EDILDI - Standart akis korundu */


    /* --- Overlay IPTAL EDILDI (Riskli yapidan donus) --- */
    /* Polished Stack Layout (Mevcut en iyi hal) */
    .category-grid .card {
        height: auto;
        display: flex;
        flex-direction: column;
        /* Standart Dikey Stack Layout */
        border: 1px solid rgba(0, 0, 0, 0.04);
        /* Cok hafif cerceve */
        border-radius: 16px;
        /* Modern, yuvarlak koseler */
        box-shadow: 0 10px 20px -5px rgba(26, 77, 46, 0.08);
        /* Havali soft golge */
        align-items: stretch;
        overflow: hidden;
        /* Gorsel koselerini kirp */
        transition: transform 0.3s ease, box-shadow 0.3s ease;
    }

    .category-grid .card:active {
        transform: scale(0.98);
        /* Tiklama efekti */
    }

    /* Gorsel alani (Ust Taraf) */
    .category-grid .card-image-wrapper {
        width: 100%;
        height: 200px;
        /* Ideal mobil yukseklik */
        position: relative;
    }

    .category-grid .card-image {
        filter: none;
        object-fit: cover;
    }

    /* Icerik alani (Alt Taraf) */
    .category-grid .card-content {
        position: relative;
        width: 100%;
        background: white;
        /* Temiz beyaz zemin */
        color: var(--text-main);
        padding: 20px;
        text-align: center;
        /* Ortala */
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        height: auto;
    }

    .category-grid .card-title {
        color: var(--primary-color) !important;
        font-size: 1.35rem;
        font-weight: 700;
        text-shadow: none;
        margin-bottom: 8px;
        line-height: 1.2;
    }

    .category-grid .card-desc {
        color: var(--text-light);
        margin-bottom: 20px;
        font-size: 0.9rem;
        display: block;
        line-height: 1.5;
        opacity: 0.9;
    }

    /* Hap Buton Tasarimi (Normal Renkli) */
    .category-grid .btn-link {
        color: var(--primary-color);
        background: rgba(26, 77, 46, 0.08);
        /* Hafif yesil zemin */
        padding: 10px 20px;
        border-radius: 30px;
        /* Tam yuvarlak (Pill) */
        backdrop-filter: none;
        margin-top: 5px;
        font-size: 0.9rem;
        font-weight: 600;
        display: inline-flex;
        align-items: center;
        gap: 8px;
        transition: all 0.3s ease;
    }

    .category-grid .btn-link i {
        transition: transform 0.3s ease;
    }

    .category-grid .btn-link:hover {
        background: var(--primary-color);
        color: white;
    }

    .category-grid .btn-link:hover i {
        transform: translateX(3px);
    }

    /* --- Urun Slider Sikilastirma --- */
    .product-slider {
        padding: 0 5px;
        /* Yan bosluklari azalt */
        gap: 10px;
        /* Kartlar arasi mesafe */
    }

    /* Mobilde Parca Tablosu Font Ayari */
    .parts-table th,
    .parts-table td {
        font-size: 0.85rem;
        padding: 8px;
    }
}

.product-card {
    margin-bottom: 0;
    /* Gereksiz margin silindi */
    border-radius: 12px;
    /* Biraz daha kucuk radius */
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.08);
    /* Daha hafif golge */
}

.product-card .card-content {
    padding: 10px;
    /* Icerik boslugunu daralt */
}

.product-card .card-title {
    font-size: 1rem;
    /* Fontu kucult */
    margin-bottom: 3px;
}

.product-card .card-desc {
    font-size: 0.8rem;
    margin-bottom: 8px;
    white-space: nowrap;
    /* Tek satir yap */
    overflow: hidden;
    text-overflow: ellipsis;
}

.product-card .btn-link {
    padding: 6px 12px;
    font-size: 0.8rem;
}

/* Global Buton Hover Fix */
.btn-link:hover {
    color: var(--primary-color) !important;
    /* Global fix */
}

/* Urun Kartlari (En Cok Tercih Edilenler) Polish */
.product-card {
    border: 1px solid rgba(0, 0, 0, 0.04);
    border-radius: 16px;
    box-shadow: 0 8px 16px -4px rgba(0, 0, 0, 0.06);
    overflow: hidden;
    background: white;
    margin-bottom: 10px;
    /* Slider icinde alt bosluk */
}

.product-card .card-image-wrapper {
    border-radius: 16px 16px 0 0;
    /* Sadece ust kisim yuvarlak */
}

.product-card .card-content {
    padding: 15px;
    text-align: center;
}

.product-card .card-title {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 5px;
    color: var(--text-main);
}

.product-card .card-desc {
    font-size: 0.85rem;
    color: var(--text-light);
    margin-bottom: 12px;
}

/* Urunlerde de Hap Buton */
.product-card .btn-link {
    color: var(--primary-color);
    background: rgba(26, 77, 46, 0.08);
    padding: 8px 16px;
    border-radius: 30px;
    font-size: 0.85rem;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    transition: all 0.3s ease;
}

.product-card .btn-link:hover {
    background: var(--primary-color);
    color: white;
}



.category-grid .card:hover .btn-link {
    background: var(--primary-color);
    transform: none;
}

/* --- Product Slider Styles --- */
.slider-container {
    position: relative;
    width: 100%;
    overflow: hidden;
    padding: 10px 0 20px 0;
    /* Gölgeler kesilmesin diye padding */
}

.product-slider {
    display: flex;
    overflow-x: auto;
    scroll-behavior: smooth;
    gap: 25px;
    padding: 10px 5px;
    /* Kart gölgeleri için */
    scrollbar-width: none;
    /* Firefox scrollbar gizle */
    -ms-overflow-style: none;
    /* IE/Edge scrollbar gizle */
    scroll-snap-type: x mandatory;
    /* Kartların tam durmasını sağla */
}

.product-slider::-webkit-scrollbar {
    display: none;
    /* Chrome/Safari scrollbar gizle */
}

.product-card {
    flex: 0 0 auto;
    /* Esnemesin */
    width: 280px;
    /* Sabit genişlik */
    scroll-snap-align: start;
    /* Kaydırma hizalaması */
    height: 100%;
    /* Flex içinde eşit boy */
    background: #fff;
    /* Ürün kartı beyaz olsun */
}

/* Kategori kartlarından farklı olarak normal ürün kartı gibi görünsün */
/* .card class'ı zaten style.css'te tanımlı, sadece genişliği slider ile override ediyoruz */

/* Navigasyon Butonları */
.nav-btn {
    background: white;
    border: 1px solid #ddd;
    color: var(--primary-color);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    cursor: pointer;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    transition: all 0.2s;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.nav-btn:hover {
    background: var(--primary-color);
    color: white;
    border-color: var(--primary-color);
}

.slider-nav {
    display: flex;
    gap: 10px;
}

/* Mobilde kartlar biraz daha dar olabilir */
/* Mobilde kartlar biraz daha dar olabilir */
@media (max-width: 768px) {
    .product-card {
        width: 200px;
        /* Kart genisligini dusur */
    }

    .product-slider {
        scroll-padding-left: 20px;
        /* Sol taraftan bosluk birak */
        padding-left: 20px;
    }
}

/* --- Slider Drag Cursor --- */
.product-slider {
    cursor: grab;
    /* Normalde tutulabilir ikon */
    user-select: none;
    /* Metin seçimini engelle */
}

.product-slider.active {
    cursor: grabbing;
    /* Tutarken sıkma ikonu */
    scroll-snap-type: none;
    /* Sürüklerken snap yapma, daha akıcı olsun */
    scroll-behavior: auto;
    /* Anlık tepki versin */
}

/* --- Slider Image No Drag --- */
.product-slider img {
    -webkit-user-drag: none;
    /* Chrome/Safari/Edge için */
    user-drag: none;
    /* Standart (desteklenirse) */
    user-select: none;
    /* Seçimi engelle */
    pointer-events: none;
    /* Resimlerin tıklamayı engellemesini önle (tıklama karta geçsin) */
}

/* --- Layout Safety Fixes --- */
.popular-section {
    width: 100%;
    max-width: 100%;
    overflow: hidden;
    /* Taşmayı engelle */
    margin: 60px 0;
}

.whatsapp-section {
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
    /* Padding dahil et */
}

/* Footer taşmasını engelle */
footer {
    width: 100%;
    overflow-x: hidden;
}

/* Slider container taşmasını engelle */
.slider-container {
    max-width: 100%;
}

/* --- 3D Part Modal Styles --- */
.part-modal-content {
    background-color: #fefefe;
    margin: 5% auto;
    padding: 0;
    width: 70%;
    max-width: 900px;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.4);
    animation: zoom 0.3s;
}

.part-modal-header {
    padding: 20px 30px;
    border-bottom: 1px solid #eee;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: #fff;
}

.part-modal-header h3 {
    margin: 0;
    color: var(--primary-color);
    font-size: 1.5rem;
}

.part-dims-badge {
    background: #f0f0f0;
    color: #666;
    padding: 6px 12px;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 600;
}

.part-modal-body {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 0;
}

.model-nav-container {
    background: #f5f5f5;
    padding: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-right: 1px solid #eee;
}

.part-details-text {
    padding: 30px;
    display: flex;
    flex-direction: column;
}

.part-details-text h4 {
    margin-bottom: 15px;
    color: var(--text-main);
    font-size: 1.1rem;
    border-bottom: 2px solid var(--secondary-color);
    display: inline-block;
    padding-bottom: 5px;
    width: max-content;
}

.part-details-text p {
    color: #555;
    line-height: 1.6;
    margin-bottom: 30px;
    font-size: 1rem;
}

.model-viewer-tips {
    margin-top: auto;
    background: #e8f5e9;
    padding: 15px;
    border-radius: 8px;
    font-size: 0.9rem;
    color: #1b5e20;
    /* Darker green (almost black-green) for better visibility */
    display: flex;
    flex-direction: column;
    gap: 10px;
    font-weight: 500;
}

.model-viewer-tips i {
    margin-right: 8px;
}

/* Mobile Responsive Part Modal */
@media (max-width: 992px) {
    .part-modal-content {
        width: 95%;
        margin: 10% auto;
    }

    .part-modal-body {
        grid-template-columns: 1fr;
    }

    .model-nav-container {
        border-right: none;
        border-bottom: 1px solid #eee;
        padding: 0;
    }

    .model-nav-container model-viewer {
        height: 300px !important;
    }

    .part-details-text {
        padding: 20px;
    }
}

/* Category Page Specific Styles */
.breadcrumb-container {
    background-color: #f8f9fa;
    padding: 15px 0;
    margin-bottom: 20px;
    border-bottom: 1px solid #e9ecef;
}

.breadcrumb {
    display: flex;
    flex-wrap: wrap;
    padding: 0;
    margin: 0;
    list-style: none;
    align-items: center;
    gap: 10px;
}

.breadcrumb li {
    display: flex;
    align-items: center;
    font-size: 0.9rem;
    color: #6c757d;
}

.breadcrumb li a {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.2s;
}

.breadcrumb li a:hover {
    color: var(--secondary-color);
    text-decoration: underline;
}

.breadcrumb li i {
    font-size: 0.7rem;
    color: #ccc;
    margin: 0 5px;
}

.breadcrumb li span {
    color: #6c757d;
    font-weight: 600;
}

/* Page Title Spacing */
.page-title {
    margin-top: 20px;
    margin-bottom: 30px;
    font-size: 2rem;
    font-weight: 700;
    color: var(--text-main);
    padding-bottom: 15px;
    border-bottom: 2px solid #f0f0f0;
    display: inline-block;
    /* Title underline width fit */
}

/* Mobile Breadcrumb Adjustments */
@media (max-width: 768px) {
    .breadcrumb-container {
        padding: 10px 0;
    }

    .breadcrumb {
        font-size: 0.85rem;
    }

    .page-title {
        font-size: 1.5rem;
        margin-top: 10px;
        margin-bottom: 20px;
    }
}

/* Product Detail Page Styles */
.product-detail-container {
    display: flex;
    gap: 40px;
    margin-top: 30px;
    flex-wrap: wrap;
}

.product-gallery {
    flex: 1;
    min-width: 300px;
}

.product-gallery img {
    width: 100%;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    /* Subtle shadow */
    border: 1px solid #f0f0f0;
}

.product-info {
    flex: 1;
    min-width: 300px;
}

.product-info h1 {
    font-size: 2rem;
    color: var(--text-main);
    margin-bottom: 15px;
    line-height: 1.2;
}

.product-price {
    font-size: 2rem;
    color: var(--primary-color);
    font-weight: 700;
    margin: 20px 0;
    display: flex;
    align-items: center;
    gap: 10px;
}

.add-to-cart-btn {
    background-color: var(--primary-color);
    color: white;
    padding: 15px 40px;
    border: none;
    border-radius: 5px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
    display: inline-flex;
    align-items: center;
    gap: 12px;
    margin-top: 20px;
}

.add-to-cart-btn:hover {
    background-color: var(--secondary-color);
    transform: translateY(-2px);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
}

.product-description {
    margin-top: 40px;
    background: #f8f9fa;
    padding: 25px;
    border-radius: 8px;
    border: 1px solid #e9ecef;
}

.product-description h3 {
    font-size: 1.3rem;
    margin-bottom: 15px;
    border-bottom: 1px solid #dee2e6;
    padding-bottom: 10px;
    color: #333;
}

/* Mobile Product Page */
@media (max-width: 768px) {
    .product-detail-container {
        flex-direction: column;
        gap: 20px;
        margin-top: 15px;
    }

    .product-info h1 {
        font-size: 1.6rem;
        margin-bottom: 10px;
    }

    .product-price {
        font-size: 1.6rem;
        margin: 15px 0;
    }

    .add-to-cart-btn {
        width: 100%;
        justify-content: center;
    }
}

/* Category Grid & Card Styles (Similar to Instructions Layout) */
/* Category & Product Grid Styles */
.grid-container {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
    gap: 10px;
    margin-bottom: 50px;
}

.category-card,
.product-card {
    display: flex;
    flex-direction: column;
    background: #fff;
    border-radius: 6px;
    overflow: hidden;
    /* No border for clean look */
    border: none;
    text-decoration: none;
    transition: all 0.3s ease;
    height: 100%;
}

.category-card:hover,
.product-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
    /* Premium deep shadow */
    border-color: transparent;
}

.card-image-wrapper {
    width: 100%;
    /* height: 200px; REMOVED FIXED HEIGHT */
    aspect-ratio: 1 / 1;
    /* Enforce 1:1 Square Ratio */
    overflow: hidden;
    position: relative;
    background-color: #fff;
    /* Changed from gray to white to blend with reduced padding */
    border-bottom: 1px solid #f0f0f0;
    /* Separator line */
}

.card-image {
    width: 100%;
    height: 100%;
    object-fit: contain;
    /* Ensure products fit nicely without crop */
    padding: 5px;
    /* Drastically reduced from 15px to make image bigger */

    transition: transform 0.5s ease, filter 0.5s ease;
}

.category-card:hover .card-image,
.product-card:hover .card-image {
    transform: scale(1.08);
}

.card-content {
    padding: 20px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    flex-grow: 1;
}

.card-title {
    font-size: 1.25rem;
    /* Larger title */
    font-weight: 700;
    color: var(--text-main);
    margin-bottom: 10px;
    transition: color 0.3s;
    line-height: 1.4;
}

.category-card:hover .card-title,
.product-card:hover .card-title {
    color: var(--primary-color);
}

.btn-link {
    font-size: 0.95rem;
    color: var(--primary-color);
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 8px;
    margin-top: auto;
    /* Push to bottom */
}

.btn-link i {
    transition: transform 0.3s;
}

.category-card:hover .btn-link i {
    transform: translateX(5px);
}

/* Mobile Menu Recursive Submenu Fix */
@media (max-width: 991px) {

    /* Reset absolute positioning for deep submenus so they appear inline (accordion style) */
    .dropdown-menu .submenu,
    .dropdown-menu .dropdown-menu .submenu {
        position: static;
        width: 100%;
        box-shadow: none;
        border: none;
        padding-left: 15px;
        /* Indent for hierarchy */
        background-color: transparent;
        display: none;
        /* Hidden by default, toggled by JS block below */
        left: auto;
        top: auto;
        opacity: 1;
        /* Ensure visible */
        visibility: visible;
        transform: none;
        /* Remove any desktop transforms */
        border-left: 2px solid #eee;
        /* Visual hierarchy guide */
    }

    .nav-item.open>.submenu,
    .dropdown-menu li.open>.submenu {
        display: block !important;
    }
}

/* --- New Info & About Sections (Centered & Sharp) --- */
.info-section {
    padding: 60px 0;
    text-align: center;
    background-color: #fff;
    margin-bottom: 50px;
}

.info-block {
    margin-bottom: 50px;
    max-width: 800px;
    /* Narrower for better readability */
    margin-left: auto;
    margin-right: auto;
}

.info-block:last-child {
    margin-bottom: 0;
}

.info-title {
    font-family: 'Quicksand', sans-serif;
    font-size: 28px;
    color: #0B6477;
    margin-bottom: 25px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    display: block;
}

/* Removing decorative line to match clean ref */
.info-title::after {
    content: none;
}

.info-text {
    font-family: 'Quicksand', sans-serif;
    font-size: 16px;
    color: #000000;
    /* Pure black */
    font-weight: 500;
    line-height: 1.8;
    margin: 0 auto;
}

/* --- Features Grid Section (Reverted to Centered Vertical for 'Ortala') --- */
.features-container {
    padding: 50px 0;
    margin-bottom: 30px;
    background-color: #f9f9f9;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    text-align: center;
    /* Center align everything */
}

.feature-box {
    background: transparent;
    padding: 20px;
    display: flex;
    flex-direction: column;
    /* Vertical stack */
    align-items: center;
    /* Center horizontally */
    gap: 15px;
    transition: transform 0.3s ease;
}

.feature-box:hover {
    transform: translateY(-5px);
}

.feature-icon {
    font-size: 3rem;
    /* Larger icon */
    color: #333;
    margin-bottom: 5px;
    display: inline-block;
}

.feature-text-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    /* Center text stack */
}

.feature-title {
    font-family: 'Quicksand', sans-serif;
    font-weight: 700;
    font-size: 18px;
    color: #000;
    margin-bottom: 8px;
}

.feature-desc {
    font-family: 'Quicksand', sans-serif;
    color: #555;
    /* Darker gray for clarity */
    font-size: 14px;
    line-height: 1.5;
    max-width: 250px;
    /* Prevent too wide lines */
    margin: 0 auto;
}

/* --- Promotional Banners Section --- */
.promo-banners {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    margin: 20px auto;
    max-width: 1200px;
    /* Match container */
}

.promo-banner-img {
    width: 100%;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    /* Premium shadow */
    transition: transform 0.3s ease;
}

.promo-banner-img:hover {
    transform: scale(1.02);
}

@media (max-width: 768px) {
    .promo-banners {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .info-title {
        font-size: 24px;
    }

    .feature-box {
        background: #fff;
        /* White cards on mobile for separation */
        box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    }
}

/* Features Grid Layout - Added Globally */
.features-container {
    padding: 20px 0;
    margin-top: 10px;
    background-color: transparent;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr) !important; /* Force 4 columns */
    gap: 20px;
}

.feature-box {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 20px;
    background: white;
    border: 1px solid #eee;
    border-radius: 8px;
    transition: transform 0.3s ease;
}

.feature-box:hover {
    transform: translateY(-3px);
    border-color: var(--primary-color);
}

.feature-icon {
    font-size: 2rem;
    color: var(--primary-color);
    min-width: 40px;
    text-align: center;
}

.feature-text-content {
    flex: 1;
}

.feature-title {
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 5px;
    color: #333;
}

.feature-desc {
    font-size: 0.85rem;
    color: #666;
    line-height: 1.3;
    margin: 0;
}

@media (max-width: 1200px) {
    .features-grid {
        grid-template-columns: repeat(2, 1fr) !important;
    }
}

@media (max-width: 768px) {
    .features-grid {
        grid-template-columns: 1fr !important;
    }
    .feature-box {
        flex-direction: row; /* Keep icon side-by-side on mobile too, or column if preferred */
        text-align: left;
    }
}