/* ====================================
   CSS Variables & Reset
   ==================================== */
:root {
    /* Colors - Enhanced for better contrast */
    --primary-green: #2d5d3f;
    --light-green: #4a8c5f;
    --accent-gold: #d4a574;
    --dark-green: #1a3a28;
    --cream: #f5f1e8;
    --beige: #e8dcc4;
    --white: #ffffff;
    --black: #1a1a1a;
    --gray: #4a4a4a;
    --light-gray: #f5f5f5;
    
    /* Gradients */
    --gradient-primary: linear-gradient(135deg, var(--primary-green) 0%, var(--light-green) 100%);
    --gradient-gold: linear-gradient(135deg, #d4a574 0%, #b8935f 100%);
    --gradient-overlay: linear-gradient(to bottom, rgba(26, 58, 40, 0.95), rgba(26, 58, 40, 0.88));
    
    /* Typography */
    --font-primary: 'Cairo', sans-serif;
    --font-display: 'Amiri', serif;
    --font-body: 'Tajawal', sans-serif;
    
    /* Spacing - Responsive */
    --section-padding: clamp(60px, 8vw, 100px);
    --container-padding: clamp(15px, 4vw, 20px);
    --gap-sm: clamp(10px, 2vw, 15px);
    --gap-md: clamp(15px, 3vw, 25px);
    --gap-lg: clamp(25px, 4vw, 40px);
    
    /* Transitions */
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-slow: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    
    /* Shadows */
    --shadow-sm: 0 2px 8px rgba(45, 93, 63, 0.08);
    --shadow-md: 0 4px 20px rgba(45, 93, 63, 0.12);
    --shadow-lg: 0 10px 40px rgba(45, 93, 63, 0.15);
    --shadow-xl: 0 20px 60px rgba(45, 93, 63, 0.2);
    
    /* Border Radius */
    --radius-sm: 8px;
    --radius-md: 16px;
    --radius-lg: 24px;
    --radius-xl: 32px;
}

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

html {
    scroll-behavior: smooth;
    font-size: 16px;
    -webkit-text-size-adjust: 100%;
}

body {
    font-family: var(--font-body);
    color: var(--black);
    background: var(--white);
    line-height: 1.7;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

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

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

button {
    border: none;
    background: none;
    cursor: pointer;
    font-family: inherit;
}

ul, ol {
    list-style: none;
}

/* Skip to Content */
.skip-to-content {
    position: absolute;
    top: -100px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--primary-green);
    color: var(--white);
    padding: 10px 20px;
    border-radius: var(--radius-md);
    z-index: 10000;
    transition: var(--transition);
}

.skip-to-content:focus {
    top: 20px;
}

/* ====================================
   Loading Screen
   ==================================== */
.loading-screen {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--gradient-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    transition: opacity 0.5s, visibility 0.5s;
}

.loading-screen.hidden {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}

.loader {
    text-align: center;
    color: var(--white);
}

.herb-leaf {
    width: clamp(60px, 10vw, 80px);
    height: clamp(60px, 10vw, 80px);
    margin: 0 auto 20px;
    border: 4px solid var(--accent-gold);
    border-radius: 50% 0;
    border-right-color: transparent;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

.loader-text {
    font-family: var(--font-display);
    font-size: clamp(1.2rem, 3vw, 1.5rem);
    font-weight: 700;
    animation: pulse 1.5s ease-in-out infinite;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

@keyframes pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.8; }
}

/* ====================================
   Container
   ==================================== */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--container-padding);
    width: 100%;
}

/* ====================================
   Navigation - Mobile First
   ==================================== */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: #ffffff;
    backdrop-filter: blur(10px);
    box-shadow: var(--shadow-sm);
    z-index: 1000;
    transition: var(--transition);
}

.navbar.scrolled {
    box-shadow: var(--shadow-md);
    background: #ffffff;
}

.nav-wrapper {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 12px 0;
    gap: 15px;
}

.logo-img {
    height: clamp(45px, 8vw, 60px);
    width: auto;
    transition: var(--transition);
}

.navbar.scrolled .logo-img {
    height: clamp(40px, 7vw, 50px);
}

.menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    padding: 10px;
    z-index: 1001;
}

@media (max-width: 991px) {
    .menu-toggle {
        display: flex;
    }
}

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

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

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

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

.nav-menu {
    display: flex;
    align-items: center;
    gap: clamp(15px, 2vw, 30px);
    list-style: none;
}

@media (max-width: 991px) {
    .nav-menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: min(300px, 85vw);
        height: 100vh;
        background: #ffffff;
        flex-direction: column;
        align-items: flex-start;
        padding: 80px 30px 30px;
        box-shadow: var(--shadow-xl);
        transition: var(--transition);
        overflow-y: auto;
        z-index: 999;
    }

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

.nav-link {
    font-weight: 600;
    font-size: 1rem;
    color: var(--dark-green);
    padding: 8px 0;
    position: relative;
    transition: var(--transition);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    right: 0;
    width: 0;
    height: 2px;
    background: var(--accent-gold);
    transition: var(--transition);
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 100%;
}

.nav-link:hover,
.nav-link.active {
    color: var(--primary-green);
}

@media (max-width: 991px) {
    .nav-link {
        font-size: 1.05rem;
        padding: 12px 0;
        width: 100%;
    }
    
    .nav-link::after {
        height: 0;
    }
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    right: 0;
    width: 0;
    height: 2px;
    background: var(--accent-gold);
    transition: var(--transition);
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 100%;
}

.nav-link:hover,
.nav-link.active {
    color: var(--primary-green);
}

.mobile-only {
    display: block;
    margin-top: 20px;
    padding-top: 20px;
    border-top: 1px solid var(--beige);
}

.btn-call-mobile {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 20px;
    background: var(--gradient-primary);
    color: var(--white);
    border-radius: var(--radius-lg);
    font-weight: 600;
    width: 100%;
    justify-content: center;
}

.nav-actions {
    display: flex;
    align-items: center;
    gap: 15px;
}

@media (max-width: 991px) {
    .nav-actions {
        display: none;
    }
}

/* Desktop Navigation */
@media (min-width: 992px) {
    .menu-toggle {
        display: none;
    }
    
    .nav-menu {
        position: static;
        width: auto;
        height: auto;
        flex-direction: row;
        background: transparent;
        box-shadow: none;
        padding: 0;
        gap: 35px;
        overflow: visible;
    }
    
    .nav-link {
        width: auto;
        padding: 8px 0;
        font-size: 1rem;
    }
    
    .mobile-only {
        display: none;
    }
    
    .nav-actions {
        display: flex;
    }
    
    .btn-call {
        display: flex;
        align-items: center;
        gap: 10px;
        padding: 10px 20px;
        background: var(--gradient-primary);
        color: var(--white);
        border-radius: var(--radius-lg);
        font-weight: 600;
        box-shadow: var(--shadow-md);
        font-size: 0.95rem;
    }
    
    .btn-call:hover {
        transform: translateY(-2px);
        box-shadow: var(--shadow-lg);
    }
}

/* ====================================
   Buttons - Responsive
   ==================================== */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: clamp(12px, 2.5vw, 15px) clamp(25px, 4vw, 35px);
    font-weight: 600;
    font-size: clamp(0.9rem, 2vw, 1rem);
    border-radius: var(--radius-lg);
    transition: var(--transition);
    cursor: pointer;
    border: 2px solid transparent;
    text-align: center;
    min-height: 48px;
    touch-action: manipulation;
}

.btn-primary {
    background: var(--gradient-primary);
    color: var(--white);
    box-shadow: var(--shadow-md);
}

.btn-primary:hover,
.btn-primary:focus {
    transform: translateY(-3px);
    box-shadow: var(--shadow-lg);
}

.btn-secondary {
    background: var(--white);
    color: var(--primary-green);
    border-color: var(--primary-green);
}

.btn-secondary:hover,
.btn-secondary:focus {
    background: var(--primary-green);
    color: var(--white);
    transform: translateY(-3px);
}

.btn-outline {
    background: transparent;
    color: var(--primary-green);
    border-color: var(--primary-green);
}

.btn-outline:hover,
.btn-outline:focus {
    background: var(--primary-green);
    color: var(--white);
    transform: translateY(-3px);
}

.btn-block {
    width: 100%;
}

/* ====================================
   Hero Section - Fully Responsive
   ==================================== */
.hero {
    position: relative;
    min-height: 100vh;
    min-height: 100dvh; /* Modern browsers */
    margin-top: clamp(65px, 10vw, 90px);
    overflow: hidden;
}

.hero-slider {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.hero-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    visibility: hidden;
    transition: opacity 1s ease-in-out;
}

.hero-slide.active {
    opacity: 1;
    visibility: visible;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--gradient-overlay);
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: clamp(60px, 10vh, 100px) 0;
    animation: fadeInUp 1s ease-out;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-badge {
    display: inline-block;
    padding: 8px 20px;
    background: rgba(212, 165, 116, 0.95);
    border: 2px solid var(--accent-gold);
    border-radius: var(--radius-lg);
    color: var(--dark-green);
    font-weight: 700;
    font-size: clamp(0.75rem, 2vw, 0.9rem);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 20px;
    animation: fadeInUp 1s ease-out 0.2s both;
}

.hero-title {
    font-family: var(--font-display);
    font-size: clamp(2rem, 6vw, 4rem);
    font-weight: 700;
    color: #ffffff;
    line-height: 1.2;
    margin-bottom: 15px;
    text-shadow: 0 3px 20px rgba(0, 0, 0, 0.8), 0 1px 5px rgba(0, 0, 0, 0.9);
    animation: fadeInUp 1s ease-out 0.4s both;
    max-width: 90%;
}

.hero-subtitle {
    font-size: clamp(1rem, 2.5vw, 1.3rem);
    color: #ffffff;
    margin-bottom: 30px;
    max-width: 90%;
    animation: fadeInUp 1s ease-out 0.6s both;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.8), 0 1px 5px rgba(0, 0, 0, 0.9);
    line-height: 1.6;
    font-weight: 500;
}

.hero-stats {
    display: flex;
    gap: clamp(30px, 5vw, 50px);
    margin-bottom: 30px;
    animation: fadeInUp 1s ease-out 0.8s both;
    flex-wrap: wrap;
    justify-content: center;
}

.stat {
    text-align: center;
    background: rgba(26, 58, 40, 0.85);
    padding: 15px 25px;
    border-radius: var(--radius-md);
    backdrop-filter: blur(10px);
    border: 2px solid rgba(212, 165, 116, 0.3);
}

.stat-number {
    font-family: var(--font-display);
    font-size: clamp(2rem, 5vw, 3rem);
    font-weight: 700;
    color: #fbbf24;
    line-height: 1;
    text-shadow: 0 3px 10px rgba(0, 0, 0, 0.8);
}

.stat-label {
    color: #ffffff;
    font-size: clamp(0.85rem, 2vw, 1rem);
    margin-top: 8px;
    font-weight: 600;
    text-shadow: 0 2px 5px rgba(0, 0, 0, 0.8);
}

.hero-buttons {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
    animation: fadeInUp 1s ease-out 1s both;
    justify-content: center;
}

/* Mobile Hero Optimizations */
@media (max-width: 576px) {
    .hero {
        min-height: 100vh;
        min-height: 100dvh;
    }
    
    .hero-overlay {
        background: linear-gradient(to bottom, rgba(20, 45, 30, 0.95), rgba(20, 45, 30, 0.92));
    }
    
    .hero-content {
        padding: 40px 0;
        background: rgba(26, 58, 40, 0.3);
        border-radius: var(--radius-xl);
        backdrop-filter: blur(5px);
    }
    
    .hero-badge {
        background: rgba(251, 191, 36, 0.95);
        color: var(--dark-green);
        font-weight: 800;
        border: 2px solid #fbbf24;
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.5);
    }
    
    .hero-title {
        color: #ffffff;
        text-shadow: 0 4px 20px rgba(0, 0, 0, 0.95), 
                     0 2px 10px rgba(0, 0, 0, 1),
                     0 0 30px rgba(0, 0, 0, 0.8);
        font-weight: 800;
    }
    
    .hero-subtitle {
        color: #ffffff;
        text-shadow: 0 3px 15px rgba(0, 0, 0, 0.95), 
                     0 1px 8px rgba(0, 0, 0, 1);
        font-weight: 600;
    }
    
    .hero-stats {
        width: 100%;
        max-width: 320px;
        background: rgba(26, 58, 40, 0.9);
        padding: 20px;
        border-radius: var(--radius-xl);
        border: 2px solid rgba(251, 191, 36, 0.3);
        box-shadow: 0 8px 24px rgba(0, 0, 0, 0.4);
    }
    
    .stat {
        background: transparent;
        border: none;
    }
    
    .stat-number {
        color: #fbbf24;
        font-size: 2.2rem;
        text-shadow: 0 3px 10px rgba(0, 0, 0, 0.9);
    }
    
    .stat-label {
        color: #ffffff;
        font-weight: 600;
        font-size: 0.9rem;
        text-shadow: 0 2px 8px rgba(0, 0, 0, 0.9);
    }
    
    .hero-buttons {
        width: 100%;
        max-width: 320px;
        flex-direction: column;
    }
    
    .hero-buttons .btn {
        width: 100%;
        font-weight: 700;
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.4);
    }
    
    /* Slider controls for mobile */
    .slider-controls {
        padding: 0 15px;
        top: 50%;
    }
    
    .slider-btn {
        width: 40px;
        height: 40px;
        font-size: 1rem;
        background: rgba(26, 58, 40, 0.9);
        border: 2px solid #fbbf24;
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.5);
    }
    
    .slider-btn:hover,
    .slider-btn:active {
        background: #fbbf24;
        color: var(--dark-green);
    }
    
    .slider-indicators {
        bottom: 20px;
    }
    
    .indicator {
        background: rgba(255, 255, 255, 0.5);
        width: 10px;
        height: 10px;
        border: 2px solid rgba(26, 58, 40, 0.5);
    }
    
    .indicator.active {
        background: #fbbf24;
        border-color: #fbbf24;
    }
}

/* Slider Controls */
.slider-controls {
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    transform: translateY(-50%);
    display: flex;
    justify-content: space-between;
    padding: 0 clamp(15px, 3vw, 30px);
    z-index: 10;
}

.slider-btn {
    width: clamp(40px, 8vw, 50px);
    height: clamp(40px, 8vw, 50px);
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    border-radius: 50%;
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: clamp(1rem, 2vw, 1.2rem);
    transition: var(--transition);
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.slider-btn:hover,
.slider-btn:focus {
    background: var(--accent-gold);
    transform: scale(1.1);
}

.slider-indicators {
    position: absolute;
    bottom: clamp(20px, 4vh, 40px);
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 12px;
    z-index: 10;
}

.indicator {
    width: 10px;
    height: 10px;
    background: rgba(255, 255, 255, 0.4);
    border-radius: 50%;
    cursor: pointer;
    transition: var(--transition);
    border: none;
    padding: 0;
}

.indicator.active,
.indicator:hover,
.indicator:focus {
    background: var(--accent-gold);
    transform: scale(1.3);
}

/* ====================================
   Section Styles - Responsive
   ==================================== */
section {
    padding: var(--section-padding) 0;
}

.section-header {
    margin-bottom: clamp(40px, 6vw, 60px);
}

.section-header.center {
    text-align: center;
}

.section-badge {
    display: inline-block;
    padding: 8px 20px;
    background: rgba(45, 93, 63, 0.1);
    color: var(--primary-green);
    border-radius: var(--radius-lg);
    font-weight: 700;
    font-size: clamp(0.8rem, 1.5vw, 0.9rem);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 15px;
}

.section-title {
    font-family: var(--font-display);
    font-size: clamp(2rem, 5vw, 3rem);
    font-weight: 700;
    color: var(--dark-green);
    line-height: 1.3;
    margin-bottom: 20px;
}

.title-decoration {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    margin-top: 20px;
}

.title-decoration::before,
.title-decoration::after {
    content: '';
    width: clamp(40px, 8vw, 60px);
    height: 2px;
    background: var(--accent-gold);
}

.leaf-icon {
    font-size: clamp(1.5rem, 3vw, 2rem);
}

.section-description {
    font-size: clamp(1rem, 2vw, 1.2rem);
    color: var(--gray);
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.7;
}

/* ====================================
   About Section - Responsive
   ==================================== */
.about-section {
    background: var(--white);
}

.about-content {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--gap-lg);
    align-items: center;
}

@media (min-width: 768px) {
    .about-content {
        grid-template-columns: 1fr 1.2fr;
        gap: 60px;
    }
}

.about-image {
    position: relative;
    max-width: 500px;
    margin: 0 auto;
    width: 100%;
}

.about-image img {
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-xl);
    position: relative;
    z-index: 2;
}

.image-decoration {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 100%;
    height: 100%;
    border: 3px solid var(--accent-gold);
    border-radius: var(--radius-xl);
    z-index: 1;
}

.about-text h3 {
    font-family: var(--font-display);
    font-size: clamp(1.5rem, 3vw, 2rem);
    font-weight: 700;
    color: var(--dark-green);
    margin-bottom: 15px;
}

.lead {
    font-size: clamp(1rem, 2vw, 1.2rem);
    color: var(--gray);
    margin-bottom: 25px;
    line-height: 1.7;
}

.about-features {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-bottom: 30px;
}

.feature-item {
    display: flex;
    gap: 15px;
    align-items: flex-start;
}

.feature-icon {
    width: 50px;
    height: 50px;
    background: var(--gradient-primary);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 1.2rem;
    flex-shrink: 0;
}

.feature-content h4 {
    font-size: clamp(1rem, 2vw, 1.1rem);
    color: var(--dark-green);
    margin-bottom: 8px;
    font-weight: 600;
}

.feature-content p {
    color: var(--gray);
    line-height: 1.6;
    font-size: clamp(0.9rem, 1.8vw, 1rem);
}

.about-buttons {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

@media (max-width: 576px) {
    .about-buttons {
        flex-direction: column;
    }
    
    .about-buttons .btn {
        width: 100%;
    }
}

/* ====================================
   Services Section - Responsive Grid
   ==================================== */
.services-section {
    background: var(--light-gray);
}

.services-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--gap-md);
}

@media (min-width: 640px) {
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 992px) {
    .services-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.service-card {
    background: var(--white);
    padding: clamp(30px, 4vw, 40px) clamp(20px, 3vw, 30px);
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-sm);
    transition: var(--transition-slow);
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(45, 93, 63, 0.1);
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 100px;
    height: 100px;
    background: var(--gradient-primary);
    opacity: 0.05;
    border-radius: 0 0 0 100%;
    transition: var(--transition-slow);
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
    border-color: rgba(45, 93, 63, 0.2);
}

.service-card:hover::before {
    width: 150px;
    height: 150px;
}

.service-icon {
    width: clamp(60px, 10vw, 70px);
    height: clamp(60px, 10vw, 70px);
    background: var(--gradient-primary);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: clamp(1.5rem, 3vw, 2rem);
    margin-bottom: 20px;
    transition: var(--transition);
}

.service-card:hover .service-icon {
    transform: scale(1.1) rotate(5deg);
}

.service-card h3 {
    font-size: clamp(1.2rem, 2.5vw, 1.4rem);
    color: var(--dark-green);
    margin-bottom: 15px;
    font-weight: 700;
}

.service-card p {
    color: var(--gray);
    margin-bottom: 20px;
    line-height: 1.7;
    font-size: clamp(0.9rem, 1.8vw, 1rem);
}

.service-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--primary-green);
    font-weight: 600;
    transition: var(--transition);
    font-size: clamp(0.9rem, 1.8vw, 1rem);
}

.service-link:hover,
.service-link:focus {
    gap: 12px;
    color: var(--accent-gold);
}

/* ====================================
   Treatments Section - Responsive
   ==================================== */
.treatments-section {
    background: var(--white);
}

.treatments-grid {
    display: grid;
    gap: var(--gap-lg);
}

.treatment-card {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--gap-md);
    background: var(--white);
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: var(--transition-slow);
    border: 1px solid rgba(45, 93, 63, 0.1);
}

@media (min-width: 768px) {
    .treatment-card {
        grid-template-columns: 1fr 1.5fr;
        gap: 40px;
    }
    
    .treatment-card:nth-child(even) {
        grid-template-columns: 1.5fr 1fr;
    }
    
    .treatment-card:nth-child(even) .treatment-image {
        order: 2;
    }
}

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

.treatment-image {
    position: relative;
    overflow: hidden;
    min-height: 250px;
}

.treatment-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-slow);
}

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

.treatment-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    padding: 8px 20px;
    background: var(--accent-gold);
    color: var(--white);
    border-radius: var(--radius-lg);
    font-weight: 700;
    font-size: clamp(0.75rem, 1.5vw, 0.85rem);
    z-index: 2;
}

.treatment-content {
    padding: clamp(25px, 4vw, 40px);
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.treatment-content h3 {
    font-family: var(--font-display);
    font-size: clamp(1.3rem, 3vw, 1.8rem);
    color: var(--dark-green);
    margin-bottom: 15px;
    font-weight: 700;
}

.treatment-content > p {
    color: var(--gray);
    margin-bottom: 20px;
    line-height: 1.7;
    font-size: clamp(0.95rem, 2vw, 1.1rem);
}

.treatment-features {
    margin-bottom: 25px;
}

.treatment-features li {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 8px 0;
    color: var(--black);
    font-size: clamp(0.9rem, 1.8vw, 1rem);
}

.treatment-features i {
    color: var(--light-green);
    font-size: 1rem;
}

/* ====================================
   Testimonials Section - Responsive Carousel
   ==================================== */
.testimonials-section {
    background: var(--light-gray);
}

.testimonials-carousel {
    position: relative;
    overflow: hidden;
    padding: 30px 0;
}

.testimonials-track {
    display: flex;
    gap: 20px;
    animation: scroll 40s linear infinite;
}

@keyframes scroll {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

.testimonials-track:hover {
    animation-play-state: paused;
}

.testimonial-card {
    min-width: clamp(280px, 50vw, 350px);
    background: var(--white);
    padding: 25px;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-md);
    transition: var(--transition);
    border: 1px solid rgba(45, 93, 63, 0.1);
}

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

.testimonial-image {
    width: 100%;
    height: clamp(300px, 50vw, 400px);
    border-radius: var(--radius-md);
    overflow: hidden;
    margin-bottom: 15px;
}

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

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

.carousel-note {
    text-align: center;
    margin-top: 40px;
    padding: clamp(20px, 4vw, 30px);
    background: rgba(45, 93, 63, 0.05);
    border-radius: var(--radius-xl);
    border: 1px solid rgba(45, 93, 63, 0.1);
}

.carousel-note p {
    font-size: clamp(1rem, 2vw, 1.1rem);
    color: var(--dark-green);
    font-weight: 600;
    line-height: 1.8;
}

/* ====================================
   Warning Section - Responsive
   ==================================== */
.warning-section {
    background: linear-gradient(135deg, #ffeaa7 0%, #fdcb6e 100%);
    padding: clamp(40px, 6vw, 60px) 0;
}

.warning-card {
    display: flex;
    flex-direction: column;
    gap: 20px;
    align-items: center;
    text-align: center;
    background: var(--white);
    padding: clamp(25px, 4vw, 40px);
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-lg);
    border: 1px solid rgba(214, 48, 49, 0.2);
}

@media (min-width: 768px) {
    .warning-card {
        flex-direction: row;
        text-align: right;
        gap: 30px;
    }
}

.warning-icon {
    width: clamp(70px, 12vw, 80px);
    height: clamp(70px, 12vw, 80px);
    background: linear-gradient(135deg, #ff7675 0%, #d63031 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: clamp(2rem, 4vw, 2.5rem);
    flex-shrink: 0;
}

.warning-content h3 {
    font-size: clamp(1.4rem, 3vw, 1.8rem);
    color: #d63031;
    margin-bottom: 15px;
    font-weight: 700;
}

.warning-content p {
    color: var(--black);
    line-height: 1.8;
    margin-bottom: 15px;
    font-weight: 500;
    font-size: clamp(0.95rem, 2vw, 1rem);
}

.warning-footer strong {
    color: var(--primary-green);
    font-size: clamp(1rem, 2vw, 1.1rem);
    font-weight: 700;
}

/* ====================================
   Contact Section - Responsive
   ==================================== */
.contact-section {
    background: var(--white);
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--gap-lg);
}

@media (min-width: 992px) {
    .contact-grid {
        grid-template-columns: 1fr 1.5fr;
        gap: 60px;
    }
}

.contact-info h3 {
    font-family: var(--font-display);
    font-size: clamp(1.5rem, 3vw, 2rem);
    font-weight: 700;
    color: var(--dark-green);
    margin-bottom: 15px;
}

.contact-intro {
    color: var(--gray);
    margin-bottom: 30px;
    line-height: 1.7;
    font-size: clamp(1rem, 2vw, 1.1rem);
}

.contact-items {
    display: flex;
    flex-direction: column;
    gap: 25px;
    margin-bottom: 35px;
}

.contact-item {
    display: flex;
    gap: 15px;
    align-items: flex-start;
}

.contact-icon {
    width: 50px;
    height: 50px;
    background: var(--gradient-primary);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 1.2rem;
    flex-shrink: 0;
}

.contact-details h4 {
    color: var(--dark-green);
    margin-bottom: 8px;
    font-weight: 600;
    font-size: clamp(1rem, 2vw, 1.1rem);
}

.contact-details a,
.contact-details p {
    color: var(--gray);
    display: block;
    margin-bottom: 5px;
    font-size: clamp(0.9rem, 1.8vw, 1rem);
    line-height: 1.6;
}

.contact-details a:hover,
.contact-details a:focus {
    color: var(--primary-green);
}

.social-links h4 {
    color: var(--dark-green);
    margin-bottom: 15px;
    font-weight: 600;
    font-size: clamp(1rem, 2vw, 1.1rem);
}

.social-icons {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.social-icon {
    width: 45px;
    height: 45px;
    background: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-green);
    font-size: 1.2rem;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    border: 1px solid rgba(45, 93, 63, 0.1);
}

.social-icon:hover,
.social-icon:focus {
    background: var(--primary-green);
    color: var(--white);
    transform: translateY(-3px);
    box-shadow: var(--shadow-md);
}

.contact-form-wrapper {
    background: var(--white);
    padding: clamp(30px, 5vw, 50px);
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-lg);
    border: 1px solid rgba(45, 93, 63, 0.1);
}

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

.form-row {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
}

@media (min-width: 640px) {
    .form-row {
        grid-template-columns: 1fr 1fr;
    }
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    color: var(--dark-green);
    font-weight: 600;
    font-size: clamp(0.9rem, 1.8vw, 1rem);
}

.required {
    color: #d63031;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 14px;
    border: 2px solid var(--beige);
    border-radius: var(--radius-md);
    font-family: inherit;
    font-size: clamp(0.9rem, 1.8vw, 1rem);
    transition: var(--transition);
    background: var(--white);
    color: var(--black);
}

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

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

.error-message {
    display: block;
    color: #d63031;
    font-size: 0.85rem;
    margin-top: 5px;
}

/* ====================================
   Footer - Responsive
   ==================================== */
.footer {
    background: var(--dark-green);
    color: var(--white);
}

.footer-top {
    padding: clamp(60px, 8vw, 80px) 0 clamp(30px, 4vw, 40px);
}

.footer-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--gap-lg);
}

@media (min-width: 640px) {
    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 992px) {
    .footer-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

.footer-logo {
    width: clamp(120px, 20vw, 150px);
    margin-bottom: 20px;
    background: var(--white);
    padding: 15px;
    border-radius: var(--radius-md);
    display: block;
}

.footer-col p {
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 20px;
    line-height: 1.7;
    font-size: clamp(0.9rem, 1.8vw, 1rem);
}

.footer-social {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.footer-social a {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
    color: var(--white);
}

.footer-social a:hover,
.footer-social a:focus {
    background: var(--accent-gold);
    transform: translateY(-3px);
    color: var(--dark-green);
}

.footer-col h4 {
    font-size: clamp(1.1rem, 2vw, 1.3rem);
    margin-bottom: 20px;
    color: var(--accent-gold);
    font-weight: 700;
}

.footer-col ul {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.footer-col ul a {
    color: rgba(255, 255, 255, 0.9);
    transition: var(--transition);
    padding-right: 20px;
    position: relative;
    font-size: clamp(0.9rem, 1.8vw, 1rem);
}

.footer-col ul a::before {
    content: '◄';
    position: absolute;
    right: 0;
    opacity: 0;
    transition: var(--transition);
}

.footer-col ul a:hover,
.footer-col ul a:focus {
    color: var(--accent-gold);
    padding-right: 25px;
}

.footer-col ul a:hover::before,
.footer-col ul a:focus::before {
    opacity: 1;
}

.footer-contact li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 15px;
    font-size: clamp(0.9rem, 1.8vw, 1rem);
    line-height: 1.6;
}

.footer-contact i {
    color: var(--accent-gold);
    font-size: 1.1rem;
    flex-shrink: 0;
    margin-top: 3px;
}

.footer-bottom {
    padding: 20px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
}

.footer-bottom p {
    color: rgba(255, 255, 255, 0.7);
    font-size: clamp(0.85rem, 1.5vw, 0.9rem);
}

/* ====================================
   Scroll to Top - Responsive
   ==================================== */
.scroll-top {
    position: fixed;
    bottom: 20px;
    left: 20px;
    width: 50px;
    height: 50px;
    background: var(--gradient-primary);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    box-shadow: var(--shadow-lg);
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
    z-index: 999;
    border: 2px solid var(--white);
}

.scroll-top.visible {
    opacity: 1;
    visibility: visible;
}

.scroll-top:hover,
.scroll-top:focus {
    transform: translateY(-5px) scale(1.1);
    box-shadow: var(--shadow-xl);
}

/* ====================================
   Notification System
   ==================================== */
.notification {
    position: fixed;
    top: 100px;
    right: 20px;
    padding: 15px 25px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-xl);
    z-index: 10000;
    animation: slideInRight 0.5s ease-out;
    max-width: min(350px, 90vw);
    font-weight: 600;
    font-size: clamp(0.85rem, 1.5vw, 0.95rem);
    line-height: 1.5;
}

.notification-success {
    background: var(--primary-green);
    color: var(--white);
    border-left: 4px solid var(--accent-gold);
}

.notification-error {
    background: #d63031;
    color: var(--white);
    border-left: 4px solid #ff7675;
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(100px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* ====================================
   Accessibility & Performance
   ==================================== */
@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}

@media (prefers-contrast: high) {
    :root {
        --black: #000000;
        --gray: #000000;
        --dark-green: #000000;
    }
    
    .btn {
        border: 2px solid var(--black);
    }
}

/* Focus styles */
:focus-visible {
    outline: 3px solid var(--accent-gold);
    outline-offset: 2px;
}

/* Print styles */
@media print {
    .navbar,
    .slider-controls,
    .slider-indicators,
    .scroll-top,
    .menu-toggle,
    .btn-call,
    .hero-buttons,
    .about-buttons,
    .social-icons,
    .footer-social,
    .warning-card,
    .contact-form-wrapper {
        display: none !important;
    }
    
    .hero {
        height: auto;
        margin-top: 0;
    }
    
    section {
        padding: 30px 0;
    }
}

/* Small device optimizations */
@media (max-width: 360px) {
    html {
        font-size: 14px;
    }
    
    .container {
        padding: 0 12px;
    }
}

/* Large screen optimizations */
@media (min-width: 1400px) {
    .container {
        max-width: 1320px;
    }
}