/* ============================
   CSS Variables & Reset
   ============================ */
:root {
    --primary-blue: #d4a574;
    --primary-green: #1b4332;
    --dark-blue: #c8965f;
    --light-green: #1b4332;
    --white: #FFFFFF;
    --off-white: #F8F9FA;
    --light-gray: #E9ECEF;
    --gray: #6C757D;
    --dark-gray: #343A40;
    --black: #1A1A1A;
    --shadow-sm: 0 2px 4px rgba(0, 0, 0, 0.1);
    --shadow-md: 0 4px 6px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 10px 15px rgba(0, 0, 0, 0.1);
    --shadow-xl: 0 20px 25px rgba(0, 0, 0, 0.15);
    --transition: all 0.3s ease;
    --border-radius: 12px;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    /* Better touch behavior */
    -webkit-tap-highlight-color: transparent;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
    /* Prevent text size adjustment on mobile */
    -webkit-text-size-adjust: 100%;
    -ms-text-size-adjust: 100%;
}

body {
    font-family: 'Poppins', sans-serif;
    line-height: 1.6;
    color: var(--dark-gray);
    background-color: var(--white);
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    /* Smooth scrolling on mobile */
    -webkit-overflow-scrolling: touch;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
    /* Prevent layout shifts */
    object-fit: cover;
    /* Better rendering on mobile */
    image-rendering: -webkit-optimize-contrast;
    image-rendering: crisp-edges;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

ul {
    list-style: none;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-header h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--black);
    margin-bottom: 15px;
    position: relative;
    display: inline-block;
}

.section-header h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, #d4a574, var(--primary-green));
    border-radius: 2px;
}

.section-header p {
    font-size: 1.1rem;
    color: var(--gray);
    max-width: 600px;
    margin: 20px auto 0;
}

.highlight {
    color: var(--primary-green);
}

/* ============================
   Navigation Bar
   ============================ */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.1) 0%, rgba(255, 255, 255, 0.05) 100%);
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.1);
    z-index: 1000;
    transition: var(--transition);
}

.navbar.scrolled {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.95) 0%, rgba(255, 255, 255, 0.9) 100%);
    backdrop-filter: blur(25px) saturate(200%);
    -webkit-backdrop-filter: blur(25px) saturate(200%);
    border-bottom: 1px solid rgba(212, 165, 116, 0.1);
    box-shadow: 0 8px 32px 0 rgba(212, 165, 116, 0.15);
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 20px;
}

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
}

.logo-img {
    width: 50px;
    height: 50px;
    object-fit: contain;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.1));
}

.logo-text {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--white);
    transition: var(--transition);
}

.navbar.scrolled .logo-text {
    color: var(--primary-blue);
}

.nav-menu {
    display: flex;
    gap: 35px;
    align-items: center;
}

.nav-menu a {
    font-weight: 500;
    color: var(--white);
    position: relative;
    padding: 5px 0;
    transition: var(--transition);
}

.navbar.scrolled .nav-menu a {
    color: var(--dark-gray);
}

.nav-menu a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary-green);
    transition: var(--transition);
}

.nav-menu a:hover::after,
.nav-menu a.active::after {
    width: 100%;
}

.nav-menu a:hover {
    color: var(--primary-blue);
}

.nav-actions {
    display: flex;
    align-items: center;
    gap: 15px;
}

.lang-toggle {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 8px;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.15) 0%, rgba(255, 255, 255, 0.1) 100%);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1.5px solid rgba(255, 255, 255, 0.4);
    padding: 6px;
    border-radius: 25px;
    cursor: pointer;
    transition: var(--transition);
    font-weight: 600;
    color: var(--white);
    box-shadow: 0 4px 16px 0 rgba(0, 0, 0, 0.1);
    width: 90px;
}

.lang-option {
    position: relative;
    z-index: 2;
    padding: 6px 12px;
    font-size: 0.85rem;
    transition: all 0.3s ease;
    color: var(--white);
}

.toggle-slider {
    position: absolute;
    top: 6px;
    left: 6px;
    width: 42px;
    height: 28px;
    background: linear-gradient(135deg, var(--primary-green), #d4a574);
    border-radius: 20px;
    transition: all 0.3s ease;
    z-index: 1;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

.lang-toggle.tr-active .toggle-slider {
    left: calc(100% - 48px);
}

.lang-toggle.tr-active .lang-option[data-lang="tr"] {
    color: var(--white);
}

.lang-toggle:not(.tr-active) .lang-option[data-lang="en"] {
    color: var(--white);
}

.lang-toggle.tr-active .lang-option[data-lang="en"],
.lang-toggle:not(.tr-active) .lang-option[data-lang="tr"] {
    color: rgba(255, 255, 255, 0.5);
}

.navbar.scrolled .lang-toggle {
    background: linear-gradient(135deg, rgba(212, 165, 116, 0.1) 0%, rgba(27, 67, 50, 0.1) 100%);
    border-color: #d4a574;
}

.navbar.scrolled .lang-option {
    color: #d4a574;
}

.navbar.scrolled .lang-toggle.tr-active .lang-option[data-lang="tr"],
.navbar.scrolled .lang-toggle:not(.tr-active) .lang-option[data-lang="en"] {
    color: var(--white);
}

.navbar.scrolled .lang-toggle.tr-active .lang-option[data-lang="en"],
.navbar.scrolled .lang-toggle:not(.tr-active) .lang-option[data-lang="tr"] {
    color: rgba(212, 165, 116, 0.4);
}

.lang-toggle:hover {
    border-color: rgba(255, 255, 255, 0.6);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px 0 rgba(0, 0, 0, 0.15);
}

.lang-toggle:hover .toggle-slider {
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

.navbar.scrolled .lang-toggle:hover {
    transform: translateY(-2px);
}

.contact-btn {
    background: linear-gradient(135deg, rgba(27, 67, 50, 0.9), rgba(27, 67, 50, 0.8));
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    color: var(--white);
    padding: 12px 28px;
    border-radius: 25px;
    border: 1px solid rgba(255, 255, 255, 0.3);
    cursor: pointer;
    font-weight: 600;
    transition: var(--transition);
    box-shadow: 0 4px 16px 0 rgba(27, 67, 50, 0.3);
}

.contact-btn:hover {
    background: linear-gradient(135deg, rgba(27, 67, 50, 1), rgba(27, 67, 50, 0.95));
    transform: translateY(-2px);
    box-shadow: 0 6px 20px 0 rgba(27, 67, 50, 0.4);
}

.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 5px;
}

.mobile-menu-toggle span {
    width: 25px;
    height: 3px;
    background-color: var(--white);
    border-radius: 2px;
    transition: var(--transition);
}

.navbar.scrolled .mobile-menu-toggle span {
    background-color: var(--primary-blue);
}

/* ============================
   Hero Section
   ============================ */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    padding-top: 80px;
    overflow: hidden;
}

/* Mobile optimization - disable fixed background */
@media (max-width: 768px) {
    .hero {
        background-attachment: scroll;
    }
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to right, rgba(27, 67, 50, 0.85) 0%, rgba(27, 67, 50, 0.6) 40%, rgba(27, 67, 50, 0.3) 70%, transparent 100%);
    z-index: 1;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 30% 50%, transparent 0%, rgba(0, 0, 0, 0.2) 100%);
}

.hero-content {
    position: relative;
    z-index: 2;
    color: var(--white);
    padding: 40px 20px;
    animation: fadeInUp 1s ease;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    min-height: 70vh;
}

.hero-left {
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-right {
    text-align: left;
}

.hero-logo {
    margin-bottom: 0;
    animation: fadeInUp 1s ease;
}

.hero-logo img {
    width: 300px;
    height: auto;
    filter: drop-shadow(0 10px 30px rgba(0, 0, 0, 0.4));
    animation: float 6s ease-in-out infinite;
}

@keyframes float {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-20px);
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 25px;
    line-height: 1.2;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
    animation: fadeInUp 1s ease 0.2s backwards;
}

.hero-subtitle {
    font-size: 1.3rem;
    margin-bottom: 40px;
    line-height: 1.8;
    font-weight: 300;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.3);
    animation: fadeInUp 1s ease 0.4s backwards;
}

.hero-buttons {
    display: flex;
    gap: 20px;
    justify-content: flex-start;
    flex-wrap: wrap;
    animation: fadeInUp 1s ease 0.6s backwards;
}

.btn {
    padding: 15px 35px;
    border-radius: 30px;
    font-weight: 600;
    font-size: 1.05rem;
    cursor: pointer;
    transition: var(--transition);
    border: none;
    display: inline-block;
    text-align: center;
}

.btn-primary {
    background: var(--primary-green);
    color: var(--white);
    box-shadow: var(--shadow-lg);
}

.btn-primary:hover {
    background: var(--light-green);
    transform: translateY(-3px);
    box-shadow: var(--shadow-xl);
}

.btn-secondary {
    background: transparent;
    color: var(--white);
    border: 2px solid var(--white);
}

.btn-secondary:hover {
    background: var(--white);
    color: var(--primary-blue);
    transform: translateY(-3px);
}

.scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 3;
    animation: bounce 2s infinite;
}

/* Hide scroll indicator on mobile */
@media (max-width: 768px) {
    .scroll-indicator {
        display: none;
    }
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateX(-50%) translateY(0);
    }
    40% {
        transform: translateX(-50%) translateY(-10px);
    }
    60% {
        transform: translateX(-50%) translateY(-5px);
    }
}

.mouse {
    width: 30px;
    height: 50px;
    border: 3px solid var(--white);
    border-radius: 20px;
    position: relative;
}

.mouse::before {
    content: '';
    position: absolute;
    top: 10px;
    left: 50%;
    transform: translateX(-50%);
    width: 6px;
    height: 6px;
    background: var(--white);
    border-radius: 50%;
    animation: scroll 2s infinite;
}

@keyframes scroll {
    0% {
        opacity: 1;
        top: 10px;
    }
    100% {
        opacity: 0;
        top: 30px;
    }
}

/* ============================
   Categories Section
   ============================ */
.categories {
    padding: 100px 0;
    background-color: var(--off-white);
}

.category-section {
    margin-bottom: 80px;
}

.category-section:last-child {
    margin-bottom: 0;
}

.category-title {
    font-size: 2rem;
    font-weight: 700;
    color: var(--black);
    margin-bottom: 40px;
    padding-left: 20px;
    border-left: 5px solid var(--primary-green);
    position: relative;
}

.product-gallery {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 25px;
    margin-bottom: 20px;
}

/* Mobile optimization for product gallery */
@media (max-width: 768px) {
    .product-gallery {
        grid-template-columns: 1fr;
        gap: 20px;
    }
}

@media (max-width: 480px) {
    .product-gallery {
        gap: 15px;
    }
}

.product-card {
    background: var(--white);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
    position: relative;
}

.product-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, #d4a574 0%, var(--primary-green) 100%);
    opacity: 0;
    transition: opacity 0.4s ease;
    z-index: 1;
    border-radius: 20px;
}

.product-card:hover::before {
    opacity: 0.15;
}

.product-card:hover {
    transform: translateY(-12px) scale(1.02);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.product-image {
    position: relative;
    height: 350px;
    overflow: hidden;
    border-radius: 20px;
}

.product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.product-card:hover .product-image img {
    transform: scale(1.15);
}

.product-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.7) 0%, transparent 50%);
    display: flex;
    align-items: flex-end;
    justify-content: center;
    padding: 25px;
    opacity: 0;
    transition: opacity 0.4s ease;
    z-index: 2;
}

.product-card:hover .product-overlay {
    opacity: 1;
}

.product-view-btn {
    background: linear-gradient(135deg, var(--primary-green), #d4a574);
    color: var(--white);
    border: none;
    padding: 14px 28px;
    border-radius: 30px;
    font-size: 1.5rem;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 8px 20px rgba(27, 67, 50, 0.4);
    transform: translateY(20px);
}

.product-card:hover .product-view-btn {
    transform: translateY(0);
}

.product-view-btn:hover {
    transform: scale(1.1);
    box-shadow: 0 10px 30px rgba(27, 67, 50, 0.6);
}

/* Old category styles - keeping for backwards compatibility */
.categories-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 30px;
}

.category-card {
    background: var(--white);
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: var(--transition);
    cursor: pointer;
}

.category-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-xl);
}

.category-image {
    position: relative;
    height: 250px;
    overflow: hidden;
}

.category-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.category-card:hover .category-image img {
    transform: scale(1.1);
}

.category-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(0, 81, 165, 0.8), rgba(0, 200, 83, 0.8));
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: var(--transition);
}

.category-card:hover .category-overlay {
    opacity: 1;
}

.view-btn {
    background: var(--white);
    color: var(--primary-blue);
    padding: 12px 28px;
    border-radius: 25px;
    font-weight: 600;
    transform: translateY(20px);
    transition: var(--transition);
}

.category-card:hover .view-btn {
    transform: translateY(0);
}

.view-btn:hover {
    background: var(--primary-green);
    color: var(--white);
}

.category-content {
    padding: 25px;
}

.category-content h3 {
    font-size: 1.3rem;
    color: var(--black);
    margin-bottom: 12px;
    font-weight: 600;
}

.category-content p {
    color: var(--gray);
    font-size: 0.95rem;
    line-height: 1.6;
}

/* ============================
   Reviews Section
   ============================ */
.reviews {
    padding: 100px 0;
    background: linear-gradient(135deg, var(--off-white) 0%, var(--white) 100%);
    overflow: hidden;
}

.container-fluid {
    width: 100%;
    padding: 0;
}

.reviews-slider {
    width: 100%;
    overflow: hidden;
    margin-top: 60px;
    position: relative;
}

.reviews-slider::before,
.reviews-slider::after {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    width: 100px;
    z-index: 2;
    pointer-events: none;
}

.reviews-slider::before {
    left: 0;
    background: linear-gradient(to right, var(--off-white), transparent);
}

.reviews-slider::after {
    right: 0;
    background: linear-gradient(to left, var(--off-white), transparent);
}

.reviews-track {
    display: flex;
    gap: 30px;
    animation: scrollReviews 60s linear infinite;
    width: max-content;
}

@keyframes scrollReviews {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

.review-card-modern {
    flex: 0 0 450px;
    background: var(--white);
    padding: 35px;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 2px solid transparent;
    position: relative;
    overflow: hidden;
}

.review-card-modern::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-blue), var(--primary-green));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease;
}

.review-card-modern:hover::before {
    transform: scaleX(1);
}

.review-card-modern:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12);
    border-color: rgba(27, 67, 50, 0.2);
}

.review-header-modern {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 25px;
}

.avatar-circle {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    background: linear-gradient(135deg, #d4a574, var(--primary-green));
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 1.5rem;
    font-weight: 700;
    flex-shrink: 0;
    box-shadow: 0 5px 15px rgba(27, 67, 50, 0.3);
    transition: all 0.3s ease;
}

.review-card-modern:hover .avatar-circle {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 8px 20px rgba(27, 67, 50, 0.4);
}

.reviewer-info-modern {
    flex: 1;
}

.reviewer-info-modern h4 {
    font-size: 1.2rem;
    color: var(--black);
    margin-bottom: 5px;
    font-weight: 600;
}

.reviewer-location {
    font-size: 0.9rem;
    color: var(--gray);
    margin-bottom: 8px;
    display: flex;
    align-items: center;
    gap: 5px;
}

.reviewer-location::before {
    content: '📍';
    font-size: 0.85rem;
}

.review-text-modern {
    color: var(--dark-gray);
    line-height: 1.8;
    font-size: 0.98rem;
    font-style: italic;
    position: relative;
    padding-left: 20px;
}

.review-text-modern::before {
    content: '"';
    position: absolute;
    left: 0;
    top: -10px;
    font-size: 3rem;
    color: var(--primary-green);
    opacity: 0.3;
    font-family: Georgia, serif;
}

.stars {
    color: #FFD700;
    font-size: 1rem;
    letter-spacing: 2px;
}

/* Old review styles - keeping for backwards compatibility */
.reviews-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
}

.review-card {
    background: var(--off-white);
    padding: 35px;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-md);
    transition: var(--transition);
    position: relative;
    border-left: 4px solid var(--primary-green);
}

.review-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.review-header {
    margin-bottom: 20px;
}

.reviewer-info {
    display: flex;
    align-items: center;
    gap: 15px;
}

.reviewer-avatar {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    overflow: hidden;
    border: 3px solid var(--primary-green);
}

.reviewer-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.reviewer-details h4 {
    font-size: 1.1rem;
    color: var(--black);
    margin-bottom: 5px;
}

.stars {
    color: #FFD700;
    font-size: 1rem;
}

.review-text {
    color: var(--gray);
    line-height: 1.7;
    font-style: italic;
}

/* ============================
   Info Section
   ============================ */
.info-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #d4a574, var(--primary-green));
    color: var(--white);
}

.info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 40px;
}

.info-card {
    text-align: center;
    padding: 30px;
}

.info-icon {
    font-size: 4rem;
    margin-bottom: 20px;
    display: block;
}

.info-card h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: var(--white);
}

.info-card p {
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.7;
}

/* ============================
   About Section
   ============================ */
.about {
    padding: 120px 0;
    background: linear-gradient(135deg, var(--white) 0%, var(--off-white) 100%);
    position: relative;
    overflow: hidden;
}

.about::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(27, 67, 50, 0.05) 0%, transparent 70%);
    border-radius: 50%;
    animation: float 20s ease-in-out infinite;
}

.about-grid {
    display: grid;
    grid-template-columns: 45% 55%;
    gap: 80px;
    align-items: start;
    margin-top: 60px;
}

/* Logo ve Visual Section */
.about-visual {
    position: sticky;
    top: 100px;
}

.about-logo-container {
    position: relative;
    width: 100%;
    max-width: 450px;
    margin: 0 auto 50px;
    padding: 60px;
    background: var(--white);
    border-radius: 30px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
}

.logo-decoration {
    position: absolute;
    border-radius: 50%;
    opacity: 0.6;
}

.logo-decoration-1 {
    width: 100px;
    height: 100px;
    background: linear-gradient(135deg, #d4a574, transparent);
    top: -20px;
    left: -20px;
    animation: rotate 15s linear infinite;
}

.logo-decoration-2 {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary-green), transparent);
    bottom: -15px;
    right: -15px;
    animation: rotate 20s linear infinite reverse;
}

.logo-decoration-3 {
    width: 120px;
    height: 120px;
    border: 3px solid var(--primary-green);
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    animation: pulse 3s ease-in-out infinite;
}

@keyframes rotate {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

@keyframes pulse {
    0%, 100% { transform: translate(-50%, -50%) scale(1); opacity: 0.3; }
    50% { transform: translate(-50%, -50%) scale(1.1); opacity: 0.6; }
}

.about-logo {
    width: 100%;
    height: auto;
    position: relative;
    z-index: 2;
    filter: drop-shadow(0 10px 30px rgba(0, 0, 0, 0.15));
    animation: floatLogo 6s ease-in-out infinite;
}

@keyframes floatLogo {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-20px); }
}

/* Feature Cards */
.feature-cards {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.feature-card {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 25px;
    background: var(--white);
    border-radius: 20px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border-left: 4px solid var(--primary-green);
    opacity: 0;
    transform: translateX(-30px);
}

.feature-card-1 { animation: slideInLeft 0.6s ease 0.2s forwards; }
.feature-card-2 { animation: slideInLeft 0.6s ease 0.4s forwards; }
.feature-card-3 { animation: slideInLeft 0.6s ease 0.6s forwards; }

@keyframes slideInLeft {
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.feature-card:hover {
    transform: translateX(10px);
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.12);
    border-left-width: 6px;
}

.feature-icon {
    font-size: 2.5rem;
    flex-shrink: 0;
}

.feature-content h4 {
    font-size: 1.2rem;
    color: var(--black);
    margin-bottom: 5px;
    font-weight: 600;
}

.feature-content p {
    font-size: 0.9rem;
    color: var(--gray);
    margin: 0;
}

/* Content Section */
.about-content-modern {
    padding-top: 20px;
}

.about-intro h3 {
    font-size: 2rem;
    color: var(--black);
    margin-bottom: 20px;
    font-weight: 700;
    line-height: 1.4;
}

.about-intro p {
    font-size: 1.05rem;
    line-height: 1.9;
    color: var(--dark-gray);
    margin-bottom: 40px;
}

/* Stats */
.about-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
    margin: 50px 0;
}

.stat-card {
    text-align: center;
    padding: 30px 20px;
    background: linear-gradient(135deg, #d4a574, var(--primary-green));
    border-radius: 20px;
    color: var(--white);
    box-shadow: 0 10px 30px rgba(27, 67, 50, 0.3);
    transition: all 0.4s ease;
}

.stat-card:hover {
    transform: translateY(-10px) scale(1.05);
    box-shadow: 0 15px 40px rgba(27, 67, 50, 0.4);
}

.stat-number {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 10px;
    display: inline-block;
}

.stat-suffix {
    font-size: 2rem;
    font-weight: 700;
    display: inline-block;
}

.stat-label {
    font-size: 0.95rem;
    opacity: 0.95;
    font-weight: 500;
}

/* Services List */
.about-services {
    margin: 50px 0;
    padding: 40px;
    background: var(--off-white);
    border-radius: 25px;
    border: 2px solid rgba(27, 67, 50, 0.1);
}

.about-services h4 {
    font-size: 1.6rem;
    color: var(--black);
    margin-bottom: 30px;
    font-weight: 700;
}

.services-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.services-list li {
    display: flex;
    gap: 20px;
    padding: 20px;
    background: var(--white);
    border-radius: 15px;
    transition: all 0.3s ease;
    border-left: 3px solid transparent;
}

.services-list li:hover {
    border-left-color: var(--primary-green);
    transform: translateX(10px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
}

.service-icon {
    width: 30px;
    height: 30px;
    background: linear-gradient(135deg, var(--primary-green), #d4a574);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    flex-shrink: 0;
}

.services-list strong {
    display: block;
    color: var(--black);
    margin-bottom: 5px;
    font-size: 1.1rem;
}

.services-list p {
    color: var(--gray);
    font-size: 0.95rem;
    line-height: 1.6;
    margin: 0;
}

/* Why Section */
.about-why {
    margin: 50px 0;
}

.about-why h4 {
    font-size: 1.6rem;
    color: var(--black);
    margin-bottom: 30px;
    font-weight: 700;
}

.why-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
}

.why-item {
    padding: 30px;
    background: var(--white);
    border-radius: 20px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
    transition: all 0.4s ease;
    border-top: 4px solid transparent;
}

.why-item:hover {
    border-top-color: var(--primary-green);
    transform: translateY(-8px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.12);
}

.why-icon {
    font-size: 3rem;
    margin-bottom: 15px;
    display: block;
}

.why-item h5 {
    font-size: 1.2rem;
    color: var(--black);
    margin-bottom: 12px;
    font-weight: 600;
}

.why-item p {
    color: var(--gray);
    line-height: 1.7;
    font-size: 0.95rem;
}

/* CTA Buttons */
.about-cta {
    display: flex;
    gap: 20px;
    margin-top: 40px;
    flex-wrap: wrap;
}

.btn-large {
    padding: 18px 40px;
    font-size: 1.1rem;
}

/* Responsive */
@media (max-width: 992px) {
    .about-grid {
        grid-template-columns: 1fr;
        gap: 60px;
    }

    .about-visual {
        position: relative;
        top: 0;
    }

    .about-stats {
        grid-template-columns: 1fr;
    }

    .why-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .about-logo-container {
        padding: 40px;
    }

    .about-intro h3 {
        font-size: 1.6rem;
    }

    .stat-number {
        font-size: 2.5rem;
    }

    .about-services,
    .about-why {
        padding: 30px 20px;
    }

    .about-cta {
        flex-direction: column;
    }

    .btn-large {
        width: 100%;
        text-align: center;
    }
}

/* Old about styles - keeping for backwards compatibility */
.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.about-text h2 {
    font-size: 2.3rem;
    color: var(--black);
    margin-bottom: 25px;
    font-weight: 700;
}

.about-text p {
    color: var(--gray);
    line-height: 1.8;
    margin-bottom: 20px;
    font-size: 1.05rem;
}

.about-text .btn {
    margin-top: 20px;
}

.about-image {
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--shadow-xl);
}

.about-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* ============================
   FAQ Section
   ============================ */
.faq {
    padding: 100px 0;
    background: var(--white);
}

.faq-container {
    max-width: 900px;
    margin: 0 auto;
}

.faq-item {
    background: var(--off-white);
    margin-bottom: 20px;
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}

.faq-item:hover {
    box-shadow: var(--shadow-md);
}

.faq-question {
    padding: 25px 30px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
    background: var(--white);
    border-left: 4px solid var(--primary-blue);
}

.faq-question h3 {
    font-size: 1.1rem;
    color: var(--black);
    font-weight: 600;
}

.faq-icon {
    font-size: 1.8rem;
    color: var(--primary-green);
    font-weight: 300;
    transition: var(--transition);
    flex-shrink: 0;
}

.faq-item.active .faq-icon {
    transform: rotate(45deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.faq-item.active .faq-answer {
    max-height: 500px;
}

.faq-answer p {
    padding: 0 30px 25px 30px;
    color: var(--gray);
    line-height: 1.7;
}

/* ============================
   Contact Section
   ============================ */
.contact {
    padding: 100px 0;
    background: linear-gradient(135deg, var(--off-white) 0%, var(--white) 100%);
}

.contact-info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin: 60px 0;
}

.contact-item-large {
    background: var(--white);
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border-top: 4px solid transparent;
}

.contact-item-large:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12);
    border-top-color: var(--primary-green);
}

.contact-item-large .contact-icon {
    font-size: 4rem;
    margin-bottom: 20px;
    display: block;
}

.contact-item-large .contact-details {
    width: 100%;
}

.contact-item-large h4 {
    color: var(--black);
    margin-bottom: 12px;
    font-weight: 600;
    font-size: 1.3rem;
}

.contact-item-large p {
    color: var(--gray);
    line-height: 1.6;
    font-size: 1.05rem;
}

.contact-cta {
    text-align: center;
    max-width: 800px;
    margin: 80px auto 0;
    padding: 50px;
    background: linear-gradient(135deg, var(--primary-blue), var(--primary-green));
    border-radius: 25px;
    color: var(--white);
    box-shadow: 0 15px 40px rgba(27, 67, 50, 0.3);
}

.contact-cta h3 {
    font-size: 2rem;
    margin-bottom: 20px;
    font-weight: 700;
    line-height: 1.4;
}

.contact-cta p {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 35px;
    opacity: 0.95;
}

.contact-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.contact-buttons .btn {
    display: flex;
    align-items: center;
    gap: 10px;
    background: var(--white);
    color: var(--primary-blue);
    border: none;
    font-weight: 600;
}

.contact-buttons .btn:hover {
    background: var(--off-white);
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.contact-buttons .btn-secondary {
    background: transparent;
    color: var(--white);
    border: 2px solid var(--white);
}

.contact-buttons .btn-secondary:hover {
    background: var(--white);
    color: var(--primary-blue);
}

/* Old contact styles - keeping for backwards compatibility */
.contact-content {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 50px;
}

.contact-form-container {
    background: var(--white);
    padding: 40px;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-lg);
}

.contact-form {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group.full-width {
    grid-column: 1 / -1;
}

.form-group label {
    margin-bottom: 8px;
    color: var(--black);
    font-weight: 500;
}

.form-group input,
.form-group textarea {
    padding: 12px 15px;
    border: 2px solid var(--light-gray);
    border-radius: 8px;
    font-family: 'Poppins', sans-serif;
    font-size: 0.95rem;
    transition: var(--transition);
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-blue);
}

.contact-form button {
    grid-column: 1 / -1;
    justify-self: start;
    margin-top: 10px;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.contact-item {
    background: var(--white);
    padding: 25px;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-md);
    display: flex;
    gap: 20px;
    align-items: flex-start;
    transition: var(--transition);
}

.contact-item:hover {
    transform: translateX(5px);
    box-shadow: var(--shadow-lg);
}

.contact-icon {
    font-size: 2rem;
    flex-shrink: 0;
}

.contact-details h4 {
    color: var(--black);
    margin-bottom: 5px;
    font-weight: 600;
}

.contact-details p {
    color: var(--gray);
    line-height: 1.6;
}

/* ============================
   Footer
   ============================ */
.footer {
    background: linear-gradient(135deg, #f5f5dc, #e8e4d0);
    color: var(--dark-gray);
    padding: 60px 0 30px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.footer-logo {
    margin-bottom: 20px;
}

.footer-logo img {
    width: 80px;
    height: auto;
    opacity: 0.9;
}

.footer-section h3 {
    font-size: 1.5rem;
    margin-bottom: 20px;
    color: var(--black);
}

.footer-section h4 {
    font-size: 1.2rem;
    margin-bottom: 20px;
    color: var(--primary-green);
}

.footer-section p {
    color: var(--gray);
    line-height: 1.7;
    margin-bottom: 20px;
}

.footer-section ul li {
    margin-bottom: 12px;
}

.footer-section ul li a {
    color: var(--gray);
    transition: var(--transition);
}

.footer-section ul li a:hover {
    color: var(--primary-green);
    padding-left: 5px;
}

.footer-contact li {
    color: var(--gray);
    margin-bottom: 12px;
}

.social-links {
    display: flex;
    gap: 15px;
}

.social-links a {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(27, 67, 50, 0.1);
    border-radius: 50%;
    font-size: 1.2rem;
    transition: var(--transition);
}

.social-links a:hover {
    background: var(--primary-green);
    color: var(--white);
    transform: translateY(-3px);
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgba(0, 0, 0, 0.1);
}

.footer-bottom p {
    color: var(--gray);
}

/* ============================
   Responsive Design - Mobile First Approach
   ============================ */

/* Tablet & Small Desktop (992px and below) */
@media (max-width: 992px) {
    /* Container padding adjustment */
    .container {
        padding: 0 30px;
    }

    /* Hero Section */
    .hero-grid {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }

    .hero-right {
        text-align: center;
    }

    .hero-buttons {
        justify-content: center;
        flex-wrap: wrap;
    }

    .hero-logo img {
        width: 220px;
        margin: 0 auto;
    }

    .hero-title {
        font-size: 2.8rem;
        line-height: 1.2;
    }

    .hero-subtitle {
        font-size: 1.2rem;
    }

    /* Navigation */
    .nav-menu {
        position: fixed;
        top: 76px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 76px);
        background: linear-gradient(135deg, rgba(255, 255, 255, 0.95) 0%, rgba(255, 255, 255, 0.9) 100%);
        backdrop-filter: blur(25px) saturate(180%);
        -webkit-backdrop-filter: blur(25px) saturate(180%);
        border-right: 1px solid rgba(0, 81, 165, 0.1);
        flex-direction: column;
        padding: 40px 20px;
        gap: 20px;
        transition: var(--transition);
        box-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.15);
        z-index: 999;
        overflow-y: auto;
    }

    .nav-menu.active {
        left: 0;
    }

    .nav-menu li a {
        font-size: 1.1rem;
        padding: 12px 20px;
        display: block;
        border-radius: 8px;
    }

    .nav-menu li a:hover {
        background: rgba(27, 67, 50, 0.1);
    }

    .mobile-menu-toggle {
        display: flex;
    }

    .mobile-menu-toggle.active span:nth-child(1) {
        transform: rotate(45deg) translate(8px, 8px);
    }

    .mobile-menu-toggle.active span:nth-child(2) {
        opacity: 0;
    }

    .mobile-menu-toggle.active span:nth-child(3) {
        transform: rotate(-45deg) translate(6px, -6px);
    }

    /* About Section */
    .about-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    /* Contact Section */
    .contact-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    /* Categories */
    .categories-grid {
        grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
        gap: 25px;
    }

    /* Footer */
    .footer-content {
        grid-template-columns: repeat(2, 1fr);
        gap: 40px;
    }
}

/* Tablet & Mobile (768px and below) */
@media (max-width: 768px) {
    /* Base adjustments */
    .container {
        padding: 0 20px;
    }

    /* Typography */
    .section-header h2 {
        font-size: 2.2rem;
    }

    .section-header p {
        font-size: 1rem;
    }

    /* Hero Section */
    .hero {
        min-height: 70vh;
        padding: 100px 0 60px;
    }

    .hero-title {
        font-size: 2.2rem;
        margin-bottom: 20px;
    }

    .hero-subtitle {
        font-size: 1.05rem;
        margin-bottom: 30px;
    }

    .hero-logo img {
        width: 180px;
    }

    .hero-buttons {
        flex-direction: column;
        align-items: stretch;
        gap: 15px;
    }

    .btn {
        width: 100%;
        justify-content: center;
        padding: 14px 28px;
        font-size: 0.95rem;
    }

    /* Language Toggle */
    .lang-toggle {
        width: 100px;
        height: 36px;
        font-size: 0.85rem;
    }

    /* Product Categories */
    .categories-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }

    .category-card {
        padding: 30px 20px;
    }

    .category-title {
        font-size: 1.6rem;
        margin-bottom: 12px;
    }

    .category-description {
        font-size: 0.95rem;
    }

    /* Product Gallery */
    .product-gallery {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .product-image {
        height: 300px;
    }

    /* Reviews Section */
    .review-card-modern {
        flex: 0 0 300px;
        padding: 20px;
    }

    .avatar-circle {
        width: 50px;
        height: 50px;
        font-size: 1.1rem;
    }

    .reviewer-info-modern h4 {
        font-size: 0.95rem;
    }

    .reviewer-location {
        font-size: 0.8rem;
    }

    .review-text-modern {
        font-size: 0.9rem;
        line-height: 1.6;
    }

    .stars {
        font-size: 0.85rem;
    }

    /* About Section */
    .about-image img {
        height: 300px;
    }

    .about-features {
        grid-template-columns: 1fr;
        gap: 15px;
    }

    /* Contact Section */
    .contact-form {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .contact-items-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .contact-item-large {
        padding: 25px;
    }

    .contact-icon {
        font-size: 2.5rem;
        margin-bottom: 15px;
    }

    .btn-large {
        padding: 16px 32px;
        font-size: 1rem;
    }

    /* Info Cards */
    .info-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }

    /* FAQ Section */
    .faq-item {
        padding: 20px;
    }

    .faq-question {
        font-size: 1rem;
        padding-right: 40px;
    }

    .faq-answer {
        font-size: 0.9rem;
        padding-top: 15px;
    }

    /* Footer */
    .footer-content {
        grid-template-columns: 1fr;
        gap: 35px;
        text-align: center;
    }

    .footer-section h4 {
        margin-bottom: 20px;
    }

    .social-links {
        justify-content: center;
    }

    /* Navigation actions */
    .nav-actions .contact-btn {
        display: none;
    }

    .nav-actions {
        gap: 10px;
    }

    /* Navbar height adjustment */
    .navbar {
        padding: 15px 0;
    }

    .nav-menu {
        top: 70px;
        height: calc(100vh - 70px);
    }
}

/* Mobile (480px and below) */
@media (max-width: 480px) {
    /* Container */
    .container {
        padding: 0 15px;
    }

    /* Typography */
    html {
        font-size: 15px;
    }

    .section-header h2 {
        font-size: 1.8rem;
        margin-bottom: 12px;
    }

    .section-header h2::after {
        width: 60px;
        height: 3px;
    }

    .section-header p {
        font-size: 0.95rem;
    }

    /* Hero Section */
    .hero {
        min-height: 65vh;
        padding: 80px 0 50px;
    }

    .hero-title {
        font-size: 1.75rem;
        margin-bottom: 15px;
        line-height: 1.3;
    }

    .hero-subtitle {
        font-size: 0.95rem;
        margin-bottom: 25px;
        line-height: 1.5;
    }

    .hero-logo img {
        width: 150px;
    }

    .hero-buttons {
        gap: 12px;
    }

    .btn {
        padding: 12px 24px;
        font-size: 0.9rem;
    }

    /* Logo */
    .logo-text {
        font-size: 1.1rem;
    }

    .logo-img {
        width: 35px;
        height: 35px;
    }

    /* Language Toggle */
    .lang-toggle {
        width: 90px;
        height: 32px;
        font-size: 0.75rem;
    }

    /* Categories */
    .category-card {
        padding: 25px 15px;
    }

    .category-icon {
        font-size: 2.5rem;
        margin-bottom: 15px;
    }

    .category-title {
        font-size: 1.4rem;
    }

    .category-description {
        font-size: 0.9rem;
        line-height: 1.5;
    }

    /* Product Gallery */
    .product-image {
        height: 250px;
    }

    .zoom-btn {
        width: 40px;
        height: 40px;
        font-size: 1.2rem;
    }

    /* Reviews */
    .reviews-scroll {
        gap: 15px;
        padding: 20px 0;
    }

    .review-card-modern {
        flex: 0 0 280px;
        padding: 18px;
    }

    .avatar-circle {
        width: 45px;
        height: 45px;
        font-size: 1rem;
    }

    .reviewer-info-modern h4 {
        font-size: 0.9rem;
    }

    .review-text-modern {
        font-size: 0.85rem;
    }

    /* About Section */
    .about-image img {
        height: 250px;
        border-radius: 12px;
    }

    .about-text h3 {
        font-size: 1.6rem;
        margin-bottom: 15px;
    }

    .about-text p {
        font-size: 0.9rem;
    }

    .feature-item {
        padding: 15px;
    }

    .feature-item h4 {
        font-size: 1rem;
    }

    .feature-item p {
        font-size: 0.85rem;
    }

    /* Contact Section */
    .contact-form-container {
        padding: 25px 20px;
    }

    .form-group input,
    .form-group textarea,
    .form-group select {
        padding: 12px 15px;
        font-size: 0.9rem;
    }

    .contact-item-large {
        padding: 20px;
    }

    .contact-icon {
        font-size: 2rem;
    }

    .contact-details h4 {
        font-size: 1rem;
    }

    .contact-details p {
        font-size: 0.9rem;
    }

    .btn-large {
        padding: 14px 28px;
        font-size: 0.95rem;
    }

    /* Info Cards */
    .info-item {
        padding: 25px 20px;
    }

    .info-icon {
        font-size: 2.5rem;
    }

    .info-item h3 {
        font-size: 1.3rem;
    }

    .info-item p {
        font-size: 0.9rem;
    }

    /* FAQ */
    .faq-item {
        padding: 18px;
    }

    .faq-question {
        font-size: 0.95rem;
    }

    .faq-answer {
        font-size: 0.85rem;
    }

    .faq-toggle {
        font-size: 1.3rem;
    }

    /* Footer */
    .footer {
        padding: 50px 0 30px;
    }

    .footer-logo img {
        width: 45px;
        height: 45px;
    }

    .footer-section h3 {
        font-size: 1.3rem;
    }

    .footer-section h4 {
        font-size: 1.1rem;
        margin-bottom: 15px;
    }

    .footer-section p {
        font-size: 0.85rem;
    }

    .footer-section ul li {
        margin-bottom: 10px;
        font-size: 0.9rem;
    }

    .social-links a {
        width: 36px;
        height: 36px;
        font-size: 1rem;
    }

    .footer-bottom p {
        font-size: 0.85rem;
    }

    /* Mobile Menu */
    .nav-menu {
        padding: 30px 15px;
        gap: 15px;
    }

    .nav-menu li a {
        font-size: 1rem;
        padding: 10px 15px;
    }
}

/* Extra Small Mobile (360px and below) */
@media (max-width: 360px) {
    .container {
        padding: 0 12px;
    }

    .hero-title {
        font-size: 1.5rem;
    }

    .section-header h2 {
        font-size: 1.6rem;
    }

    .logo-text {
        font-size: 1rem;
    }

    .lang-toggle {
        width: 80px;
        height: 30px;
    }

    .btn {
        padding: 10px 20px;
        font-size: 0.85rem;
    }

    .category-title {
        font-size: 1.2rem;
    }

    .review-card-modern {
        flex: 0 0 260px;
    }
}

/* Landscape Mobile Optimization */
@media (max-width: 768px) and (orientation: landscape) {
    .hero {
        min-height: 100vh;
        padding: 80px 0 40px;
    }

    .hero-title {
        font-size: 2rem;
    }

    .nav-menu {
        height: calc(100vh - 60px);
        overflow-y: auto;
    }
}

/* Touch Device Optimizations */
@media (hover: none) and (pointer: coarse) {
    /* Increase touch target sizes */
    .btn,
    .nav-menu a,
    .faq-question,
    .category-card {
        min-height: 44px; /* Apple's recommended touch target */
    }

    /* Remove hover effects on touch devices */
    .category-card:hover,
    .product-card:hover,
    .review-card-modern:hover {
        transform: none;
    }

    /* Larger tap targets for buttons */
    .zoom-btn {
        min-width: 44px;
        min-height: 44px;
    }

    .faq-toggle {
        min-width: 44px;
        min-height: 44px;
        display: flex;
        align-items: center;
        justify-content: center;
    }
}

/* ============================
   Utility Classes
   ============================ */
.text-center {
    text-align: center;
}

.mb-20 {
    margin-bottom: 20px;
}

.mt-20 {
    margin-top: 20px;
}


.fade-in {
    animation: fadeIn 1s ease;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

/* ============================
   Floating Contact Buttons
   ============================ */
.floating-whatsapp,
.floating-phone {
    position: fixed;
    right: 25px;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    z-index: 998;
    text-decoration: none;
}

.floating-whatsapp {
    bottom: 100px;
    background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
}

.floating-phone {
    bottom: 30px;
    background: linear-gradient(135deg, #d4a574 0%, #c8965f 100%);
}

.floating-whatsapp:hover,
.floating-phone:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 30px rgba(0, 0, 0, 0.3);
}

.floating-whatsapp:active,
.floating-phone:active {
    transform: scale(0.95);
}

/* Responsive for floating buttons */
@media (max-width: 768px) {
    .floating-whatsapp,
    .floating-phone {
        width: 50px;
        height: 50px;
        right: 20px;
    }
    
    .floating-whatsapp {
        bottom: 85px;
    }
    
    .floating-phone {
        bottom: 25px;
    }
    
    .floating-whatsapp svg {
        width: 26px;
        height: 26px;
    }
    
    .floating-phone svg {
        width: 24px;
        height: 24px;
    }
}

/* ============================
   Mobile-Specific Performance Optimizations
   ============================ */

/* Reduce animations on low-end devices */
@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}

/* Better font rendering on mobile */
@media (max-width: 768px) {
    body {
        text-rendering: optimizeSpeed;
    }
    
    /* Optimize animations for mobile */
    .category-card:hover,
    .product-card:hover,
    .info-item:hover {
        transform: translateY(-5px);
    }
    
    /* Faster transitions on mobile */
    * {
        transition-duration: 0.2s;
    }
    
    /* Prevent zoom on input focus */
    input[type="text"],
    input[type="email"],
    input[type="tel"],
    textarea,
    select {
        font-size: 16px !important;
    }
}

/* Mobile menu overlay */
@media (max-width: 992px) {
    .nav-menu.active::before {
        content: '';
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: rgba(0, 0, 0, 0.5);
        z-index: -1;
        animation: fadeIn 0.3s ease;
    }
}

/* Improve scrolling performance on mobile */
@media (max-width: 768px) {
    .reviews-track,
    .reviews-slider {
        will-change: transform;
        transform: translateZ(0);
        backface-visibility: hidden;
    }
    
    /* Smooth scrolling containers */
    .product-gallery,
    .categories-grid,
    .reviews-slider {
        scroll-behavior: smooth;
        -webkit-overflow-scrolling: touch;
    }
}

/* Safe area adjustments for notched devices */
@supports (padding: max(0px)) {
    .navbar {
        padding-left: max(20px, env(safe-area-inset-left));
        padding-right: max(20px, env(safe-area-inset-right));
    }
    
    .floating-whatsapp,
    .floating-phone {
        right: max(25px, env(safe-area-inset-right));
    }
    
    @media (max-width: 768px) {
        .floating-whatsapp,
        .floating-phone {
            right: max(20px, env(safe-area-inset-right));
        }
    }
}

