/* =================================================================
   ENHANCED STYLE.CSS - Merging Original + 3D Effects
   Sentinel Peak Bank (Fintech Digital Banking) Website
   ================================================================= */

/* =================================================================
   ROOT VARIABLES FOR 3D EFFECTS
   ================================================================= */
:root {
    /* 3D Gradient Variables */
    --primary-gradient: linear-gradient(135deg, #0c8891 0%, #1a3c6e 100%);
    --secondary-gradient: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
    --success-gradient: linear-gradient(135deg, #4facfe 0%, #00f2fe 100%);
    --dark-gradient: linear-gradient(135deg, #434343 0%, #000000 100%);
    
    /* Core Colors */
    --primary-color: #0c8891;
    --secondary-color: #1a3c6e;
    --accent-color: #f5576c;
    --success-color: #00f2fe;
    
    /* Text Colors */
    --text-dark: #333;
    --text-light: #ffffff;
    --text-muted: #555;
    
    /* 3D Shadow System */
    --shadow-sm: 0 2px 4px rgba(0,0,0,0.1);
    --shadow-md: 0 4px 6px rgba(0,0,0,0.1);
    --shadow-lg: 0 10px 25px rgba(0,0,0,0.15);
    --shadow-xl: 0 20px 50px rgba(0,0,0,0.2);
    --shadow-3d: 0 30px 60px rgba(0,0,0,0.3);
    
    /* Border Radius */
    --border-radius-sm: 8px;
    --border-radius-md: 16px;
    --border-radius-lg: 24px;
    --border-radius-xl: 32px;
    
    /* Transitions */
    --transition-fast: 0.2s ease;
    --transition-normal: 0.3s ease;
    --transition-slow: 0.5s ease;
}

/* =================================================================
   RESET AND GLOBAL STYLES
   ================================================================= */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Roboto', sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #f9f9f9;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

h1, h2, h3, h4 {
    color: #0c8891;
    margin-bottom: 0.75rem;
}

p {
    margin-bottom: 0.75rem;
}

a {
    text-decoration: none;
    color: inherit;
}

/* Ensure all button-styled links have no underlines */
a.btn,
a.btn-primary,
a.btn-secondary,
a.btn-outline,
a.btn-dark,
a.btn-outline-dark,
a.btn-outline-primary {
    text-decoration: none !important;
}

/* =================================================================
   ENHANCED BUTTON STYLES WITH 3D EFFECTS
   ================================================================= */
.btn {
    display: inline-block;
    padding: 8px 16px;
    border-radius: 5px;
    font-weight: 500;
    transition: all var(--transition-normal);
    position: relative;
    overflow: hidden;
}

.btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
    transition: left 0.5s ease;
}

.btn:hover::before {
    left: 100%;
}

.btn-primary {
    background-color: #0c8891;
    color: #fff;
    box-shadow: var(--shadow-md);
}

.btn-primary:hover {
    background-color: #0e2a4e;
    transform: translateY(-3px);
    box-shadow: var(--shadow-lg);
}

.btn-secondary {
    background-color: #fff;
    color: #0c8891;
    border: 2px solid #0c8891;
    box-shadow: var(--shadow-sm);
}

.btn-secondary:hover {
    background-color: #1a3c6e;
    color: #fff;
    transform: translateY(-3px);
    box-shadow: var(--shadow-md);
}

.btn-outline {
    background-color: transparent;
    color: #1a3c6e;
    border: 1px solid #1a3c6e;
}

.btn-outline:hover {
    background-color: #1a3c6e;
    color: #fff;
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

/* 3D Button Variants */
.btn-3d {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem 2rem;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: var(--border-radius-md);
    text-decoration: none;
    transition: all var(--transition-normal);
    position: relative;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.btn-primary-3d {
    background: linear-gradient(135deg, #ffffff 0%, #f0f0f0 100%);
    color: var(--primary-color);
    border: none;
}

.btn-primary-3d:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: var(--shadow-3d);
}

.btn-secondary-3d {
    background: rgba(255, 255, 255, 0.15);
    color: white;
    border: 2px solid rgba(255, 255, 255, 0.3);
    backdrop-filter: blur(10px);
}

.btn-secondary-3d:hover {
    background: rgba(255, 255, 255, 0.25);
    transform: translateY(-3px) scale(1.05);
    box-shadow: var(--shadow-3d);
}

.btn-large {
    padding: 1.25rem 3rem;
    font-size: 1.2rem;
}

/* =================================================================
   3D ENHANCED NAVBAR STYLES
   Modern, Sleek Navigation with Depth and Animation
   ================================================================= */

/* Main Navigation Container - 3D Enhanced */
.main-nav-3d {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
    z-index: 1000;
    background: rgba(12, 136, 145, 0.95);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

/* Enhanced shadow and blur when scrolled */
.main-nav-3d.scrolled {
    background: rgba(12, 136, 145, 0.98);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
}

/* Hide navbar on scroll down (optional feature) */
.main-nav-3d.nav-hidden {
    transform: translateY(-100%);
}

/* Navigation Container with Flexbox */
.nav-container-3d {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1rem 2rem;
    max-width: 1400px;
    margin: 0 auto;
    position: relative;
}

/* =================================================================
   LOGO SECTION - 3D ENHANCED
   ================================================================= */

.logo-section-3d {
    position: relative;
    z-index: 1001;
}

.logo-link-3d {
    display: block;
    position: relative;
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.logo-img-3d {
    height: 60px;
    width: auto;
    display: block;
    filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.2));
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    z-index: 2;
}

/* Logo glow effect */
.logo-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 80px;
    height: 80px;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.3) 0%, transparent 70%);
    opacity: 0;
    transition: opacity 0.3s ease;
    pointer-events: none;
    z-index: 1;
}

.logo-link-3d:hover {
    transform: translateY(-3px) scale(1.05);
}

.logo-link-3d:hover .logo-img-3d {
    filter: drop-shadow(0 6px 12px rgba(0, 0, 0, 0.3));
}

.logo-link-3d:hover .logo-glow {
    opacity: 1;
}

/* =================================================================
   NAVIGATION LINKS - 3D ENHANCED
   ================================================================= */

.nav-links-3d {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    list-style: none;
    margin: 0;
    padding: 0;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.nav-item-3d {
    position: relative;
}

/* Hide mobile auth items on desktop */
.mobile-auth-item {
    display: none;
}

.nav-link-3d {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.25rem;
    color: #ffffff;
    font-weight: 500;
    font-size: 0.95rem;
    text-decoration: none;
    position: relative;
    overflow: hidden;
    border-radius: 8px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Animated underline effect */
.link-underline {
    position: absolute;
    bottom: 8px;
    left: 50%;
    transform: translateX(-50%) scaleX(0);
    width: 80%;
    height: 2px;
    background: linear-gradient(90deg, transparent, #ffffff, transparent);
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Background glow on hover */
.nav-link-3d::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at center, rgba(255, 255, 255, 0.15) 0%, transparent 70%);
    opacity: 0;
    transition: opacity 0.3s ease;
    border-radius: 8px;
}

.nav-link-3d:hover::before {
    opacity: 1;
}

.nav-link-3d:hover {
    color: #ffffff;
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-2px);
}

.nav-link-3d:hover .link-underline {
    transform: translateX(-50%) scaleX(1);
}

/* Active link styling */
.nav-link-3d.active {
    background: rgba(255, 255, 255, 0.15);
    color: #ffffff;
    font-weight: 600;
}

.nav-link-3d.active .link-underline {
    transform: translateX(-50%) scaleX(1);
    background: #ffffff;
}

/* =================================================================
   AUTH BUTTONS - 3D ENHANCED
   ================================================================= */

.auth-links-3d {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.btn-3d {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.65rem 1.5rem;
    font-weight: 600;
    font-size: 0.9rem;
    text-decoration: none;
    border-radius: 10px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    cursor: pointer;
    border: none;
}

/* Ripple effect container */
.btn-3d .ripple-effect {
    position: absolute;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.5);
    transform: scale(0);
    animation: ripple-animation 0.6s ease-out;
    pointer-events: none;
}

@keyframes ripple-animation {
    to {
        transform: scale(4);
        opacity: 0;
    }
}

/* Secondary button (Login) */
.btn-nav-secondary {
    background: transparent;
    color: #ffffff;
    border: 2px solid rgba(255, 255, 255, 0.3);
    backdrop-filter: blur(10px);
}

.btn-nav-secondary::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s ease;
}

.btn-nav-secondary:hover::before {
    left: 100%;
}

.btn-nav-secondary:hover {
    background: rgba(255, 255, 255, 0.15);
    border-color: rgba(255, 255, 255, 0.5);
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

/* Primary button (Sign Up) */
.btn-nav-primary {
    background: linear-gradient(135deg, #ffffff 0%, #f0f0f0 100%);
    color: #0c8891;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.btn-nav-primary::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg, transparent 30%, rgba(255, 255, 255, 0.5) 50%, transparent 70%);
    transform: rotate(45deg);
    transition: all 0.5s ease;
}

.btn-nav-primary:hover::after {
    left: 100%;
}

.btn-nav-primary:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
}

.btn-nav-primary:active {
    transform: translateY(-1px) scale(1.02);
}

/* =================================================================
   MOBILE TOGGLE BUTTON - ENHANCED HAMBURGER
   ================================================================= */

.mobile-toggle-3d {
    display: none;
    flex-direction: column;
    justify-content: space-around;
    width: 35px;
    height: 35px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 5px;
    z-index: 1001;
    position: relative;
}

.hamburger-line {
    width: 100%;
    height: 3px;
    background: #ffffff;
    border-radius: 10px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    transform-origin: center;
}

.hamburger-line::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, #ffffff, #f0f0f0);
    border-radius: 10px;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.mobile-toggle-3d:hover .hamburger-line::before {
    opacity: 1;
}

/* Animated hamburger to X transformation */
.mobile-toggle-3d.active .hamburger-line:nth-child(1) {
    transform: translateY(9px) rotate(45deg);
}

.mobile-toggle-3d.active .hamburger-line:nth-child(2) {
    opacity: 0;
    transform: scaleX(0);
}

.mobile-toggle-3d.active .hamburger-line:nth-child(3) {
    transform: translateY(-9px) rotate(-45deg);
}

/* =================================================================
   PROGRESS BAR
   ================================================================= */

.nav-progress-bar {
    position: absolute;
    bottom: 0;
    left: 0;
    height: 3px;
    background: linear-gradient(90deg, #ffffff, #ffd700);
    width: 0;
    transition: width 0.1s ease;
    box-shadow: 0 0 10px rgba(255, 215, 0, 0.5);
}

/* =================================================================
   MOBILE BACKDROP
   ================================================================= */

.mobile-menu-backdrop-3d {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 998;
}

.mobile-menu-backdrop-3d.active {
    opacity: 1;
    visibility: visible;
}

/* Prevent body scroll when menu is open */
body.menu-open {
    overflow: hidden;
}

/* =================================================================
   RESPONSIVE DESIGN - MOBILE
   ================================================================= */

@media (max-width: 768px) {
    .nav-container-3d {
        padding: 0.75rem 1rem;
    }

    .logo-img-3d {
        height: 50px;
    }

    /* Hide desktop auth buttons */
    .auth-links-3d {
        display: none;
    }

    /* Show mobile toggle */
    .mobile-toggle-3d {
        display: flex;
    }

    /* Mobile navigation menu */
    .nav-links-3d {
        position: fixed;
        top: 0;
        right: -100%;
        width: 320px;
        max-width: 85%;
        height: 100vh;
        flex-direction: column;
        align-items: stretch;
        gap: 0;
        padding: 100px 2rem 2rem;
        background: linear-gradient(180deg, #0c8891 0%, #1a3c6e 100%);
        box-shadow: -4px 0 30px rgba(0, 0, 0, 0.3);
        overflow-y: auto;
        transition: right 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        z-index: 999;
    }

    /* Glass morphism effect for mobile menu */
    .nav-links-3d::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: rgba(255, 255, 255, 0.05);
        backdrop-filter: blur(20px);
        -webkit-backdrop-filter: blur(20px);
        z-index: -1;
    }

    .nav-links-3d.active {
        right: 0;
    }

    .nav-item-3d {
        width: 100%;
        margin-bottom: 0.5rem;
        animation: slideInFromRight 0.4s ease-out backwards;
    }

    /* Stagger animation for menu items */
    .nav-item-3d:nth-child(1) { animation-delay: 0.1s; }
    .nav-item-3d:nth-child(2) { animation-delay: 0.15s; }
    .nav-item-3d:nth-child(3) { animation-delay: 0.2s; }
    .nav-item-3d:nth-child(4) { animation-delay: 0.25s; }
    .nav-item-3d:nth-child(5) { animation-delay: 0.3s; }
    .nav-item-3d:nth-child(6) { animation-delay: 0.35s; }
    .nav-item-3d:nth-child(7) { animation-delay: 0.4s; }

    @keyframes slideInFromRight {
        from {
            opacity: 0;
            transform: translateX(30px);
        }
        to {
            opacity: 1;
            transform: translateX(0);
        }
    }

    .nav-link-3d {
        width: 100%;
        padding: 1rem 1.5rem;
        font-size: 1rem;
        border-radius: 10px;
        margin-bottom: 0.25rem;
    }

    .link-underline {
        display: none;
    }

    .nav-link-3d:hover {
        background: rgba(255, 255, 255, 0.2);
        transform: translateX(5px);
    }

    /* Show mobile auth items */
    .mobile-auth-item {
        display: block;
        margin-top: 1rem;
        padding-top: 1rem;
        border-top: 1px solid rgba(255, 255, 255, 0.2);
    }

    .mobile-auth-link {
        background: rgba(255, 255, 255, 0.1);
    }

    .btn-nav-primary {
        width: 100%;
        padding: 1rem 1.5rem;
        font-size: 1rem;
        justify-content: center;
    }

    /* Mobile menu decorative elements */
    .nav-links-3d::after {
        content: '';
        position: absolute;
        top: 20px;
        right: 20px;
        width: 100px;
        height: 100px;
        background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
        border-radius: 50%;
        pointer-events: none;
    }
}

@media (max-width: 480px) {
    .nav-container-3d {
        padding: 0.65rem 0.75rem;
    }

    .logo-img-3d {
        height: 45px;
    }

    .nav-links-3d {
        width: 280px;
        padding: 90px 1.5rem 1.5rem;
    }

    .nav-link-3d {
        padding: 0.875rem 1.25rem;
        font-size: 0.95rem;
    }

    .mobile-toggle-3d {
        width: 32px;
        height: 32px;
    }

    .hamburger-line {
        height: 2.5px;
    }
}

/* =================================================================
   TABLET STYLES
   ================================================================= */

@media (min-width: 769px) and (max-width: 1024px) {
    .nav-container-3d {
        padding: 0.875rem 1.5rem;
    }

    .nav-links-3d {
        gap: 0.25rem;
    }

    .nav-link-3d {
        padding: 0.65rem 1rem;
        font-size: 0.9rem;
    }

    .btn-3d {
        padding: 0.6rem 1.25rem;
        font-size: 0.85rem;
    }

    .logo-img-3d {
        height: 55px;
    }
}

/* =================================================================
   LARGE SCREENS
   ================================================================= */

@media (min-width: 1400px) {
    .nav-container-3d {
        padding: 1.25rem 2rem;
    }

    .logo-img-3d {
        height: 65px;
    }

    .nav-link-3d {
        padding: 0.875rem 1.5rem;
        font-size: 1rem;
    }

    .btn-3d {
        padding: 0.75rem 1.75rem;
        font-size: 0.95rem;
    }
}

/* =================================================================
   ACCESSIBILITY
   ================================================================= */

/* Focus styles for keyboard navigation */
.nav-link-3d:focus,
.btn-3d:focus,
.mobile-toggle-3d:focus {
    outline: 2px solid #ffffff;
    outline-offset: 3px;
}

/* Reduced motion for accessibility */
@media (prefers-reduced-motion: reduce) {
    .main-nav-3d,
    .nav-links-3d,
    .nav-link-3d,
    .btn-3d,
    .hamburger-line,
    .logo-link-3d,
    .logo-img-3d {
        transition: none !important;
        animation: none !important;
    }
}

/* High contrast mode support */
@media (prefers-contrast: high) {
    .main-nav-3d {
        border-bottom: 2px solid #ffffff;
    }

    .nav-link-3d,
    .btn-nav-secondary {
        border: 2px solid currentColor;
    }
}

/* =================================================================
   PRINT STYLES
   ================================================================= */

@media print {
    .main-nav-3d {
        position: static;
        box-shadow: none;
        background: white;
        color: black;
    }

    .mobile-toggle-3d,
    .auth-links-3d,
    .nav-progress-bar {
        display: none;
    }
}

/* =================================================================
   MAIN CONTENT
   ================================================================= */
.main-content {
    padding: 30px 0;
    margin-top: 60px;
}

/* =================================================================
   3D ENHANCED HERO SECTION
   ================================================================= */
.hero-section {
    background: url('../images/hero.jpeg') no-repeat center center/cover;
    height: 70vh;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.hero-section .overlay {
    background: rgba(43, 33, 33, 0.6);
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

/* Alternative 3D Hero with Animated Background */
.hero-section-3d {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background: linear-gradient(135deg, #0c8891 0%, #1a3c6e 50%, #f093fb 100%);
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.gradient-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.6;
    animation: float 20s ease-in-out infinite;
}

.gradient-orb.orb-1 {
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(12, 136, 145, 0.8) 0%, transparent 70%);
    top: -10%;
    left: -10%;
    animation-delay: 0s;
}

.gradient-orb.orb-2 {
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(245, 87, 108, 0.8) 0%, transparent 70%);
    bottom: -10%;
    right: -10%;
    animation-delay: 7s;
}

.gradient-orb.orb-3 {
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(26, 60, 110, 0.6) 0%, transparent 70%);
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    animation-delay: 14s;
}

@keyframes float {
    0%, 100% {
        transform: translate(0, 0) scale(1);
    }
    33% {
        transform: translate(50px, -50px) scale(1.1);
    }
    66% {
        transform: translate(-50px, 50px) scale(0.9);
    }
}

.overlay-3d {
    position: relative;
    z-index: 1;
    width: 100%;
    padding: 0 2rem;
}

.hero-content-3d {
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
    color: white;
}

.hero-title-3d {
    font-size: clamp(2.5rem, 6vw, 5rem);
    font-weight: 800;
    margin-bottom: 1.5rem;
    line-height: 1.1;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.title-line {
    display: block;
    animation: slideInFromLeft 1s ease-out;
}

.gradient-text {
    background: linear-gradient(135deg, #ffffff 0%, #ffd700 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: slideInFromRight 1s ease-out;
}

@keyframes slideInFromLeft {
    from {
        opacity: 0;
        transform: translateX(-50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideInFromRight {
    from {
        opacity: 0;
        transform: translateX(50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.hero-subtitle {
    font-size: clamp(1rem, 2vw, 1.25rem);
    margin-bottom: 3rem;
    opacity: 0.95;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
    animation: fadeInUp 1s ease-out 0.3s both;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-content h1 {
    font-size: 2.5rem;
    margin-bottom: 0.75rem;
    text-shadow: 0 2px 10px rgba(0,0,0,0.3);
}

.hero-content p {
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
    text-shadow: 0 1px 5px rgba(0,0,0,0.3);
}

.hero-cta .btn {
    margin: 0 8px;
}

.hero-cta-3d {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 4rem;
    animation: fadeInUp 1s ease-out 0.6s both;
}

.hero-stats {
    display: flex;
    justify-content: center;
    gap: 4rem;
    flex-wrap: wrap;
    animation: fadeInUp 1s ease-out 0.9s both;
}

.stat-item {
    text-align: center;
}

.stat-item h3 {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 0.5rem;
    background: linear-gradient(135deg, #ffffff 0%, #ffd700 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.stat-item p {
    font-size: 1rem;
    opacity: 0.9;
}

.hero-scroll-indicator {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    color: white;
    opacity: 0.8;
    animation: bounce 2s ease-in-out infinite;
}

@keyframes bounce {
    0%, 100% {
        transform: translateX(-50%) translateY(0);
    }
    50% {
        transform: translateX(-50%) translateY(10px);
    }
}

/* =================================================================
   TRUST BAR - 3D ENHANCED
   ================================================================= */
.trust-bar {
    background-color: #ffffff;
    padding: 20px 10px;
    display: flex;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
    border-bottom: 1px solid #e6eaf2;
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #1a3c6e;
    font-size: 0.95rem;
    font-weight: 500;
    transition: all var(--transition-normal);
}

.trust-item:hover {
    transform: translateY(-3px);
    color: var(--primary-color);
}

.trust-item i {
    font-size: 1.2rem;
    transition: transform var(--transition-normal);
}

.trust-item:hover i {
    transform: scale(1.2);
}

/* 3D Trust Bar Alternative */
.trust-bar-3d {
    padding: 4rem 2rem;
    background: white;
    position: relative;
}

.trust-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.trust-item-3d {
    background: white;
    padding: 2rem;
    border-radius: var(--border-radius-lg);
    text-align: center;
    box-shadow: var(--shadow-lg);
    transition: all var(--transition-normal);
    position: relative;
    overflow: hidden;
}

.trust-item-3d::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--primary-gradient);
    opacity: 0;
    transition: opacity var(--transition-normal);
}

.trust-item-3d:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: var(--shadow-3d);
}

.trust-item-3d:hover::before {
    opacity: 0.1;
}

.trust-icon-wrapper {
    width: 80px;
    height: 80px;
    margin: 0 auto 1rem;
    background: var(--primary-gradient);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow-md);
    transition: all var(--transition-normal);
}

.trust-item-3d:hover .trust-icon-wrapper {
    transform: rotateY(360deg);
}

.trust-icon-wrapper i {
    font-size: 2rem;
    color: white;
}

.trust-item-3d span {
    font-weight: 600;
    color: var(--text-dark);
    position: relative;
    z-index: 1;
}

/* =================================================================
   HOW IT WORKS - 3D ENHANCED
   ================================================================= */
.how-it-works {
    padding: 60px 20px;
    text-align: center;
    background-color: #f9f9f9;
}

.how-it-works h2 {
    font-size: 2rem;
    margin-bottom: 10px;
}

.how-subtext {
    color: #555;
    margin-bottom: 40px;
    font-size: 1rem;
}

.steps-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 25px;
    margin-bottom: 40px;
}

.step-card {
    background-color: #ffffff;
    padding: 25px 20px;
    border-radius: 10px;
    box-shadow: 0 6px 18px rgba(26, 60, 110, 0.08);
    transition: all var(--transition-normal);
    position: relative;
    overflow: hidden;
}

.step-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: var(--primary-gradient);
    transform: scaleX(0);
    transition: transform var(--transition-normal);
}

.step-card:hover::before {
    transform: scaleX(1);
}

.step-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 35px rgba(26, 60, 110, 0.2);
}

.step-number {
    width: 45px;
    height: 45px;
    background: var(--primary-gradient);
    color: #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 15px;
    font-weight: 700;
    box-shadow: var(--shadow-md);
    transition: transform var(--transition-normal);
}

.step-card:hover .step-number {
    transform: scale(1.1) rotate(5deg);
}

.how-cta {
    font-size: 1rem;
    padding: 12px 28px;
}

/* 3D Steps Alternative */
.how-it-works-3d {
    padding: 6rem 2rem;
    background: linear-gradient(180deg, #f7fafc 0%, #ffffff 100%);
}

.section-header-3d {
    text-align: center;
    margin-bottom: 4rem;
    animation: fadeInUp 0.8s ease-out;
}

.section-header-3d h2,
.section-header-3d h1 {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 800;
    color: var(--text-dark);
    margin-bottom: 1rem;
    position: relative;
    display: inline-block;
}

.section-header-3d h2::after,
.section-header-3d h1::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 4px;
    background: var(--primary-gradient);
    border-radius: 2px;
}

.section-header-3d p {
    font-size: 1.2rem;
    color: var(--text-muted);
    max-width: 700px;
    margin: 1.5rem auto 0;
}

.steps-grid-3d {
    max-width: 1200px;
    margin: 0 auto 3rem;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 3rem;
    position: relative;
}

.step-card-3d {
    background: white;
    padding: 3rem 2rem;
    border-radius: var(--border-radius-xl);
    text-align: center;
    position: relative;
    box-shadow: var(--shadow-lg);
    transition: all var(--transition-normal);
    overflow: hidden;
}

.step-glow {
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(12, 136, 145, 0.1) 0%, transparent 70%);
    opacity: 0;
    transition: opacity var(--transition-normal);
}

.step-card-3d:hover .step-glow {
    opacity: 1;
}

.step-card-3d:hover {
    transform: translateY(-15px) scale(1.03);
    box-shadow: var(--shadow-3d);
}

.step-number-3d {
    width: 80px;
    height: 80px;
    margin: 0 auto 2rem;
    background: var(--primary-gradient);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow-lg);
    position: relative;
    z-index: 1;
}

.step-number-3d span {
    font-size: 2rem;
    font-weight: 800;
    color: white;
}

.step-content h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 1rem;
}

.step-content p {
    color: var(--text-muted);
    line-height: 1.6;
}

.step-arrow {
    display: none;
}

@media (min-width: 768px) {
    .step-arrow {
        display: block;
        position: absolute;
        right: -2rem;
        top: 50%;
        transform: translateY(-50%);
        font-size: 2rem;
        color: var(--primary-color);
        opacity: 0.3;
    }
    
    .step-card-3d:last-child .step-arrow {
        display: none;
    }
}

.how-cta-3d {
    display: flex;
    margin: 0 auto;
    width: fit-content;
}

/* =================================================================
   WHO FOR SECTION - 3D ENHANCED
   ================================================================= */
.who-for {
    padding: 60px 20px;
    background-color: #ffffff;
    text-align: center;
}

.section-intro {
    max-width: 700px;
    margin: 0 auto 40px;
    color: var(--text-muted);
    font-size: 1.1rem;
}

.who-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 25px;
    margin-top: 40px;
}

.who-card {
    background-color: #f9f9f9;
    padding: 25px;
    border-radius: 10px;
    border-left: 4px solid #1a3c6e;
    transition: all var(--transition-normal);
    box-shadow: var(--shadow-sm);
}

.who-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
    border-left-width: 6px;
}

/* 3D Who For Alternative */
.who-for-3d {
    padding: 6rem 2rem;
    background: white;
}

.who-grid-3d {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2.5rem;
}

.who-card-3d {
    background: white;
    padding: 3rem 2rem;
    border-radius: var(--border-radius-xl);
    box-shadow: var(--shadow-lg);
    position: relative;
    overflow: hidden;
    transition: all var(--transition-normal);
    border: 2px solid transparent;
}

.card-shine {
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg, transparent 40%, rgba(255,255,255,0.5) 50%, transparent 60%);
    transform: translateX(-100%) translateY(-100%) rotate(45deg);
    transition: transform 0.6s ease;
}

.who-card-3d:hover .card-shine {
    transform: translateX(100%) translateY(100%) rotate(45deg);
}

.who-card-3d:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-3d);
    border-color: var(--primary-color);
}

.who-card-3d.featured {
    background: var(--primary-gradient);
    color: white;
    transform: scale(1.05);
}

.who-card-3d.featured h3,
.who-card-3d.featured p {
    color: white;
}

.card-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 1.5rem;
    background: var(--primary-gradient);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow-md);
}

.who-card-3d.featured .card-icon {
    background: white;
}

.card-icon i {
    font-size: 1.8rem;
    color: white;
}

.who-card-3d.featured .card-icon i {
    color: var(--primary-color);
}

.who-card-3d h3 {
    font-size: 1.75rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.who-card-3d p {
    color: var(--text-muted);
    line-height: 1.7;
}

.card-accent {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: var(--primary-gradient);
}

/* =================================================================
   PURPOSE SECTION - 3D ENHANCED
   ================================================================= */
.purpose-section {
    padding: 60px 20px;
    background-color: #f9f9f9;
    text-align: center;
}

.purpose-section p {
    max-width: 750px;
    margin: 0 auto;
    font-size: 1.05rem;
    color: #444;
}

/* 3D Purpose Alternative */
.purpose-section-3d {
    padding: 6rem 2rem;
    background: linear-gradient(135deg, #0c8891 0%, #1a3c6e 100%);
    position: relative;
    overflow: hidden;
    color: white;
    text-align: center;
}

.floating-shape {
    position: absolute;
    border-radius: 50%;
    background: rgba(255,255,255,0.1);
    animation: floatShape 15s ease-in-out infinite;
}

.floating-shape.shape-1 {
    width: 200px;
    height: 200px;
    top: 10%;
    left: 5%;
    animation-delay: 0s;
}

.floating-shape.shape-2 {
    width: 150px;
    height: 150px;
    bottom: 15%;
    right: 10%;
    animation-delay: 5s;
}

.floating-shape.shape-3 {
    width: 100px;
    height: 100px;
    top: 60%;
    left: 80%;
    animation-delay: 10s;
}

@keyframes floatShape {
    0%, 100% {
        transform: translateY(0) rotate(0deg);
    }
    50% {
        transform: translateY(-30px) rotate(180deg);
    }
}

.purpose-content {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.purpose-content h2 {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 800;
    margin-bottom: 1.5rem;
    color: white;
}

.purpose-content p {
    font-size: 1.2rem;
    line-height: 1.8;
    opacity: 0.95;
}

/* =================================================================
   STRESS FREE SECTION - 3D ENHANCED
   ================================================================= */
.stress-free {
    padding: 60px 20px;
    background-color: #ffffff;
    text-align: center;
}

.stress-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 20px;
    margin-top: 30px;
    font-weight: 500;
    color: #1a3c6e;
}

/* 3D Stress Free Alternative */
.stress-free-3d {
    padding: 6rem 2rem;
    background: linear-gradient(180deg, #f7fafc 0%, #ffffff 100%);
    text-align: center;
}

.stress-free-3d h2 {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 800;
    color: var(--text-dark);
    margin-bottom: 3rem;
}

.stress-grid-3d {
    max-width: 900px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
}

.stress-item-3d {
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(10px);
    padding: 2rem;
    border-radius: var(--border-radius-lg);
    border: 1px solid rgba(255, 255, 255, 0.5);
    box-shadow: var(--shadow-md);
    transition: all var(--transition-normal);
    display: flex;
    align-items: center;
    gap: 1rem;
}

.stress-item-3d:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
    background: rgba(255, 255, 255, 0.9);
}

.stress-item-3d i {
    font-size: 1.5rem;
    color: var(--success-color);
}

.stress-item-3d span {
    font-weight: 600;
    color: var(--text-dark);
}

/* =================================================================
   PHILOSOPHY SECTION - 3D ENHANCED
   ================================================================= */
.philosophy {
    padding: 60px 20px;
    background-color: #f9f9f9;
    text-align: center;
}

.philosophy-list {
    max-width: 800px;
    margin: 30px auto 0;
    text-align: left;
}

.philosophy-list p {
    margin-bottom: 15px;
    font-size: 1rem;
}

/* 3D Philosophy Alternative */
.philosophy-3d {
    padding: 6rem 2rem;
    background: white;
    text-align: center;
}

.philosophy-3d h2 {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 800;
    color: var(--text-dark);
    margin-bottom: 3rem;
}

.philosophy-grid {
    max-width: 1000px;
    margin: 0 auto;
    display: grid;
    gap: 2rem;
}

.philosophy-item {
    display: flex;
    align-items: flex-start;
    gap: 2rem;
    padding: 2rem;
    background: linear-gradient(135deg, #f7fafc 0%, #ffffff 100%);
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow-md);
    transition: all var(--transition-normal);
    text-align: left;
}

.philosophy-item:hover {
    transform: translateX(10px);
    box-shadow: var(--shadow-lg);
}

.philosophy-icon {
    width: 60px;
    height: 60px;
    background: var(--primary-gradient);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    box-shadow: var(--shadow-md);
}

.philosophy-icon i {
    font-size: 1.5rem;
    color: white;
}

.philosophy-text strong {
    display: block;
    font-size: 1.3rem;
    color: var(--text-dark);
    margin-bottom: 0.5rem;
}

.philosophy-text p {
    color: var(--text-muted);
    line-height: 1.6;
}

/* =================================================================
   FEATURES SECTION - 3D ENHANCED
   ================================================================= */
.features-section {
    padding: 40px 0;
    background-color: #fff;
    text-align: center;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 15px;
}

.feature-card {
    padding: 15px;
    background-color: #f9f9f9;
    border-radius: 8px;
    transition: all var(--transition-normal);
    box-shadow: var(--shadow-sm);
    position: relative;
    overflow: hidden;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--primary-gradient);
    opacity: 0;
    transition: opacity var(--transition-normal);
}

.feature-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
}

.feature-card:hover::before {
    opacity: 0.05;
}

.feature-card i {
    font-size: 2rem;
    color: #0c8891;
    margin-bottom: 0.75rem;
    position: relative;
    z-index: 1;
    transition: transform var(--transition-normal);
}

.feature-card:hover i {
    transform: scale(1.1);
}

.feature-card h3 {
    font-size: 1.25rem;
    position: relative;
    z-index: 1;
}

.feature-card p {
    position: relative;
    z-index: 1;
}

/* 3D Features Alternative */
.features-section-3d {
    padding: 6rem 2rem;
    background: linear-gradient(180deg, #f7fafc 0%, #ffffff 100%);
}

.features-grid-3d {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2.5rem;
}

.feature-card-3d {
    background: white;
    padding: 3rem 2rem;
    border-radius: var(--border-radius-xl);
    text-align: center;
    position: relative;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    transition: all var(--transition-normal);
}

.feature-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--primary-gradient);
    opacity: 0;
    transition: opacity var(--transition-normal);
}

.feature-card-3d:hover .feature-bg {
    opacity: 0.05;
}

.feature-card-3d:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-3d);
}

.feature-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
    background: var(--primary-gradient);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow-md);
    position: relative;
    z-index: 1;
    transition: all var(--transition-normal);
}

.feature-card-3d:hover .feature-icon {
    transform: scale(1.1) rotate(5deg);
}

.feature-icon i {
    font-size: 2rem;
    color: white;
}

.feature-card-3d h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 1rem;
    position: relative;
    z-index: 1;
}

.feature-card-3d p {
    color: var(--text-muted);
    line-height: 1.7;
    position: relative;
    z-index: 1;
}

/* =================================================================
   SERVICES SECTION - 3D ENHANCED
   ================================================================= */
.services-section {
    padding: 40px 0;
    text-align: center;
}

.service-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 15px;
}

.service-card {
    background-color: #fff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
    transition: all var(--transition-normal);
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
}

.service-card img {
    width: 100%;
    height: 180px;
    object-fit: cover;
    transition: transform var(--transition-slow);
}

.service-card:hover img {
    transform: scale(1.1);
}

.service-card h3 {
    font-size: 1.25rem;
    padding: 15px 15px 8px;
}

.service-card p {
    padding: 0 15px 15px;
    font-size: 0.95rem;
}

.service-card .btn {
    margin-bottom: 15px;
}

/* 3D Services Alternative */
.services-section-3d {
    padding: 6rem 2rem;
    background: white;
}

.service-grid-3d {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2.5rem;
}

.service-card-3d {
    background: white;
    border-radius: var(--border-radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    transition: all var(--transition-normal);
}

.service-card-3d:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-3d);
}

.service-image {
    position: relative;
    height: 250px;
    overflow: hidden;
}

.service-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--transition-slow);
}

.service-card-3d:hover .service-image img {
    transform: scale(1.1);
}

.service-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, transparent 0%, rgba(0,0,0,0.7) 100%);
    opacity: 0;
    transition: opacity var(--transition-normal);
}

.service-card-3d:hover .service-overlay {
    opacity: 1;
}

.service-content {
    padding: 2rem;
}

.service-content h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 1rem;
}

.service-content p {
    color: var(--text-muted);
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.service-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--primary-color);
    font-weight: 600;
    text-decoration: none;
    transition: all var(--transition-normal);
}

.service-link:hover {
    gap: 1rem;
    color: var(--secondary-color);
}

/* =================================================================
   TESTIMONIALS SECTION - 3D ENHANCED
   ================================================================= */
.testimonials-section {
    padding: 40px 0;
    background-color: #f9f9f9;
    text-align: center;
}

.testimonial-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 15px;
}

.testimonial-card {
    background-color: #fff;
    padding: 15px;
    border-radius: 8px;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
    transition: all var(--transition-normal);
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.testimonial-card p {
    font-style: italic;
    color: #555;
    font-size: 0.95rem;
}

.testimonial-card h4 {
    font-size: 0.95rem;
    color: #0c8891;
    margin-top: 0.75rem;
}

/* 3D Testimonials Alternative */
.testimonials-section-3d {
    padding: 6rem 2rem;
    background: linear-gradient(180deg, #f7fafc 0%, #ffffff 100%);
}

.testimonial-grid-3d {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2.5rem;
}

.testimonial-card-3d {
    background: white;
    padding: 2.5rem;
    border-radius: var(--border-radius-xl);
    box-shadow: var(--shadow-lg);
    transition: all var(--transition-normal);
    position: relative;
    overflow: hidden;
}

.testimonial-card-3d::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: var(--primary-gradient);
}

.testimonial-card-3d:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: var(--shadow-3d);
}

.testimonial-card-3d.featured {
    background: var(--primary-gradient);
    color: white;
}

.testimonial-card-3d.featured p,
.testimonial-card-3d.featured .author-info h4,
.testimonial-card-3d.featured .author-info span {
    color: white;
}

.quote-icon {
    font-size: 2.5rem;
    color: var(--primary-color);
    opacity: 0.3;
    margin-bottom: 1rem;
}

.testimonial-card-3d.featured .quote-icon {
    color: white;
    opacity: 0.5;
}

.testimonial-card-3d p {
    font-size: 1.1rem;
    line-height: 1.7;
    margin-bottom: 2rem;
    color: var(--text-dark);
    font-style: italic;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
}

.author-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: var(--primary-gradient);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.testimonial-card-3d.featured .author-avatar {
    background: white;
}

.author-avatar i {
    font-size: 2rem;
    color: white;
}

.testimonial-card-3d.featured .author-avatar i {
    color: var(--primary-color);
}

.author-info h4 {
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 0.25rem;
}

.author-info span {
    font-size: 0.9rem;
    color: var(--text-muted);
}

.rating {
    display: flex;
    gap: 0.25rem;
}

.rating i {
    color: #ffd700;
}

.testimonial-card-3d.featured .rating i {
    color: white;
}

/* =================================================================
   CTA SECTION - 3D ENHANCED
   ================================================================= */
.cta-section {
    padding: 40px 0;
    text-align: center;
    background-color: #0c8891;
    color: #fff;
}

.cta-section h2 {
    color: #fff;
    font-size: 1.75rem;
}

.cta-section .btn-primary {
    background-color: #fff;
    color: #0c8891;
}

.cta-section .btn-primary:hover {
    background-color: #e0e0e0;
    transform: translateY(-2px);
}

/* 3D CTA Alternative */
.cta-section-3d {
    padding: 8rem 2rem;
    background: linear-gradient(135deg, #0c8891 0%, #1a3c6e 100%);
    position: relative;
    overflow: hidden;
    text-align: center;
}

.cta-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.cta-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(100px);
    opacity: 0.4;
    animation: float 20s ease-in-out infinite;
}

.cta-orb.orb-1 {
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(255,255,255,0.3) 0%, transparent 70%);
    top: -20%;
    left: -10%;
}

.cta-orb.orb-2 {
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(255,255,255,0.2) 0%, transparent 70%);
    bottom: -20%;
    right: -10%;
    animation-delay: 10s;
}

.cta-content {
    position: relative;
    z-index: 1;
    max-width: 800px;
    margin: 0 auto;
    color: white;
}

.cta-content h2 {
    font-size: clamp(2rem, 5vw, 3.5rem);
    font-weight: 800;
    margin-bottom: 1.5rem;
}

.cta-content p {
    font-size: 1.3rem;
    margin-bottom: 3rem;
    opacity: 0.95;
}

/* =================================================================
   ABOUT, FAQ, SERVICES, CONTACT PAGES - 3D ENHANCED
   ================================================================= */

/* =================================================================
   3D ENHANCED ABOUT PAGE STYLES
   Modern, Animated, and Beautiful Design
   ================================================================= */

/* =================================================================
   ABOUT HERO SECTION
   ================================================================= */

.about-hero-3d {
    position: relative;
    min-height: 70vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background: linear-gradient(135deg, #0c8891 0%, #1a3c6e 50%, #2d5a8c 100%);
    color: white;
    text-align: center;
}

.about-hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.hero-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.4;
    animation: float-orb 20s ease-in-out infinite;
}

.hero-orb.orb-1 {
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.3) 0%, transparent 70%);
    top: -10%;
    left: -10%;
    animation-delay: 0s;
}

.hero-orb.orb-2 {
    width: 350px;
    height: 350px;
    background: radial-gradient(circle, rgba(102, 204, 255, 0.3) 0%, transparent 70%);
    bottom: -10%;
    right: -10%;
    animation-delay: 7s;
}

.hero-orb.orb-3 {
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.2) 0%, transparent 70%);
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    animation-delay: 14s;
}

@keyframes float-orb {
    0%, 100% {
        transform: translate(0, 0) scale(1);
    }
    33% {
        transform: translate(40px, -40px) scale(1.1);
    }
    66% {
        transform: translate(-40px, 40px) scale(0.9);
    }
}

.about-hero-content {
    position: relative;
    z-index: 1;
    max-width: 900px;
    padding: 0 2rem;
}

.about-hero-title {
    font-size: clamp(2.5rem, 6vw, 4.5rem);
    font-weight: 800;
    margin-bottom: 1.5rem;
    line-height: 1.1;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.title-main {
    display: block;
    animation: fadeInDown 1s ease-out;
}

.title-accent {
    display: block;
    background: linear-gradient(135deg, #ffffff 0%, #ffd700 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: fadeInUp 1s ease-out 0.2s both;
}

@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.about-hero-subtitle {
    font-size: clamp(1.1rem, 2vw, 1.4rem);
    margin-bottom: 3rem;
    opacity: 0.95;
    line-height: 1.6;
    animation: fadeIn 1s ease-out 0.4s both;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

.hero-stats-mini {
    display: flex;
    justify-content: center;
    gap: 3rem;
    flex-wrap: wrap;
    animation: fadeInUp 1s ease-out 0.6s both;
}

.stat-mini {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem 1.5rem;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 50px;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.stat-mini i {
    font-size: 1.5rem;
}

.stat-mini span {
    font-weight: 600;
}

.scroll-indicator {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    color: white;
    font-size: 2rem;
    cursor: pointer;
    animation: bounce-arrow 2s ease-in-out infinite;
}

@keyframes bounce-arrow {
    0%, 100% {
        transform: translateX(-50%) translateY(0);
    }
    50% {
        transform: translateX(-50%) translateY(10px);
    }
}

/* =================================================================
   WHO WE ARE SECTION
   ================================================================= */

.who-we-are-3d {
    padding: 8rem 2rem;
    background: #ffffff;
}

.who-content-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 4rem;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
}

.section-label {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1.25rem;
    background: linear-gradient(135deg, rgba(12, 136, 145, 0.1) 0%, rgba(26, 60, 110, 0.1) 100%);
    color: #0c8891;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.9rem;
    margin-bottom: 1.5rem;
}

.section-label i {
    font-size: 1rem;
}

.who-text-3d h2 {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 800;
    color: #1a3c6e;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.lead-text {
    font-size: 1.25rem;
    font-weight: 500;
    color: #0c8891;
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.who-text-3d p {
    color: #555;
    line-height: 1.8;
    margin-bottom: 2rem;
}

.who-highlights {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.highlight-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1.5rem;
    background: linear-gradient(135deg, #f7fafc 0%, #ffffff 100%);
    border-radius: 12px;
    transition: all 0.3s ease;
    border-left: 4px solid #0c8891;
}

.highlight-item:hover {
    transform: translateX(10px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.highlight-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #0c8891 0%, #1a3c6e 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    box-shadow: 0 4px 15px rgba(12, 136, 145, 0.3);
}

.highlight-icon i {
    color: white;
    font-size: 1.25rem;
}

.highlight-text h4 {
    font-size: 1.1rem;
    color: #1a3c6e;
    margin-bottom: 0.25rem;
}

.highlight-text p {
    color: #777;
    font-size: 0.95rem;
    margin: 0;
}

.who-image-3d {
    position: relative;
}

.image-wrapper-3d {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.2);
}

.image-border-glow {
    position: absolute;
    top: -3px;
    left: -3px;
    right: -3px;
    bottom: -3px;
    background: linear-gradient(135deg, #0c8891, #1a3c6e, #0c8891);
    border-radius: 20px;
    z-index: -1;
    opacity: 0.7;
    filter: blur(10px);
}

.image-wrapper-3d img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 20px;
    transition: transform 0.5s ease;
}

.image-wrapper-3d:hover img {
    transform: scale(1.05);
}

.image-overlay-pattern {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(12, 136, 145, 0.1) 0%, transparent 100%);
    pointer-events: none;
}

.image-floating-badge {
    position: absolute;
    bottom: 2rem;
    right: 2rem;
    background: white;
    padding: 1rem 1.5rem;
    border-radius: 50px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
    display: flex;
    align-items: center;
    gap: 0.75rem;
    animation: float-badge 3s ease-in-out infinite;
}

@keyframes float-badge {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-10px);
    }
}

.image-floating-badge i {
    color: #ffd700;
    font-size: 1.5rem;
}

.image-floating-badge span {
    font-weight: 600;
    color: #1a3c6e;
}

/* =================================================================
   MISSION & VISION SECTION
   ================================================================= */

.mission-vision-3d {
    padding: 6rem 2rem;
    background: linear-gradient(180deg, #f7fafc 0%, #ffffff 100%);
}

.mv-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 3rem;
    max-width: 1200px;
    margin: 0 auto;
}

.mv-card {
    position: relative;
    background: white;
    padding: 3rem 2.5rem;
    border-radius: 24px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.mv-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(12, 136, 145, 0.05) 0%, rgba(26, 60, 110, 0.05) 100%);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.mv-card:hover {
    transform: translateY(-15px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}

.mv-card:hover::before {
    opacity: 1;
}

.mv-icon-wrapper {
    position: relative;
    width: 90px;
    height: 90px;
    margin-bottom: 2rem;
}

.icon-bg-pulse {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #0c8891 0%, #1a3c6e 100%);
    border-radius: 50%;
    animation: pulse-icon 2s ease-in-out infinite;
}

@keyframes pulse-icon {
    0%, 100% {
        transform: translate(-50%, -50%) scale(1);
        opacity: 0.3;
    }
    50% {
        transform: translate(-50%, -50%) scale(1.2);
        opacity: 0;
    }
}

.mv-icon-wrapper i {
    position: relative;
    z-index: 1;
    font-size: 3rem;
    color: #0c8891;
}

.mv-content h2 {
    font-size: 2rem;
    font-weight: 800;
    color: #1a3c6e;
    margin-bottom: 1.5rem;
}

.mv-content p {
    color: #555;
    line-height: 1.8;
    font-size: 1.05rem;
}

.card-corner-accent {
    position: absolute;
    width: 40px;
    height: 40px;
    border: 3px solid #0c8891;
    opacity: 0.3;
}

.card-corner-accent.top-left {
    top: 15px;
    left: 15px;
    border-right: none;
    border-bottom: none;
}

.card-corner-accent.bottom-right {
    bottom: 15px;
    right: 15px;
    border-left: none;
    border-top: none;
}

/* =================================================================
   VALUES SECTION
   ================================================================= */

.values-section-3d {
    padding: 8rem 2rem;
    background: white;
}

.section-header-center {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 4rem;
}

.section-header-center h2 {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 800;
    color: #1a3c6e;
    margin-bottom: 1rem;
}

.section-header-center p {
    color: #777;
    font-size: 1.1rem;
}

.values-grid-3d {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2.5rem;
    max-width: 1200px;
    margin: 0 auto;
}

.value-card-3d {
    perspective: 1000px;
    height: 320px;
}

.value-card-inner {
    position: relative;
    width: 100%;
    height: 100%;
    transition: transform 0.6s;
    transform-style: preserve-3d;
}

.value-card-3d:hover .value-card-inner {
    transform: rotateY(5deg) translateY(-10px);
}

.value-front {
    position: relative;
    width: 100%;
    height: 100%;
    background: white;
    padding: 2.5rem 2rem;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    text-align: center;
    backface-visibility: hidden;
    overflow: hidden;
}

.card-shine {
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg, transparent 40%, rgba(255, 255, 255, 0.3) 50%, transparent 60%);
    transform: translateX(-100%) translateY(-100%) rotate(45deg);
    transition: transform 0.6s ease;
}

.value-card-3d:hover .card-shine {
    transform: translateX(100%) translateY(100%) rotate(45deg);
}

.value-icon-3d {
    position: relative;
    width: 90px;
    height: 90px;
    margin: 0 auto 1.5rem;
    background: linear-gradient(135deg, #0c8891 0%, #1a3c6e 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 25px rgba(12, 136, 145, 0.3);
}

.icon-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 120%;
    height: 120%;
    background: radial-gradient(circle, rgba(12, 136, 145, 0.4) 0%, transparent 70%);
    border-radius: 50%;
    animation: glow-pulse 2s ease-in-out infinite;
}

@keyframes glow-pulse {
    0%, 100% {
        transform: translate(-50%, -50%) scale(1);
        opacity: 0.5;
    }
    50% {
        transform: translate(-50%, -50%) scale(1.2);
        opacity: 0;
    }
}

.value-icon-3d i {
    position: relative;
    z-index: 1;
    font-size: 2.5rem;
    color: white;
}

.value-front h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: #1a3c6e;
    margin-bottom: 1rem;
}

.value-front p {
    color: #555;
    line-height: 1.7;
}

/* =================================================================
   STORY TIMELINE SECTION
   ================================================================= */

.story-timeline-3d {
    padding: 8rem 2rem;
    background: linear-gradient(180deg, #f7fafc 0%, #ffffff 100%);
}

.timeline-wrapper {
    max-width: 900px;
    margin: 0 auto;
    position: relative;
    padding: 2rem 0;
}

.timeline-line {
    position: absolute;
    left: 30px;
    top: 0;
    bottom: 0;
    width: 3px;
    background: linear-gradient(180deg, #0c8891 0%, #1a3c6e 100%);
}

.timeline-item {
    position: relative;
    padding-left: 100px;
    margin-bottom: 4rem;
}

.timeline-dot {
    position: absolute;
    left: 0;
    top: 0;
    width: 60px;
    height: 60px;
    background: white;
    border: 4px solid #0c8891;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 15px rgba(12, 136, 145, 0.3);
    z-index: 1;
}

.dot-pulse {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    height: 100%;
    background: #0c8891;
    border-radius: 50%;
    animation: pulse-dot 2s ease-in-out infinite;
}

@keyframes pulse-dot {
    0%, 100% {
        transform: translate(-50%, -50%) scale(1);
        opacity: 0.3;
    }
    50% {
        transform: translate(-50%, -50%) scale(1.5);
        opacity: 0;
    }
}

.timeline-dot i {
    position: relative;
    z-index: 1;
    font-size: 1.5rem;
    color: #0c8891;
}

.timeline-content {
    background: white;
    padding: 2rem;
    border-radius: 16px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.timeline-content:hover {
    transform: translateX(10px);
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.15);
}

.timeline-year {
    display: inline-block;
    padding: 0.5rem 1rem;
    background: linear-gradient(135deg, #0c8891 0%, #1a3c6e 100%);
    color: white;
    border-radius: 50px;
    font-weight: 700;
    font-size: 0.9rem;
    margin-bottom: 1rem;
}

.timeline-content h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: #1a3c6e;
    margin-bottom: 0.75rem;
}

.timeline-content p {
    color: #555;
    line-height: 1.7;
}
/* Standard Page Styles */
.standard-page {
    padding: 40px 20px;
}

.page-header {
    text-align: center;
    padding-bottom: 30px;
}

.about-page .page-header,
.contact-page .page-header,
.faq-page .page-header,
.services-page .page-header {
    text-align: center;
    padding-bottom: 30px;
}

.about-content {
    display: flex;
    gap: 30px;
    align-items: center;
    margin-bottom: 30px;
}

.about-text {
    flex: 1;
}

.about-image {
    flex: 1;
}

.about-image img {
    width: 100%;
    border-radius: 8px;
    object-fit: cover;
    box-shadow: var(--shadow-lg);
    transition: transform var(--transition-slow);
}

.about-image img:hover {
    transform: scale(1.02);
}

/* 3D About Section */
.about-section-3d {
    padding: 6rem 2rem;
    background: linear-gradient(180deg, #f7fafc 0%, #ffffff 100%);
}

.about-content-3d {
    max-width: 1200px;
    margin: 0 auto 4rem;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 4rem;
    align-items: center;
}

.about-text-3d h2 {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--text-dark);
    margin-bottom: 1.5rem;
}

.about-text-3d p {
    font-size: 1.1rem;
    color: var(--text-muted);
    line-height: 1.8;
}

.about-image-3d {
    position: relative;
}

.image-frame {
    border-radius: var(--border-radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow-3d);
    position: relative;
}

.image-frame::before {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: var(--primary-gradient);
    border-radius: var(--border-radius-xl);
    z-index: -1;
}

.image-frame img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: var(--border-radius-xl);
}

.mission-vision {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    margin-bottom: 30px;
}

.mission, .vision {
    padding: 25px;
    background: #f9f9f9;
    border-radius: 10px;
    box-shadow: var(--shadow-md);
    transition: all var(--transition-normal);
}

.mission:hover, .vision:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

/* 3D Mission/Vision */
.mission-vision-3d {
    max-width: 1200px;
    margin: 0 auto 4rem;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 3rem;
}

.mission-card,
.vision-card {
    background: white;
    padding: 3rem 2rem;
    border-radius: var(--border-radius-xl);
    box-shadow: var(--shadow-lg);
    transition: all var(--transition-normal);
}

.mission-card:hover,
.vision-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-3d);
}

.card-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.card-header i {
    font-size: 2rem;
    color: var(--primary-color);
}

.card-header h2 {
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--text-dark);
}

.mission-card p,
.vision-card p {
    color: var(--text-muted);
    line-height: 1.8;
}

.values-section, .team-section {
    padding: 30px 0;
    text-align: center;
}

.values-grid, .team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 15px;
}

.value-card, .team-card {
    padding: 15px;
    background-color: #fff;
    border-radius: 8px;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
    transition: all var(--transition-normal);
}

.value-card:hover, .team-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.team-card img {
    width: 100%;
    height: 180px;
    object-fit: cover;
    border-radius: 8px;
    margin-bottom: 0.75rem;
}

/* 3D Values Section */
.values-section-3d {
    max-width: 1200px;
    margin: 0 auto;
}

.values-section-3d h2 {
    text-align: center;
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--text-dark);
    margin-bottom: 3rem;
}

.values-grid-3d {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2.5rem;
}

.value-card-3d {
    background: white;
    padding: 2.5rem 2rem;
    border-radius: var(--border-radius-lg);
    text-align: center;
    box-shadow: var(--shadow-md);
    transition: all var(--transition-normal);
    position: relative;
    overflow: hidden;
}

.value-card-3d::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: var(--primary-gradient);
    transform: scaleX(0);
    transition: transform var(--transition-normal);
}

.value-card-3d:hover::before {
    transform: scaleX(1);
}

.value-card-3d:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
}

.value-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 1.5rem;
    background: var(--primary-gradient);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow-md);
    transition: all var(--transition-normal);
}

.value-card-3d:hover .value-icon {
    transform: rotateY(360deg);
}

.value-icon i {
    font-size: 1.8rem;
    color: white;
}

.value-card-3d h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 1rem;
}

.value-card-3d p {
    color: var(--text-muted);
    line-height: 1.6;
}
/* =================================================================
   TEAM SECTION
   ================================================================= */

.team-section-3d {
    padding: 8rem 2rem;
    background: white;
}

.team-grid-3d {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 3rem;
    max-width: 1200px;
    margin: 0 auto;
}

.team-member-card {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    transition: all 0.4s ease;
}

.team-member-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}

.member-image-wrapper {
    position: relative;
    height: 300px;
    background: linear-gradient(135deg, #0c8891 0%, #1a3c6e 100%);
    overflow: hidden;
}

.member-image-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.1) 0%, rgba(255, 255, 255, 0.05) 100%);
}

.member-image-placeholder i {
    font-size: 6rem;
    color: rgba(255, 255, 255, 0.5);
}

.member-social {
    position: absolute;
    bottom: 1rem;
    right: 1rem;
    display: flex;
    gap: 0.5rem;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.3s ease;
}

.team-member-card:hover .member-social {
    opacity: 1;
    transform: translateY(0);
}

.social-link {
    width: 40px;
    height: 40px;
    background: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #0c8891;
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-link:hover {
    background: #0c8891;
    color: white;
    transform: scale(1.1);
}

.member-info {
    padding: 2rem;
    text-align: center;
}

.member-info h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: #1a3c6e;
    margin-bottom: 0.5rem;
}

.member-role {
    color: #0c8891;
    font-weight: 600;
    margin-bottom: 0.75rem;
}

.member-bio {
    color: #777;
    font-size: 0.95rem;
}

/* =================================================================
   STATS SECTION
   ================================================================= */

.stats-section-3d {
    position: relative;
    padding: 6rem 2rem;
    background: linear-gradient(135deg, #0c8891 0%, #1a3c6e 100%);
    overflow: hidden;
}

.stats-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="50" cy="50" r="40" fill="none" stroke="rgba(255,255,255,0.05)" stroke-width="0.5"/></svg>');
    background-size: 100px 100px;
    opacity: 0.3;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 3rem;
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.stat-card-3d {
    text-align: center;
    padding: 2rem;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.4s ease;
}

.stat-card-3d:hover {
    transform: translateY(-10px);
    background: rgba(255, 255, 255, 0.15);
}

.stat-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
    background: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}

.stat-icon i {
    font-size: 2rem;
    color: #0c8891;
}

.stat-number {
    font-size: 3rem;
    font-weight: 800;
    color: white;
    margin-bottom: 0.5rem;
}

.stat-label {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.1rem;
}

/* =================================================================
   ABOUT CTA SECTION
   ================================================================= */

.about-cta-3d {
    padding: 6rem 2rem;
    background: linear-gradient(180deg, #f7fafc 0%, #ffffff 100%);
}

.cta-content-center {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.cta-content-center h2 {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 800;
    color: #1a3c6e;
    margin-bottom: 1rem;
}

.cta-content-center p {
    color: #777;
    font-size: 1.2rem;
    margin-bottom: 2.5rem;
}

.cta-buttons {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
}

.btn-cta-primary {
    background: linear-gradient(135deg, #0c8891 0%, #1a3c6e 100%);
    color: white;
    padding: 1rem 2.5rem;
    border-radius: 50px;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    box-shadow: 0 8px 25px rgba(12, 136, 145, 0.3);
    transition: all 0.3s ease;
}

.btn-cta-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(12, 136, 145, 0.4);
}

.btn-cta-secondary {
    background: white;
    color: #0c8891;
    padding: 1rem 2.5rem;
    border-radius: 50px;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    border: 2px solid #0c8891;
    transition: all 0.3s ease;
}

.btn-cta-secondary:hover {
    background: #0c8891;
    color: white;
    transform: translateY(-3px);
}

/* =================================================================
   RESPONSIVE DESIGN
   ================================================================= */

@media (max-width: 768px) {
    .about-hero-3d {
        min-height: 60vh;
    }

    .hero-stats-mini {
        gap: 1.5rem;
    }

    .stat-mini {
        font-size: 0.9rem;
    }

    .who-content-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .who-text-3d {
        order: 2;
    }

    .who-image-3d {
        order: 1;
    }

    .mv-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .values-grid-3d {
        grid-template-columns: 1fr;
    }

    .timeline-line {
        left: 15px;
    }

    .timeline-item {
        padding-left: 80px;
    }

    .timeline-dot {
        width: 50px;
        height: 50px;
    }

    .team-grid-3d {
        grid-template-columns: 1fr;
    }

    .stats-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .cta-buttons {
        flex-direction: column;
    }

    .btn-cta-primary,
    .btn-cta-secondary {
        width: 100%;
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .about-hero-title {
        font-size: 2rem;
    }

    .hero-stats-mini {
        flex-direction: column;
        gap: 1rem;
    }

    .section-header-center h2,
    .who-text-3d h2 {
        font-size: 1.75rem;
    }

    .timeline-item {
        padding-left: 70px;
    }

    .timeline-dot {
        width: 40px;
        height: 40px;
    }

    .timeline-dot i {
        font-size: 1.25rem;
    }
}

/* =================================================================
   ACCESSIBILITY & PERFORMANCE
   ================================================================= */

@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}
/* Contact Page */
.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
}

.form-group {
    margin-bottom: 15px;
}

.form-group label {
    display: block;
    margin-bottom: 5px;
    font-weight: 500;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 8px;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-size: 0.95rem;
    transition: border-color var(--transition-normal);
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(12, 136, 145, 0.1);
}

.form-group textarea {
    resize: vertical;
}

.contact-info p {
    display: flex;
    align-items: center;
    margin-bottom: 10px;
}

.contact-info i {
    margin-right: 8px;
    color: #0c8891;
}

.map-embed {
    margin-top: 15px;
}

.map-embed iframe {
    width: 100%;
    height: 300px;
    border-radius: 8px;
}

/* =================================================================
   3D ENHANCED SERVICES PAGE STYLES
   Modern Service Showcase with Animations
   ================================================================= */

/* =================================================================
   SERVICES HERO SECTION
   ================================================================= */

.services-hero-3d {
    position: relative;
    min-height: 65vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #0c8891 0%, #1a3c6e 100%);
    overflow: hidden;
    color: white;
    text-align: center;
    padding: 2rem;
}

.services-hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.hero-shape {
    position: absolute;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.2) 0%, transparent 70%);
    filter: blur(60px);
    animation: float-shape 20s ease-in-out infinite;
}

.hero-shape.shape-1 {
    width: 400px;
    height: 400px;
    top: -10%;
    left: -10%;
    animation-delay: 0s;
}

.hero-shape.shape-2 {
    width: 350px;
    height: 350px;
    bottom: -10%;
    right: -10%;
    animation-delay: 7s;
}

.hero-shape.shape-3 {
    width: 300px;
    height: 300px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    animation-delay: 14s;
}

@keyframes float-shape {
    0%, 100% {
        transform: translate(0, 0) scale(1);
    }
    33% {
        transform: translate(30px, -30px) scale(1.1);
    }
    66% {
        transform: translate(-30px, 30px) scale(0.9);
    }
}

.services-hero-content {
    position: relative;
    z-index: 1;
    max-width: 900px;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1.5rem;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    border-radius: 50px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    margin-bottom: 2rem;
    animation: fadeInDown 1s ease-out;
}

.hero-badge i {
    color: #ffd700;
}

.services-hero-title {
    font-size: clamp(2.5rem, 6vw, 4rem);
    font-weight: 800;
    margin-bottom: 1.5rem;
    line-height: 1.1;
}

.title-line {
    display: block;
    animation: slideInLeft 1s ease-out;
}

.title-accent {
    display: block;
    background: linear-gradient(135deg, #ffffff 0%, #ffd700 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: slideInRight 1s ease-out 0.2s both;
}

@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.services-hero-subtitle {
    font-size: clamp(1.1rem, 2vw, 1.3rem);
    margin-bottom: 3rem;
    opacity: 0.95;
    line-height: 1.6;
    animation: fadeIn 1s ease-out 0.4s both;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

.services-quick-links {
    display: flex;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
    animation: fadeInUp 1s ease-out 0.6s both;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.quick-link-btn {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem 1.5rem;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 2px solid rgba(255, 255, 255, 0.2);
    border-radius: 16px;
    color: white;
    text-decoration: none;
    transition: all 0.3s ease;
    min-width: 100px;
}

.quick-link-btn:hover,
.quick-link-btn.active {
    background: rgba(255, 255, 255, 0.2);
    border-color: rgba(255, 255, 255, 0.4);
    transform: translateY(-5px);
}

.quick-link-btn i {
    font-size: 1.5rem;
}

.quick-link-btn span {
    font-size: 0.9rem;
    font-weight: 600;
}

/* =================================================================
   SERVICES INTRODUCTION
   ================================================================= */

.services-intro-3d {
    padding: 6rem 2rem;
    background: white;
}

.intro-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.intro-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 2rem;
    background: linear-gradient(135deg, #0c8891 0%, #1a3c6e 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 25px rgba(12, 136, 145, 0.3);
    animation: pulse-icon 2s ease-in-out infinite;
}

@keyframes pulse-icon {
    0%, 100% {
        transform: scale(1);
        box-shadow: 0 8px 25px rgba(12, 136, 145, 0.3);
    }
    50% {
        transform: scale(1.05);
        box-shadow: 0 12px 35px rgba(12, 136, 145, 0.4);
    }
}

.intro-icon i {
    font-size: 2.5rem;
    color: white;
}

.intro-content h2 {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 800;
    color: #1a3c6e;
    margin-bottom: 1.5rem;
}

.intro-content p {
    font-size: 1.1rem;
    color: #555;
    line-height: 1.8;
}

/* =================================================================
   SERVICES SHOWCASE
   ================================================================= */

.services-showcase-3d {
    padding: 4rem 2rem 8rem;
    background: linear-gradient(180deg, #ffffff 0%, #f7fafc 100%);
}

.service-card-3d {
    position: relative;
    margin-bottom: 6rem;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}

.service-card-bg {
    position: absolute;
    top: -20px;
    left: -20px;
    right: -20px;
    bottom: -20px;
    background: linear-gradient(135deg, rgba(12, 136, 145, 0.05) 0%, rgba(26, 60, 110, 0.05) 100%);
    border-radius: 32px;
    z-index: -1;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.service-card-3d:hover .service-card-bg {
    opacity: 1;
}

.service-card-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
    background: white;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    transition: all 0.4s ease;
}

.service-card-3d:hover .service-card-layout {
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
    transform: translateY(-5px);
}

.service-card-3d.reverse .service-card-layout {
    grid-template-columns: 1fr 1fr;
}

.service-card-3d.reverse .service-image-3d {
    order: 2;
}

.service-card-3d.reverse .service-content-3d {
    order: 1;
}

.service-image-3d {
    position: relative;
    height: 500px;
    overflow: hidden;
}

.service-image-3d img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.service-card-3d:hover .service-image-3d img {
    transform: scale(1.1);
}

.image-overlay-gradient {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(12, 136, 145, 0.7) 0%, rgba(26, 60, 110, 0.7) 100%);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.service-card-3d:hover .image-overlay-gradient {
    opacity: 1;
}

.service-badge {
    position: absolute;
    top: 2rem;
    right: 2rem;
    width: 70px;
    height: 70px;
    background: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
    z-index: 1;
}

.service-badge i {
    font-size: 2rem;
    color: #0c8891;
}

.service-content-3d {
    padding: 3rem;
}

.service-header {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    margin-bottom: 1.5rem;
}

.service-icon-wrapper {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #0c8891 0%, #1a3c6e 100%);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 6px 20px rgba(12, 136, 145, 0.3);
    flex-shrink: 0;
}

.service-icon-wrapper i {
    font-size: 1.75rem;
    color: white;
}

.service-header h3 {
    font-size: 2rem;
    font-weight: 800;
    color: #1a3c6e;
    margin: 0;
}

.service-description {
    font-size: 1.05rem;
    color: #555;
    line-height: 1.7;
    margin-bottom: 2rem;
}

.service-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1rem;
    margin-bottom: 2rem;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem;
    background: linear-gradient(135deg, #f7fafc 0%, #ffffff 100%);
    border-radius: 10px;
    transition: all 0.3s ease;
}

.feature-item:hover {
    background: linear-gradient(135deg, #e6f7f9 0%, #f0f7ff 100%);
    transform: translateX(5px);
}

.feature-item i {
    font-size: 1.25rem;
    color: #0c8891;
    flex-shrink: 0;
}

.feature-item span {
    font-size: 0.95rem;
    color: #333;
    font-weight: 500;
}

.service-highlight {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1.5rem;
    background: linear-gradient(135deg, rgba(12, 136, 145, 0.05) 0%, rgba(26, 60, 110, 0.05) 100%);
    border-radius: 12px;
    border-left: 4px solid #0c8891;
    margin-bottom: 2rem;
}

.service-highlight i {
    font-size: 1.5rem;
    color: #0c8891;
    margin-top: 0.25rem;
}

.service-highlight p {
    color: #333;
    font-size: 1rem;
    line-height: 1.6;
    margin: 0;
    font-weight: 500;
}

.btn-service-3d {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem 2rem;
    background: linear-gradient(135deg, #0c8891 0%, #1a3c6e 100%);
    color: white;
    border-radius: 50px;
    font-weight: 600;
    text-decoration: none;
    box-shadow: 0 6px 20px rgba(12, 136, 145, 0.3);
    transition: all 0.3s ease;
}

.btn-service-3d:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(12, 136, 145, 0.4);
}

.btn-service-3d i {
    transition: transform 0.3s ease;
}

.btn-service-3d:hover i {
    transform: translateX(5px);
}

/* =================================================================
   HELP SECTION
   ================================================================= */

.services-help-3d {
    padding: 6rem 2rem;
    background: white;
}

.help-card {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
    padding: 3rem;
    background: linear-gradient(135deg, #f7fafc 0%, #ffffff 100%);
    border-radius: 24px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

.help-card i {
    font-size: 4rem;
    color: #0c8891;
    margin-bottom: 1.5rem;
}

.help-card h3 {
    font-size: 2rem;
    font-weight: 700;
    color: #1a3c6e;
    margin-bottom: 1rem;
}

.help-card p {
    font-size: 1.1rem;
    color: #555;
    margin-bottom: 2rem;
    line-height: 1.7;
}

.btn-help {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem 2.5rem;
    background: linear-gradient(135deg, #0c8891 0%, #1a3c6e 100%);
    color: white;
    border-radius: 50px;
    font-weight: 600;
    text-decoration: none;
    box-shadow: 0 6px 20px rgba(12, 136, 145, 0.3);
    transition: all 0.3s ease;
}

.btn-help:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(12, 136, 145, 0.4);
}

/* =================================================================
   WHY CHOOSE US SECTION
   ================================================================= */

.why-choose-3d {
    position: relative;
    padding: 8rem 2rem;
    background: linear-gradient(135deg, #0c8891 0%, #1a3c6e 100%);
    overflow: hidden;
}

.why-choose-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="50" cy="50" r="40" fill="none" stroke="rgba(255,255,255,0.05)" stroke-width="0.5"/></svg>');
    background-size: 100px 100px;
    opacity: 0.3;
}

.why-header {
    text-align: center;
    margin-bottom: 4rem;
    position: relative;
    z-index: 1;
}

.why-header h2 {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 800;
    color: white;
    margin-bottom: 1rem;
}

.why-header p {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.9);
}

.why-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto 3rem;
    position: relative;
    z-index: 1;
}

.why-card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    padding: 2.5rem 2rem;
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    text-align: center;
    transition: all 0.4s ease;
}

.why-card:hover {
    background: rgba(255, 255, 255, 0.15);
    transform: translateY(-10px);
}

.why-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
    background: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
}

.why-card:hover .why-icon {
    transform: scale(1.1) rotate(5deg);
}

.why-icon i {
    font-size: 2rem;
    color: #0c8891;
}

.why-card h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: white;
    margin-bottom: 0.75rem;
}

.why-card p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1rem;
}

.why-cta {
    text-align: center;
    position: relative;
    z-index: 1;
}

.btn-why-cta {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1.25rem 3rem;
    background: white;
    color: #0c8891;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1.1rem;
    text-decoration: none;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease;
}

.btn-why-cta:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.4);
}

/* =================================================================
   RESPONSIVE DESIGN
   ================================================================= */

@media (max-width: 1024px) {
    .service-card-layout {
        grid-template-columns: 1fr !important;
        gap: 0;
    }

    .service-card-3d.reverse .service-image-3d {
        order: 1;
    }

    .service-card-3d.reverse .service-content-3d {
        order: 2;
    }

    .service-image-3d {
        height: 350px;
    }

    .service-features {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .services-hero-3d {
        min-height: 55vh;
    }

    .services-quick-links {
        gap: 0.75rem;
    }

    .quick-link-btn {
        padding: 0.75rem 1rem;
        min-width: 80px;
    }

    .quick-link-btn i {
        font-size: 1.25rem;
    }

    .quick-link-btn span {
        font-size: 0.8rem;
    }

    .service-card-3d {
        margin-bottom: 4rem;
    }

    .service-content-3d {
        padding: 2rem;
    }

    .service-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 1rem;
    }

    .service-header h3 {
        font-size: 1.75rem;
    }

    .service-image-3d {
        height: 300px;
    }

    .service-badge {
        width: 60px;
        height: 60px;
        top: 1.5rem;
        right: 1.5rem;
    }

    .service-badge i {
        font-size: 1.75rem;
    }

    .why-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .services-hero-title {
        font-size: 2rem;
    }

    .services-quick-links {
        flex-wrap: nowrap;
        overflow-x: auto;
        justify-content: flex-start;
        padding-bottom: 1rem;
        gap: 0.5rem;
    }

    .quick-link-btn {
        flex-shrink: 0;
    }

    .service-content-3d {
        padding: 1.5rem;
    }

    .service-header h3 {
        font-size: 1.5rem;
    }

    .service-features {
        gap: 0.75rem;
    }

    .feature-item {
        padding: 0.5rem;
    }

    .help-card {
        padding: 2rem 1.5rem;
    }

    .help-card h3 {
        font-size: 1.5rem;
    }
}

/* =================================================================
   SCROLL BEHAVIOR
   ================================================================= */

html {
    scroll-behavior: smooth;
}

/* =================================================================
   ACCESSIBILITY
   ================================================================= */

@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}

/* FAQ Page */
.faq-content details {
    margin-bottom: 8px;
    background-color: #fff;
    padding: 12px;
    border-radius: 5px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    transition: all var(--transition-normal);
}

.faq-content details:hover {
    box-shadow: var(--shadow-md);
}

.faq-content summary {
    font-weight: 500;
    cursor: pointer;
    padding: 8px;
}

.faq-content p {
    padding: 8px 15px;
    font-size: 0.95rem;
}

.faq-cta {
    text-align: center;
    padding: 30px 0;
}

/* 3D FAQ Section */
.faq-section-3d {
    padding: 6rem 2rem;
    background: white;
}

.faq-content-3d {
    max-width: 900px;
    margin: 0 auto 4rem;
}

.faq-item-3d {
    background: white;
    margin-bottom: 1.5rem;
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow-md);
    overflow: hidden;
    transition: all var(--transition-normal);
}

.faq-item-3d:hover {
    box-shadow: var(--shadow-lg);
}

.faq-item-3d summary {
    padding: 1.5rem 2rem;
    cursor: pointer;
    font-weight: 600;
    color: var(--text-dark);
    display: flex;
    justify-content: space-between;
    align-items: center;
    list-style: none;
    transition: all var(--transition-normal);
}

.faq-item-3d summary::-webkit-details-marker {
    display: none;
}

.faq-item-3d summary i {
    transition: transform var(--transition-normal);
    color: var(--primary-color);
}

.faq-item-3d[open] summary {
    background: linear-gradient(135deg, rgba(12, 136, 145, 0.05) 0%, rgba(26, 60, 110, 0.05) 100%);
}

.faq-item-3d[open] summary i {
    transform: rotate(180deg);
}

.faq-item-3d p {
    padding: 0 2rem 1.5rem;
    color: var(--text-muted);
    line-height: 1.7;
}

.faq-cta-3d {
    text-align: center;
    max-width: 600px;
    margin: 0 auto;
}

.faq-cta-3d h2 {
    font-size: 2rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 1rem;
}

.faq-cta-3d p {
    color: var(--text-muted);
    margin-bottom: 2rem;
}

/* =================================================================
   FOOTER STYLES - ENHANCED
   ================================================================= */
.site-footer {
    background-color: #0c8891;
    color: #fff;
    padding: 40px 0 15px;
    box-shadow: 0 -4px 12px rgba(0,0,0,0.1);
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 30px;
    margin-bottom: 30px;
}

.footer-section h4 {
    color: #fff;
    margin-bottom: 0.75rem;
    font-size: 1.1rem;
    text-decoration: none !important;
}

.footer-section p, .footer-section ul li {
    color: #d0d7e6;
    font-size: 0.95rem;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 8px;
}

.footer-section ul li a:hover {
    color: #fff;
}

.footer-section ul a {
    text-decoration: none !important;
    color: #ffffff;
    transition: all var(--transition-normal);
}

.footer-section ul a:hover {
    color: #15325a;
    text-decoration: underline !important;
    transform: translateX(5px);
}

.social-links a {
    color: #fff;
    margin-right: 12px;
    font-size: 1.25rem;
    transition: all var(--transition-normal);
    text-decoration: none !important;
    display: inline-block;
}

.social-links a:hover {
    color: #d0d7e6;
    text-decoration: none !important;
    transform: translateY(-3px);
}

.newsletter-form {
    display: flex;
    margin-top: 0.75rem;
}

.newsletter-form input {
    padding: 8px;
    border: none;
    border-radius: 5px 0 0 5px;
    flex: 1;
    font-size: 0.95rem;
}

.newsletter-form button {
    border-radius: 0 5px 5px 0;
    padding: 8px 12px;
    background: #1a3c6e;
    color: white;
    border: none;
    cursor: pointer;
    transition: all var(--transition-normal);
}

.newsletter-form button:hover {
    background: #0e2a4e;
    transform: translateY(-2px);
}

.footer-bottom {
    text-align: center;
    padding-top: 15px;
    border-top: 1px solid #d0d7e6;
    font-size: 0.9rem;
}

/* =================================================================
   AUTH PAGE STYLES
   ================================================================= */
.auth-page {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 60px 20px;
    min-height: calc(100vh - 60px);
}

.auth-box {
    background: #fff;
    padding: 25px;
    border-radius: 10px;
    max-width: 400px;
    width: 100%;
    box-shadow: var(--shadow-xl);
    text-align: center;
}

.auth-box h2 {
    font-size: 1.75rem;
    color: #1a3c6e;
    margin-bottom: 0.75rem;
}

.auth-box p {
    color: #555;
    font-size: 0.9rem;
    margin-bottom: 1.25rem;
}

.auth-box .form-group {
    text-align: left;
    margin-bottom: 12px;
}

.auth-box .form-group label {
    font-size: 0.9rem;
    font-weight: 500;
    color: #333;
}

.auth-box .form-control {
    display: block;
    width: 100%;
    padding: 8px;
    font-size: 0.9rem;
    margin-top: 4px;
    border-radius: 5px;
    border: 1px solid #ddd;
    transition: all var(--transition-normal);
}

.auth-box .form-control:focus {
    outline: none;
    border-color: #1a3c6e;
    box-shadow: 0 0 0 3px rgba(26, 60, 110, 0.1);
}

.auth-box .btn-primary {
    background: #1a3c6e;
    color: #fff;
    font-size: 1rem;
    font-weight: 500;
    padding: 10px;
    border-radius: 5px;
    border: none;
    cursor: pointer;
    width: 100%;
    transition: all var(--transition-normal);
}

.auth-box .btn-primary:hover {
    background: #0e2a4e;
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.auth-links {
    margin-top: 12px;
    font-size: 0.9rem;
}

.auth-links a {
    color: #224b85;
    font-weight: 500;
}

.auth-links a:hover {
    color: #02182f;
    text-decoration: none;
}

.auth-box .form-group.policy-agreement {
    display: flex;
    align-items: center;
    gap: 12px;
}

.auth-box .form-group.policy-agreement input[type="checkbox"] {
    width: 18px;
    height: 18px;
    margin: 0;
    accent-color: #1a3c6e;
    cursor: pointer;
}

.auth-box .form-group.policy-agreement label {
    font-size: 0.85rem;
    line-height: 1.4;
    color: #333;
}

.auth-box .form-group.policy-agreement a {
    color: #1a3c6e;
    font-weight: 500;
}

.auth-box .form-group.policy-agreement a:hover {
    color: #0e2a4e;
    text-decoration: underline;
}

.auth-box .form-control select {
    appearance: none;
    background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="10" height="5" viewBox="0 0 10 5"><path d="M0 0l5 5 5-5H0z" fill="%231a3c6e"/></svg>') no-repeat right 10px center;
    background-size: 10px;
    padding-right: 30px;
}

/* =================================================================
   UTILITY CLASSES
   ================================================================= */
.text-gradient {
    background: var(--primary-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.glass-effect {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.hover-lift {
    transition: transform var(--transition-normal);
}

.hover-lift:hover {
    transform: translateY(-10px);
}

/* =================================================================
   RESPONSIVE DESIGN - MEDIA QUERIES
   ================================================================= */

@media (max-width: 768px) {
    .nav-container {
        padding: 1rem 0;
        position: relative;
        min-height: 3.75rem;
        box-sizing: border-box;
    }

    .nav-links {
        display: none;
        flex-direction: column;
        width: min(80%, 18.75rem);
        background-color: #ADEED9;
        position: fixed;
        top: 0;
        left: -100%;
        height: 100vh;
        padding: 6.25rem 1.25rem 1.25rem;
        box-shadow: 0.25rem 0 0.75rem rgba(0, 0, 0, 0.2);
        z-index: 999;
        overflow-y: auto;
        transition: left 0.3s ease-in-out;
    }

    .nav-links.active {
        display: flex;
        left: 0;
    }

    .nav-links li {
        margin: 0.625rem 0;
    }

    .nav-links a {
        font-size: 1.1rem;
        padding: 0.75rem 0.9375rem;
        display: block;
        text-align: left;
        color: #333;
        border-radius: 0.3125rem;
        transition: background-color 0.3s ease, color 0.3s ease;
    }

    .nav-links a:hover,
    .nav-links a:focus {
        color: #100f0f;
        background-color: #1a3c6e;
        border-radius: 0.3125rem;
        outline: none;
    }

    .nav-links a:focus-visible {
        outline: 0.125rem solid #1a3c6e;
        outline-offset: 0.125rem;
    }

    .auth-links {
        display: none;
        flex-direction: column;
        padding: 0.625rem 0;
        margin-top: 0.625rem;
        border-top: 1px solid rgba(0, 0, 0, 0.1);
    }

    .nav-links.active .auth-links {
        display: flex;
    }

    .auth-links .btn {
        margin: 0.5rem 0.9375rem;
        text-align: center;
        width: calc(100% - 1.875rem);
        padding: 0.75rem;
        font-size: 1rem;
        border-radius: 0.3125rem;
        transition: transform 0.2s ease, background-color 0.3s ease;
    }

    .auth-links .btn:hover,
    .auth-links .btn:focus {
        transform: translateY(-0.125rem);
        outline: none;
    }

    .auth-links .btn:focus-visible {
        outline: 0.125rem solid #1a3c6e;
        outline-offset: 0.125rem;
    }

    .mobile-toggle {
        display: block;
        z-index: 1000;
        cursor: pointer;
    }

    .mobile-toggle.active .fa-bars::before {
        content: '\f00d';
    }

    .mobile-menu-backdrop.active {
        display: block;
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background-color: rgba(0, 0, 0, 0.5);
        z-index: 998;
    }

    .hero-section,
    .hero-section-3d {
        height: 55vh;
        min-height: auto;
    }

    .hero-content h1 {
        font-size: 1.6rem;
    }

    .hero-content p {
        font-size: 0.9rem;
    }

    .hero-cta .btn,
    .hero-cta-3d .btn-3d {
        margin: 10px;
        font-size: 0.9rem;
        padding: 8px 16px;
    }

    .hero-cta-3d {
        flex-direction: column;
    }

    .hero-stats {
        gap: 2rem;
    }

    .stat-item h3 {
        font-size: 2rem;
    }

    .about-content, 
    .contact-content, 
    .service-item,
    .about-content-3d {
        flex-direction: column;
        gap: 15px;
        grid-template-columns: 1fr;
    }

    .mission-vision,
    .mission-vision-3d {
        grid-template-columns: 1fr;
        gap: 15px;
    }

    .contact-content {
        grid-template-columns: 1fr;
    }

    .map-embed iframe {
        height: 200px;
    }

    .auth-page {
        padding: 40px 15px;
    }

    .auth-box {
        padding: 20px;
        max-width: 350px;
    }

    .auth-box h2 {
        font-size: 1.5rem;
    }

    .auth-box p {
        font-size: 0.85rem;
    }

    .auth-box .form-group label {
        font-size: 0.85rem;
    }

    .auth-box .form-control {
        font-size: 0.85rem;
        padding: 7px;
    }

    .auth-box .btn-primary {
        font-size: 0.95rem;
        padding: 8px;
    }

    .auth-links {
        font-size: 0.85rem;
    }

    .logo-img {
        height: 60px;
    }

    .auth-box .form-group.policy-agreement {
        gap: 10px;
    }

    .auth-box .form-group.policy-agreement input[type="checkbox"] {
        width: 16px;
        height: 16px;
    }

    .auth-box .form-group.policy-agreement label {
        font-size: 0.8rem;
    }

    .steps-grid-3d,
    .who-grid-3d,
    .features-grid-3d,
    .service-grid-3d,
    .values-grid-3d,
    .testimonial-grid-3d {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 8px;
    }

    .logo-img {
        height: 70px;
    }

    .nav-links {
        width: 100%;
        max-width: 100%;
        padding: 80px 20px;
    }

    .nav-links a {
        font-size: 1rem;
        padding: 10px 15px;
    }

    .auth-links .btn {
        font-size: 0.95rem;
        padding: 10px;
        margin: 8px 15px;
    }

    .mobile-toggle {
        font-size: 20px;
    }

    .hero-section,
    .hero-section-3d {
        height: 50vh;
    }

    .hero-content h1 {
        font-size: 1.4rem;
    }

    .hero-content p {
        font-size: 0.85rem;
    }

    .feature-card, 
    .service-card, 
    .testimonial-card, 
    .value-card, 
    .team-card {
        padding: 10px;
    }

    .feature-card h3, 
    .service-card h3 {
        font-size: 1rem;
    }

    .service-card img, 
    .team-card img {
        height: 140px;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }

    .footer-section h4 {
        font-size: 0.95rem;
    }

    .newsletter-form input {
        font-size: 0.8rem;
    }

    .newsletter-form button {
        padding: 8px 8px;
        font-size: 0.8rem;
    }

    .auth-page {
        padding: 30px 10px;
    }

    .auth-box {
        padding: 15px;
        max-width: 320px;
    }

    .auth-box h2 {
        font-size: 1.25rem;
    }

    .auth-box p {
        font-size: 0.8rem;
    }

    .auth-box .form-group label {
        font-size: 0.8rem;
    }

    .auth-box .form-control {
        font-size: 0.8rem;
        padding: 6px;
    }

    .auth-box .btn-primary {
        font-size: 0.9rem;
        padding: 7px;
    }

    .auth-links {
        font-size: 0.8rem;
        display: block;
    }

    .auth-box .form-group.policy-agreement {
        gap: 8px;
    }

    .auth-box .form-group.policy-agreement input[type="checkbox"] {
        width: 14px;
        height: 14px;
    }

    .auth-box .form-group.policy-agreement label {
        font-size: 0.75rem;
    }
}

/* Mobile footer link styling */
@media (max-width: 576px) {
    .footer-section ul a {
        font-size: 0.9rem;
        padding: 6px 0;
        display: block;
    }
}

@media (min-width: 577px) and (max-width: 768px) {
    .footer-section ul a {
        font-size: 0.95rem;
        padding: 8px 0;
    }
}

/* =================================================================
   3D ENHANCED CONTACT PAGE STYLES
   Modern Contact Form with Interactive Elements
   ================================================================= */

/* =================================================================
   CONTACT HERO SECTION
   ================================================================= */

.contact-hero-3d {
    position: relative;
    min-height: 60vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #0c8891 0%, #1a3c6e 100%);
    overflow: hidden;
    color: white;
    text-align: center;
    padding: 4rem 2rem;
}

.contact-hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.hero-circle {
    position: absolute;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.15) 0%, transparent 70%);
    filter: blur(50px);
    animation: float-circle 15s ease-in-out infinite;
}

.hero-circle.circle-1 {
    width: 300px;
    height: 300px;
    top: -10%;
    left: 10%;
    animation-delay: 0s;
}

.hero-circle.circle-2 {
    width: 400px;
    height: 400px;
    bottom: -10%;
    right: 10%;
    animation-delay: 5s;
}

.hero-circle.circle-3 {
    width: 250px;
    height: 250px;
    top: 40%;
    right: 20%;
    animation-delay: 10s;
}

@keyframes float-circle {
    0%, 100% {
        transform: translate(0, 0) scale(1);
    }
    50% {
        transform: translate(20px, -20px) scale(1.1);
    }
}

.contact-hero-content {
    position: relative;
    z-index: 1;
    max-width: 800px;
}

.hero-label {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1.5rem;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    border-radius: 50px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    margin-bottom: 2rem;
    animation: fadeInDown 1s ease-out;
}

@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.contact-hero-title {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 800;
    margin-bottom: 1.5rem;
    line-height: 1.1;
}

.title-main {
    display: block;
    animation: slideInLeft 1s ease-out;
}

.title-sub {
    display: block;
    font-size: 0.6em;
    opacity: 0.9;
    animation: slideInRight 1s ease-out 0.2s both;
}

@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.contact-hero-subtitle {
    font-size: clamp(1.1rem, 2vw, 1.3rem);
    margin-bottom: 3rem;
    opacity: 0.95;
    animation: fadeIn 1s ease-out 0.4s both;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

.hero-features {
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
    animation: fadeInUp 1s ease-out 0.6s both;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-feature {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem 1.5rem;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 50px;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.hero-feature i {
    font-size: 1.25rem;
}

.hero-feature span {
    font-weight: 600;
    font-size: 0.95rem;
}

/* =================================================================
   MAIN CONTACT SECTION
   ================================================================= */

.contact-main-3d {
    padding: 8rem 2rem;
    background: linear-gradient(180deg, #ffffff 0%, #f7fafc 100%);
}

.contact-layout {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 4rem;
    max-width: 1200px;
    margin: 0 auto;
}

/* =================================================================
   CONTACT FORM
   ================================================================= */

.contact-form-3d {
    background: white;
    padding: 3rem;
    border-radius: 24px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    position: relative;
    overflow: hidden;
}

.contact-form-3d::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, #0c8891, #1a3c6e);
}

.form-header {
    text-align: center;
    margin-bottom: 3rem;
}

.form-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
    background: linear-gradient(135deg, #0c8891 0%, #1a3c6e 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 25px rgba(12, 136, 145, 0.3);
}

.form-icon i {
    font-size: 2rem;
    color: white;
}

.form-header h2 {
    font-size: 2rem;
    font-weight: 800;
    color: #1a3c6e;
    margin-bottom: 0.5rem;
}

.form-header p {
    color: #777;
    font-size: 1rem;
}

.contact-form-inner {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.form-row {
    display: grid;
    gap: 1.5rem;
}

.form-group-3d {
    position: relative;
}

.form-group-3d label {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-weight: 600;
    color: #333;
    margin-bottom: 0.75rem;
    font-size: 0.95rem;
}

.form-group-3d label i {
    color: #0c8891;
    font-size: 1rem;
}

.input-wrapper {
    position: relative;
}

.input-wrapper input,
.input-wrapper textarea {
    width: 100%;
    padding: 1rem 1.25rem;
    border: 2px solid #e0e0e0;
    border-radius: 12px;
    font-size: 1rem;
    transition: all 0.3s ease;
    background: #f7fafc;
    color: #333;
}

.input-wrapper input:focus,
.input-wrapper textarea:focus {
    outline: none;
    border-color: #0c8891;
    background: white;
    box-shadow: 0 4px 15px rgba(12, 136, 145, 0.1);
}

.input-wrapper textarea {
    resize: vertical;
    min-height: 150px;
}

.input-border {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, #0c8891, #1a3c6e);
    transition: width 0.3s ease;
}

.form-group-3d.focused .input-border,
.form-group-3d.filled .input-border {
    width: 100%;
}

.btn-submit-3d {
    position: relative;
    width: 100%;
    padding: 1.25rem 2rem;
    background: linear-gradient(135deg, #0c8891 0%, #1a3c6e 100%);
    color: white;
    border: none;
    border-radius: 12px;
    font-size: 1.1rem;
    font-weight: 700;
    cursor: pointer;
    overflow: hidden;
    transition: all 0.3s ease;
    box-shadow: 0 6px 20px rgba(12, 136, 145, 0.3);
}

.btn-submit-3d::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
    transition: left 0.5s ease;
}

.btn-submit-3d:hover::before {
    left: 100%;
}

.btn-submit-3d:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(12, 136, 145, 0.4);
}

.btn-submit-3d:active {
    transform: translateY(-1px);
}

.btn-text,
.btn-icon {
    display: inline-block;
    transition: all 0.3s ease;
}

.btn-loading {
    display: none;
}

.btn-submit-3d.loading {
    pointer-events: none;
    opacity: 0.8;
}

.btn-icon {
    margin-left: 0.5rem;
}

.form-note {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem;
    background: linear-gradient(135deg, rgba(12, 136, 145, 0.05) 0%, rgba(26, 60, 110, 0.05) 100%);
    border-radius: 10px;
    border-left: 3px solid #0c8891;
    margin-top: 1rem;
}

.form-note i {
    color: #0c8891;
    font-size: 1.25rem;
}

.form-note span {
    color: #555;
    font-size: 0.9rem;
}

/* =================================================================
   CONTACT INFORMATION
   ================================================================= */

.contact-info-3d {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.info-header {
    text-align: center;
    margin-bottom: 1rem;
}

.info-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 1.5rem;
    background: linear-gradient(135deg, #0c8891 0%, #1a3c6e 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 25px rgba(12, 136, 145, 0.3);
}

.info-icon i {
    font-size: 1.75rem;
    color: white;
}

.info-header h2 {
    font-size: 1.75rem;
    font-weight: 800;
    color: #1a3c6e;
    margin-bottom: 0.5rem;
}

.info-header p {
    color: #777;
    font-size: 0.95rem;
}

.info-cards {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.info-card {
    display: flex;
    gap: 1.5rem;
    padding: 1.5rem;
    background: white;
    border-radius: 16px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.info-card:hover {
    transform: translateX(5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12);
    border-color: #0c8891;
}

.info-card-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, rgba(12, 136, 145, 0.1) 0%, rgba(26, 60, 110, 0.1) 100%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.info-card-icon i {
    font-size: 1.5rem;
    color: #0c8891;
}

.info-card-content h3 {
    font-size: 1.1rem;
    font-weight: 700;
    color: #1a3c6e;
    margin-bottom: 0.5rem;
}

.info-card-content a {
    color: #0c8891;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

.info-card-content a:hover {
    color: #1a3c6e;
    text-decoration: underline;
}

.info-card-content p {
    color: #555;
    font-size: 0.95rem;
    margin: 0.25rem 0;
}

.info-note {
    color: #999 !important;
    font-size: 0.85rem !important;
}

/* Social Connect */
.social-connect {
    background: white;
    padding: 2rem;
    border-radius: 16px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    text-align: center;
}

.social-connect h3 {
    font-size: 1.25rem;
    font-weight: 700;
    color: #1a3c6e;
    margin-bottom: 1.5rem;
}

.social-links-3d {
    display: flex;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.social-link-3d {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #0c8891 0%, #1a3c6e 100%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(12, 136, 145, 0.3);
}

.social-link-3d:hover {
    transform: translateY(-5px) scale(1.1);
    box-shadow: 0 8px 25px rgba(12, 136, 145, 0.4);
}

.social-link-3d i {
    font-size: 1.25rem;
}

/* =================================================================
   MAP SECTION
   ================================================================= */

.map-section-3d {
    padding: 6rem 2rem;
    background: white;
}

.map-header {
    text-align: center;
    margin-bottom: 3rem;
}

.map-header h2 {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 800;
    color: #1a3c6e;
    margin-bottom: 0.5rem;
}

.map-header p {
    color: #777;
    font-size: 1.1rem;
}

.map-wrapper-3d {
    position: relative;
    max-width: 1200px;
    margin: 0 auto;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
}

.map-overlay {
    position: absolute;
    top: 2rem;
    left: 2rem;
    z-index: 10;
}

.map-badge {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.25rem 1.5rem;
    background: white;
    border-radius: 16px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}

.map-badge i {
    font-size: 2rem;
    color: #0c8891;
}

.badge-content h4 {
    font-size: 1.1rem;
    font-weight: 700;
    color: #1a3c6e;
    margin-bottom: 0.25rem;
}

.badge-content p {
    color: #777;
    font-size: 0.9rem;
    margin: 0;
}

.map-wrapper-3d iframe {
    display: block;
    width: 100%;
    height: 450px;
    border: none;
}

/* =================================================================
   FAQ QUICK LINKS
   ================================================================= */

.contact-faq-3d {
    padding: 6rem 2rem;
    background: linear-gradient(180deg, #f7fafc 0%, #ffffff 100%);
}

.faq-content {
    max-width: 700px;
    margin: 0 auto;
    text-align: center;
    padding: 3rem;
    background: white;
    border-radius: 24px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

.faq-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
    background: linear-gradient(135deg, #0c8891 0%, #1a3c6e 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 25px rgba(12, 136, 145, 0.3);
    animation: pulse-icon 2s ease-in-out infinite;
}

@keyframes pulse-icon {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
}

.faq-icon i {
    font-size: 2.5rem;
    color: white;
}

.faq-content h2 {
    font-size: 2rem;
    font-weight: 800;
    color: #1a3c6e;
    margin-bottom: 1rem;
}

.faq-content p {
    color: #777;
    font-size: 1.1rem;
    margin-bottom: 2rem;
    line-height: 1.6;
}

.btn-faq {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem 2.5rem;
    background: linear-gradient(135deg, #0c8891 0%, #1a3c6e 100%);
    color: white;
    border-radius: 50px;
    font-weight: 600;
    text-decoration: none;
    box-shadow: 0 6px 20px rgba(12, 136, 145, 0.3);
    transition: all 0.3s ease;
}

.btn-faq:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(12, 136, 145, 0.4);
}

/* =================================================================
   SUPPORT OPTIONS
   ================================================================= */

.support-options-3d {
    padding: 6rem 2rem 8rem;
    background: white;
}

.section-title {
    text-align: center;
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 800;
    color: #1a3c6e;
    margin-bottom: 4rem;
}

.support-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2.5rem;
    max-width: 1200px;
    margin: 0 auto;
}

.support-card {
    background: white;
    padding: 2.5rem 2rem;
    border-radius: 20px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    text-align: center;
    transition: all 0.4s ease;
    border: 2px solid transparent;
}

.support-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
    border-color: #0c8891;
}

.support-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
    background: linear-gradient(135deg, rgba(12, 136, 145, 0.1) 0%, rgba(26, 60, 110, 0.1) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.support-card:hover .support-icon {
    transform: scale(1.1) rotate(5deg);
    background: linear-gradient(135deg, #0c8891 0%, #1a3c6e 100%);
}

.support-icon i {
    font-size: 2rem;
    color: #0c8891;
    transition: color 0.3s ease;
}

.support-card:hover .support-icon i {
    color: white;
}

.support-card h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: #1a3c6e;
    margin-bottom: 1rem;
}

.support-card p {
    color: #777;
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.support-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: #0c8891;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
}

.support-link:hover {
    gap: 1rem;
    color: #1a3c6e;
}

.support-link i {
    transition: transform 0.3s ease;
}

.support-link:hover i {
    transform: translateX(5px);
}

/* =================================================================
   RESPONSIVE DESIGN
   ================================================================= */

@media (max-width: 1024px) {
    .contact-layout {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
}

@media (max-width: 768px) {
    .contact-hero-3d {
        min-height: 50vh;
        padding: 3rem 1.5rem;
    }

    .hero-features {
        gap: 1rem;
    }

    .hero-feature {
        padding: 0.5rem 1rem;
        font-size: 0.85rem;
    }

    .contact-form-3d,
    .faq-content {
        padding: 2rem 1.5rem;
    }

    .map-overlay {
        position: static;
        margin-bottom: 1rem;
    }

    .map-wrapper-3d {
        border-radius: 16px;
    }

    .map-wrapper-3d iframe {
        height: 350px;
    }

    .support-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
}

@media (max-width: 480px) {
    .contact-hero-title {
        font-size: 2rem;
    }

    .hero-features {
        flex-direction: column;
        gap: 0.75rem;
    }

    .form-header h2,
    .info-header h2 {
        font-size: 1.5rem;
    }

    .social-links-3d {
        gap: 0.75rem;
    }

    .social-link-3d {
        width: 45px;
        height: 45px;
    }
}

/* =================================================================
   ACCESSIBILITY
   ================================================================= */

@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}
/* =================================================================
   3D ENHANCED FAQ PAGE STYLES
   Interactive FAQ with Search and Categories
   ================================================================= */

/* =================================================================
   FAQ HERO SECTION
   ================================================================= */

.faq-hero-3d {
    position: relative;
    min-height: 65vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #0c8891 0%, #1a3c6e 100%);
    overflow: hidden;
    color: white;
    text-align: center;
    padding: 4rem 2rem;
}

.faq-hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.hero-blob {
    position: absolute;
    border-radius: 40% 60% 70% 30% / 40% 50% 60% 50%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.15) 0%, transparent 70%);
    filter: blur(60px);
    animation: blob-morph 20s ease-in-out infinite;
}

.hero-blob.blob-1 {
    width: 400px;
    height: 400px;
    top: -10%;
    left: -5%;
    animation-delay: 0s;
}

.hero-blob.blob-2 {
    width: 500px;
    height: 500px;
    bottom: -15%;
    right: -10%;
    animation-delay: 7s;
}

.hero-blob.blob-3 {
    width: 300px;
    height: 300px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    animation-delay: 14s;
}

@keyframes blob-morph {
    0%, 100% {
        border-radius: 40% 60% 70% 30% / 40% 50% 60% 50%;
        transform: translate(0, 0) scale(1);
    }
    25% {
        border-radius: 60% 40% 30% 70% / 60% 30% 70% 40%;
        transform: translate(30px, -30px) scale(1.1);
    }
    50% {
        border-radius: 30% 70% 50% 50% / 50% 60% 40% 60%;
        transform: translate(-30px, 30px) scale(0.9);
    }
    75% {
        border-radius: 70% 30% 60% 40% / 30% 70% 50% 50%;
        transform: translate(30px, 30px) scale(1.05);
    }
}

.faq-hero-content {
    position: relative;
    z-index: 1;
    max-width: 900px;
}

.hero-icon-badge {
    width: 100px;
    height: 100px;
    margin: 0 auto 2rem;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 3px solid rgba(255, 255, 255, 0.3);
    animation: pulse-badge 2s ease-in-out infinite;
}

@keyframes pulse-badge {
    0%, 100% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.4);
    }
    50% {
        transform: scale(1.05);
        box-shadow: 0 0 0 20px rgba(255, 255, 255, 0);
    }
}

.hero-icon-badge i {
    font-size: 3rem;
}

.faq-hero-title {
    font-size: clamp(2.5rem, 6vw, 4.5rem);
    font-weight: 800;
    margin-bottom: 1.5rem;
    line-height: 1.1;
}

.title-main {
    display: block;
    animation: slideInLeft 1s ease-out;
}

.title-accent {
    display: block;
    background: linear-gradient(135deg, #ffffff 0%, #ffd700 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: slideInRight 1s ease-out 0.2s both;
}

@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.faq-hero-subtitle {
    font-size: clamp(1.1rem, 2vw, 1.3rem);
    margin-bottom: 3rem;
    opacity: 0.95;
    animation: fadeIn 1s ease-out 0.4s both;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

/* Search Bar */
.faq-search-wrapper {
    max-width: 600px;
    margin: 0 auto 3rem;
    position: relative;
    animation: fadeInUp 1s ease-out 0.6s both;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.search-input-group {
    position: relative;
    display: flex;
    align-items: center;
}

.search-input-group i.fa-search {
    position: absolute;
    left: 1.5rem;
    font-size: 1.25rem;
    color: #0c8891;
    z-index: 1;
}

.faq-search-input {
    width: 100%;
    padding: 1.25rem 4rem 1.25rem 4rem;
    border: none;
    border-radius: 50px;
    font-size: 1.05rem;
    background: white;
    color: #333;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
}

.faq-search-input:focus {
    outline: none;
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.3);
    transform: translateY(-2px);
}

.faq-search-input::placeholder {
    color: #999;
}

.search-clear {
    position: absolute;
    right: 1.5rem;
    background: none;
    border: none;
    color: #999;
    font-size: 1.25rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.search-clear:hover {
    color: #0c8891;
    transform: scale(1.2);
}

.hero-stats {
    display: flex;
    justify-content: center;
    gap: 3rem;
    flex-wrap: wrap;
    animation: fadeIn 1s ease-out 0.8s both;
}

.stat-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem 1.5rem;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 50px;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.stat-item i {
    font-size: 1.5rem;
}

/* =================================================================
   CATEGORIES SECTION
   ================================================================= */

.faq-categories-3d {
    padding: 4rem 2rem;
    background: white;
}

.categories-title {
    text-align: center;
    font-size: 2rem;
    font-weight: 800;
    color: #1a3c6e;
    margin-bottom: 2.5rem;
}

.categories-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 1.5rem;
    max-width: 1200px;
    margin: 0 auto;
}

.category-btn {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.75rem;
    padding: 1.5rem;
    background: white;
    border: 2px solid #e0e0e0;
    border-radius: 16px;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.category-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(12, 136, 145, 0.05) 0%, rgba(26, 60, 110, 0.05) 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.category-btn:hover::before {
    opacity: 1;
}

.category-btn:hover {
    border-color: #0c8891;
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(12, 136, 145, 0.2);
}

.category-btn.active {
    background: linear-gradient(135deg, #0c8891 0%, #1a3c6e 100%);
    border-color: #0c8891;
    color: white;
}

.category-btn i {
    font-size: 2rem;
    color: #0c8891;
    position: relative;
    z-index: 1;
}

.category-btn.active i {
    color: white;
}

.category-btn span:nth-of-type(1) {
    font-weight: 600;
    font-size: 1rem;
    position: relative;
    z-index: 1;
}

.category-count {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 30px;
    height: 30px;
    background: rgba(12, 136, 145, 0.1);
    color: #0c8891;
    border-radius: 50%;
    font-size: 0.85rem;
    font-weight: 700;
    position: relative;
    z-index: 1;
}

.category-btn.active .category-count {
    background: rgba(255, 255, 255, 0.2);
    color: white;
}

/* =================================================================
   FAQ CONTENT SECTION
   ================================================================= */

.faq-content-3d {
    padding: 4rem 2rem 8rem;
    background: linear-gradient(180deg, #f7fafc 0%, #ffffff 100%);
}

.faq-layout {
    display: grid;
    grid-template-columns: 1fr 350px;
    gap: 3rem;
    max-width: 1400px;
    margin: 0 auto;
}

.faq-list-wrapper {
    min-height: 500px;
}

.faq-list-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
    flex-wrap: wrap;
    gap: 1rem;
}

.faq-list-header h2 {
    font-size: 2rem;
    font-weight: 800;
    color: #1a3c6e;
}

.results-count {
    color: #777;
    font-size: 1rem;
}

.results-count span {
    font-weight: 700;
    color: #0c8891;
}

/* FAQ Accordion Items */
.faq-accordion {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.faq-item-3d {
    background: white;
    border-radius: 16px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    overflow: hidden;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.faq-item-3d:hover {
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12);
    border-color: #e0e0e0;
}

.faq-item-3d.active {
    border-color: #0c8891;
    box-shadow: 0 10px 30px rgba(12, 136, 145, 0.15);
}

.faq-question {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    padding: 1.75rem 2rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.faq-question:hover {
    background: linear-gradient(135deg, rgba(12, 136, 145, 0.03) 0%, rgba(26, 60, 110, 0.03) 100%);
}

.question-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, rgba(12, 136, 145, 0.1) 0%, rgba(26, 60, 110, 0.1) 100%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: all 0.3s ease;
}

.faq-item-3d.active .question-icon {
    background: linear-gradient(135deg, #0c8891 0%, #1a3c6e 100%);
}

.question-icon i {
    font-size: 1.5rem;
    color: #0c8891;
    transition: color 0.3s ease;
}

.faq-item-3d.active .question-icon i {
    color: white;
}

.faq-question h3 {
    flex: 1;
    font-size: 1.15rem;
    font-weight: 700;
    color: #1a3c6e;
    margin: 0;
    transition: color 0.3s ease;
}

.faq-item-3d.active .faq-question h3 {
    color: #0c8891;
}

.faq-toggle {
    width: 40px;
    height: 40px;
    background: rgba(12, 136, 145, 0.1);
    border: none;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    cursor: pointer;
    transition: all 0.3s ease;
}

.faq-toggle i {
    font-size: 1.25rem;
    color: #0c8891;
    transition: transform 0.3s ease;
}

.faq-item-3d.active .faq-toggle {
    background: #0c8891;
}

.faq-item-3d.active .faq-toggle i {
    color: white;
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, padding 0.4s ease;
}

.faq-item-3d.active .faq-answer {
    max-height: 500px;
    padding: 0 2rem 2rem;
}

.faq-answer p {
    color: #555;
    line-height: 1.8;
    font-size: 1rem;
    margin-bottom: 1.5rem;
}

.answer-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1rem;
    background: linear-gradient(135deg, rgba(12, 136, 145, 0.05) 0%, rgba(26, 60, 110, 0.05) 100%);
    border-radius: 10px;
}

.helpful-text {
    font-weight: 600;
    color: #333;
    font-size: 0.95rem;
}

.helpful-buttons {
    display: flex;
    gap: 0.75rem;
}

.helpful-btn {
    width: 40px;
    height: 40px;
    background: white;
    border: 2px solid #e0e0e0;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
}

.helpful-btn:hover:not(.voted) {
    border-color: #0c8891;
    transform: scale(1.1);
}

.helpful-btn i {
    color: #999;
    transition: color 0.3s ease;
}

.helpful-btn:hover:not(.voted) i {
    color: #0c8891;
}

.helpful-btn.selected {
    background: linear-gradient(135deg, #0c8891 0%, #1a3c6e 100%);
    border-color: #0c8891;
}

.helpful-btn.selected i {
    color: white;
}

.helpful-btn.voted:not(.selected) {
    opacity: 0.5;
}

/* No Results */
.no-results {
    text-align: center;
    padding: 4rem 2rem;
    background: white;
    border-radius: 16px;
}

.no-results i {
    font-size: 4rem;
    color: #ddd;
    margin-bottom: 1rem;
}

.no-results h3 {
    font-size: 1.75rem;
    color: #1a3c6e;
    margin-bottom: 0.5rem;
}

.no-results p {
    color: #777;
}

/* =================================================================
   SIDEBAR
   ================================================================= */

.faq-sidebar {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.sidebar-card {
    background: white;
    padding: 2rem;
    border-radius: 16px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
}

.sidebar-card h3 {
    font-size: 1.25rem;
    font-weight: 700;
    color: #1a3c6e;
    margin-bottom: 1.5rem;
}

/* Popular Topics */
.topic-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.topic-list li {
    margin-bottom: 0.75rem;
}

.topic-list a {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: #555;
    text-decoration: none;
    transition: all 0.3s ease;
    padding: 0.5rem;
    border-radius: 8px;
}

.topic-list a:hover {
    color: #0c8891;
    background: rgba(12, 136, 145, 0.05);
    transform: translateX(5px);
}

.topic-list i {
    font-size: 0.85rem;
    color: #0c8891;
}

/* Contact Card */
.contact-card {
    text-align: center;
    background: linear-gradient(135deg, #0c8891 0%, #1a3c6e 100%);
    color: white;
}

.contact-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.contact-icon i {
    font-size: 2.5rem;
}

.contact-card h3 {
    color: white;
}

.contact-card p {
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 1.5rem;
}

.btn-sidebar {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.875rem 1.75rem;
    background: white;
    color: #0c8891;
    border-radius: 50px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
}

.btn-sidebar:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}

/* Quick Links */
.quick-link-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 0.875rem;
    margin-bottom: 0.75rem;
    border-radius: 10px;
    transition: all 0.3s ease;
}

.quick-link-item:hover {
    background: rgba(12, 136, 145, 0.05);
}

.quick-link-item i {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, rgba(12, 136, 145, 0.1) 0%, rgba(26, 60, 110, 0.1) 100%);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #0c8891;
    flex-shrink: 0;
}

.quick-link-item a {
    color: #555;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.quick-link-item:hover a {
    color: #0c8891;
}

/* =================================================================
   FINAL CTA SECTION
   ================================================================= */

.faq-final-cta-3d {
    position: relative;
    padding: 8rem 2rem;
    background: linear-gradient(135deg, #0c8891 0%, #1a3c6e 100%);
    overflow: hidden;
}

.cta-bg-pattern {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="50" cy="50" r="40" fill="none" stroke="rgba(255,255,255,0.05)" stroke-width="0.5"/></svg>');
    background-size: 100px 100px;
    opacity: 0.3;
}

.cta-content {
    position: relative;
    z-index: 1;
    max-width: 700px;
    margin: 0 auto;
    text-align: center;
    color: white;
}

.cta-icon {
    width: 100px;
    height: 100px;
    margin: 0 auto 2rem;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    animation: pulse-badge 2s ease-in-out infinite;
}

.cta-icon i {
    font-size: 3rem;
}

.cta-content h2 {
    font-size: clamp(2rem, 5vw, 3rem);
    font-weight: 800;
    margin-bottom: 1rem;
    color: white;
}

.cta-content p {
    font-size: 1.2rem;
    margin-bottom: 2.5rem;
    opacity: 0.95;
}

.btn-cta-primary {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1.25rem 3rem;
    background: white;
    color: #0c8891;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1.1rem;
    text-decoration: none;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease;
}

.btn-cta-primary:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.4);
}

/* =================================================================
   RESPONSIVE DESIGN
   ================================================================= */

@media (max-width: 1024px) {
    .faq-layout {
        grid-template-columns: 1fr;
    }

    .faq-sidebar {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
        gap: 2rem;
    }
}

@media (max-width: 768px) {
    .faq-hero-3d {
        min-height: 55vh;
        padding: 3rem 1.5rem;
    }

    .hero-icon-badge {
        width: 80px;
        height: 80px;
    }

    .hero-icon-badge i {
        font-size: 2.5rem;
    }

    .hero-stats {
        gap: 1.5rem;
    }

    .stat-item {
        padding: 0.5rem 1rem;
        font-size: 0.9rem;
    }

    .categories-grid {
        grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
        gap: 1rem;
    }

    .category-btn {
        padding: 1.25rem 1rem;
    }

    .category-btn i {
        font-size: 1.75rem;
    }

    .faq-question {
        padding: 1.25rem 1.5rem;
        gap: 1rem;
    }

    .question-icon {
        width: 40px;
        height: 40px;
    }

    .question-icon i {
        font-size: 1.25rem;
    }

    .faq-question h3 {
        font-size: 1rem;
    }

    .faq-item-3d.active .faq-answer {
        padding: 0 1.5rem 1.5rem;
    }

    .answer-footer {
        flex-direction: column;
        gap: 1rem;
    }
}

@media (max-width: 480px) {
    .faq-search-input {
        padding: 1rem 3.5rem 1rem 3.5rem;
    }

    .hero-stats {
        flex-direction: column;
        gap: 1rem;
    }

    .categories-grid {
        grid-template-columns: 1fr;
    }

    .faq-sidebar {
        grid-template-columns: 1fr;
    }
}

/* =================================================================
   ACCESSIBILITY
   ================================================================= */

@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}