/* 
   Begonya Flowers - Premium Style Sheet 
   Theme: Nature's Elegance (Emerald, Cream, Soft Pink)
*/

:root {
    /* Colors */
    --primary-color: #2D5A47;
    /* Emerald Green */
    --primary-dark: #1F3F32;
    --accent-color: #D4A373;
    /* Gold/Bronze */
    --soft-pink: #F8E8E8;
    --cream: #FAF9F6;
    --text-dark: #1A1A1A;
    --text-light: #666666;
    --white: #FFFFFF;

    /* Gradients */
    --gradient-overlay: linear-gradient(to bottom, rgba(31, 63, 50, 0.3), rgba(31, 63, 50, 0.7));

    /* Shadows & Glass */
    --shadow-sm: 0 4px 6px rgba(0, 0, 0, 0.05);
    --shadow-md: 0 10px 30px rgba(0, 0, 0, 0.08);
    --glass-bg: rgba(255, 255, 255, 0.7);
    --glass-border: 1px solid rgba(255, 255, 255, 0.5);

    /* Typography */
    --font-heading: 'Playfair Display', serif;
    --font-body: 'Outfit', sans-serif;

    /* Transitions */
    --transition-fast: 0.3s ease;
    --transition-smooth: 0.6s cubic-bezier(0.23, 1, 0.32, 1);
}

/* Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    background-color: var(--cream);
    color: var(--text-dark);
    line-height: 1.6;
    overflow-x: hidden;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition-fast);
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    display: block;
}

section {
    padding: 100px 0;
    position: relative;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Typography Helpers */
h1,
h2,
h3,
h4 {
    font-family: var(--font-heading);
    font-weight: 700;
}

.tagline {
    display: block;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 3px;
    color: var(--accent-color);
    font-weight: 600;
    margin-bottom: 15px;
}

.title {
    font-size: 4.5rem;
    line-height: 1.1;
    margin-bottom: 20px;
}

.section-header h2 {
    font-size: 3rem;
    margin-bottom: 20px;
    color: var(--primary-color);
}

.section-header {
    margin-bottom: 60px;
}

.text-center {
    text-align: center;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 16px 40px;
    font-size: 1rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-radius: 50px;
    cursor: pointer;
    transition: all var(--transition-fast);
}

.btn-primary {
    background-color: var(--primary-color);
    color: var(--white);
    border: 1px solid var(--primary-color);
}

.btn-primary:hover {
    background-color: var(--primary-dark);
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(45, 90, 71, 0.3);
}

.btn-outline {
    background-color: transparent;
    color: var(--white);
    border: 1px solid rgba(255, 255, 255, 0.8);
    margin-left: 15px;
}

.btn-outline:hover {
    background-color: var(--white);
    color: var(--primary-color);
}

/* Navigation Styles */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: 20px 0;
    transition: var(--transition-medium);
}

.navbar.scrolled,
.navbar.solid {
    background-color: var(--white);
    padding: 15px 0;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    color: var(--white);
    font-weight: 700;
}

.logo .dot {
    color: var(--accent-color);
}

.navbar.scrolled .logo,
.navbar.solid .logo {
    color: var(--primary-dark);
}

.navbar.scrolled .logo .dot,
.navbar.solid .logo .dot {
    color: var(--primary-color);
}

.nav-links {
    display: flex;
    gap: 30px;
    align-items: center;
}

.nav-links a {
    color: var(--white);
    font-weight: 500;
    font-size: 0.95rem;
    position: relative;
    padding: 10px 0;
}

.navbar.scrolled .nav-links a,
.navbar.solid .nav-links a {
    color: var(--primary-dark);
}

/* Dropdown Menu Styles */
.dropdown {
    position: relative;
    padding: 10px 0;
}

.dropdown-toggle i {
    font-size: 0.8em;
    margin-left: 5px;
    transition: transform 0.3s ease;
}

.dropdown:hover .dropdown-toggle i {
    transform: rotate(180deg);
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%) translateY(20px);
    background: #fff;
    min-width: 280px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    border-radius: 10px;
    padding: 10px 0;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 9999;

    /* Scroll text if list is too long, but design asked for list.
       For 27 items, we might need a 2-column grid or max-height scroll */
    max-height: 500px;
    overflow-y: auto;
    scrollbar-width: thin;
    scrollbar-color: var(--primary-color) #f1f1f1;
}

.dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0);
}

.dropdown-menu a {
    display: block;
    padding: 10px 20px;
    color: var(--text-color);
    font-size: 0.9rem;
    border-bottom: 1px solid rgba(0, 0, 0, 0.03);
    white-space: nowrap;
    transition: all 0.2s;
}

.dropdown-menu a:last-child {
    border-bottom: none;
}

.dropdown-menu a:hover {
    background: #f9f9f9;
    color: var(--primary-color);
    padding-left: 25px;
}

/* Custom Scrollbar for Dropdown */
.dropdown-menu::-webkit-scrollbar {
    width: 6px;
}

.dropdown-menu::-webkit-scrollbar-track {
    background: #f1f1f1;
}

.dropdown-menu::-webkit-scrollbar-thumb {
    background: var(--primary-color);
    border-radius: 3px;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--primary-color);
    transition: var(--transition-fast);
}

.nav-links a:hover::after,
.nav-links a.active::after {
    width: 100%;
}

.mobile-toggle {
    display: none;
    font-size: 1.5rem;
    cursor: pointer;
}

/* Navbar Solid (for pages without hero) */
.navbar.solid {
    background-color: var(--white);
    box-shadow: var(--shadow-sm);
    padding: 15px 0;
}

.navbar.solid .logo {
    color: var(--primary-color);
}

.navbar.solid .nav-links a {
    color: var(--text-dark);
}

.navbar.solid .nav-links a:hover {
    color: var(--primary-color);
}

.navbar.solid .mobile-toggle {
    color: var(--primary-color);
}

.navbar.scrolled .mobile-toggle {
    color: var(--primary-color);
}

/* Hero Section & Slider */
.hero {
    height: 100vh;
    position: relative;
    padding: 0;
    overflow: hidden;
}

.slider-container {
    width: 100%;
    height: 100%;
    position: relative;
}

.slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 1s ease-in-out;
    visibility: hidden;
}

.slide.active {
    opacity: 1;
    visibility: visible;
    z-index: 10;
}

.slide-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.slide-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform: scale(1.1);
    transition: transform 6s ease;
}

.slide.active .slide-bg img {
    transform: scale(1.0);
}

.overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--gradient-overlay);
}

.hero-content {
    position: relative;
    z-index: 20;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    color: var(--white);
    padding-bottom: 50px;
    /* Slight offset */
}

/* Slider Controls */
.slider-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 50px;
    height: 50px;
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    color: var(--white);
    font-size: 1.2rem;
    cursor: pointer;
    z-index: 30;
    transition: var(--transition-fast);
    backdrop-filter: blur(5px);
}

.slider-btn:hover {
    background: var(--white);
    color: var(--primary-color);
}

.prev-btn {
    left: 30px;
}

.next-btn {
    right: 30px;
}

.slider-dots {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 15px;
    z-index: 30;
}

.dot-btn {
    width: 12px;
    height: 12px;
    border: 1px solid var(--white);
    border-radius: 50%;
    cursor: pointer;
    transition: var(--transition-fast);
}

.dot-btn.active {
    background-color: var(--white);
    transform: scale(1.2);
}

.hero .description {
    max-width: 500px;
    font-size: 1.1rem;
    margin-bottom: 40px;
    opacity: 0.9;
}

.scroll-down {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    opacity: 0.7;
    animation: bounce 2s infinite;
}

.mouse {
    width: 30px;
    height: 50px;
    border: 2px solid var(--white);
    border-radius: 15px;
    position: relative;
}

.mouse::before {
    content: '';
    position: absolute;
    top: 10px;
    left: 50%;
    transform: translateX(-50%);
    width: 4px;
    height: 8px;
    background-color: var(--white);
    border-radius: 2px;
}

@keyframes bounce {

    0%,
    20%,
    50%,
    80%,
    100% {
        transform: translateY(0) translateX(-50%);
    }

    40% {
        transform: translateY(-10px) translateX(-50%);
    }

    60% {
        transform: translateY(-5px) translateX(-50%);
    }
}

/* About Section */
.about {
    background-color: var(--cream);
    background-image:
        radial-gradient(circle at 10% 20%, rgba(212, 163, 115, 0.1) 0%, transparent 20%),
        radial-gradient(circle at 90% 80%, rgba(45, 90, 71, 0.05) 0%, transparent 20%);
}

.separator {
    width: 60px;
    height: 3px;
    background-color: var(--accent-color);
    margin: 0 auto;
}

.about-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.about-card {
    padding: 40px 30px;
    border-radius: 20px;
    text-align: center;
    transition: var(--transition-fast);
}

.glass {
    background: var(--glass-bg);
    backdrop-filter: blur(10px);
    border: var(--glass-border);
    box-shadow: var(--shadow-sm);
}

.about-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-md);
}

.icon-box {
    width: 70px;
    height: 70px;
    background-color: var(--soft-pink);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0 auto 25px;
    font-size: 1.5rem;
    color: var(--primary-color);
    transition: var(--transition-fast);
}

.about-card:hover .icon-box {
    background-color: var(--primary-color);
    color: var(--white);
}

.about-card h3 {
    margin-bottom: 15px;
    color: var(--primary-color);
    font-size: 1.5rem;
}

.about-card p {
    color: var(--text-light);
    font-size: 0.95rem;
}

/* Collection Section */
.collection {
    background-color: var(--white);
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 40px;
}

.product-card {
    position: relative;
}

.product-image {
    position: relative;
    height: 450px;
    border-radius: 10px;
    overflow: hidden;
    margin-bottom: 25px;
}

.product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s ease;
}

.product-card:hover .product-image img {
    transform: scale(1.05);
}

.product-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(31, 63, 50, 0.4);
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0;
    transition: var(--transition-fast);
}

.product-card:hover .product-overlay {
    opacity: 1;
}

.btn-icon {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background-color: var(--white);
    color: var(--primary-color);
    border: none;
    font-size: 1.8rem;
    cursor: pointer;
    transform: translateY(20px);
    transition: all 0.4s ease;
    display: flex;
    justify-content: center;
    align-items: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.product-card:hover .btn-icon {
    transform: translateY(0);
}

.btn-icon:hover {
    background-color: #25D366;
    color: white;
    box-shadow: 0 5px 20px rgba(37, 211, 102, 0.4);
    transform: scale(1.1) !important;
}

.product-info h3 {
    font-size: 1.8rem;
    color: var(--primary-color);
    margin-bottom: 5px;
}

.category {
    font-family: var(--font-body);
    font-size: 0.85rem;
    text-transform: uppercase;
    color: var(--accent-color);
    letter-spacing: 1px;
    display: block;
    margin-bottom: 15px;
}

.product-desc {
    color: var(--text-light);
    font-size: 0.95rem;
}

/* Info Strip */
.info-strip {
    background-color: var(--primary-color);
    padding: 20px 0;
    overflow: hidden;
    color: var(--white);
}

.marquee {
    display: flex;
    gap: 50px;
    white-space: nowrap;
    animation: marquee 20s linear infinite;
}

.marquee span {
    font-size: 1.1rem;
    font-style: italic;
    font-family: var(--font-heading);
}

@keyframes marquee {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

/* Info Banner Styles (Premium) */
.info-banner-section {
    width: 100%;
    background: transparent;
    /* Remove full width background */
    box-shadow: none;
    position: relative;
    z-index: 10;
    padding: 10px 0;
}

.info-banner {
    display: flex;
    flex-direction: column;
    gap: 20px;
    align-items: center;
    text-align: center;
    padding: 15px 40px;
    margin: 0 auto;
    width: fit-content;
    /* Shrink to fit content */
    max-width: 95%;

    /* Move distinct styling here */
    background: linear-gradient(to right, #ffffff, #faf9f6);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.06);
    border-radius: 50px;
    /* Rounded pill/box shape */
    border: 1px solid rgba(255, 255, 255, 0.8);
}

.info-text {
    width: auto;
    /* Allow natural width */
}

.info-text p {
    color: #555;
    /* Softer than black */
    font-size: 1.05rem;
    /* Reduced from 1.1rem */
    font-family: var(--font-heading);
    font-weight: 400;
    /* Lighter weight */
    letter-spacing: 0.5px;
    line-height: 1.5;
    margin: 0;
    white-space: nowrap;
    /* Force single line if space allows */
}

.info-text strong {
    color: var(--primary-dark);
    font-weight: 600;
}

.info-text .highlight {
    color: var(--accent-color);
    font-family: 'Playfair Display', serif;
    font-weight: 500;
    font-style: italic;
    font-size: 1.1rem;
    /* Reduced from 1.15rem */
    /* Slight pop */
}

.info-icons {
    display: flex;
    gap: 30px;
    justify-content: center;
    flex-wrap: wrap;
}

/* Desktop: Elegant Full Width Layout */
@media (min-width: 1200px) {
    .info-banner {
        flex-direction: row;
        justify-content: center;
        /* Cluster together */
        align-items: center;
        text-align: left;
        gap: 40px;
        /* Fixed gap between text and icons */
    }

    .info-text {
        text-align: left;
        flex: 0 1 auto;
        /* Do NOT grow, just fit text */
        padding-right: 0;
        /* Remove excess padding */
        min-width: auto;
    }

    .info-icons {
        flex-shrink: 0;
        gap: 30px;
    }
}

.icon-item {
    display: flex;
    align-items: center;
    gap: 12px;
    opacity: 0.9;
    transition: all 0.3s ease;
}

.icon-item:hover {
    opacity: 1;
    transform: translateY(-2px);
}

.icon-item i {
    font-size: 1.5rem;
    /* Slightly reduced */
    color: var(--primary-color);
    background: transparent;
    border: 1px solid rgba(45, 90, 71, 0.2);
    width: 44px;
    /* Reduced from 48px */
    height: 44px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
    transition: all 0.3s ease;
}

.icon-item:hover i {
    background: var(--primary-color);
    color: var(--white);
    border-color: transparent;
    box-shadow: 0 4px 12px rgba(45, 90, 71, 0.2);
}

.icon-text {
    display: flex;
    flex-direction: column;
    font-size: 0.8rem;
    color: var(--text-dark);
    font-weight: 500;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

/* Quick Services Carousel (Premium Story Style + Infinite Scroll) */
.quick-services-section {
    padding: 40px 0;
    background: linear-gradient(to bottom, #ffffff 0%, #fcfcfc 100%);
    position: relative;
    overflow: hidden;
    /* Hide overflow for marquee */
}

/* Fade effect on sides */
.quick-services-section::before,
.quick-services-section::after {
    content: "";
    position: absolute;
    top: 0;
    width: 100px;
    height: 100%;
    z-index: 2;
    pointer-events: none;
}

.quick-services-section::before {
    left: 0;
    background: linear-gradient(to right, white, transparent);
}

.quick-services-section::after {
    right: 0;
    background: linear-gradient(to left, white, transparent);
}

.quick-categories-wrapper {
    overflow: hidden;
    /* Hide manual scrollbar */
    padding: 20px 0 40px 0;
    width: 100%;
    display: flex;
}

.quick-categories {
    display: flex;
    gap: 35px;
    padding: 0 20px;
    width: max-content;
    animation: scroll-left 60s linear infinite;
    /* Continuous scroll */
}

/* Pause animation on hover for better UX */
.quick-categories:hover {
    animation-play-state: paused;
}

@keyframes scroll-left {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
        /* Move half way (since we will double content) */
    }
}

.quick-category-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    width: 110px;
    text-decoration: none;
    flex-shrink: 0;
    /* Prevent shrinking */
}

.qc-image {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    padding: 3px;
    background: linear-gradient(135deg, #e0c3fc, #8ec5fc);
    /* Fallback/Placeholder */
    background: linear-gradient(45deg, var(--accent-color), var(--primary-color));
    position: relative;
    transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.05);
}

/* Removed masking overlay to fix syntax issues. 
       Gradient border is handled by main container background + padding. */

.qc-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
    border: 4px solid var(--white);
    /* Inner white gap */
    background: var(--white);
    display: block;
}

/* Active/Hover State */
.quick-category-item:hover .qc-image {
    transform: scale(1.1) translateY(-5px);
    box-shadow: 0 15px 35px rgba(45, 90, 71, 0.25);
    background: linear-gradient(45deg, var(--primary-color), var(--accent-color), #ff9a9e);
    background-size: 200% 200%;
    animation: gradient-spin 3s ease infinite;
}

@keyframes gradient-spin {
    0% {
        background-position: 0% 50%;
    }

    50% {
        background-position: 100% 50%;
    }

    100% {
        background-position: 0% 50%;
    }
}

.qc-title {
    margin-top: 18px;
    font-size: 0.9rem;
    color: var(--text-dark);
    font-weight: 600;
    font-family: 'Outfit', sans-serif;
    transition: all 0.3s;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    max-width: 100%;
    letter-spacing: 0.5px;
    padding: 4px 12px;
    border-radius: 20px;
    background: transparent;
}

.quick-category-item:hover .qc-title {
    color: var(--primary-color);
    background: rgba(45, 90, 71, 0.05);
    transform: translateY(2px);
}

@media (max-width: 900px) {
    .info-banner {
        flex-direction: column;
        text-align: center;
        width: 100%;
        max-width: 90%;
        padding: 20px;
    }

    .info-text p {
        white-space: normal;
        /* Allow wrapping on mobile */
        font-size: 0.95rem;
    }

    .info-icons {
        width: 100%;
        justify-content: center;
        gap: 20px;
    }

    .icon-text {
        font-size: 0.7rem;
    }

    .icon-item i {
        font-size: 1.5rem;
    }
}

/* Contact Section */
.contact {
    background: url('assets/hero-bg.png') no-repeat center center/cover;
    position: relative;
    padding: 120px 0;
}

.contact::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(31, 63, 50, 0.8);
}

.contact-wrapper {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: 1fr 1fr;
    border-radius: 20px;
    overflow: hidden;
}

.contact-info {
    padding: 60px;
    color: var(--primary-dark);
}

.contact-info .section-header h2 {
    color: var(--primary-dark);
}

.info-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 30px;
}

.info-item i {
    font-size: 1.5rem;
    color: var(--primary-color);
    margin-right: 20px;
    margin-top: 5px;
}

.info-item h4 {
    font-size: 1.1rem;
    margin-bottom: 5px;
}

.info-item p {
    color: var(--text-light);
    font-size: 0.95rem;
}

.social-links {
    margin-top: 40px;
    display: flex;
    gap: 20px;
}

.social-links a {
    width: 45px;
    height: 45px;
    border: 1px solid var(--primary-color);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    color: var(--primary-color);
    transition: var(--transition-fast);
}

.social-links a:hover {
    background-color: var(--primary-color);
    color: var(--white);
}

.map-frame {
    background-color: #eee;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 400px;
}

.map-placeholder {
    color: #999;
    text-align: center;
}

.map-placeholder i {
    font-size: 4rem;
    display: block;
    margin-bottom: 15px;
}

/* Footer */
/* Premium Footer */
footer {
    background: linear-gradient(to bottom, #1F3F32, #142920);
    color: rgba(255, 255, 255, 0.85);
    padding: 100px 0 0;
    margin-top: auto;
    position: relative;
    overflow: hidden;
}

/* Footer Background Decoration */
footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: linear-gradient(90deg, var(--primary-color), var(--accent-color), var(--primary-color));
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1.2fr 1.3fr;
    gap: 50px;
    margin-bottom: 80px;
}

.footer-brand p {
    margin-top: 25px;
    font-size: 1rem;
    line-height: 1.7;
    opacity: 0.8;
    max-width: 300px;
}

.footer-logo {
    color: var(--white);
    font-family: var(--font-heading);
    font-size: 2.2rem;
    text-decoration: none;
    display: inline-block;
    position: relative;
}

.footer-logo .dot {
    color: var(--accent-color);
}

.footer-widget h4 {
    color: var(--accent-color);
    /* Gold Header */
    font-size: 1.3rem;
    margin-bottom: 30px;
    font-weight: 600;
    font-family: var(--font-heading);
    position: relative;
    display: inline-block;
}

.footer-widget h4::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 40px;
    height: 2px;
    background-color: var(--accent-color);
}

.footer-widget ul {
    list-style: none;
}

.footer-widget ul li {
    margin-bottom: 18px;
}

.footer-widget ul li a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-block;
    font-size: 0.95rem;
}

.footer-widget ul li a:hover {
    color: var(--accent-color);
    transform: translateX(5px);
}

.contact-list li {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.7);
}

.contact-list li i {
    color: var(--accent-color);
    margin-top: 5px;
    font-size: 1.1rem;
}

/* Newsletter Widget */
.newsletter-form {
    margin-top: 20px;
}

.newsletter-input {
    width: 100%;
    padding: 12px 20px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 30px;
    color: var(--white);
    font-family: var(--font-body);
    margin-bottom: 15px;
    transition: all 0.3s;
}

.newsletter-input:focus {
    background: rgba(255, 255, 255, 0.1);
    border-color: var(--accent-color);
    outline: none;
}

.newsletter-btn {
    width: 100%;
    padding: 12px;
    background: var(--accent-color);
    color: var(--primary-dark);
    border: none;
    border-radius: 30px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 0.9rem;
}

.newsletter-btn:hover {
    background: var(--white);
    color: var(--primary-color);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.social-icons {
    display: flex;
    gap: 15px;
    margin-top: 25px;
}

.social-icons a {
    width: 45px;
    height: 45px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    color: var(--white);
    text-decoration: none;
    transition: all 0.4s ease;
}

.social-icons a:hover {
    background: var(--accent-color);
    color: var(--primary-dark);
    border-color: var(--accent-color);
    transform: translateY(-5px) rotate(360deg);
    box-shadow: 0 0 15px rgba(212, 163, 115, 0.4);
}

.footer-bottom {
    background: rgba(0, 0, 0, 0.3);
    padding: 30px 0;
    text-align: center;
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.5);
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

@media (max-width: 900px) {
    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 40px;
    }
}

@media (max-width: 600px) {
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
}

/* Animations - Reveal on Scroll */
.reveal-text {
    opacity: 0;
    transform: translateY(30px);
    transition: all 1s ease;
}

.reveal-up {
    opacity: 0;
    transform: translateY(50px);
    transition: all 0.8s ease;
}

.active-reveal {
    opacity: 1;
    transform: translateY(0);
}

.delay-1 {
    transition-delay: 0.2s;
}

.delay-2 {
    transition-delay: 0.4s;
}

.delay-3 {
    transition-delay: 0.6s;
}

/* Responsive */
@media (max-width: 900px) {
    .title {
        font-size: 3rem;
    }

    .contact-wrapper {
        grid-template-columns: 1fr;
    }

    .map-frame {
        height: 300px;
        min-height: auto;
    }
}

@media (max-width: 768px) {
    .nav-links {
        display: none;
        /* Add JS toggle later */
        position: absolute;
        top: 80px;
        left: 0;
        width: 100%;
        background-color: var(--white);
        flex-direction: column;
        padding: 30px;
        gap: 20px;
        box-shadow: 0 5px 10px rgba(0, 0, 0, 0.1);
        text-align: center;
    }

    .nav-links.active {
        display: flex;
    }

    .nav-links a {
        color: var(--text-dark);
    }

    .mobile-toggle {
        display: block;
    }

    .hero-bg img {
        width: 100%;
        height: 100vh;
        object-position: center;
    }

    .contact-info {
        padding: 40px 20px;
    }

    .footer-content {
        flex-direction: column;
        gap: 20px;
    }
}

/* Product Page Specifics */
.page-header {
    height: 40vh;
    background: url('assets/hero-slider-3.png') no-repeat center center/cover;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    margin-bottom: 80px;
}

.page-header h1 {
    font-size: 3.5rem;
    position: relative;
    z-index: 2;
    margin-bottom: 10px;
}

.page-header p {
    position: relative;
    z-index: 2;
    font-size: 1.2rem;
    opacity: 0.9;
}

.price-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 10px;
}

.price {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--primary-dark);
}

.rating {
    color: #FFC107;
    font-size: 0.9rem;
}

/* Filter Navigation */
.filter-nav {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.filter-btn {
    padding: 10px 25px;
    border: 1px solid rgba(0, 0, 0, 0.1);
    border-radius: 30px;
    background: transparent;
    color: var(--text-color);
    font-family: 'Outfit', sans-serif;
    font-size: 0.95rem;
    font-weight: 500;
    cursor: pointer;
    transition: var(--transition-medium);
}

.filter-btn:hover {
    border-color: var(--primary-color);
    color: var(--primary-color);
    transform: translateY(-2px);
}

.filter-btn.active {
    background: var(--primary-color);
    color: var(--white);
    border-color: var(--primary-color);
    box-shadow: 0 5px 15px rgba(231, 76, 60, 0.2);
}

/* Product hide animation */
.product-card.hide {
    display: none;
}

/* Care Guide Styles */
.care-card {
    cursor: pointer;
    transition: transform 0.3s ease;
    background: #fff;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.care-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.care-image {
    height: 300px;
    overflow: hidden;
}

.care-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.care-card:hover .care-image img {
    transform: scale(1.05);
}

.care-info {
    padding: 20px;
    text-align: center;
}

.care-info h3 {
    color: var(--primary-color);
    margin-bottom: 10px;
    font-family: var(--font-heading);
}

.care-info p {
    font-size: 0.9rem;
    color: var(--text-light);
    display: -webkit-box;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.read-more {
    margin-top: 15px;
    color: var(--accent-color);
    font-weight: 500;
    font-size: 0.9rem;
    display: inline-block;
}

/* Care Detail Page Styles */
.detail-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    padding: 80px 0;
    align-items: center;
}

.detail-image {
    height: 600px;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.detail-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.detail-content h1 {
    font-size: 3rem;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.care-grid {
    margin-top: 40px;
    display: grid;
    gap: 20px;
}

.care-item {
    background: #f9f9f9;
    padding: 20px;
    border-radius: 10px;
    display: flex;
    align-items: flex-start;
    transition: transform 0.3s ease;
}

.care-item:hover {
    transform: translateX(10px);
    background: #fff;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.care-icon {
    width: 50px;
    height: 50px;
    background: var(--primary-color);
    color: #fff;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 1.2rem;
    margin-right: 20px;
    flex-shrink: 0;
}

.care-text h4 {
    font-size: 1.1rem;
    margin-bottom: 5px;
    color: var(--text-dark);
}

.care-text p {
    font-size: 0.95rem;
    color: var(--text-light);
    line-height: 1.6;
}

@media (max-width: 900px) {
    .detail-container {
        grid-template-columns: 1fr;
    }

    .detail-image {
        height: 400px;
    }
}

/* -----------------------------------------------------------
   Premium Language Switcher
   ----------------------------------------------------------- */
.language-selector {
    display: flex;
    align-items: center;
    margin-left: 25px;
    background: rgba(255, 255, 255, 0.15);
    /* Glass effect for transparent header */
    border-radius: 30px;
    padding: 4px;
    border: 1px solid rgba(255, 255, 255, 0.3);
    backdrop-filter: blur(5px);
    transition: all 0.3s ease;
}

.lang-btn {
    border: none;
    background: transparent;
    color: var(--white);
    /* White text by default (transparent header) */
    font-family: var(--font-body);
    font-weight: 600;
    font-size: 0.8rem;
    padding: 6px 14px;
    border-radius: 20px;
    cursor: pointer;
    transition: all 0.3s ease;
    outline: none;
}

.lang-btn:hover {
    color: rgba(255, 255, 255, 0.8);
}

.lang-btn.active {
    background-color: var(--white);
    color: var(--primary-color);
    /* Dark text on white pill for active state */
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

/* Scrolled / Solid Navbar State (White Background) */
.navbar.scrolled .language-selector,
.navbar.solid .language-selector {
    background: rgba(45, 90, 71, 0.08);
    border-color: rgba(45, 90, 71, 0.2);
}

.navbar.scrolled .lang-btn,
.navbar.solid .lang-btn {
    color: var(--primary-color);
}

.navbar.scrolled .lang-btn:hover,
.navbar.solid .lang-btn:hover {
    color: var(--primary-dark);
}

.navbar.scrolled .lang-btn.active,
.navbar.solid .lang-btn.active {
    background-color: var(--primary-color);
    color: var(--white);
}

/* Mobile Adjustment */
@media (max-width: 768px) {
    .language-selector {
        margin-left: 0;
        margin-right: 15px;
        /* Space from hamburger */
        /* Make it slightly smaller on mobile */
        padding: 3px;
    }

    .lang-btn {
        padding: 5px 10px;
        font-size: 0.75rem;
    }
}

/* -----------------------------------------------------------
   Survey Modal (Premium Glassmorphism)
   ----------------------------------------------------------- */
.survey-modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.4);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    z-index: 9999;
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0;
    visibility: hidden;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.survey-modal-overlay.active {
    opacity: 1;
    visibility: visible;
}

.survey-modal {
    background: rgba(255, 255, 255, 0.95);
    width: 90%;
    max-width: 550px;
    padding: 0;
    border-radius: 24px;
    box-shadow:
        0 20px 50px rgba(0, 0, 0, 0.15),
        0 0 0 1px rgba(255, 255, 255, 0.5) inset;
    position: relative;
    transform: scale(0.9) translateY(30px);
    transition: all 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
    text-align: center;
    overflow: hidden;
}

.survey-modal-overlay.active .survey-modal {
    transform: scale(1) translateY(0);
}

.survey-header {
    padding: 30px 40px 10px;
}

.survey-close {
    position: absolute;
    top: 20px;
    right: 25px;
    width: 32px;
    height: 32px;
    background: rgba(0, 0, 0, 0.05);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    color: #666;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 10;
}

.survey-close:hover {
    background: #2D5A47;
    color: white;
    transform: rotate(90deg);
}

.survey-modal h3 {
    font-family: var(--font-heading);
    font-size: 2rem;
    color: #1a1a1a;
    margin-bottom: 15px;
    background: linear-gradient(135deg, #1a1a1a 0%, #4a4a4a 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.survey-modal p {
    color: #666;
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 10px;
}

.survey-options {
    padding: 0 40px 30px;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.survey-option-label {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    /* Ensure left alignment */
    text-align: left;
    /* Verify text alignment */
    gap: 15px;
    cursor: pointer;
    padding: 16px 20px;
    border: 1px solid rgba(0, 0, 0, 0.08);
    border-radius: 16px;
    transition: all 0.3s ease;
    background: white;
    position: relative;
    overflow: hidden;
    flex-wrap: wrap;
}

.survey-option-label:hover {
    border-color: rgba(45, 90, 71, 0.3);
    background: rgba(45, 90, 71, 0.02);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.survey-option-label input[type="radio"] {
    display: none;
}

/* Custom Radio Design */
.radio-custom {
    width: 22px;
    height: 22px;
    border: 2px solid #ddd;
    border-radius: 6px;
    position: relative;
    transition: all 0.3s ease;
    flex-shrink: 0;
}

.survey-option-label input[type="radio"]:checked+.radio-custom {
    background: #2D5A47;
    border-color: #2D5A47;
}

.survey-option-label input[type="radio"]:checked+.radio-custom::after {
    content: '\f00c';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    font-size: 12px;
    color: white;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.survey-option-text {
    font-size: 1rem;
    color: #444;
    font-weight: 500;
    flex-grow: 1;
}

/* Other Input Animation */
.survey-other-container {
    width: 100%;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1), margin-top 0.4s ease;
    margin-top: 0;
    opacity: 0;
}

.survey-other-container.active {
    max-height: 100px;
    margin-top: 15px;
    opacity: 1;
}

.survey-other-input {
    width: 100%;
    box-sizing: border-box;
    padding: 12px 15px;
    border: none;
    border-bottom: 2px solid #ddd;
    background: transparent;
    font-family: inherit;
    font-size: 0.95rem;
    color: #333;
    outline: none;
    transition: all 0.3s ease;
}

.survey-other-input:focus {
    border-bottom-color: #2D5A47;
}

/* Button Area */
.survey-footer {
    padding: 20px 40px 30px;
    border-top: 1px solid rgba(0, 0, 0, 0.05);
    background: rgba(250, 250, 250, 0.8);
    display: flex;
    justify-content: flex-end;
}

.survey-submit-btn {
    background: linear-gradient(135deg, #2D5A47 0%, #1F3F32 100%);
    color: white;
    border: none;
    padding: 14px 45px;
    font-size: 1rem;
    font-weight: 600;
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 10px 20px rgba(45, 90, 71, 0.2);
    display: flex;
    align-items: center;
    gap: 10px;
}

.survey-submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 15px 30px rgba(45, 90, 71, 0.3);
}

.survey-submit-btn:active {
    transform: translateY(0);
}

/* Thank You State */
.survey-thank-you {
    padding: 60px 40px;
    text-align: center;
}

.check-icon-circle {
    width: 80px;
    height: 80px;
    background: rgba(45, 90, 71, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    color: #2D5A47;
    font-size: 2.5rem;
    animation: scaleIn 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

@keyframes scaleIn {
    from {
        transform: scale(0);
        opacity: 0;
    }

    to {
        transform: scale(1);
        opacity: 1;
    }
}

/* 
=============================================
   NEW COMPACT FOOTER STYLES (Redesign)
=============================================
*/

.main-footer {
    background-color: #1a2e22 !important;
    /* Force override */
    color: var(--white);
    padding: 50px 0 25px !important;
    font-size: 0.9rem;
    position: relative;
    overflow: hidden;
}

.footer-grid {
    display: grid !important;
    grid-template-columns: 1.5fr 0.8fr 1fr 1.2fr !important;
    gap: 30px !important;
    margin-bottom: 30px !important;
    align-items: start;
}

.footer-brand {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.footer-logo {
    font-family: 'Playfair Display', serif;
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--white);
    text-decoration: none;
    letter-spacing: -0.5px;
    order: 1;
}

.footer-brand p {
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.5;
    max-width: 300px;
    margin: 0;
    font-size: 0.9rem;
    order: 2;
}

.footer-widget h4 {
    color: var(--accent-color);
    font-family: 'Playfair Display', serif;
    font-size: 1.1rem;
    margin-bottom: 15px !important;
    font-weight: 600;
    letter-spacing: 0.5px;
}

.footer-widget ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-widget ul li {
    margin-bottom: 8px !important;
}

.footer-widget ul li a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: var(--transition-fast);
    font-size: 0.9rem;
    display: inline-block;
}

.footer-widget ul li a:hover {
    color: var(--accent-color);
    transform: translateX(3px);
}

/* Compact Newsletter in Brand Column */
.newsletter-compact {
    background: rgba(255, 255, 255, 0.03);
    padding: 15px;
    border-radius: 8px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    order: 4;
}


.newsletter-compact p {
    font-size: 0.85rem;
    margin-bottom: 8px;
    color: rgba(255, 255, 255, 0.8);
    font-weight: 500;
}

.newsletter-form-compact {
    display: flex;
    gap: 8px;
}

.newsletter-input-compact {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 8px 12px;
    border-radius: 4px;
    color: var(--white);
    font-size: 0.85rem;
    width: 100%;
}

.newsletter-btn-compact {
    background: var(--accent-color);
    color: var(--white);
    border: none;
    padding: 0 12px;
    border-radius: 4px;
    cursor: pointer;
    transition: var(--transition-fast);
}

.newsletter-btn-compact:hover {
    background: #c69c6d;
}

/* Social Icons */
.social-icons-footer {
    display: flex;
    gap: 10px;
    margin-top: 10px;
}

.social-icons-footer a {
    width: 32px;
    height: 32px;
    background: rgba(255, 255, 255, 0.05);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    color: var(--white);
    transition: var(--transition-fast);
    border: 1px solid rgba(255, 255, 255, 0.1);
    font-size: 0.9rem;
}

.social-icons-footer a:hover {
    background: var(--accent-color);
    border-color: var(--accent-color);
    transform: translateY(-2px);
}

/* Contact Specifics */
.contact-list li {
    display: flex;
    gap: 10px;
    align-items: flex-start;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 12px !important;
}

.contact-list li i {
    color: var(--accent-color);
    margin-top: 3px;
    font-size: 0.9rem;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 20px;
    text-align: center;
    margin-top: 20px;
}

.footer-bottom p {
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.8rem;
}

/* Responsive Footer Overrides */
@media (max-width: 991px) {
    .footer-grid {
        grid-template-columns: 1fr 1fr !important;
        gap: 30px !important;
    }

    .footer-brand {
        grid-column: 1 / -1;
        text-align: center;
        align-items: center;
    }

    .footer-brand p {
        text-align: center;
    }

    .newsletter-compact {
        width: 100%;
        max-width: 400px;
    }
}

@media (max-width: 576px) {
    .footer-grid {
        grid-template-columns: 1fr !important;
        gap: 30px !important;
        text-align: left;
        /* Better for reading on mobile */
    }

    .footer-brand {
        align-items: flex-start;
        text-align: left;
    }

    .footer-brand p {
        text-align: left;
    }
}

/* 
=============================================
   CORPORATE PAGES REDESIGN (Premium UI)
=============================================
*/

.corporate-header {
    background-color: #1a2e22;
    /* Matches footer/dark theme */
    padding: 140px 0 90px;
    text-align: center;
    color: var(--white);
    position: relative;
    overflow: hidden;
}

.corporate-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at center, rgba(255, 255, 255, 0.03) 0%, transparent 70%);
    pointer-events: none;
}

.corporate-header h1 {
    font-size: 3.5rem;
    margin-bottom: 15px;
    position: relative;
    font-family: 'Playfair Display', serif;
    color: var(--white);
    font-weight: 700;
}

.corporate-header .tagline {
    color: var(--accent-color);
    font-size: 0.95rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    position: relative;
    font-weight: 500;
}

.corporate-section {
    background-color: #f8f9fa;
    /* Light gray background */
    padding-bottom: 100px;
    min-height: 60vh;
}

.corporate-container {
    max-width: 900px;
    margin: 0 auto;
    padding: 0 20px;
}

.corporate-card {
    background: var(--white);
    padding: 60px;
    border-radius: 20px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.06);
    margin-top: -60px;
    /* Overlap effect */
    position: relative;
    z-index: 10;
}

.corporate-card h2 {
    color: #1a2e22;
    font-size: 1.8rem;
    margin-top: 40px;
    margin-bottom: 20px;
    padding-bottom: 15px;
    border-bottom: 2px solid rgba(212, 163, 115, 0.2);
    font-family: 'Playfair Display', serif;
}

.corporate-card h2:first-child {
    margin-top: 0;
}

.corporate-card h3 {
    color: #2D5A47;
    font-size: 1.4rem;
    margin-top: 30px;
    margin-bottom: 15px;
    font-weight: 600;
}

.corporate-card p {
    color: #555;
    line-height: 1.8;
    margin-bottom: 20px;
    font-size: 1.05rem;
}

.corporate-card ul {
    list-style: none;
    padding-left: 0;
    margin-bottom: 25px;
}

.corporate-card ul li {
    position: relative;
    padding-left: 30px;
    margin-bottom: 12px;
    color: #555;
    line-height: 1.6;
    font-size: 1.05rem;
}

.corporate-card ul li::before {
    content: '\f00c';
    /* FontAwesome check */
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    color: var(--accent-color);
    position: absolute;
    left: 0;
    top: 4px;
    font-size: 0.9rem;
}

@media (max-width: 768px) {
    .corporate-header {
        padding: 120px 0 70px;
    }

    .corporate-header h1 {
        font-size: 2.2rem;
    }

    .corporate-card {
        padding: 30px 20px;
        margin-top: -40px;
    }
}

/* Corporate Services Grid */
.corporate-services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 30px;
    margin-bottom: 30px;
}

.service-item {
    background: #f9f9f9;
    padding: 25px;
    border-radius: 8px;
    border-left: 4px solid var(--accent-color);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.05);
}

.service-item h4 {
    color: var(--primary-dark);
    margin-bottom: 15px;
    font-size: 1.2rem;
    font-weight: 600;
}

.service-item p {
    color: #555;
    font-size: 0.95rem;
    line-height: 1.6;

    margin-bottom: 0;
}

/* Load More Button Premium Style (Global) */
.btn-load-more {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 16px 45px;
    background: transparent;
    border: 2px solid var(--primary-color);
    color: var(--primary-color);
    font-family: var(--font-heading);
    font-size: 1.1rem;
    font-weight: 500;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    overflow: hidden;
    letter-spacing: 0.5px;
}

.btn-load-more i {
    transition: transform 0.3s ease;
}

.btn-load-more:hover {
    background: var(--primary-color);
    color: var(--white);
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(45, 90, 71, 0.25);
}

.btn-load-more:hover i {
    transform: translateY(3px);
}

.btn-load-more:active {
    transform: translateY(-1px);
    box-shadow: 0 5px 15px rgba(45, 90, 71, 0.2);
}

/* 
=============================================
   RESPONSIVE & MOBILE STYLES (Added)
=============================================
*/

/* Tablet & Mobile Navigation (Max Width 768px) */
@media (max-width: 768px) {
    .navbar {
        padding: 15px 0;
    }

    .mobile-toggle {
        display: block;
        /* Show toggle button */
        color: var(--white);
        z-index: 1001;
    }

    .navbar.solid .mobile-toggle,
    .navbar.scrolled .mobile-toggle {
        color: var(--primary-dark);
    }

    /* Mobile Menu Container */
    .nav-links {
        position: fixed;
        top: 0;
        right: -100%;
        /* Hidden by default */
        width: 80%;
        max-width: 300px;
        height: 100vh;
        background-color: var(--white);
        flex-direction: column;
        justify-content: center;
        align-items: center;
        transition: right 0.4s cubic-bezier(0.77, 0, 0.175, 1);
        box-shadow: -10px 0 30px rgba(0, 0, 0, 0.1);
        padding: 40px;
        gap: 25px;
        z-index: 1000;
    }

    .nav-links.active {
        right: 0;
        /* Slide in */
    }

    /* Mobile Links Styling */
    .nav-links a {
        color: var(--text-dark);
        font-size: 1.2rem;
        font-family: var(--font-heading);
        border-bottom: 2px solid transparent;
    }

    .nav-links a:hover,
    .nav-links a.active {
        color: var(--primary-color);
        border-bottom-color: var(--accent-color);
    }

    /* Dropdown in Mobile */
    .dropdown {
        width: 100%;
        text-align: center;
    }

    .dropdown-menu {
        position: static;
        /* Stack normally */
        transform: none;
        box-shadow: none;
        background: #f9f9f9;
        width: 100%;
        opacity: 1;
        visibility: visible;
        display: none;
        /* Hidden until toggle (optional, or just show all) */
        padding: 10px;
        max-height: 200px;
        overflow-y: auto;
    }

    /* For simplicity in this iteration, we might just show them or link to services page 
       If you want a toggle, you'd need JS. 
       Let's keep it simple: Show "Hizmetlerimiz" as a main link or show the list. */
    .dropdown:hover .dropdown-menu {
        display: block;
    }

    /* Hero Text Scaling */
    .title {
        font-size: 2.5rem;
    }

    .hero .description {
        font-size: 1rem;
        padding: 0 15px;
    }

    /* General Typography */
    .section-header h2 {
        font-size: 2.2rem;
    }

    h1 {
        font-size: 2.2rem;
    }

    /* Section Padding */
    section {
        padding: 60px 0;
    }

    /* Grid Adjustments */
    .products-grid,
    .corporate-services-grid,
    .about-grid {
        grid-template-columns: 1fr;
        /* Stack items */
        gap: 30px;
    }

    /* Corporate Page Adjustments */
    .corporate-header {
        padding: 100px 0 60px;
    }

    .corporate-header h1 {
        font-size: 2rem;
    }

    .corporate-card {
        padding: 30px 20px;
        margin-top: -30px;
    }
}

/* Small Mobile (Max Width 480px) */
@media (max-width: 480px) {
    .title {
        font-size: 2rem;
    }

    .section-header h2 {
        font-size: 1.8rem;
    }

    .btn {
        padding: 12px 30px;
        font-size: 0.9rem;
        width: 100%;
        /* Full width buttons */
        margin-left: 0;
        margin-bottom: 10px;
        text-align: center;
    }

    .btn-outline {
        margin-left: 0;
    }

    /* Footer Tweaks */
    .footer-widget h4 {
        margin-top: 10px;
    }
}