/* Lahti Grampanchayat - Modern UI/UX Overhaul */
/* Professional Marathi Website with Enhanced Typography & Design */

/* ============================================
   CSS VARIABLES - Modern Design System
   ============================================ */
:root {
    /* Primary Colors - Rich Green Palette */
    --primary-color: #0d5c3d;
    --primary-light: #148a5c;
    --primary-dark: #083d28;
    --secondary-color: #1a7a52;
    --accent-color: #2ecc71;
    --accent-light: #58d68d;
    
    /* Neutral Colors */
    --dark-color: #1a1d21;
    --dark-secondary: #2d3238;
    --gray-900: #212529;
    --gray-800: #343a40;
    --gray-700: #495057;
    --gray-600: #6c757d;
    --gray-500: #adb5bd;
    --gray-400: #ced4da;
    --gray-300: #dee2e6;
    --gray-200: #e9ecef;
    --gray-100: #f8f9fa;
    --white: #ffffff;
    
    /* Semantic Colors */
    --success-color: #10b981;
    --warning-color: #f59e0b;
    --error-color: #ef4444;
    --info-color: #3b82f6;
    
    /* Text Colors */
    --text-primary: #1f2937;
    --text-secondary: #4b5563;
    --text-muted: #6b7280;
    --text-light: #9ca3af;
    
    /* Typography */
    --font-primary: 'Noto Sans Devanagari', 'Kokila', 'Mangal', 'Shivaji05', sans-serif;
    --font-heading: 'Noto Sans Devanagari', 'Kokila', sans-serif;
    --font-marathi: 'Noto Sans Devanagari', 'Kokila', 'Mangal', 'Shivaji05', 'Kartika', sans-serif;
    
    /* Font Sizes - Modern Scale */
    --text-xs: 0.75rem;
    --text-sm: 0.875rem;
    --text-base: 1rem;
    --text-lg: 1.125rem;
    --text-xl: 1.25rem;
    --text-2xl: 1.5rem;
    --text-3xl: 1.875rem;
    --text-4xl: 2.25rem;
    --text-5xl: 3rem;
    --text-6xl: 3.75rem;
    
    /* Font Weights */
    --font-light: 300;
    --font-normal: 400;
    --font-medium: 500;
    --font-semibold: 600;
    --font-bold: 700;
    --font-extrabold: 800;
    
    /* Line Heights */
    --leading-tight: 1.25;
    --leading-snug: 1.375;
    --leading-normal: 1.5;
    --leading-relaxed: 1.625;
    --leading-loose: 2;
    
    /* Spacing Scale */
    --space-1: 0.25rem;
    --space-2: 0.5rem;
    --space-3: 0.75rem;
    --space-4: 1rem;
    --space-5: 1.25rem;
    --space-6: 1.5rem;
    --space-8: 2rem;
    --space-10: 2.5rem;
    --space-12: 3rem;
    --space-16: 4rem;
    --space-20: 5rem;
    --space-24: 6rem;
    
    /* Border Radius */
    --radius-sm: 0.25rem;
    --radius-md: 0.5rem;
    --radius-lg: 0.75rem;
    --radius-xl: 1rem;
    --radius-2xl: 1.5rem;
    --radius-3xl: 2rem;
    --radius-full: 9999px;
    
    /* Shadows - Modern Depth */
    --shadow-xs: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
    --shadow-sm: 0 1px 3px 0 rgba(0, 0, 0, 0.1), 0 1px 2px -1px rgba(0, 0, 0, 0.1);
    --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -2px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -4px rgba(0, 0, 0, 0.1);
    --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 8px 10px -6px rgba(0, 0, 0, 0.1);
    --shadow-2xl: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
    --shadow-inner: inset 0 2px 4px 0 rgba(0, 0, 0, 0.05);
    --shadow-glow: 0 0 40px rgba(46, 204, 113, 0.3);
    
    /* Transitions */
    --transition-fast: 150ms ease;
    --transition-base: 300ms ease;
    --transition-slow: 500ms ease;
    --transition-bounce: 500ms cubic-bezier(0.68, -0.55, 0.265, 1.55);
    
    /* Z-Index Scale */
    --z-dropdown: 100;
    --z-sticky: 200;
    --z-fixed: 300;
    --z-modal-backdrop: 400;
    --z-modal: 500;
    --z-tooltip: 600;
}

/* ============================================
   GLOBAL STYLES & RESET
   ============================================ */
*, *::before, *::after {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: var(--font-primary);
    font-size: var(--text-base);
    line-height: var(--leading-relaxed);
    color: var(--text-primary);
    background-color: var(--white);
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    font-display: swap;
}

/* Ensure proper Marathi text rendering */
p, span, div, li, td, th, a, label {
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    text-rendering: optimizeLegibility;
    font-family: var(--font-marathi);
}

/* Marathi text specific styling */
p[lang="mr"], span[lang="mr"], div[lang="mr"] {
    font-family: var(--font-marathi);
}

/* ============================================
   TYPOGRAPHY SYSTEM - Enhanced Hierarchy
   ============================================ */

/* Heading Styles */
h1, h2, h3, h4, h5, h6,
.h1, .h2, .h3, .h4, .h5, .h6 {
    font-family: var(--font-heading);
    font-weight: var(--font-bold);
    line-height: var(--leading-tight);
    color: var(--dark-color);
    margin-bottom: var(--space-4);
}

h1, .h1 {
    font-size: var(--text-5xl);
    font-weight: var(--font-extrabold);
    letter-spacing: -0.02em;
    line-height: 1.1;
}

h2, .h2 {
    font-size: var(--text-4xl);
    font-weight: var(--font-bold);
    letter-spacing: -0.01em;
}

h3, .h3 {
    font-size: var(--text-3xl);
    font-weight: var(--font-semibold);
}

h4, .h4 {
    font-size: var(--text-2xl);
    font-weight: var(--font-semibold);
}

h5, .h5 {
    font-size: var(--text-xl);
    font-weight: var(--font-medium);
}

h6, .h6 {
    font-size: var(--text-lg);
    font-weight: var(--font-medium);
}

/* Paragraph Styles */
p {
    margin-bottom: var(--space-4);
    color: var(--text-secondary);
}

.lead {
    font-size: var(--text-xl);
    font-weight: var(--font-normal);
    line-height: var(--leading-relaxed);
    color: var(--text-secondary);
}

/* Text Utilities */
.text-gradient {
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.text-highlight {
    position: relative;
    display: inline-block;
}

.text-highlight::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 8px;
    background: linear-gradient(90deg, var(--accent-color), var(--accent-light));
    opacity: 0.3;
    z-index: -1;
    border-radius: var(--radius-sm);
}

/* ============================================
   ANIMATIONS - Smooth & Modern
   ============================================ */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(40px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-40px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-60px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

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

@keyframes scaleIn {
    from {
        opacity: 0;
        transform: scale(0.9);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

@keyframes pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}

@keyframes float {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-15px); }
}

@keyframes shimmer {
    0% { background-position: -200% center; }
    100% { background-position: 200% center; }
}

@keyframes rotateIn {
    from {
        opacity: 0;
        transform: rotate(-180deg) scale(0);
    }
    to {
        opacity: 1;
        transform: rotate(0) scale(1);
    }
}

@keyframes bounceIn {
    0% {
        opacity: 0;
        transform: scale(0.3);
    }
    50% {
        transform: scale(1.05);
    }
    70% {
        transform: scale(0.9);
    }
    100% {
        opacity: 1;
        transform: scale(1);
    }
}

@keyframes slideUp {
    from {
        opacity: 0;
        transform: translateY(100%);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes glow {
    0%, 100% {
        box-shadow: 0 0 20px rgba(46, 204, 113, 0.3);
    }
    50% {
        box-shadow: 0 0 40px rgba(46, 204, 113, 0.6);
    }
}

/* Animation Classes */
.animate-fade-in-up {
    animation: fadeInUp 0.8s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

.animate-fade-in-down {
    animation: fadeInDown 0.8s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

.animate-fade-in {
    animation: fadeIn 0.6s ease forwards;
}

.animate-slide-left {
    animation: slideInLeft 0.8s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

.animate-slide-right {
    animation: slideInRight 0.8s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

.animate-scale-in {
    animation: scaleIn 0.6s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

.animate-bounce-in {
    animation: bounceIn 0.8s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

.animate-rotate-in {
    animation: rotateIn 0.6s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

/* Animation Delays */
.delay-1 { animation-delay: 0.1s; }
.delay-2 { animation-delay: 0.2s; }
.delay-3 { animation-delay: 0.3s; }
.delay-4 { animation-delay: 0.4s; }
.delay-5 { animation-delay: 0.5s; }
.delay-6 { animation-delay: 0.6s; }
.delay-7 { animation-delay: 0.7s; }
.delay-8 { animation-delay: 0.8s; }

/* Scroll Animation Observer */
.scroll-animate {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.scroll-animate.visible {
    opacity: 1;
    transform: translateY(0);
}

/* ============================================
   TOP BAR - Enhanced
   ============================================ */
.top-bar {
    background: linear-gradient(90deg, var(--primary-dark), var(--primary-color));
    padding: var(--space-3) 0;
    font-size: var(--text-sm);
    color: rgba(255, 255, 255, 0.9);
    position: relative;
    z-index: var(--z-sticky);
}

.top-bar::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
}

.top-bar span {
    display: inline-flex;
    align-items: center;
    gap: var(--space-2);
    transition: var(--transition-base);
}

.top-bar i {
    color: var(--accent-light);
    font-size: var(--text-base);
}

.top-bar a {
    color: rgba(255, 255, 255, 0.9);
    text-decoration: none;
    transition: var(--transition-base);
}

.top-bar a:hover {
    color: var(--accent-light);
}

/* ============================================
   NAVIGATION - Modern Header
   ============================================ */
.navbar-custom {
    background: var(--white) !important;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    padding: 0.75rem 0;
    position: sticky;
    top: 0;
    z-index: var(--z-sticky);
    transition: var(--transition-base);
}

.navbar-custom.scrolled {
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
}

.navbar-custom .navbar-brand {
    font-weight: var(--font-bold);
    font-size: var(--text-xl);
    display: flex;
    align-items: center;
    gap: var(--space-3);
}

.navbar-custom .navbar-brand h1 {
    font-size: 2rem;
    font-weight: var(--font-extrabold);
    margin: 0;
    color: var(--primary-color);
    letter-spacing: -0.01em;
    font-family: 'Laila', 'Kokila', 'Mangal', 'Shivaji05', sans-serif;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.15), 0 0 20px rgba(46, 125, 50, 0.2);
}

.navbar-custom .navbar-brand small {
    font-size: 1.1rem;
    color: var(--gray-700);
    font-weight: var(--font-medium);
    font-family: 'Laila', 'Kokila', 'Mangal', sans-serif;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.1);
}

.logo-icon {
    width: 72px;
    height: 72px;
    background: var(--white);
    border-radius: var(--radius-xl);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow-md);
    transition: var(--transition-base);
    overflow: hidden;
}

.logo-icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    padding: 4px;
}

.navbar-custom:hover .logo-icon {
    transform: scale(1.05);
    box-shadow: var(--shadow-glow);
}

/* Navigation Links */
.navbar-custom .navbar-nav {
    gap: var(--space-1);
}

.navbar-custom .nav-link {
    color: var(--primary-color) !important;
    font-weight: var(--font-medium);
    font-size: var(--text-base);
    padding: var(--space-3) var(--space-4) !important;
    border-radius: var(--radius-lg);
    transition: var(--transition-base);
    position: relative;
    display: flex;
    align-items: center;
    gap: var(--space-2);
}

.navbar-custom .nav-link i {
    font-size: var(--text-sm);
    color: var(--primary-light);
}

.navbar-custom .nav-link:hover {
    color: var(--white) !important;
    background: var(--primary-color);
    transform: translateY(-2px);
}

.navbar-custom .nav-link.active {
    color: var(--white) !important;
    background: var(--primary-color);
}

.navbar-custom .nav-link.active::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 30px;
    height: 3px;
    background: var(--accent-color);
    border-radius: var(--radius-full);
}

/* Mobile Toggle */
.navbar-toggler {
    border: none;
    padding: var(--space-2);
    background: var(--primary-color);
    border-radius: var(--radius-md);
    transition: var(--transition-base);
}

.navbar-toggler:hover {
    background: var(--primary-dark);
}

.navbar-toggler:focus {
    box-shadow: none;
}

.navbar-toggler-icon {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%28255, 255, 255, 0.9%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

/* ============================================
   HERO SECTION - Impactful Design
   ============================================ */
.hero-section {
    position: relative;
    overflow: hidden;
    background: var(--dark-color);
}

.hero-section .carousel-item {
    height: 85vh;
    min-height: 500px;
    max-height: 800px;
}

.hero-section .carousel-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(0.65) saturate(1.1);
    transition: transform 8s ease;
}

.hero-section .carousel-item.active img {
    transform: scale(1.05);
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(
        180deg,
        rgba(13, 92, 61, 0.5) 0%,
        rgba(26, 122, 82, 0.35) 40%,
        rgba(46, 204, 113, 0.15) 100%
    );
    z-index: 1;
    pointer-events: none;
}

.hero-section::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(
        ellipse at center top,
        rgba(255, 255, 255, 0.08) 0%,
        transparent 70%
    );
    z-index: 1;
    pointer-events: none;
}

/* Hero Content */
.hero-section .carousel-caption {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: linear-gradient(
        135deg,
        rgba(13, 92, 61, 0.92) 0%,
        rgba(20, 138, 92, 0.88) 100%
    );
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    padding: var(--space-10) var(--space-12);
    border-radius: var(--radius-3xl);
    max-width: 700px;
    width: 90%;
    border: 1px solid rgba(255, 255, 255, 0.15);
    box-shadow: 
        0 25px 50px -12px rgba(0, 0, 0, 0.4),
        0 0 40px rgba(46, 125, 50, 0.2),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
    z-index: 2;
    animation: heroContentFade 0.8s ease-out;
}

@keyframes heroContentFade {
    from {
        opacity: 0;
        transform: translate(-50%, -45%);
    }
    to {
        opacity: 1;
        transform: translate(-50%, -50%);
    }
}

.hero-title {
    font-size: var(--text-5xl);
    font-weight: var(--font-extrabold);
    margin-bottom: var(--space-4);
    color: var(--white);
    text-shadow: 
        0 4px 20px rgba(0, 0, 0, 0.3),
        0 0 30px rgba(46, 204, 113, 0.3);
    animation: fadeInUp 1s cubic-bezier(0.16, 1, 0.3, 1);
    letter-spacing: -0.02em;
}

.hero-subtitle {
    font-size: var(--text-xl);
    margin-bottom: var(--space-6);
    color: rgba(255, 255, 255, 0.95);
    font-weight: var(--font-normal);
    animation: fadeInUp 1s cubic-bezier(0.16, 1, 0.3, 1) 0.2s backwards;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

/* Hero Button */
.btn-hero {
    padding: var(--space-4) var(--space-8);
    font-size: var(--text-lg);
    font-weight: var(--font-semibold);
    border-radius: var(--radius-full);
    transition: var(--transition-base);
    animation: fadeInUp 1s cubic-bezier(0.16, 1, 0.3, 1) 0.4s backwards;
    position: relative;
    overflow: hidden;
    background: var(--white);
    color: var(--primary-color);
    border: none;
}

.btn-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
    transition: var(--transition-slow);
}

.btn-hero:hover {
    transform: translateY(-4px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
    background: var(--accent-light);
    color: var(--white);
}

.btn-hero:hover::before {
    left: 100%;
}

/* Carousel Controls */
.hero-section .carousel-indicators {
    bottom: var(--space-8);
    z-index: 3;
}

.hero-section .carousel-indicators button {
    width: 12px;
    height: 12px;
    border-radius: var(--radius-full);
    margin: 0 var(--space-2);
    background: rgba(255, 255, 255, 0.5);
    border: 2px solid transparent;
    transition: var(--transition-base);
}

.hero-section .carousel-indicators button:hover {
    background: rgba(255, 255, 255, 0.8);
    transform: scale(1.3);
}

.hero-section .carousel-indicators button.active {
    background: var(--accent-color);
    border-color: var(--white);
    transform: scale(1.2);
    box-shadow: 0 0 20px rgba(46, 204, 113, 0.6);
}

.hero-section .carousel-control-prev,
.hero-section .carousel-control-next {
    width: 60px;
    height: 60px;
    background: rgba(13, 92, 61, 0.75);
    border-radius: var(--radius-full);
    top: 50%;
    transform: translateY(-50%);
    opacity: 0;
    transition: var(--transition-base);
    z-index: 3;
    border: 1px solid rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(8px);
}

.hero-section:hover .carousel-control-prev,
.hero-section:hover .carousel-control-next {
    opacity: 1;
}

.hero-section .carousel-control-prev {
    left: var(--space-8);
}

.hero-section .carousel-control-next {
    right: var(--space-8);
}

.hero-section .carousel-control-prev:hover,
.hero-section .carousel-control-next:hover {
    background: rgba(20, 138, 92, 0.9);
    box-shadow: 0 0 30px rgba(46, 204, 113, 0.5);
    transform: translateY(-50%) scale(1.1);
}

.hero-section .carousel-control-prev-icon,
.hero-section .carousel-control-next-icon {
    width: 24px;
    height: 24px;
}

/* ============================================
   QUICK LINKS - Modern Cards
   ============================================ */
.quick-links-section {
    margin-top: -60px;
    position: relative;
    z-index: 10;
    padding-bottom: var(--space-16);
}

.quick-link-card {
    background: var(--white);
    border-radius: var(--radius-2xl);
    padding: var(--space-8);
    text-align: center;
    transition: var(--transition-base);
    box-shadow: var(--shadow-lg);
    border: 1px solid var(--gray-200);
    height: 100%;
    position: relative;
    overflow: hidden;
}

.quick-link-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color), var(--accent-color));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform var(--transition-base);
}

.quick-link-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    opacity: 0;
    transition: opacity var(--transition-base);
    z-index: 0;
}

.quick-link-card:hover {
    transform: translateY(-12px);
    box-shadow: var(--shadow-2xl);
    border-color: transparent;
}

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

.quick-link-card:hover::after {
    opacity: 0.03;
}

.quick-link-card > * {
    position: relative;
    z-index: 1;
}

.quick-link-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    border-radius: var(--radius-2xl);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto var(--space-5);
    font-size: var(--text-3xl);
    color: var(--white);
    transition: var(--transition-base);
    box-shadow: 0 8px 25px rgba(13, 92, 61, 0.3);
}

.quick-link-card:hover .quick-link-icon {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 12px 35px rgba(46, 204, 113, 0.4);
}

.quick-link-card h5 {
    font-size: var(--text-xl);
    font-weight: var(--font-semibold);
    color: var(--dark-color);
    margin-bottom: var(--space-3);
}

.quick-link-card p {
    font-size: var(--text-sm);
    color: var(--text-muted);
    margin-bottom: var(--space-4);
}

.quick-link-card .btn {
    border-radius: var(--radius-full);
    padding: var(--space-2) var(--space-5);
    font-weight: var(--font-medium);
    transition: var(--transition-base);
}

.quick-link-card .btn:hover {
    transform: translateY(-2px);
}

/* ============================================
   STATS SECTION - Impactful Numbers
   ============================================ */
.stats-section {
    background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary-color) 50%, var(--secondary-color) 100%);
    padding: var(--space-16) 0;
    position: relative;
    overflow: hidden;
}

.stats-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    opacity: 0.5;
}

.stats-section::after {
    content: '';
    position: absolute;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(46, 204, 113, 0.2) 0%, transparent 70%);
    top: -100px;
    right: -100px;
    border-radius: var(--radius-full);
}

.stat-box {
    text-align: center;
    padding: var(--space-6);
    position: relative;
    z-index: 1;
}

.stat-number {
    font-size: var(--text-5xl);
    font-weight: var(--font-extrabold);
    color: var(--white);
    line-height: 1;
    margin-bottom: var(--space-2);
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
}

.stat-label {
    color: rgba(255, 255, 255, 0.85);
    font-size: var(--text-base);
    font-weight: var(--font-medium);
    letter-spacing: 0.02em;
}

.stat-box::after {
    content: '';
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 1px;
    height: 60%;
    background: linear-gradient(transparent, rgba(255, 255, 255, 0.2), transparent);
}

.stat-box:last-child::after {
    display: none;
}

/* ============================================
   SECTION TITLES - Enhanced Typography
   ============================================ */
.section-title {
    text-align: center;
    margin-bottom: var(--space-16);
    position: relative;
}

.section-title h2 {
    font-size: var(--text-4xl);
    font-weight: var(--font-extrabold);
    color: var(--dark-color);
    margin-bottom: var(--space-4);
    position: relative;
    display: inline-block;
}

.section-title h2::after {
    content: '';
    position: absolute;
    bottom: -12px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color), var(--accent-color));
    border-radius: var(--radius-full);
}

.section-title p {
    font-size: var(--text-lg);
    color: var(--text-secondary);
    max-width: 600px;
    margin: var(--space-5) auto 0;
    line-height: var(--leading-relaxed);
}

/* Section Title Variant - Left Aligned */
.section-title-left {
    text-align: left;
}

.section-title-left h2::after {
    left: 0;
    transform: none;
}

.section-title-left p {
    margin-left: 0;
}

/* ============================================
   ABOUT SECTION - Modern Layout
   ============================================ */
.about-section {
    padding: var(--space-24) 0;
    background: var(--gray-100);
    position: relative;
}

.about-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 200px;
    background: linear-gradient(to bottom, var(--white), transparent);
}

.about-content h3 {
    font-size: var(--text-3xl);
    font-weight: var(--font-bold);
    color: var(--primary-color);
    margin-bottom: var(--space-5);
}

.about-content p {
    font-size: var(--text-lg);
    line-height: var(--leading-loose);
    color: var(--text-secondary);
    margin-bottom: var(--space-5);
}

.about-image-wrapper {
    position: relative;
    border-radius: var(--radius-3xl);
    overflow: hidden;
    box-shadow: var(--shadow-2xl);
}

.about-image-wrapper::before {
    content: '';
    position: absolute;
    top: -20px;
    right: -20px;
    width: 100px;
    height: 100px;
    background: linear-gradient(135deg, var(--accent-color), var(--primary-color));
    border-radius: var(--radius-full);
    z-index: -1;
}

.about-image-wrapper::after {
    content: '';
    position: absolute;
    bottom: -20px;
    left: -20px;
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    border-radius: var(--radius-full);
    z-index: -1;
}

.about-card {
    background: var(--white);
    border-radius: var(--radius-2xl);
    padding: var(--space-8);
    border: 1px solid var(--gray-200);
    transition: var(--transition-base);
    height: 100%;
    box-shadow: var(--shadow-sm);
}

.about-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-xl);
    border-color: var(--primary-light);
}

.about-card h3 {
    font-size: var(--text-xl);
    color: var(--primary-color);
    margin-bottom: var(--space-4);
    font-weight: var(--font-semibold);
}

.about-card p {
    font-size: var(--text-base);
    color: var(--text-secondary);
    margin-bottom: 0;
}

/* ============================================
   INFO CARDS - Modern Design
   ============================================ */
.info-card-custom {
    background: var(--white);
    border-radius: var(--radius-xl);
    padding: var(--space-6);
    border-left: 4px solid var(--primary-color);
    transition: var(--transition-base);
    box-shadow: var(--shadow-md);
    height: 100%;
    position: relative;
    overflow: hidden;
}

.info-card-custom::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: linear-gradient(180deg, var(--primary-color), var(--accent-color));
    transition: width var(--transition-base);
}

.info-card-custom:hover {
    transform: translateX(10px);
    box-shadow: var(--shadow-xl);
}

.info-card-custom:hover::before {
    width: 6px;
}

.info-card-custom h4 {
    font-size: var(--text-lg);
    color: var(--dark-color);
    font-weight: var(--font-semibold);
    margin-bottom: var(--space-3);
    display: flex;
    align-items: center;
    gap: var(--space-3);
}

.info-card-custom h4 i {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: var(--text-base);
    flex-shrink: 0;
}

.info-card-custom p {
    font-size: var(--text-sm);
    color: var(--text-secondary);
    margin-bottom: 0;
}

/* ============================================
   SERVICES CARDS - Premium Design
   ============================================ */
.service-card-custom {
    background: var(--white);
    border-radius: var(--radius-2xl);
    padding: var(--space-10) var(--space-6);
    text-align: center;
    transition: var(--transition-base);
    box-shadow: var(--shadow-lg);
    border: 1px solid var(--gray-200);
    height: 100%;
    position: relative;
    overflow: hidden;
}

.service-card-custom::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    opacity: 0;
    transition: opacity var(--transition-base);
    z-index: 0;
}

.service-card-custom::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color), var(--accent-color));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform var(--transition-base);
}

.service-card-custom:hover {
    transform: translateY(-15px);
    box-shadow: var(--shadow-2xl);
    border-color: transparent;
}

.service-card-custom:hover::before {
    opacity: 0.03;
}

.service-card-custom:hover::after {
    transform: scaleX(1);
}

.service-card-custom > * {
    position: relative;
    z-index: 1;
}

.service-icon-custom {
    width: 90px;
    height: 90px;
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    border-radius: var(--radius-2xl);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto var(--space-6);
    font-size: var(--text-4xl);
    color: var(--white);
    transition: var(--transition-base);
    box-shadow: 0 10px 30px rgba(13, 92, 61, 0.3);
}

.service-card-custom:hover .service-icon-custom {
    transform: scale(1.1) rotate(10deg);
    box-shadow: 0 15px 40px rgba(46, 204, 113, 0.4);
}

.service-card-custom h4 {
    font-size: var(--text-xl);
    color: var(--dark-color);
    font-weight: var(--font-semibold);
    margin-bottom: var(--space-3);
}

.service-card-custom p {
    font-size: var(--text-base);
    color: var(--text-secondary);
    margin-bottom: 0;
}

/* ============================================
   SCHEMES CARDS - Modern Design
   ============================================ */
.scheme-card-custom {
    background: var(--white);
    border-radius: var(--radius-2xl);
    padding: var(--space-8);
    transition: var(--transition-base);
    box-shadow: var(--shadow-lg);
    border: 2px solid transparent;
    height: 100%;
    position: relative;
    overflow: hidden;
}

.scheme-card-custom::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color), var(--accent-color));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform var(--transition-base);
}

.scheme-card-custom:hover {
    border-color: var(--primary-light);
    transform: translateY(-8px);
    box-shadow: var(--shadow-2xl);
}

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

.scheme-code-badge {
    display: inline-flex;
    align-items: center;
    gap: var(--space-2);
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    color: var(--white);
    padding: var(--space-2) var(--space-4);
    border-radius: var(--radius-full);
    font-size: var(--text-xs);
    font-weight: var(--font-semibold);
    margin-bottom: var(--space-4);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.scheme-card-custom h4 {
    font-size: var(--text-xl);
    color: var(--dark-color);
    font-weight: var(--font-semibold);
    margin-bottom: var(--space-3);
}

.scheme-card-custom p {
    font-size: var(--text-base);
    color: var(--text-secondary);
    margin-bottom: var(--space-4);
}

/* ============================================
   GALLERY - Modern Grid
   ============================================ */
.gallery-item-custom {
    border-radius: var(--radius-2xl);
    overflow: hidden;
    position: relative;
    height: 280px;
    cursor: pointer;
    box-shadow: var(--shadow-md);
}

.gallery-item-custom img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--transition-slow);
}

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

.gallery-overlay-custom {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(13, 92, 61, 0.95));
    padding: var(--space-10) var(--space-5) var(--space-5);
    color: var(--white);
    transform: translateY(100%);
    transition: transform var(--transition-base);
}

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

.gallery-overlay-custom h5 {
    font-size: var(--text-lg);
    font-weight: var(--font-semibold);
    margin-bottom: var(--space-2);
}

.gallery-overlay-custom p {
    font-size: var(--text-sm);
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 0;
}

/* Gallery Grid */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: var(--space-6);
}

/* ============================================
   CONTACT SECTION - Refined Design
   ============================================ */
.contact-section {
    padding: var(--space-24) 0;
    background: linear-gradient(135deg, var(--gray-100) 0%, var(--gray-200) 100%);
    position: relative;
}

.contact-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 200px;
    background: linear-gradient(to bottom, var(--white), transparent);
}

.contact-card-custom {
    background: var(--white);
    border-radius: var(--radius-3xl);
    padding: var(--space-10);
    box-shadow: var(--shadow-xl);
    height: 100%;
    border: 1px solid var(--gray-200);
}

.contact-item-custom {
    display: flex;
    align-items: flex-start;
    gap: var(--space-5);
    margin-bottom: var(--space-6);
    padding: var(--space-5);
    border-radius: var(--radius-xl);
    transition: var(--transition-base);
}

.contact-item-custom:hover {
    background: var(--gray-100);
}

.contact-icon-custom {
    width: 56px;
    height: 56px;
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    border-radius: var(--radius-xl);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: var(--text-xl);
    flex-shrink: 0;
    box-shadow: 0 8px 20px rgba(13, 92, 61, 0.25);
}

.contact-item-custom h5 {
    font-size: var(--text-lg);
    font-weight: var(--font-semibold);
    color: var(--dark-color);
    margin-bottom: var(--space-2);
}

.contact-item-custom p {
    font-size: var(--text-base);
    color: var(--text-secondary);
    margin-bottom: 0;
}

/* Form Styles */
.form-custom .form-control {
    border: 2px solid var(--gray-300);
    border-radius: var(--radius-lg);
    padding: var(--space-4) var(--space-5);
    font-size: var(--text-base);
    transition: var(--transition-base);
    background: var(--white);
}

.form-custom .form-control:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 4px rgba(13, 92, 61, 0.1);
    outline: none;
}

.form-custom .form-control::placeholder {
    color: var(--text-light);
}

.form-custom label {
    font-weight: var(--font-medium);
    color: var(--dark-color);
    margin-bottom: var(--space-2);
}

.form-custom textarea.form-control {
    min-height: 150px;
    resize: vertical;
}

/* ============================================
   BUTTONS - Modern Design
   ============================================ */
.btn-custom {
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    color: var(--white);
    border: none;
    padding: var(--space-4) var(--space-8);
    border-radius: var(--radius-lg);
    font-weight: var(--font-semibold);
    font-size: var(--text-base);
    transition: var(--transition-base);
    position: relative;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(13, 92, 61, 0.3);
}

.btn-custom::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left var(--transition-slow);
}

.btn-custom:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(13, 92, 61, 0.4);
    color: var(--white);
}

.btn-custom:hover::before {
    left: 100%;
}

.btn-custom:active {
    transform: translateY(-1px);
}

.btn-outline-custom {
    background: transparent;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
    padding: var(--space-3) var(--space-6);
    border-radius: var(--radius-lg);
    font-weight: var(--font-semibold);
    transition: var(--transition-base);
}

.btn-outline-custom:hover {
    background: var(--primary-color);
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(13, 92, 61, 0.3);
}

/* ============================================
   FOOTER - Premium Design
   ============================================ */
.footer-custom {
    background: linear-gradient(135deg, var(--dark-color) 0%, var(--dark-secondary) 100%);
    padding: var(--space-20) 0 var(--space-6);
    color: var(--gray-400);
    position: relative;
    overflow: hidden;
}

.footer-custom::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color), var(--accent-color), var(--primary-color));
}

.footer-custom::after {
    content: '';
    position: absolute;
    top: 100px;
    right: -100px;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(46, 204, 113, 0.1) 0%, transparent 70%);
    border-radius: var(--radius-full);
}

.footer-section-custom {
    position: relative;
    z-index: 1;
}

.footer-section-custom h4 {
    color: var(--white);
    font-size: var(--text-lg);
    font-weight: var(--font-semibold);
    margin-bottom: var(--space-5);
    position: relative;
    padding-bottom: var(--space-3);
}

.footer-section-custom h4::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 3px;
    background: linear-gradient(90deg, var(--accent-color), var(--primary-color));
    border-radius: var(--radius-full);
}

.footer-section-custom p {
    color: var(--gray-400);
    font-size: var(--text-base);
    line-height: var(--leading-relaxed);
    margin-bottom: var(--space-4);
}

.footer-section-custom ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-section-custom ul li {
    margin-bottom: var(--space-3);
}

.footer-section-custom ul li a {
    color: var(--gray-400);
    text-decoration: none;
    transition: var(--transition-base);
    display: inline-flex;
    align-items: center;
    gap: var(--space-2);
    font-size: var(--text-base);
}

.footer-section-custom ul li a:hover {
    color: var(--accent-color);
    padding-left: var(--space-2);
}

.footer-section-custom ul li a i {
    font-size: var(--text-xs);
    opacity: 0.6;
}

/* Social Links */
.footer-social {
    display: flex;
    gap: var(--space-3);
    margin-top: var(--space-5);
}

.footer-social a {
    width: 44px;
    height: 44px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gray-400);
    font-size: var(--text-lg);
    transition: var(--transition-base);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-social a:hover {
    background: var(--accent-color);
    color: var(--white);
    transform: translateY(-4px);
    border-color: var(--accent-color);
}

/* Footer Bottom */
.footer-bottom-custom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: var(--space-6);
    margin-top: var(--space-10);
    text-align: center;
}

.footer-bottom-custom p {
    font-size: var(--text-sm);
    color: var(--gray-500);
    margin-bottom: 0;
}

/* ============================================
   PAGE HEADER - Hero Banner
   ============================================ */
.page-header-custom {
    background: linear-gradient(
        135deg, 
        rgba(13, 92, 61, 0.97) 0%,
        rgba(20, 138, 92, 0.92) 50%,
        rgba(26, 122, 82, 0.95) 100%
    ),
    url('../img/page-header-bg.jpg') center/cover no-repeat;
    padding: var(--space-24) 0;
    text-align: center;
    color: var(--white);
    position: relative;
    overflow: hidden;
}

.page-header-custom::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.05'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

.page-header-custom::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(
        circle at 30% 20%,
        rgba(255, 255, 255, 0.08) 0%,
        transparent 50%
    );
    pointer-events: none;
}

.page-header-custom h2 {
    font-size: var(--text-5xl);
    font-weight: var(--font-extrabold);
    margin-bottom: var(--space-4);
    animation: fadeInUp 0.8s cubic-bezier(0.16, 1, 0.3, 1);
    position: relative;
    z-index: 1;
    text-shadow: 
        0 4px 20px rgba(0, 0, 0, 0.3),
        0 0 40px rgba(46, 204, 113, 0.25);
    letter-spacing: -0.02em;
}

.page-header-custom p {
    font-size: var(--text-xl);
    color: rgba(255, 255, 255, 0.9);
    animation: fadeInUp 0.8s cubic-bezier(0.16, 1, 0.3, 1) 0.2s backwards;
    position: relative;
    z-index: 1;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

/* Breadcrumb */
.breadcrumb-custom {
    background: var(--white);
    padding: var(--space-4) 0;
    box-shadow: var(--shadow-sm);
    position: sticky;
    top: 0;
    z-index: var(--z-dropdown);
}

.breadcrumb-custom a {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: var(--font-medium);
    transition: var(--transition-base);
}

.breadcrumb-custom a:hover {
    color: var(--accent-color);
}

/* ============================================
   SCROLL TO TOP - Modern Button
   ============================================ */
.scroll-to-top {
    position: fixed;
    bottom: var(--space-8);
    right: var(--space-8);
    width: 56px;
    height: 56px;
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    border-radius: var(--radius-full);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: var(--text-xl);
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition-base);
    z-index: var(--z-fixed);
    box-shadow: 0 8px 25px rgba(13, 92, 61, 0.4);
    border: none;
}

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

.scroll-to-top:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 35px rgba(46, 204, 113, 0.5);
}

.scroll-to-top:active {
    transform: translateY(-2px);
}

/* ============================================
   TESTIMONIAL CARDS
   ============================================ */
.testimonial-card {
    background: var(--white);
    border-radius: var(--radius-2xl);
    padding: var(--space-8);
    box-shadow: var(--shadow-lg);
    text-align: center;
    border: 1px solid var(--gray-200);
    transition: var(--transition-base);
}

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

.testimonial-card img {
    width: 90px;
    height: 90px;
    border-radius: var(--radius-full);
    margin-bottom: var(--space-5);
    border: 4px solid var(--primary-color);
    object-fit: cover;
}

.testimonial-card h5 {
    font-size: var(--text-lg);
    font-weight: var(--font-semibold);
    color: var(--dark-color);
    margin-bottom: var(--space-2);
}

.testimonial-card p {
    font-size: var(--text-base);
    color: var(--text-secondary);
    font-style: italic;
}

/* ============================================
   FEATURE BOX
   ============================================ */
.feature-box {
    text-align: center;
    padding: var(--space-10) var(--space-6);
    transition: var(--transition-base);
}

.feature-icon {
    width: 110px;
    height: 110px;
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    border-radius: var(--radius-2xl);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto var(--space-6);
    font-size: var(--text-5xl);
    color: var(--white);
    transition: var(--transition-base);
    box-shadow: 0 10px 30px rgba(13, 92, 61, 0.3);
}

.feature-box:hover .feature-icon {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 15px 40px rgba(46, 204, 113, 0.4);
}

.feature-box h4 {
    font-size: var(--text-xl);
    font-weight: var(--font-semibold);
    color: var(--dark-color);
    margin-bottom: var(--space-3);
}

.feature-box p {
    font-size: var(--text-base);
    color: var(--text-secondary);
}

/* ============================================
   RESPONSIVE DESIGN
   ============================================ */
@media (max-width: 1199.98px) {
    :root {
        --text-5xl: 2.5rem;
        --text-4xl: 2rem;
    }
}

@media (max-width: 991.98px) {
    :root {
        --text-5xl: 2.25rem;
        --text-4xl: 1.875rem;
        --text-3xl: 1.5rem;
    }
    
    .hero-section .carousel-item {
        height: 70vh;
        min-height: 400px;
    }
    
    .hero-section .carousel-caption {
        padding: var(--space-8);
        max-width: 90%;
    }
    
    .hero-title {
        font-size: var(--text-4xl);
    }
    
    .hero-subtitle {
        font-size: var(--text-lg);
    }
    
    .navbar-custom .navbar-nav {
        padding: var(--space-4) 0;
        gap: var(--space-1);
    }
    
    .navbar-custom .nav-link {
        padding: var(--space-3) var(--space-4) !important;
    }
    
    .stat-box::after {
        display: none;
    }
    
    .section-title h2 {
        font-size: var(--text-3xl);
    }
}

/* Mobile Navbar Styles */
@media (max-width: 991.98px) {
    .navbar-custom {
        padding: var(--space-3) 0;
    }
    
    .navbar-custom .navbar-collapse {
        background: var(--white);
        border-radius: var(--radius-xl);
        margin-top: var(--space-3);
        padding: var(--space-4);
        box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    }
    
    .navbar-custom .navbar-nav {
        gap: var(--space-2);
    }
    
    .navbar-custom .nav-link {
        border-radius: var(--radius-lg) !important;
        margin-bottom: var(--space-1);
    }
    
    .navbar-custom .nav-link:hover {
        background: var(--primary-color) !important;
    }
    
    .navbar-custom .nav-link.active {
        background: var(--primary-color) !important;
    }
}

@media (max-width: 767.98px) {
    :root {
        --text-5xl: 2rem;
        --text-4xl: 1.75rem;
        --text-3xl: 1.375rem;
        --text-2xl: 1.25rem;
    }
    
    .hero-section .carousel-item {
        height: 60vh;
        min-height: 350px;
    }
    
    .hero-section .carousel-caption {
        padding: var(--space-6);
        width: 95%;
        border-radius: var(--radius-2xl);
    }
    
    .hero-title {
        font-size: var(--text-3xl);
        margin-bottom: var(--space-3);
    }
    
    .hero-subtitle {
        font-size: var(--text-base);
        margin-bottom: var(--space-4);
    }
    
    .btn-hero {
        padding: var(--space-3) var(--space-6);
        font-size: var(--text-base);
    }
    
    .quick-links-section {
        margin-top: -40px;
    }
    
    .quick-link-card {
        padding: var(--space-6);
    }
    
    .quick-link-icon {
        width: 64px;
        height: 64px;
        font-size: var(--text-2xl);
    }
    
    .stats-section {
        padding: var(--space-12) 0;
    }
    
    .stat-number {
        font-size: var(--text-4xl);
    }
    
    .section-title {
        margin-bottom: var(--space-10);
    }
    
    .section-title h2 {
        font-size: var(--text-2xl);
    }
    
    .section-title p {
        font-size: var(--text-base);
    }
    
    .about-section,
    .contact-section {
        padding: var(--space-16) 0;
    }
    
    .contact-card-custom {
        padding: var(--space-6);
    }
    
    .footer-custom {
        padding: var(--space-12) 0 var(--space-5);
    }
    
    .page-header-custom {
        padding: var(--space-16) 0;
    }
    
    .page-header-custom h2 {
        font-size: var(--text-3xl);
    }
    
    .gallery-item-custom {
        height: 220px;
    }
}

@media (max-width: 575.98px) {
    .top-bar {
        font-size: var(--text-xs);
        padding: var(--space-2) 0;
    }
    
    .navbar-custom .navbar-brand h1 {
        font-size: var(--text-lg);
    }
    
    .logo-icon {
        width: 44px;
        height: 44px;
    }
    
    .hero-section .carousel-control-prev,
    .hero-section .carousel-control-next {
        display: none;
    }
    
    .stat-box {
        padding: var(--space-4);
    }
    
    .stat-number {
        font-size: var(--text-3xl);
    }
    
    .stat-label {
        font-size: var(--text-sm);
    }
}

/* ============================================
   UTILITY CLASSES
   ============================================ */
.bg-gradient-primary {
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
}

.text-primary-custom {
    color: var(--primary-color) !important;
}

.text-accent {
    color: var(--accent-color) !important;
}

.shadow-glow {
    box-shadow: var(--shadow-glow);
}

.rounded-3xl {
    border-radius: var(--radius-3xl);
}

.rounded-2xl {
    border-radius: var(--radius-2xl);
}

/* Hover Lift Effect */
.hover-lift {
    transition: var(--transition-base);
}

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

/* Glass Effect */
.glass-effect {
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

/* Selection Color */
::selection {
    background: var(--accent-color);
    color: var(--white);
}

::-moz-selection {
    background: var(--accent-color);
    color: var(--white);
}

/* Focus Styles */
:focus-visible {
    outline: 2px solid var(--accent-color);
    outline-offset: 2px;
}

/* Smooth Scrollbar */
::-webkit-scrollbar {
    width: 10px;
}

::-webkit-scrollbar-track {
    background: var(--gray-200);
}

::-webkit-scrollbar-thumb {
    background: linear-gradient(180deg, var(--primary-color), var(--accent-color));
    border-radius: var(--radius-full);
}

::-webkit-scrollbar-thumb:hover {
    background: var(--primary-dark);
}
