@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&family=Outfit:wght@400;500;600;700;800&display=swap');

/* =========================================
   DESIGN TOKENS
   ========================================= */
:root {
    /* Color Palette - Deep Navy + Gold */
    --primary:          #0f172a;
    --primary-light:    #1e293b;
    --primary-mid:      #334155;
    --secondary:        #f59e0b;
    --secondary-hover:  #d97706;
    --accent-teal:      #0ea5e9;
    --accent-violet:    #8b5cf6;
    --text-main:        #1e293b;
    --text-muted:       #64748b;
    --text-light:       #ffffff;
    --bg-main:          #f8fafc;
    --bg-white:         #ffffff;
    --border-color:     #e2e8f0;

    /* Typography */
    --font-heading: 'Outfit', sans-serif;
    --font-body:    'Inter', sans-serif;

    /* Spacing */
    --section-padding: 100px 0;

    /* Border Radius */
    --radius-sm:  8px;
    --radius-md: 16px;
    --radius-lg: 24px;
    --radius-xl: 32px;

    /* Shadows */
    --shadow-xs:   0 1px 3px rgba(0,0,0,0.06), 0 1px 2px rgba(0,0,0,0.04);
    --shadow-sm:   0 4px 6px rgba(15, 23, 42, 0.05), 0 2px 4px rgba(15, 23, 42, 0.04);
    --shadow-md:   0 10px 25px rgba(15, 23, 42, 0.08), 0 4px 10px rgba(15, 23, 42, 0.05);
    --shadow-lg:   0 20px 50px rgba(15, 23, 42, 0.12), 0 8px 20px rgba(15, 23, 42, 0.08);
    --shadow-xl:   0 35px 80px rgba(15, 23, 42, 0.18);
    --shadow-glow-gold:   0 0 40px rgba(245, 158, 11, 0.35);
    --shadow-glow-teal:   0 0 40px rgba(14, 165, 233, 0.3);
    --shadow-glow-violet: 0 0 40px rgba(139, 92, 246, 0.3);

    /* Transitions */
    --transition-fast:   all 0.15s ease;
    --transition:        all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-slow:   all 0.5s cubic-bezier(0.4, 0, 0.2, 1);

    /* Gradients */
    --gradient-primary:  linear-gradient(135deg, #0f172a 0%, #1e3a5f 50%, #0f172a 100%);
    --gradient-accent:   linear-gradient(135deg, #f59e0b 0%, #f97316 100%);
    --gradient-teal:     linear-gradient(135deg, #0ea5e9 0%, #6366f1 100%);
    --gradient-card:     linear-gradient(145deg, rgba(255,255,255,0.9), rgba(248,250,252,0.8));
}

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

html { scroll-behavior: smooth; }

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

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    color: var(--primary);
    font-weight: 700;
    line-height: 1.2;
    letter-spacing: -0.02em;
}

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

ul { list-style: none; }

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

/* =========================================
   UTILITIES
   ========================================= */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

.highlight { color: var(--secondary); }

.section-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 6px 16px;
    border-radius: 50px;
    background: rgba(245, 158, 11, 0.1);
    border: 1px solid rgba(245, 158, 11, 0.25);
    color: var(--secondary-hover);
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    margin-bottom: 16px;
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-header h2 {
    font-size: clamp(2rem, 4vw, 2.8rem);
    margin-bottom: 16px;
}

.section-header p {
    color: var(--text-muted);
    font-size: 1.15rem;
    max-width: 560px;
    margin: 0 auto;
}

/* Scroll Reveal */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.7s ease, transform 0.7s ease;
}

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

.reveal-left { opacity: 0; transform: translateX(-30px); transition: opacity 0.7s ease, transform 0.7s ease; }
.reveal-left.visible { opacity: 1; transform: translateX(0); }
.reveal-right { opacity: 0; transform: translateX(30px); transition: opacity 0.7s ease, transform 0.7s ease; }
.reveal-right.visible { opacity: 1; transform: translateX(0); }

/* =========================================
   BUTTONS
   ========================================= */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 14px 28px;
    border-radius: var(--radius-sm);
    font-family: var(--font-body);
    font-weight: 600;
    font-size: 0.95rem;
    cursor: pointer;
    transition: var(--transition);
    border: none;
    position: relative;
    overflow: hidden;
    letter-spacing: 0.01em;
}

.btn::after {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(255,255,255,0);
    transition: var(--transition-fast);
}

.btn:hover::after { background: rgba(255,255,255,0.1); }

.btn-primary {
    background: var(--primary);
    color: var(--text-light);
    box-shadow: 0 4px 15px rgba(15, 23, 42, 0.2);
}

.btn-primary:hover {
    background: var(--primary-light);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(15, 23, 42, 0.3);
}

.btn-secondary {
    background: var(--gradient-accent);
    color: var(--primary);
    box-shadow: 0 4px 15px rgba(245, 158, 11, 0.3);
}

.btn-secondary:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-glow-gold);
}

.btn-outline {
    background: transparent;
    border: 2px solid rgba(255,255,255,0.3);
    color: white;
    backdrop-filter: blur(8px);
}

.btn-outline:hover {
    background: rgba(255,255,255,0.15);
    border-color: rgba(255,255,255,0.6);
    transform: translateY(-2px);
}

.btn-outline-dark {
    background: transparent;
    border: 2px solid var(--border-color);
    color: var(--text-main);
}

.btn-outline-dark:hover {
    background: var(--primary);
    border-color: var(--primary);
    color: white;
    transform: translateY(-2px);
}

.btn-lg { padding: 18px 36px; font-size: 1.05rem; border-radius: 12px; }
.btn-sm { padding: 10px 20px; font-size: 0.85rem; }

/* =========================================
   NAVBAR
   ========================================= */
.navbar {
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.3);
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    transition: var(--transition);
}

.navbar.scrolled {
    background: rgba(255, 255, 255, 0.95);
    box-shadow: var(--shadow-md);
}

.nav-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 76px;
}

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
}

.logo img {
    height: 44px;
    border-radius: 10px;
}

.logo-text {
    font-family: var(--font-heading);
    font-size: 1.4rem;
    font-weight: 800;
    color: var(--primary);
    letter-spacing: -0.03em;
}

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

.nav-links a {
    font-weight: 500;
    font-size: 0.9rem;
    color: var(--text-muted);
    padding: 8px 14px;
    border-radius: var(--radius-sm);
    transition: var(--transition-fast);
    position: relative;
}

.nav-links a:hover,
.nav-links a.active {
    color: var(--primary);
    background: rgba(15, 23, 42, 0.05);
}

.nav-cta {
    display: flex;
    align-items: center;
    gap: 12px;
}

.mobile-menu-btn {
    display: none;
    background: none;
    border: 1px solid var(--border-color);
    border-radius: var(--radius-sm);
    padding: 8px 12px;
    color: var(--primary);
    cursor: pointer;
    font-size: 1.2rem;
    transition: var(--transition-fast);
}

.mobile-menu-btn:hover { background: var(--bg-main); }

/* Mobile Nav */
.mobile-nav {
    display: none;
    position: fixed;
    top: 76px;
    left: 0;
    right: 0;
    background: white;
    border-bottom: 1px solid var(--border-color);
    padding: 16px 24px 24px;
    z-index: 999;
    box-shadow: var(--shadow-lg);
    animation: slideDown 0.25s ease;
}

@keyframes slideDown {
    from { opacity: 0; transform: translateY(-10px); }
    to   { opacity: 1; transform: translateY(0); }
}

.mobile-nav.open { display: block; }

.mobile-nav a {
    display: block;
    padding: 12px 16px;
    color: var(--text-main);
    font-weight: 500;
    border-radius: var(--radius-sm);
    margin-bottom: 4px;
    transition: var(--transition-fast);
}

.mobile-nav a:hover {
    background: var(--bg-main);
    color: var(--primary);
}

.mobile-nav .mobile-cta {
    margin-top: 16px;
    padding-top: 16px;
    border-top: 1px solid var(--border-color);
    display: flex;
    flex-direction: column;
    gap: 10px;
}

/* =========================================
   HERO SECTION
   ========================================= */
.hero {
    background: var(--gradient-primary);
    padding: 160px 0 100px;
    position: relative;
    overflow: hidden;
    min-height: 100vh;
    display: flex;
    align-items: center;
}

/* Animated mesh background */
.hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image:
        radial-gradient(ellipse at 20% 50%, rgba(14, 165, 233, 0.15) 0%, transparent 60%),
        radial-gradient(ellipse at 80% 20%, rgba(245, 158, 11, 0.12) 0%, transparent 50%),
        radial-gradient(ellipse at 60% 80%, rgba(139, 92, 246, 0.1) 0%, transparent 50%);
    pointer-events: none;
}

.hero-grid {
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(255,255,255,0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,0.03) 1px, transparent 1px);
    background-size: 60px 60px;
    pointer-events: none;
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    gap: 60px;
    position: relative;
    z-index: 2;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 18px;
    border-radius: 50px;
    background: rgba(245, 158, 11, 0.15);
    border: 1px solid rgba(245, 158, 11, 0.3);
    color: #fcd34d;
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    margin-bottom: 24px;
    width: fit-content;
}

.hero-badge i { font-size: 0.75rem; }

.hero-text h1 {
    color: white;
    font-size: clamp(2.8rem, 5vw, 4rem);
    margin-bottom: 24px;
    line-height: 1.1;
}

.hero-text p {
    font-size: 1.15rem;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 40px;
    max-width: 500px;
    line-height: 1.8;
}

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

.hero-stats {
    display: flex;
    gap: 32px;
    margin-top: 56px;
    padding-top: 40px;
    border-top: 1px solid rgba(255,255,255,0.1);
}

.stat-value {
    font-family: var(--font-heading);
    font-size: 2rem;
    font-weight: 800;
    color: var(--secondary);
    line-height: 1;
}
.stat-label {
    font-size: 0.85rem;
    color: rgba(255,255,255,0.55);
    margin-top: 4px;
}

/* Hero Visual */
.hero-visual {
    position: relative;
    height: 480px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-orbit-ring {
    position: absolute;
    border-radius: 50%;
    border: 1px solid rgba(255,255,255,0.08);
}

.orbit-1 { width: 340px; height: 340px; animation: spin 20s linear infinite; }
.orbit-2 { width: 460px; height: 460px; animation: spin 30s linear infinite reverse; }

@keyframes spin {
    from { transform: rotate(0deg); }
    to   { transform: rotate(360deg); }
}

.hero-center-card {
    background: rgba(255, 255, 255, 0.07);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: var(--radius-xl);
    padding: 32px 40px;
    text-align: center;
    color: white;
    position: relative;
    z-index: 3;
    box-shadow: 0 25px 60px rgba(0,0,0,0.3);
}

.hero-center-card .brand-icon {
    width: 70px;
    height: 70px;
    background: var(--gradient-accent);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 16px;
    font-size: 2rem;
    color: var(--primary);
    box-shadow: var(--shadow-glow-gold);
}

.hero-center-card h3 { font-size: 1.4rem; margin-bottom: 6px; color: white; }
.hero-center-card p { color: rgba(255,255,255,0.6); font-size: 0.9rem; }

.floating-pill {
    position: absolute;
    display: flex;
    align-items: center;
    gap: 10px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 50px;
    padding: 10px 18px;
    color: white;
    font-size: 0.85rem;
    font-weight: 600;
    box-shadow: 0 8px 24px rgba(0,0,0,0.2);
    z-index: 4;
    white-space: nowrap;
}

.floating-pill i {
    font-size: 1rem;
    color: var(--secondary);
}

.pill-1 { top: 12%; left: -10%; animation: float 6s ease-in-out infinite; }
.pill-2 { top: 30%; right: -12%; animation: float 7s ease-in-out infinite 1.5s; }
.pill-3 { bottom: 18%; left: -5%; animation: float 5s ease-in-out infinite 0.8s; }
.pill-4 { bottom: 5%; right: -8%; animation: float 8s ease-in-out infinite 2.5s; }

@keyframes float {
    0%, 100% { transform: translateY(0px); }
    50%       { transform: translateY(-14px); }
}

.wave-bottom {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    overflow: hidden;
    line-height: 0;
    pointer-events: none;
}

.wave-bottom svg {
    position: relative;
    display: block;
    width: calc(100% + 1.3px);
    height: 80px;
}

.wave-bottom .shape-fill { fill: var(--bg-main); }

/* =========================================
   ABOUT SECTION
   ========================================= */
.about-section {
    padding: var(--section-padding);
    background-color: var(--bg-white);
}

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

.about-label {
    display: inline-block;
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--secondary-hover);
    margin-bottom: 16px;
}

.about-text h2 {
    font-size: clamp(2rem, 3.5vw, 2.6rem);
    margin-bottom: 20px;
}

.about-text p {
    font-size: 1.05rem;
    color: var(--text-muted);
    margin-bottom: 20px;
    line-height: 1.8;
}

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

.feature-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--text-main);
}

.feature-item i {
    width: 30px;
    height: 30px;
    background: rgba(245, 158, 11, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--secondary-hover);
    font-size: 0.75rem;
    flex-shrink: 0;
}

.about-visual {
    position: relative;
}

.about-image-wrapper {
    background: var(--gradient-primary);
    border-radius: var(--radius-xl);
    height: 440px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    position: relative;
    box-shadow: var(--shadow-xl);
}

.about-image-wrapper::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse at 30% 70%, rgba(14, 165, 233, 0.2) 0%, transparent 60%),
        radial-gradient(ellipse at 70% 30%, rgba(245, 158, 11, 0.15) 0%, transparent 50%);
}

.about-image-wrapper i {
    font-size: 7rem;
    color: rgba(255,255,255,0.12);
    position: absolute;
}

.about-badge-card {
    position: absolute;
    background: white;
    border-radius: var(--radius-md);
    padding: 16px 20px;
    box-shadow: var(--shadow-lg);
    display: flex;
    align-items: center;
    gap: 12px;
    font-weight: 600;
    font-size: 0.85rem;
    color: var(--text-main);
    z-index: 5;
}

.about-badge-card .badge-icon {
    width: 40px;
    height: 40px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    color: white;
    flex-shrink: 0;
}

.about-badge-card.card-1 { bottom: -20px; left: -20px; animation: float 6s ease-in-out infinite; }
.about-badge-card.card-2 { top: -20px; right: -20px; animation: float 7s ease-in-out infinite 1s; }

/* =========================================
   MISSION & VISION
   ========================================= */
.mission-vision {
    padding: var(--section-padding);
    background: var(--bg-main);
}

.mv-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
}

.mv-card {
    background: white;
    padding: 44px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--border-color);
    position: relative;
    overflow: hidden;
    transition: var(--transition);
}

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

.mv-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
}

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

.mv-icon {
    width: 60px;
    height: 60px;
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.6rem;
    margin-bottom: 24px;
}

.mv-icon.gold { background: rgba(245, 158, 11, 0.1); color: var(--secondary-hover); }
.mv-icon.blue { background: rgba(14, 165, 233, 0.1); color: var(--accent-teal); }

.mv-card h3 { font-size: 1.5rem; margin-bottom: 14px; }
.mv-card p { color: var(--text-muted); line-height: 1.8; }

/* =========================================
   FOUNDER SECTION
   ========================================= */
.founder-section {
    padding: var(--section-padding);
    background: var(--bg-white);
    text-align: center;
}

.founder-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    max-width: 860px;
    margin: 0 auto;
}

.founder-card {
    padding: 44px 36px;
    background: var(--bg-main);
    border-radius: var(--radius-lg);
    border: 1px solid var(--border-color);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.founder-card::after {
    content: '';
    position: absolute;
    inset: 0;
    background: var(--gradient-primary);
    opacity: 0;
    transition: var(--transition);
    z-index: 0;
}

.founder-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-xl); }
.founder-card:hover::after { opacity: 1; }
.founder-card > * { position: relative; z-index: 1; }
.founder-card:hover h3,
.founder-card:hover p { color: white; }
.founder-card:hover .founder-role { color: var(--secondary) !important; }
.founder-card:hover .founder-img { background: rgba(255,255,255,0.15); color: white; }

.founder-img {
    width: 110px;
    height: 110px;
    background: linear-gradient(135deg, var(--primary-light), var(--primary));
    border-radius: 50%;
    margin: 0 auto 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 2.8rem;
    transition: var(--transition);
    box-shadow: var(--shadow-md);
}

.founder-card h3 { font-size: 1.35rem; margin-bottom: 6px; transition: color 0.3s; }
.founder-role { color: var(--secondary-hover) !important; font-weight: 700; font-size: 0.9rem; margin-bottom: 16px; transition: color 0.3s; }
.founder-card p { color: var(--text-muted); font-size: 0.95rem; line-height: 1.7; transition: color 0.3s; }

/* =========================================
   SERVICES SECTION
   ========================================= */
.services-section {
    padding: var(--section-padding);
    background-color: var(--bg-main);
}

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

.service-card {
    background: white;
    padding: 40px 32px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--border-color);
    transition: var(--transition);
    text-align: left;
    position: relative;
    overflow: hidden;
    cursor: default;
}

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

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
    border-color: transparent;
}

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

.service-icon {
    width: 64px;
    height: 64px;
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
    font-size: 1.6rem;
    transition: var(--transition);
}

.service-card:hover .service-icon {
    transform: scale(1.1) rotate(-3deg);
    box-shadow: var(--shadow-md);
}

.si-blue   { background: rgba(14, 165, 233, 0.1); color: var(--accent-teal); }
.si-gold   { background: rgba(245, 158, 11, 0.1); color: var(--secondary-hover); }
.si-violet { background: rgba(139, 92, 246, 0.1); color: var(--accent-violet); }
.si-teal   { background: rgba(20, 184, 166, 0.1); color: #0d9488; }
.si-navy   { background: rgba(15, 23, 42, 0.08); color: var(--primary); }

.service-card h3 { font-size: 1.3rem; margin-bottom: 12px; }
.service-card p { color: var(--text-muted); line-height: 1.75; font-size: 0.95rem; margin-bottom: 20px; }

.service-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: var(--secondary-hover);
    font-size: 0.88rem;
    font-weight: 700;
    letter-spacing: 0.02em;
    text-transform: uppercase;
    transition: var(--transition);
}

.service-link i { transition: transform 0.3s; }
.service-link:hover i { transform: translateX(5px); }

/* =========================================
   CTA SECTION
   ========================================= */
.cta-section {
    background: var(--gradient-primary);
    padding: 100px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse at 30% 50%, rgba(245, 158, 11, 0.15) 0%, transparent 60%),
        radial-gradient(ellipse at 70% 50%, rgba(14, 165, 233, 0.1) 0%, transparent 50%);
    pointer-events: none;
}

.cta-section > .container { position: relative; z-index: 1; }
.cta-section h2 { color: white; font-size: clamp(2rem, 4vw, 3rem); margin-bottom: 16px; }
.cta-section p { color: rgba(255,255,255,0.7); font-size: 1.15rem; margin-bottom: 40px; max-width: 500px; margin-left: auto; margin-right: auto; }

.cta-buttons { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }

/* =========================================
   PORTFOLIO / PROJECTS
   ========================================= */
.portfolio-section {
    padding: var(--section-padding);
    background-color: var(--bg-main);
}

.portfolio-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(360px, 1fr));
    gap: 36px;
}

.project-card {
    background: white;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--border-color);
    transition: var(--transition);
}

.project-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-xl);
    border-color: transparent;
}

.project-img {
    width: 100%;
    height: 220px;
    position: relative;
    overflow: hidden;
    background: var(--bg-main);
}

.project-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.project-card:hover .project-img img { transform: scale(1.05); }

.project-img-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(15,23,42,0.7) 0%, transparent 60%);
    opacity: 0;
    transition: var(--transition);
    display: flex;
    align-items: flex-end;
    padding: 20px;
}

.project-card:hover .project-img-overlay { opacity: 1; }

.project-content { padding: 28px; }

.project-category {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 5px 12px;
    background: rgba(245, 158, 11, 0.1);
    color: var(--secondary-hover);
    border-radius: 50px;
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    margin-bottom: 14px;
}

.project-title { font-size: 1.35rem; margin-bottom: 10px; }
.project-desc { color: var(--text-muted); margin-bottom: 20px; line-height: 1.7; font-size: 0.95rem; }

.project-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--primary);
    font-weight: 700;
    font-size: 0.88rem;
    letter-spacing: 0.02em;
    transition: var(--transition);
}

.project-link i { transition: transform 0.3s; }
.project-link:hover { color: var(--secondary-hover); }
.project-link:hover i { transform: translateX(5px); }

/* =========================================
   CONTACT SECTION
   ========================================= */
.contact-section {
    padding: var(--section-padding);
    background-color: var(--bg-white);
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.6fr;
    gap: 60px;
    align-items: start;
}

.contact-info {
    background: var(--gradient-primary);
    color: white;
    padding: 48px 40px;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-xl);
    position: relative;
    overflow: hidden;
}

.contact-info::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse at 80% 10%, rgba(245, 158, 11, 0.2) 0%, transparent 50%),
        radial-gradient(ellipse at 20% 90%, rgba(14, 165, 233, 0.15) 0%, transparent 50%);
    pointer-events: none;
}

.contact-info > * { position: relative; z-index: 1; }
.contact-info h3 { color: white; margin-bottom: 36px; font-size: 1.8rem; }

.info-item {
    display: flex;
    align-items: flex-start;
    gap: 18px;
    margin-bottom: 28px;
}

.info-icon {
    width: 48px;
    height: 48px;
    background: rgba(255,255,255,0.1);
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--secondary);
    font-size: 1.1rem;
    flex-shrink: 0;
    transition: var(--transition);
}

.info-item:hover .info-icon {
    background: var(--secondary);
    color: var(--primary);
}

.info-item h4 { color: white; margin-bottom: 4px; font-size: 1rem; }
.info-item p { color: rgba(255,255,255,0.7); font-size: 0.93rem; }

.social-links-contact {
    margin-top: 40px;
    padding-top: 30px;
    border-top: 1px solid rgba(255,255,255,0.1);
}

.social-links-contact h4 { color: white; margin-bottom: 16px; font-size: 1rem; }

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

.social-btn {
    width: 44px;
    height: 44px;
    background: rgba(255,255,255,0.1);
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1rem;
    transition: var(--transition);
}

.social-btn:hover {
    background: var(--secondary);
    color: var(--primary);
    transform: translateY(-3px);
    box-shadow: var(--shadow-glow-gold);
}


/* Contact Form */
.contact-form-area h2 { font-size: 2rem; margin-bottom: 10px; }
.contact-form-area > p { color: var(--text-muted); margin-bottom: 32px; line-height: 1.7; }

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

.form-label {
    display: block;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--text-main);
    margin-bottom: 8px;
}

.form-control {
    width: 100%;
    padding: 14px 16px;
    border: 1.5px solid var(--border-color);
    border-radius: var(--radius-sm);
    font-family: var(--font-body);
    font-size: 0.95rem;
    color: var(--text-main);
    background: var(--bg-main);
    transition: var(--transition-fast);
    appearance: none;
}

.form-control:focus {
    outline: none;
    border-color: var(--secondary);
    background: white;
    box-shadow: 0 0 0 4px rgba(245, 158, 11, 0.12);
}

.form-control::placeholder { color: #94a3b8; }

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

textarea.form-control {
    resize: vertical;
    min-height: 140px;
}

/* =========================================
   PAGE HEADER (Inner Pages)
   ========================================= */
.page-header {
    background: var(--gradient-primary);
    color: white;
    padding: 140px 0 70px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.page-header::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(255,255,255,0.025) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,0.025) 1px, transparent 1px);
    background-size: 60px 60px;
    pointer-events: none;
}

.page-header::after {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse at 30% 60%, rgba(14, 165, 233, 0.18) 0%, transparent 55%),
        radial-gradient(ellipse at 70% 30%, rgba(245, 158, 11, 0.12) 0%, transparent 50%);
    pointer-events: none;
}

.page-header > .container { position: relative; z-index: 2; }
.page-header h1 { color: white; font-size: clamp(2.2rem, 4vw, 3rem); margin-bottom: 16px; }
.page-header p { color: rgba(255,255,255,0.7); font-size: 1.1rem; max-width: 560px; margin: 0 auto; }

.breadcrumb {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin-top: 20px;
    font-size: 0.88rem;
    color: rgba(255,255,255,0.5);
}

.breadcrumb a { color: rgba(255,255,255,0.6); }
.breadcrumb a:hover { color: var(--secondary); }
.breadcrumb span { color: var(--secondary); font-weight: 500; }

/* =========================================
   FOOTER
   ========================================= */
.footer {
    background: #080e1a;
    color: white;
    padding: 80px 0 0;
    position: relative;
    overflow: hidden;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(245,158,11,0.4), transparent);
}

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

.footer-brand p {
    color: rgba(255,255,255,0.5);
    margin: 16px 0 24px;
    font-size: 0.93rem;
    line-height: 1.8;
    max-width: 260px;
}

.footer-col h4 {
    color: white;
    font-size: 0.9rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 12px;
}

.footer-col h4::after {
    content: '';
    position: absolute;
    left: 0; bottom: 0;
    width: 28px; height: 2px;
    background: var(--gradient-accent);
    border-radius: 2px;
}

.footer-col ul li { margin-bottom: 12px; }
.footer-col ul li a { color: rgba(255,255,255,0.5); font-size: 0.9rem; transition: var(--transition-fast); }
.footer-col ul li a:hover { color: var(--secondary); padding-left: 6px; }

.footer-contact-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 16px;
}

.footer-contact-item i { color: var(--secondary); font-size: 0.9rem; margin-top: 3px; flex-shrink: 0; }
.footer-contact-item span { color: rgba(255,255,255,0.5); font-size: 0.9rem; line-height: 1.5; }

.social-links {
    display: flex;
    gap: 10px;
    margin-top: 4px;
}

.social-links a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 38px;
    height: 38px;
    background: rgba(255,255,255,0.07);
    border-radius: var(--radius-sm);
    color: rgba(255,255,255,0.6);
    font-size: 0.9rem;
    transition: var(--transition-fast);
    border: 1px solid rgba(255,255,255,0.06);
}

.social-links a:hover {
    background: var(--secondary);
    color: var(--primary);
    transform: translateY(-3px);
    border-color: var(--secondary);
    box-shadow: var(--shadow-glow-gold);
}

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.07);
    padding: 24px 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    color: rgba(255,255,255,0.35);
    font-size: 0.85rem;
    flex-wrap: wrap;
    gap: 12px;
}

.footer-bottom a { color: rgba(255,255,255,0.4); }
.footer-bottom a:hover { color: var(--secondary); }

/* =========================================
   SCROLL TO TOP BUTTON
   ========================================= */
.scroll-top-btn {
    position: fixed;
    bottom: 32px;
    right: 32px;
    width: 48px;
    height: 48px;
    background: var(--gradient-accent);
    color: var(--primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    cursor: pointer;
    box-shadow: var(--shadow-glow-gold);
    z-index: 999;
    border: none;
    opacity: 0;
    transform: translateY(20px);
    transition: var(--transition);
    pointer-events: none;
}

.scroll-top-btn.visible {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
}

.scroll-top-btn:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 30px rgba(245, 158, 11, 0.5);
}

/* =========================================
   RESPONSIVE
   ========================================= */
@media (max-width: 1024px) {
    .hero-content  { grid-template-columns: 1fr; text-align: center; }
    .hero-text p   { margin: 0 auto 40px; }
    .hero-buttons  { justify-content: center; }
    .hero-stats    { justify-content: center; }
    .hero-visual   { height: 360px; }
    .about-grid    { grid-template-columns: 1fr; gap: 40px; }
    .footer-grid   { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
    :root { --section-padding: 70px 0; }

    .nav-links, .nav-cta { display: none; }
    .mobile-menu-btn { display: block; }

    .hero-text h1  { font-size: 2.5rem; }
    .hero-visual   { height: 280px; }
    .hero-stats    { flex-wrap: wrap; gap: 24px; }

    .mv-grid          { grid-template-columns: 1fr; }
    .services-grid    { grid-template-columns: 1fr; }
    .portfolio-grid   { grid-template-columns: 1fr; }
    .contact-grid     { grid-template-columns: 1fr; }
    .form-row         { grid-template-columns: 1fr; }
    .footer-grid      { grid-template-columns: 1fr; }
    .footer-bottom    { text-align: center; justify-content: center; }

    .floating-pill    { display: none; }
    .about-badge-card { display: none; }
}

@media (max-width: 480px) {
    .hero-text h1    { font-size: 2rem; }
    .hero-buttons    { flex-direction: column; align-items: center; }
    .cta-buttons     { flex-direction: column; align-items: center; }
    .section-header h2 { font-size: 1.8rem; }
}