/*
================================================================================
SANJEEV WEBUILDS — SHARED STYLESHEET (REDESIGNED)
================================================================================
*/

/* ── Design Tokens ──────────────────────────────────────── */
:root {
    --white:        #FFFFFF;
    --off-white:    #F8FAFC;
    --accent:       #4F46E5;
    --accent-light: #EEF2FF;
    --accent-dark:  #3730A3;
    --text-primary: #0F172A;
    --text-body:    #475569;
    --text-muted:   #94A3B8;
    --border:       #E2E8F0;
    --success:      #10B981;
    --nav-height:   80px;

    --font-display: 'Plus Jakarta Sans', sans-serif;
    --font-body:    'Inter', sans-serif;

    --shadow-card:   0 1px 3px rgba(0,0,0,0.06), 0 4px 16px rgba(0,0,0,0.04);
    --shadow-hover:  0 8px 32px rgba(79,70,229,0.12), 0 2px 8px rgba(0,0,0,0.06);
    --shadow-button: 0 4px 14px rgba(79,70,229,0.35);
    --shadow-nav:    0 2px 30px rgba(0,0,0,0.06);

    --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ── Reset ──────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

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

/* ── Typography ─────────────────────────────────────────── */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-display);
    color: var(--text-primary);
    line-height: 1.25;
}
h1 { font-size: 3.5rem; font-weight: 700; letter-spacing: -0.02em; }
h2 { font-size: 2.25rem; font-weight: 700; letter-spacing: -0.01em; }
h3 { font-size: 1.375rem; font-weight: 600; }
p  { font-size: 1rem; font-weight: 400; margin-bottom: 1.5rem; }
small, .caption { font-size: 0.875rem; }

a {
    color: var(--accent);
    text-decoration: none;
    transition: color var(--transition);
}
a:hover { color: var(--accent-dark); }

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

/* ── Layout ─────────────────────────────────────────────── */
.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* Full-width inner padded wrapper (for nav & footer) */
.container-full {
    width: 100%;
    padding: 0 3rem;
}

section { padding: 100px 0; position: relative; }
.section-bg-alt { background-color: var(--off-white); }

.section-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 4rem auto;
}

.eyebrow {
    display: inline-block;
    font-family: var(--font-body);
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--accent);
    background-color: var(--accent-light);
    padding: 0.35rem 1rem;
    border-radius: 50px;
    margin-bottom: 1rem;
}

.section-title { margin-bottom: 1rem; }
.section-subtitle { color: var(--text-body); font-size: 1.125rem; }

.grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 2.5rem; align-items: center; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem; }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 2rem; }

/* ── Buttons ────────────────────────────────────────────── */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-body);
    font-size: 0.95rem;
    font-weight: 600;
    padding: 0.75rem 2rem;
    border-radius: 8px;
    cursor: pointer;
    transition: transform 0.15s ease, box-shadow 0.25s ease, background-color 0.25s ease, color 0.25s ease;
    border: none;
    gap: 0.5rem;
}
.btn-pill { border-radius: 50px; }
.btn-primary { background-color: var(--accent); color: var(--white); box-shadow: var(--shadow-button); }
.btn-primary:hover { background-color: var(--accent-dark); color: var(--white); box-shadow: 0 6px 20px rgba(79,70,229,0.45); }
.btn-secondary { background-color: var(--white); color: var(--text-primary); border: 1px solid var(--border); }
.btn-secondary:hover { background-color: var(--off-white); color: var(--text-primary); border-color: var(--text-muted); }
.btn:active { transform: scale(0.97); }
.btn-white-outline { background-color: transparent; color: var(--white); border: 2px solid rgba(255,255,255,0.5); }
.btn-white-outline:hover { background-color: var(--white); color: var(--accent); }

/* ═══════════════════════════════════════════════════════════
   REDESIGNED NAVBAR — FULL WIDTH, PREMIUM DESKTOP LOOK
═══════════════════════════════════════════════════════════ */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background-color: rgba(255, 255, 255, 0.97);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    z-index: 1000;
    border-bottom: 1px solid transparent;
    transition: box-shadow var(--transition), border-color var(--transition), background-color var(--transition);
}

.header-scrolled {
    box-shadow: var(--shadow-nav);
    border-bottom-color: var(--border);
    background-color: var(--white);
}

/* Transparent header when sitting over a full-photo page hero */
.header-over-hero {
    background-color: rgba(10, 16, 40, 0.25) !important;
    backdrop-filter: blur(6px);
    border-bottom-color: rgba(255,255,255,0.08) !important;
    box-shadow: none !important;
}

.header-over-hero .nav-link,
.header-over-hero .logo-text { color: var(--white); }
.header-over-hero .logo-text span { color: rgba(165, 180, 252, 1); }
.header-over-hero .nav-phone { color: rgba(255,255,255,0.9); }
.header-over-hero .hamburger { color: var(--white); }

/* Parallax offset drives .page-hero::before translate */
.page-hero::before {
    transform: scale(1.08) translateY(var(--parallax-offset, 0px));
}


/* The nav inner wrapper — full width with horizontal padding */
.nav-wrapper {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: var(--nav-height);
    width: 100%;
    padding: 0 3rem;
    gap: 2rem;
}

/* LOGO */
.logo {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    flex-shrink: 0;
    text-decoration: none;
}

.logo-img {
    height: 48px;
    width: auto;
    object-fit: contain;
}

.logo-text {
    font-family: var(--font-display);
    font-size: 1.25rem;
    font-weight: 800;
    letter-spacing: -0.03em;
    color: var(--text-primary);
    line-height: 1;
}

.logo-text span { color: var(--accent); }

/* DESKTOP NAV LINKS — centered */
.nav-menu {
    display: flex;
    align-items: center;
    gap: 0.25rem;
    list-style: none;
    flex: 1;
    justify-content: center;
}

.nav-link {
    position: relative;
    font-family: var(--font-body);
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--text-body);
    padding: 0.5rem 0.85rem;
    border-radius: 6px;
    transition: color var(--transition), background-color var(--transition);
    white-space: nowrap;
}

.nav-link:hover {
    color: var(--accent);
    background-color: var(--accent-light);
}

.nav-link.active {
    color: var(--accent);
    font-weight: 600;
    background-color: var(--accent-light);
}

/* Active dot under link */
.nav-link::after {
    content: '';
    position: absolute;
    bottom: 4px;
    left: 50%;
    transform: translateX(-50%) scale(0);
    width: 4px;
    height: 4px;
    background-color: var(--accent);
    border-radius: 50%;
    transition: transform var(--transition);
}

.nav-link.active::after {
    transform: translateX(-50%) scale(1);
}

/* NAV RIGHT: phone + CTA */
.nav-actions {
    display: flex;
    align-items: center;
    gap: 1rem;
    flex-shrink: 0;
}

.nav-phone {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--text-primary);
    white-space: nowrap;
}

.nav-phone i { color: var(--accent); font-size: 0.9rem; }

.hamburger {
    display: none;
    background: none;
    border: none;
    font-size: 1.5rem;
    color: var(--text-primary);
    cursor: pointer;
    padding: 0.5rem;
    border-radius: 8px;
    transition: background-color var(--transition);
}

.hamburger:hover { background-color: var(--off-white); }

/* ── MOBILE OVERLAY MENU ───────────────────────────────── */
.mobile-overlay {
    position: fixed;
    top: var(--nav-height);
    left: 0;
    width: 100%;
    background-color: var(--white);
    border-bottom: 1px solid var(--border);
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 999;
    box-shadow: 0 10px 40px rgba(0,0,0,0.08);
}

.mobile-overlay.open { max-height: 600px; }

.mobile-nav-list {
    list-style: none;
    padding: 1.5rem 2rem 2rem 2rem;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.mobile-nav-link {
    font-family: var(--font-body);
    font-size: 1rem;
    font-weight: 600;
    color: var(--text-primary);
    display: block;
    padding: 0.75rem 1rem;
    border-radius: 8px;
    transition: background-color var(--transition), color var(--transition);
}

.mobile-nav-link:hover,
.mobile-nav-link.active {
    color: var(--accent);
    background-color: var(--accent-light);
}

.mobile-nav-divider {
    height: 1px;
    background-color: var(--border);
    margin: 0.75rem 0;
}

.mobile-nav-cta { margin-top: 0.5rem; width: 100%; }

/* ── HERO ───────────────────────────────────────────────── */
.hero {
    min-height: 90vh;
    display: flex;
    align-items: center;
    padding-top: calc(var(--nav-height) + 60px);
    padding-bottom: 80px;
    background-color: var(--white);
    position: relative;
    overflow: hidden;
}

/* Two column hero layout (text + image) */
.hero-split {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: center;
}

.hero-bg-blobs {
    position: absolute;
    inset: 0;
    z-index: 0;
    pointer-events: none;
    overflow: hidden;
}

.hero-blob {
    position: absolute;
    width: 600px;
    height: 600px;
    border-radius: 50%;
    filter: blur(130px);
    opacity: 0.1;
    animation: floatBlob 10s ease-in-out infinite alternate;
}

.hero-blob-1 {
    background: radial-gradient(circle, var(--accent) 0%, transparent 70%);
    top: -15%;
    left: -10%;
}

.hero-blob-2 {
    background: radial-gradient(circle, #8B5CF6 0%, transparent 70%);
    bottom: -10%;
    right: -5%;
    animation-delay: -5s;
}

@keyframes floatBlob {
    0%   { transform: translate(0, 0) scale(1); }
    100% { transform: translate(50px, 30px) scale(1.12); }
}

.hero-content { position: relative; z-index: 1; }
.hero-center { text-align: center; max-width: 900px; margin: 0 auto; }

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--accent);
    background-color: var(--accent-light);
    border: 1px solid rgba(79,70,229,0.15);
    padding: 0.4rem 1.1rem;
    border-radius: 50px;
    margin-bottom: 2rem;
}

.hero-title { margin-bottom: 1.5rem; }
.hero-title span { color: var(--accent); }

.hero-subtitle {
    font-size: 1.1rem;
    color: var(--text-body);
    max-width: 780px;
    margin-bottom: 2.5rem;
    line-height: 1.8;
}

.hero-center .hero-subtitle { margin-left: auto; margin-right: auto; }

.hero-ctas { display: flex; gap: 1.25rem; margin-bottom: 3.5rem; flex-wrap: wrap; }
.hero-center .hero-ctas { justify-content: center; }

.hero-trust {
    display: flex;
    align-items: center;
    gap: 2rem;
    border-top: 1px solid var(--border);
    padding-top: 2rem;
    flex-wrap: wrap;
}

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

.trust-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--text-primary);
}
.trust-item i { color: var(--success); }

/* Hero image column */
.hero-image-col {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-main-img {
    width: 100%;
    border-radius: 20px;
    box-shadow: 0 24px 80px rgba(79,70,229,0.15);
    object-fit: cover;
    max-height: 500px;
}

.hero-floating-badge {
    position: absolute;
    bottom: -1.5rem;
    left: -1.5rem;
    background-color: var(--white);
    border: 1px solid var(--border);
    border-radius: 12px;
    padding: 1rem 1.5rem;
    box-shadow: var(--shadow-hover);
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.hero-floating-badge-icon {
    width: 44px;
    height: 44px;
    border-radius: 10px;
    background-color: var(--accent-light);
    color: var(--accent);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    flex-shrink: 0;
}

.hero-floating-badge-text strong {
    display: block;
    font-size: 1.25rem;
    font-family: var(--font-display);
    font-weight: 800;
    color: var(--accent);
    line-height: 1;
}

.hero-floating-badge-text span {
    font-size: 0.75rem;
    color: var(--text-muted);
    font-weight: 500;
}

/* ── STATS ──────────────────────────────────────────────── */
.about-stats {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.25rem;
}

.stat-card {
    background-color: var(--white);
    border: 1px solid var(--border);
    border-radius: 12px;
    padding: 1.75rem;
    text-align: center;
    box-shadow: var(--shadow-card);
    transition: box-shadow var(--transition), transform var(--transition);
}

.stat-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-hover); }

.stat-number {
    font-family: var(--font-display);
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--accent);
    line-height: 1;
    margin-bottom: 0.5rem;
}

.stat-label { font-size: 0.875rem; font-weight: 600; color: var(--text-body); }

/* ── ABOUT / TEAM ───────────────────────────────────────── */
.about-card {
    background-color: var(--white);
    border: 1px solid var(--border);
    border-radius: 12px;
    padding: 2.5rem;
    height: 100%;
    box-shadow: var(--shadow-card);
}

.about-card-icon { font-size: 2rem; color: var(--accent); margin-bottom: 1.25rem; }

.inspiration-card {
    grid-column: span 2;
    background: linear-gradient(135deg, var(--accent-light) 0%, var(--white) 100%);
    border: 1px solid rgba(79,70,229,0.15);
}

.inspiration-quote {
    font-style: italic;
    border-left: 4px solid var(--accent);
    padding-left: 1.5rem;
    margin: 1.5rem 0;
    color: var(--text-primary);
    font-size: 1.05rem;
}

.inspiration-avatar-box { display: flex; align-items: center; gap: 1.25rem; margin-top: 2rem; }

.inspiration-avatar {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background-color: var(--accent);
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    flex-shrink: 0;
}

/* PREMIUM TEAM CARD with real photos */
.team-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 2rem; }

.team-card {
    background-color: var(--white);
    border: 1px solid var(--border);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: var(--shadow-card);
    transition: transform var(--transition), box-shadow var(--transition);
}

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

/* Photo area */
.team-photo-wrap {
    width: 100%;
    height: 320px;
    overflow: hidden;
    background-color: var(--off-white);
    position: relative;
}

.team-photo-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top center;
    transition: transform 0.5s ease;
}

.team-card:hover .team-photo-wrap img { transform: scale(1.04); }

.team-photo-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(15,23,42,0.6) 0%, transparent 50%);
}

/* Info area */
.team-info {
    padding: 2rem;
    text-align: left;
}

.team-role-badge {
    display: inline-block;
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--accent);
    background-color: var(--accent-light);
    padding: 0.2rem 0.75rem;
    border-radius: 50px;
    margin-bottom: 0.75rem;
}

.team-name {
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
    color: var(--text-primary);
}

.team-bio { font-size: 0.9rem; color: var(--text-body); line-height: 1.7; margin-bottom: 0; }

/* Social icons on team card */
.team-socials {
    display: flex;
    gap: 0.75rem;
    margin-top: 1.25rem;
}

.team-social-btn {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background-color: var(--off-white);
    color: var(--text-muted);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.9rem;
    transition: background-color var(--transition), color var(--transition);
    border: 1px solid var(--border);
}

.team-social-btn:hover { background-color: var(--accent); color: var(--white); border-color: var(--accent); }

/* Fallback icon avatar (if no photo) */
.team-avatar {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    background-color: var(--accent-light);
    color: var(--accent);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
    margin: 0 auto 1.5rem auto;
}

/* ── SERVICES ───────────────────────────────────────────── */
.service-card {
    background-color: var(--white);
    border: 1px solid var(--border);
    border-radius: 12px;
    padding: 2.5rem 2rem;
    box-shadow: var(--shadow-card);
    transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
    display: flex;
    flex-direction: column;
    height: 100%;
}

.service-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-hover);
    border-color: rgba(79,70,229,0.25);
}

.service-icon {
    width: 60px;
    height: 60px;
    border-radius: 14px;
    background-color: var(--accent-light);
    color: var(--accent);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
}

.service-card h3 { margin-bottom: 1rem; }
.service-card p { font-size: 0.95rem; color: var(--text-body); margin-bottom: auto; }

.tag-pills {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-top: 1.5rem;
    padding-top: 1.25rem;
    border-top: 1px solid var(--border);
}

.tag-pill {
    font-size: 0.73rem;
    background-color: var(--off-white);
    color: var(--text-body);
    padding: 0.25rem 0.7rem;
    border-radius: 50px;
    font-weight: 500;
    border: 1px solid var(--border);
}

/* Services + image split section */
.services-image-section {
    border-radius: 20px;
    overflow: hidden;
    height: 420px;
    position: relative;
}

.services-image-section img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.services-image-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(79,70,229,0.85) 0%, rgba(55,48,163,0.65) 100%);
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-end;
    padding: 3rem;
    color: var(--white);
}

.services-image-overlay h3 {
    color: var(--white);
    font-size: 1.75rem;
    margin-bottom: 1rem;
}

.services-image-overlay p {
    color: rgba(255,255,255,0.9);
    margin-bottom: 1.5rem;
    font-size: 1rem;
}

/* ── PORTFOLIO ──────────────────────────────────────────── */
.portfolio-filter {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 0.75rem;
    margin-bottom: 3rem;
}

.filter-btn {
    padding: 0.5rem 1.5rem;
    border-radius: 50px;
    font-family: var(--font-body);
    font-weight: 600;
    font-size: 0.9rem;
    background-color: var(--off-white);
    color: var(--text-body);
    border: 1px solid var(--border);
    cursor: pointer;
    transition: all var(--transition);
}

.filter-btn.active, .filter-btn:hover {
    background-color: var(--accent);
    color: var(--white);
    border-color: var(--accent);
    box-shadow: var(--shadow-button);
}

.case-card {
    background-color: var(--white);
    border: 1px solid var(--border);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--shadow-card);
    transition: transform var(--transition), box-shadow var(--transition);
    display: flex;
    flex-direction: column;
}

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

.case-image-mockup {
    height: 220px;
    background: linear-gradient(135deg, var(--accent) 0%, #8B5CF6 100%);
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 3rem;
}

.case-image-mockup-hotel    { background: linear-gradient(135deg, #3B82F6 0%, #10B981 100%); }
.case-image-mockup-ecommerce{ background: linear-gradient(135deg, #EC4899 0%, var(--accent) 100%); }
.case-image-mockup-corporate{ background: linear-gradient(135deg, #1E293B 0%, #475569 100%); }

.case-badge {
    position: absolute;
    top: 1rem;
    left: 1rem;
    background-color: rgba(255,255,255,0.92);
    color: var(--text-primary);
    padding: 0.25rem 0.75rem;
    border-radius: 50px;
    font-size: 0.73rem;
    font-weight: 700;
    text-transform: uppercase;
}

.case-content { padding: 2rem; display: flex; flex-direction: column; flex-grow: 1; }
.case-title { font-size: 1.25rem; font-weight: 700; margin-bottom: 0.5rem; }
.case-desc { font-size: 0.9rem; color: var(--text-body); margin-bottom: 1.5rem; }
.case-link { margin-top: auto; font-weight: 600; font-size: 0.9rem; display: inline-flex; align-items: center; gap: 0.5rem; }

/* ── INDUSTRIES ─────────────────────────────────────────── */
.industry-card {
    background-color: var(--white);
    border: 1px solid var(--border);
    border-radius: 12px;
    padding: 2rem;
    box-shadow: var(--shadow-card);
    transition: transform var(--transition), box-shadow var(--transition);
    text-align: center;
}

.industry-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-hover); }
.industry-icon { font-size: 2.5rem; color: var(--accent); margin-bottom: 1.25rem; }
.industry-card h3 { font-size: 1.2rem; margin-bottom: 0.5rem; }
.industry-card p { font-size: 0.875rem; margin-bottom: 0; }

/* ── WHY CHOOSE US ──────────────────────────────────────── */
.why-us-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 2rem; }

.why-us-item {
    background-color: var(--white);
    border: 1px solid var(--border);
    border-radius: 12px;
    padding: 2rem 1.5rem;
    text-align: center;
    box-shadow: var(--shadow-card);
    transition: transform var(--transition), box-shadow var(--transition);
}

.why-us-item:hover { transform: translateY(-4px); box-shadow: var(--shadow-hover); }

.why-us-icon {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    background-color: rgba(16, 185, 129, 0.1);
    color: var(--success);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    margin: 0 auto 1.25rem auto;
}

.why-us-item h3 { font-size: 1.1rem; font-weight: 700; margin-bottom: 0.5rem; }
.why-us-item p { font-size: 0.875rem; color: var(--text-body); margin-bottom: 0; line-height: 1.6; }

/* ── PROCESS TIMELINE ───────────────────────────────────── */
.process-timeline {
    position: relative;
    display: flex;
    justify-content: space-between;
    gap: 1.5rem;
    margin-top: 4rem;
}

.process-timeline::before {
    content: '';
    position: absolute;
    top: 35px;
    left: 50px;
    right: 50px;
    height: 2px;
    background-image: linear-gradient(to right, var(--accent) 50%, transparent 0%);
    background-size: 12px 2px;
    background-repeat: repeat-x;
    z-index: 0;
}

.process-step {
    position: relative;
    z-index: 1;
    flex: 1;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.process-number {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    background-color: var(--white);
    border: 2px dashed var(--accent);
    color: var(--accent);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-display);
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    box-shadow: var(--shadow-card);
    transition: transform var(--transition), background-color var(--transition), color var(--transition), border-style var(--transition);
}

.process-step:hover .process-number {
    transform: scale(1.1);
    background-color: var(--accent);
    color: var(--white);
    border-style: solid;
}

.process-title { font-family: var(--font-display); font-size: 1rem; color: var(--text-primary); margin-bottom: 0.5rem; font-weight: 700; }
.process-desc { font-size: 0.825rem; color: var(--text-body); line-height: 1.5; }

/* ── PRICING ────────────────────────────────────────────── */
.pricing-card {
    background-color: var(--white);
    border: 1px solid var(--border);
    border-radius: 16px;
    padding: 2.5rem 2rem;
    box-shadow: var(--shadow-card);
    display: flex;
    flex-direction: column;
    transition: transform var(--transition), box-shadow var(--transition);
    height: 100%;
}

.pricing-card:hover { transform: scale(1.02); box-shadow: var(--shadow-hover); }

.pricing-card.featured {
    background-color: var(--accent);
    border: none;
    box-shadow: 0 10px 40px rgba(79,70,229,0.25);
    position: relative;
}

.pricing-card.featured .pricing-title,
.pricing-card.featured .pricing-subtitle,
.pricing-card.featured .pricing-price,
.pricing-card.featured .pricing-features li { color: var(--white); }
.pricing-card.featured .pricing-features i { color: #6EE7B7; }
.pricing-card.featured .btn-pricing { background-color: var(--white); color: var(--accent); box-shadow: none; }
.pricing-card.featured .btn-pricing:hover { background-color: var(--accent-light); }

.popular-badge {
    position: absolute;
    top: -14px;
    left: 50%;
    transform: translateX(-50%);
    background-color: var(--success);
    color: var(--white);
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    padding: 0.25rem 1rem;
    border-radius: 50px;
    letter-spacing: 0.06em;
    box-shadow: 0 2px 10px rgba(16,185,129,0.3);
}

.pricing-title { font-size: 1.4rem; font-weight: 700; margin-bottom: 0.25rem; }
.pricing-subtitle { font-size: 0.85rem; color: var(--text-muted); margin-bottom: 2rem; line-height: 1.5; }

.pricing-price {
    font-size: 2.5rem;
    font-family: var(--font-display);
    font-weight: 800;
    color: var(--text-primary);
    margin-bottom: 2rem;
    line-height: 1;
}

.pricing-features { list-style: none; display: flex; flex-direction: column; gap: 0.85rem; margin-bottom: 2rem; }
.pricing-features li { font-size: 0.9rem; display: flex; align-items: center; gap: 0.75rem; color: var(--text-body); }
.pricing-features i { color: var(--success); flex-shrink: 0; }

.btn-pricing { margin-top: auto; width: 100%; }
.pricing-disclaimer { text-align: center; color: var(--text-muted); margin-top: 3rem; font-size: 0.9rem; }

/* ── PRICING CALCULATOR ─────────────────────────────────── */
.calculator-box {
    background-color: var(--white);
    border: 1px solid var(--border);
    border-radius: 16px;
    box-shadow: var(--shadow-card);
    padding: 3rem;
    max-width: 960px;
    margin: 4rem auto 0 auto;
}

.calc-title-box { text-align: center; margin-bottom: 2.5rem; }

.calc-grid { display: grid; grid-template-columns: 6fr 4fr; gap: 3rem; }

.calc-control-group { margin-bottom: 2rem; }

.calc-label {
    display: flex;
    justify-content: space-between;
    font-family: var(--font-body);
    font-size: 0.9rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 0.75rem;
}

.calc-range-slider {
    width: 100%;
    height: 6px;
    background-color: var(--border);
    outline: none;
    border-radius: 10px;
    -webkit-appearance: none;
    appearance: none;
}

.calc-range-slider::-webkit-slider-thumb {
    -webkit-appearance: none;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background-color: var(--accent);
    cursor: pointer;
    box-shadow: 0 0 10px rgba(79,70,229,0.3);
}

.calc-checkbox-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1rem; }

.calc-checkbox-label {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 0.875rem;
    font-weight: 500;
    cursor: pointer;
    color: var(--text-body);
}

.calc-checkbox-input { width: 18px; height: 18px; accent-color: var(--accent); cursor: pointer; }
.calc-radio-group { display: flex; gap: 1.5rem; flex-wrap: wrap; }

.calc-summary-panel {
    background-color: var(--accent-light);
    border-radius: 16px;
    padding: 2.5rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    border: 1px solid rgba(79,70,229,0.1);
}

.calc-sum-title {
    font-size: 0.8rem;
    font-weight: 700;
    color: var(--accent-dark);
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin-bottom: 1rem;
}

.calc-sum-price {
    font-family: var(--font-display);
    font-size: 3rem;
    font-weight: 800;
    color: var(--accent);
    line-height: 1;
    margin-bottom: 0.5rem;
}

.calc-sum-disclaimer { font-size: 0.75rem; color: var(--text-body); margin-bottom: 2rem; }

/* ── CONTACT ────────────────────────────────────────────── */
.contact-grid {
    display: grid;
    grid-template-columns: 4fr 6fr;
    background-color: var(--white);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 12px 40px rgba(0,0,0,0.06);
    border: 1px solid var(--border);
}

.contact-info-panel {
    background: linear-gradient(160deg, var(--accent) 0%, var(--accent-dark) 100%);
    color: var(--white);
    padding: 4rem 3rem;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.contact-info-panel h2 { color: var(--white); margin-bottom: 0.75rem; font-size: 1.6rem; }
.contact-info-panel > div > p { color: rgba(255,255,255,0.8); font-size: 0.95rem; margin-bottom: 2.5rem; }

.contact-details { list-style: none; display: flex; flex-direction: column; gap: 1.75rem; margin-bottom: 3rem; }

.contact-detail-item { display: flex; align-items: flex-start; gap: 1rem; }
.contact-detail-icon { font-size: 1.1rem; color: rgba(255,255,255,0.6); flex-shrink: 0; margin-top: 0.3rem; }
.contact-detail-content h4 { color: var(--white); font-size: 0.85rem; font-weight: 600; margin-bottom: 0.2rem; font-family: var(--font-body); text-transform: uppercase; letter-spacing: 0.05em; opacity: 0.75; }
.contact-detail-content p,
.contact-detail-content a { color: rgba(255,255,255,0.9); font-size: 0.9rem; margin-bottom: 0; font-weight: 500; }
.contact-detail-content a:hover { color: var(--white); text-decoration: underline; }

.social-row { display: flex; gap: 0.75rem; }

.social-link {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background-color: rgba(255,255,255,0.12);
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    transition: background-color var(--transition), transform var(--transition);
}

.social-link:hover { background-color: var(--white); color: var(--accent); transform: translateY(-3px); }

.contact-form-panel { padding: 4rem 3rem; position: relative; }
.form-heading { font-size: 1.6rem; margin-bottom: 0.5rem; }
.form-text { color: var(--text-body); margin-bottom: 2rem; font-size: 0.9rem; }

.form-group { margin-bottom: 1.25rem; }
.form-row { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1.25rem; }

.form-label { display: block; font-size: 0.825rem; font-weight: 600; color: var(--text-primary); margin-bottom: 0.4rem; }

.form-control {
    width: 100%;
    font-family: var(--font-body);
    font-size: 0.9rem;
    padding: 0.7rem 1rem;
    border: 1.5px solid var(--border);
    border-radius: 8px;
    color: var(--text-primary);
    background-color: var(--off-white);
    transition: border-color var(--transition), background-color var(--transition);
}

.form-control:focus { outline: none; border-color: var(--accent); background-color: var(--white); }
textarea.form-control { resize: vertical; min-height: 110px; }

.form-error { color: #EF4444; font-size: 0.78rem; margin-top: 0.25rem; display: none; }

.contact-success {
    position: absolute;
    inset: 0;
    background-color: var(--white);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 3rem;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.4s ease;
    z-index: 5;
}

.contact-success.show { opacity: 1; pointer-events: auto; }

.success-icon {
    font-size: 4rem;
    color: var(--success);
    margin-bottom: 1.5rem;
    animation: scaleCheck 0.5s ease-out;
}

@keyframes scaleCheck {
    0%   { transform: scale(0); }
    70%  { transform: scale(1.2); }
    100% { transform: scale(1); }
}

.contact-success h3 { font-size: 1.6rem; margin-bottom: 1rem; }
.contact-success p { color: var(--text-body); max-width: 420px; font-size: 0.95rem; line-height: 1.6; }

.map-mockup {
    margin-top: 4rem;
    border: 1px solid var(--border);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: var(--shadow-card);
    height: 320px;
    background-color: var(--off-white);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 2rem;
}

.map-mockup-icon { font-size: 3rem; color: var(--accent); margin-bottom: 1.5rem; }

/* ── FAQ ACCORDION ──────────────────────────────────────── */
.faq-grid { max-width: 800px; margin: 0 auto; display: flex; flex-direction: column; gap: 1rem; }

.faq-item {
    background-color: var(--white);
    border: 1px solid var(--border);
    border-radius: 10px;
    overflow: hidden;
}

.faq-question {
    padding: 1.25rem 1.5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    font-weight: 700;
    color: var(--text-primary);
    background: none;
    border: none;
    width: 100%;
    text-align: left;
    font-family: var(--font-display);
    font-size: 1rem;
    gap: 1rem;
}

.faq-question i { color: var(--accent); transition: transform var(--transition); flex-shrink: 0; }
.faq-item.active .faq-question i { transform: rotate(180deg); }

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.35s ease;
    background-color: var(--off-white);
}

.faq-answer-inner {
    padding: 1.25rem 1.5rem;
    font-size: 0.925rem;
    color: var(--text-body);
    border-top: 1px solid var(--border);
    line-height: 1.7;
}

/* ── CTA BANNER ─────────────────────────────────────────── */
.cta-banner-card {
    background: linear-gradient(135deg, var(--accent) 0%, var(--accent-dark) 100%);
    color: var(--white);
    border-radius: 20px;
    padding: 5rem 3rem;
    text-align: center;
    box-shadow: 0 16px 50px rgba(79,70,229,0.3);
    position: relative;
    overflow: hidden;
}

.cta-banner-card::before {
    content: '';
    position: absolute;
    width: 400px;
    height: 400px;
    border-radius: 50%;
    background: rgba(255,255,255,0.05);
    top: -150px;
    right: -100px;
}

.cta-banner-card h2 { color: var(--white); margin-bottom: 1rem; font-size: 2.25rem; position: relative; }
.cta-banner-card p { color: rgba(255,255,255,0.88); max-width: 600px; margin: 0 auto 2.5rem auto; font-size: 1.05rem; position: relative; }

/* ═══════════════════════════════════════════════════════════
   REDESIGNED FOOTER — FULL WIDTH, PREMIUM DARK
═══════════════════════════════════════════════════════════ */
.footer {
    background-color: #070D1A;
    color: var(--white);
    padding: 0;
}

.footer-top {
    padding: 80px 3rem 60px 3rem;
    display: grid;
    grid-template-columns: 5fr 3fr 4fr;
    gap: 4rem;
    border-bottom: 1px solid rgba(255,255,255,0.07);
}

.footer-brand {}

.footer-logo-img {
    height: 64px;
    width: auto;
    object-fit: contain;
    background-color: var(--white);
    padding: 6px 10px;
    border-radius: 10px;
    margin-bottom: 1.5rem;
}

.footer-tagline {
    font-family: var(--font-display);
    font-size: 1.05rem;
    font-weight: 600;
    color: rgba(255,255,255,0.85);
    margin-bottom: 0.75rem;
}

.footer-desc {
    color: var(--text-muted);
    font-size: 0.9rem;
    line-height: 1.7;
    margin-bottom: 1.75rem;
}

.footer-social-row { display: flex; gap: 0.75rem; }

.footer-social-btn {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    border: 1px solid rgba(255,255,255,0.12);
    color: var(--text-muted);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    transition: border-color var(--transition), color var(--transition), background-color var(--transition);
}

.footer-social-btn:hover {
    border-color: var(--accent);
    color: var(--white);
    background-color: var(--accent);
}

.footer-heading {
    color: var(--white);
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    position: relative;
    padding-bottom: 0.75rem;
}

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

.footer-links { list-style: none; display: flex; flex-direction: column; gap: 0.7rem; }

.footer-link-item a {
    color: var(--text-muted);
    font-size: 0.9rem;
    transition: color var(--transition), padding-left var(--transition);
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.footer-link-item a::before {
    content: '→';
    font-size: 0.75rem;
    opacity: 0;
    transition: opacity var(--transition), transform var(--transition);
    transform: translateX(-8px);
}

.footer-link-item a:hover { color: var(--white); }
.footer-link-item a:hover::before { opacity: 1; transform: translateX(0); }

.footer-contact { list-style: none; display: flex; flex-direction: column; gap: 1.1rem; }

.footer-contact-item { display: flex; align-items: flex-start; gap: 0.85rem; color: var(--text-muted); font-size: 0.875rem; }
.footer-contact-item i { color: var(--accent); margin-top: 0.2rem; flex-shrink: 0; }
.footer-contact-item a { color: var(--text-muted); }
.footer-contact-item a:hover { color: var(--accent); }

.footer-bottom {
    padding: 1.5rem 3rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.footer-copyright { font-size: 0.825rem; color: rgba(255,255,255,0.3); }
.footer-designer { font-size: 0.825rem; color: rgba(255,255,255,0.3); }
.footer-designer span { color: var(--accent); font-weight: 600; }

/* ── FULL-SCREEN PAGE HERO (Inner Pages) ────────────────── */
/*
   Usage: <section class="page-hero page-hero--services">
          Add .page-hero--about, --services, --pricing, etc.
*/
.page-hero {
    position: relative;
    min-height: 60vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding-top: calc(var(--nav-height) + 80px);
    padding-bottom: 80px;
    overflow: hidden;
    background-color: #0F172A; /* fallback */
}

/* Background image layer */
.page-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: var(--hero-bg, none);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    transform: scale(1.08);
    transition: transform 0.1s linear;
    will-change: transform;
}

/* Dark gradient overlay */
.page-hero::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to bottom,
        rgba(10, 16, 40, 0.72) 0%,
        rgba(10, 16, 40, 0.62) 50%,
        rgba(10, 16, 40, 0.82) 100%
    );
    z-index: 1;
}

/* Content sits above overlay */
.page-hero .container { position: relative; z-index: 2; }

/* Text colors for dark hero */
.page-hero .hero-title,
.page-hero .hero-title span { color: var(--white); }
.page-hero .hero-subtitle { color: rgba(255, 255, 255, 0.85); }
.page-hero .eyebrow {
    background-color: rgba(255, 255, 255, 0.15);
    color: rgba(255, 255, 255, 0.95);
    border: 1px solid rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(8px);
}

/* Accent colored span in title on dark bg */
.page-hero .hero-title .accent-word { color: #A5B4FC; }

/* Individual page background images */
.page-hero--home    { --hero-bg: url('../assets/hero_home_bg.png'); }
.page-hero--about   { --hero-bg: url('../assets/about_office.png'); }
.page-hero--services{ --hero-bg: url('../assets/services_mockup.png'); }
.page-hero--pricing { --hero-bg: url('../assets/team_working.png'); }
.page-hero--portfolio{ --hero-bg: url('../assets/hero_workspace.png'); }
.page-hero--industries{ --hero-bg: url('../assets/services_mockup.png'); background-position: right center; }
.page-hero--why     { --hero-bg: url('../assets/about_office.png'); background-position: center 30%; }
.page-hero--contact { --hero-bg: url('../assets/hero_inner_bg.png'); }

/* Breadcrumb trail inside hero */
.hero-breadcrumb {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.8rem;
    font-weight: 500;
    color: rgba(255,255,255,0.6);
    margin-bottom: 1.5rem;
    flex-wrap: wrap;
}
.hero-breadcrumb a { color: rgba(255,255,255,0.6); transition: color var(--transition); }
.hero-breadcrumb a:hover { color: var(--white); }
.hero-breadcrumb .sep { opacity: 0.5; }
.hero-breadcrumb .current { color: rgba(255,255,255,0.95); font-weight: 600; }

/* Hero scroll-down indicator */
.hero-scroll-indicator {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    z-index: 3;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    color: rgba(255,255,255,0.5);
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    cursor: pointer;
}

.hero-scroll-indicator .scroll-arrow {
    width: 32px;
    height: 32px;
    border: 1px solid rgba(255,255,255,0.25);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.8rem;
    animation: bounceDown 1.8s ease-in-out infinite;
}

@keyframes bounceDown {
    0%, 100% { transform: translateY(0); opacity: 0.6; }
    50%       { transform: translateY(6px); opacity: 1; }
}

/* ── PARALLAX SCROLL EFFECTS ────────────────────────────── */
/* Sections that move at different speed on scroll */
.parallax-section {
    position: relative;
    overflow: hidden;
}

.parallax-section .parallax-bg {
    position: absolute;
    inset: -15%;
    background-size: cover;
    background-position: center;
    will-change: transform;
    transition: transform 0.1s linear;
    z-index: 0;
}

.parallax-section > .container { position: relative; z-index: 1; }

/* ── SCROLL REVEAL CLASSES ──────────────────────────────── */
/* Elements fade/slide in as they enter the viewport.
   Applied via JS by adding .in-view class */
.reveal {
    opacity: 0;
    transition: opacity 0.7s ease, transform 0.7s cubic-bezier(0.22, 1, 0.36, 1);
}

.reveal.from-bottom { transform: translateY(40px); }
.reveal.from-left   { transform: translateX(-40px); }
.reveal.from-right  { transform: translateX(40px); }
.reveal.from-scale  { transform: scale(0.92); }
.reveal.in-view     { opacity: 1; transform: none; }

.reveal.delay-1 { transition-delay: 0.1s; }
.reveal.delay-2 { transition-delay: 0.2s; }
.reveal.delay-3 { transition-delay: 0.35s; }
.reveal.delay-4 { transition-delay: 0.5s; }

/* ── STICKY PROGRESS BAR ────────────────────────────────── */
#scroll-progress-bar {
    position: fixed;
    top: var(--nav-height);
    left: 0;
    width: 0%;
    height: 3px;
    background: linear-gradient(90deg, var(--accent), #8B5CF6, var(--accent));
    background-size: 200% 100%;
    z-index: 1001;
    transition: width 0.1s linear;
    animation: progressShimmer 2s linear infinite;
}

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

/* ── STICKY SIDEBAR/FLOATING ELEMENTS ───────────────────── */
.sticky-cta-float {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    z-index: 900;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.4s ease, transform 0.4s ease;
    pointer-events: none;
}

.sticky-cta-float.visible {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
}

.sticky-cta-btn {
    width: 54px;
    height: 54px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    color: var(--white);
    box-shadow: 0 6px 24px rgba(0,0,0,0.18);
    transition: transform var(--transition), box-shadow var(--transition);
    cursor: pointer;
    text-decoration: none;
}

.sticky-cta-btn:hover {
    transform: scale(1.12) translateY(-2px);
    box-shadow: 0 10px 32px rgba(0,0,0,0.25);
    color: var(--white);
}

.sticky-cta-btn.whatsapp { background-color: #25D366; }
.sticky-cta-btn.call     { background-color: var(--accent); }
.sticky-cta-btn.scroll-top { background-color: rgba(15,23,42,0.7); backdrop-filter: blur(8px); }

/* ── NUMBER COUNTER ANIMATION ───────────────────────────── */
.count-up { display: inline-block; }

/* ── SECTION DIVIDERS ───────────────────────────────────── */
.wave-divider {
    position: relative;
    overflow: hidden;
    line-height: 0;
}

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

/* ── TYPEWRITER EFFECT ──────────────────────────────────── */
.typewriter-text::after {
    content: '|';
    animation: blink 0.85s step-end infinite;
    color: var(--accent);
}

@keyframes blink {
    0%, 100% { opacity: 1; }
    50%       { opacity: 0; }
}

/* ── FLOATING CARDS ANIMATION ───────────────────────────── */
.float-card {
    animation: floatCard 4s ease-in-out infinite;
}
.float-card:nth-child(2) { animation-delay: -2s; }

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

/* ── GLOW ON HOVER ──────────────────────────────────────── */
.glow-on-hover {
    transition: box-shadow var(--transition);
}
.glow-on-hover:hover {
    box-shadow: 0 0 24px rgba(79, 70, 229, 0.4);
}

/* ── SCROLL SNAP (for sticky-scroll sections) ───────────── */
.scroll-snap-container {
    scroll-snap-type: y mandatory;
    overflow-y: scroll;
    height: 100vh;
}

.scroll-snap-section {
    scroll-snap-align: start;
    min-height: 100vh;
    display: flex;
    align-items: center;
}

/* ── ANIMATED GRADIENT TEXT ─────────────────────────────── */
.gradient-text {
    background: linear-gradient(135deg, var(--accent) 0%, #8B5CF6 50%, var(--accent) 100%);
    background-size: 200% auto;
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: gradientFlow 3s linear infinite;
}

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

/* ── HORIZONTAL MARQUEE (scrolling tech strip) ──────────── */
.marquee-wrapper {
    overflow: hidden;
    background: var(--off-white);
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
    padding: 1.5rem 0;
}

.marquee-track {
    display: flex;
    gap: 3rem;
    width: max-content;
    animation: marqueeScroll 30s linear infinite;
}

.marquee-wrapper:hover .marquee-track {
    animation-play-state: paused;
}

.marquee-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--text-body);
    white-space: nowrap;
}

.marquee-item i { color: var(--accent); font-size: 1rem; }

@keyframes marqueeScroll {
    from { transform: translateX(0); }
    to   { transform: translateX(-50%); }
}

/* ── SECTION ENTRANCE ───────────────────────────────────── */
@keyframes slideUp {
    from { opacity: 0; transform: translateY(30px); }
    to   { opacity: 1; transform: none; }
}

@keyframes fadeIn {
    from { opacity: 0; }
    to   { opacity: 1; }
}

/* ── PROFESSIONAL IMAGE COMPONENTS ──────────────────────── */
.img-rounded { border-radius: 16px; overflow: hidden; box-shadow: var(--shadow-hover); }

.img-hero-mockup {
    border-radius: 20px;
    box-shadow: 0 30px 100px rgba(79,70,229,0.2);
    width: 100%;
    object-fit: cover;
}

.img-full-section {
    width: 100%;
    height: 480px;
    object-fit: cover;
    border-radius: 16px;
}

/* Image with caption card */
.img-card {
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--shadow-card);
    border: 1px solid var(--border);
}

.img-card img {
    width: 100%;
    height: 240px;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.img-card:hover img { transform: scale(1.04); }
.img-card-body { padding: 1.25rem; }

/* ── RESPONSIVE ─────────────────────────────────────────── */
@media (max-width: 1280px) {
    .nav-wrapper { padding: 0 2rem; }
    .footer-top { padding: 60px 2rem 50px 2rem; }
    .footer-bottom { padding: 1.5rem 2rem; }
    .container-full { padding: 0 2rem; }
}

@media (max-width: 1100px) {
    h1 { font-size: 3rem; }
    .grid-4 { grid-template-columns: repeat(2, 1fr); }
    .why-us-grid { grid-template-columns: repeat(2, 1fr); }
    .hero-split { gap: 3rem; }
    .nav-menu { gap: 0; }
    .nav-link { font-size: 0.82rem; padding: 0.5rem 0.65rem; }
    .footer-top { grid-template-columns: 1fr 1fr; gap: 3rem; }
}

@media (max-width: 900px) {
    .hero-split { grid-template-columns: 1fr; }
    .hero-image-col { display: none; }
    .hero-center { text-align: center; }
    .grid-3 { grid-template-columns: repeat(2, 1fr); }
    .calc-grid { grid-template-columns: 1fr; gap: 2rem; }
    .contact-grid { grid-template-columns: 1fr; }
    .contact-info-panel { padding: 3rem 2rem; }
    .contact-form-panel { padding: 3rem 2rem; }
    .inspiration-card { grid-column: span 1; }
    .footer-top { grid-template-columns: 1fr; gap: 2.5rem; padding: 50px 2rem 40px 2rem; }
}

@media (max-width: 768px) {
    h1 { font-size: 2.5rem; }
    h2 { font-size: 1.85rem; }
    section { padding: 60px 0; }
    .hero { padding-top: calc(var(--nav-height) + 40px); padding-bottom: 60px; }

    /* HIDE desktop nav on mobile */
    .nav-menu { display: none; }
    .nav-phone { display: none; }
    .nav-actions .btn-primary { display: none; }
    .hamburger { display: block; }

    .grid-2 { grid-template-columns: 1fr; gap: 2.5rem; }
    .hero-ctas { flex-direction: column; align-items: center; }
    .hero-ctas .btn { width: 100%; max-width: 320px; }
    .hero-trust { flex-direction: column; align-items: flex-start; gap: 1rem; }
    .hero-center .hero-trust { align-items: center; }
    .team-grid { grid-template-columns: 1fr; }
    .about-stats { grid-template-columns: repeat(2, 1fr); }
    .footer-bottom { flex-direction: column; text-align: center; }
    .cta-banner-card { padding: 3.5rem 1.5rem; }

    /* Vertical timeline */
    .process-timeline { flex-direction: column; gap: 2.5rem; }
    .process-timeline::before { display: none; }
    .process-step { flex-direction: row; text-align: left; align-items: flex-start; gap: 1.25rem; }
    .process-number { margin-bottom: 0; flex-shrink: 0; width: 56px; height: 56px; font-size: 1.2rem; }
    .process-title { font-size: 1rem; }
}

@media (max-width: 576px) {
    .grid-3 { grid-template-columns: 1fr; }
    .grid-4 { grid-template-columns: 1fr; }
    .why-us-grid { grid-template-columns: 1fr; }
    .form-row { grid-template-columns: 1fr; gap: 0; }
    .about-stats { grid-template-columns: 1fr; }
    .calc-checkbox-grid { grid-template-columns: 1fr; }
    .calc-summary-panel { padding: 1.5rem; }
    .calc-sum-price { font-size: 2.5rem; }
    .nav-wrapper { padding: 0 1.25rem; }
    .footer-top { padding: 40px 1.25rem 30px 1.25rem; }
    .footer-bottom { padding: 1.25rem; }
}
