/* ============================================================
   Digital Kalki — Main Stylesheet
   Theme: Cream/Off-White + Deep Navy + Cyan/Blue Accent + Gold
   Fonts: Playfair Display (headings) + DM Sans (body)
   ============================================================ */

/* ---- CSS Variables ---- */
:root {
    --cream:        #FAF8F4;
    --cream-dark:   #F0EBE1;
    --navy:         #0D1B2A;
    --navy-mid:     #1A2E45;
    --navy-light:   #243650;
    --cyan:         #00B4D8;
    --cyan-dark:    #0096B5;
    --cyan-light:   #90E0EF;
    --gold:         #C9922A;
    --gold-light:   #E8B84B;
    --white:        #FFFFFF;
    --text-dark:    #1A1A2E;
    --text-mid:     #3D4A5C;
    --text-light:   #6B7A8D;
    --border:       #E2D9CC;
    --shadow-sm:    0 2px 12px rgba(13,27,42,0.08);
    --shadow-md:    0 8px 32px rgba(13,27,42,0.12);
    --shadow-lg:    0 20px 60px rgba(13,27,42,0.16);
    --radius-sm:    8px;
    --radius-md:    16px;
    --radius-lg:    24px;
    --radius-xl:    32px;
    --transition:   0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --font-display: 'Playfair Display', Georgia, serif;
    --font-body:    'DM Sans', -apple-system, sans-serif;
    --max-width:    1200px;
}

/* ---- Reset ---- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
    font-family: var(--font-body);
    background: var(--cream);
    color: var(--text-dark);
    line-height: 1.7;
    font-size: 16px;
    overflow-x: hidden;
}
img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; transition: var(--transition); }
ul { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: var(--font-body); }
input, textarea, select {
    font-family: var(--font-body);
    font-size: 15px;
    outline: none;
}

/* ---- Utility ---- */
.container { max-width: var(--max-width); margin: 0 auto; padding: 0 24px; }
.section-pad { padding: 96px 0; }
.section-pad-sm { padding: 64px 0; }
.text-center { text-align: center; }
.text-cyan { color: var(--cyan); }
.text-gold { color: var(--gold); }
.mt-2 { margin-top: 0.5rem; }
.tag {
    display: inline-block;
    background: rgba(0,180,216,0.12);
    color: var(--cyan-dark);
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    padding: 4px 14px;
    border-radius: 100px;
    margin-bottom: 14px;
}

/* ---- Section Headings ---- */
.section-label {
    display: inline-block;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--cyan-dark);
    margin-bottom: 12px;
}
.section-title {
    font-family: var(--font-display);
    font-size: clamp(2rem, 3.5vw, 3rem);
    font-weight: 700;
    line-height: 1.2;
    color: var(--navy);
    margin-bottom: 16px;
}
.section-sub {
    font-size: 17px;
    color: var(--text-mid);
    max-width: 580px;
    line-height: 1.8;
}
.section-header { margin-bottom: 56px; }
.section-header.centered { text-align: center; }
.section-header.centered .section-sub { margin: 0 auto; }

/* ---- Buttons ---- */
.btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--cyan);
    color: var(--white);
    font-weight: 600;
    font-size: 15px;
    padding: 14px 28px;
    border-radius: var(--radius-sm);
    border: 2px solid var(--cyan);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}
.btn-primary::before {
    content: '';
    position: absolute;
    inset: 0;
    background: var(--cyan-dark);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.3s ease;
    z-index: 0;
}
.btn-primary:hover::before { transform: scaleX(1); }
.btn-primary span, .btn-primary i { position: relative; z-index: 1; }
.btn-primary:hover { color: var(--white); border-color: var(--cyan-dark); }

.btn-outline {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: transparent;
    color: var(--navy);
    font-weight: 600;
    font-size: 15px;
    padding: 14px 28px;
    border-radius: var(--radius-sm);
    border: 2px solid var(--navy);
    transition: var(--transition);
}
.btn-outline:hover { background: var(--navy); color: var(--white); }

.btn-outline-white {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: transparent;
    color: var(--white);
    font-weight: 600;
    font-size: 15px;
    padding: 14px 28px;
    border-radius: var(--radius-sm);
    border: 2px solid rgba(255,255,255,0.5);
    transition: var(--transition);
}
.btn-outline-white:hover { background: var(--white); color: var(--navy); }

.btn-gold {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--gold);
    color: var(--white);
    font-weight: 600;
    font-size: 15px;
    padding: 14px 28px;
    border-radius: var(--radius-sm);
    border: 2px solid var(--gold);
    transition: var(--transition);
}
.btn-gold:hover { background: #b07d1e; border-color: #b07d1e; }

.btn-sm { padding: 10px 20px; font-size: 14px; }
.btn-lg { padding: 18px 36px; font-size: 17px; }

/* ---- WhatsApp Header Button ---- */
.btn-wa {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: #25D366;
    color: var(--white);
    font-weight: 600;
    font-size: 14px;
    padding: 10px 18px;
    border-radius: var(--radius-sm);
    transition: var(--transition);
}
.btn-wa:hover { background: #1fb855; color: var(--white); }

/* ============================================================
   HEADER
   ============================================================ */
.site-header {
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 999;
    background: rgba(250,248,244,0.92);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid transparent;
    transition: var(--transition);
    padding: 0;
}
.site-header.scrolled {
    border-bottom-color: var(--border);
    box-shadow: var(--shadow-sm);
}
.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    height: 70px;
}
.logo-wrap { display: flex; align-items: center; gap: 10px; flex-shrink: 0; }
.logo-img { height: 42px; width: auto; object-fit: contain; }
.logo-fallback {
    display: flex; align-items: center; gap: 8px;
}
.logo-dk {
    width: 42px; height: 42px;
    background: var(--navy);
    color: var(--cyan);
    font-family: var(--font-display);
    font-size: 18px;
    font-weight: 800;
    display: flex; align-items: center; justify-content: center;
    border-radius: var(--radius-sm);
}
.logo-text {
    font-family: var(--font-body);
    font-size: 14px;
    font-weight: 500;
    color: var(--navy);
    letter-spacing: 0.06em;
    text-transform: uppercase;
}
.logo-text strong { color: var(--cyan); font-weight: 700; }

.main-nav ul {
    display: flex;
    align-items: center;
    gap: 4px;
}
.main-nav a {
    font-size: 14px;
    font-weight: 500;
    color: var(--text-mid);
    padding: 6px 12px;
    border-radius: var(--radius-sm);
    transition: var(--transition);
}
.main-nav a:hover, .main-nav a.active {
    color: var(--cyan-dark);
    background: rgba(0,180,216,0.08);
}
.header-ctas { display: flex; align-items: center; gap: 12px; flex-shrink: 0; }
.hamburger { display: none; flex-direction: column; gap: 5px; padding: 4px; }
.hamburger span {
    display: block; width: 24px; height: 2px;
    background: var(--navy); border-radius: 2px;
    transition: var(--transition);
}
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ============================================================
   HERO SECTION
   ============================================================ */
.hero {
    padding: 160px 0 100px;
    background: linear-gradient(135deg, var(--cream) 0%, var(--cream-dark) 60%, #e8dfd3 100%);
    position: relative;
    overflow: hidden;
}
.hero::before {
    content: '';
    position: absolute;
    top: -100px; right: -100px;
    width: 600px; height: 600px;
    background: radial-gradient(circle, rgba(0,180,216,0.08) 0%, transparent 70%);
    pointer-events: none;
}
.hero::after {
    content: '';
    position: absolute;
    bottom: -80px; left: -80px;
    width: 400px; height: 400px;
    background: radial-gradient(circle, rgba(201,146,42,0.06) 0%, transparent 70%);
    pointer-events: none;
}
.hero-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    gap: 64px;
}
.hero-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 20px;
}
.hero-eyebrow::before {
    content: '';
    display: block;
    width: 32px; height: 2px;
    background: var(--gold);
}
.hero-title {
    font-family: var(--font-display);
    font-size: clamp(2.4rem, 4.5vw, 3.8rem);
    font-weight: 800;
    line-height: 1.15;
    color: var(--navy);
    margin-bottom: 20px;
}
.hero-title .accent { color: var(--cyan); }
.hero-title .underline-gold {
    position: relative;
    display: inline-block;
}
.hero-title .underline-gold::after {
    content: '';
    position: absolute;
    left: 0; bottom: -4px;
    width: 100%; height: 4px;
    background: var(--gold);
    border-radius: 2px;
}
.hero-sub {
    font-size: 18px;
    color: var(--text-mid);
    max-width: 480px;
    line-height: 1.8;
    margin-bottom: 36px;
}
.hero-ctas { display: flex; gap: 16px; flex-wrap: wrap; align-items: center; }
.hero-trust {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-top: 48px;
    padding-top: 32px;
    border-top: 1px solid var(--border);
}
.hero-trust-item {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 13px;
    font-weight: 500;
    color: var(--text-mid);
}
.hero-trust-item i { color: var(--cyan); font-size: 16px; }
.hero-visual {
    position: relative;
    display: flex;
    justify-content: flex-end;
}
.hero-cards {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    width: 100%;
    max-width: 480px;
}
.hero-card {
    background: var(--white);
    border-radius: var(--radius-md);
    padding: 24px 20px;
    box-shadow: var(--shadow-md);
    border: 1px solid var(--border);
    transition: var(--transition);
    animation: floatCard 4s ease-in-out infinite;
}
.hero-card:nth-child(2) { animation-delay: 1s; margin-top: 24px; }
.hero-card:nth-child(3) { animation-delay: 2s; }
.hero-card:nth-child(4) { animation-delay: 3s; margin-top: 24px; }
@keyframes floatCard {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-6px); }
}
.hero-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.hero-card-icon {
    width: 44px; height: 44px;
    background: linear-gradient(135deg, var(--cyan), var(--cyan-dark));
    border-radius: var(--radius-sm);
    display: flex; align-items: center; justify-content: center;
    color: var(--white);
    font-size: 22px;
    margin-bottom: 12px;
}
.hero-card h4 { font-size: 13px; font-weight: 700; color: var(--navy); margin-bottom: 4px; }
.hero-card p { font-size: 12px; color: var(--text-light); line-height: 1.5; }

/* ============================================================
   TRUST BADGES
   ============================================================ */
.trust-strip {
    background: var(--navy);
    padding: 28px 0;
}
.trust-strip-inner {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    flex-wrap: wrap;
}
.trust-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--white);
    font-size: 14px;
    font-weight: 500;
    padding: 10px 20px;
    border: 1px solid rgba(255,255,255,0.15);
    border-radius: 100px;
    background: rgba(255,255,255,0.05);
    transition: var(--transition);
}
.trust-badge:hover { background: rgba(0,180,216,0.2); border-color: var(--cyan); }
.trust-badge i { color: var(--cyan); font-size: 18px; }
.trust-divider {
    width: 1px; height: 32px;
    background: rgba(255,255,255,0.15);
}

/* ============================================================
   INDUSTRIES FOCUS
   ============================================================ */
.industries-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}
.industry-card {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 36px 28px;
    position: relative;
    overflow: hidden;
    transition: var(--transition);
    cursor: default;
}
.industry-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 4px;
    background: linear-gradient(90deg, var(--cyan), var(--gold));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease;
}
.industry-card:hover::before { transform: scaleX(1); }
.industry-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
    border-color: transparent;
}
.industry-icon {
    width: 60px; height: 60px;
    background: linear-gradient(135deg, rgba(0,180,216,0.1), rgba(0,180,216,0.05));
    border-radius: var(--radius-md);
    display: flex; align-items: center; justify-content: center;
    color: var(--cyan-dark);
    font-size: 28px;
    margin-bottom: 20px;
    transition: var(--transition);
}
.industry-card:hover .industry-icon {
    background: linear-gradient(135deg, var(--cyan), var(--cyan-dark));
    color: var(--white);
}
.industry-card h3 { font-size: 18px; font-weight: 700; color: var(--navy); margin-bottom: 10px; }
.industry-card p { font-size: 14px; color: var(--text-light); line-height: 1.7; }

/* ============================================================
   SERVICES SECTION
   ============================================================ */
.services-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}
.service-card {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    padding: 28px 24px;
    transition: var(--transition);
}
.service-card:hover {
    border-color: var(--cyan);
    box-shadow: 0 8px 32px rgba(0,180,216,0.12);
    transform: translateY(-4px);
}
.service-card-icon {
    width: 48px; height: 48px;
    background: linear-gradient(135deg, var(--navy), var(--navy-mid));
    border-radius: var(--radius-sm);
    display: flex; align-items: center; justify-content: center;
    color: var(--cyan);
    font-size: 22px;
    margin-bottom: 16px;
}
.service-card h3 { font-size: 16px; font-weight: 700; color: var(--navy); margin-bottom: 8px; }
.service-card p { font-size: 13px; color: var(--text-light); line-height: 1.6; }

/* ============================================================
   WHY DIGITAL KALKI
   ============================================================ */
.why-section { background: var(--navy); color: var(--white); }
.why-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}
.why-card {
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: var(--radius-md);
    padding: 32px 28px;
    transition: var(--transition);
}
.why-card:hover {
    background: rgba(0,180,216,0.1);
    border-color: rgba(0,180,216,0.3);
    transform: translateY(-4px);
}
.why-icon {
    width: 52px; height: 52px;
    background: rgba(0,180,216,0.15);
    border-radius: var(--radius-sm);
    display: flex; align-items: center; justify-content: center;
    color: var(--cyan);
    font-size: 24px;
    margin-bottom: 18px;
}
.why-card h3 { font-size: 17px; font-weight: 700; color: var(--white); margin-bottom: 10px; }
.why-card p { font-size: 14px; color: rgba(255,255,255,0.65); line-height: 1.7; }

/* ============================================================
   PORTFOLIO PREVIEW
   ============================================================ */
.portfolio-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}
.portfolio-card {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    overflow: hidden;
    transition: var(--transition);
}
.portfolio-card:hover { box-shadow: var(--shadow-lg); transform: translateY(-6px); }
.portfolio-thumb {
    height: 220px;
    background: linear-gradient(135deg, var(--navy) 0%, var(--navy-mid) 100%);
    display: flex; align-items: center; justify-content: center;
    position: relative;
    overflow: hidden;
}
.portfolio-thumb-icon {
    font-size: 64px;
    color: rgba(0,180,216,0.3);
    transition: var(--transition);
}
.portfolio-card:hover .portfolio-thumb-icon { color: rgba(0,180,216,0.6); transform: scale(1.1); }
.portfolio-thumb-label {
    position: absolute;
    top: 12px; right: 12px;
    background: var(--cyan);
    color: var(--white);
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    padding: 4px 10px;
    border-radius: 100px;
}
.portfolio-body { padding: 24px; }
.portfolio-body h3 { font-size: 16px; font-weight: 700; color: var(--navy); margin-bottom: 6px; }
.portfolio-body p { font-size: 13px; color: var(--text-light); margin-bottom: 16px; line-height: 1.6; }
.portfolio-tags { display: flex; flex-wrap: wrap; gap: 6px; margin-bottom: 16px; }
.portfolio-tag {
    font-size: 11px;
    font-weight: 600;
    color: var(--cyan-dark);
    background: rgba(0,180,216,0.1);
    padding: 3px 10px;
    border-radius: 100px;
}
.portfolio-cta {
    font-size: 13px;
    font-weight: 600;
    color: var(--cyan-dark);
    display: flex;
    align-items: center;
    gap: 4px;
    transition: var(--transition);
}
.portfolio-cta:hover { gap: 8px; color: var(--navy); }

/* ============================================================
   TESTIMONIALS
   ============================================================ */
.testimonials-section { background: linear-gradient(180deg, var(--cream) 0%, var(--cream-dark) 100%); }
.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}
.testimonial-card {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    padding: 32px 28px;
    position: relative;
    transition: var(--transition);
}
.testimonial-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.testimonial-quote {
    font-size: 48px;
    color: var(--cyan-light);
    font-family: Georgia, serif;
    line-height: 1;
    margin-bottom: 12px;
}
.testimonial-card p {
    font-size: 15px;
    color: var(--text-mid);
    line-height: 1.8;
    margin-bottom: 24px;
    font-style: italic;
}
.testimonial-author { display: flex; align-items: center; gap: 14px; }
.testimonial-avatar {
    width: 48px; height: 48px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--navy), var(--cyan-dark));
    display: flex; align-items: center; justify-content: center;
    color: var(--white);
    font-size: 18px;
    font-weight: 700;
    flex-shrink: 0;
}
.testimonial-info strong { font-size: 15px; font-weight: 700; color: var(--navy); display: block; }
.testimonial-info span { font-size: 13px; color: var(--text-light); }
.stars { color: var(--gold); font-size: 14px; letter-spacing: 2px; margin-bottom: 4px; }

/* ============================================================
   PROCESS SECTION
   ============================================================ */
.process-section { background: var(--navy-mid); }
.process-steps {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0;
    position: relative;
}
.process-steps::before {
    content: '';
    position: absolute;
    top: 40px; left: 80px; right: 80px;
    height: 2px;
    background: linear-gradient(90deg, var(--cyan), var(--gold));
}
.process-step {
    text-align: center;
    padding: 0 24px;
    position: relative;
    z-index: 1;
}
.process-num {
    width: 80px; height: 80px;
    background: linear-gradient(135deg, var(--cyan), var(--cyan-dark));
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    font-family: var(--font-display);
    font-size: 28px;
    font-weight: 800;
    color: var(--white);
    margin: 0 auto 24px;
    border: 4px solid var(--navy-mid);
    box-shadow: 0 0 0 2px var(--cyan);
    transition: var(--transition);
}
.process-step:hover .process-num { transform: scale(1.1); box-shadow: 0 0 0 4px var(--cyan), var(--shadow-md); }
.process-step h3 { font-size: 18px; font-weight: 700; color: var(--white); margin-bottom: 10px; }
.process-step p { font-size: 14px; color: rgba(255,255,255,0.6); line-height: 1.7; }

/* ============================================================
   PACKAGES
   ============================================================ */
.packages-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    align-items: stretch;
}
.package-card {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 36px 28px;
    display: flex;
    flex-direction: column;
    gap: 20px;
    transition: var(--transition);
    position: relative;
}
.package-card.featured {
    background: var(--navy);
    border-color: var(--navy);
    color: var(--white);
}
.package-card.featured h3 { color: var(--white); }
.package-card.featured p { color: rgba(255,255,255,0.7); }
.package-card.featured ul li { color: rgba(255,255,255,0.8); }
.package-badge {
    position: absolute;
    top: -1px; right: 24px;
    background: var(--gold);
    color: var(--white);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    padding: 4px 14px;
    border-radius: 0 0 8px 8px;
}
.package-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.package-icon {
    width: 56px; height: 56px;
    background: rgba(0,180,216,0.1);
    border-radius: var(--radius-md);
    display: flex; align-items: center; justify-content: center;
    color: var(--cyan);
    font-size: 26px;
}
.package-card.featured .package-icon { background: rgba(255,255,255,0.1); }
.package-card h3 { font-size: 18px; font-weight: 700; color: var(--navy); }
.package-card p { font-size: 14px; color: var(--text-light); line-height: 1.6; }
.package-features { flex: 1; }
.package-features li {
    font-size: 14px;
    color: var(--text-mid);
    padding: 6px 0;
    display: flex;
    align-items: flex-start;
    gap: 8px;
    border-bottom: 1px solid var(--border);
}
.package-card.featured .package-features li { border-bottom-color: rgba(255,255,255,0.1); }
.package-features li::before {
    content: '✓';
    color: var(--cyan);
    font-weight: 700;
    flex-shrink: 0;
}
.package-card.featured .package-features li::before { color: var(--gold-light); }
.package-price {
    font-family: var(--font-display);
    font-size: 22px;
    font-weight: 700;
    color: var(--navy);
}
.package-card.featured .package-price { color: var(--white); }
.package-price span { font-size: 13px; font-weight: 400; font-family: var(--font-body); color: var(--text-light); }
.package-card.featured .package-price span { color: rgba(255,255,255,0.6); }

/* ============================================================
   FAQ
   ============================================================ */
.faq-list { max-width: 760px; margin: 0 auto; }
.faq-item {
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    margin-bottom: 12px;
    overflow: hidden;
    transition: var(--transition);
}
.faq-item.open { border-color: var(--cyan); box-shadow: 0 4px 20px rgba(0,180,216,0.1); }
.faq-question {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 24px;
    cursor: pointer;
    background: var(--white);
    font-weight: 600;
    font-size: 15px;
    color: var(--navy);
    gap: 16px;
    transition: var(--transition);
}
.faq-question:hover { background: rgba(0,180,216,0.03); }
.faq-icon {
    width: 28px; height: 28px;
    border-radius: 50%;
    background: rgba(0,180,216,0.1);
    display: flex; align-items: center; justify-content: center;
    color: var(--cyan-dark);
    font-size: 16px;
    flex-shrink: 0;
    transition: var(--transition);
}
.faq-item.open .faq-icon { background: var(--cyan); color: var(--white); transform: rotate(45deg); }
.faq-answer {
    display: none;
    padding: 0 24px 20px;
    background: var(--white);
    font-size: 15px;
    color: var(--text-mid);
    line-height: 1.8;
}
.faq-item.open .faq-answer { display: block; }

/* ============================================================
   FINAL CTA
   ============================================================ */
.final-cta {
    background: linear-gradient(135deg, var(--navy) 0%, var(--navy-light) 100%);
    text-align: center;
    padding: 100px 0;
    position: relative;
    overflow: hidden;
}
.final-cta::before {
    content: '';
    position: absolute;
    top: -150px; right: -150px;
    width: 500px; height: 500px;
    background: radial-gradient(circle, rgba(0,180,216,0.12), transparent 70%);
}
.final-cta::after {
    content: '';
    position: absolute;
    bottom: -100px; left: -100px;
    width: 350px; height: 350px;
    background: radial-gradient(circle, rgba(201,146,42,0.1), transparent 70%);
}
.final-cta .section-title { color: var(--white); }
.final-cta .section-sub { color: rgba(255,255,255,0.7); margin: 0 auto 40px; }
.final-cta-btns { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; position: relative; z-index: 1; }

/* ============================================================
   FORMS
   ============================================================ */
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.form-group { display: flex; flex-direction: column; gap: 6px; }
.form-group.full-width { grid-column: 1 / -1; }
.form-group label {
    font-size: 13px;
    font-weight: 600;
    color: var(--navy);
    letter-spacing: 0.02em;
}
.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 12px 16px;
    border: 1.5px solid var(--border);
    border-radius: var(--radius-sm);
    background: var(--white);
    color: var(--text-dark);
    font-size: 15px;
    transition: var(--transition);
}
.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    border-color: var(--cyan);
    box-shadow: 0 0 0 3px rgba(0,180,216,0.1);
}
.form-group textarea { resize: vertical; min-height: 120px; }
.form-error { color: #e53e3e; font-size: 12px; margin-top: 2px; }
.form-success {
    background: #f0fff4;
    border: 1.5px solid #68d391;
    border-radius: var(--radius-md);
    padding: 24px;
    text-align: center;
    color: #276749;
    font-weight: 600;
    font-size: 16px;
}

/* ============================================================
   FREE TOOLS PAGE
   ============================================================ */
.tools-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
}
.tool-card {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 36px;
    transition: var(--transition);
}
.tool-card:hover { border-color: var(--cyan); box-shadow: 0 8px 32px rgba(0,180,216,0.1); }
.tool-card-header { display: flex; align-items: center; gap: 16px; margin-bottom: 24px; }
.tool-card-icon {
    width: 56px; height: 56px;
    background: linear-gradient(135deg, var(--navy), var(--navy-mid));
    border-radius: var(--radius-md);
    display: flex; align-items: center; justify-content: center;
    color: var(--cyan);
    font-size: 26px;
}
.tool-card-header h3 { font-size: 20px; font-weight: 700; color: var(--navy); }
.tool-card-header p { font-size: 13px; color: var(--text-light); }
.tool-result {
    background: rgba(0,180,216,0.05);
    border: 1.5px solid rgba(0,180,216,0.2);
    border-radius: var(--radius-md);
    padding: 24px;
    margin-top: 20px;
    display: none;
}
.tool-result.show { display: block; }
.score-circle {
    width: 100px; height: 100px;
    border-radius: 50%;
    background: conic-gradient(var(--cyan) var(--score, 0%), rgba(0,180,216,0.1) 0%);
    display: flex; align-items: center; justify-content: center;
    margin: 0 auto 16px;
    position: relative;
}
.score-circle::before {
    content: '';
    position: absolute;
    inset: 8px;
    background: var(--white);
    border-radius: 50%;
}
.score-number {
    position: relative;
    z-index: 1;
    font-family: var(--font-display);
    font-size: 28px;
    font-weight: 800;
    color: var(--navy);
}
.score-factors { margin-top: 16px; display: flex; flex-direction: column; gap: 8px; }
.score-factor {
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-size: 13px;
    padding: 8px 0;
    border-bottom: 1px solid var(--border);
}
.score-factor-status { font-weight: 600; }
.score-factor-status.good { color: #38a169; }
.score-factor-status.warn { color: var(--gold); }
.score-factor-status.bad { color: #e53e3e; }
.keyword-chip {
    display: inline-flex;
    align-items: center;
    background: rgba(0,180,216,0.1);
    color: var(--navy);
    font-size: 13px;
    font-weight: 500;
    padding: 6px 14px;
    border-radius: 100px;
    margin: 4px;
    cursor: pointer;
    transition: var(--transition);
}
.keyword-chip:hover { background: var(--cyan); color: var(--white); }
.checklist-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 12px 0;
    border-bottom: 1px solid var(--border);
    cursor: pointer;
}
.checklist-item:last-child { border-bottom: none; }
.checklist-cb {
    width: 20px; height: 20px;
    border: 2px solid var(--border);
    border-radius: 4px;
    display: flex; align-items: center; justify-content: center;
    flex-shrink: 0;
    transition: var(--transition);
    margin-top: 1px;
}
.checklist-item.checked .checklist-cb {
    background: var(--cyan);
    border-color: var(--cyan);
    color: var(--white);
}
.checklist-item.checked .checklist-cb::after { content: '✓'; font-size: 12px; font-weight: 700; }
.checklist-label { font-size: 14px; color: var(--text-mid); line-height: 1.5; }
.budget-result-bar {
    background: var(--cream-dark);
    border-radius: 8px;
    overflow: hidden;
    height: 16px;
    margin: 12px 0;
}
.budget-result-fill {
    height: 100%;
    background: linear-gradient(90deg, var(--cyan), var(--gold));
    border-radius: 8px;
    transition: width 0.8s ease;
}

/* ============================================================
   CAREERS PAGE
   ============================================================ */
.skills-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}
.skill-role-card {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    padding: 28px 24px;
    text-align: center;
    transition: var(--transition);
}
.skill-role-card:hover {
    border-color: var(--cyan);
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
}
.skill-role-card i { font-size: 40px; color: var(--cyan); margin-bottom: 14px; display: block; }
.skill-role-card h3 { font-size: 16px; font-weight: 700; color: var(--navy); margin-bottom: 6px; }
.skill-role-card p { font-size: 13px; color: var(--text-light); }

/* ============================================================
   ADMIN PANEL
   ============================================================ */
.admin-body { background: #f1f5f9; font-family: var(--font-body); }
.admin-sidebar {
    width: 240px;
    background: var(--navy);
    min-height: 100vh;
    position: fixed;
    left: 0; top: 0;
    padding: 24px 0;
    z-index: 100;
}
.admin-sidebar-logo {
    padding: 0 24px 24px;
    border-bottom: 1px solid rgba(255,255,255,0.1);
    margin-bottom: 16px;
}
.admin-sidebar-logo span {
    font-family: var(--font-display);
    font-size: 18px;
    font-weight: 700;
    color: var(--white);
    display: block;
}
.admin-sidebar-logo small { font-size: 12px; color: rgba(255,255,255,0.5); }
.admin-nav a {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 24px;
    font-size: 14px;
    font-weight: 500;
    color: rgba(255,255,255,0.7);
    transition: var(--transition);
}
.admin-nav a:hover, .admin-nav a.active {
    color: var(--white);
    background: rgba(0,180,216,0.15);
    border-right: 3px solid var(--cyan);
}
.admin-nav a i { font-size: 18px; }
.admin-main { margin-left: 240px; padding: 32px; min-height: 100vh; }
.admin-header { margin-bottom: 32px; }
.admin-header h1 { font-size: 24px; font-weight: 700; color: var(--navy); }
.admin-header p { font-size: 14px; color: var(--text-light); }
.stat-cards { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; margin-bottom: 32px; }
.stat-card {
    background: var(--white);
    border-radius: var(--radius-md);
    padding: 24px;
    border-left: 4px solid var(--cyan);
    box-shadow: var(--shadow-sm);
}
.stat-card.gold { border-color: var(--gold); }
.stat-card.green { border-color: #38a169; }
.stat-card.purple { border-color: #805ad5; }
.stat-number {
    font-family: var(--font-display);
    font-size: 32px;
    font-weight: 800;
    color: var(--navy);
}
.stat-label { font-size: 13px; color: var(--text-light); }
.admin-table-wrap {
    background: var(--white);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-sm);
    overflow: hidden;
}
.admin-table-head {
    padding: 20px 24px;
    border-bottom: 1px solid var(--border);
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.admin-table-head h2 { font-size: 17px; font-weight: 700; color: var(--navy); }
table { width: 100%; border-collapse: collapse; }
th {
    text-align: left;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--text-light);
    padding: 12px 16px;
    background: #f8fafc;
    border-bottom: 1px solid var(--border);
}
td {
    padding: 14px 16px;
    font-size: 14px;
    color: var(--text-mid);
    border-bottom: 1px solid var(--border);
    vertical-align: top;
}
tr:last-child td { border-bottom: none; }
tr:hover td { background: #f8fafc; }
.status-badge {
    display: inline-block;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    padding: 3px 10px;
    border-radius: 100px;
}
.status-new { background: rgba(0,180,216,0.1); color: var(--cyan-dark); }
.status-contacted { background: rgba(201,146,42,0.1); color: var(--gold); }
.status-converted { background: rgba(56,161,105,0.1); color: #276749; }
.status-closed { background: rgba(160,174,192,0.1); color: #718096; }
.admin-login-page {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--navy) 0%, var(--navy-light) 100%);
}
.admin-login-box {
    background: var(--white);
    border-radius: var(--radius-xl);
    padding: 48px 40px;
    width: 100%;
    max-width: 420px;
    box-shadow: var(--shadow-lg);
}
.admin-login-box h1 {
    font-family: var(--font-display);
    font-size: 28px;
    font-weight: 800;
    color: var(--navy);
    margin-bottom: 8px;
    text-align: center;
}
.admin-login-box p {
    font-size: 14px;
    color: var(--text-light);
    text-align: center;
    margin-bottom: 32px;
}
.alert-danger {
    background: #fff5f5;
    border: 1px solid #feb2b2;
    border-radius: var(--radius-sm);
    padding: 12px 16px;
    font-size: 14px;
    color: #c53030;
    margin-bottom: 20px;
}

/* ============================================================
   PAGE HERO (inner pages)
   ============================================================ */
.page-hero {
    background: linear-gradient(135deg, var(--navy) 0%, var(--navy-light) 100%);
    padding: 140px 0 80px;
    text-align: center;
    position: relative;
    overflow: hidden;
}
.page-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 70% 50%, rgba(0,180,216,0.12), transparent 60%);
}
.page-hero .section-label { color: rgba(0,180,216,0.8); }
.page-hero h1 {
    font-family: var(--font-display);
    font-size: clamp(2rem, 4vw, 3.2rem);
    font-weight: 800;
    color: var(--white);
    margin-bottom: 16px;
    position: relative;
}
.page-hero p {
    font-size: 18px;
    color: rgba(255,255,255,0.75);
    max-width: 600px;
    margin: 0 auto;
    position: relative;
}

/* ============================================================
   THANK YOU PAGE
   ============================================================ */
.thankyou-wrap {
    min-height: 80vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 120px 24px 80px;
}
.thankyou-icon {
    width: 100px; height: 100px;
    background: linear-gradient(135deg, var(--cyan), var(--cyan-dark));
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    color: var(--white);
    font-size: 48px;
    margin: 0 auto 28px;
    animation: scaleIn 0.5s ease;
}
@keyframes scaleIn { from { transform: scale(0); opacity: 0; } to { transform: scale(1); opacity: 1; } }
.thankyou-wrap h1 {
    font-family: var(--font-display);
    font-size: clamp(2rem, 4vw, 3rem);
    color: var(--navy);
    margin-bottom: 16px;
}
.thankyou-wrap p { font-size: 17px; color: var(--text-mid); max-width: 500px; margin: 0 auto 32px; }

/* ============================================================
   WA FLOAT + SCROLL TOP
   ============================================================ */
.wa-float {
    position: fixed;
    bottom: 28px; right: 28px;
    width: 58px; height: 58px;
    background: #25D366;
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    color: var(--white);
    font-size: 28px;
    box-shadow: 0 8px 24px rgba(37,211,102,0.4);
    z-index: 900;
    transition: var(--transition);
}
.wa-float:hover { transform: scale(1.1); background: #1fb855; }
.wa-pulse {
    position: absolute;
    inset: 0;
    border-radius: 50%;
    background: rgba(37,211,102,0.4);
    animation: waPulse 2s ease infinite;
}
@keyframes waPulse {
    0%, 100% { transform: scale(1); opacity: 0.8; }
    50% { transform: scale(1.4); opacity: 0; }
}
.scroll-top {
    position: fixed;
    bottom: 98px; right: 28px;
    width: 44px; height: 44px;
    background: var(--navy);
    color: var(--white);
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    font-size: 18px;
    box-shadow: var(--shadow-md);
    z-index: 900;
    opacity: 0;
    pointer-events: none;
    transition: var(--transition);
}
.scroll-top.show { opacity: 1; pointer-events: all; }
.scroll-top:hover { background: var(--cyan); transform: translateY(-2px); }

/* ============================================================
   ANIMATIONS
   ============================================================ */
.fade-in {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}
.fade-in.visible { opacity: 1; transform: translateY(0); }
.fade-in-delay-1 { transition-delay: 0.1s; }
.fade-in-delay-2 { transition-delay: 0.2s; }
.fade-in-delay-3 { transition-delay: 0.3s; }
.fade-in-delay-4 { transition-delay: 0.4s; }

/* ============================================================
   CONTACT PAGE
   ============================================================ */
.contact-grid { display: grid; grid-template-columns: 1fr 1.6fr; gap: 64px; align-items: flex-start; }
.contact-info { display: flex; flex-direction: column; gap: 24px; }
.contact-info-card {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    padding: 24px;
    display: flex;
    gap: 16px;
    align-items: flex-start;
    transition: var(--transition);
}
.contact-info-card:hover { border-color: var(--cyan); transform: translateX(4px); }
.contact-info-icon {
    width: 44px; height: 44px;
    background: linear-gradient(135deg, var(--navy), var(--navy-mid));
    border-radius: var(--radius-sm);
    display: flex; align-items: center; justify-content: center;
    color: var(--cyan);
    font-size: 20px;
    flex-shrink: 0;
}
.contact-info-card h4 { font-size: 14px; font-weight: 700; color: var(--navy); margin-bottom: 4px; }
.contact-info-card a, .contact-info-card p { font-size: 14px; color: var(--text-mid); }
.contact-form-wrap {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 40px;
    box-shadow: var(--shadow-sm);
}
.contact-form-wrap h2 { font-size: 22px; font-weight: 700; color: var(--navy); margin-bottom: 24px; }

/* ============================================================
   PORTFOLIO FILTER
   ============================================================ */
.portfolio-filter {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    justify-content: center;
    margin-bottom: 40px;
}
.filter-btn {
    font-size: 13px;
    font-weight: 600;
    color: var(--text-mid);
    background: var(--white);
    border: 1.5px solid var(--border);
    border-radius: 100px;
    padding: 8px 20px;
    cursor: pointer;
    transition: var(--transition);
}
.filter-btn:hover, .filter-btn.active {
    background: var(--navy);
    color: var(--white);
    border-color: var(--navy);
}

/* ============================================================
   ABOUT PAGE
   ============================================================ */
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 72px; align-items: center; }
.about-visual {
    position: relative;
    background: linear-gradient(135deg, var(--navy), var(--navy-mid));
    border-radius: var(--radius-xl);
    aspect-ratio: 4/3;
    display: flex; align-items: center; justify-content: center;
    overflow: hidden;
}
.about-visual-icon { font-size: 120px; color: rgba(0,180,216,0.3); }
.about-values { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin-top: 32px; }
.value-card {
    background: var(--cream-dark);
    border-radius: var(--radius-md);
    padding: 20px;
    border-left: 4px solid var(--cyan);
}
.value-card h4 { font-size: 15px; font-weight: 700; color: var(--navy); margin-bottom: 6px; }
.value-card p { font-size: 13px; color: var(--text-mid); line-height: 1.6; }

/* misc */
.divider { border: none; border-top: 1px solid var(--border); margin: 0; }
.navy-bg { background: var(--navy); }
.cream-dark-bg { background: var(--cream-dark); }
.mt-auto { margin-top: auto; }

/* ============================================================
   FOOTER GRID (supplement)
   ============================================================ */
.footer-top { background: var(--navy); padding: 72px 0 48px; }
.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 48px;
}
.footer-brand p {
    color: rgba(255,255,255,0.6);
    font-size: 14px;
    line-height: 1.8;
    margin: 16px 0 24px;
    max-width: 280px;
}
.footer-social { display: flex; gap: 12px; }
.footer-social a {
    width: 38px; height: 38px;
    border: 1px solid rgba(255,255,255,0.15);
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    color: rgba(255,255,255,0.6);
    font-size: 18px;
    transition: var(--transition);
}
.footer-social a:hover { background: var(--cyan); border-color: var(--cyan); color: var(--white); }
.footer-links h4 { color: var(--white); font-size: 14px; font-weight: 700; margin-bottom: 20px; letter-spacing: 0.06em; text-transform: uppercase; }
.footer-links ul { display: flex; flex-direction: column; gap: 10px; }
.footer-links a { color: rgba(255,255,255,0.6); font-size: 14px; transition: var(--transition); }
.footer-links a:hover { color: var(--cyan); padding-left: 4px; }
.footer-contact h4 { color: var(--white); font-size: 14px; font-weight: 700; margin-bottom: 20px; text-transform: uppercase; letter-spacing: 0.06em; }
.footer-contact-item {
    display: flex; align-items: flex-start; gap: 10px;
    color: rgba(255,255,255,0.6);
    font-size: 14px;
    margin-bottom: 14px;
}
.footer-contact-item i { color: var(--cyan); font-size: 18px; flex-shrink: 0; margin-top: 2px; }
.footer-contact-item a { color: rgba(255,255,255,0.7); }
.footer-contact-item a:hover { color: var(--cyan); }
.footer-bottom { background: rgba(0,0,0,0.25); padding: 20px 0; }
.footer-bottom-inner {
    display: flex; align-items: center;
    justify-content: space-between;
    flex-wrap: wrap; gap: 12px;
}
.footer-bottom p { color: rgba(255,255,255,0.4); font-size: 13px; }
.footer-bottom-links { display: flex; gap: 20px; }
.footer-bottom-links a { color: rgba(255,255,255,0.4); font-size: 13px; transition: var(--transition); }
.footer-bottom-links a:hover { color: var(--cyan); }

/* Mobile overlay for menu */
.mobile-nav-overlay {
    display: none;
    position: fixed; inset: 0;
    background: rgba(13,27,42,0.5);
    z-index: 997;
    opacity: 0;
    transition: opacity 0.3s ease;
}
.mobile-nav-overlay.show { display: block; opacity: 1; }

/* ============================================================
   INDUSTRIES page grid helper
   ============================================================ */
.industry-section-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: center;
}
