/* ===================================
   ROOT VARIABLES
   =================================== */
:root {
    --primary-navy: #0F2438;
    --primary-teal: #1A5F7A;
    --accent-emerald: #159895;
    --accent-gold: #D4AF37;
    --accent-mint: #57C5B6;
    --light-cream: #F8F6F0;
    --soft-beige: #EDE8DC;
    --warm-gold: #B8860B;
    --white: #FFFFFF;
    --text-dark: #1A1A1A;
    --text-light: #666666;
    --shadow-sm: 0 2px 10px rgba(0, 0, 0, 0.08);
    --shadow-md: 0 4px 20px rgba(0, 0, 0, 0.12);
    --shadow-lg: 0 10px 40px rgba(0, 0, 0, 0.15);
    --transition-fast: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-smooth: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ===================================stat-countstat-count
   GLOBAL STYLES
   =================================== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', sans-serif;
    background: var(--white);
    color: var(--text-dark);
    overflow-x: hidden;
    line-height: 1.6;
}

body.loading {
    overflow: hidden;
}

.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
}

html {
    scroll-behavior: auto; /* Removed smooth scroll */
}

/* ===================================
   UTILITY CLASSES
   =================================== */
.ripple {
    position: absolute;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    transform: scale(0);
    animation: rippleEffect 0.6s ease-out;
    pointer-events: none;
}

@keyframes rippleEffect {
    to {
        transform: scale(4);
        opacity: 0;
    }
}

/* ===================================
   ACCESSIBILITY
   =================================== */
.nav-link:focus,
.sidebar-link:focus,
.social-icon:focus,
.hamburger:focus,
.sidebar-close:focus,
.btn:focus,
.about-btn:focus,
.mentorship-btn:focus,
.cta-button:focus {
    outline: 2px solid var(--accent-gold);
    outline-offset: 4px;
}

/* ===================================
   REDUCED MOTION
   =================================== */
@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}

/* ===================================
   HIGH CONTRAST MODE
   =================================== */
@media (prefers-contrast: high) {
    .header {
        background: var(--primary-navy);
        border-bottom: 2px solid var(--white);
    }

    .nav-link,
    .sidebar-link {
        border: 1px solid currentColor;
    }
}

/* ===================================
   PRINT STYLES
   =================================== */
@media print {
    .header,
    .sidebar,
    .overlay,
    .hamburger,
    .preloader,
    .back-to-top,
    .banner-particles,
    .scroll-indicator {
        display: none;
    }
}

/* ===================================
   HEADER SECTION
   =================================== */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: linear-gradient(135deg, var(--primary-navy) 0%, var(--primary-teal) 50%, var(--accent-emerald) 100%);
    backdrop-filter: blur(10px);
    box-shadow: var(--shadow-lg);
    z-index: 1000;
    transition: var(--transition-smooth);
    animation: slideDown 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(21, 152, 149, 0.1) 0%, rgba(212, 175, 55, 0.05) 100%);
    pointer-events: none;
}

.header-glow {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 50% 0%, rgba(87, 197, 182, 0.2), transparent 70%);
    pointer-events: none;
    animation: glowPulse 4s ease-in-out infinite;
}

.header.scrolled {
    padding: 8px 0;
    background: linear-gradient(135deg, rgba(15, 36, 56, 0.95) 0%, rgba(26, 95, 122, 0.95) 50%, rgba(21, 152, 149, 0.95) 100%);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
}

@keyframes slideDown {
    from {
        transform: translateY(-100%);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

@keyframes glowPulse {
    0%, 100% {
        opacity: 0.3;
    }
    50% {
        opacity: 0.6;
    }
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 18px 0;
    position: relative;
    z-index: 2;
}

/* ===================================
   LOGO STYLES
   =================================== */
.logo {
    animation: fadeInScale 0.8s cubic-bezier(0.4, 0, 0.2, 1) 0.2s both;
}

@keyframes fadeInScale {
    from {
        opacity: 0;
        transform: scale(0.85);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

.logo-link {
    display: flex;
    align-items: center;
    gap: 15px;
    text-decoration: none;
    transition: var(--transition-fast);
}

.logo-wrapper {
    position: relative;
    width: 65px;
    height: 65px;
}

.logo-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    position: relative;
    z-index: 2;
    transition: var(--transition-smooth);
    filter: drop-shadow(0 4px 12px rgba(87, 197, 182, 0.4));
}

.logo-ring {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 75px;
    height: 75px;
    border: 2px solid var(--accent-mint);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    opacity: 0;
    transition: var(--transition-smooth);
    animation: ringRotate 8s linear infinite;
}

@keyframes ringRotate {
    from {
        transform: translate(-50%, -50%) rotate(0deg);
    }
    to {
        transform: translate(-50%, -50%) rotate(360deg);
    }
}

.logo-link:hover .logo-ring {
    opacity: 0.6;
    width: 85px;
    height: 85px;
}

.logo-link:hover .logo-wrapper img {
    transform: scale(1.08);
}

.logo-text {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.logo-title {
    font-family: 'Playfair Display', serif;
    font-size: 22px;
    font-weight: 700;
    color: var(--white);
    letter-spacing: 1.5px;
    line-height: 1;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.3);
    transition: var(--transition-fast);
}

.logo-subtitle {
    font-family: 'Playfair Display', serif;
    font-size: 14px;
    font-weight: 600;
    color: var(--accent-mint);
    letter-spacing: 3px;
    line-height: 1;
    text-shadow: 1px 1px 6px rgba(0, 0, 0, 0.2);
    transition: var(--transition-fast);
}

.logo-link:hover .logo-title {
    color: var(--accent-gold);
    text-shadow: 2px 2px 12px rgba(212, 175, 55, 0.5);
}

.logo-link:hover .logo-subtitle {
    color: var(--accent-gold);
}

/* ===================================
   DESKTOP NAVIGATION
   =================================== */
.desktop-nav {
    display: none;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 8px;
    align-items: center;
}

.nav-link {
    color: var(--white);
    text-decoration: none;
    font-size: 15px;
    font-weight: 500;
    padding: 12px 22px;
    border-radius: 12px;
    position: relative;
    display: inline-block;
    overflow: hidden;
    transition: var(--transition-fast);
    letter-spacing: 0.5px;
}

.link-text {
    position: relative;
    z-index: 2;
}

.link-hover-effect {
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--accent-gold), var(--accent-mint));
    transition: var(--transition-fast);
    transform: translateX(-50%);
}

.nav-link:hover .link-hover-effect,
.nav-link.active .link-hover-effect {
    width: 70%;
}

.nav-link::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(87, 197, 182, 0.15), rgba(212, 175, 55, 0.15));
    transform: scaleX(0);
    transform-origin: left;
    transition: var(--transition-fast);
    z-index: 1;
}

.nav-link:hover::before,
.nav-link.active::before {
    transform: scaleX(1);
}

.nav-link:hover,
.nav-link.active {
    color: var(--accent-gold);
}

.cta-btn {
    background: linear-gradient(135deg, var(--accent-gold), var(--warm-gold));
    color: var(--white);
    font-weight: 600;
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.4);
}

.cta-btn:hover {
    background: linear-gradient(135deg, var(--warm-gold), var(--accent-gold));
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(212, 175, 55, 0.5);
    color: var(--white);
}

/* ===================================
   DROPDOWN MENU
   =================================== */
.nav-item-dropdown {
    position: relative;
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background: var(--white);
    border-radius: 12px;
    box-shadow: var(--shadow-lg);
    list-style: none;
    padding: 10px 0;
    min-width: 220px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: var(--transition-fast);
    z-index: 1000;
    margin-top: 10px;
}

.nav-item-dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-menu li {
    padding: 0;
}

.dropdown-menu a {
    display: block;
    padding: 12px 20px;
    color: var(--text-dark);
    text-decoration: none;
    font-size: 14px;
    transition: var(--transition-fast);
}

.dropdown-menu a:hover {
    background: var(--light-cream);
    color: var(--accent-emerald);
    padding-left: 25px;
}

/* ===================================
   HAMBURGER MENU
   =================================== */
.hamburger {
    display: flex;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 10px;
    z-index: 1001;
    position: relative;
}

.hamburger-box {
    width: 32px;
    height: 24px;
    display: inline-block;
    position: relative;
}

.hamburger-inner,
.hamburger-inner::before,
.hamburger-inner::after {
    width: 32px;
    height: 3px;
    background: var(--white);
    border-radius: 4px;
    position: absolute;
    transition: var(--transition-fast);
}

.hamburger-inner {
    top: 50%;
    transform: translateY(-50%);
    box-shadow: 0 2px 8px rgba(87, 197, 182, 0.3);
}

.hamburger-inner::before,
.hamburger-inner::after {
    content: '';
    display: block;
}

.hamburger-inner::before {
    top: -10px;
}

.hamburger-inner::after {
    bottom: -10px;
}

.hamburger:hover .hamburger-inner,
.hamburger:hover .hamburger-inner::before,
.hamburger:hover .hamburger-inner::after {
    background: var(--accent-gold);
    box-shadow: 0 2px 12px rgba(212, 175, 55, 0.5);
}

.hamburger.active .hamburger-inner {
    transform: rotate(45deg);
}

.hamburger.active .hamburger-inner::before {
    top: 0;
    transform: rotate(90deg);
}

.hamburger.active .hamburger-inner::after {
    opacity: 0;
}

/* ===================================
   RESPONSIVE - TABLET
   =================================== */
@media (min-width: 768px) {
    .logo-wrapper {
        width: 70px;
        height: 70px;
    }

    .logo-title {
        font-size: 24px;
    }

    .logo-subtitle {
        font-size: 15px;
    }
}

/* ===================================
   RESPONSIVE - DESKTOP
   =================================== */
@media (min-width: 1024px) {
    .desktop-nav {
        display: block;
        animation: fadeIn 0.8s ease-out 0.4s both;
    }

    @keyframes fadeIn {
        from {
            opacity: 0;
        }
        to {
            opacity: 1;
        }
    }

    .hamburger {
        display: none;
    }

    .header-content {
        padding: 22px 0;
    }

    .logo-wrapper {
        width: 75px;
        height: 75px;
    }

    .logo-title {
        font-size: 26px;
    }

    .logo-subtitle {
        font-size: 16px;
    }
}

/* ===================================
   RESPONSIVE - LARGE DESKTOP
   =================================== */
@media (min-width: 1440px) {
    .nav-menu {
        gap: 12px;
    }

    .nav-link {
        padding: 13px 26px;
        font-size: 16px;
    }
}

/* ===================================
   RESPONSIVE - MOBILE SMALL
   =================================== */
@media (max-width: 360px) {
    .logo-title {
        font-size: 18px;
    }

    .logo-subtitle {
        font-size: 12px;
        letter-spacing: 2px;
    }

    .logo-wrapper {
        width: 55px;
        height: 55px;
    }
}

/* ===================================
   SIDEBAR STYLES
   =================================== */
.sidebar {
    position: fixed;
    top: 0;
    right: -100%;
    width: 100%;
    max-width: 420px;
    height: 100vh;
    background: linear-gradient(180deg, var(--primary-navy) 0%, var(--primary-teal) 50%, var(--accent-emerald) 100%);
    z-index: 1002;
    transition: var(--transition-smooth);
    overflow-y: auto;
    box-shadow: -8px 0 40px rgba(0, 0, 0, 0.3);
}

.sidebar::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 80% 20%, rgba(87, 197, 182, 0.15), transparent 50%),
                radial-gradient(circle at 20% 80%, rgba(212, 175, 55, 0.1), transparent 50%);
    pointer-events: none;
}

.sidebar.active {
    right: 0;
}

/* Sidebar Scrollbar */
.sidebar::-webkit-scrollbar {
    width: 8px;
}

.sidebar::-webkit-scrollbar-track {
    background: rgba(255, 255, 255, 0.05);
}

.sidebar::-webkit-scrollbar-thumb {
    background: linear-gradient(180deg, var(--accent-gold), var(--accent-mint));
    border-radius: 10px;
}

.sidebar::-webkit-scrollbar-thumb:hover {
    background: linear-gradient(180deg, var(--warm-gold), var(--accent-emerald));
}

/* ===================================
   SIDEBAR CLOSE BUTTON
   =================================== */
.sidebar-close {
    position: absolute;
    top: 25px;
    right: 25px;
    width: 45px;
    height: 45px;
    background: rgba(255, 255, 255, 0.1);
    border: 2px solid rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    color: var(--white);
    font-size: 20px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition-fast);
    z-index: 10;
    backdrop-filter: blur(10px);
}

.sidebar-close:hover {
    background: var(--accent-gold);
    border-color: var(--accent-gold);
    transform: rotate(90deg) scale(1.1);
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.4);
}

/* ===================================
   SIDEBAR CONTENT
   =================================== */
.sidebar-content {
    padding: 90px 35px 35px;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
    position: relative;
    z-index: 2;
}

/* ===================================
   SIDEBAR HEADER
   =================================== */
.sidebar-header {
    margin-bottom: 40px;
    animation: fadeInUp 0.6s ease-out 0.2s both;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.sidebar-logo {
    display: flex;
    align-items: center;
    gap: 18px;
    margin-bottom: 15px;
}

.sidebar-logo-wrapper {
    position: relative;
    width: 75px;
    height: 75px;
}

.sidebar-logo-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    position: relative;
    z-index: 2;
    filter: drop-shadow(0 4px 15px rgba(87, 197, 182, 0.5));
    animation: float 3s ease-in-out infinite;
}

@keyframes float {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-10px);
    }
}

.sidebar-logo-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 85px;
    height: 85px;
    background: radial-gradient(circle, rgba(87, 197, 182, 0.3), transparent 70%);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    animation: glowExpand 2s ease-in-out infinite;
}

@keyframes glowExpand {
    0%, 100% {
        transform: translate(-50%, -50%) scale(1);
        opacity: 0.5;
    }
    50% {
        transform: translate(-50%, -50%) scale(1.2);
        opacity: 0.8;
    }
}

.sidebar-logo-text h2 {
    font-family: 'Playfair Display', serif;
    font-size: 26px;
    font-weight: 700;
    color: var(--white);
    letter-spacing: 2px;
    line-height: 1;
    margin-bottom: 5px;
    text-shadow: 2px 2px 10px rgba(0, 0, 0, 0.3);
}

.sidebar-logo-text p {
    font-family: 'Playfair Display', serif;
    font-size: 15px;
    font-weight: 600;
    color: var(--accent-mint);
    letter-spacing: 4px;
    line-height: 1;
    text-shadow: 1px 1px 6px rgba(0, 0, 0, 0.2);
}

.sidebar-tagline {
    background: rgba(255, 255, 255, 0.08);
    padding: 15px 20px;
    border-radius: 15px;
    border-left: 4px solid var(--accent-gold);
    backdrop-filter: blur(10px);
}

.sidebar-tagline p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 14px;
    font-style: italic;
    line-height: 1.5;
    margin: 0;
}

/* ===================================
   SIDEBAR NAVIGATION
   =================================== */
.sidebar-nav {
    flex: 1;
    animation: fadeInUp 0.6s ease-out 0.3s both;
}

.sidebar-menu {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.sidebar-link {
    color: var(--white);
    text-decoration: none;
    font-size: 17px;
    font-weight: 500;
    padding: 18px 22px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    gap: 15px;
    transition: var(--transition-fast);
    position: relative;
    overflow: hidden;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.sidebar-link::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    width: 4px;
    height: 0;
    background: linear-gradient(180deg, var(--accent-gold), var(--accent-mint));
    transition: var(--transition-fast);
    border-radius: 0 4px 4px 0;
}

.sidebar-link:hover::before {
    height: 100%;
}

.sidebar-link::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(87, 197, 182, 0.15), rgba(212, 175, 55, 0.15));
    transform: scaleX(0);
    transform-origin: left;
    transition: var(--transition-fast);
    z-index: -1;
}

.sidebar-link:hover::after {
    transform: scaleX(1);
}

.sidebar-link:hover {
    background: rgba(255, 255, 255, 0.12);
    transform: translateX(8px);
    border-color: var(--accent-gold);
}

.link-icon {
    width: 22px;
    font-size: 18px;
    color: var(--accent-mint);
    transition: var(--transition-fast);
}

.sidebar-link:hover .link-icon {
    color: var(--accent-gold);
    transform: scale(1.2);
}

.sidebar-link .link-text {
    flex: 1;
}

.link-arrow {
    font-size: 14px;
    opacity: 0;
    transform: translateX(-10px);
    transition: var(--transition-fast);
    color: var(--accent-gold);
}

.sidebar-link:hover .link-arrow {
    opacity: 1;
    transform: translateX(0);
}

.contact-highlight {
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.2), rgba(184, 134, 11, 0.2));
    border-color: var(--accent-gold);
}

.contact-highlight:hover {
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.3), rgba(184, 134, 11, 0.3));
}

/* ===================================
   SIDEBAR SOCIAL
   =================================== */
.sidebar-social {
    margin: 35px 0 25px;
    animation: fadeInUp 0.6s ease-out 0.5s both;
}

.social-title {
    color: rgba(255, 255, 255, 0.7);
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 15px;
    text-align: center;
}

.social-icons {
    display: flex;
    justify-content: center;
    gap: 12px;
    flex-wrap: wrap;
}

.social-icon {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 18px;
    transition: var(--transition-fast);
    border: 2px solid rgba(255, 255, 255, 0.15);
    text-decoration: none;
    position: relative;
    overflow: hidden;
}

.social-icon::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--accent-gold), var(--accent-mint));
    transform: scale(0);
    transition: var(--transition-fast);
    border-radius: 50%;
}

.social-icon:hover::before {
    transform: scale(1);
}

.social-icon i {
    position: relative;
    z-index: 2;
}

.social-icon:hover {
    transform: translateY(-5px) scale(1.1);
    border-color: var(--accent-gold);
    box-shadow: 0 8px 20px rgba(212, 175, 55, 0.4);
}

/* ===================================
   SIDEBAR FOOTER
   =================================== */
.sidebar-footer {
    padding-top: 25px;
    text-align: center;
    animation: fadeInUp 0.6s ease-out 0.6s both;
}

.footer-divider {
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, transparent, var(--accent-gold), transparent);
    margin: 0 auto 20px;
    border-radius: 2px;
}

.copyright {
    color: rgba(255, 255, 255, 0.7);
    font-size: 13px;
    margin-bottom: 8px;
}

.design-credit {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.6);
    margin-top: 8px;
}

.design-credit a {
    color: var(--accent-gold);
    text-decoration: none;
    font-weight: 600;
    transition: var(--transition-fast);
    position: relative;
}

.design-credit a::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 1px;
    background: var(--accent-gold);
    transition: var(--transition-fast);
}

.design-credit a:hover::after {
    width: 100%;
}

.design-credit a:hover {
    color: var(--white);
}

/* ===================================
   OVERLAY
   =================================== */
.overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: rgba(15, 36, 56, 0.85);
    opacity: 0;
    visibility: hidden;
    transition: var(--transition-smooth);
    z-index: 999;
    backdrop-filter: blur(8px);
}

.overlay.active {
    opacity: 1;
    visibility: visible;
}

/* ===================================
   RESPONSIVE - TABLET
   =================================== */
@media (min-width: 768px) {
    .sidebar {
        max-width: 450px;
    }

    .sidebar-logo-wrapper {
        width: 85px;
        height: 85px;
    }

    .sidebar-logo-text h2 {
        font-size: 28px;
    }

    .sidebar-logo-text p {
        font-size: 16px;
    }
}

/* ===================================
   RESPONSIVE - MOBILE SMALL
   =================================== */
@media (max-width: 360px) {
    .sidebar {
        max-width: 100%;
    }

    .sidebar-content {
        padding: 80px 25px 25px;
    }
}

/* ===================================
   RESPONSIVE - LANDSCAPE MOBILE
   =================================== */
@media (max-height: 600px) and (orientation: landscape) {
    .sidebar-header {
        margin-bottom: 20px;
    }

    .sidebar-logo-wrapper {
        width: 60px;
        height: 60px;
    }

    .sidebar-logo-text h2 {
        font-size: 22px;
    }

    .sidebar-tagline {
        padding: 10px 15px;
    }

    .sidebar-link {
        padding: 14px 18px;
        font-size: 15px;
    }

    .sidebar-menu {
        gap: 6px;
    }
}

/* ===================================
   BANNER SECTION
   =================================== */
.banner-section {
    position: relative;
    min-height: 100vh;
    padding: 140px 0 100px;
    background: linear-gradient(135deg,
            var(--primary-navy) 0%,
            var(--primary-teal) 40%,
            var(--accent-emerald) 70%,
            var(--accent-mint) 100%);
    overflow: hidden;
    display: flex;
    align-items: center;
}

/* ===================================
   BANNER PARTICLES
   =================================== */
.banner-particles {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    pointer-events: none;
}

.particle {
    position: absolute;
    width: 4px;
    height: 4px;
    background: var(--accent-gold);
    border-radius: 50%;
    opacity: 0.6;
    animation: particleFloat 15s infinite ease-in-out;
    box-shadow: 0 0 10px var(--accent-gold);
}

.particle:nth-child(1) { left: 10%; top: 20%; animation-delay: 0s; animation-duration: 12s; }
.particle:nth-child(2) { left: 30%; top: 40%; animation-delay: 2s; animation-duration: 15s; }
.particle:nth-child(3) { left: 50%; top: 60%; animation-delay: 4s; animation-duration: 18s; }
.particle:nth-child(4) { left: 70%; top: 30%; animation-delay: 1s; animation-duration: 14s; }
.particle:nth-child(5) { left: 80%; top: 70%; animation-delay: 3s; animation-duration: 16s; }
.particle:nth-child(6) { left: 20%; top: 80%; animation-delay: 5s; animation-duration: 13s; }
.particle:nth-child(7) { left: 60%; top: 15%; animation-delay: 2.5s; animation-duration: 17s; }
.particle:nth-child(8) { left: 40%; top: 90%; animation-delay: 4.5s; animation-duration: 19s; }

@keyframes particleFloat {
    0%, 100% {
        transform: translate(0, 0) scale(1);
        opacity: 0.6;
    }
    25% {
        transform: translate(30px, -30px) scale(1.2);
        opacity: 0.8;
    }
    50% {
        transform: translate(-20px, -60px) scale(0.8);
        opacity: 0.4;
    }
    75% {
        transform: translate(40px, -40px) scale(1.1);
        opacity: 0.7;
    }
}

.particle::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 8px;
    height: 8px;
    background: inherit;
    border-radius: 50%;
    transform: translate(-50%, -50%);
    opacity: 0.3;
    animation: particlePulse 2s infinite;
}

@keyframes particlePulse {
    0%, 100% {
        transform: translate(-50%, -50%) scale(1);
        opacity: 0.3;
    }
    50% {
        transform: translate(-50%, -50%) scale(2);
        opacity: 0;
    }
}

/* ===================================
   BANNER OVERLAY
   =================================== */
.banner-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 20% 50%, rgba(87, 197, 182, 0.1), transparent 50%),
        radial-gradient(circle at 80% 50%, rgba(212, 175, 55, 0.1), transparent 50%);
    pointer-events: none;
}

/* ===================================
   BANNER CONTENT
   =================================== */
.banner-content {
    display: grid;
    grid-template-columns: 1fr;
    gap: 50px;
    align-items: center;
    position: relative;
    z-index: 2;
}

.banner-text {
    animation: fadeInUp 1s ease-out;
}

/* ===================================
   BANNER BADGE
   =================================== */
.banner-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 12px 24px;
    background: rgba(255, 255, 255, 0.15);
    border-radius: 50px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    margin-bottom: 25px;
    animation: fadeInUp 1s ease-out 0.2s both;
}

.badge-icon {
    font-size: 20px;
    animation: bounce 2s infinite;
}

@keyframes bounce {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-8px); }
}

.badge-text {
    color: var(--white);
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 0.5px;
}

/* ===================================
   BANNER TITLE
   =================================== */
.banner-title {
    font-family: 'Playfair Display', serif;
    font-size: 48px;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 20px;
    animation: fadeInUp 1s ease-out 0.4s both;
}

.title-line {
    display: block;
    color: var(--white);
    text-shadow: 3px 3px 15px rgba(0, 0, 0, 0.3);
}

.title-line.highlight {
    background: linear-gradient(45deg,
            var(--accent-gold),
            var(--warm-gold),
            var(--accent-mint),
            var(--accent-gold));
    background-size: 300% 300%;
    animation: gradientShift 5s ease infinite;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    position: relative;
    display: inline-block;
}

@keyframes gradientShift {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

.title-line.highlight::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 150px;
    height: 4px;
    background: linear-gradient(90deg, var(--accent-gold), transparent);
    border-radius: 2px;
    animation: slideIn 1s ease-out 0.8s both;
}

@keyframes slideIn {
    from {
        width: 0;
        opacity: 0;
    }
    to {
        width: 150px;
        opacity: 1;
    }
}

/* ===================================
   BANNER SUBTITLE & DESCRIPTION
   =================================== */
.banner-subtitle {
    font-size: 20px;
    font-weight: 500;
    color: var(--soft-beige);
    margin-bottom: 20px;
    font-style: italic;
    animation: fadeInUp 1s ease-out 0.6s both;
}

.banner-description {
    font-size: 16px;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 35px;
    max-width: 600px;
    animation: fadeInUp 1s ease-out 0.8s both;
}

/* ===================================
   BANNER BUTTONS
   =================================== */
.banner-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    margin-bottom: 50px;
    animation: fadeInUp 1s ease-out 1s both;
}

.btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 16px 32px;
    font-size: 16px;
    font-weight: 600;
    text-decoration: none;
    border-radius: 50px;
    transition: var(--transition-fast);
    position: relative;
    overflow: hidden;
    border: 2px solid transparent;
    letter-spacing: 0.5px;
}

.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-text,
.btn-icon {
    position: relative;
    z-index: 2;
}

.btn-icon {
    transition: var(--transition-fast);
}

.btn:hover .btn-icon {
    transform: translateX(5px);
}

.btn-primary {
    background: linear-gradient(135deg, var(--accent-gold) 0%, var(--warm-gold) 100%);
    color: var(--white);
    box-shadow: 0 8px 25px rgba(212, 175, 55, 0.4);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(212, 175, 55, 0.5);
}

.btn-primary::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: inherit;
    border-radius: inherit;
    filter: blur(20px);
    opacity: 0;
    transition: var(--transition-fast);
    z-index: -1;
}

.btn-primary:hover::after {
    opacity: 0.6;
}

.btn-secondary {
    background: transparent;
    color: var(--white);
    border-color: rgba(255, 255, 255, 0.5);
    backdrop-filter: blur(10px);
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: var(--white);
    transform: translateY(-3px);
}

/* ===================================
   BANNER STATS
   =================================== */
.banner-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 25px;
    animation: fadeInUp 1s ease-out 1.2s both;
}

.stat-item {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 20px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: var(--transition-fast);
}

.stat-item:hover {
    background: rgba(255, 255, 255, 0.15);
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}

.stat-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--accent-gold), var(--warm-gold));
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    color: var(--white);
    flex-shrink: 0;
}

.stat-content {
    flex: 1;
}

.stat-number {
    font-size: 28px;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 2px;
    font-family: 'Playfair Display', serif;
}

.stat-number::after {
    content: '+';
    color: var(--accent-gold);
    margin-left: 2px;
}

.stat-number-2 {
    font-size: 28px;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 2px;
    font-family: 'Playfair Display', serif;
}

.stat-number-2::after {
    content: '%';
    color: var(--accent-gold);
    margin-left: 2px;
}

.stat-label {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.8);
    margin: 0;
}

/* ===================================
   BANNER IMAGE
   =================================== */
.banner-image {
    animation: fadeInRight 1s ease-out 0.5s both;
}

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.image-wrapper {
    position: relative;
    animation: float 6s ease-in-out infinite;
}

.image-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle, rgba(87, 197, 182, 0.3), transparent 70%);
    transform: translate(-50%, -50%);
    animation: glowPulse 3s ease-in-out infinite;
    border-radius: 30px;
}

.image-container {
    position: relative;
    border-radius: 30px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    border: 3px solid rgba(255, 255, 255, 0.2);
}

.image-container img {
    width: 100%;
    height: auto;
    display: block;
    transition: var(--transition-smooth);
}

.image-container:hover img {
    transform: scale(1.05);
}

.image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg,
            rgba(21, 152, 149, 0.3) 0%,
            rgba(212, 175, 55, 0.2) 100%);
    pointer-events: none;
}

/* ===================================
   BANNER WAVE
   =================================== */
.banner-wave {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    color: var(--white);
    line-height: 0;
}

.banner-wave svg {
    width: 100%;
    height: 80px;
    display: block;
}

/* ===================================
   SCROLL INDICATOR
   =================================== */
.scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    animation: fadeInUp 1s ease-out 1.5s both;
    z-index: 10;
}

.scroll-mouse {
    width: 28px;
    height: 45px;
    border: 2px solid rgba(255, 255, 255, 0.5);
    border-radius: 20px;
    display: flex;
    justify-content: center;
    padding: 8px 0;
}

.scroll-wheel {
    width: 4px;
    height: 10px;
    background: var(--white);
    border-radius: 2px;
    animation: scrollWheel 2s infinite;
}

@keyframes scrollWheel {
    0%, 100% {
        transform: translateY(0);
        opacity: 1;
    }
    50% {
        transform: translateY(10px);
        opacity: 0.5;
    }
}

.scroll-text {
    color: var(--white);
    font-size: 12px;
    font-weight: 500;
    letter-spacing: 1px;
    text-transform: uppercase;
}

/* ===================================
   RESPONSIVE - TABLET
   =================================== */
@media (min-width: 768px) {
    .banner-section {
        padding: 160px 0 120px;
    }

    .banner-title {
        font-size: 64px;
    }

    .banner-subtitle {
        font-size: 22px;
    }

    .banner-description {
        font-size: 17px;
    }

    .banner-stats {
        grid-template-columns: repeat(3, 1fr);
    }
}

/* ===================================
   RESPONSIVE - DESKTOP
   =================================== */
@media (min-width: 1024px) {
    .banner-section {
        min-height: 100vh;
        padding: 180px 0 120px;
    }

    .banner-content {
        grid-template-columns: 1fr 1fr;
        gap: 80px;
    }

    .banner-title {
        font-size: 72px;
    }

    .banner-subtitle {
        font-size: 24px;
    }

    .banner-description {
        font-size: 18px;
        max-width: 550px;
    }

    .title-line.highlight::after {
        width: 200px;
    }
}

/* ===================================
   RESPONSIVE - LARGE DESKTOP
   =================================== */
@media (min-width: 1440px) {
    .banner-title {
        font-size: 82px;
    }

    .banner-content {
        gap: 100px;
    }
}

/* ===================================
   RESPONSIVE - MOBILE SMALL
   =================================== */
@media (max-width: 480px) {
    .banner-section {
        padding: 120px 0 60px;
        min-height: 100vh !important; /* Fixed - ensure full height on mobile */
    }

    .banner-title {
        font-size: 32px !important;
        line-height: 1.2;
    }
    
    .banner-title .title-line {
        display: block;
    }

    .banner-subtitle {
        font-size: 16px !important;
        margin: 15px 0 !important;
    }

    .banner-description {
        font-size: 14px !important;
        line-height: 1.6;
        margin-bottom: 25px !important;
    }

    .banner-buttons {
        flex-direction: column;
        gap: 12px;
    }

    .btn {
        width: 100%;
        justify-content: center;
        padding: 14px 24px;
        font-size: 15px;
    }

    .banner-stats {
        grid-template-columns: 1fr;
        gap: 20px;
        margin-top: 30px;
    }
    
    .stat-item {
        padding: 20px;
    }

    .stat-number {
        font-size: 28px !important;
    }
    
    .stat-label {
        font-size: 13px;
    }

    .scroll-indicator {
        display: none;
    }
    
    .banner-image {
        display: none !important;
    }
    
    .banner-badge {
        font-size: 13px;
        padding: 8px 16px;
    }
    
    .banner-content {
        padding: 0 15px;
    }
}

/* Tablet adjustments */
@media (max-width: 768px) and (min-width: 481px) {
    .banner-section {
        padding: 130px 0 80px;
        min-height: 100vh;
    }
    
    .banner-title {
        font-size: 42px;
    }
    
    .banner-subtitle {
        font-size: 19px;
    }
    
    .banner-description {
        font-size: 16px;
    }
    
    .banner-stats {
        grid-template-columns: repeat(3, 1fr);
        gap: 15px;
    }
    
    .banner-image {
        margin-top: 40px;
    }
}

/* ===================================
   RESPONSIVE - LANDSCAPE MOBILE
   =================================== */
@media (max-height: 600px) and (orientation: landscape) {
    .banner-section {
        /*min-height: auto;*/
        padding: 140px 0 60px;
    }

    .scroll-indicator {
        display: none;
    }
}

/* ===================================
   ABOUT SECTION
   =================================== */
.about-section {
    position: relative;
    padding: 120px 0;
    background: var(--white);
    overflow: hidden;
}

/* ===================================
   ABOUT BACKGROUND DECORATIONS
   =================================== */
.about-bg-decoration {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 0;
}

.about-bg-shape {
    position: absolute;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(87, 197, 182, 0.05), transparent 70%);
    animation: aboutShapeFloat 25s infinite ease-in-out;
}

.shape-1 {
    width: 500px;
    height: 500px;
    top: -10%;
    right: -10%;
    animation-delay: 0s;
}

.shape-2 {
    width: 400px;
    height: 400px;
    bottom: 20%;
    left: -8%;
    animation-delay: 8s;
}

.shape-3 {
    width: 350px;
    height: 350px;
    top: 50%;
    right: 5%;
    animation-delay: 16s;
}

@keyframes aboutShapeFloat {
    0%, 100% {
        transform: translate(0, 0) scale(1);
        opacity: 0.5;
    }
    33% {
        transform: translate(40px, -40px) scale(1.1);
        opacity: 0.7;
    }
    66% {
        transform: translate(-30px, 30px) scale(0.9);
        opacity: 0.4;
    }
}

/* ===================================
   ABOUT WRAPPER
   =================================== */
.about-wrapper {
    display: grid;
    grid-template-columns: 1fr;
    gap: 60px;
    align-items: center;
    margin-bottom: 100px;
    position: relative;
    z-index: 2;
}

/* ===================================
   ABOUT IMAGE AREA
   =================================== */
.about-image-area {
    position: relative;
}

.about-image-container {
    position: relative;
    max-width: 550px;
    margin: 0 auto;
}

.about-main-image {
    position: relative;
    border-radius: 30px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
    border: 5px solid var(--white);
}

.about-main-image img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.about-main-image:hover img {
    transform: scale(1.08);
}

.about-image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg,
            rgba(21, 152, 149, 0.2) 0%,
            rgba(87, 197, 182, 0.1) 100%);
    pointer-events: none;
}

/* ===================================
   FLOATING STATS
   =================================== */
.about-floating-stat {
    position: absolute;
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 20px 25px;
    background: var(--white);
    border-radius: 20px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
    backdrop-filter: blur(10px);
    border: 2px solid var(--light-cream);
    animation: aboutStatFloat 4s ease-in-out infinite;
    z-index: 10;
}

.stat-1 {
    top: 10%;
    right: -5%;
    animation-delay: 0s;
}

.stat-2 {
    bottom: 10%;
    left: -5%;
    animation-delay: 2s;
}

@keyframes aboutStatFloat {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-20px);
    }
}

.stat-icon-box {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--accent-emerald), var(--accent-mint));
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 26px;
    color: var(--white);
    flex-shrink: 0;
    box-shadow: 0 8px 20px rgba(21, 152, 149, 0.3);
}

.stat-info {
    flex: 1;
}

.stat-count {
    font-family: 'Playfair Display', serif;
    font-size: 32px;
    font-weight: 700;
    color: var(--text-dark);
    margin: 0 0 2px 0;
    line-height: 1;
} 

.stat-count::after {
    content: '+';
    color: var(--accent-emerald);
    margin-left: 3px;
}

.stat-count-2 {
    font-family: 'Playfair Display', serif;
    font-size: 32px;
    font-weight: 700;
    color: var(--text-dark);
    margin: 0 0 2px 0;
    line-height: 1;
} 

.stat-count-2::after {
    content: '%';
    color: var(--accent-emerald);
    margin-left: 3px;
}

.stat-text {
    font-size: 14px;
    color: var(--text-light);
    margin: 0;
    font-weight: 500;
}

/* ===================================
   DECORATIVE CIRCLES
   =================================== */
.about-decoration-circle {
    position: absolute;
    border: 3px solid var(--accent-mint);
    border-radius: 50%;
    opacity: 0.2;
    animation: aboutCircleRotate 15s linear infinite;
}

.circle-top {
    width: 120px;
    height: 120px;
    top: -15px;
    left: -15px;
}

.circle-bottom {
    width: 100px;
    height: 100px;
    bottom: -15px;
    right: -15px;
    animation-direction: reverse;
}

@keyframes aboutCircleRotate {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
    }
}

/* ===================================
   ABOUT CONTENT AREA
   =================================== */
.about-content-area {
    position: relative;
    z-index: 2;
}

.about-section-tag {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 24px;
    background: linear-gradient(135deg, var(--accent-emerald), var(--accent-mint));
    color: var(--white);
    border-radius: 50px;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 20px;
    box-shadow: 0 4px 15px rgba(21, 152, 149, 0.3);
}

.about-section-tag i {
    font-size: 16px;
}

.about-section-title {
    font-family: 'Playfair Display', serif;
    font-size: 48px;
    font-weight: 700;
    color: var(--text-dark);
    line-height: 1.2;
    margin-bottom: 25px;
}

.about-highlight {
    background: linear-gradient(135deg, var(--accent-emerald), var(--accent-mint));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    position: relative;
}

.about-highlight::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, var(--accent-emerald), var(--accent-mint));
    border-radius: 2px;
    opacity: 0.3;
}

.about-intro-text {
    font-size: 17px;
    line-height: 1.8;
    color: var(--text-light);
    margin-bottom: 30px;
}

/* ===================================
   MISSION BOX
   =================================== */
.about-mission-box {
    display: flex;
    gap: 20px;
    padding: 30px;
    background: linear-gradient(135deg, var(--light-cream) 0%, var(--soft-beige) 100%);
    border-radius: 20px;
    border-left: 5px solid var(--accent-gold);
    margin-bottom: 40px;
    transition: var(--transition-smooth);
}

.about-mission-box:hover {
    transform: translateX(5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.mission-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--accent-gold), var(--warm-gold));
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 26px;
    color: var(--white);
    flex-shrink: 0;
    box-shadow: 0 8px 20px rgba(212, 175, 55, 0.3);
}

.mission-content h3 {
    font-family: 'Playfair Display', serif;
    font-size: 22px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 10px;
}

.mission-content p {
    font-size: 15px;
    line-height: 1.7;
    color: var(--text-light);
    margin: 0;
}

/* ===================================
   FEATURES GRID
   =================================== */
.about-features-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
    margin-bottom: 40px;
}

.about-feature-item {
    display: flex;
    align-items: flex-start;
    gap: 18px;
    padding: 20px;
    background: var(--white);
    border-radius: 15px;
    border: 2px solid var(--light-cream);
    transition: var(--transition-fast);
}

.about-feature-item:hover {
    border-color: var(--accent-mint);
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.feature-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--accent-emerald), var(--accent-mint));
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    color: var(--white);
    flex-shrink: 0;
    transition: var(--transition-fast);
}

.about-feature-item:hover .feature-icon {
    transform: rotateY(360deg) scale(1.1);
}

.feature-text h4 {
    font-size: 17px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 5px;
}

.feature-text p {
    font-size: 14px;
    color: var(--text-light);
    margin: 0;
    line-height: 1.6;
}

/* ===================================
   CTA BUTTONS
   =================================== */
.about-cta-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
}

.about-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 16px 32px;
    font-size: 16px;
    font-weight: 600;
    text-decoration: none;
    border-radius: 50px;
    transition: var(--transition-fast);
    position: relative;
    overflow: hidden;
    letter-spacing: 0.5px;
}

.about-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;
}

.about-btn:hover::before {
    width: 300px;
    height: 300px;
}

.about-btn span,
.about-btn i {
    position: relative;
    z-index: 2;
}

.about-btn i {
    transition: var(--transition-fast);
}

.about-btn:hover i {
    transform: translateX(5px);
}

.about-btn.primary {
    background: linear-gradient(135deg, var(--accent-emerald), var(--accent-mint));
    color: var(--white);
    box-shadow: 0 8px 25px rgba(21, 152, 149, 0.3);
}

.about-btn.primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(21, 152, 149, 0.4);
}

.about-btn.secondary {
    background: transparent;
    color: var(--accent-emerald);
    border: 2px solid var(--accent-emerald);
}

.about-btn.secondary:hover {
    background: var(--accent-emerald);
    color: var(--white);
    transform: translateY(-3px);
}

/* ===================================
   VALUES SECTION
   =================================== */
.about-values-section {
    position: relative;
    z-index: 2;
}

.values-header {
    text-align: center;
    margin-bottom: 60px;
}

.values-title {
    font-family: 'Playfair Display', serif;
    font-size: 42px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 15px;
}

.values-subtitle {
    font-size: 17px;
    color: var(--text-light);
    margin: 0;
}

.values-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 30px;
}

.value-card {
    text-align: center;
    padding: 40px 30px;
    background: var(--white);
    border-radius: 24px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    border: 2px solid transparent;
    transition: var(--transition-smooth);
    position: relative;
    overflow: hidden;
}

.value-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(21, 152, 149, 0.03), rgba(87, 197, 182, 0.03));
    opacity: 0;
    transition: var(--transition-smooth);
}

.value-card:hover::before {
    opacity: 1;
}

.value-card:hover {
    transform: translateY(-10px);
    border-color: var(--accent-mint);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.value-icon-wrapper {
    display: inline-block;
    margin-bottom: 25px;
    position: relative;
}

.value-icon {
    width: 90px;
    height: 90px;
    background: linear-gradient(135deg, var(--accent-emerald), var(--accent-mint));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 38px;
    color: var(--white);
    box-shadow: 0 10px 30px rgba(21, 152, 149, 0.3);
    transition: var(--transition-smooth);
    position: relative;
    z-index: 2;
}

.value-card:hover .value-icon {
    transform: rotateY(360deg) scale(1.1);
}

.value-icon-wrapper::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 110px;
    height: 110px;
    background: radial-gradient(circle, rgba(87, 197, 182, 0.2), transparent 70%);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    animation: valueIconGlow 2s ease-in-out infinite;
}

@keyframes valueIconGlow {
    0%, 100% {
        transform: translate(-50%, -50%) scale(1);
        opacity: 0.5;
    }
    50% {
        transform: translate(-50%, -50%) scale(1.2);
        opacity: 0.8;
    }
}

.value-title {
    font-family: 'Playfair Display', serif;
    font-size: 24px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 12px;
}

.value-description {
    font-size: 15px;
    line-height: 1.7;
    color: var(--text-light);
    margin: 0;
}

/* ===================================
   ANIMATIONS - AOS
   =================================== */
[data-about-aos] {
    opacity: 0;
    transition: opacity 0.8s cubic-bezier(0.4, 0, 0.2, 1),
        transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

[data-about-aos="fade-right"] {
    transform: translateX(-50px);
}

[data-about-aos="fade-left"] {
    transform: translateX(50px);
}

[data-about-aos="fade-up"] {
    transform: translateY(50px);
}

[data-about-aos].about-aos-animate {
    opacity: 1;
    transform: translate(0, 0);
}

/* ===================================
   RESPONSIVE - TABLET
   =================================== */
@media (min-width: 768px) {
    .about-section {
        padding: 140px 0;
    }

    .about-section-title {
        font-size: 52px;
    }

    .about-features-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 25px;
    }

    .values-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 35px;
    }

    .stat-1 {
        right: -8%;
    }

    .stat-2 {
        left: -8%;
    }
}

/* ===================================
   RESPONSIVE - DESKTOP
   =================================== */
@media (min-width: 1024px) {
    .about-wrapper {
        grid-template-columns: 1fr 1fr;
        gap: 80px;
        margin-bottom: 120px;
    }

    .about-section-title {
        font-size: 56px;
    }

    .values-grid {
        grid-template-columns: repeat(4, 1fr);
        gap: 30px;
    }
}

/* ===================================
   RESPONSIVE - LARGE DESKTOP
   =================================== */
@media (min-width: 1440px) {
    .about-wrapper {
        gap: 100px;
    }
}

/* ===================================
   RESPONSIVE - MOBILE SMALL
   =================================== */
@media (max-width: 480px) {
    .about-section {
        padding: 80px 0;
    }

    .about-section-title {
        font-size: 36px;
    }

    .about-intro-text {
        font-size: 15px;
    }

    .about-mission-box {
        flex-direction: column;
        padding: 25px;
    }

    .about-floating-stat {
        position: static;
        margin: 20px 0;
        animation: none;
    }

    .stat-1,
    .stat-2 {
        position: relative;
        right: auto;
        left: auto;
        top: auto;
        bottom: auto;
    }

    .about-cta-buttons {
        flex-direction: column;
    }

    .about-btn {
        width: 100%;
        justify-content: center;
    }

    .values-title {
        font-size: 32px;
    }
}

/* ===================================
   WHAT WE DO / SERVICES SECTION
   =================================== */
.what-we-do-section {
    position: relative;
    padding: 100px 0;
    background: linear-gradient(180deg, var(--white) 0%, var(--light-cream) 100%);
    overflow: hidden;
}

/* ===================================
   SECTION BACKGROUND DECORATIONS
   =================================== */
.section-bg-decoration {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 0;
}

.bg-circle {
    position: absolute;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(21, 152, 149, 0.08), transparent 70%);
    animation: floatCircle 20s infinite ease-in-out;
}

.circle-1 {
    width: 400px;
    height: 400px;
    top: 10%;
    left: -10%;
    animation-delay: 0s;
}

.circle-2 {
    width: 300px;
    height: 300px;
    top: 50%;
    right: -5%;
    animation-delay: 5s;
}

.circle-3 {
    width: 500px;
    height: 500px;
    bottom: -10%;
    left: 30%;
    animation-delay: 10s;
}

@keyframes floatCircle {
    0%, 100% {
        transform: translate(0, 0) scale(1);
    }
    33% {
        transform: translate(30px, -30px) scale(1.1);
    }
    66% {
        transform: translate(-20px, 20px) scale(0.9);
    }
}

/* ===================================
   SECTION HEADER
   =================================== */
.section-header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 60px;
    position: relative;
    z-index: 2;
}

.section-tag {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 24px;
    background: linear-gradient(135deg, var(--accent-emerald), var(--accent-mint));
    color: var(--white);
    border-radius: 50px;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 20px;
    box-shadow: 0 4px 15px rgba(21, 152, 149, 0.3);
    animation: tagPulse 2s infinite;
}

@keyframes tagPulse {
    0%, 100% {
        transform: scale(1);
        box-shadow: 0 4px 15px rgba(21, 152, 149, 0.3);
    }
    50% {
        transform: scale(1.05);
        box-shadow: 0 6px 20px rgba(21, 152, 149, 0.4);
    }
}

.section-tag i {
    font-size: 16px;
}

.section-title {
    font-family: 'Playfair Display', serif;
    font-size: 42px;
    font-weight: 700;
    color: var(--text-dark);
    line-height: 1.3;
    margin-bottom: 20px;
}

.highlight-text {
    background: linear-gradient(135deg, var(--accent-emerald), var(--accent-mint));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    position: relative;
    display: inline-block;
}

.highlight-text::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, var(--accent-emerald), var(--accent-mint));
    border-radius: 2px;
    opacity: 0.3;
}

.section-description {
    font-size: 17px;
    line-height: 1.8;
    color: var(--text-light);
    margin: 0;
}

/* ===================================
   SERVICES GRID
   =================================== */
.services-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 30px;
    margin-bottom: 60px;
    position: relative;
    z-index: 2;
}

/* ===================================
   SERVICE CARD
   =================================== */
.service-card {
    position: relative;
    background: var(--white);
    border-radius: 24px;
    padding: 40px 35px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: var(--transition-smooth);
    overflow: hidden;
    border: 2px solid transparent;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(21, 152, 149, 0.03), rgba(87, 197, 182, 0.03));
    opacity: 0;
    transition: var(--transition-smooth);
    pointer-events: none;
}

.service-card:hover::before {
    opacity: 1;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
    border-color: var(--accent-mint);
}

/* Featured Card - 1 on 1 Mentoring */
.service-card.featured {
    background: linear-gradient(135deg, var(--primary-navy) 0%, var(--primary-teal) 100%);
    border-color: var(--accent-gold);
}

.service-card.featured .card-title,
.service-card.featured .card-description,
.service-card.featured .card-features li {
    color: var(--white);
}

.service-card.featured .card-icon {
    background: linear-gradient(135deg, var(--accent-gold), var(--warm-gold));
}

.service-card.featured .card-link {
    color: var(--accent-gold);
}

.service-card.featured .card-link:hover {
    background: var(--accent-gold);
    color: var(--white);
}

/* Featured Badge */
.featured-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 8px 16px;
    background: var(--accent-gold);
    color: var(--white);
    border-radius: 50px;
    font-size: 13px;
    font-weight: 600;
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.4);
    z-index: 3;
    animation: badgeBounce 2s infinite;
}

@keyframes badgeBounce {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-5px);
    }
}

.featured-badge i {
    font-size: 14px;
}

/* Card Decoration */
.card-decoration {
    position: absolute;
    top: 20px;
    left: 20px;
    width: 60px;
    height: 60px;
    opacity: 0.1;
}

.decoration-circle {
    width: 40px;
    height: 40px;
    border: 3px solid var(--accent-emerald);
    border-radius: 50%;
    position: absolute;
    top: 0;
    left: 0;
}

.decoration-line {
    width: 30px;
    height: 3px;
    background: var(--accent-emerald);
    position: absolute;
    bottom: 0;
    right: 0;
    border-radius: 2px;
}

/* ===================================
   CARD ICON WRAPPER
   =================================== */
.card-icon-wrapper {
    position: relative;
    width: 80px;
    height: 80px;
    margin-bottom: 25px;
}

.card-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--accent-emerald), var(--accent-mint));
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 36px;
    color: var(--white);
    transition: var(--transition-smooth);
    position: relative;
    z-index: 2;
    box-shadow: 0 8px 25px rgba(21, 152, 149, 0.3);
}

.service-card:hover .card-icon {
    transform: rotateY(360deg) scale(1.1);
}

.icon-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle, rgba(87, 197, 182, 0.4), transparent 70%);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    animation: iconGlow 2s ease-in-out infinite;
}

@keyframes iconGlow {
    0%, 100% {
        transform: translate(-50%, -50%) scale(1);
        opacity: 0.5;
    }
    50% {
        transform: translate(-50%, -50%) scale(1.3);
        opacity: 0.8;
    }
}

/* ===================================
   CARD CONTENT
   =================================== */
.card-content {
    position: relative;
    z-index: 2;
}

.card-title {
    font-family: 'Playfair Display', serif;
    font-size: 26px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 15px;
    transition: var(--transition-fast);
}

.service-card:hover .card-title {
    color: var(--accent-emerald);
}

.card-description {
    font-size: 15px;
    line-height: 1.7;
    color: var(--text-light);
    margin-bottom: 20px;
}

/* Card Features */
.card-features {
    list-style: none;
    padding: 0;
    margin: 0 0 25px 0;
}

.card-features li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    font-size: 14px;
    color: var(--text-dark);
    margin-bottom: 12px;
    padding-left: 5px;
    transition: var(--transition-fast);
}

.card-features li:hover {
    transform: translateX(5px);
}

.card-features i {
    color: var(--accent-emerald);
    font-size: 16px;
    margin-top: 2px;
    flex-shrink: 0;
}

.service-card.featured .card-features i {
    color: var(--accent-gold);
}

/* ===================================
   CARD LINK
   =================================== */
.card-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 24px;
    background: transparent;
    color: var(--accent-emerald);
    font-size: 15px;
    font-weight: 600;
    text-decoration: none;
    border-radius: 50px;
    border: 2px solid var(--accent-emerald);
    transition: var(--transition-fast);
    position: relative;
    overflow: hidden;
}

.card-link::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: var(--accent-emerald);
    transition: var(--transition-fast);
    z-index: -1;
}

.card-link:hover::before {
    left: 0;
}

.card-link:hover {
    color: var(--white);
    border-color: var(--accent-emerald);
    transform: translateX(5px);
}

.card-link i {
    transition: var(--transition-fast);
}

.card-link:hover i {
    transform: translateX(5px);
}

/* Card Overlay */
.card-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 0;
    background: linear-gradient(180deg, transparent, rgba(21, 152, 149, 0.05));
    transition: var(--transition-smooth);
    pointer-events: none;
}

.service-card:hover .card-overlay {
    height: 100%;
}

/* ===================================
   SERVICES CTA
   =================================== */
.services-cta {
    position: relative;
    background: linear-gradient(135deg, var(--primary-navy) 0%, var(--primary-teal) 100%);
    border-radius: 24px;
    padding: 50px 40px;
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.2);
    overflow: hidden;
    z-index: 2;
}

.services-cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 70% 30%, rgba(87, 197, 182, 0.2), transparent 60%);
    pointer-events: none;
}

.cta-content {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 30px;
}

.cta-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--accent-gold), var(--warm-gold));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 36px;
    color: var(--white);
    box-shadow: 0 8px 25px rgba(212, 175, 55, 0.4);
    animation: ctaIconBounce 3s infinite;
}

@keyframes ctaIconBounce {
    0%, 100% {
        transform: translateY(0) rotate(0deg);
    }
    25% {
        transform: translateY(-10px) rotate(-5deg);
    }
    75% {
        transform: translateY(-10px) rotate(5deg);
    }
}

.cta-text h3 {
    font-family: 'Playfair Display', serif;
    font-size: 32px;
    font-weight: 700;
    color: var(--white);
    margin: 0 0 12px 0;
}

.cta-text p {
    font-size: 17px;
    color: rgba(255, 255, 255, 0.9);
    margin: 0;
    max-width: 600px;
}

.cta-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    justify-content: center;
}

.cta-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 16px 32px;
    font-size: 16px;
    font-weight: 600;
    text-decoration: none;
    border-radius: 50px;
    transition: var(--transition-fast);
    position: relative;
    overflow: hidden;
    letter-spacing: 0.5px;
}

.cta-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;
}

.cta-btn:hover::before {
    width: 300px;
    height: 300px;
}

.cta-btn span,
.cta-btn i {
    position: relative;
    z-index: 2;
}

.cta-btn i {
    transition: var(--transition-fast);
}

.cta-btn:hover i {
    transform: translateX(5px);
}

.cta-btn.primary {
    background: linear-gradient(135deg, var(--accent-gold), var(--warm-gold));
    color: var(--white);
    box-shadow: 0 8px 25px rgba(212, 175, 55, 0.4);
}

.cta-btn.primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(212, 175, 55, 0.5);
}

.cta-btn.secondary {
    background: transparent;
    color: var(--white);
    border: 2px solid rgba(255, 255, 255, 0.5);
}

.cta-btn.secondary:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: var(--white);
    transform: translateY(-3px);
}

/* ===================================
   RESPONSIVE - TABLET
   =================================== */
@media (min-width: 768px) {
    .what-we-do-section {
        padding: 120px 0;
    }

    .section-title {
        font-size: 48px;
    }

    .services-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 35px;
    }

    .services-cta {
        padding: 60px 50px;
    }

    .cta-content {
        flex-direction: row;
        text-align: left;
    }

    .cta-text {
        flex: 1;
    }

    .cta-buttons {
        justify-content: flex-start;
    }
}

/* ===================================
   RESPONSIVE - DESKTOP
   =================================== */
@media (min-width: 1024px) {
    .what-we-do-section {
        padding: 140px 0;
    }

    .section-header {
        margin-bottom: 80px;
    }

    .section-title {
        font-size: 52px;
    }

    .services-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 40px;
    }

    .service-card {
        padding: 45px 40px;
    }
}

/* ===================================
   RESPONSIVE - LARGE DESKTOP
   =================================== */
@media (min-width: 1440px) {
    .services-grid {
        gap: 45px;
    }

    .service-card {
        padding: 50px 45px;
    }
}

/* ===================================
   RESPONSIVE - MOBILE SMALL
   =================================== */
@media (max-width: 480px) {
    .what-we-do-section {
        padding: 80px 0;
    }

    .section-title {
        font-size: 32px;
    }

    .section-description {
        font-size: 15px;
    }

    .service-card {
        padding: 30px 25px;
    }

    .card-title {
        font-size: 22px;
    }

    .card-description {
        font-size: 14px;
    }

    .services-cta {
        padding: 40px 25px;
    }

    .cta-text h3 {
        font-size: 26px;
    }

    .cta-text p {
        font-size: 15px;
    }

    .cta-buttons {
        flex-direction: column;
        width: 100%;
    }

    .cta-btn {
        width: 100%;
        justify-content: center;
    }
}

/* ===================================
   TESTIMONIALS SECTION
   =================================== */
.testimonials-section {
    position: relative;
    padding: 100px 0;
    background: linear-gradient(180deg, var(--light-cream) 0%, var(--white) 100%);
    overflow: hidden;
}

/* ===================================
   BACKGROUND ELEMENTS
   =================================== */
.testimonials-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 0;
}

.testimonials-bg .bg-shape {
    position: absolute;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(21, 152, 149, 0.06), transparent 70%);
}

.testimonials-bg .shape-1 {
    width: 400px;
    height: 400px;
    top: 10%;
    left: -5%;
    animation: testimonialFloat 20s infinite ease-in-out;
}

.testimonials-bg .shape-2 {
    width: 350px;
    height: 350px;
    bottom: 10%;
    right: -5%;
    animation: testimonialFloat 25s infinite ease-in-out reverse;
}

@keyframes testimonialFloat {
    0%, 100% {
        transform: translate(0, 0);
    }
    50% {
        transform: translate(30px, -30px);
    }
}

/* ===================================
   SECTION HEADER
   =================================== */
.testimonials-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 60px;
    position: relative;
    z-index: 2;
}

.testimonials-tag {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 24px;
    background: linear-gradient(135deg, var(--accent-gold), var(--warm-gold));
    color: var(--white);
    border-radius: 50px;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 20px;
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.3);
}

.testimonials-tag i {
    font-size: 16px;
}

.testimonials-title {
    font-family: 'Playfair Display', serif;
    font-size: 48px;
    font-weight: 700;
    color: var(--text-dark);
    line-height: 1.2;
    margin-bottom: 20px;
}

.testimonials-highlight {
    background: linear-gradient(135deg, var(--accent-emerald), var(--accent-mint));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    position: relative;
    display: inline-block;
}

.testimonials-subtitle {
    font-size: 17px;
    color: var(--text-light);
    margin: 0;
    line-height: 1.6;
}

/* ===================================
   TESTIMONIALS GRID
   =================================== */
.testimonials-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 30px;
    margin-bottom: 60px;
    position: relative;
    z-index: 2;
}

/* ===================================
   TESTIMONIAL CARD
   =================================== */
.testimonial-card {
    position: relative;
    background: var(--white);
    border-radius: 24px;
    padding: 35px 30px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    border: 2px solid var(--light-cream);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.testimonial-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
    border-color: var(--accent-mint);
}

/* Featured Card */
.testimonial-card.featured {
    background: linear-gradient(135deg, var(--primary-navy) 0%, var(--primary-teal) 100%);
    border-color: var(--accent-gold);
}

.testimonial-card.featured .testimonial-name,
.testimonial-card.featured .testimonial-role,
.testimonial-card.featured .testimonial-text {
    color: var(--white);
}

.testimonial-card.featured .testimonial-rating i {
    color: var(--accent-gold);
}

.testimonial-card.featured .testimonial-quote-icon {
    background: rgba(212, 175, 55, 0.1);
}

.testimonial-card.featured .testimonial-quote-icon i {
    color: var(--accent-gold);
}

/* Featured Label */
.featured-label {
    position: absolute;
    top: 20px;
    right: 20px;
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 8px 16px;
    background: var(--accent-gold);
    color: var(--white);
    border-radius: 50px;
    font-size: 13px;
    font-weight: 600;
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.4);
}

.featured-label i {
    font-size: 14px;
}

/* ===================================
   TESTIMONIAL HEADER
   =================================== */
.testimonial-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
}

.testimonial-avatar {
    position: relative;
    width: 60px;
    height: 60px;
    flex-shrink: 0;
}

.avatar-text {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--accent-emerald), var(--accent-mint));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    font-weight: 700;
    color: var(--white);
    box-shadow: 0 4px 15px rgba(21, 152, 149, 0.3);
    position: relative;
    z-index: 2;
}

.avatar-ring {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 70px;
    height: 70px;
    border: 2px solid var(--accent-mint);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    animation: avatarPulse 2s infinite;
}

@keyframes avatarPulse {
    0%, 100% {
        transform: translate(-50%, -50%) scale(1);
        opacity: 0.5;
    }
    50% {
        transform: translate(-50%, -50%) scale(1.1);
        opacity: 0.8;
    }
}

/* ===================================
   TESTIMONIAL INFO
   =================================== */
.testimonial-info {
    flex: 1;
}

.testimonial-name {
    font-size: 18px;
    font-weight: 700;
    color: var(--text-dark);
    margin: 0 0 5px 0;
}

.testimonial-role {
    font-size: 14px;
    color: var(--text-light);
    margin: 0;
    font-weight: 500;
}

/* ===================================
   RATING
   =================================== */
.testimonial-rating {
    display: flex;
    gap: 4px;
    margin-bottom: 20px;
}

.testimonial-rating i {
    font-size: 16px;
    color: var(--accent-gold);
}

/* ===================================
   TESTIMONIAL TEXT
   =================================== */
.testimonial-text {
    font-size: 15px;
    line-height: 1.8;
    color: var(--text-dark);
    margin: 0;
    position: relative;
    z-index: 2;
}

/* Quote Icon */
.testimonial-quote-icon {
    position: absolute;
    bottom: 20px;
    right: 20px;
    width: 50px;
    height: 50px;
    background: var(--light-cream);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1;
}

.testimonial-quote-icon i {
    font-size: 20px;
    color: var(--accent-emerald);
    opacity: 0.3;
}

/* ===================================
   STATS BAR
   =================================== */
.testimonials-stats {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
    margin-bottom: 60px;
    position: relative;
    z-index: 2;
}

.stat-box {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 25px 30px;
    background: var(--white);
    border-radius: 20px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    border: 2px solid var(--light-cream);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.stat-box:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
    border-color: var(--accent-mint);
}

.stat-box .stat-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--accent-emerald), var(--accent-mint));
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 26px;
    color: var(--white);
    flex-shrink: 0;
    box-shadow: 0 4px 15px rgba(21, 152, 149, 0.3);
}

.stat-box .stat-content h3 {
    font-family: 'Playfair Display', serif;
    font-size: 32px;
    font-weight: 700;
    color: var(--text-dark);
    margin: 0 0 5px 0;
    line-height: 1;
}

.stat-box .stat-content p {
    font-size: 14px;
    color: var(--text-light);
    margin: 0;
    font-weight: 500;
}

/* ===================================
   CTA SECTION
   =================================== */
.testimonials-cta {
    text-align: center;
    padding: 50px 40px;
    background: linear-gradient(135deg, var(--primary-navy) 0%, var(--primary-teal) 100%);
    border-radius: 24px;
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.2);
    position: relative;
    overflow: hidden;
    z-index: 2;
}

.testimonials-cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 70% 30%, rgba(87, 197, 182, 0.2), transparent 60%);
    pointer-events: none;
}

.testimonials-cta h3 {
    font-family: 'Playfair Display', serif;
    font-size: 32px;
    font-weight: 700;
    color: var(--white);
    margin: 0 0 15px 0;
    position: relative;
    z-index: 2;
}

.testimonials-cta p {
    font-size: 17px;
    color: rgba(255, 255, 255, 0.9);
    margin: 0 0 30px 0;
    position: relative;
    z-index: 2;
}

.testimonials-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 16px 40px;
    background: linear-gradient(135deg, var(--accent-gold), var(--warm-gold));
    color: var(--white);
    font-size: 16px;
    font-weight: 600;
    text-decoration: none;
    border-radius: 50px;
    box-shadow: 0 8px 25px rgba(212, 175, 55, 0.4);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    z-index: 2;
    letter-spacing: 0.5px;
}

.testimonials-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(212, 175, 55, 0.5);
}

.testimonials-btn i {
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.testimonials-btn:hover i {
    transform: translateX(5px);
}

/* ===================================
   AOS ANIMATIONS
   =================================== */
[data-testimonial-aos] {
    opacity: 0;
    transition: opacity 0.8s cubic-bezier(0.4, 0, 0.2, 1),
        transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

[data-testimonial-aos="fade-up"] {
    transform: translateY(40px);
}

[data-testimonial-aos].testimonial-aos-animate {
    opacity: 1;
    transform: translateY(0);
}

/* ===================================
   RESPONSIVE - TABLET
   =================================== */
@media (min-width: 768px) {
    .testimonials-section {
        padding: 120px 0;
    }

    .testimonials-title {
        font-size: 52px;
    }

    .testimonials-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 35px;
    }

    .testimonial-card:nth-child(3) {
        grid-column: 1 / -1;
        max-width: 600px;
        margin: 0 auto;
    }

    .testimonials-stats {
        grid-template-columns: repeat(2, 1fr);
        gap: 25px;
    }
}

/* ===================================
   RESPONSIVE - DESKTOP
   =================================== */
@media (min-width: 1024px) {
    .testimonials-section {
        padding: 140px 0;
    }

    .testimonials-title {
        font-size: 56px;
    }

    .testimonials-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 30px;
    }

    .testimonial-card:nth-child(3) {
        grid-column: auto;
        max-width: none;
    }

    .testimonials-stats {
        grid-template-columns: repeat(4, 1fr);
        gap: 30px;
    }
}

/* ===================================
   RESPONSIVE - MOBILE SMALL
   =================================== */
@media (max-width: 480px) {
    .testimonials-section {
        padding: 80px 0;
    }

    .testimonials-title {
        font-size: 36px;
    }

    .testimonials-subtitle {
        font-size: 15px;
    }

    .testimonial-card {
        padding: 30px 25px;
    }

    .testimonial-text {
        font-size: 14px;
    }

    .stat-box {
        padding: 20px 25px;
    }

    .stat-box .stat-content h3 {
        font-size: 28px;
    }

    .testimonials-cta {
        padding: 40px 25px;
    }

    .testimonials-cta h3 {
        font-size: 26px;
    }

    .testimonials-cta p {
        font-size: 15px;
    }
}

/* ===================================
   SMOOTH ANIMATIONS
   =================================== */
@media (prefers-reduced-motion: no-preference) {
    .testimonial-card,
    .stat-box {
        animation: testimonialFadeInUp 0.6s ease-out backwards;
    }

    .testimonial-card:nth-child(1) {
        animation-delay: 0.1s;
    }

    .testimonial-card:nth-child(2) {
        animation-delay: 0.2s;
    }

    .testimonial-card:nth-child(3) {
        animation-delay: 0.3s;
    }

    .stat-box:nth-child(1) {
        animation-delay: 0.1s;
    }

    .stat-box:nth-child(2) {
        animation-delay: 0.2s;
    }

    .stat-box:nth-child(3) {
        animation-delay: 0.3s;
    }

    .stat-box:nth-child(4) {
        animation-delay: 0.4s;
    }
}

@keyframes testimonialFadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ===================================
   HOVER EFFECTS ENHANCEMENT
   =================================== */
.testimonial-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(21, 152, 149, 0.03), rgba(87, 197, 182, 0.03));
    opacity: 0;
    transition: opacity 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    border-radius: 24px;
    pointer-events: none;
}

.testimonial-card:hover::before {
    opacity: 1;
}

.testimonial-card.featured::before {
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.1), rgba(184, 134, 11, 0.1));
}

/* ===================================
   BADGE PULSE ANIMATION
   =================================== */
.featured-label {
    animation: featuredBadgePulse 2s infinite;
}

@keyframes featuredBadgePulse {
    0%, 100% {
        transform: scale(1);
        box-shadow: 0 4px 12px rgba(212, 175, 55, 0.3);
    }
    50% {
        transform: scale(1.05);
        box-shadow: 0 6px 16px rgba(212, 175, 55, 0.4);
    }
}

/* ===================================
   MENTORSHIP SECTION
   =================================== */
.mentorship-section {
    position: relative;
    padding: 100px 0;
    background: var(--white);
    overflow: hidden;
}

/* ===================================
   BACKGROUND DECORATIONS
   =================================== */
.mentorship-bg-decoration {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 0;
}

.mentorship-bg-circle {
    position: absolute;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(87, 197, 182, 0.05), transparent 70%);
}

.mentorship-bg-circle.circle-1 {
    width: 450px;
    height: 450px;
    top: 5%;
    right: -10%;
}

.mentorship-bg-circle.circle-2 {
    width: 350px;
    height: 350px;
    top: 40%;
    left: -8%;
}

.mentorship-bg-circle.circle-3 {
    width: 400px;
    height: 400px;
    bottom: 10%;
    right: -5%;
}

/* ===================================
   SECTION HEADER
   =================================== */
.mentorship-header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 60px;
    position: relative;
    z-index: 2;
}

.mentorship-tag {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 24px;
    background: linear-gradient(135deg, var(--accent-emerald), var(--accent-mint));
    color: var(--white);
    border-radius: 50px;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 20px;
    box-shadow: 0 4px 15px rgba(21, 152, 149, 0.3);
}

.mentorship-tag i {
    font-size: 16px;
}

.mentorship-title {
    font-family: 'Playfair Display', serif;
    font-size: 48px;
    font-weight: 700;
    color: var(--text-dark);
    line-height: 1.2;
    margin-bottom: 20px;
}

.mentorship-highlight {
    background: linear-gradient(135deg, var(--accent-emerald), var(--accent-mint));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.mentorship-subtitle {
    font-size: 17px;
    color: var(--text-light);
    margin: 0;
    line-height: 1.6;
}

/* ===================================
   MENTORSHIP CARDS GRID
   =================================== */
.mentorship-cards-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 40px;
    margin-bottom: 80px;
    position: relative;
    z-index: 2;
}

/* ===================================
   MENTORSHIP CARD
   =================================== */
.mentorship-card {
    background: var(--white);
    border-radius: 28px;
    padding: 40px 35px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
    border: 2px solid var(--light-cream);
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
}

.mentorship-card:hover {
    transform: translateY(-12px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
    border-color: var(--accent-mint);
}

/* Featured Card */
.mentorship-card.featured {
    background: linear-gradient(135deg, var(--primary-navy) 0%, var(--primary-teal) 100%);
    border-color: var(--accent-gold);
    transform: scale(1.02);
}

.mentorship-card.featured:hover {
    transform: translateY(-12px) scale(1.02);
}

.mentorship-card.featured .mentorship-card-title,
.mentorship-card.featured .mentorship-card-description,
.mentorship-card.featured .focus-title,
.mentorship-card.featured .focus-list li,
.mentorship-card.featured .detail-item,
.mentorship-card.featured .price-label,
.mentorship-card.featured .price-amount {
    color: var(--white);
}

.mentorship-card.featured .focus-list i {
    color: var(--accent-gold);
}

.mentorship-card.featured .mentorship-focus-box {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.2);
}

/* ===================================
   CARD HEADER
   =================================== */
.mentorship-card-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 25px;
}

.mentorship-icon-box {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--accent-emerald), var(--accent-mint));
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    color: var(--white);
    box-shadow: 0 8px 25px rgba(21, 152, 149, 0.3);
}

.mentorship-icon-box.gold {
    background: linear-gradient(135deg, var(--accent-gold), var(--warm-gold));
    box-shadow: 0 8px 25px rgba(212, 175, 55, 0.3);
}

.mentorship-badge {
    padding: 8px 18px;
    background: var(--accent-emerald);
    color: var(--white);
    border-radius: 50px;
    font-size: 13px;
    font-weight: 600;
    box-shadow: 0 4px 12px rgba(21, 152, 149, 0.3);
}

.featured-badge {
    background: var(--accent-gold);
    box-shadow: 0 4px 12px rgba(212, 175, 55, 0.3);
}

/* ===================================
   CARD CONTENT
   =================================== */
.mentorship-card-title {
    font-family: 'Playfair Display', serif;
    font-size: 28px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 15px;
}

.mentorship-card-description {
    font-size: 16px;
    line-height: 1.7;
    color: var(--text-light);
    margin-bottom: 25px;
}

/* ===================================
   FOCUS BOX
   =================================== */
.mentorship-focus-box {
    background: var(--light-cream);
    border-radius: 16px;
    padding: 25px;
    margin-bottom: 25px;
    border: 1px solid rgba(21, 152, 149, 0.1);
}

.focus-title {
    font-size: 17px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 15px;
}

.focus-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.focus-list li {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 15px;
    color: var(--text-dark);
    margin-bottom: 10px;
    padding-left: 5px;
}

.focus-list li:last-child {
    margin-bottom: 0;
}

.focus-list i {
    color: var(--accent-emerald);
    font-size: 16px;
    flex-shrink: 0;
}

/* ===================================
   DETAILS
   =================================== */
.mentorship-details {
    margin-bottom: 25px;
}

.detail-item {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 14px;
    color: var(--text-light);
    margin-bottom: 10px;
}

.detail-item:last-child {
    margin-bottom: 0;
}

.detail-item i {
    color: var(--accent-emerald);
    font-size: 16px;
    flex-shrink: 0;
}

/* ===================================
   PRICING
   =================================== */
.mentorship-pricing {
    margin-bottom: 25px;
    padding: 20px;
    background: linear-gradient(135deg, var(--light-cream), var(--soft-beige));
    border-radius: 12px;
    text-align: center;
}

.price-tag {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.price-label {
    font-size: 14px;
    color: var(--text-light);
    font-weight: 500;
}

.price-amount {
    font-family: 'Playfair Display', serif;
    font-size: 20px;
    font-weight: 700;
    color: var(--text-dark);
}

/* ===================================
   BUTTON
   =================================== */
.mentorship-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    width: 100%;
    padding: 16px 32px;
    background: linear-gradient(135deg, var(--accent-emerald), var(--accent-mint));
    color: var(--white);
    font-size: 16px;
    font-weight: 600;
    text-decoration: none;
    border-radius: 50px;
    box-shadow: 0 8px 25px rgba(21, 152, 149, 0.3);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    letter-spacing: 0.5px;
}

.mentorship-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(21, 152, 149, 0.4);
}

.mentorship-btn i {
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.mentorship-btn:hover i {
    transform: translateX(5px);
}

/* ===================================
   BENEFITS SECTION
   =================================== */
.mentorship-benefits {
    margin-bottom: 80px;
    position: relative;
    z-index: 2;
}

.benefits-title {
    font-family: 'Playfair Display', serif;
    font-size: 36px;
    font-weight: 700;
    color: var(--text-dark);
    text-align: center;
    margin-bottom: 50px;
}

.benefits-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 30px;
}

.benefit-item {
    text-align: center;
    padding: 35px 30px;
    background: var(--light-cream);
    border-radius: 20px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 2px solid transparent;
}

.benefit-item:hover {
    transform: translateY(-8px);
    background: var(--white);
    border-color: var(--accent-mint);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.benefit-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--accent-emerald), var(--accent-mint));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 30px;
    color: var(--white);
    margin: 0 auto 20px;
    box-shadow: 0 8px 25px rgba(21, 152, 149, 0.3);
}

.benefit-item h4 {
    font-size: 20px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 10px;
}

.benefit-item p {
    font-size: 15px;
    color: var(--text-light);
    margin: 0;
    line-height: 1.6;
}

/* ===================================
   PROCESS TIMELINE
   =================================== */
.mentorship-process {
    margin-bottom: 80px;
    position: relative;
    z-index: 2;
}

.process-title {
    font-family: 'Playfair Display', serif;
    font-size: 36px;
    font-weight: 700;
    color: var(--text-dark);
    text-align: center;
    margin-bottom: 50px;
}

.process-timeline {
    max-width: 900px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 0;
}

.timeline-item {
    display: flex;
    align-items: center;
    gap: 25px;
    position: relative;
}

.timeline-number {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--accent-emerald), var(--accent-mint));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    font-weight: 700;
    color: var(--white);
    flex-shrink: 0;
    box-shadow: 0 6px 20px rgba(21, 152, 149, 0.3);
    position: relative;
    z-index: 2;
}

.timeline-content {
    flex: 1;
    padding: 25px;
    background: var(--white);
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    border: 2px solid var(--light-cream);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.timeline-item:hover .timeline-content {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
    border-color: var(--accent-mint);
}

.timeline-item:hover .timeline-number {
    transform: scale(1.1);
}

.timeline-content h4 {
    font-size: 19px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 8px;
}

.timeline-content p {
    font-size: 15px;
    color: var(--text-light);
    margin: 0;
    line-height: 1.6;
}

.timeline-connector {
    width: 3px;
    height: 40px;
    background: linear-gradient(180deg, var(--accent-emerald), var(--accent-mint));
    margin-left: 28px;
    border-radius: 2px;
}

/* ===================================
   FAQ SECTION
   =================================== */
.mentorship-faq {
    margin-bottom: 60px;
    position: relative;
    z-index: 2;
}

.faq-title {
    font-family: 'Playfair Display', serif;
    font-size: 36px;
    font-weight: 700;
    color: var(--text-dark);
    text-align: center;
    margin-bottom: 50px;
}

.faq-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 25px;
}

.faq-item {
    padding: 30px;
    background: var(--white);
    border-radius: 20px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    border: 2px solid var(--light-cream);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.faq-item:hover {
    transform: translateY(-5px);
    border-color: var(--accent-mint);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
}

.faq-question {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 12px;
}

.faq-question i {
    color: var(--accent-emerald);
    font-size: 22px;
    flex-shrink: 0;
}

.faq-question h4 {
    font-size: 18px;
    font-weight: 700;
    color: var(--text-dark);
    margin: 0;
}

.faq-answer {
    font-size: 15px;
    color: var(--text-light);
    margin: 0;
    line-height: 1.7;
    padding-left: 34px;
}

/* ===================================
   FINAL CTA
   =================================== */
.mentorship-final-cta {
    background: linear-gradient(135deg, var(--primary-navy) 0%, var(--primary-teal) 100%);
    border-radius: 28px;
    padding: 60px 40px;
    text-align: center;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.2);
    position: relative;
    overflow: hidden;
    z-index: 2;
}

.mentorship-final-cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 70% 30%, rgba(87, 197, 182, 0.2), transparent 60%);
    pointer-events: none;
}

.final-cta-content {
    position: relative;
    z-index: 2;
}

.final-cta-content h3 {
    font-family: 'Playfair Display', serif;
    font-size: 36px;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 15px;
}

.final-cta-content p {
    font-size: 17px;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 35px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.cta-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    justify-content: center;
}

.cta-button {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 16px 32px;
    font-size: 16px;
    font-weight: 600;
    text-decoration: none;
    border-radius: 50px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    letter-spacing: 0.5px;
}

.cta-button.primary {
    background: linear-gradient(135deg, var(--accent-gold), var(--warm-gold));
    color: var(--white);
    box-shadow: 0 8px 25px rgba(212, 175, 55, 0.4);
}

.cta-button.primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(212, 175, 55, 0.5);
}

.cta-button.secondary {
    background: transparent;
    color: var(--white);
    border: 2px solid rgba(255, 255, 255, 0.5);
}

.cta-button.secondary:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: var(--white);
    transform: translateY(-3px);
}

.cta-button i {
    font-size: 18px;
}

/* ===================================
   RESPONSIVE - TABLET
   =================================== */
@media (min-width: 768px) {
    .mentorship-section {
        padding: 120px 0;
    }

    .mentorship-title {
        font-size: 52px;
    }

    .mentorship-cards-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 40px;
    }

    .benefits-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 35px;
    }

    .faq-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }

    .process-timeline {
        flex-direction: row;
        align-items: flex-start;
    }

    .timeline-item {
        flex-direction: column;
        flex: 1;
        text-align: center;
    }

    .timeline-connector {
        width: 100%;
        height: 3px;
        margin-left: 0;
        margin-top: -30px;
        margin-bottom: -30px;
        position: relative;
        z-index: 1;
    }

    .timeline-number {
        margin: 0 auto;
    }
}

/* ===================================
   RESPONSIVE - DESKTOP
   =================================== */
@media (min-width: 1024px) {
    .mentorship-section {
        padding: 140px 0;
    }

    .mentorship-title {
        font-size: 56px;
    }

    .benefits-grid {
        grid-template-columns: repeat(4, 1fr);
        gap: 30px;
    }
}

/* ===================================
   RESPONSIVE - MOBILE SMALL
   =================================== */
@media (max-width: 480px) {
    .mentorship-section {
        padding: 80px 0;
    }

    .mentorship-title {
        font-size: 36px;
    }

    .mentorship-subtitle {
        font-size: 15px;
    }

    .mentorship-card {
        padding: 30px 25px;
    }

    .mentorship-card-title {
        font-size: 24px;
    }

    .mentorship-card-description {
        font-size: 15px;
    }

    .mentorship-icon-box {
        width: 60px;
        height: 60px;
        font-size: 28px;
    }

    .focus-list li {
        font-size: 14px;
    }

    .benefits-title,
    .process-title,
    .faq-title {
        font-size: 28px;
    }

    .benefit-item {
        padding: 25px 20px;
    }

    .timeline-content {
        padding: 20px;
    }

    .faq-item {
        padding: 25px 20px;
    }

    .mentorship-final-cta {
        padding: 40px 25px;
    }

    .final-cta-content h3 {
        font-size: 28px;
    }

    .final-cta-content p {
        font-size: 15px;
    }

    .cta-buttons {
        flex-direction: column;
    }

    .cta-button {
        width: 100%;
        justify-content: center;
    }
}

/* ===================================
   CONTACT SECTION
   =================================== */
.contact-section {
    position: relative;
    padding: 100px 0;
    background: linear-gradient(180deg, var(--white) 0%, var(--light-cream) 100%);
    overflow: hidden;
}

/* ===================================
   BACKGROUND DECORATION
   =================================== */
.contact-bg-decoration {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 0;
}

.contact-bg-shape {
    position: absolute;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(21, 152, 149, 0.05), transparent 70%);
}

.contact-bg-shape.shape-1 {
    width: 400px;
    height: 400px;
    top: 10%;
    left: -5%;
}

.contact-bg-shape.shape-2 {
    width: 350px;
    height: 350px;
    bottom: 10%;
    right: -5%;
}

/* ===================================
   SECTION HEADER
   =================================== */
.contact-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 60px;
    position: relative;
    z-index: 2;
}

.contact-tag {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 24px;
    background: linear-gradient(135deg, var(--accent-emerald), var(--accent-mint));
    color: var(--white);
    border-radius: 50px;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 20px;
    box-shadow: 0 4px 15px rgba(21, 152, 149, 0.3);
}

.contact-tag i {
    font-size: 16px;
}

.contact-title {
    font-family: 'Playfair Display', serif;
    font-size: 48px;
    font-weight: 700;
    color: var(--text-dark);
    line-height: 1.2;
    margin-bottom: 20px;
}

.contact-highlight {
    background: linear-gradient(135deg, var(--accent-emerald), var(--accent-mint));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.contact-subtitle {
    font-size: 17px;
    color: var(--text-light);
    margin: 0;
    line-height: 1.6;
}

/* ===================================
   CONTACT WRAPPER
   =================================== */
.contact-wrapper {
    display: grid;
    grid-template-columns: 1fr;
    gap: 50px;
    margin-bottom: 60px;
    position: relative;
    z-index: 2;
}

/* ===================================
   CONTACT INFO AREA
   =================================== */
.contact-info-area {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.contact-info-card {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 30px;
    background: var(--white);
    border-radius: 20px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    border: 2px solid var(--light-cream);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.contact-info-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
    border-color: var(--accent-mint);
}

.info-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--accent-emerald), var(--accent-mint));
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    color: var(--white);
    flex-shrink: 0;
    box-shadow: 0 4px 15px rgba(21, 152, 149, 0.3);
}

.info-content {
    flex: 1;
}

.info-content h4 {
    font-size: 18px;
    font-weight: 700;
    color: var(--text-dark);
    margin: 0 0 8px 0;
}

.info-link {
    display: block;
    font-size: 16px;
    font-weight: 600;
    color: var(--accent-emerald);
    text-decoration: none;
    margin-bottom: 5px;
    transition: color 0.3s ease;
}

.info-link:hover {
    color: var(--accent-mint);
}

.info-content p {
    font-size: 14px;
    color: var(--text-light);
    margin: 0;
}

/* ===================================
   SOCIAL SECTION
   =================================== */
.contact-social {
    padding: 30px;
    background: linear-gradient(135deg, var(--primary-navy) 0%, var(--primary-teal) 100%);
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
}

.contact-social h4 {
    font-size: 18px;
    font-weight: 700;
    color: var(--white);
    margin: 0 0 20px 0;
}

.social-links {
    display: flex;
    justify-content: center;
    gap: 12px;
    flex-wrap: wrap;
}

.social-link {
    width: 45px;
    height: 45px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 18px;
    text-decoration: none;
    border: 2px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
}

.social-link:hover {
    background: var(--accent-gold);
    border-color: var(--accent-gold);
    transform: translateY(-3px);
}

/* ===================================
   CONTACT FORM AREA
   =================================== */
.contact-form-area {
    position: relative;
}

.form-container {
    background: var(--white);
    border-radius: 24px;
    padding: 40px 35px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
    border: 2px solid var(--light-cream);
}

.form-title {
    font-family: 'Playfair Display', serif;
    font-size: 28px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 10px;
}

.form-description {
    font-size: 15px;
    color: var(--text-light);
    margin-bottom: 30px;
}

/* ===================================
   FORM STYLES
   =================================== */
.contact-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.form-group label {
    font-size: 14px;
    font-weight: 600;
    color: var(--text-dark);
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 14px 18px;
    font-size: 15px;
    color: var(--text-dark);
    background: var(--light-cream);
    border: 2px solid transparent;
    border-radius: 12px;
    transition: all 0.3s ease;
    font-family: 'Poppins', sans-serif;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    background: var(--white);
    border-color: var(--accent-emerald);
    box-shadow: 0 0 0 4px rgba(21, 152, 149, 0.1);
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

.submit-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 16px 40px;
    background: linear-gradient(135deg, var(--accent-emerald), var(--accent-mint));
    color: var(--white);
    font-size: 16px;
    font-weight: 600;
    border: none;
    border-radius: 50px;
    cursor: pointer;
    box-shadow: 0 8px 25px rgba(21, 152, 149, 0.3);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    letter-spacing: 0.5px;
}

.submit-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(21, 152, 149, 0.4);
}

.submit-btn i {
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.submit-btn:hover i {
    transform: translateX(5px);
}

/* ===================================
   TRUST SECTION
   =================================== */
.trust-section {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px;
    padding: 40px 30px;
    background: var(--white);
    border-radius: 20px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    position: relative;
    z-index: 2;
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 15px;
    color: var(--text-dark);
    font-weight: 500;
}

.trust-item i {
    font-size: 20px;
    color: var(--accent-emerald);
}

/* ===================================
   RESPONSIVE - TABLET
   =================================== */
@media (min-width: 768px) {
    .contact-section {
        padding: 120px 0;
    }

    .contact-title {
        font-size: 52px;
    }

    .contact-wrapper {
        grid-template-columns: 1fr 1.2fr;
        gap: 60px;
    }

    .form-row {
        grid-template-columns: repeat(2, 1fr);
    }

    .form-container {
        padding: 45px 40px;
    }
}

/* ===================================
   RESPONSIVE - DESKTOP
   =================================== */
@media (min-width: 1024px) {
    .contact-section {
        padding: 140px 0;
    }

    .contact-title {
        font-size: 56px;
    }

    .contact-wrapper {
        gap: 80px;
    }
}

/* ===================================
   RESPONSIVE - MOBILE SMALL
   =================================== */
@media (max-width: 480px) {
    .contact-section {
        padding: 80px 0;
    }

    .contact-title {
        font-size: 36px;
    }

    .contact-subtitle {
        font-size: 15px;
    }

    .contact-info-card {
        padding: 25px 20px;
    }

    .info-icon {
        width: 50px;
        height: 50px;
        font-size: 20px;
    }

    .form-container {
        padding: 30px 25px;
    }

    .form-title {
        font-size: 24px;
    }

    .trust-section {
        flex-direction: column;
        padding: 30px 20px;
    }

    .trust-item {
        justify-content: center;
        text-align: center;
    }
}

/* ===================================
   FORM VALIDATION STYLES
   =================================== */
.form-group input:invalid:not(:placeholder-shown),
.form-group select:invalid:not(:placeholder-shown),
.form-group textarea:invalid:not(:placeholder-shown) {
    border-color: #e74c3c;
}

.form-group input:valid:not(:placeholder-shown),
.form-group select:valid:not(:placeholder-shown),
.form-group textarea:valid:not(:placeholder-shown) {
    border-color: var(--accent-emerald);
}

/* ===================================
   LOADING STATE
   =================================== */
.submit-btn:disabled {
    opacity: 0.6;
    cursor: not-allowed;
    transform: none;
}

.submit-btn:disabled:hover {
    transform: none;
    box-shadow: 0 8px 25px rgba(21, 152, 149, 0.3);
}

/* ===================================
   ANIMATIONS
   =================================== */
@keyframes formFadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.form-group {
    animation: formFadeIn 0.5s ease-out backwards;
}

.form-group:nth-child(1) { animation-delay: 0.1s; }
.form-group:nth-child(2) { animation-delay: 0.15s; }
.form-group:nth-child(3) { animation-delay: 0.2s; }
.form-group:nth-child(4) { animation-delay: 0.25s; }
.form-group:nth-child(5) { animation-delay: 0.3s; }
.form-group:nth-child(6) { animation-delay: 0.35s; }

/* ===================================
   ACCESSIBILITY ENHANCEMENTS
   =================================== */
.form-group input:focus-visible,
.form-group select:focus-visible,
.form-group textarea:focus-visible {
    outline: 2px solid var(--accent-emerald);
    outline-offset: 2px;
}

.submit-btn:focus-visible {
    outline: 3px solid var(--accent-gold);
    outline-offset: 4px;
}

/* ===================================
   PLACEHOLDER STYLES
   =================================== */
.form-group input::placeholder,
.form-group textarea::placeholder {
    color: var(--text-light);
    opacity: 0.6;
}

.form-group input:focus::placeholder,
.form-group textarea:focus::placeholder {
    opacity: 0.4;
}

/* ===================================
   SELECT DROPDOWN ARROW
   =================================== */
.form-group select {
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%23666' d='M6 9L1 4h10z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 15px center;
    padding-right: 40px;
}

/* ===================================
   ERROR MESSAGE STYLES
   =================================== */
.error-message {
    font-size: 13px;
    color: #e74c3c;
    margin-top: 5px;
    display: none;
}

.form-group.error .error-message {
    display: block;
}

.form-group.error input,
.form-group.error select,
.form-group.error textarea {
    border-color: #e74c3c;
}

/* ===================================
   SUCCESS MESSAGE STYLES
   =================================== */
.success-message {
    padding: 20px;
    background: linear-gradient(135deg, rgba(21, 152, 149, 0.1), rgba(87, 197, 182, 0.1));
    border-radius: 12px;
    border-left: 4px solid var(--accent-emerald);
    color: var(--accent-emerald);
    font-weight: 600;
    margin-top: 20px;
    display: none;
}

.success-message.show {
    display: block;
    animation: slideInUp 0.5s ease-out;
}

@keyframes slideInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ===================================
   HOVER EFFECTS FOR INFO CARDS
   =================================== */
.contact-info-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(21, 152, 149, 0.03), rgba(87, 197, 182, 0.03));
    opacity: 0;
    transition: opacity 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    border-radius: 20px;
    pointer-events: none;
}

.contact-info-card:hover::before {
    opacity: 1;
}

/* ===================================
   ICON ANIMATION ON HOVER
   =================================== */
.info-icon {
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.contact-info-card:hover .info-icon {
    transform: scale(1.1) rotate(5deg);
}

.social-link {
    position: relative;
    overflow: hidden;
}

.social-link::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--accent-gold), var(--warm-gold));
    transform: scale(0);
    transition: transform 0.3s ease;
    border-radius: 50%;
}

.social-link:hover::before {
    transform: scale(1);
}

.social-link i {
    position: relative;
    z-index: 2;
}

/* ===================================
   FOOTER SECTION
   =================================== */
.footer-section {
    position: relative;
    background: linear-gradient(135deg, var(--primary-navy) 0%, var(--primary-teal) 100%);
    color: var(--white);
    padding: 80px 0 0;
    overflow: hidden;
}

.footer-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 20% 50%, rgba(87, 197, 182, 0.1), transparent 50%);
    pointer-events: none;
}

/* ===================================
   FOOTER TOP
   =================================== */
.footer-top {
    display: grid;
    grid-template-columns: 1fr;
    gap: 40px;
    margin-bottom: 50px;
    position: relative;
    z-index: 2;
}

/* ===================================
   FOOTER ABOUT
   =================================== */
.footer-about {
    max-width: 400px;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
}

.footer-logo img {
    width: 60px;
    height: 60px;
    object-fit: contain;
}

.footer-logo-text {
    display: flex;
    flex-direction: column;
}

.logo-main {
    font-family: 'Playfair Display', serif;
    font-size: 20px;
    font-weight: 700;
    color: var(--white);
    letter-spacing: 1.5px;
    line-height: 1;
}

.logo-sub {
    font-family: 'Playfair Display', serif;
    font-size: 13px;
    font-weight: 600;
    color: var(--accent-mint);
    letter-spacing: 2.5px;
    line-height: 1;
    margin-top: 3px;
}

.footer-tagline {
    font-size: 15px;
    font-style: italic;
    color: var(--accent-mint);
    margin-bottom: 15px;
    font-weight: 500;
}

.footer-description {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.7;
    margin: 0;
}

/* ===================================
   FOOTER LINKS SECTIONS
   =================================== */
.footer-links,
.footer-services,
.footer-contact {
    position: relative;
}

.footer-links h4,
.footer-services h4,
.footer-contact h4 {
    font-family: 'Playfair Display', serif;
    font-size: 20px;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 20px;
    position: relative;
    display: inline-block;
}

.footer-links h4::after,
.footer-services h4::after,
.footer-contact h4::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 40px;
    height: 3px;
    background: var(--accent-gold);
    border-radius: 2px;
}

.footer-links ul,
.footer-services ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links ul li,
.footer-services ul li {
    margin-bottom: 12px;
}

.footer-links ul li:last-child,
.footer-services ul li:last-child {
    margin-bottom: 0;
}

.footer-links a,
.footer-services a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    font-size: 14px;
    transition: all 0.3s ease;
    display: inline-block;
}

.footer-links a:hover,
.footer-services a:hover {
    color: var(--accent-gold);
    transform: translateX(5px);
}

/* ===================================
   CONTACT LIST
   =================================== */
.contact-list {
    list-style: none;
    padding: 0;
    margin: 0 0 25px 0;
}

.contact-list li {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 15px;
    font-size: 14px;
    color: rgba(255, 255, 255, 0.8);
}

.contact-list li:last-child {
    margin-bottom: 0;
}

.contact-list i {
    color: var(--accent-mint);
    font-size: 16px;
    width: 20px;
    flex-shrink: 0;
}

.contact-list a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact-list a:hover {
    color: var(--accent-gold);
}

/* ===================================
   FOOTER SOCIAL
   =================================== */
.footer-social {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.footer-social a {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 16px;
    text-decoration: none;
    border: 2px solid rgba(255, 255, 255, 0.15);
    transition: all 0.3s ease;
}

.footer-social a:hover {
    background: var(--accent-gold);
    border-color: var(--accent-gold);
    transform: translateY(-3px);
}

/* ===================================
   FOOTER BOTTOM
   =================================== */
.footer-bottom {
    position: relative;
    z-index: 2;
}

.footer-divider {
    width: 100%;
    height: 1px;
    background: rgba(255, 255, 255, 0.15);
    margin-bottom: 30px;
}

.footer-bottom-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
    padding-bottom: 30px;
    text-align: center;
}

.copyright {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.7);
    margin: 0;
}

.footer-credits {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    color: rgba(255, 255, 255, 0.6);
}

.footer-credits a {
    color: var(--accent-gold);
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
}

.footer-credits a:hover {
    color: var(--white);
}

/* ===================================
   BACK TO TOP BUTTON
   =================================== */
.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--accent-emerald), var(--accent-mint));
    color: var(--white);
    border: none;
    border-radius: 50%;
    font-size: 20px;
    cursor: pointer;
    box-shadow: 0 4px 15px rgba(21, 152, 149, 0.4);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 999;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
}

.back-to-top.show {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.back-to-top:hover {
    background: linear-gradient(135deg, var(--accent-gold), var(--warm-gold));
    transform: translateY(-5px);
    box-shadow: 0 6px 20px rgba(212, 175, 55, 0.5);
}

/* ===================================
   RESPONSIVE - TABLET
   =================================== */
@media (min-width: 768px) {
    .footer-section {
        padding: 100px 0 0;
    }

    .footer-top {
        grid-template-columns: repeat(2, 1fr);
        gap: 50px;
    }

    .footer-bottom-content {
        flex-direction: row;
        justify-content: space-between;
    }
}

/* ===================================
   RESPONSIVE - DESKTOP
   =================================== */
@media (min-width: 1024px) {
    .footer-top {
        grid-template-columns: 2fr 1fr 1fr 1.5fr;
        gap: 60px;
    }
}

/* ===================================
   RESPONSIVE - MOBILE SMALL
   =================================== */
@media (max-width: 480px) {
    .footer-section {
        padding: 60px 0 0;
    }

    .footer-top {
        gap: 35px;
    }

    .footer-logo img {
        width: 50px;
        height: 50px;
    }

    .logo-main {
        font-size: 18px;
    }

    .logo-sub {
        font-size: 12px;
    }

    .back-to-top {
        width: 45px;
        height: 45px;
        bottom: 20px;
        right: 20px;
        font-size: 18px;
    }
}

/* ===================================
   FOOTER ANIMATIONS
   =================================== */
@keyframes footerFadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.footer-about,
.footer-links,
.footer-services,
.footer-contact {
    animation: footerFadeInUp 0.6s ease-out backwards;
}

.footer-about {
    animation-delay: 0.1s;
}

.footer-links {
    animation-delay: 0.2s;
}

.footer-services {
    animation-delay: 0.3s;
}

.footer-contact {
    animation-delay: 0.4s;
}

/* ===================================
   FOOTER HOVER EFFECTS
   =================================== */
.footer-links a::before,
.footer-services a::before {
    content: '→';
    margin-right: 5px;
    opacity: 0;
    transform: translateX(-10px);
    transition: all 0.3s ease;
    display: inline-block;
}

.footer-links a:hover::before,
.footer-services a:hover::before {
    opacity: 1;
    transform: translateX(0);
}

/* ===================================
   FOOTER SOCIAL ANIMATION
   =================================== */
.footer-social a {
    position: relative;
    overflow: hidden;
}

.footer-social a::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--accent-gold), var(--warm-gold));
    transform: scale(0);
    transition: transform 0.3s ease;
    border-radius: 50%;
}

.footer-social a:hover::before {
    transform: scale(1);
}

.footer-social a i {
    position: relative;
    z-index: 2;
}

/* ===================================
   BACK TO TOP BUTTON PULSE
   =================================== */
@keyframes backToTopPulse {
    0%, 100% {
        box-shadow: 0 4px 15px rgba(21, 152, 149, 0.4);
    }
    50% {
        box-shadow: 0 4px 20px rgba(21, 152, 149, 0.6);
    }
}

.back-to-top.show {
    animation: backToTopPulse 2s infinite;
}

/* ===================================
   FOOTER LINK UNDERLINE EFFECT
   =================================== */
.footer-links a,
.footer-services a {
    position: relative;
}

.footer-links a::after,
.footer-services a::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 1px;
    background: var(--accent-gold);
    transition: width 0.3s ease;
}

.footer-links a:hover::after,
.footer-services a:hover::after {
    width: 100%;
}

/* ===================================
   SCROLL BEHAVIOR FOR BACK TO TOP
   =================================== */
@media (prefers-reduced-motion: reduce) {
    .back-to-top {
        transition: opacity 0.3s, visibility 0.3s;
    }
}

/* ===================================
   FOOTER LOGO GLOW EFFECT
   =================================== */
.footer-logo {
    position: relative;
}

.footer-logo::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 30px;
    transform: translate(-50%, -50%);
    width: 80px;
    height: 80px;
    background: radial-gradient(circle, rgba(87, 197, 182, 0.2), transparent 70%);
    border-radius: 50%;
    pointer-events: none;
    animation: logoGlowPulse 3s ease-in-out infinite;
}

@keyframes logoGlowPulse {
    0%, 100% {
        opacity: 0.5;
        transform: translate(-50%, -50%) scale(1);
    }
    50% {
        opacity: 0.8;
        transform: translate(-50%, -50%) scale(1.1);
    }
}

/* ===================================
   CONTACT LIST ICONS ANIMATION
   =================================== */
.contact-list i {
    transition: all 0.3s ease;
}

.contact-list li:hover i {
    color: var(--accent-gold);
    transform: scale(1.2);
}

/* ===================================
   FOOTER SECTION HEADING STYLES
   =================================== */
.footer-links h4,
.footer-services h4,
.footer-contact h4 {
    transition: color 0.3s ease;
}

.footer-links:hover h4,
.footer-services:hover h4,
.footer-contact:hover h4 {
    color: var(--accent-gold);
}

/* ===================================
   FOOTER CREDITS LINK UNDERLINE
   =================================== */
.footer-credits a {
    position: relative;
}

.footer-credits a::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 1px;
    background: var(--white);
    transition: width 0.3s ease;
}

.footer-credits a:hover::after {
    width: 100%;
}

/* ===================================
   BACK TO TOP ICON ANIMATION
   =================================== */
.back-to-top i {
    transition: transform 0.3s ease;
}

.back-to-top:hover i {
    transform: translateY(-3px);
}

/* ===================================
   SMOOTH SCROLL BEHAVIOR
   =================================== */
html {
    scroll-behavior: auto; /* Removed smooth scroll */
}

@media (prefers-reduced-motion: reduce) {
    html {
        scroll-behavior: auto;
    }
}

/* ===================================
   FOOTER GRADIENT OVERLAY
   =================================== */
.footer-section::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 200px;
    background: linear-gradient(to top, rgba(15, 36, 56, 0.5), transparent);
    pointer-events: none;
    z-index: 1;
}

/* ===================================
   ACCESSIBILITY - FOCUS STATES
   =================================== */
.footer-links a:focus,
.footer-services a:focus,
.contact-list a:focus,
.footer-social a:focus,
.footer-credits a:focus {
    outline: 2px solid var(--accent-gold);
    outline-offset: 4px;
}

.back-to-top:focus {
    outline: 3px solid var(--accent-gold);
    outline-offset: 4px;
}

/* ===================================
   PRINT STYLES
   =================================== */
@media print {
    .footer-section {
        background: #fff;
        color: #000;
    }

    .back-to-top {
        display: none;
    }

    .footer-social {
        display: none;
    }
}

/* ===================================
   PRELOADER
   =================================== */
.preloader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: linear-gradient(135deg, var(--primary-navy) 0%, var(--primary-teal) 50%, var(--accent-emerald) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 99999;
    transition: opacity 0.6s ease, visibility 0.6s ease;
}

.preloader.fade-out {
    opacity: 0;
    visibility: hidden;
}

.preloader::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 50% 50%, rgba(87, 197, 182, 0.2), transparent 70%);
    animation: preloaderPulse 3s ease-in-out infinite;
}

@keyframes preloaderPulse {
    0%, 100% {
        opacity: 0.3;
        transform: scale(1);
    }
    50% {
        opacity: 0.6;
        transform: scale(1.05);
    }
}

/* ===================================
   PRELOADER CONTENT
   =================================== */
.preloader-content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 400px;
    padding: 0 20px;
    animation: preloaderContentFade 0.8s ease-out;
}

@keyframes preloaderContentFade {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ===================================
   PRELOADER LOGO
   =================================== */
.preloader-logo {
    position: relative;
    width: 100px;
    height: 100px;
    margin: 0 auto 30px;
    animation: logoFloat 3s ease-in-out infinite;
}

@keyframes logoFloat {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-10px);
    }
}

.preloader-logo img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    position: relative;
    z-index: 3;
    animation: logoRotate 4s linear infinite;
}

@keyframes logoRotate {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
    }
}

/* ===================================
   LOGO RINGS
   =================================== */
.logo-ring-1,
.logo-ring-2,
.logo-ring-3 {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    border-radius: 50%;
    border: 2px solid;
    animation: ringExpand 2s ease-in-out infinite;
}

.logo-ring-1 {
    width: 110px;
    height: 110px;
    border-color: var(--accent-mint);
    animation-delay: 0s;
}

.logo-ring-2 {
    width: 130px;
    height: 130px;
    border-color: var(--accent-gold);
    animation-delay: 0.3s;
}

.logo-ring-3 {
    width: 150px;
    height: 150px;
    border-color: var(--accent-mint);
    animation-delay: 0.6s;
}

@keyframes ringExpand {
    0%, 100% {
        transform: translate(-50%, -50%) scale(1);
        opacity: 0.3;
    }
    50% {
        transform: translate(-50%, -50%) scale(1.1);
        opacity: 0.6;
    }
}

/* ===================================
   PRELOADER TITLE
   =================================== */
.preloader-title {
    font-family: 'Playfair Display', serif;
    font-size: 32px;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 15px;
    display: flex;
    flex-direction: column;
    gap: 5px;
    line-height: 1;
}

.title-word {
    display: inline-block;
    opacity: 0;
    animation: titleWordFade 0.6s ease-out forwards;
    letter-spacing: 2px;
}

.title-word:nth-child(1) {
    animation-delay: 0.3s;
}

.title-word:nth-child(2) {
    animation-delay: 0.5s;
    color: var(--accent-gold);
    letter-spacing: 3px;
}

@keyframes titleWordFade {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ===================================
   PRELOADER TAGLINE
   =================================== */
.preloader-tagline {
    font-size: 14px;
    font-style: italic;
    color: var(--accent-mint);
    margin-bottom: 30px;
    opacity: 0;
    animation: taglineFade 0.6s ease-out 0.9s forwards;
}

@keyframes taglineFade {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

/* ===================================
   PRELOADER SPINNER
   =================================== */
.preloader-spinner {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 8px;
    margin-bottom: 25px;
    opacity: 0;
    animation: spinnerFade 0.6s ease-out 1.1s forwards;
}

@keyframes spinnerFade {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

.spinner-circle {
    width: 12px;
    height: 12px;
    background: var(--accent-gold);
    border-radius: 50%;
    animation: spinnerBounce 1.2s ease-in-out infinite;
}

.spinner-circle:nth-child(1) {
    animation-delay: 0s;
}

.spinner-circle:nth-child(2) {
    animation-delay: 0.2s;
    background: var(--accent-mint);
}

.spinner-circle:nth-child(3) {
    animation-delay: 0.4s;
}

@keyframes spinnerBounce {
    0%, 80%, 100% {
        transform: scale(0.8);
        opacity: 0.5;
    }
    40% {
        transform: scale(1.2);
        opacity: 1;
    }
}

/* ===================================
   PROGRESS BAR
   =================================== */
.preloader-progress {
    width: 100%;
    height: 4px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    overflow: hidden;
    margin-bottom: 15px;
    opacity: 0;
    animation: progressFade 0.6s ease-out 1.3s forwards;
}

@keyframes progressFade {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

.progress-bar {
    width: 0;
    height: 100%;
    background: linear-gradient(90deg, var(--accent-gold), var(--accent-mint), var(--accent-gold));
    background-size: 200% 100%;
    border-radius: 10px;
    animation: progressBarFill 2.5s ease-out forwards, progressBarShine 1.5s linear infinite;
}

@keyframes progressBarFill {
    from {
        width: 0;
    }
    to {
        width: 100%;
    }
}

@keyframes progressBarShine {
    from {
        background-position: 0% 0%;
    }
    to {
        background-position: 200% 0%;
    }
}

/* ===================================
   PRELOADER TEXT
   =================================== */
.preloader-text {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.7);
    margin: 0;
    opacity: 0;
    animation: textFade 0.6s ease-out 1.5s forwards;
    letter-spacing: 1px;
}

@keyframes textFade {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

/* ===================================
   RESPONSIVE - TABLET
   =================================== */
@media (min-width: 768px) {
    .preloader-logo {
        width: 120px;
        height: 120px;
    }

    .logo-ring-1 {
        width: 130px;
        height: 130px;
    }

    .logo-ring-2 {
        width: 150px;
        height: 150px;
    }

    .logo-ring-3 {
        width: 170px;
        height: 170px;
    }

    .preloader-title {
        font-size: 38px;
    }

    .preloader-tagline {
        font-size: 15px;
    }
}

/* ===================================
   RESPONSIVE - DESKTOP
   =================================== */
@media (min-width: 1024px) {
    .preloader-logo {
        width: 140px;
        height: 140px;
    }

    .logo-ring-1 {
        width: 150px;
        height: 150px;
    }

    .logo-ring-2 {
        width: 170px;
        height: 170px;
    }

    .logo-ring-3 {
        width: 190px;
        height: 190px;
    }

    .preloader-title {
        font-size: 42px;
    }

    .preloader-tagline {
        font-size: 16px;
    }
}

/* ===================================
   RESPONSIVE - MOBILE SMALL
   =================================== */
@media (max-width: 480px) {
    .preloader-logo {
        width: 80px;
        height: 80px;
        margin-bottom: 25px;
    }

    .logo-ring-1 {
        width: 90px;
        height: 90px;
    }

    .logo-ring-2 {
        width: 110px;
        height: 110px;
    }

    .logo-ring-3 {
        width: 130px;
        height: 130px;
    }

    .preloader-title {
        font-size: 26px;
        gap: 3px;
    }

    .preloader-tagline {
        font-size: 12px;
        margin-bottom: 25px;
    }

    .spinner-circle {
        width: 10px;
        height: 10px;
    }

    .preloader-progress {
        height: 3px;
    }

    .preloader-text {
        font-size: 12px;
    }
}

/* ===================================
   RESPONSIVE - LANDSCAPE MOBILE
   =================================== */
@media (max-height: 600px) and (orientation: landscape) {
    .preloader-logo {
        width: 70px;
        height: 70px;
        margin-bottom: 15px;
    }

    .preloader-title {
        font-size: 22px;
        margin-bottom: 10px;
    }

    .preloader-tagline {
        font-size: 11px;
        margin-bottom: 15px;
    }

    .preloader-spinner {
        margin-bottom: 15px;
    }
}

/* ===================================
   REDUCED MOTION SUPPORT
   =================================== */
@media (prefers-reduced-motion: reduce) {
    .preloader-logo img,
    .logo-ring-1,
    .logo-ring-2,
    .logo-ring-3,
    .spinner-circle {
        animation: none !important;
    }

    .preloader-logo {
        animation: none !important;
    }

    .preloader::before {
        animation: none !important;
    }
}

/* ===================================
   PRELOADER BACKGROUND EFFECTS
   =================================== */
.preloader::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 80% 20%, rgba(212, 175, 55, 0.1), transparent 50%),
                radial-gradient(circle at 20% 80%, rgba(87, 197, 182, 0.1), transparent 50%);
    pointer-events: none;
    animation: backgroundShift 10s ease-in-out infinite;
}

@keyframes backgroundShift {
    0%, 100% {
        opacity: 0.5;
    }
    50% {
        opacity: 0.8;
    }
}

/* ===================================
   LOGO GLOW EFFECT
   =================================== */
.preloader-logo::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 120%;
    height: 120%;
    background: radial-gradient(circle, rgba(87, 197, 182, 0.3), transparent 70%);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    animation: logoGlow 2s ease-in-out infinite;
}

@keyframes logoGlow {
    0%, 100% {
        transform: translate(-50%, -50%) scale(1);
        opacity: 0.5;
    }
    50% {
        transform: translate(-50%, -50%) scale(1.2);
        opacity: 0.8;
    }
}

/* ===================================
   TITLE WORD GLOW
   =================================== */
.title-word {
    text-shadow: 0 0 20px rgba(87, 197, 182, 0.5),
                 0 0 40px rgba(87, 197, 182, 0.3);
}

.title-word:nth-child(2) {
    text-shadow: 0 0 20px rgba(212, 175, 55, 0.5),
                 0 0 40px rgba(212, 175, 55, 0.3);
}

/* ===================================
   SPINNER SHADOW EFFECT
   =================================== */
.spinner-circle {
    box-shadow: 0 0 10px rgba(212, 175, 55, 0.5);
}

.spinner-circle:nth-child(2) {
    box-shadow: 0 0 10px rgba(87, 197, 182, 0.5);
}

/* ===================================
   PROGRESS BAR GLOW
   =================================== */
.progress-bar {
    box-shadow: 0 0 10px rgba(87, 197, 182, 0.5),
                0 0 20px rgba(212, 175, 55, 0.3);
}

/* ===================================
   SMOOTH FADE OUT
   =================================== */
.preloader.fade-out .preloader-content {
    animation: contentFadeOut 0.6s ease-out forwards;
}

@keyframes contentFadeOut {
    from {
        opacity: 1;
        transform: scale(1);
    }
    to {
        opacity: 0;
        transform: scale(0.9);
    }
}

/* ===================================
   Z-INDEX MANAGEMENT
   =================================== */
.preloader-logo {
    z-index: 10;
}

.preloader-content > * {
    position: relative;
    z-index: 5;
}

/* ===================================
   ACCESSIBILITY - HIGH CONTRAST
   =================================== */
@media (prefers-contrast: high) {
    .preloader {
        background: #000;
    }

    .preloader-title,
    .preloader-tagline,
    .preloader-text {
        color: #fff;
    }
}

/* ===================================
   LOADING STATE ENHANCEMENT
   =================================== */
.preloader-content {
    will-change: opacity, transform;
}

.preloader-logo img,
.logo-ring-1,
.logo-ring-2,
.logo-ring-3 {
    will-change: transform;
}

/* ===================================
   PERFORMANCE OPTIMIZATION
   =================================== */
.preloader,
.preloader::before,
.preloader::after {
    backface-visibility: hidden;
    perspective: 1000px;
}

/* ===================================
   AOS (ANIMATE ON SCROLL) STYLES
   =================================== */
[data-aos] {
    opacity: 0;
    transition: opacity 0.8s cubic-bezier(0.4, 0, 0.2, 1),
                transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

[data-aos="fade-up"] {
    transform: translateY(40px);
}

[data-aos="fade-down"] {
    transform: translateY(-40px);
}

[data-aos="fade-left"] {
    transform: translateX(50px);
}

[data-aos="fade-right"] {
    transform: translateX(-50px);
}

[data-aos].aos-animate {
    opacity: 1;
    transform: translate(0, 0);
}

/* ===================================
   CUSTOM SCROLLBAR
   =================================== */
::-webkit-scrollbar {
    width: 12px;
    height: 12px;
}

::-webkit-scrollbar-track {
    background: var(--light-cream);
}

::-webkit-scrollbar-thumb {
    background: linear-gradient(180deg, var(--accent-emerald), var(--accent-mint));
    border-radius: 10px;
    border: 2px solid var(--light-cream);
}

::-webkit-scrollbar-thumb:hover {
    background: linear-gradient(180deg, var(--accent-gold), var(--warm-gold));
}

/* Firefox Scrollbar */
* {
    scrollbar-width: thin;
    scrollbar-color: var(--accent-emerald) var(--light-cream);
}

/* ===================================
   SELECTION STYLES
   =================================== */
::selection {
    background: var(--accent-emerald);
    color: var(--white);
}

::-moz-selection {
    background: var(--accent-emerald);
    color: var(--white);
}

/* ===================================
   IMAGE LAZY LOADING
   =================================== */
img[loading="lazy"] {
    opacity: 0;
    transition: opacity 0.5s ease-in-out;
}

img[loading="lazy"].loaded {
    opacity: 1;
}

/* ===================================
   SMOOTH SCROLL OFFSET
   =================================== */
section {
    scroll-margin-top: 100px;
}

/* ===================================
   VISIBILITY UTILITIES
   =================================== */
.hidden {
    display: none !important;
}

.invisible {
    visibility: hidden !important;
}

.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border-width: 0;
}

/* ===================================
   LOADING STATES
   =================================== */
.loading {
    position: relative;
    pointer-events: none;
    opacity: 0.6;
}

.loading::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 30px;
    height: 30px;
    margin: -15px 0 0 -15px;
    border: 3px solid var(--light-cream);
    border-top-color: var(--accent-emerald);
    border-radius: 50%;
    animation: spin 0.8s linear infinite;
}

@keyframes spin {
    to {
        transform: rotate(360deg);
    }
}

/* ===================================
   SKELETON LOADING
   =================================== */
.skeleton {
    background: linear-gradient(90deg,
        var(--light-cream) 25%,
        var(--soft-beige) 50%,
        var(--light-cream) 75%
    );
    background-size: 200% 100%;
    animation: shimmer 1.5s infinite;
    border-radius: 8px;
}

@keyframes shimmer {
    0% {
        background-position: -200% 0;
    }
    100% {
        background-position: 200% 0;
    }
}

/* ===================================
   FOCUS VISIBLE STYLES
   =================================== */
:focus-visible {
    outline: 2px solid var(--accent-gold);
    outline-offset: 4px;
}

button:focus-visible,
a:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible {
    outline: 2px solid var(--accent-gold);
    outline-offset: 4px;
}

/* ===================================
   DISABLED STATES
   =================================== */
button:disabled,
input:disabled,
select:disabled,
textarea:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

/* ===================================
   TRANSITIONS FOR PAGE CHANGES
   =================================== */
.page-transition {
    animation: pageTransitionFadeIn 0.5s ease-out;
}

@keyframes pageTransitionFadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ===================================
   NO SCROLL CLASS
   =================================== */
body.no-scroll {
    overflow: hidden;
}

/* ===================================
   TEXT UTILITIES
   =================================== */
.text-center {
    text-align: center;
}

.text-left {
    text-align: left;
}

.text-right {
    text-align: right;
}

.text-uppercase {
    text-transform: uppercase;
}

.text-lowercase {
    text-transform: lowercase;
}

.text-capitalize {
    text-transform: capitalize;
}

/* ===================================
   MARGIN & PADDING UTILITIES
   =================================== */
.mt-0 { margin-top: 0; }
.mt-1 { margin-top: 0.25rem; }
.mt-2 { margin-top: 0.5rem; }
.mt-3 { margin-top: 1rem; }
.mt-4 { margin-top: 1.5rem; }
.mt-5 { margin-top: 3rem; }

.mb-0 { margin-bottom: 0; }
.mb-1 { margin-bottom: 0.25rem; }
.mb-2 { margin-bottom: 0.5rem; }
.mb-3 { margin-bottom: 1rem; }
.mb-4 { margin-bottom: 1.5rem; }
.mb-5 { margin-bottom: 3rem; }

.pt-0 { padding-top: 0; }
.pt-1 { padding-top: 0.25rem; }
.pt-2 { padding-top: 0.5rem; }
.pt-3 { padding-top: 1rem; }
.pt-4 { padding-top: 1.5rem; }
.pt-5 { padding-top: 3rem; }

.pb-0 { padding-bottom: 0; }
.pb-1 { padding-bottom: 0.25rem; }
.pb-2 { padding-bottom: 0.5rem; }
.pb-3 { padding-bottom: 1rem; }
.pb-4 { padding-bottom: 1.5rem; }
.pb-5 { padding-bottom: 3rem; }

/* ===================================
   DISPLAY UTILITIES
   =================================== */
.d-none { display: none; }
.d-block { display: block; }
.d-inline { display: inline; }
.d-inline-block { display: inline-block; }
.d-flex { display: flex; }
.d-grid { display: grid; }

/* ===================================
   FLEX UTILITIES
   =================================== */
.flex-row { flex-direction: row; }
.flex-column { flex-direction: column; }
.flex-wrap { flex-wrap: wrap; }
.justify-start { justify-content: flex-start; }
.justify-center { justify-content: center; }
.justify-end { justify-content: flex-end; }
.justify-between { justify-content: space-between; }
.align-start { align-items: flex-start; }
.align-center { align-items: center; }
.align-end { align-items: flex-end; }

/* ===================================
   RESPONSIVE DISPLAY UTILITIES
   =================================== */
@media (max-width: 767px) {
    .d-md-none { display: none; }
    .d-md-block { display: block; }
}

@media (min-width: 768px) {
    .d-md-none { display: none; }
    .d-md-block { display: block; }
}

@media (min-width: 1024px) {
    .d-lg-none { display: none; }
    .d-lg-block { display: block; }
}

/* ===================================
   POINTER EVENTS
   =================================== */
.pointer-events-none {
    pointer-events: none;
}

.pointer-events-auto {
    pointer-events: auto;
}

/* ===================================
   OVERFLOW UTILITIES
   =================================== */
.overflow-hidden {
    overflow: hidden;
}

.overflow-auto {
    overflow: auto;
}

.overflow-scroll {
    overflow: scroll;
}

/* ===================================
   POSITION UTILITIES
   =================================== */
.position-relative {
    position: relative;
}

.position-absolute {
    position: absolute;
}

.position-fixed {
    position: fixed;
}

.position-sticky {
    position: sticky;
}

/* ===================================
   Z-INDEX UTILITIES
   =================================== */
.z-0 { z-index: 0; }
.z-10 { z-index: 10; }
.z-20 { z-index: 20; }
.z-30 { z-index: 30; }
.z-40 { z-index: 40; }
.z-50 { z-index: 50; }
.z-999 { z-index: 999; }
.z-9999 { z-index: 9999; }

/* ===================================
   OPACITY UTILITIES
   =================================== */
.opacity-0 { opacity: 0; }
.opacity-25 { opacity: 0.25; }
.opacity-50 { opacity: 0.5; }
.opacity-75 { opacity: 0.75; }
.opacity-100 { opacity: 1; }

/* ===================================
   SHADOW UTILITIES
   =================================== */
.shadow-sm {
    box-shadow: var(--shadow-sm);
}

.shadow-md {
    box-shadow: var(--shadow-md);
}

.shadow-lg {
    box-shadow: var(--shadow-lg);
}

.shadow-none {
    box-shadow: none;
}

/* ===================================
   BORDER RADIUS UTILITIES
   =================================== */
.rounded-none { border-radius: 0; }
.rounded-sm { border-radius: 8px; }
.rounded { border-radius: 12px; }
.rounded-lg { border-radius: 20px; }
.rounded-xl { border-radius: 24px; }
.rounded-full { border-radius: 9999px; }

/* ===================================
   WIDTH & HEIGHT UTILITIES
   =================================== */
.w-full { width: 100%; }
.w-auto { width: auto; }
.h-full { height: 100%; }
.h-auto { height: auto; }

/* ===================================
   ASPECT RATIO UTILITIES
   =================================== */
.aspect-square {
    aspect-ratio: 1 / 1;
}

.aspect-video {
    aspect-ratio: 16 / 9;
}

/* ===================================
   OBJECT FIT UTILITIES
   =================================== */
.object-contain { object-fit: contain; }
.object-cover { object-fit: cover; }
.object-fill { object-fit: fill; }
.object-none { object-fit: none; }

/* ===================================
   CURSOR UTILITIES
   =================================== */
.cursor-pointer { cursor: pointer; }
.cursor-default { cursor: default; }
.cursor-not-allowed { cursor: not-allowed; }
.cursor-wait { cursor: wait; }

/* ===================================
   USER SELECT UTILITIES
   =================================== */
.select-none { user-select: none; }
.select-text { user-select: text; }
.select-all { user-select: all; }
.select-auto { user-select: auto; }

/* ===================================
   ANIMATION DELAY UTILITIES
   =================================== */
.delay-100 { animation-delay: 100ms; }
.delay-200 { animation-delay: 200ms; }
.delay-300 { animation-delay: 300ms; }
.delay-400 { animation-delay: 400ms; }
.delay-500 { animation-delay: 500ms; }

/* ===================================
   TRANSITION UTILITIES
   =================================== */
.transition-none { transition: none; }
.transition-all { transition: all 0.3s ease; }
.transition-fast { transition: var(--transition-fast); }
.transition-smooth { transition: var(--transition-smooth); }

/* ===================================
   TRANSFORM UTILITIES
   =================================== */
.transform { transform: translateZ(0); }
.transform-none { transform: none; }

/* ===================================
   BACKDROP BLUR
   =================================== */
.backdrop-blur {
    backdrop-filter: blur(10px);
}

.backdrop-blur-sm {
    backdrop-filter: blur(5px);
}

.backdrop-blur-lg {
    backdrop-filter: blur(20px);
}

/* ===================================
   GRADIENT TEXT
   =================================== */
.gradient-text {
    background: linear-gradient(135deg, var(--accent-emerald), var(--accent-mint));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* ===================================
   GRADIENT BACKGROUND
   =================================== */
.gradient-bg {
    background: linear-gradient(135deg, var(--primary-navy) 0%, var(--primary-teal) 100%);
}

/* ===================================
   ANTI-ALIASING
   =================================== */
body {
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    text-rendering: optimizeLegibility;
}

/* ===================================
   PERFORMANCE OPTIMIZATION
   =================================== */
img,
video,
iframe {
    max-width: 100%;
    height: auto;
}

img {
    display: block;
}

/* ===================================
   WILL-CHANGE OPTIMIZATION
   =================================== */
.will-change-transform {
    will-change: transform;
}

.will-change-opacity {
    will-change: opacity;
}

/* ===================================
   SAFE AREA INSETS (iOS)
   =================================== */
@supports (padding-top: env(safe-area-inset-top)) {
    .safe-area-top {
        padding-top: env(safe-area-inset-top);
    }
    
    .safe-area-bottom {
        padding-bottom: env(safe-area-inset-bottom);
    }
}

/* ===================================
   PRINT OPTIMIZATION
   =================================== */
@media print {
    * {
        background: transparent !important;
        color: #000 !important;
        box-shadow: none !important;
        text-shadow: none !important;
    }

    a,
    a:visited {
        text-decoration: underline;
    }

    img {
        max-width: 100% !important;
        page-break-inside: avoid;
    }

    h2,
    h3 {
        page-break-after: avoid;
    }
}

/* ===================================
   ANIMATION PLAY STATE
   =================================== */
.paused {
    animation-play-state: paused !important;
}

/* ===================================
   CLEARFIX
   =================================== */
.clearfix::after {
    content: "";
    display: table;
    clear: both;
}

/* ===================================
   CONTAINER QUERY (Modern Browsers)
   =================================== */
@supports (container-type: inline-size) {
    .container-query {
        container-type: inline-size;
    }
}

/* ===================================
   END OF STYLESHEET
   =================================== */

/* Total CSS optimized and cleaned - Ready for production! */