/* ========================================
   PAGE LOADER
======================================== */
.page-loader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10000;
    transition: opacity 0.8s ease, visibility 0.8s ease;
}

.page-loader.hidden {
    opacity: 0;
    visibility: hidden;
}

.loader-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    position: relative;
}

.loader-logo {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 120px;
    height: 120px;
    border-radius: 50%;
    border: 4px solid rgba(255, 255, 255, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
    animation: logoPulse 2s ease-in-out infinite, counterRotate 4s linear infinite;
    z-index: 10;
}

.loader-logo img {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid white;
}

.loader-dots {
    position: relative;
    width: 200px;
    height: 200px;
    margin-bottom: 2rem;
    animation: rotateDots 4s linear infinite;
}

.dot {
    position: absolute;
    width: 12px;
    height: 12px;
    background: rgba(255, 255, 255, 0.9);
    border-radius: 50%;
    box-shadow: 0 0 20px rgba(255, 255, 255, 0.5);
}

.dot-1 { top: 0; left: 50%; transform: translateX(-50%); }
.dot-2 { top: 14.6%; right: 14.6%; }
.dot-3 { top: 50%; right: 0; transform: translateY(-50%); }
.dot-4 { bottom: 14.6%; right: 14.6%; }
.dot-5 { bottom: 0; left: 50%; transform: translateX(-50%); }
.dot-6 { bottom: 14.6%; left: 14.6%; }
.dot-7 { top: 50%; left: 0; transform: translateY(-50%); }
.dot-8 { top: 14.6%; left: 14.6%; }

.loader-text {
    color: white;
    font-size: 1.2rem;
    font-weight: 600;
    text-align: center;
    opacity: 0.9;
    animation: textFade 2s ease-in-out infinite;
}

@keyframes logoPulse {
    0%, 100% { 
        transform: scale(1);
        box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
    }
    50% { 
        transform: scale(1.05);
        box-shadow: 0 12px 40px rgba(0, 0, 0, 0.3);
    }
}

@keyframes dotRotate {
    0% { 
        opacity: 0.3;
        transform: scale(0.8);
    }
    50% { 
        opacity: 1;
        transform: scale(1.2);
    }
    100% { 
        opacity: 0.3;
        transform: scale(0.8);
    }
}

@keyframes textFade {
    0%, 100% { opacity: 0.6; }
    50% { opacity: 1; }
}

/* Rotate only the dots around the logo */
@keyframes rotateDots {
    0% { 
        transform: rotate(0deg);
    }
    100% { 
        transform: rotate(360deg);
    }
}

/* Counter-rotate the logo to keep it stationary */
@keyframes counterRotate {
    0% { 
        transform: translate(-50%, -50%) rotate(0deg);
    }
    100% { 
        transform: translate(-50%, -50%) rotate(0deg);
    }
}

/* Individual dot pulsing animation */
@keyframes dotPulse {
    0%, 100% { 
        opacity: 0.3;
        transform: scale(0.8);
    }
    50% { 
        opacity: 1;
        transform: scale(1.2);
    }
}

/* Add pulsing animation to dots */
.dot {
    animation: dotPulse 1.5s ease-in-out infinite;
}

/* Staggered animation delays for wave effect */
.dot-1 { animation-delay: 0s; }
.dot-2 { animation-delay: 0.2s; }
.dot-3 { animation-delay: 0.4s; }
.dot-4 { animation-delay: 0.6s; }
.dot-5 { animation-delay: 0.8s; }
.dot-6 { animation-delay: 1s; }
.dot-7 { animation-delay: 1.2s; }
.dot-8 { animation-delay: 1.4s; }

/* ========================================
   GLOBAL STYLES & VARIABLES
======================================== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }
  
  :root {
    --primary: #0a672b;
    --primary-light: #0d8438;
    --primary-dark: #064d1f;
    --accent: #c7a961;
    --accent-light: #d4b972;
    --bg-light: #f8faf9;
    --bg-pattern: #e8f5ec;
    --text-dark: #1a1a1a;
    --text-gray: #5a5a5a;
    --white: #ffffff;
    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.08);
    --shadow-md: 0 4px 16px rgba(0, 0, 0, 0.12);
    --shadow-lg: 0 8px 32px rgba(0, 0, 0, 0.16);
    --shadow-xl: 0 16px 48px rgba(0, 0, 0, 0.2);
    --gradient-primary: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
    --gradient-accent: linear-gradient(135deg, var(--accent) 0%, var(--accent-light) 100%);
  }
  
  html {
    scroll-behavior: smooth;
    overflow-x: hidden;
  }
  
  body {
    font-family: "Montserrat", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    color: var(--text-dark);
    line-height: 1.6;
    overflow-x: hidden;
    background: var(--white);
  }
  
  /* ========================================
     ANIMATED MUSICAL BACKGROUND
  ======================================== */
  .music-background {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 0;
    overflow: hidden;
  }
  
  .music-note {
    position: absolute;
    font-size: 2rem;
    color: rgba(10, 103, 43, 0.08);
    animation: floatNote 15s infinite ease-in-out;
    opacity: 0;
  }
  
  .note-1 { left: 10%; top: 20%; animation-delay: 0s; animation-duration: 20s; }
  .note-2 { left: 20%; top: 60%; animation-delay: 2s; animation-duration: 18s; }
  .note-3 { left: 40%; top: 30%; animation-delay: 4s; animation-duration: 22s; }
  .note-4 { left: 60%; top: 70%; animation-delay: 6s; animation-duration: 19s; }
  .note-5 { left: 80%; top: 40%; animation-delay: 8s; animation-duration: 21s; }
  .note-6 { left: 30%; top: 80%; animation-delay: 3s; animation-duration: 17s; }
  .note-7 { left: 70%; top: 15%; animation-delay: 5s; animation-duration: 23s; }
  .note-8 { left: 50%; top: 50%; animation-delay: 7s; animation-duration: 16s; }
  
  @keyframes floatNote {
    0% { transform: translateY(0) rotate(0deg); opacity: 0; }
    10% { opacity: 0.6; }
    50% { transform: translateY(-100px) rotate(180deg); opacity: 0.4; }
    90% { opacity: 0.2; }
    100% { transform: translateY(-200px) rotate(360deg); opacity: 0; }
  }
  
  /* ========================================
     PATTERN BACKGROUND
  ======================================== */
  .pattern-bg {
    background-color: var(--bg-pattern);
    background-image: 
      repeating-linear-gradient(45deg, transparent, transparent 35px, rgba(10, 103, 43, 0.03) 35px, rgba(10, 103, 43, 0.03) 70px),
      repeating-linear-gradient(-45deg, transparent, transparent 35px, rgba(199, 169, 97, 0.03) 35px, rgba(199, 169, 97, 0.03) 70px);
    position: relative;
  }
  
  /* ========================================
     NAVIGATION
  ======================================== */
  nav {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(20px);
    box-shadow: var(--shadow-sm);
    z-index: 1000;
    transition: all 0.3s ease;
  }
  
  nav.scrolled {
    box-shadow: var(--shadow-md);
    background: rgba(255, 255, 255, 0.95);
  }
  
  .nav-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 1rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
  }
  
  .logo {
    display: flex;
    align-items: center;
    gap: 1rem;
    text-decoration: none;
    color: var(--primary);
    transition: transform 0.3s ease;
  }
  
  .logo:hover {
    transform: scale(1.02);
  }
  
  .logo-img {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid var(--primary);
    box-shadow: 0 4px 12px rgba(10, 103, 43, 0.2);
  }
  
  .logo-text {
    font-weight: 800;
    font-size: 1.2rem;
    max-width: 400px;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
  }
  
  .nav-links {
    display: flex;
    gap: 2rem;
    list-style: none;
    align-items: center;
  }
  
  .nav-links a {
    text-decoration: none;
    color: var(--text-dark);
    font-weight: 600;
    font-size: 1rem;
    position: relative;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 0.5rem;
  }
  
  .nav-links a::after {
    content: "";
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 3px;
    background: var(--gradient-primary);
    transition: width 0.3s ease;
    border-radius: 2px;
  }
  
  .nav-links a:hover {
    color: var(--primary);
  }
  
  .nav-links a:hover::after {
    width: 100%;
  }
  
  .menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
  }
  
  .menu-toggle span {
    width: 28px;
    height: 3px;
    background: var(--primary);
    transition: all 0.3s;
    border-radius: 2px;
  }
  
  .menu-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(8px, 8px);
  }
  
  .menu-toggle.active span:nth-child(2) {
    opacity: 0;
  }
  
  .menu-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -7px);
  }
  
  /* ========================================
     HERO SECTION
  ======================================== */
  .hero {
    margin-top: 90px;
    min-height: 90vh;
    background: var(--gradient-primary);
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    padding: 2rem 0;
  }
  
  .hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 30% 50%, rgba(199, 169, 97, 0.15) 0%, transparent 60%),
                radial-gradient(circle at 70% 80%, rgba(255, 255, 255, 0.1) 0%, transparent 50%);
    z-index: 1;
  }
  
  .hero-pattern {
    position: absolute;
    top: 0;
    right: 0;
    width: 60%;
    height: 100%;
    opacity: 0.08;
    background-image: repeating-linear-gradient(45deg, transparent, transparent 25px, rgba(255, 255, 255, 0.4) 25px, rgba(255, 255, 255, 0.4) 50px);
    z-index: 1;
  }
  
  .hero-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 4rem 2rem;
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 4rem;
    align-items: center;
    position: relative;
    z-index: 2;
  }
  
  .hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    padding: 0.6rem 1.2rem;
    border-radius: 50px;
    color: white;
    font-weight: 600;
    font-size: 0.9rem;
    margin-bottom: 1.5rem;
    border: 1px solid rgba(255, 255, 255, 0.3);
  }
  
  .hero-content h1 {
    font-size: 3.5rem;
    font-weight: 900;
    color: white;
    line-height: 1.15;
    margin-bottom: 1.5rem;
    text-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
  }
  
  .hero-content p {
    font-size: 1.15rem;
    color: rgba(255, 255, 255, 0.95);
    margin-bottom: 2.5rem;
    line-height: 1.8;
  }
  
  .hero-buttons {
    display: flex;
    gap: 1.2rem;
    flex-wrap: wrap;
    margin-bottom: 3rem;
  }
  
  .btn {
    padding: 1rem 2.2rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    display: inline-flex;
    align-items: center;
    gap: 0.7rem;
    font-size: 1rem;
    position: relative;
    overflow: hidden;
    border: none;
    cursor: pointer;
  }
  
  .btn::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
  }
  
  .btn:hover::before {
    width: 300px;
    height: 300px;
  }
  
  .btn span,
  .btn i {
    position: relative;
    z-index: 1;
  }
  
  .btn-primary {
    background: white;
    color: var(--primary);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
  }
  
  .btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.25);
  }
  
  .btn-secondary {
    background: transparent;
    color: white;
    border: 2px solid white;
    box-shadow: 0 4px 15px rgba(255, 255, 255, 0.1);
  }
  
  .btn-secondary:hover {
    background: white;
    color: var(--primary);
    transform: translateY(-3px);
  }
  
  .hero-features {
    display: flex;
    flex-direction: column;
    gap: 1rem;
  }
  
  .hero-feature {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    color: white;
    font-size: 1rem;
    font-weight: 500;
  }
  
  .hero-feature i {
    color: var(--accent-light);
    font-size: 1.2rem;
  }
  
  .hero-image {
    position: relative;
    height: 500px;
  }
  
  .hero-image-card {
    position: relative;
    width: 100%;
    height: 100%;
  }
  
  .hero-image-placeholder {
    width: 100%;
    height: 100%;
    backdrop-filter: blur(15px);
    border-radius: 30px;
    border: 3px solid rgba(255, 255, 255, 0.3);    
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.2);
    overflow: hidden;
    position: relative;
  }

  .hero_img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    border-radius: 27px;
    transition: transform 0.6s ease;
    display: block;
    max-width: 100%;
  }

  .hero-image-placeholder:hover .hero_img {
    transform: scale(1.05);
  }

  /* Дополнительные стили для лучшего отображения */
  .hero-image-card:hover .hero-image-placeholder {
    border-color: rgba(255, 255, 255, 0.5);
    box-shadow: 0 25px 70px rgba(0, 0, 0, 0.25);
  }
  
  
  
  
  /* ========================================
     STATS SECTION
  ======================================== */
  .stats {
    padding: 5rem 2rem;
    background: white;
    position: relative;
    z-index: 10;
  }
  
  .stats-container {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
  }
  
  .stat-card {
    text-align: center;
    padding: 2.5rem 1.5rem;
    background: linear-gradient(145deg, #ffffff 0%, var(--bg-light) 100%);
    border-radius: 25px;
    border: 2px solid var(--primary);
    position: relative;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    box-shadow: var(--shadow-sm);
  }
  
  .stat-card::before {
    content: "";
    position: absolute;
    top: -50%;
    right: -50%;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle, rgba(10, 103, 43, 0.12) 0%, transparent 70%);
    transition: all 0.6s ease;
  }
  
  .stat-card:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: var(--shadow-xl);
    border-color: var(--primary-light);
  }
  
  .stat-card:hover::before {
    top: 0;
    right: 0;
  }
  
  .stat-icon-wrapper {
    width: 70px;
    height: 70px;
    margin: 0 auto 1.5rem;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 25px rgba(10, 103, 43, 0.3);
    transition: all 0.4s ease;
  }
  
  .stat-card:hover .stat-icon-wrapper {
    transform: rotateY(360deg);
  }
  
  .stat-icon-wrapper i {
    font-size: 2rem;
    color: white;
  }
  
  .stat-number {
    font-size: 3rem;
    font-weight: 900;
    color: var(--primary);
    margin-bottom: 0.8rem;
  }
  
  .stat-label {
    font-size: 1rem;
    color: var(--text-gray);
    font-weight: 600;
    margin-bottom: 1rem;
  }
  
  .stat-divider {
    width: 50px;
    height: 4px;
    background: var(--gradient-accent);
    margin: 1rem auto 0;
    border-radius: 2px;
  }
  
  /* ========================================
     SECTION HEADERS
  ======================================== */
  .section-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    background: var(--gradient-primary);
    color: white;
    padding: 0.6rem 1.5rem;
    border-radius: 50px;
    font-weight: 700;
    font-size: 0.95rem;
    margin-bottom: 1.5rem;
    box-shadow: 0 4px 15px rgba(10, 103, 43, 0.2);
  }
  
  .section-header {
    text-align: center;
    margin-bottom: 4rem;
  }
  
  .section-header h2 {
    font-size: 2.8rem;
    font-weight: 900;
    color: var(--primary);
    margin: 1rem 0;
    line-height: 1.3;
  }
  
  .section-header p {
    color: var(--text-gray);
    font-size: 1.1rem;
    max-width: 700px;
    margin: 0 auto;
  }
  
  /* ========================================
     ABOUT SECTION
  ======================================== */
  .about {
    padding: 6rem 2rem;
    position: relative;
    z-index: 10;
  }
  
  .about-container {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
  }
  
  .about-image {
    position: relative;
    height: 500px;
  }
  
  .about-image-wrapper {
    position: relative;
    width: 100%;
    height: 100%;
    border-radius: 25px;
    overflow: hidden;
    box-shadow: var(--shadow-xl);
  }
  
  .about-image-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
  }
  
  .about-image-wrapper:hover img {
    transform: scale(1.05);
  }
  
  .about-image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, transparent 50%, rgba(0, 0, 0, 0.3));
    display: flex;
    align-items: flex-end;
    padding: 2rem;
  }
  
  .about-image-badge {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    padding: 1rem 1.5rem;
    border-radius: 15px;
    font-weight: 700;
    color: var(--primary);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
  }
  
  .about-image-badge i {
    font-size: 1.5rem;
    color: var(--accent);
  }
  
  .about-content h2 {
    font-size: 2.8rem;
    font-weight: 900;
    color: var(--primary);
    margin-bottom: 1.5rem;
    line-height: 1.3;
  }
  
  .about-content p {
    font-size: 1.1rem;
    color: var(--text-gray);
    margin-bottom: 2.5rem;
    line-height: 1.8;
  }
  
  .about-features {
    display: flex;
    flex-direction: column;
    gap: 1.2rem;
  }
  
  .feature-item {
    display: flex;
    gap: 1.5rem;
    padding: 1.5rem 1.8rem;
    background: white;
    border-radius: 20px;
    border: 2px solid var(--primary);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    box-shadow: var(--shadow-sm);
  }
  
  .feature-item:hover {
    transform: translateX(10px);
    box-shadow: var(--shadow-lg);
    border-color: var(--primary-light);
  }
  
  .feature-icon {
    width: 55px;
    height: 55px;
    background: var(--gradient-primary);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    box-shadow: 0 4px 15px rgba(10, 103, 43, 0.2);
  }
  
  .feature-icon i {
    font-size: 1.6rem;
    color: white;
  }
  
  .feature-info strong {
    display: block;
    font-size: 1.1rem;
    color: var(--text-dark);
    margin-bottom: 0.5rem;
    font-weight: 700;
  }
  
  .feature-info p {
    color: var(--text-gray);
    font-size: 0.95rem;
    margin: 0;
    line-height: 1.6;
  }
  
  /* ========================================
     NEWS SECTION WITH IMPROVED SLIDER
  ======================================== */
  .news {
    padding: 6rem 2rem;
    background: white;
    position: relative;
    z-index: 10;
  }
  
  .news::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 300px;
    background: linear-gradient(180deg, var(--bg-light) 0%, transparent 100%);
    z-index: -1;
  }
  
  .news-container {
    max-width: 1400px;
    margin: 0 auto;
  }
  
  /* NEWS SLIDER */
  .news-slider-wrapper {
    position: relative;
    margin: 0 auto;
    max-width: 100%;
  }
  
  .news-slider-container {
    overflow: hidden;
    border-radius: 25px;
    padding: 2rem 0;
  }
  
  .news-slider {
    display: flex;
    transition: transform 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    gap: 2rem;
  }
  
  .news-card {
    flex: 0 0 calc(33.333% - 1.33rem);
    background: white;
    border-radius: 25px;
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border: 2px solid transparent;
  }
  
  .news-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-xl);
    border-color: var(--primary);
  }
  
  .news-image {
    width: 100%;
    height: 250px;
    background: var(--gradient-accent);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
  }
  
  .news-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
  }
  
  .news-card:hover .news-image img {
    transform: scale(1.08);
  }
  
  .news-category {
    position: absolute;
    top: 1.2rem;
    left: 1.2rem;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    padding: 0.5rem 1rem;
    border-radius: 50px;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-weight: 700;
    font-size: 0.85rem;
    color: var(--primary);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
    z-index: 2;
  }
  
  .news-content {
    padding: 1.8rem;
  }
  
  .news-meta {
    display: flex;
    gap: 1.2rem;
    margin-bottom: 1rem;
    flex-wrap: wrap;
  }
  
  .news-date {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.9rem;
    color: var(--text-gray);
    font-weight: 500;
  }
  
  .news-date i {
    color: var(--primary);
  }
  
  .news-title {
    font-size: 1.3rem;
    font-weight: 800;
    color: var(--text-dark);
    margin-bottom: 1rem;
    line-height: 1.4;
    transition: color 0.3s ease;
  }
  
  .news-card:hover .news-title {
    color: var(--primary);
  }
  
  .news-excerpt {
    color: var(--text-gray);
    line-height: 1.7;
    margin-bottom: 1.5rem;
    font-size: 0.95rem;
  }
  
  .news-link {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    color: var(--primary);
    font-weight: 700;
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 0.95rem;
  }
  
  .news-link:hover {
    gap: 1rem;
    color: var(--primary-dark);
  }
  
  /* SLIDER CONTROLS */
  .slider-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: var(--shadow-md);
    color: var(--primary);
    font-size: 1.2rem;
    z-index: 10;
  }
  
  .slider-btn:hover {
    background: var(--primary);
    color: white;
    transform: translateY(-50%) scale(1.1);
    box-shadow: var(--shadow-lg);
  }
  
  .slider-btn:disabled {
    opacity: 0.4;
    cursor: not-allowed;
  }
  
  .slider-btn:disabled:hover {
    background: rgba(255, 255, 255, 0.95);
    color: var(--primary);
    transform: translateY(-50%);
  }
  
  .slider-prev {
    left: -25px;
  }
  
  .slider-next {
    right: -25px;
  }
  
  /* SLIDER INDICATORS */
  .slider-indicators {
    display: flex;
    justify-content: center;
    gap: 0.6rem;
    margin-top: 2.5rem;
  }
  
  .slider-indicator {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(10, 103, 43, 0.2);
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    padding: 0;
  }
  
  .slider-indicator.active {
    background: var(--primary);
    transform: scale(1.3);
  }
  
  .slider-indicator:hover {
    background: var(--primary-light);
    transform: scale(1.15);
  }
  
  /* ========================================
     EMPLOYEES SECTION
  ======================================== */
  .employees {
    padding: 6rem 2rem;
    position: relative;
    z-index: 10;
  }
  
  .employees-container {
    max-width: 1400px;
    margin: 0 auto;
  }
  
  .employees-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2.5rem;
  }
  
  .employee-card {
    background: white;
    border-radius: 25px;
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border: 2px solid transparent;
  }
  
  .employee-card:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: var(--shadow-xl);
    border-color: var(--primary);
  }
  
  .employee-image {
    position: relative;
    width: 100%;
    height: 350px;
    overflow: hidden;
  }
  
  .employee-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
  }
  
  .employee-card:hover .employee-image img {
    transform: scale(1.1);
  }
  
  .employee-social {
    position: absolute;
    bottom: 1.5rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 1rem;
    opacity: 0;
    transition: opacity 0.4s ease;
  }
  
  .employee-card:hover .employee-social {
    opacity: 1;
  }
  
  .employee-social a {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  }
  
  .employee-social a:hover {
    background: var(--primary);
    color: white;
    transform: translateY(-3px);
  }
  
  /* Contact icons specific styles */
  .employee-social a[href^="tel:"] {
    background: rgba(40, 167, 69, 0.95);
    color: white;
  }
  
  .employee-social a[href^="tel:"]:hover {
    background: #28a745;
    transform: translateY(-3px);
  }
  
  .employee-social a[href^="mailto:"] {
    background: rgba(23, 162, 184, 0.95);
    color: white;
  }
  
  .employee-social a[href^="mailto:"]:hover {
    background: #17a2b8;
    transform: translateY(-3px);
  }
  
  .employee-info {
    padding: 1.8rem;
    text-align: center;
  }
  
  .employee-name {
    font-size: 1.15rem;
    font-weight: 800;
    color: var(--text-dark);
    margin-bottom: 0.8rem;
    line-height: 1.4;
  }
  
  .employee-role {
    color: var(--primary);
    font-weight: 600;
    font-size: 0.95rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
  }
  
  /* ========================================
     CONTACT SECTION
  ======================================== */
  .contact {
    padding: 6rem 2rem;
    background: white;
    position: relative;
    z-index: 10;
  }
  
  .contact-container {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
  }
  
  .contact-info h2 {
    font-size: 2.8rem;
    font-weight: 900;
    color: var(--primary);
    margin-bottom: 1.5rem;
    line-height: 1.3;
  }
  
  .contact-info p {
    color: var(--text-gray);
    font-size: 1.1rem;
    margin-bottom: 3rem;
    line-height: 1.8;
  }
  
  .contact-details {
    display: flex;
    flex-direction: column;
    gap: 1.2rem;
  }
  
  .contact-item {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    padding: 1.5rem 1.8rem;
    background: var(--bg-light);
    border-radius: 20px;
    border: 2px solid var(--primary);
    transition: all 0.4s ease;
    box-shadow: var(--shadow-sm);
  }
  
  .contact-item:hover {
    transform: translateX(8px);
    box-shadow: var(--shadow-md);
    background: white;
  }
  
  .contact-icon {
    width: 55px;
    height: 55px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    box-shadow: 0 4px 15px rgba(10, 103, 43, 0.2);
  }
  
  .contact-icon i {
    font-size: 1.4rem;
    color: white;
  }
  
  .contact-text strong {
    display: block;
    color: var(--text-dark);
    font-weight: 700;
    font-size: 1rem;
    margin-bottom: 0.4rem;
  }
  
  .contact-text a {
    text-decoration: none;
    color: var(--text-gray);
    transition: color 0.3s ease;
  }
  
  .contact-text a:hover {
    color: var(--primary);
  }
  
  .contact-text span {
    color: var(--text-gray);
    font-size: 0.95rem;
  }
  
  /* CONTACT FORM */
  .contact-form {
    background: linear-gradient(145deg, var(--bg-light) 0%, white 100%);
    padding: 2.5rem;
    border-radius: 25px;
    box-shadow: var(--shadow-lg);
    border: 2px solid var(--primary);
  }
  
  .form-header {
    text-align: center;
    margin-bottom: 2rem;
  }
  
  .form-header h3 {
    font-size: 1.8rem;
    font-weight: 800;
    color: var(--primary);
    margin-bottom: 0.5rem;
  }
  
  .form-header p {
    color: var(--text-gray);
    font-size: 0.95rem;
  }
  
  .form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.2rem;
    margin-bottom: 1.2rem;
  }
  
  .form-group {
    margin-bottom: 1.5rem;
  }
  
  .form-group label {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 0.8rem;
    font-size: 0.95rem;
  }
  
  .form-group label i {
    color: var(--primary);
  }
  
  .form-group input,
  .form-group textarea {
    width: 100%;
    padding: 1rem 1.2rem;
    border: 2px solid #e0e0e0;
    border-radius: 12px;
    font-family: "Montserrat", sans-serif;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    background: white;
  }
  
  .form-group input:focus,
  .form-group textarea:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 4px rgba(10, 103, 43, 0.1);
    transform: translateY(-2px);
  }
  
  .form-group textarea {
    resize: vertical;
    min-height: 120px;
  }
  
  .form-submit {
    width: 100%;
    padding: 1.1rem;
    background: var(--gradient-primary);
    color: white;
    border: none;
    border-radius: 50px;
    font-weight: 800;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.8rem;
    box-shadow: 0 8px 25px rgba(10, 103, 43, 0.3);
  }
  
  .form-submit:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(10, 103, 43, 0.4);
  }
  
  /* ========================================
     FOOTER
  ======================================== */
  footer {
    background: var(--gradient-primary);
    color: white;
    padding: 3.5rem 2rem 2rem;
    position: relative;
    overflow: hidden;
    z-index: 10;
  }
  
  footer::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: repeating-linear-gradient(45deg, transparent, transparent 25px, rgba(255, 255, 255, 0.03) 25px, rgba(255, 255, 255, 0.03) 50px);
    z-index: -1;
  }
  
  .footer-container {
    max-width: 1400px;
    margin: 0 auto;
  }
  
  .footer-content {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 3rem;
    padding-bottom: 2.5rem;
    border-bottom: 2px solid rgba(255, 255, 255, 0.2);
    margin-bottom: 2rem;
  }
  
  .footer-logo-section {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
  }
  
  .footer-logo {
    display: flex;
    align-items: center;
    gap: 1.2rem;
  }
  
  .footer-logo img {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    border: 3px solid white;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  }
  
  .footer-logo strong {
    display: block;
    font-size: 1.3rem;
    margin-bottom: 0.3rem;
    font-weight: 800;
  }
  
  .footer-logo small {
    font-size: 0.9rem;
    opacity: 0.9;
    font-weight: 500;
  }
  
  .footer-description {
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.7;
    font-size: 0.95rem;
  }
  
  .footer-social {
    display: flex;
    gap: 1rem;
  }
  
  .footer-social a {
    width: 45px;
    height: 45px;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 1.1rem;
  }
  
  .footer-social a:hover {
    background: white;
    color: var(--primary);
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
  }
  
  .footer-links-section {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
  }
  
  .footer-links-column h4 {
    font-size: 1.1rem;
    font-weight: 800;
    margin-bottom: 1.2rem;
  }
  
  .footer-links-column ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
  }
  
  .footer-links-column ul li {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.9rem;
    transition: all 0.3s ease;
  }
  
  .footer-links-column ul li:hover {
    transform: translateX(5px);
    color: white;
  }
  
  .footer-links-column ul li a {
    color: inherit;
    text-decoration: none;
  }
  
  .footer-bottom {
    text-align: center;
    padding-top: 1.5rem;
  }
  
  .footer-bottom p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.9rem;
  }
  
/* ========================================
   LOADING STATES
   ======================================== */

.loading-news,
.loading-employees {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 3rem;
    color: var(--text-gray);
    font-size: 1.1rem;
    gap: 1rem;
}

.loading-news i,
.loading-employees i {
    font-size: 2rem;
    color: var(--primary);
}

.error-news,
.error-employees {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 3rem;
    color: var(--error-color, #dc3545);
    font-size: 1.1rem;
    gap: 1rem;
}

.error-news i,
.error-employees i {
    font-size: 2rem;
}

/* ========================================
   RESPONSIVE DESIGN
   ======================================== */
  
  /* Large Tablets and Small Desktops (1024px) */
  @media (max-width: 1024px) {
    .hero-container {
      grid-template-columns: 1fr;
      gap: 3rem;
    }
    
    .hero-image {
      height: 400px;
      order: -1;
    }

    .hero_img {
      border-radius: 25px;
    }
    
    .hero-content h1 {
      font-size: 3rem;
    }
    
    .stats-container {
      grid-template-columns: repeat(2, 1fr);
      gap: 1.5rem;
    }
    
    .about-container {
      grid-template-columns: 1fr;
      gap: 3rem;
    }
    
    .about-image {
      order: -1;
    }
    
    .news-slider .news-card {
      flex: 0 0 calc(50% - 1rem);
    }
    
    .contact-container {
      grid-template-columns: 1fr;
      gap: 3rem;
    }
    
    .footer-content {
      grid-template-columns: 1fr;
      gap: 2.5rem;
    }
  }
  
  /* Tablets (768px) */
  @media (max-width: 768px) {
    .nav-container {
      padding: 1rem 1.5rem;
    }
    
    .logo-text {
      font-size: 1rem;
      max-width: 250px;
    }
    
    .logo-img {
      width: 50px;
      height: 50px;
    }
    
    .nav-links {
      position: fixed;
      top: 80px;
      left: 0;
      right: 0;
      flex-direction: column;
      background: rgba(255, 255, 255, 0.98);
      backdrop-filter: blur(20px);
      padding: 2rem;
      gap: 1.5rem;
      box-shadow: var(--shadow-lg);
      transform: translateY(-120%);
      transition: transform 0.4s ease;
      z-index: 999;
    }
    
    .nav-links.active {
      transform: translateY(0);
    }
    
    .nav-links li {
      width: 100%;
    }
    
    .nav-links a {
      width: 100%;
      padding: 0.8rem 1rem;
      border-radius: 12px;
      background: var(--bg-light);
      justify-content: flex-start;
    }
    
    .nav-links a::after {
      display: none;
    }
    
    .menu-toggle {
      display: flex;
    }
    
    .hero {
      margin-top: 80px;
      min-height: auto;
    }
    
    .hero-container {
      padding: 3rem 1.5rem;
      gap: 2.5rem;
    }
    
    .hero-content h1 {
      font-size: 2.5rem;
    }
    
    .hero-content p {
      font-size: 1rem;
    }
    
    .hero-image {
      height: 350px;
    }

    .hero_img {
      border-radius: 20px;
    }
    
    .hero-buttons {
      flex-direction: column;
    }
    
    .btn {
      width: 100%;
      justify-content: center;
    }
    
    .stats {
      padding: 4rem 1.5rem;
    }
    
    .stats-container {
      gap: 1.2rem;
    }
    
    .stat-card {
      padding: 2rem 1.2rem;
    }
    
    .stat-icon-wrapper {
      width: 60px;
      height: 60px;
    }
    
    .stat-icon-wrapper i {
      font-size: 1.8rem;
    }
    
    .stat-number {
      font-size: 2.5rem;
    }
    
    .section-header h2 {
      font-size: 2.2rem;
    }
    
    .section-header p {
      font-size: 1rem;
    }
    
    .about,
    .news,
    .employees,
    .contact {
      padding: 4rem 1.5rem;
    }
    
    .about-container {
      gap: 2.5rem;
    }
    
    .about-image {
      height: 350px;
    }
    
    .about-content h2 {
      font-size: 2.2rem;
    }
    
    .about-content p {
      font-size: 1rem;
    }
    
    .feature-item {
      padding: 1.2rem 1.5rem;
    }
    
    .feature-icon {
      width: 50px;
      height: 50px;
    }
    
    .feature-icon i {
      font-size: 1.4rem;
    }
    
    /* NEWS SLIDER - TABLET */
    .news-slider-container {
      padding: 1.5rem 0;
    }
    
    .news-slider {
      gap: 1.5rem;
    }
    
    .news-slider .news-card {
      flex: 0 0 calc(100% - 0.75rem);
    }
    
    .slider-btn {
      width: 45px;
      height: 45px;
      font-size: 1.1rem;
    }
    
    .slider-prev {
      left: -22px;
    }
    
    .slider-next {
      right: -22px;
    }
    
    .news-image {
      height: 220px;
    }
    
    .news-content {
      padding: 1.5rem;
    }
    
    .news-title {
      font-size: 1.2rem;
    }
    
    .employees-grid {
      grid-template-columns: repeat(2, 1fr);
      gap: 2rem;
    }
    
    .employee-image {
      height: 300px;
    }
    
    .contact-info h2 {
      font-size: 2.2rem;
    }
    
    .contact-info p {
      font-size: 1rem;
    }
    
    .contact-item {
      padding: 1.2rem 1.5rem;
    }
    
    .contact-form {
      padding: 2rem;
    }
    
    .form-header h3 {
      font-size: 1.6rem;
    }
    
    .form-row {
      grid-template-columns: 1fr;
      gap: 0;
    }
    
    .footer-links-section {
      grid-template-columns: 1fr;
    }
  }
  
  /* Mobile Large (480px) */
  @media (max-width: 480px) {
    .loader-logo {
      width: 100px;
      height: 100px;
      animation: logoPulse 2s ease-in-out infinite, counterRotate 3s linear infinite;
    }
    
    .loader-logo img {
      width: 70px;
      height: 70px;
    }
    
    .loader-dots {
      width: 160px;
      height: 160px;
      animation: rotateDots 3s linear infinite;
    }
    
    .dot {
      width: 10px;
      height: 10px;
    }
    
    .loader-text {
      font-size: 1rem;
    }
    .nav-container {
      padding: 0.8rem 1rem;
    }
    
    .logo-text {
      font-size: 0.85rem;
      max-width: 180px;
    }
    
    .logo-img {
      width: 45px;
      height: 45px;
    }
    
    .nav-links {
      top: 70px;
      padding: 1.5rem;
      gap: 1rem;
    }
    
    .hero {
      margin-top: 70px;
    }
    
    .hero-container {
      padding: 2rem 1rem;
      gap: 2rem;
    }
    
    .hero-content h1 {
      font-size: 2rem;
    }
    
    .hero-content p {
      font-size: 0.95rem;
      margin-bottom: 2rem;
    }
    
    .hero-badge {
      font-size: 0.8rem;
      padding: 0.5rem 1rem;
    }
    
    .hero-buttons {
      gap: 0.8rem;
    }
    
    .btn {
      padding: 0.9rem 1.8rem;
      font-size: 0.95rem;
    }
    
    .hero-feature {
      font-size: 0.9rem;
    }
    
    .hero-image {
      height: 300px;
    }

    .hero_img {
      border-radius: 15px;
    }
    
    .hero-image-placeholder {
      font-size: 1.1rem;
      padding: 1.5rem;
    }
    
    
    .hero-image-placeholder i {
      font-size: 3rem;
    }
    
    .stats {
      padding: 3rem 1rem;
    }
    
    .stats-container {
      grid-template-columns: 1fr;
      gap: 1rem;
    }
    
    .stat-card {
      padding: 1.8rem 1rem;
    }
    
    .stat-number {
      font-size: 2.2rem;
    }
    
    .stat-label {
      font-size: 0.95rem;
    }
    
    .section-badge {
      font-size: 0.85rem;
      padding: 0.5rem 1.2rem;
    }
    
    .section-header {
      margin-bottom: 3rem;
    }
    
    .section-header h2 {
      font-size: 1.8rem;
    }
    
    .section-header p {
      font-size: 0.95rem;
    }
    
    .about,
    .news,
    .employees,
    .contact {
      padding: 3rem 1rem;
    }
    
    .about-image {
      height: 300px;
    }
    
    .about-content h2 {
      font-size: 1.8rem;
    }
    
    .about-content p {
      font-size: 0.95rem;
      margin-bottom: 2rem;
    }
    
    .about-features {
      gap: 1rem;
    }
    
    .feature-item {
      padding: 1rem 1.2rem;
      gap: 1rem;
    }
    
    .feature-icon {
      width: 45px;
      height: 45px;
    }
    
    .feature-icon i {
      font-size: 1.2rem;
    }
    
    .feature-info strong {
      font-size: 1rem;
    }
    
    .feature-info p {
      font-size: 0.9rem;
    }
    
    /* NEWS SLIDER - MOBILE */
    .news-slider-container {
      padding: 1rem 0;
    }
    
    .news-slider {
      gap: 1rem;
    }
    
    .news-slider .news-card {
      flex: 0 0 calc(100% - 0.5rem);
    }
    
    .slider-btn {
      width: 40px;
      height: 40px;
      font-size: 1rem;
    }
    
    .slider-prev {
      left: -20px;
    }
    
    .slider-next {
      right: -20px;
    }
    
    .slider-indicators {
      margin-top: 2rem;
      gap: 0.5rem;
    }
    
    .slider-indicator {
      width: 10px;
      height: 10px;
    }
    
    .news-image {
      height: 200px;
    }
    
    .news-category {
      font-size: 0.75rem;
      padding: 0.4rem 0.8rem;
      top: 1rem;
      left: 1rem;
    }
    
    .news-content {
      padding: 1.2rem;
    }
    
    .news-meta {
      gap: 0.8rem;
      margin-bottom: 0.8rem;
    }
    
    .news-date {
      font-size: 0.8rem;
    }
    
    .news-title {
      font-size: 1.1rem;
      margin-bottom: 0.8rem;
    }
    
    .news-excerpt {
      font-size: 0.9rem;
      margin-bottom: 1.2rem;
    }
    
    .news-link {
      font-size: 0.9rem;
    }
    
    .employees-grid {
      grid-template-columns: 1fr;
      gap: 1.5rem;
    }
    
    .employee-image {
      height: 350px;
    }
    
    .employee-info {
      padding: 1.5rem;
    }
    
    .employee-name {
      font-size: 1.05rem;
    }
    
    .employee-role {
      font-size: 0.9rem;
    }
    
    .contact-container {
      gap: 2.5rem;
    }
    
    .contact-info h2 {
      font-size: 1.8rem;
    }
    
    .contact-info p {
      font-size: 0.95rem;
      margin-bottom: 2rem;
    }
    
    .contact-details {
      gap: 1rem;
    }
    
    .contact-item {
      padding: 1rem 1.2rem;
      gap: 1rem;
    }
    
    .contact-icon {
      width: 50px;
      height: 50px;
    }
    
    .contact-icon i {
      font-size: 1.2rem;
    }
    
    .contact-text strong {
      font-size: 0.95rem;
    }
    
    .contact-text span,
    .contact-text a {
      font-size: 0.85rem;
    }
    
    .contact-form {
      padding: 1.8rem;
    }
    
    .form-header {
      margin-bottom: 1.8rem;
    }
    
    .form-header h3 {
      font-size: 1.4rem;
    }
    
    .form-header p {
      font-size: 0.9rem;
    }
    
    .form-group {
      margin-bottom: 1.2rem;
    }
    
    .form-group label {
      font-size: 0.9rem;
      margin-bottom: 0.6rem;
    }
    
    .form-group input,
    .form-group textarea {
      padding: 0.9rem 1rem;
      font-size: 0.9rem;
    }
    
    .form-group textarea {
      min-height: 100px;
    }
    
    .form-submit {
      padding: 1rem;
      font-size: 0.95rem;
    }
    
    footer {
      padding: 3rem 1rem 1.5rem;
    }
    
    .footer-content {
      gap: 2rem;
      padding-bottom: 2rem;
    }
    
    .footer-logo {
      gap: 1rem;
    }
    
    .footer-logo img {
      width: 50px;
      height: 50px;
    }
    
    .footer-logo strong {
      font-size: 1.1rem;
    }
    
    .footer-logo small {
      font-size: 0.85rem;
    }
    
    .footer-description {
      font-size: 0.9rem;
    }
    
    .footer-social a {
      width: 40px;
      height: 40px;
      font-size: 1rem;
    }
    
    .footer-links-column h4 {
      font-size: 1rem;
      margin-bottom: 1rem;
    }
    
    .footer-links-column ul {
      gap: 0.7rem;
    }
    
    .footer-links-column ul li {
      font-size: 0.85rem;
    }
    
    .footer-bottom p {
      font-size: 0.85rem;
    }
  }
  
  /* Extra Small Mobile (360px) */
  @media (max-width: 360px) {
    .hero-content h1 {
      font-size: 1.6rem;
    }

    .hero_img {
      border-radius: 12px;
    }
    
    .section-header h2 {
      font-size: 1.6rem;
    }
    
    .about-content h2,
    .contact-info h2 {
      font-size: 1.6rem;
    }
    
    .stat-number {
      font-size: 2rem;
    }
    
    .slider-btn {
      width: 35px;
      height: 35px;
      font-size: 0.9rem;
    }
    
    .slider-prev {
      left: -17px;
    }
    
    .slider-next {
      right: -17px;
    }
  }
  
  /* Utility Classes */
  .text-center {
    text-align: center;
  }
  
  .mt-1 { margin-top: 0.5rem; }
  .mt-2 { margin-top: 1rem; }
  .mt-3 { margin-top: 1.5rem; }
  .mt-4 { margin-top: 2rem; }
  
  .mb-1 { margin-bottom: 0.5rem; }
  .mb-2 { margin-bottom: 1rem; }
  .mb-3 { margin-bottom: 1.5rem; }
  .mb-4 { margin-bottom: 2rem; }
  
  .hidden {
    display: none;
  }