/* ========================================
   HIMMAH AL-SAWAED - PREMIUM STYLESHEET
   Vibrant Green & Gold Theme
   ======================================== */

:root {
    /* Vibrant Green Palette */
    --green-deep: #1A4D3E;
    --green-medium: #2C5E4A;
    --green-vibrant: #3E6F56;
    --green-soft: #5F9D7A;
    --green-light: #8FC1A0;
    
    /* Gold Accents */
    --gold-primary: #FFD700;
    --gold-secondary: #FFA500;
    --gold-soft: rgba(255, 215, 0, 0.2);
    
    /* Neutral Colors */
    --white: #FFFFFF;
    --off-white: #F8FAF9;
    --gray-100: #F5F7F6;
    --gray-200: #E5E7E6;
    --gray-300: #D1D5D4;
    --gray-400: #9CA3A0;
    --gray-500: #6B7280;
    --gray-600: #4B5563;
    --gray-700: #374151;
    --gray-800: #1F2937;
    --gray-900: #111827;
    
    /* Gradients */
    --gradient-green: linear-gradient(135deg, #1A4D3E 0%, #2C5E4A 50%, #3E6F56 100%);
    --gradient-gold: linear-gradient(135deg, #FFD700, #FFA500);
    --gradient-mixed: linear-gradient(135deg, #1A4D3E, #2C5E4A, #3E6F56, #FFD700);
    
    /* Shadows */
    --shadow-sm: 0 2px 4px rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 8px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 8px 16px rgba(0, 0, 0, 0.15);
    --shadow-xl: 0 12px 24px rgba(0, 0, 0, 0.2);
    --shadow-gold: 0 5px 15px rgba(255, 215, 0, 0.3);
    
    /* Transitions */
    --transition: all 0.3s ease;
    
    /* Container */
    --container-max: 1280px;
    --container-padding: 2rem;
}

/* ========================================
   RESET & BASE STYLES
   ======================================== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    font-size: 16px;
    scroll-behavior: smooth;
    overflow-x: hidden;
}

body {
    font-family: 'Poppins', sans-serif;
    color: var(--gray-800);
    line-height: 1.6;
    background-color: var(--off-white);
}

body.no-scroll {
    overflow: hidden;
    touch-action: none;
}

.container {
    width: 100%;
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 var(--container-padding);
}

/* ========================================
   PRELOADER
   ======================================== */
.preloader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--green-deep);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    transition: opacity 0.5s ease, visibility 0.5s ease;
}

.preloader.fade-out {
    opacity: 0;
    visibility: hidden;
}

.loader-wrapper {
    text-align: center;
}

.loader {
    width: 60px;
    height: 60px;
    border: 4px solid rgba(255, 255, 255, 0.1);
    border-top-color: var(--gold-primary);
    border-right-color: var(--gold-secondary);
    border-radius: 50%;
    margin: 0 auto 20px;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

.loader-text {
    color: var(--gold-primary);
    font-size: 1.2rem;
    font-weight: 600;
    letter-spacing: 2px;
    animation: pulse 1.5s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.5; }
}

/* ========================================
   PREMIUM NAVIGATION
   ======================================== */
.navbar-premium {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background: rgba(26, 77, 62, 0.95);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    transition: var(--transition);
    border-bottom: 1px solid rgba(255, 215, 0, 0.2);
}

.navbar-premium.scrolled {
    background: rgba(26, 77, 62, 0.98);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    border-bottom-color: rgba(255, 215, 0, 0.3);
}

.nav-wrapper {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 90px;
}

/* Logo on Far Left */
.logo-wrapper {
    flex-shrink: 0;
}

.logo {
    display: flex;
    align-items: center;
    gap: 15px;
    text-decoration: none;
}

.logo-icon {
    width: 140px;
    height: 95px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    box-shadow: var(--shadow-gold);
}

.logo-icon::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transform: rotate(45deg);
    animation: shimmer 3s infinite;
}

@keyframes shimmer {
    0% { transform: translateX(-100%) rotate(45deg); }
    100% { transform: translateX(100%) rotate(45deg); }
}

.logo-icon img {
    width: 140px;
    position: relative;
    z-index: 2;
}

.logo-text-wrapper {
    display: flex;
    flex-direction: column;
}

.logo-main {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--gold-primary);
    line-height: 1.2;
    letter-spacing: 0.5px;
    text-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
}

.logo-sub {
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.8);
    letter-spacing: 1px;
}

/* Centered Navigation Menu */
.nav-menu-wrapper {
    flex: 1;
    display: flex;
    justify-content: center;
}

.nav-menu {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
    gap: 0.5rem;
}

.nav-item {
    position: relative;
}

.nav-link {
    display: flex;
    align-items: center;
    padding: 0.7rem 1.2rem;
    color: rgba(255, 255, 255, 0.9);
    text-decoration: none;
    font-weight: 500;
    font-size: 0.95rem;
    border-radius: 50px;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.nav-link::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 2px;
    background: var(--gold-primary);
    transition: width 0.3s ease;
}

.nav-link:hover::before,
.nav-link.active::before {
    width: 80%;
}

.nav-link:hover,
.nav-link.active {
    color: var(--gold-primary);
    background: rgba(255, 215, 0, 0.1);
}

/* Right Side Actions */
.nav-actions {
    display: flex;
    align-items: center;
    gap: 1rem;
    flex-shrink: 0;
}

/* Gold Button */
.btn-gold-primary {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 20px;
    background: var(--gradient-gold);
    color: var(--green-deep);
    font-weight: 600;
    font-size: 0.9rem;
    border-radius: 50px;
    text-decoration: none;
    transition: var(--transition);
    box-shadow: var(--shadow-gold);
    border: none;
    cursor: pointer;
}

.btn-gold-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(255, 215, 0, 0.4);
    background: linear-gradient(135deg, var(--gold-secondary), var(--gold-primary));
}

.btn-gold-primary i {
    font-size: 1rem;
}

.btn-gold-primary.btn-large {
    padding: 16px 35px;
    font-size: 1rem;
}

/* Gold Outline Button */
.btn-gold-outline {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 20px;
    background: transparent;
    color: white;
    font-weight: 600;
    font-size: 0.9rem;
    border-radius: 50px;
    text-decoration: none;
    transition: var(--transition);
    border: 2px solid var(--gold-primary);
    cursor: pointer;
    backdrop-filter: blur(5px);
}

.btn-gold-outline:hover {
    background: var(--gold-primary);
    color: var(--green-deep);
    transform: translateY(-2px);
}

.btn-gold-outline.btn-large {
    padding: 16px 35px;
    font-size: 1rem;
}

/* Hamburger Menu */
.hamburger {
    display: none;
    flex-direction: column;
    width: 40px;
    height: 40px;
    background: rgba(255, 215, 0, 0.1);
    border: 1px solid rgba(255, 215, 0, 0.3);
    border-radius: 50%;
    cursor: pointer;
    position: relative;
    z-index: 100;
}

.hamburger span {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    width: 20px;
    height: 2px;
    background: var(--gold-primary);
    transition: var(--transition);
}

.hamburger span:nth-child(1) { top: 12px; }
.hamburger span:nth-child(2) { top: 18px; }
.hamburger span:nth-child(3) { top: 24px; }

.hamburger.active span:nth-child(1) {
    transform: translateX(-50%) rotate(45deg);
    top: 18px;
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
}

.hamburger.active span:nth-child(3) {
    transform: translateX(-50%) rotate(-45deg);
    top: 18px;
}

/* Mobile Menu */
.mobile-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 100%;
    max-width: 400px;
    height: 100vh;
    background: var(--green-deep);
    z-index: 2000;
    transition: right 0.3s ease;
    box-shadow: -5px 0 30px rgba(0, 0, 0, 0.3);
    overflow-y: auto;
    visibility: hidden;
    pointer-events: none;
    overscroll-behavior: contain;
}

.mobile-menu.active {
    right: 0;
    visibility: visible;
    pointer-events: auto;
}

.mobile-menu-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
    border-bottom: 1px solid rgba(255, 215, 0, 0.2);
}

.mobile-logo {
    display: flex;
    align-items: center;
    gap: 10px;
}

.mobile-logo img {
    width: 40px;
    height: 40px;
    background: var(--gold-primary);
    border-radius: 10px;
    padding: 5px;
}

.mobile-logo span {
    color: var(--gold-primary);
    font-weight: 700;
    font-size: 1rem;
}

.mobile-menu-close {
    width: 40px;
    height: 40px;
    background: rgba(255, 215, 0, 0.1);
    border: 1px solid rgba(255, 215, 0, 0.3);
    border-radius: 50%;
    color: var(--gold-primary);
    cursor: pointer;
    transition: var(--transition);
}

.mobile-menu-close:hover {
    background: var(--gold-primary);
    color: var(--green-deep);
}

.mobile-nav {
    list-style: none;
    padding: 20px;
    margin: 0;
}

.mobile-nav li {
    margin-bottom: 5px;
}

.mobile-nav a {
    display: block;
    padding: 15px 20px;
    color: white;
    text-decoration: none;
    font-size: 1.1rem;
    border-radius: 10px;
    transition: var(--transition);
}

.mobile-nav a:hover,
.mobile-nav a.active {
    background: rgba(255, 215, 0, 0.15);
    color: var(--gold-primary);
    padding-left: 30px;
}

.mobile-dashboard {
    margin-top: 20px;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 215, 0, 0.2);
}

.mobile-dashboard a {
    text-align: center;
    padding: 15px;
}

/* ========================================
   HERO SLIDER
   ======================================== */
.hero-slider {
    position: relative;
    height: 100vh;
    overflow: hidden;
    margin-top: 90px;
}

.heroSwiper {
    width: 100%;
    height: 100%;
}

.heroSwiper .swiper-slide {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.slide-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.slide-pattern {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: radial-gradient(circle at 30% 50%, rgba(255, 255, 255, 0.1) 0%, transparent 50%);
    animation: pulse 4s ease-in-out infinite;
}

.slide-pattern-2 {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: linear-gradient(45deg, rgba(255, 255, 255, 0.05) 25%, transparent 25%);
    background-size: 40px 40px;
    animation: slide 20s linear infinite;
}

.slide-pattern-3 {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: radial-gradient(circle at 70% 30%, rgba(255, 255, 255, 0.1) 0%, transparent 50%);
    animation: float 6s ease-in-out infinite;
}

@keyframes slide {
    0% { background-position: 0 0; }
    100% { background-position: 40px 40px; }
}

@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-20px); }
}

.slide-content {
    position: relative;
    z-index: 2;
    color: white;
    max-width: 800px;
    padding: 0 20px;
}

.slide-subtitle {
    display: inline-block;
    font-size: 1.2rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 3px;
    margin-bottom: 1rem;
    padding: 0.5rem 1.5rem;
    background: rgba(255, 215, 0, 0.15);
    border-radius: 50px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 215, 0, 0.3);
    color: var(--gold-primary);
}

.slide-title {
    font-size: clamp(2.5rem, 6vw, 5rem);
    line-height: 1.1;
    margin-bottom: 1.5rem;
    color: white;
}

.slide-title .highlight {
    background: var(--gradient-gold);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    display: inline-block;
}

.slide-description {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    opacity: 0.9;
    max-width: 600px;
}

.slide-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.slide-stats {
    position: absolute;
    bottom: 50px;
    right: 50px;
    z-index: 2;
    display: flex;
    gap: 2rem;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    padding: 1.5rem 2rem;
    border-radius: 15px;
    border: 1px solid rgba(255, 215, 0, 0.2);
}

.slide-stats .stat-item {
    text-align: center;
}

.slide-stats .stat-number {
    display: block;
    font-size: 2rem;
    font-weight: 700;
    color: var(--gold-primary);
    line-height: 1;
    margin-bottom: 5px;
}

.slide-stats .stat-label {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.8);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.slide-tech-icons {
    position: absolute;
    bottom: 50px;
    left: 50px;
    z-index: 2;
    display: flex;
    gap: 1.5rem;
    font-size: 2rem;
    color: rgba(255, 215, 0, 0.3);
    animation: float 3s ease-in-out infinite;
}

.slide-tech-icons i {
    transition: var(--transition);
}

.slide-tech-icons i:hover {
    color: var(--gold-primary);
    transform: scale(1.2);
}

/* Swiper Navigation */
.swiper-button-next,
.swiper-button-prev {
    color: var(--gold-primary) !important;
    background: rgba(255, 215, 0, 0.15);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    backdrop-filter: blur(10px);
    transition: var(--transition);
}

.swiper-button-next:hover,
.swiper-button-prev:hover {
    background: rgba(255, 215, 0, 0.3);
    transform: scale(1.1);
}

.swiper-button-next:after,
.swiper-button-prev:after {
    font-size: 1.2rem;
}

.swiper-pagination-bullet {
    width: 12px;
    height: 12px;
    background: white;
    opacity: 0.5;
}

.swiper-pagination-bullet-active {
    opacity: 1;
    background: var(--gold-primary);
    transform: scale(1.2);
}

/* Autoplay Progress */
.autoplay-progress {
    position: absolute;
    right: 16px;
    bottom: 16px;
    z-index: 10;
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    color: white;
}

.autoplay-progress svg {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    transform: rotate(-90deg);
}

.autoplay-progress svg circle {
    stroke: var(--gold-primary);
    stroke-width: 4;
    fill: none;
    stroke-dasharray: 125.66;
    stroke-dashoffset: calc(125.66 * (1 - var(--progress)));
    transition: stroke-dashoffset 0.1s;
}

/* ========================================
   FEATURES SECTION
   ======================================== */
.features-modern {
    padding: 100px 0;
    background: white;
}

.section-header {
    text-align: center;
    margin-bottom: 3rem;
}

.section-subtitle {
    display: inline-block;
    font-size: 1rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--gold-primary);
    background: rgba(255, 215, 0, 0.1);
    padding: 0.5rem 1.5rem;
    border-radius: 50px;
    margin-bottom: 1rem;
}

.section-title {
    font-size: clamp(2rem, 4vw, 2.5rem);
    color: var(--green-deep);
    margin-bottom: 1rem;
}

.section-description {
    font-size: 1.1rem;
    color: var(--gray-600);
    max-width: 700px;
    margin: 0 auto;
}

.features-grid-modern {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    margin-top: 50px;
}

.feature-card-modern {
    perspective: 1500px;
}

.feature-card-inner {
    background: white;
    padding: 40px 30px;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
    height: 100%;
    border: 1px solid rgba(255, 215, 0, 0.1);
}

.feature-card-inner::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: var(--gradient-gold);
    transform: translateX(-100%);
    transition: transform 0.5s ease;
}

.feature-card-modern:hover .feature-card-inner::before {
    transform: translateX(0);
}

.feature-card-modern:hover .feature-card-inner {
    transform: translateY(-10px);
    box-shadow: 0 30px 60px rgba(26, 77, 62, 0.15);
    border-color: var(--gold-primary);
}

.feature-icon-wrapper {
    width: 80px;
    height: 80px;
    background: var(--gradient-green);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 30px;
    position: relative;
}

.feature-icon-wrapper i {
    font-size: 2.5rem;
    color: var(--gold-primary);
    z-index: 2;
}

.feature-icon-glow {
    position: absolute;
    width: 100%;
    height: 100%;
    background: inherit;
    border-radius: inherit;
    filter: blur(10px);
    opacity: 0.5;
    animation: pulse 2s ease-in-out infinite;
}

.feature-card-inner h3 {
    font-size: 1.3rem;
    color: var(--green-deep);
    margin-bottom: 15px;
}

.feature-card-inner p {
    color: var(--gray-600);
    line-height: 1.6;
    margin-bottom: 20px;
}

.feature-link {
    color: var(--gold-primary);
    text-decoration: none;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 5px;
    transition: gap 0.3s ease;
}

.feature-link:hover {
    gap: 10px;
    color: var(--gold-secondary);
}

/* ========================================
   SERVICES CAROUSEL
   ======================================== */
.services-showcase {
    padding: 100px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.servicesSwiper {
    padding: 50px 20px !important;
}

.service-card-large {
    background: white;
    padding: 40px 30px;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    transition: var(--transition);
    border: 1px solid rgba(255, 215, 0, 0.1);
    height: 100%;
    display: flex;
    flex-direction: column;
}

.service-card-large:hover {
    transform: translateY(-10px);
    box-shadow: 0 30px 60px rgba(26, 77, 62, 0.15);
    border-color: var(--gold-primary);
}

.service-icon {
    width: 70px;
    height: 70px;
    background: var(--gradient-green);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 25px;
}

.service-icon i {
    font-size: 2rem;
    color: var(--gold-primary);
}

.service-card-large h3 {
    font-size: 1.3rem;
    color: var(--green-deep);
    margin-bottom: 15px;
}

.service-card-large p {
    color: var(--gray-600);
    line-height: 1.6;
    margin-bottom: 20px;
}

.service-features {
    list-style: none;
    padding: 0;
    margin-bottom: 25px;
    flex-grow: 1;
}

.service-features li {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 10px;
    color: var(--gray-600);
}

.service-features li i {
    color: var(--gold-primary);
}

/* ========================================
   PARTNERS MARQUEE
   ======================================== */
.partners-marquee {
    padding: 60px 0;
    background: white;
    overflow: hidden;
}

.marquee-wrapper {
    width: 100%;
    overflow: hidden;
    padding: 20px 0;
}

.marquee {
    display: flex;
    animation: marquee 30s linear infinite;
}

.marquee-group {
    display: flex;
    gap: 50px;
    padding: 0 25px;
}

.marquee-group img {
    height: 40px;
    width: auto;
    filter: grayscale(100%);
    opacity: 0.5;
    transition: var(--transition);
}

.marquee-group img:hover {
    filter: grayscale(0%);
    opacity: 1;
    transform: scale(1.1);
}

@keyframes marquee {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

/* ========================================
   STATS SECTION
   ======================================== */
.stats-section {
    padding: 80px 0;
    background: var(--gradient-green);
    color: white;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.stat-item-large {
    text-align: center;
    padding: 40px 30px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 215, 0, 0.2);
    transition: var(--transition);
}

.stat-item-large:hover {
    transform: translateY(-10px);
    background: rgba(255, 255, 255, 0.15);
    border-color: var(--gold-primary);
}

.stat-item-large i {
    font-size: 3rem;
    color: var(--gold-primary);
    margin-bottom: 20px;
}

.stat-item-large .counter {
    font-size: 3.5rem;
    font-weight: 700;
    display: block;
    margin-bottom: 10px;
    line-height: 1;
    color: var(--gold-primary);
}

.stat-item-large .stat-label {
    font-size: 1rem;
    opacity: 0.9;
}

/* ========================================
   VISION BANNER
   ======================================== */
.vision-banner {
    padding: 60px 0;
    background: linear-gradient(135deg, var(--green-deep), var(--green-medium));
    position: relative;
    overflow: hidden;
}

.vision-banner::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -20%;
    width: 140%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 215, 0, 0.1) 0%, transparent 70%);
    animation: rotate 30s linear infinite;
}

.banner-content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: white;
    max-width: 700px;
    margin: 0 auto;
}

.vision-icon-2030 {
    width: 100px;
    height: 100px;
    background: rgba(255, 215, 0, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 30px;
    font-size: 3rem;
    color: var(--gold-primary);
    animation: pulse 2s ease-in-out infinite;
}

.banner-content h2 {
    color: white;
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.banner-content p {
    font-size: 1.2rem;
    margin-bottom: 30px;
    opacity: 0.9;
}

/* ========================================
   TESTIMONIALS
   ======================================== */
.testimonials {
    padding: 100px 0;
    background: white;
}

.testimonialSwiper {
    padding: 50px 20px !important;
}

.testimonial-card {
    background: white;
    padding: 40px 30px;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    transition: var(--transition);
    border: 1px solid rgba(255, 215, 0, 0.1);
    height: 100%;
}

.testimonial-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 30px 60px rgba(26, 77, 62, 0.15);
    border-color: var(--gold-primary);
}

.testimonial-rating {
    margin-bottom: 20px;
    color: var(--gold-primary);
}

.testimonial-text {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--gray-600);
    margin-bottom: 30px;
    font-style: italic;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 15px;
}

.testimonial-author img {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
}

.testimonial-author h4 {
    margin: 0;
    color: var(--green-deep);
}

.testimonial-author span {
    font-size: 0.9rem;
    color: var(--gray-500);
}

/* ========================================
   PREMIUM CTA SECTION
   ======================================== */
.vision-cta-premium {
    position: relative;
    padding: 100px 0;
    background: linear-gradient(135deg, #1A4D3E 0%, #2C5E4A 50%, #3E6F56 100%);
    overflow: hidden;
    isolation: isolate;
}

/* Animated Background Pattern */
.cta-bg-pattern {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.gradient-sphere {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.15;
    animation: floatSphere 15s ease-in-out infinite;
}

.sphere-1 {
    width: 400px;
    height: 400px;
    background: var(--gold-primary);
    top: -100px;
    left: -100px;
    animation-delay: 0s;
}

.sphere-2 {
    width: 500px;
    height: 500px;
    background: var(--gold-secondary);
    bottom: -150px;
    right: -100px;
    animation-delay: -3s;
}

.sphere-3 {
    width: 300px;
    height: 300px;
    background: var(--green-light);
    top: 50%;
    left: 30%;
    animation-delay: -6s;
}

@keyframes floatSphere {
    0%, 100% {
        transform: translate(0, 0) scale(1);
    }
    33% {
        transform: translate(2%, 2%) scale(1.1);
    }
    66% {
        transform: translate(-2%, -2%) scale(0.9);
    }
}

/* Floating Tech Icons */
.floating-tech-icons {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 2;
    pointer-events: none;
}

.floating-tech-icons i {
    position: absolute;
    color: rgba(255, 215, 0, 0.1);
    font-size: 2rem;
    animation: floatIcon 15s linear infinite;
}

.floating-tech-icons i:nth-child(1) {
    top: 15%;
    left: 10%;
    animation-delay: 0s;
    font-size: 2.5rem;
}

.floating-tech-icons i:nth-child(2) {
    top: 70%;
    right: 15%;
    animation-delay: -2s;
    font-size: 3rem;
}

.floating-tech-icons i:nth-child(3) {
    bottom: 20%;
    left: 20%;
    animation-delay: -4s;
    font-size: 2rem;
}

.floating-tech-icons i:nth-child(4) {
    top: 40%;
    right: 25%;
    animation-delay: -6s;
    font-size: 2.8rem;
}

.floating-tech-icons i:nth-child(5) {
    top: 80%;
    left: 30%;
    animation-delay: -8s;
    font-size: 2.2rem;
}

.floating-tech-icons i:nth-child(6) {
    top: 20%;
    right: 30%;
    animation-delay: -10s;
    font-size: 2.6rem;
}

@keyframes floatIcon {
    0% {
        transform: translateY(0) rotate(0deg);
        opacity: 0.1;
    }
    50% {
        transform: translateY(-30px) rotate(10deg);
        opacity: 0.2;
    }
    100% {
        transform: translateY(0) rotate(0deg);
        opacity: 0.1;
    }
}

/* CTA Card */
.vision-cta-card {
    position: relative;
    max-width: 900px;
    margin: 0 auto;
    padding: 60px 50px;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-radius: 40px;
    border: 1px solid rgba(255, 215, 0, 0.2);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.3);
    z-index: 10;
    overflow: hidden;
    transition: var(--transition);
}

.vision-cta-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 40px 80px rgba(0, 0, 0, 0.4);
    border-color: rgba(255, 215, 0, 0.3);
}

/* Glow Effect */
.cta-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(255, 215, 0, 0.2) 0%, transparent 70%);
    border-radius: 50%;
    filter: blur(40px);
    animation: pulseGlow 3s ease-in-out infinite;
    z-index: -1;
}

@keyframes pulseGlow {
    0%, 100% {
        opacity: 0.3;
        transform: translate(-50%, -50%) scale(1);
    }
    50% {
        opacity: 0.6;
        transform: translate(-50%, -50%) scale(1.2);
    }
}

/* Content Wrapper */
.cta-content-wrapper {
    position: relative;
    z-index: 2;
    text-align: center;
    color: white;
}

/* CTA Badge */
.cta-badge {
    display: inline-block;
    padding: 8px 20px;
    background: var(--gradient-gold);
    color: var(--green-deep);
    font-weight: 600;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-radius: 50px;
    margin-bottom: 25px;
    box-shadow: 0 5px 15px rgba(255, 215, 0, 0.3);
    animation: badgePulse 2s ease-in-out infinite;
}

@keyframes badgePulse {
    0%, 100% {
        transform: scale(1);
        box-shadow: 0 5px 15px rgba(255, 215, 0, 0.3);
    }
    50% {
        transform: scale(1.05);
        box-shadow: 0 8px 25px rgba(255, 215, 0, 0.5);
    }
}

/* Typography */
.cta-content-wrapper h2 {
    font-size: clamp(2.2rem, 5vw, 3.2rem);
    color: white;
    margin-bottom: 15px;
    font-weight: 700;
    letter-spacing: -0.5px;
    text-shadow: 0 2px 20px rgba(0, 0, 0, 0.3);
}

.cta-content-wrapper p {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 30px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
}

/* Features */
.cta-features {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
    margin-bottom: 35px;
}

.cta-features .feature {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 8px 18px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50px;
    border: 1px solid rgba(255, 215, 0, 0.3);
    transition: var(--transition);
}

.cta-features .feature:hover {
    background: rgba(255, 215, 0, 0.15);
    transform: translateY(-3px);
    border-color: var(--gold-primary);
}

.cta-features .feature i {
    color: var(--gold-primary);
    font-size: 1rem;
}

.cta-features .feature span {
    color: white;
    font-size: 0.95rem;
    font-weight: 500;
}

/* Buttons */
.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
    margin-bottom: 40px;
}

/* Primary Button - Gold Gradient */
.btn-cta-primary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 16px 35px;
    background: var(--gradient-gold);
    color: var(--green-deep);
    font-weight: 600;
    font-size: 1rem;
    text-decoration: none;
    border-radius: 50px;
    transition: var(--transition);
    border: none;
    cursor: pointer;
    box-shadow: 0 10px 20px rgba(255, 215, 0, 0.3);
    position: relative;
    overflow: hidden;
}

.btn-cta-primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s ease;
}

.btn-cta-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 30px rgba(255, 215, 0, 0.4);
    background: linear-gradient(135deg, var(--gold-secondary), var(--gold-primary));
}

.btn-cta-primary:hover::before {
    left: 100%;
}

.btn-cta-primary i {
    font-size: 1.1rem;
    transition: transform 0.3s ease;
}

.btn-cta-primary:hover i {
    transform: translateX(5px);
}

/* Secondary Button - Transparent with Border */
.btn-cta-secondary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 16px 35px;
    background: transparent;
    color: white;
    font-weight: 600;
    font-size: 1rem;
    text-decoration: none;
    border-radius: 50px;
    transition: var(--transition);
    border: 2px solid rgba(255, 215, 0, 0.5);
    cursor: pointer;
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(5px);
}

.btn-cta-secondary::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 0;
    height: 100%;
    background: var(--gradient-gold);
    transition: width 0.3s ease;
    z-index: -1;
}

.btn-cta-secondary:hover {
    border-color: transparent;
    color: var(--green-deep);
}

.btn-cta-secondary:hover::before {
    width: 100%;
}

.btn-cta-secondary i {
    transition: transform 0.3s ease;
}

.btn-cta-secondary:hover i {
    transform: translateX(5px);
    color: var(--green-deep);
}

/* Mini Stats */
.cta-stats-mini {
    display: flex;
    justify-content: center;
    gap: 40px;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.cta-stats-mini .stat {
    text-align: center;
}

.cta-stats-mini .stat-number {
    display: block;
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--gold-primary);
    line-height: 1.2;
    margin-bottom: 5px;
}

.cta-stats-mini .stat-label {
    display: block;
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.7);
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* ========================================
   PREMIUM FOOTER
   ======================================== */
.footer-premium {
    background: var(--green-deep);
    color: white;
    padding: 80px 0 30px;
    border-top: 3px solid var(--gold-primary);
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 40px;
    margin-bottom: 60px;
}

.footer-col .footer-logo {
    width: 60px;
    height: 60px;
    background: var(--gold-primary);
    border-radius: 15px;
    padding: 10px;
    margin-bottom: 20px;
}

.footer-description {
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.8;
    margin-bottom: 25px;
}

.footer-social {
    display: flex;
    gap: 15px;
}

.footer-social a {
    width: 40px;
    height: 40px;
    background: rgba(255, 215, 0, 0.15);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gold-primary);
    transition: var(--transition);
}

.footer-social a:hover {
    background: var(--gold-primary);
    color: var(--green-deep);
    transform: translateY(-3px);
}

.footer-col h4 {
    color: var(--gold-primary);
    margin-bottom: 25px;
    font-size: 1.2rem;
}

.footer-links {
    list-style: none;
    padding: 0;
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: var(--transition);
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.footer-links a i {
    color: var(--gold-primary);
    font-size: 0.8rem;
}

.footer-links a:hover {
    color: var(--gold-primary);
    transform: translateX(5px);
}

.footer-contact-info {
    list-style: none;
    padding: 0;
}

.footer-contact-info li {
    display: flex;
    gap: 15px;
    margin-bottom: 20px;
}

.footer-contact-info li i {
    width: 40px;
    height: 40px;
    background: rgba(255, 215, 0, 0.15);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gold-primary);
}

.footer-contact-info li div {
    flex: 1;
}

.footer-contact-info li span {
    display: block;
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.5);
    margin-bottom: 3px;
}

.footer-contact-info li a,
.footer-contact-info li p {
    color: white;
    text-decoration: none;
    margin: 0;
    font-weight: 500;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 215, 0, 0.2);
    padding-top: 30px;
}

.footer-bottom-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.footer-bottom p {
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.9rem;
}

.footer-bottom-links {
    display: flex;
    gap: 20px;
}

.footer-bottom-links a {
    color: rgba(255, 255, 255, 0.5);
    text-decoration: none;
    font-size: 0.9rem;
    transition: var(--transition);
}

.footer-bottom-links a:hover {
    color: var(--gold-primary);
}

/* ========================================
   BACK TO TOP BUTTON
   ======================================== */
.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: var(--gradient-gold);
    color: var(--green-deep);
    border: none;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    box-shadow: 0 5px 15px rgba(255, 215, 0, 0.3);
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
    z-index: 99;
}

.back-to-top.show {
    opacity: 1;
    visibility: visible;
}

.back-to-top:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(255, 215, 0, 0.4);
}

/* ========================================
   RESPONSIVE DESIGN
   ======================================== */
@media (max-width: 1200px) {
    .features-grid-modern {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 992px) {
    .nav-menu-wrapper {
        position: fixed;
        top: 90px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 90px);
        background: var(--green-deep);
        flex-direction: column;
        justify-content: flex-start;
        padding: 2rem;
        transition: left 0.3s ease;
        overflow-y: auto;
        z-index: 999;
    }
    
    .nav-menu-wrapper.active {
        left: 0;
    }
    
    .nav-menu {
        flex-direction: column;
        align-items: center;
        gap: 1rem;
    }
    
    .nav-link {
        font-size: 1.1rem;
        padding: 1rem 2rem;
    }
    
    .hamburger {
        display: flex;
    }
    
    .btn-gold-primary span {
        display: none;
    }
    
    .btn-gold-primary {
        padding: 10px;
    }
    
    .btn-gold-primary i {
        margin: 0;
    }
    
    .slide-stats {
        bottom: 20px;
        right: 20px;
        flex-direction: column;
        gap: 1rem;
    }
    
    .slide-tech-icons {
        display: none;
    }
    
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .hero-slider {
        height: 80vh;
    }
    
    .slide-buttons {
        flex-direction: column;
    }
    
    .slide-stats {
        display: none;
    }
    
    .features-grid-modern {
        grid-template-columns: 1fr;
    }
    
    .stats-grid {
        grid-template-columns: 1fr;
    }
    
    .cta-features {
        flex-direction: column;
        align-items: center;
        gap: 15px;
    }
    
    .cta-features .feature {
        width: 100%;
        max-width: 300px;
        justify-content: center;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .btn-cta-primary,
    .btn-cta-secondary {
        width: 100%;
        max-width: 300px;
    }
    
    .cta-stats-mini {
        flex-direction: column;
        gap: 20px;
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-bottom-content {
        flex-direction: column;
        text-align: center;
    }
    
    .logo-main {
        font-size: 1.1rem;
    }
    
    .logo-sub {
        font-size: 0.65rem;
    }
    
    .logo-icon {
        width: 40px;
        height: 40px;
    }
}

@media (max-width: 480px) {
    .hero-slider {
        height: 70vh;
    }
    
    .slide-title {
        font-size: 2rem;
    }
    
    .slide-description {
        font-size: 1rem;
    }
    
    .vision-cta-card {
        padding: 30px 20px;
    }
    
    .cta-content-wrapper h2 {
        font-size: 1.8rem;
    }
    
    .cta-content-wrapper p {
        font-size: 1rem;
    }
    
    .logo-text-wrapper {
        display: none;
    }
    
    .mobile-menu {
        max-width: 100%;
    }
}

/* ========================================
   MODERN HOMEPAGE SECTIONS
   ======================================== */

/* Hero Section */
.hero-section {
    position: relative;
    padding: 80px 0 60px;
    background: var(--gradient-green);
    color: white;
    overflow: hidden;
    margin-top: 90px;
    min-height: 100vh;
    display: flex;
    align-items: center;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.animated-shape {
    position: absolute;
    opacity: 0.15;
    animation: float 20s ease-in-out infinite;
    filter: blur(2px);
}

.shape-1 {
    width: 400px;
    height: 400px;
    background: radial-gradient(circle at 30% 30%, rgba(255, 215, 0, 0.6), rgba(255, 215, 0, 0.2));
    border-radius: 50%;
    top: -100px;
    right: -100px;
    animation-delay: 0s;
    box-shadow: 0 0 60px rgba(255, 215, 0, 0.3);
}

.shape-2 {
    width: 300px;
    height: 300px;
    background: radial-gradient(circle at 40% 40%, rgba(255, 255, 255, 0.4), rgba(255, 255, 255, 0.1));
    border-radius: 30%;
    bottom: 50px;
    left: 10%;
    animation-delay: 2s;
    box-shadow: 0 0 40px rgba(255, 255, 255, 0.2);
}

.shape-3 {
    width: 250px;
    height: 250px;
    background: radial-gradient(circle at 50% 50%, rgba(255, 215, 0, 0.7), rgba(255, 215, 0, 0.15));
    border-radius: 40%;
    top: 30%;
    right: 20%;
    animation-delay: 4s;
    box-shadow: 0 0 50px rgba(255, 215, 0, 0.25);
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 1000px;
}

.hero-text {
    margin-bottom: 35px;
}

.hero-subtitle {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-size: 1rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: #ffffff;
    margin-bottom: 15px;
    padding: 10px 20px;
    background: rgba(255, 215, 0, 0.15);
    border-radius: 50px;
    backdrop-filter: blur(10px);
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.3);
}

.badge-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 25px;
    height: 25px;
    background: var(--gold-primary);
    color: var(--green-deep);
    border-radius: 50%;
    font-size: 0.7rem;
}

.hero-title {
    font-size: clamp(2.5rem, 6vw, 4.5rem);
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 20px;
    color: #ffffff;
    text-shadow: 3px 3px 10px rgba(0, 0, 0, 0.5);
}

.gradient-text {
    background: var(--gradient-gold);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    display: inline;
}

.hero-description {
    font-size: 1.2rem;
    line-height: 1.8;
    color: #ffffff;
    margin-bottom: 40px;
    max-width: 600px;
    text-shadow: 2px 2px 5px rgba(0, 0, 0, 0.4);
}

.hero-actions {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
    margin-bottom: 50px;
}

.btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 28px;
    border-radius: 10px;
    font-weight: 600;
    text-decoration: none;
    transition: var(--transition);
    font-size: 1rem;
    border: none;
    cursor: pointer;
}

.btn-primary {
    background: var(--gold-primary);
    color: var(--green-deep);
    box-shadow: 0 8px 20px rgba(255, 215, 0, 0.3);
    border: none;
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 30px rgba(255, 215, 0, 0.5);
    background: var(--gold-secondary);
}

.btn-outline {
    background: transparent;
    color: white;
    border: 2px solid var(--gold-primary);
}

.btn-outline:hover {
    background: rgba(255, 215, 0, 0.15);
    color: white;
    border-color: var(--gold-primary);
    transform: translateY(-3px);
}

.btn-lg {
    padding: 16px 35px;
    font-size: 1.05rem;
}

.btn-large {
    padding: 18px 40px;
    font-size: 1.1rem;
}

.hero-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    padding: 35px 40px;
    background: rgba(255, 255, 255, 0.08);
    border-radius: 20px;
    backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 215, 0, 0.25);
}

.hero-stat {
    text-align: center;
}

.stat-number {
    display: block;
    font-size: 2.5rem;
    font-weight: 800;
    color: #ffffff;
    line-height: 1;
    margin-bottom: 10px;
    text-shadow: 2px 2px 6px rgba(0, 0, 0, 0.5);
}

.stat-label {
    display: block;
    font-size: 0.95rem;
    color: #ffffff;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 500;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.4);
}

.scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.85);
    animation: bounce 2s ease-in-out infinite;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
}


.scroll-arrow {
    width: 20px;
    height: 20px;
    border: 2px solid rgba(255, 255, 255, 0.7);
    border-top: none;
    border-right: none;
    transform: rotate(-45deg);
    animation: slide-down 1s ease-in-out infinite;
}

@keyframes bounce {
    0%, 100% { opacity: 0.5; }
    50% { opacity: 1; }
}

@keyframes slide-down {
    0% { transform: rotate(-45deg) translateY(-10px); }
    50% { transform: rotate(-45deg) translateY(0); }
    100% { transform: rotate(-45deg) translateY(-10px); }
}

/* Services Preview Section */
.services-preview {
    padding: 100px 0;
    background: white;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
    margin: 60px 0;
}

.service-card {
    background: white;
    padding: 35px 30px;
    border-radius: 15px;
    border: 2px solid #f0f0f0;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    height: 100%;
    min-height: 320px;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: var(--gradient-gold);
    transform: translateX(-100%);
    transition: transform 0.5s ease;
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12);
    border-color: var(--gold-primary);
}

.service-card:hover::before {
    transform: translateX(0);
}

.service-icon-wrapper {
    width: 60px;
    height: 60px;
    background: var(--gradient-green);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    flex-shrink: 0;
}

.service-icon {
    font-size: 1.8rem;
    color: var(--gold-primary);
}

.service-title {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--green-deep);
    margin-bottom: 12px;
    line-height: 1.3;
}

.service-excerpt {
    color: var(--gray-600);
    line-height: 1.6;
    margin-bottom: 20px;
    font-size: 0.95rem;
    flex-grow: 1;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.service-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--gold-primary);
    text-decoration: none;
    font-weight: 600;
    transition: gap 0.3s ease;
    margin-top: auto;
}

.service-link:hover {
    gap: 15px;
}

.view-all-btn {
    margin-top: 50px;
}

.empty-state {
    text-align: center;
    padding: 60px 30px;
    color: var(--gray-500);
}

.empty-state i {
    font-size: 3rem;
    color: var(--gray-300);
    margin-bottom: 20px;
    display: block;
}

/* Why Choose Us Section */
.why-choose-us {
    padding: 100px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 60px;
}

.feature-card {
    background: white;
    padding: 40px 30px;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    transition: var(--transition);
    text-align: center;
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
    border-top: 4px solid var(--gold-primary);
}

.feature-icon {
    width: 70px;
    height: 70px;
    background: var(--gradient-green);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    font-size: 1.8rem;
    color: var(--gold-primary);
}

.feature-card h3 {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--green-deep);
    margin-bottom: 15px;
}

.feature-card p {
    color: var(--gray-600);
    line-height: 1.6;
    font-size: 0.95rem;
}

/* Testimonials Section */
.testimonials-section {
    padding: 100px 0;
    background: white;
}

.testimonials-carousel {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 60px;
    max-width: 1200px;
}

.testimonial-card {
    background: white;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    border-left: 4px solid var(--gold-primary);
    transition: var(--transition);
}

.testimonial-card:hover {
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12);
    transform: translateY(-5px);
}

.testimonial-stars {
    color: var(--gold-primary);
    margin-bottom: 15px;
    font-size: 1.1rem;
}

.testimonial-text {
    color: var(--gray-600);
    font-size: 0.95rem;
    line-height: 1.8;
    margin-bottom: 20px;
    font-style: italic;
}

.testimonial-author {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.testimonial-author strong {
    color: var(--green-deep);
    font-size: 1rem;
}

.testimonial-role {
    color: var(--gray-500);
    font-size: 0.85rem;
}

/* CTA Section */
.cta-section {
    padding: 100px 0;
    background: linear-gradient(135deg, var(--green-deep) 0%, var(--green-medium) 50%, var(--green-vibrant) 100%);
    color: white;
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(255, 215, 0, 0.1) 0%, transparent 70%);
    border-radius: 50%;
}

.cta-content {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 50px;
}

.cta-text {
    flex: 1;
}

.cta-text h2 {
    font-size: clamp(2rem, 4vw, 2.5rem);
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 20px;
    color: white;
}

.cta-text p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.9);
}

.btn-light {
    background: white;
    color: var(--green-deep);
    box-shadow: 0 8px 20px rgba(255, 255, 255, 0.3);
}

.btn-light:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 30px rgba(255, 255, 255, 0.5);
    background: var(--gold-primary);
}

.text-center {
    text-align: center;
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero-section {
        padding: 80px 0 60px;
        min-height: auto;
    }

    .hero-title {
        font-size: 2.5rem;
    }

    .hero-description {
        font-size: 1rem;
    }

    .hero-actions {
        flex-direction: column;
    }

    .hero-actions .btn {
        width: 100%;
        justify-content: center;
    }

    .hero-stats {
        grid-template-columns: 1fr;
        gap: 15px;
    }

    .services-grid {
        grid-template-columns: 1fr;
    }

    .features-grid {
        grid-template-columns: 1fr;
    }

    .testimonials-carousel {
        grid-template-columns: 1fr;
    }

    .cta-content {
        flex-direction: column;
        gap: 30px;
    }

    .cta-section::before {
        width: 300px;
        height: 300px;
    }
}

@media (max-width: 480px) {
    .hero-section {
        padding: 60px 0 40px;
    }

    .hero-title {
        font-size: 1.8rem;
    }

    .hero-subtitle {
        font-size: 0.85rem;
    }

    .hero-description {
        font-size: 0.95rem;
    }

    .stat-number {
        font-size: 1.8rem;
    }

    .stat-label {
        font-size: 0.8rem;
    }

    .hero-stats {
        padding: 20px;
    }

    .service-card,
    .feature-card {
        padding: 25px 20px;
    }

    .service-title,
    .feature-card h3 {
        font-size: 1.1rem;
    }

    .cta-text h2 {
        font-size: 1.8rem;
    }

    .cta-text p {
        font-size: 1rem;
    }
}

/* Animation Keyframes */
@keyframes rotate {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}