/* ================================================================
   BARATEKNOLOGI — Main Stylesheet
   Aesthetic: Modern Minimalist · Deep Navy + Electric Indigo
   Font: Syne (display) + Plus Jakarta Sans (body)
================================================================ */

/* ── CSS Variables ─────────────────────────────────────────────── */
:root {
    --navy:        #0a0f1e;
    --navy-2:      #0f1629;
    --navy-3:      #1a2240;
    --indigo:      #6366f1;
    --indigo-light:#818cf8;
    --indigo-glow: rgba(99, 102, 241, 0.25);
    --cyan:        #06b6d4;
    --white:       #ffffff;
    --off-white:   #f8fafc;
    --muted:       #94a3b8;
    --muted-2:     #64748b;
    --border:      rgba(255,255,255,0.08);
    --card-bg:     rgba(255,255,255,0.03);
    --card-bg-light: #ffffff;
    --radius:      16px;
    --radius-sm:   10px;
    --transition:  all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    --shadow:      0 20px 60px rgba(0,0,0,0.12);
    --shadow-lg:   0 30px 80px rgba(0,0,0,0.18);
}

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

html { scroll-behavior: smooth; }

body {
    font-family: 'Plus Jakarta Sans', sans-serif;
    background: var(--off-white);
    color: #1e293b;
    overflow-x: hidden;
    line-height: 1.7;
}

/* ── Typography ─────────────────────────────────────────────────── */
h1, h2, h3, h4, h5, .brand-name {
    font-family: 'Syne', sans-serif;
    font-weight: 700;
    line-height: 1.2;
}

.text-gradient {
    background: linear-gradient(135deg, var(--indigo) 0%, var(--cyan) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.text-gradient-light {
    background: linear-gradient(135deg, #a5b4fc 0%, #67e8f9 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* ── Section Common ────────────────────────────────────────────── */
.section-pad { padding: 100px 0; }

.section-label {
    display: inline-flex;
    align-items: center;
    font-size: .8rem;
    font-weight: 600;
    letter-spacing: .12em;
    text-transform: uppercase;
    color: var(--indigo);
    background: rgba(99, 102, 241, 0.1);
    border: 1px solid rgba(99, 102, 241, 0.2);
    padding: 6px 16px;
    border-radius: 999px;
}

.section-label-light {
    color: #a5b4fc;
    background: rgba(255,255,255,0.08);
    border-color: rgba(255,255,255,0.15);
}

.section-title {
    font-size: clamp(1.75rem, 3.5vw, 2.75rem);
    color: #0f172a;
    line-height: 1.2;
}

.section-sub {
    font-size: 1.05rem;
    color: var(--muted-2);
    max-width: 560px;
    line-height: 1.8;
}

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

/* ── Animations ─────────────────────────────────────────────────── */
@keyframes fadeUp {
    from { opacity: 0; transform: translateY(28px); }
    to   { opacity: 1; transform: none; }
}
@keyframes bounce {
    0%, 100% { transform: translateY(0); }
    50%       { transform: translateY(-10px); }
}
@keyframes float {
    0%, 100% { transform: translateY(0) rotate(0deg); }
    50%       { transform: translateY(-20px) rotate(5deg); }
}
.animate-fade-up {
    animation: fadeUp 0.7s cubic-bezier(0.4, 0, 0.2, 1) both;
}
.animate-bounce {
    animation: bounce 2s ease-in-out infinite;
}

/* ════════════════════════════════════════════════════════════════
   NAVBAR
════════════════════════════════════════════════════════════════ */
#mainNav {
    background: transparent;
    padding: 20px 0;
    transition: var(--transition);
}
#mainNav.scrolled {
    background: rgba(10, 15, 30, 0.95);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--border);
    padding: 12px 0;
    box-shadow: 0 4px 30px rgba(0,0,0,0.3);
}

/* Brand */
.brand-icon {
    width: 38px;
    height: 38px;
    /* background: linear-gradient(135deg, var(--indigo), var(--cyan)); */
    background: #aa55ff;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: .9rem;
    flex-shrink: 0;
}
.brand-icon-sm { width: 30px; height: 30px; font-size: .75rem; border-radius: 8px; }
.brand-name { font-size: 1.25rem; color: #fff; font-weight: 700; letter-spacing: -.01em; }
.brand-accent { color: var(--indigo-light); }

/* Nav links */
.navbar-nav .nav-link {
    color: rgba(255,255,255,.75) !important;
    font-weight: 500;
    font-size: .9rem;
    padding: 8px 14px !important;
    border-radius: 8px;
    transition: var(--transition);
}
.navbar-nav .nav-link:hover {
    color: #fff !important;
    background: rgba(255,255,255,.08);
}

/* CTA button in nav */
.btn-cta {
    background: linear-gradient(135deg, var(--indigo), var(--cyan));
    color: #fff !important;
    font-weight: 600;
    font-size: .875rem;
    padding: 10px 22px;
    border-radius: 999px;
    border: none;
    transition: var(--transition);
    box-shadow: 0 4px 20px rgba(99,102,241,.35);
}
.btn-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(99,102,241,.5);
}

/* Toggler */
.navbar-toggler {
    border: 1px solid rgba(255,255,255,.2);
    color: #fff;
    padding: 8px 12px;
    border-radius: 8px;
    background: transparent;
}
.navbar-toggler i { color: #fff; }

/* ════════════════════════════════════════════════════════════════
   HERO
════════════════════════════════════════════════════════════════ */
.hero-section {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
}
.hero-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}
.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        125deg,
        rgba(10,15,30,.92) 0%,
        rgba(10,15,30,.75) 50%,
        rgba(10,15,30,.5) 100%
    );
}

/* Floating shapes */
.hero-shape {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    pointer-events: none;
    z-index: 1;
}
.shape-1 {
    width: 400px; height: 400px;
    background: rgba(99,102,241,.2);
    top: -100px; right: 10%;
    animation: float 8s ease-in-out infinite;
}
.shape-2 {
    width: 250px; height: 250px;
    background: rgba(6,182,212,.15);
    bottom: 15%; right: 25%;
    animation: float 10s ease-in-out infinite reverse;
}
.shape-3 {
    width: 180px; height: 180px;
    background: rgba(99,102,241,.15);
    top: 40%; right: 5%;
    animation: float 7s ease-in-out infinite 2s;
}

.hero-content {
    position: relative;
    z-index: 2;
    padding-top: 80px;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    background: rgba(99,102,241,.15);
    border: 1px solid rgba(99,102,241,.3);
    color: var(--indigo-light);
    font-size: .8rem;
    font-weight: 600;
    letter-spacing: .1em;
    text-transform: uppercase;
    padding: 8px 18px;
    border-radius: 999px;
    backdrop-filter: blur(10px);
}

.hero-headline {
    font-size: clamp(2.2rem, 5vw, 3.8rem);
    color: #fff;
    line-height: 1.1;
    letter-spacing: -.02em;
    margin-bottom: 1.25rem;
}

.hero-sub {
    font-size: 1.1rem;
    color: rgba(255,255,255,.7);
    max-width: 500px;
    line-height: 1.8;
    margin-bottom: 2rem;
}

.btn-hero-primary {
    background: linear-gradient(135deg, var(--indigo), var(--cyan));
    color: #fff;
    font-weight: 700;
    padding: 14px 32px;
    border-radius: 999px;
    border: none;
    font-size: 1rem;
    box-shadow: 0 8px 30px rgba(99,102,241,.4);
    transition: var(--transition);
}
.btn-hero-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 14px 40px rgba(99,102,241,.55);
    color: #fff;
}

.btn-hero-outline {
    background: rgba(255,255,255,.08);
    border: 1px solid rgba(255,255,255,.25);
    color: #fff;
    font-weight: 600;
    padding: 14px 32px;
    border-radius: 999px;
    font-size: 1rem;
    backdrop-filter: blur(10px);
    transition: var(--transition);
}
.btn-hero-outline:hover {
    background: rgba(255,255,255,.15);
    border-color: rgba(255,255,255,.5);
    color: #fff;
    transform: translateY(-2px);
}

/* Stats */
.hero-stats { margin-top: 2.5rem; }
.hero-stat { }
.stat-num {
    font-family: 'Syne', sans-serif;
    font-size: 2rem;
    font-weight: 800;
    color: #fff;
    line-height: 1;
}
.stat-label {
    font-size: .8rem;
    color: rgba(255,255,255,.5);
    margin-top: 4px;
    text-transform: uppercase;
    letter-spacing: .06em;
}
.stat-divider {
    width: 1px;
    background: rgba(255,255,255,.15);
    align-self: stretch;
}

/* Scroll indicator */
.scroll-indicator {
    position: absolute;
    bottom: 32px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 3;
    width: 42px; height: 42px;
    border: 1px solid rgba(255,255,255,.25);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255,255,255,.6);
    text-decoration: none;
    transition: var(--transition);
}
.scroll-indicator:hover {
    border-color: var(--indigo-light);
    color: var(--indigo-light);
}

/* ════════════════════════════════════════════════════════════════
   ABOUT
════════════════════════════════════════════════════════════════ */
.about-section { background: var(--off-white); }

.about-img-wrap {
    position: relative;
    border-radius: var(--radius);
    overflow: visible;
}

.about-img {
    width: 100%;
    border-radius: var(--radius);
    box-shadow: var(--shadow-lg);
    display: block;
    aspect-ratio: 4/5;
    object-fit: cover;
}

.about-img-card {
    position: absolute;
    bottom: -20px;
    left: -20px;
    background: #fff;
    border-radius: var(--radius);
    padding: 20px 24px;
    box-shadow: 0 20px 50px rgba(0,0,0,.12);
    min-width: 180px;
    border: 1px solid rgba(0,0,0,.06);
}

.about-text {
    color: var(--muted-2);
    font-size: 1rem;
    line-height: 1.85;
    margin-bottom: 1rem;
}

.feature-pill {
    background: #fff;
    border: 1px solid #e2e8f0;
    border-radius: 999px;
    padding: 8px 18px;
    font-size: .875rem;
    font-weight: 600;
    color: #334155;
    box-shadow: 0 2px 8px rgba(0,0,0,.06);
    transition: var(--transition);
}
.feature-pill:hover {
    background: var(--indigo);
    color: #fff;
    border-color: var(--indigo);
    transform: translateY(-2px);
}

.btn-primary-custom {
    background: linear-gradient(135deg, var(--indigo), var(--cyan));
    color: #fff;
    font-weight: 700;
    padding: 13px 30px;
    border-radius: 999px;
    border: none;
    font-size: .95rem;
    transition: var(--transition);
    box-shadow: 0 6px 24px rgba(99,102,241,.35);
    display: inline-flex;
    align-items: center;
}
.btn-primary-custom:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 36px rgba(99,102,241,.45);
    color: #fff;
}

/* ════════════════════════════════════════════════════════════════
   PRODUCTS
════════════════════════════════════════════════════════════════ */
.products-section {
    background: var(--navy);
    position: relative;
}
.products-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at 20% 50%, rgba(99,102,241,.08) 0%, transparent 60%),
                radial-gradient(ellipse at 80% 20%, rgba(6,182,212,.06) 0%, transparent 50%);
    pointer-events: none;
}

.products-section .section-title { color: #fff; }
.products-section .section-sub   { color: rgba(255,255,255,.55); }

.product-card {
    background: rgba(255,255,255,.04);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 32px 28px;
    transition: var(--transition);
    display: flex;
    flex-direction: column;
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(6px);
}
.product-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--indigo), var(--cyan));
    opacity: 0;
    transition: var(--transition);
}
.product-card:hover {
    background: rgba(255,255,255,.07);
    border-color: rgba(99,102,241,.3);
    transform: translateY(-6px);
    box-shadow: 0 20px 50px rgba(0,0,0,.3), 0 0 40px rgba(99,102,241,.1);
}
.product-card:hover::before { opacity: 1; }

.product-card-top {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 20px;
}

.product-icon-wrap {
    width: 56px; height: 56px;
    border-radius: 14px;
    background: color-mix(in srgb, var(--p-color, var(--indigo)) 15%, transparent);
    border: 1px solid color-mix(in srgb, var(--p-color, var(--indigo)) 30%, transparent);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    color: var(--p-color, var(--indigo));
    flex-shrink: 0;
}

.product-number {
    font-family: 'Syne', sans-serif;
    font-size: 2.5rem;
    font-weight: 800;
    color: rgba(255,255,255,.04);
    line-height: 1;
    user-select: none;
}

.product-name {
    font-size: 1.1rem;
    color: #fff;
    font-weight: 700;
    margin-bottom: 6px;
}

.product-tagline {
    font-size: .8rem;
    color: var(--indigo-light);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: .08em;
    margin-bottom: 12px;
}

.product-desc {
    font-size: .9rem;
    color: rgba(255,255,255,.5);
    line-height: 1.75;
    flex-grow: 1;
    margin-bottom: 20px;
}

.product-footer { margin-top: auto; }

.product-cta {
    font-size: .875rem;
    font-weight: 600;
    color: var(--indigo-light);
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    transition: var(--transition);
}
.product-cta:hover {
    color: #fff;
    gap: 10px;
}

/* Products CTA Banner */
.products-cta-banner {
    background: rgba(255,255,255,.04);
    border: 1px solid rgba(255,255,255,.1);
    border-radius: var(--radius);
    padding: 32px 36px;
    backdrop-filter: blur(6px);
}
.products-cta-banner h4 { color: #fff; font-size: 1.2rem; }

.btn-light-custom {
    background: rgba(255,255,255,.1);
    border: 1px solid rgba(255,255,255,.2);
    color: #fff;
    font-weight: 600;
    padding: 12px 26px;
    border-radius: 999px;
    transition: var(--transition);
    display: inline-flex;
    align-items: center;
}
.btn-light-custom:hover {
    background: #fff;
    color: var(--navy);
    transform: translateY(-2px);
}

/* ════════════════════════════════════════════════════════════════
   VISION & MISSION
════════════════════════════════════════════════════════════════ */
.vm-section {
    position: relative;
    overflow: hidden;
}

.vm-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
}
.vm-bg-img {
    width: 100%; height: 100%;
    object-fit: cover;
}
.vm-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(15,22,41,.97) 0%, rgba(15,22,41,.9) 100%);
}
.vm-section > .container { position: relative; z-index: 1; }

.vm-card {
    background: rgba(255,255,255,.05);
    border: 1px solid rgba(255,255,255,.1);
    border-radius: var(--radius);
    padding: 36px 32px;
    height: 100%;
    backdrop-filter: blur(10px);
    transition: var(--transition);
}
.vm-card:hover {
    background: rgba(255,255,255,.08);
    border-color: rgba(99,102,241,.3);
    transform: translateY(-4px);
}

.vm-card-icon {
    width: 52px; height: 52px;
    background: linear-gradient(135deg, var(--indigo), var(--cyan));
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 1.2rem;
    margin-bottom: 20px;
    flex-shrink: 0;
}

.vm-card-title {
    font-size: 1.5rem;
    color: #fff;
    margin-bottom: 16px;
}

.vm-card-text {
    color: rgba(255,255,255,.65);
    line-height: 1.85;
    font-size: 1rem;
}

.vm-misi-list {
    list-style: none;
    padding: 0; margin: 0;
    display: flex;
    flex-direction: column;
    gap: 14px;
}
.vm-misi-list li {
    color: rgba(255,255,255,.65);
    font-size: .95rem;
    display: flex;
    align-items: flex-start;
    gap: 4px;
    line-height: 1.65;
}
.vm-misi-list li i { color: var(--indigo-light); margin-top: 3px; flex-shrink: 0; }

/* Values */
.value-card {
    background: rgba(255,255,255,.04);
    border: 1px solid rgba(255,255,255,.08);
    border-radius: var(--radius);
    padding: 28px 20px;
    transition: var(--transition);
}
.value-card:hover {
    background: rgba(255,255,255,.08);
    transform: translateY(-4px);
}
.value-title {
    font-family: 'Syne', sans-serif;
    font-weight: 700;
    color: #fff;
    margin-bottom: 6px;
    font-size: 1rem;
}
.value-sub {
    font-size: .8rem;
    color: rgba(255,255,255,.45);
    line-height: 1.5;
}

/* ════════════════════════════════════════════════════════════════
   TEAM
════════════════════════════════════════════════════════════════ */
.team-section { background: var(--off-white); }

.team-card {
    background: #fff;
    border: 1px solid #e2e8f0;
    border-radius: var(--radius);
    overflow: hidden;
    transition: var(--transition);
    box-shadow: 0 4px 20px rgba(0,0,0,.06);
}
.team-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 50px rgba(0,0,0,.12);
    border-color: rgba(99,102,241,.2);
}

.team-photo-wrap {
    position: relative;
    overflow: hidden;
    aspect-ratio: 1/1;
}
.team-photo {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top center;
    transition: transform 0.5s ease;
}
.team-card:hover .team-photo { transform: scale(1.05); }

.team-photo-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(99,102,241,.85), transparent);
    opacity: 0;
    display: flex;
    align-items: flex-end;
    justify-content: center;
    gap: 12px;
    padding-bottom: 20px;
    transition: var(--transition);
}
.team-card:hover .team-photo-overlay { opacity: 1; }

.team-social-btn {
    width: 38px; height: 38px;
    background: rgba(255,255,255,.2);
    border: 1px solid rgba(255,255,255,.3);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    text-decoration: none;
    font-size: .85rem;
    backdrop-filter: blur(6px);
    transition: var(--transition);
}
.team-social-btn:hover {
    background: #fff;
    color: var(--indigo);
}

.team-info {
    padding: 24px;
}
.team-name {
    font-size: 1.1rem;
    color: #0f172a;
    margin-bottom: 4px;
}
.team-role {
    font-size: .8rem;
    font-weight: 600;
    color: var(--indigo);
    text-transform: uppercase;
    letter-spacing: .08em;
    margin-bottom: 12px;
}
.team-bio {
    font-size: .875rem;
    color: var(--muted-2);
    line-height: 1.7;
    margin: 0;
}

/* Join banner */
.team-join-banner {
    background: linear-gradient(135deg, rgba(99,102,241,.07), rgba(6,182,212,.07));
    border: 1px dashed rgba(99,102,241,.25);
    border-radius: var(--radius);
    padding: 48px 36px;
}

/* ════════════════════════════════════════════════════════════════
   CONTACT
════════════════════════════════════════════════════════════════ */
.contact-section { background: #fff; }

.contact-card {
    background: var(--off-white);
    border: 1px solid #e2e8f0;
    border-radius: var(--radius);
    padding: 28px 24px;
    text-align: center;
    transition: var(--transition);
    display: block;
}
.contact-card:hover {
    background: var(--navy);
    border-color: var(--navy);
    transform: translateY(-4px);
    box-shadow: 0 16px 40px rgba(0,0,0,.12);
}
.contact-card:hover .contact-label,
.contact-card:hover .contact-value,
.contact-card:hover .contact-icon { color: rgba(255,255,255,.85); }

.contact-icon {
    font-size: 1.6rem;
    color: var(--indigo);
    margin-bottom: 12px;
    transition: var(--transition);
}
.contact-label {
    font-size: .75rem;
    font-weight: 600;
    letter-spacing: .1em;
    text-transform: uppercase;
    color: var(--muted-2);
    margin-bottom: 6px;
    transition: var(--transition);
}
.contact-value {
    font-weight: 700;
    color: #0f172a;
    font-size: .95rem;
    transition: var(--transition);
}

/* Form */
.contact-form-wrap {
    background: var(--off-white);
    border: 1px solid #e2e8f0;
    border-radius: var(--radius);
    padding: 48px;
}

.form-group-custom { margin-bottom: 0; }
.form-group-custom label {
    display: block;
    font-size: .8rem;
    font-weight: 600;
    color: #475569;
    margin-bottom: 8px;
    letter-spacing: .04em;
    text-transform: uppercase;
}
.form-control-custom {
    width: 100%;
    background: #fff;
    border: 1px solid #e2e8f0;
    border-radius: var(--radius-sm);
    padding: 12px 16px;
    font-size: .95rem;
    font-family: 'Plus Jakarta Sans', sans-serif;
    color: #0f172a;
    transition: var(--transition);
    outline: none;
}
.form-control-custom:focus {
    border-color: var(--indigo);
    box-shadow: 0 0 0 3px var(--indigo-glow);
}
textarea.form-control-custom { resize: vertical; }

/* Office image */
.contact-map-placeholder {
    position: relative;
    border-radius: var(--radius);
    overflow: hidden;
    height: 100%;
    min-height: 300px;
}
.contact-office-img {
    width: 100%; height: 100%;
    object-fit: cover;
    display: block;
}
.contact-office-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(10,15,30,.8) 0%, transparent 60%);
    display: flex;
    align-items: flex-end;
    padding: 24px;
}
.office-badge {
    background: rgba(255,255,255,.1);
    border: 1px solid rgba(255,255,255,.2);
    border-radius: 999px;
    color: #fff;
    padding: 10px 20px;
    font-size: .875rem;
    font-weight: 600;
    backdrop-filter: blur(10px);
}

/* ════════════════════════════════════════════════════════════════
   FOOTER
════════════════════════════════════════════════════════════════ */
.main-footer {
    background: var(--navy-2);
    padding: 80px 0 0;
    border-top: 1px solid var(--border);
}

.footer-desc {
    font-size: .9rem;
    color: rgba(255,255,255,.45);
    max-width: 280px;
    line-height: 1.7;
}

.footer-heading {
    font-family: 'Syne', sans-serif;
    font-size: .75rem;
    font-weight: 700;
    letter-spacing: .12em;
    text-transform: uppercase;
    color: rgba(255,255,255,.3);
    margin-bottom: 20px;
}

.footer-links {
    list-style: none;
    padding: 0; margin: 0;
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.footer-links li, .footer-links a {
    font-size: .875rem;
    color: rgba(255,255,255,.5);
    text-decoration: none;
    transition: var(--transition);
}
.footer-links a:hover { color: var(--indigo-light); }

.footer-social {
    width: 38px; height: 38px;
    border: 1px solid rgba(255,255,255,.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255,255,255,.45);
    text-decoration: none;
    font-size: .875rem;
    transition: var(--transition);
}
.footer-social:hover {
    background: var(--indigo);
    border-color: var(--indigo);
    color: #fff;
    transform: translateY(-3px);
}

.footer-bottom {
    margin-top: 60px;
    border-top: 1px solid var(--border);
    padding: 24px 0;
    font-size: .875rem;
    color: rgba(255,255,255,.35);
}

/* ── Responsive ─────────────────────────────────────────────────── */
@media (max-width: 991px) {
    .section-pad { padding: 70px 0; }
    .about-img-card { display: none; }
    .contact-form-wrap { padding: 30px 24px; }
    #navMenu {
        background: rgba(10,15,30,.97);
        border: 1px solid var(--border);
        border-radius: var(--radius);
        margin-top: 16px;
        padding: 16px;
        backdrop-filter: blur(20px);
    }
}

@media (max-width: 767px) {
    .hero-stats { gap: 20px; }
    .stat-divider { display: none; }
    .products-cta-banner { text-align: center; }
    .hero-actions { justify-content: flex-start; }
    .contact-form-wrap { padding: 24px 16px; }
}

/* ================================================================
   PRODUCT CARD BACKGROUND IMAGE — append to assets/css/style.css
================================================================ */

/* Container needs position:relative (already set) */
.product-card-has-bg { overflow: hidden; }

/* Background image layer — sits behind all content */
.product-card-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
    border-radius: inherit;
    overflow: hidden;
}
.product-card-bg img {
    width: 100%; height: 100%;
    object-fit: cover;
    opacity: 0.12;          /* subtle — content stays readable */
    transition: opacity 0.35s ease;
    display: block;
}
.product-card-has-bg:hover .product-card-bg img {
    opacity: 0.18;          /* slightly more visible on hover */
}

/* Ensure all card content stays above the bg layer */
.product-card-has-bg .product-card-top,
.product-card-has-bg .product-name,
.product-card-has-bg .product-tagline,
.product-card-has-bg .product-desc,
.product-card-has-bg .product-footer {
    position: relative;
    z-index: 1;
}

/* ================================================================
   PRODUCT CARD THUMBNAIL (16:9) — append to assets/css/style.css
================================================================ */

/* Negative margin so thumb bleeds to card edges */
.product-card-thumb {
    margin: -32px -28px 20px;   /* pull out to card padding edges */
    aspect-ratio: 16 / 9;
    overflow: hidden;
    border-radius: 16px 16px 0 0; /* match card top corners */
    max-height: 140px;
}
.product-card-thumb img {
    width: 100%; height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.4s ease;
}
.product-card:hover .product-card-thumb img {
    transform: scale(1.04);
}

/* ================================================================
   NEW FEATURES — append to assets/css/style.css
   1. Product detail modal with bokeh hero
   2. WhatsApp floating button
================================================================ */

/* ── Product card clickable hint ─────────────────────────────── */
.product-card[data-bs-toggle="modal"] {
    transition: var(--transition);
}
.product-card[data-bs-toggle="modal"]:hover {
    cursor: pointer;
}
.product-card[data-bs-toggle="modal"] .product-cta {
    pointer-events: none; /* card handles the click */
}

/* ── Product Modal ───────────────────────────────────────────── */
.product-modal .modal-dialog {
    max-width: 680px;
}
.product-modal-content {
    border: none;
    border-radius: 20px;
    overflow: hidden;
    background: var(--navy-2, #0f1629);
}

/* Hero section */
.product-modal-hero {
    position: relative;
    height: 260px;
    overflow: hidden;
    background: linear-gradient(135deg,
        color-mix(in srgb, var(--hero-color) 30%, #0a0f1e),
        color-mix(in srgb, var(--hero-color) 10%, #0f1629)
    );
}

/* Bokeh layer — full bleed blurred image */
.product-modal-bokeh {
    position: absolute;
    inset: -20px; /* bleed past edges so blur doesn't show gaps */
    z-index: 0;
}
.product-modal-bokeh img {
    width: 100%; height: 100%;
    object-fit: cover;
    filter: blur(24px) brightness(0.45) saturate(1.4);
    transform: scale(1.1); /* prevent blur edge artifacts */
}

/* Sharp centered image on top of bokeh */
.product-modal-hero-img {
    position: absolute;
    inset: 0;
    z-index: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 24px 80px;
}
.product-modal-hero-img img {
    max-height: 180px;
    max-width: 100%;
    object-fit: contain;
    border-radius: 12px;
    box-shadow: 0 16px 48px rgba(0,0,0,0.5);
}

/* No-image fallback */
.product-modal-no-img {
    position: absolute;
    inset: 0;
    z-index: 1;
    display: flex;
    align-items: center;
    justify-content: center;
}
.product-modal-icon-big {
    font-size: 5rem;
    opacity: 0.25;
}

/* Icon badge over hero bottom-left */
.product-modal-hero-overlay {
    position: absolute;
    bottom: 20px;
    left: 28px;
    z-index: 2;
}
.product-modal-icon-wrap {
    width: 52px; height: 52px;
    border-radius: 14px;
    background: color-mix(in srgb, var(--p-color, #6366f1) 20%, rgba(0,0,0,0.4));
    border: 1px solid color-mix(in srgb, var(--p-color, #6366f1) 40%, transparent);
    backdrop-filter: blur(8px);
    display: flex; align-items: center; justify-content: center;
    font-size: 1.3rem;
    color: var(--p-color, #6366f1);
    box-shadow: 0 4px 16px rgba(0,0,0,0.3);
}

/* Close button */
.product-modal-close {
    position: absolute;
    top: 14px; right: 14px;
    z-index: 3;
    width: 34px; height: 34px;
    background: rgba(0,0,0,0.45);
    border: 1px solid rgba(255,255,255,0.15);
    border-radius: 50%;
    color: rgba(255,255,255,0.8);
    display: flex; align-items: center; justify-content: center;
    font-size: .85rem;
    cursor: pointer;
    backdrop-filter: blur(6px);
    transition: all .2s;
}
.product-modal-close:hover {
    background: rgba(239,68,68,0.6);
    color: #fff;
    border-color: transparent;
}

/* Modal body */
.product-modal-body {
    padding: 28px 32px 32px;
    color: rgba(255,255,255,0.85);
}
.product-modal-tag {
    font-size: .75rem;
    font-weight: 700;
    letter-spacing: .12em;
    text-transform: uppercase;
    color: var(--indigo-light, #818cf8);
    margin-bottom: 8px;
}
.product-modal-title {
    font-family: 'Syne', sans-serif;
    font-size: 1.6rem;
    font-weight: 800;
    color: #fff;
    margin-bottom: 16px;
    line-height: 1.2;
}
.product-modal-desc {
    font-size: .95rem;
    color: rgba(255,255,255,0.62);
    line-height: 1.85;
    margin-bottom: 24px;
}

/* Feature highlights grid */
.product-modal-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
    margin-bottom: 28px;
}
.product-modal-feature {
    display: flex;
    align-items: center;
    gap: 10px;
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.07);
    border-radius: 10px;
    padding: 10px 14px;
    font-size: .85rem;
    font-weight: 500;
    color: rgba(255,255,255,0.75);
}
.product-modal-feature i { font-size: 1rem; flex-shrink: 0; }

/* Action buttons */
.product-modal-actions {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}
.btn-modal-cta {
    display: inline-flex; align-items: center;
    padding: 12px 28px;
    border-radius: 999px;
    background: var(--btn-color, #6366f1);
    color: #fff;
    font-weight: 700;
    font-size: .9rem;
    text-decoration: none;
    border: none;
    cursor: pointer;
    transition: all .25s;
    box-shadow: 0 6px 20px color-mix(in srgb, var(--btn-color, #6366f1) 40%, transparent);
}
.btn-modal-cta:hover {
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 10px 28px color-mix(in srgb, var(--btn-color, #6366f1) 50%, transparent);
}
.btn-modal-outline {
    display: inline-flex; align-items: center;
    padding: 12px 24px;
    border-radius: 999px;
    background: transparent;
    border: 1px solid rgba(255,255,255,0.2);
    color: rgba(255,255,255,0.65);
    font-weight: 600;
    font-size: .9rem;
    cursor: pointer;
    transition: all .2s;
}
.btn-modal-outline:hover {
    background: rgba(255,255,255,0.08);
    color: #fff;
}

/* Scrollbar inside modal */
.product-modal .modal-body::-webkit-scrollbar { width: 4px; }
.product-modal .modal-body::-webkit-scrollbar-thumb { background: rgba(255,255,255,0.15); border-radius: 4px; }

/* ── WhatsApp Floating Button ────────────────────────────────── */
.wa-float {
    position: fixed;
    bottom: 28px;
    right: 28px;
    z-index: 9999;
    display: flex;
    align-items: center;
    gap: 0;
    text-decoration: none;
    filter: drop-shadow(0 4px 16px rgba(37,211,102,0.4));
    transition: all .3s cubic-bezier(0.4, 0, 0.2, 1);
}
.wa-float:hover {
    filter: drop-shadow(0 8px 24px rgba(37,211,102,0.6));
    transform: translateY(-3px);
}

/* Label — hidden by default, slides in on hover */
.wa-float-label {
    background: #25d366;
    color: #fff;
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: .82rem;
    font-weight: 700;
    padding: 0 16px 0 20px;
    height: 48px;
    line-height: 48px;
    border-radius: 999px 0 0 999px;
    white-space: nowrap;
    max-width: 0;
    overflow: hidden;
    opacity: 0;
    transition: max-width .35s ease, opacity .25s ease, padding .35s ease;
    margin-right: -2px; /* tuck behind icon */
}
.wa-float:hover .wa-float-label {
    max-width: 160px;
    opacity: 1;
    padding: 0 16px 0 20px;
}

/* Icon circle */
.wa-float-icon {
    width: 56px; height: 56px;
    background: #25d366;
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    font-size: 1.6rem;
    color: #fff;
    flex-shrink: 0;
    position: relative;
    z-index: 1;
    transition: background .2s;
}
.wa-float:hover .wa-float-icon {
    background: #20ba5a;
}

/* Pulse ring animation */
.wa-float-icon::before {
    content: '';
    position: absolute;
    inset: -4px;
    border-radius: 50%;
    border: 2px solid rgba(37,211,102,0.5);
    animation: wa-pulse 2s ease-out infinite;
}
@keyframes wa-pulse {
    0%   { transform: scale(1);   opacity: .7; }
    70%  { transform: scale(1.35); opacity: 0; }
    100% { transform: scale(1.35); opacity: 0; }
}

/* Hide label on mobile, keep just the icon */
@media (max-width: 575px) {
    .wa-float { bottom: 20px; right: 20px; }
    .wa-float:hover .wa-float-label { max-width: 0; opacity: 0; padding: 0; }
    .wa-float-icon { width: 50px; height: 50px; font-size: 1.4rem; }
}

/* ── append to assets/css/style.css ─────────────────────────── */
/* Wrapping anchor for product cards */
.product-card-link {
    text-decoration: none;
    display: block;
    height: 100%;
}
.product-card-link:hover .product-cta {
    color: #fff;
    gap: 10px;
}

.product-card-link,
.product-card-link:hover,
.product-card-link:focus,
.product-card-link:visited {
    text-decoration: none;
    color: inherit;
}