/* ============================================================
   CAPERNAUM SOLUTIONS 
   Designed by Technokraft Services LLP
   ============================================================ */

/* ===== DESIGN TOKENS ===== */
:root {
    --bg-primary: #ffffff;
    --bg-secondary: #f7f8fc;
    --bg-tertiary: #eef1f8;
    --bg-card: #ffffff;
    --bg-glass: rgba(255, 255, 255, 0.7);
    --bg-glass-dark: rgba(26, 26, 46, 0.03);
    --border-light: rgba(0, 0, 0, 0.06);
    --border-medium: rgba(0, 0, 0, 0.1);
    --text-primary: #1a1a2e;
    --text-secondary: #4a5568;
    --text-muted: #8896a6;
    --text-white: #ffffff;
    --gold: #c8a45e;
    --gold-dark: #a3833d;
    --gold-light: #e8d5a3;
    --accent-blue: #2563eb;
    --accent-blue-light: #3b82f6;
    --accent-teal: #0d9488;
    --accent-purple: #7c3aed;
    --accent-green: #059669;
    --gradient-gold: linear-gradient(135deg, #c8a45e, #e8d5a3, #c8a45e);
    --gradient-blue: linear-gradient(135deg, #2563eb, #3b82f6);
    --gradient-hero: linear-gradient(135deg, #1a1a2e 0%, #2d2d5e 50%, #1a1a2e 100%);
    --gradient-warm: linear-gradient(135deg, #c8a45e 0%, #2563eb 100%);
    --shadow-xs: 0 1px 3px rgba(0, 0, 0, 0.04);
    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.06);
    --shadow-md: 0 8px 24px rgba(0, 0, 0, 0.08);
    --shadow-lg: 0 16px 48px rgba(0, 0, 0, 0.1);
    --shadow-xl: 0 24px 64px rgba(0, 0, 0, 0.12);
    --shadow-gold: 0 8px 32px rgba(200, 164, 94, 0.2);
    --shadow-blue: 0 8px 32px rgba(37, 99, 235, 0.15);
    --radius-sm: 8px;
    --radius-md: 16px;
    --radius-lg: 24px;
    --radius-xl: 32px;
    --radius-full: 9999px;
    --transition: 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-slow: 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    --font: 'Inter', system-ui, -apple-system, sans-serif;
    --max-width: 1280px;
}

/* ===== RESET & BASE ===== */
*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
    scrollbar-width: thin;
    scrollbar-color: var(--gold) rgba(0,0,0,0.02);
}

/* ===== CUSTOM SCROLLBAR ===== */
::-webkit-scrollbar {
    width: 6px;
    height: 6px;
}

::-webkit-scrollbar-track {
    background: rgba(0, 0, 0, 0.02);
}

::-webkit-scrollbar-thumb {
    background: var(--gold);
    border-radius: var(--radius-full);
}

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

body {
    font-family: var(--font);
    background: var(--bg-primary);
    color: var(--text-primary);
    line-height: 1.7;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

img {
    max-width: 100%;
    display: block;
}

ul {
    list-style: none;
}

.container {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 24px;
    width: 100%;
}

/* ===== 3D FLOATING BACKGROUND ===== */
.scene-3d {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 0;
    overflow: hidden;
    perspective: 1200px;
}

.float-shape {
    position: absolute;
    border-radius: 50%;
    opacity: 0.08;
    animation: float3d 25s infinite ease-in-out;
    will-change: transform;
}

.float-shape:nth-child(1) {
    width: 400px;
    height: 400px;
    top: -5%;
    left: -5%;
    background: radial-gradient(circle, var(--gold), transparent 70%);
    animation-delay: 0s;
    animation-duration: 30s;
}

.float-shape:nth-child(2) {
    width: 300px;
    height: 300px;
    top: 50%;
    right: -8%;
    background: radial-gradient(circle, var(--accent-blue), transparent 70%);
    animation-delay: -8s;
    animation-duration: 25s;
}

.float-shape:nth-child(3) {
    width: 250px;
    height: 250px;
    bottom: 5%;
    left: 30%;
    background: radial-gradient(circle, var(--accent-teal), transparent 70%);
    animation-delay: -15s;
    animation-duration: 28s;
}

.float-shape:nth-child(4) {
    width: 180px;
    height: 180px;
    top: 30%;
    left: 60%;
    background: radial-gradient(circle, var(--accent-purple), transparent 70%);
    animation-delay: -5s;
    animation-duration: 22s;
    opacity: 0.05;
}

.float-shape:nth-child(5) {
    width: 350px;
    height: 350px;
    bottom: 30%;
    right: 20%;
    background: radial-gradient(circle, var(--gold-light), transparent 70%);
    animation-delay: -12s;
    animation-duration: 35s;
    opacity: 0.06;
}

@keyframes float3d {

    0%,
    100% {
        transform: translate3d(0, 0, 0) rotateX(0) rotateY(0) scale(1);
    }

    20% {
        transform: translate3d(40px, -30px, 60px) rotateX(5deg) rotateY(10deg) scale(1.05);
    }

    40% {
        transform: translate3d(-30px, 50px, -40px) rotateX(-5deg) rotateY(-8deg) scale(0.95);
    }

    60% {
        transform: translate3d(20px, -40px, 30px) rotateX(8deg) rotateY(5deg) scale(1.08);
    }

    80% {
        transform: translate3d(-15px, 20px, -60px) rotateX(-3deg) rotateY(-12deg) scale(0.97);
    }
}

/* Geometric grid pattern overlay */
.grid-pattern {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 0;
    background-image:
        linear-gradient(rgba(0, 0, 0, 0.015) 1px, transparent 1px),
        linear-gradient(90deg, rgba(0, 0, 0, 0.015) 1px, transparent 1px);
    background-size: 60px 60px;
}

/* ===== NAVBAR ===== */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: 16px 0;
    transition: var(--transition);
    background: transparent;
}

.navbar.scrolled {
    background: rgba(255, 255, 255, 0.92);
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
    border-bottom: 1px solid var(--border-light);
    padding: 10px 0;
    box-shadow: var(--shadow-sm);
}

.nav-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 24px;
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 0;
    z-index: 1001;
}

.nav-logo .logo-img {
    height: 50px;
    width: auto;
    object-fit: contain;
    transition: var(--transition);
}

.navbar.scrolled .nav-logo .logo-img {
    height: 40px;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 4px;
}

.nav-links a {
    padding: 10px 18px;
    border-radius: var(--radius-sm);
    font-size: 14px;
    font-weight: 500;
    color: var(--text-secondary);
    position: relative;
    letter-spacing: 0.2px;
}

.nav-links a:hover,
.nav-links a.active {
    color: var(--text-primary);
}

.nav-links a.active {
    font-weight: 600;
    color: var(--gold-dark);
}

.sidebar-logo {
    display: none;
}

.nav-links .dropdown {
    position: relative;
}

.nav-links .dropdown-toggle {
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 4px;
}

.nav-links .dropdown-toggle::after {
    content: '';
    width: 0;
    height: 0;
    border-left: 4px solid transparent;
    border-right: 4px solid transparent;
    border-top: 5px solid currentColor;
    transition: var(--transition);
    margin-left: 2px;
}

.nav-links .dropdown:hover .dropdown-toggle::after {
    transform: rotate(180deg);
}

.dropdown-menu {
    position: absolute;
    top: calc(100% + 12px);
    left: -10px;
    min-width: 240px;
    background: var(--bg-card);
    backdrop-filter: blur(20px);
    border: 1px solid var(--border-light);
    border-radius: var(--radius-md);
    padding: 8px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: var(--transition);
    box-shadow: var(--shadow-lg);
}

.nav-links .dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-menu a {
    display: block;
    padding: 10px 16px;
    border-radius: var(--radius-sm);
    font-size: 14px;
    color: var(--text-secondary);
}

.dropdown-menu a:hover {
    color: var(--gold-dark);
    background: rgba(200, 164, 94, 0.06);
}

.nav-cta {
    padding: 10px 28px !important;
    background: var(--gradient-gold) !important;
    color: var(--text-primary) !important;
    border-radius: var(--radius-full) !important;
    font-weight: 600 !important;
    box-shadow: var(--shadow-gold);
    border: none !important;
}

.nav-cta:hover {
    box-shadow: 0 12px 40px rgba(200, 164, 94, 0.35) !important;
}

/* Hamburger */
.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    z-index: 1001;
    padding: 4px;
}

.hamburger span {
    width: 24px;
    height: 2px;
    background: var(--text-primary);
    border-radius: 2px;
    transition: var(--transition);
}

.hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
}

.hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

/* ===== HERO SECTION ===== */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    padding: 140px 0 100px;
    overflow: hidden;
    background: linear-gradient(160deg, #ffffff 0%, #f0f2f8 30%, #f7f8fc 60%, #ffffff 100%);
}

.hero::before {
    content: '';
    position: absolute;
    top: -200px;
    right: -200px;
    width: 800px;
    height: 800px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(200, 164, 94, 0.12), transparent 60%);
    pointer-events: none;
    animation: heroGlow 10s ease-in-out infinite alternate;
}

.hero::after {
    content: '';
    position: absolute;
    bottom: -150px;
    left: -150px;
    width: 600px;
    height: 600px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(37, 99, 235, 0.06), transparent 60%);
    pointer-events: none;
}

@keyframes heroGlow {
    0% {
        transform: translate(0, 0) scale(1);
    }

    100% {
        transform: translate(-30px, 20px) scale(1.1);
    }
}

.hero-grid {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 80px;
    align-items: center;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 8px 20px;
    border-radius: var(--radius-full);
    font-size: 13px;
    background: rgba(200, 164, 94, 0.08);
    border: 1px solid rgba(200, 164, 94, 0.2);
    color: var(--gold-dark);
    font-weight: 600;
    margin-bottom: 28px;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

.hero-badge .dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--gold);
    animation: pulse 2s infinite;
    box-shadow: 0 0 12px rgba(200, 164, 94, 0.5);
}

@keyframes pulse {

    0%,
    100% {
        opacity: 1;
        transform: scale(1);
    }

    50% {
        opacity: 0.5;
        transform: scale(0.85);
    }
}

.hero h1 {
    font-size: clamp(38px, 5vw, 64px);
    font-weight: 800;
    line-height: 1.08;
    letter-spacing: -2px;
    margin-bottom: 24px;
    color: var(--text-primary);
}

.hero h1 .gradient-text {
    background: linear-gradient(135deg, var(--gold-dark), var(--gold), var(--gold-dark));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero p {
    font-size: 18px;
    color: var(--text-secondary);
    max-width: 540px;
    margin-bottom: 40px;
    line-height: 1.8;
}

.hero-buttons {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

.btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 15px 36px;
    background: var(--gradient-gold);
    color: var(--text-primary);
    border-radius: var(--radius-full);
    font-weight: 600;
    font-size: 15px;
    border: none;
    cursor: pointer;
    transition: var(--transition);
    box-shadow: var(--shadow-gold);
    letter-spacing: 0.3px;
}

.btn-primary:hover {
    box-shadow: 0 12px 40px rgba(200, 164, 94, 0.4);
}

.btn-secondary {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 15px 36px;
    background: transparent;
    color: var(--text-primary);
    border-radius: var(--radius-full);
    font-weight: 600;
    font-size: 15px;
    border: 2px solid var(--border-medium);
    cursor: pointer;
    transition: var(--transition);
}

.btn-secondary:hover {
    border-color: var(--gold);
    color: var(--gold-dark);
    background: rgba(200, 164, 94, 0.04);
}

/* Hero Visual / Stats Card */
.hero-visual {
    position: relative;
}

.hero-card {
    background: var(--bg-card);
    border: 1px solid var(--border-light);
    border-radius: var(--radius-xl);
    padding: 40px;
    position: relative;
    overflow: hidden;
    box-shadow: var(--shadow-xl);
}

.hero-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--gradient-gold);
}

.hero-card::after {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 300px;
    height: 300px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(200, 164, 94, 0.08), transparent 70%);
    pointer-events: none;
}

.hero-card .stats-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    position: relative;
    z-index: 1;
}

.stat-item {
    text-align: center;
    padding: 24px 16px;
    border-radius: var(--radius-lg);
    background: var(--bg-secondary);
    border: 1px solid var(--border-light);
    transition: var(--transition);
}

.stat-item:hover {
    box-shadow: var(--shadow-md);
    border-color: rgba(200, 164, 94, 0.2);
}

.stat-item .stat-number {
    font-size: 40px;
    font-weight: 800;
    margin-bottom: 4px;
    background: linear-gradient(135deg, var(--gold-dark), var(--gold));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    letter-spacing: -1px;
}

.stat-item .stat-label {
    font-size: 13px;
    color: var(--text-secondary);
    font-weight: 500;
    letter-spacing: 0.3px;
}

.hero-card .card-footer {
    margin-top: 24px;
    padding-top: 24px;
    border-top: 1px solid var(--border-light);
    text-align: center;
    position: relative;
    z-index: 1;
}

.hero-card .card-footer p {
    font-size: 14px;
    color: var(--text-muted);
    margin: 0;
}

/* ===== SECTION COMMON ===== */
section {
    position: relative;
    z-index: 1;
}

.section-header {
    text-align: center;
    max-width: 720px;
    margin: 0 auto 72px;
}

.section-label {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 20px;
    border-radius: var(--radius-full);
    font-size: 12px;
    background: rgba(200, 164, 94, 0.08);
    border: 1px solid rgba(200, 164, 94, 0.18);
    color: var(--gold-dark);
    font-weight: 700;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 1.5px;
}

.section-title {
    font-size: clamp(28px, 4vw, 46px);
    font-weight: 800;
    letter-spacing: -1.2px;
    line-height: 1.2;
    margin-bottom: 18px;
    color: var(--text-primary);
}

.section-title .gradient-text,
.gradient-text {
    background: linear-gradient(135deg, var(--gold-dark), var(--gold));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.section-subtitle {
    font-size: 17px;
    color: var(--text-secondary);
    line-height: 1.8;
}

/* ===== ABOUT / INTRO ===== */
.about-section {
    padding: 120px 0;
    background: var(--bg-primary);
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.about-content .about-tag {
    margin-bottom: 20px;
}

.about-content h2 {
    font-size: clamp(28px, 3.5vw, 42px);
    font-weight: 800;
    line-height: 1.15;
    margin-bottom: 24px;
    letter-spacing: -0.8px;
    color: var(--text-primary);
}

.about-content p {
    color: var(--text-secondary);
    font-size: 16px;
    margin-bottom: 18px;
    line-height: 1.85;
}

.about-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    margin-top: 36px;
}

.about-feature {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    padding: 20px;
    background: var(--bg-secondary);
    border: 1px solid var(--border-light);
    border-radius: var(--radius-md);
    transition: var(--transition);
}

.about-feature:hover {
    box-shadow: var(--shadow-md);
    border-color: rgba(200, 164, 94, 0.2);
}

.about-feature .icon {
    width: 44px;
    height: 44px;
    min-width: 44px;
    border-radius: 12px;
    background: rgba(200, 164, 94, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gold-dark);
}

.about-feature .icon ion-icon {
    font-size: 22px;
}

.about-feature h4 {
    font-size: 15px;
    font-weight: 700;
    margin-bottom: 4px;
    color: var(--text-primary);
}

.about-feature p {
    font-size: 13px;
    margin: 0;
    color: var(--text-muted);
    line-height: 1.5;
}

/* About Visual / Quote Card */
.about-visual {
    position: relative;
    padding: 48px;
    background: var(--bg-card);
    border: 1px solid var(--border-light);
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.about-visual::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(200, 164, 94, 0.04), rgba(37, 99, 235, 0.02));
}

.about-visual .visual-content {
    position: relative;
    z-index: 1;
}

.about-visual .big-quote {
    font-size: 72px;
    line-height: 1;
    color: var(--gold);
    opacity: 0.25;
    margin-bottom: 16px;
    font-family: Georgia, serif;
}

.about-visual .big-quote ion-icon {
    font-size: 48px;
    color: var(--gold);
    opacity: 0.4;
}

.about-visual blockquote {
    font-size: 18px;
    line-height: 1.9;
    color: var(--text-primary);
    font-style: italic;
    border-left: 3px solid var(--gold);
    padding-left: 24px;
}

.about-visual .quote-author {
    margin-top: 20px;
    font-size: 14px;
    color: var(--text-muted);
    font-style: normal;
    font-weight: 600;
}

/* About Image Card (for pages with images) */
.about-img-card {
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow-xl);
    position: relative;
}

.about-img-card img {
    width: 100%;
    height: 450px;
    object-fit: cover;
}

.about-img-card::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(26, 26, 46, 0.15), transparent 50%);
}

/* ===== SERVICES ===== */
.services-section {
    padding: 120px 0;
    background: var(--bg-secondary);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}

.service-card {
    padding: 40px 32px;
    background: var(--bg-card);
    border: 1px solid var(--border-light);
    border-radius: var(--radius-xl);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
    cursor: pointer;
    box-shadow: var(--shadow-xs);
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--gradient-gold);
    transform: scaleX(0);
    transform-origin: left;
    transition: var(--transition);
}

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

.service-card:hover {

    box-shadow: var(--shadow-xl);
    border-color: rgba(200, 164, 94, 0.15);
}

.service-icon {
    width: 60px;
    height: 60px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
    transition: var(--transition);
}

.service-icon ion-icon {
    font-size: 28px;
}

.service-icon.gold {
    background: rgba(200, 164, 94, 0.1);
    color: var(--gold-dark);
}

.service-icon.blue {
    background: rgba(37, 99, 235, 0.08);
    color: var(--accent-blue);
}

.service-icon.purple {
    background: rgba(124, 58, 237, 0.08);
    color: var(--accent-purple);
}

.service-icon.teal {
    background: rgba(13, 148, 136, 0.08);
    color: var(--accent-teal);
}

.service-icon.green {
    background: rgba(5, 150, 105, 0.08);
    color: var(--accent-green);
}

.service-card:hover .service-icon {
    transform: scale(1.1);
}

.service-card h3 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 14px;
    color: var(--text-primary);
}

.service-card p {
    font-size: 15px;
    color: var(--text-secondary);
    line-height: 1.75;
    margin-bottom: 24px;
}

.service-link {
    font-size: 14px;
    font-weight: 600;
    color: var(--gold-dark);
    display: inline-flex;
    align-items: center;
    gap: 6px;
    transition: var(--transition);
}

.service-link:hover {
    gap: 12px;
    color: var(--gold);
}

/* ===== FEATURES / WHY US ===== */
.features-section {
    padding: 120px 0;
    background: var(--bg-primary);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}

.feature-card {
    padding: 40px 32px;
    background: var(--bg-card);
    border: 1px solid var(--border-light);
    border-radius: var(--radius-xl);
    text-align: center;
    transition: var(--transition);
    box-shadow: var(--shadow-xs);
    position: relative;
    overflow: hidden;
}

.feature-card::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: var(--gradient-gold);
    border-radius: 3px;
    opacity: 0;
    transition: var(--transition);
}

.feature-card:hover::after {
    opacity: 1;
}

.feature-card:hover {

    box-shadow: var(--shadow-lg);
    border-color: rgba(200, 164, 94, 0.15);
}

.feature-number {
    font-size: 52px;
    font-weight: 900;
    margin-bottom: 20px;
    background: linear-gradient(135deg, var(--gold-light), var(--gold));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    opacity: 0.5;
}

.feature-number ion-icon {
    font-size: 48px;
    color: var(--gold);
    opacity: 0.5;
}

.feature-card h3 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 14px;
    color: var(--text-primary);
}

.feature-card p {
    font-size: 15px;
    color: var(--text-secondary);
    line-height: 1.75;
}

/* ===== IMAGE SHOWCASE SECTION ===== */
.showcase-section {
    padding: 100px 0;
    background: var(--bg-secondary);
    overflow: hidden;
}

.showcase-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.showcase-card {
    border-radius: var(--radius-xl);
    overflow: hidden;
    position: relative;
    box-shadow: var(--shadow-md);
    transition: var(--transition);
    height: 280px;
}

.showcase-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-slow);
}

.showcase-card:hover {
    box-shadow: var(--shadow-xl);
}

.showcase-card:hover img {
    transform: scale(1.08);
}

.showcase-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 32px 24px 24px;
    background: linear-gradient(to top, rgba(26, 26, 46, 0.85), transparent);
    color: #fff;
    transform: translateY(20px);
    opacity: 0;
    transition: var(--transition);
}

.showcase-card:hover .showcase-overlay {
    transform: translateY(0);
    opacity: 1;
}

.showcase-overlay h4 {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 4px;
}

.showcase-overlay p {
    font-size: 13px;
    opacity: 0.8;
}

/* ===== CTA BANNER ===== */
.cta-section {
    padding: 100px 0;
}

.cta-banner {
    background: var(--gradient-hero);
    border-radius: var(--radius-xl);
    padding: 80px 64px;
    text-align: center;
    position: relative;
    overflow: hidden;
    box-shadow: var(--shadow-xl);
}

.cta-banner::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 500px;
    height: 500px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(200, 164, 94, 0.15), transparent 70%);
    animation: float3d 20s infinite ease-in-out;
}

.cta-banner::after {
    content: '';
    position: absolute;
    bottom: -30%;
    left: -10%;
    width: 400px;
    height: 400px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(37, 99, 235, 0.1), transparent 70%);
    animation: float3d 25s infinite ease-in-out reverse;
}

.cta-banner>* {
    position: relative;
    z-index: 1;
}

.cta-banner h2 {
    font-size: clamp(26px, 3.5vw, 40px);
    font-weight: 800;
    margin-bottom: 20px;
    color: #fff;
    letter-spacing: -0.5px;
}

.cta-banner h2 .gradient-text {
    background: var(--gradient-gold);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.cta-banner p {
    font-size: 17px;
    color: rgba(255, 255, 255, 0.7);
    max-width: 580px;
    margin: 0 auto 36px;
    line-height: 1.8;
}

.cta-banner .btn-primary {
    background: var(--gradient-gold);
    color: var(--text-primary);
    font-size: 16px;
    padding: 16px 42px;
}

/* ===== FOOTER ===== */
.footer {
    padding: 80px 0 32px;
    border-top: 1px solid var(--border-light);
    position: relative;
    z-index: 1;
    background: var(--bg-secondary);
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 56px;
    margin-bottom: 56px;
}

.footer-brand .logo {
    display: flex;
    align-items: center;
    gap: 0;
    margin-bottom: 20px;
}

.footer-brand .logo .logo-img {
    height: 50px;
    width: auto;
    object-fit: contain;
}

.footer-brand p {
    color: var(--text-secondary);
    font-size: 14px;
    line-height: 1.8;
    margin-bottom: 24px;
}

.footer-social {
    display: flex;
    gap: 12px;
}

.footer-social a {
    width: 42px;
    height: 42px;
    border-radius: 12px;
    background: var(--bg-primary);
    border: 1px solid var(--border-light);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-secondary);
    transition: var(--transition);
}

.footer-social a ion-icon {
    font-size: 20px;
}

.footer-social a:hover {
    background: rgba(200, 164, 94, 0.1);
    border-color: rgba(200, 164, 94, 0.3);
    color: var(--gold-dark);
}

.footer-col h4 {
    font-size: 15px;
    font-weight: 700;
    margin-bottom: 24px;
    color: var(--text-primary);
    letter-spacing: 0.3px;
}

.footer-col a {
    display: block;
    font-size: 14px;
    color: var(--text-secondary);
    padding: 7px 0;
    transition: var(--transition);
}

.footer-col a:hover {
    color: var(--gold-dark);
    padding-left: 6px;
}

.footer-bottom {
    padding-top: 32px;
    border-top: 1px solid var(--border-light);
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 13px;
    color: var(--text-muted);
}

.footer-bottom a {
    color: var(--gold-dark);
    font-weight: 500;
}

.footer-bottom a:hover {
    text-decoration: underline;
}

/* ===== PAGE HERO (Inner Pages) ===== */
.page-hero {
    padding: 180px 0 80px;
    text-align: center;
    position: relative;
    overflow: hidden;
    background: linear-gradient(160deg, #ffffff 0%, #f0f2f8 40%, #f7f8fc 100%);
}

.page-hero::before {
    content: '';
    position: absolute;
    top: -40%;
    left: 50%;
    transform: translateX(-50%);
    width: 900px;
    height: 900px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(200, 164, 94, 0.08), transparent 60%);
}

.page-hero h1 {
    font-size: clamp(34px, 5vw, 56px);
    font-weight: 800;
    letter-spacing: -1.5px;
    margin-bottom: 18px;
    position: relative;
    color: var(--text-primary);
}

.page-hero p {
    font-size: 18px;
    color: var(--text-secondary);
    max-width: 620px;
    margin: 0 auto;
    position: relative;
    line-height: 1.8;
}

/* ===== CONTACT FORM ===== */
.contact-section {
    padding: 80px 0 120px;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 48px;
}

.contact-info-card {
    padding: 32px;
    background: var(--bg-card);
    border: 1px solid var(--border-light);
    border-radius: var(--radius-lg);
    margin-bottom: 16px;
    transition: var(--transition);
    box-shadow: var(--shadow-xs);
}

.contact-info-card:hover {
    box-shadow: var(--shadow-md);
    border-color: rgba(200, 164, 94, 0.2);
}

.contact-info-card .info-icon {
    width: 52px;
    height: 52px;
    border-radius: 14px;
    background: rgba(200, 164, 94, 0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 16px;
    color: var(--gold-dark);
}

.contact-info-card .info-icon ion-icon {
    font-size: 24px;
}

.contact-info-card h3 {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 8px;
    color: var(--text-primary);
}

.contact-info-card p {
    font-size: 14px;
    color: var(--text-secondary);
    line-height: 1.6;
}

.contact-form-card {
    padding: 48px;
    background: var(--bg-card);
    border: 1px solid var(--border-light);
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-lg);
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 8px;
    color: var(--text-primary);
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 14px 18px;
    background: var(--bg-secondary);
    border: 1px solid var(--border-light);
    border-radius: var(--radius-sm);
    color: var(--text-primary);
    font-family: var(--font);
    font-size: 14px;
    transition: var(--transition);
    outline: none;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: var(--text-muted);
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    border-color: var(--gold);
    box-shadow: 0 0 0 4px rgba(200, 164, 94, 0.1);
    background: var(--bg-primary);
}

.form-group textarea {
    resize: vertical;
    min-height: 130px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

/* ===== CAREERS ===== */
.careers-section {
    padding: 80px 0 120px;
}

.careers-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
    margin-bottom: 56px;
}

.career-card {
    padding: 40px 32px;
    background: var(--bg-card);
    border: 1px solid var(--border-light);
    border-radius: var(--radius-xl);
    transition: var(--transition);
    text-align: center;
    box-shadow: var(--shadow-xs);
}

.career-card:hover {
    box-shadow: var(--shadow-lg);
    border-color: rgba(200, 164, 94, 0.15);
}

.career-card .card-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 24px;
    border-radius: 16px;
    background: rgba(200, 164, 94, 0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gold-dark);
    transition: var(--transition);
}

.career-card .card-icon ion-icon {
    font-size: 28px;
}

.career-card:hover .card-icon {
    background: rgba(200, 164, 94, 0.15);
    transform: scale(1.1);
}

.career-card h3 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 14px;
    color: var(--text-primary);
}

.career-card p {
    font-size: 15px;
    color: var(--text-secondary);
    line-height: 1.75;
}

/* ===== PREMIUM SCROLL ANIMATIONS - VERSION 200% ===== */
/* Water-like flow cubic bezier */
:root {
    --ease-premium: cubic-bezier(0.16, 1, 0.3, 1);
    /* Fast start, ultra slow smooth end */
}

.reveal,
.reveal-left,
.reveal-right,
.reveal-scale,
.reveal-flip {
    transition:
        opacity 1.2s var(--ease-premium),
        transform 1.2s var(--ease-premium),
        filter 1.2s ease;
}

/* Base Reveal - Fade Up */
.reveal {
    opacity: 0;
    transform: translateY(60px);
    filter: blur(4px);
}

.reveal.visible {
    opacity: 1;
    transform: translateY(0);
    filter: blur(0);
}

/* Reveal Smooth - Subtle Drift */
.reveal-smooth {
    opacity: 0;
    transform: translateY(30px) scale(0.98);
    transition: opacity 1.4s var(--ease-premium), transform 1.4s var(--ease-premium);
}

.reveal-smooth.visible {
    opacity: 1;
    transform: translateY(0) scale(1);
}

/* Stagger delays - Ultra granular */
.delay-100 {
    transition-delay: 0.1s;
}

.delay-200 {
    transition-delay: 0.2s;
}

.delay-300 {
    transition-delay: 0.3s;
}

.delay-400 {
    transition-delay: 0.4s;
}

.delay-500 {
    transition-delay: 0.5s;
}

.delay-600 {
    transition-delay: 0.6s;
}

.delay-700 {
    transition-delay: 0.7s;
}

.delay-800 {
    transition-delay: 0.8s;
}

.delay-900 {
    transition-delay: 0.9s;
}

.delay-1000 {
    transition-delay: 1.0s;
}

.reveal.visible {
    opacity: 1;
    transform: translateY(0) scale(1) rotate(0);
    filter: blur(0);
}

/* Slide from Left */
.reveal-left {
    opacity: 0;
    transform: translateX(-80px);
    filter: blur(3px);
    transition: opacity 0.9s cubic-bezier(0.16, 1, 0.3, 1), transform 0.9s cubic-bezier(0.16, 1, 0.3, 1), filter 0.9s ease;
}

.reveal-left.visible {
    opacity: 1;
    transform: translateX(0);
    filter: blur(0);
}

/* Slide from Right */
.reveal-right {
    opacity: 0;
    transform: translateX(80px);
    filter: blur(3px);
    transition: opacity 0.9s cubic-bezier(0.16, 1, 0.3, 1), transform 0.9s cubic-bezier(0.16, 1, 0.3, 1), filter 0.9s ease;
}

.reveal-right.visible {
    opacity: 1;
    transform: translateX(0);
    filter: blur(0);
}

/* Scale Up */
.reveal-scale {
    opacity: 0;
    transform: scale(0.85);
    filter: blur(4px);
    transition: opacity 0.9s cubic-bezier(0.16, 1, 0.3, 1), transform 0.9s cubic-bezier(0.16, 1, 0.3, 1), filter 0.9s ease;
}

.reveal-scale.visible {
    opacity: 1;
    transform: scale(1);
    filter: blur(0);
}

/* Flip Up */
.reveal-flip {
    opacity: 0;
    transform: perspective(800px) rotateX(15deg) translateY(40px);
    transition: opacity 0.9s cubic-bezier(0.16, 1, 0.3, 1), transform 0.9s cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal-flip.visible {
    opacity: 1;
    transform: perspective(800px) rotateX(0) translateY(0);
}

/* Stagger delays */
.reveal-delay-1 {
    transition-delay: 0.1s;
}

.reveal-delay-2 {
    transition-delay: 0.2s;
}

.reveal-delay-3 {
    transition-delay: 0.3s;
}

.reveal-delay-4 {
    transition-delay: 0.4s;
}

.reveal-delay-5 {
    transition-delay: 0.5s;
}

.reveal-delay-6 {
    transition-delay: 0.6s;
}

/* Parallax elements */
.parallax-element {
    transition: transform 0.1s linear;
    will-change: transform;
}

/* ===== ANIMATED GRADIENT BORDER ON CARDS ===== */
.service-card::after,
.feature-card::after {
    content: '';
    position: absolute;
    inset: -1px;
    border-radius: inherit;
    background: #ebda5e40;
    background-size: 300% 300%;
    z-index: -1;
    opacity: 0;
    transition: opacity 0.5s ease;
    animation: gradientShift 4s ease infinite;
}

.service-card:hover::after,
.feature-card:hover::after {
    opacity: 1;
}

@keyframes gradientShift {

    0%,
    100% {
        background-position: 0% 50%;
    }

    50% {
        background-position: 100% 50%;
    }
}

/* ===== WAVE SECTION DIVIDERS ===== */
.wave-divider {
    position: relative;
    width: 100%;
    overflow: hidden;
    line-height: 0;
    margin-top: -1px;
}

.wave-divider svg {
    display: block;
    width: 100%;
    height: 60px;
}

.wave-divider.flip {
    transform: rotate(180deg);
    margin-top: 0;
    margin-bottom: -1px;
}

/* ===== SHIMMER TEXT EFFECT ===== */
.shimmer-text {
    background: linear-gradient(90deg, var(--gold-dark) 0%, var(--gold-light) 25%, var(--gold-dark) 50%, var(--gold-light) 75%, var(--gold-dark) 100%);
    background-size: 200% auto;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: shimmer 4s linear infinite;
}

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

    100% {
        background-position: 200% center;
    }
}

/* ===== ANIMATED UNDERLINE ON SECTION TITLES ===== */
.section-title::after {
    content: '';
    display: block;
    width: 0;
    height: 3px;
    background: var(--gradient-gold);
    margin: 16px auto 0;
    border-radius: 3px;
    transition: width 1.2s cubic-bezier(0.16, 1, 0.3, 1) 0.3s;
}

.reveal.visible .section-title::after,
.section-title.line-visible::after {
    width: 80px;
}

/* ===== GLOWING ACCENT LINE ===== */
.glow-line {
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--gold), var(--accent-blue), var(--gold), transparent);
    background-size: 200% auto;
    animation: glowSlide 3s linear infinite;
    margin: 0;
    border: none;
    opacity: 0.4;
}

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

    100% {
        background-position: 200% center;
    }
}

/* ===== WORD SPLIT ANIMATION ===== */
.split-word {
    display: inline-block;
    opacity: 0;
    transform: translateY(20px) rotateX(40deg);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.split-word.visible {
    opacity: 1;
    transform: translateY(0) rotateX(0);
}

/* ===== ANIMATED COUNTER GLOW ===== */
.stat-item .stat-number {
    position: relative;
}

.stat-item .stat-number::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 2px;
    background: var(--gradient-gold);
    border-radius: 2px;
    transition: width 1s cubic-bezier(0.16, 1, 0.3, 1) 0.5s;
}

.stat-item:hover .stat-number::after {
    width: 60%;
}

/* ===== MORPHING BLOB BACKGROUND ===== */
.morph-blob {
    position: absolute;
    width: 500px;
    height: 500px;
    border-radius: 40% 60% 55% 45% / 50% 40% 60% 50%;
    opacity: 0.06;
    animation: morphBlob 12s ease-in-out infinite alternate;
    pointer-events: none;
}

@keyframes morphBlob {
    0% {
        border-radius: 40% 60% 55% 45% / 50% 40% 60% 50%;
        transform: rotate(0deg) scale(1);
    }

    25% {
        border-radius: 55% 45% 40% 60% / 60% 50% 40% 55%;
    }

    50% {
        border-radius: 45% 55% 60% 40% / 40% 60% 50% 45%;
        transform: rotate(90deg) scale(1.05);
    }

    75% {
        border-radius: 60% 40% 45% 55% / 55% 45% 60% 40%;
    }

    100% {
        border-radius: 50% 50% 50% 50% / 45% 55% 45% 55%;
        transform: rotate(180deg) scale(1);
    }
}

/* ===== MAGNETIC BUTTON EFFECT ===== */
.btn-magnetic {
    position: relative;
    overflow: hidden;
}

.btn-magnetic::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    transition: width 0.6s ease, height 0.6s ease;
    transform: translate(-50%, -50%);
}

.btn-magnetic:hover::before {
    width: 300px;
    height: 300px;
}

/* ===== LOADING SKELETON SHIMMER ===== */
.skeleton-shimmer {
    background: linear-gradient(90deg, var(--bg-secondary) 25%, var(--bg-tertiary) 50%, var(--bg-secondary) 75%);
    background-size: 200% 100%;
    animation: skeletonShimmer 1.5s ease-in-out infinite;
}

@keyframes skeletonShimmer {
    0% {
        background-position: 200% 0;
    }

    100% {
        background-position: -200% 0;
    }
}

/* ===== MARQUEE / TRUST BAR ===== */
.trust-bar {
    padding: 40px 0;
    background: var(--bg-secondary);
    border-top: 1px solid var(--border-light);
    border-bottom: 1px solid var(--border-light);
    overflow: hidden;
}

.trust-content {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 48px;
    flex-wrap: wrap;
}

.trust-item {
    font-size: 14px;
    font-weight: 600;
    color: var(--text-muted);
    display: flex;
    align-items: center;
    gap: 10px;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

.trust-item ion-icon {
    font-size: 20px;
    color: var(--gold);
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
    .hero-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .hero p {
        margin: 0 auto 40px;
    }

    .hero-buttons {
        justify-content: center;
    }

    .hero-visual {
        max-width: 520px;
        margin: 0 auto;
    }

    .about-grid {
        grid-template-columns: 1fr;
        gap: 48px;
    }

    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }

    .careers-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .showcase-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .contact-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .nav-links {
        position: fixed;
        top: 0;
        right: -100%;
        width: 85%;
        max-width: 380px;
        height: 100vh;
        flex-direction: column;
        align-items: flex-start;
        padding: 24px 32px 40px;
        background: rgba(255, 255, 255, 0.98);
        backdrop-filter: blur(24px);
        border-left: 1px solid var(--border-light);
        transition: var(--transition);
        gap: 8px;
        overflow-y: auto;
        box-shadow: -10px 0 40px rgba(0, 0, 0, 0.1);
        z-index: 2000;
        scrollbar-width: thin;
        scrollbar-color: var(--gold-light) transparent;
    }

    .nav-links::-webkit-scrollbar {
        width: 3px;
    }

    .nav-links::-webkit-scrollbar-track {
        background: transparent;
    }

    .nav-links::-webkit-scrollbar-thumb {
        background: var(--gold-light);
        border-radius: 4px;
    }

    .sidebar-logo {
        display: block;
        margin-bottom: 24px;
        width: 100%;
        padding: 20px 0 24px;
        border-bottom: 1px solid var(--border-light);
    }

    .sidebar-logo img {
        height: 48px;
        width: auto;
    }

    /* Hide main navbar logo when menu active */
    body.menu-active .nav-logo {
        opacity: 0;
        visibility: hidden;
        transition: 0.1s;
    }

    .nav-links.active {
        right: 0;
    }

    .nav-links a {
        width: 100%;
        font-size: 17px;
        padding: 14px 16px;
        border-radius: var(--radius-sm);
    }
    
    .nav-links a.active, .nav-links a:hover {
        background: rgba(200, 164, 94, 0.05);
    }

    .nav-logo .logo-img {
        max-width: 160px;
        /* Prevent logo overlapping hamburger */
        height: auto;
    }

    .hamburger {
        display: flex;
        z-index: 2005;
        position: relative;
    }

    .nav-links .dropdown-menu {
        position: static;
        opacity: 1;
        visibility: visible;
        transform: none;
        background: rgba(247, 248, 252, 0.6);
        border: 1px solid var(--border-light);
        border-radius: var(--radius-md);
        box-shadow: inset 0 2px 4px rgba(0,0,0,0.01);
        padding: 8px 12px;
        display: none;
        margin-top: 4px;
        margin-bottom: 8px;
        width: calc(100% - 10px);
    }

    .nav-links .dropdown-menu a {
        padding: 12px 16px;
        font-size: 15px;
    }

    .nav-links .dropdown.open .dropdown-menu {
        display: block;
    }

    .services-grid,
    .features-grid,
    .careers-grid {
        grid-template-columns: 1fr;
    }

    .showcase-grid {
        grid-template-columns: 1fr;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 36px;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 12px;
        text-align: center;
    }

    .hero {
        padding: 130px 0 70px;
        min-height: auto;
    }

    .hero h1 {
        font-size: 34px;
        letter-spacing: -1px;
    }

    .about-features {
        grid-template-columns: 1fr;
    }

    .cta-banner {
        padding: 48px 28px;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .stat-item .stat-number {
        font-size: 30px;
    }

    .about-visual {
        padding: 32px;
    }

    section {
        padding: 80px 0;
    }

    .about-section,
    .services-section,
    .features-section {
        padding: 80px 0;
    }

    .page-hero {
        padding: 140px 0 60px;
    }

    .contact-form-card {
        padding: 32px 24px;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 16px;
    }

    .hero h1 {
        font-size: 28px;
        letter-spacing: -0.5px;
    }

    .hero-buttons {
        flex-direction: column;
        width: 100%;
    }

    .btn-primary,
    .btn-secondary {
        width: 100%;
        justify-content: center;
    }

    .hero-card {
        padding: 24px;
    }

    .hero-card .stats-grid {
        grid-template-columns: 1fr 1fr;
        gap: 12px;
    }

    .stat-item {
        padding: 16px 12px;
    }

    .section-title {
        font-size: 26px;
    }

    .page-hero h1 {
        font-size: 28px;
    }
}

/* Mobile overlay */
.nav-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.3);
    z-index: 999;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
    backdrop-filter: blur(4px);
}

.nav-overlay.active {
    opacity: 1;
    visibility: visible;
}

/* ===== TILT CARD EFFECT ===== */
.tilt-card {
    transform-style: preserve-3d;
    perspective: 1000px;
}

/* ===== SCROLL PROGRESS BAR ===== */
.scroll-progress {
    position: fixed;
    top: 0;
    left: 0;
    width: 0%;
    height: 3px;
    background: var(--gradient-gold);
    z-index: 10000;
    transition: width 0.05s linear;
}

/* ===== BACK TO TOP ===== */
.back-to-top {
    position: fixed;
    bottom: 32px;
    right: 32px;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: var(--gradient-gold);
    color: var(--text-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 999;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: var(--transition);
    box-shadow: var(--shadow-gold);
    border: none;
    font-size: 20px;
}

.back-to-top.visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.back-to-top:hover {
    box-shadow: 0 12px 40px rgba(200, 164, 94, 0.45);
}

.back-to-top ion-icon {
    font-size: 22px;
}

/* ===== PLACEMENT PARTNERS ===== */
.placement-section {
    padding: 100px 0;
    background: var(--bg-primary);
}

.partners-slider {
    display: flex;
    overflow: hidden;
    padding: 40px 0;
    mask-image: linear-gradient(to right, transparent, black 15%, black 85%, transparent);
}

.partners-track {
    display: flex;
    gap: 100px;
    animation: scrollLogos 40s linear infinite;
    align-items: center;
}

.partners-track img {
    height: 45px;
    opacity: 0.4;
    filter: grayscale(100%);
    transition: var(--transition);
}

.partners-track img:hover {
    opacity: 1;
    filter: grayscale(0%);
}

@keyframes scrollLogos {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

@media (max-width: 768px) {
    .hero-grid {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 40px;
    }
    .hero p {
        margin: 0 auto 40px;
    }
    .hero-buttons {
        justify-content: center;
    }
    .hero h1 {
        margin-top: 20px;
    }
}