﻿/* ============================================================
   AMBE ELECTRIC & ELECTRONICS — styles.css
   ============================================================ */

/* ---------- 1. CSS VARIABLES ---------- */
:root {
    --primary:      #0d47a1;
    --primary-light:#1976d2;
    --primary-dark: #0a3574;
    --accent:       #ffc107;
    --accent-dark:  #ff8f00;
    --success:      #2e7d32;
    --dark:         #0f172a;
    --dark2:        #1e293b;
    --body-bg:      #f8fafc;
    --text:         #334155;
    --text-light:   #64748b;
    --white:        #ffffff;
    --border:       #e2e8f0;
    --radius-sm:    8px;
    --radius:       16px;
    --radius-lg:    24px;
    --radius-xl:    32px;
    --shadow-sm:    0 2px 8px rgba(13,71,161,.08);
    --shadow:       0 8px 32px rgba(13,71,161,.12);
    --shadow-lg:    0 20px 60px rgba(13,71,161,.18);
    --trans:        all .35s cubic-bezier(.4,0,.2,1);
    --grad-primary: linear-gradient(135deg, #0d47a1 0%, #1976d2 100%);
    --grad-dark:    linear-gradient(135deg, #0f172a 0%, #1e3a5f 100%);
    --topbar-h:     44px;
    --navbar-h:     72px;
}

/* ---------- 2. RESET / BASE ---------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; overflow-x: hidden; }
body {
    font-family: 'Inter', system-ui, sans-serif;
    background: var(--body-bg);
    color: var(--text);
    line-height: 1.7;
    overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }

/* ---------- 3. UTILITY ---------- */
.text-accent   { color: var(--accent) !important; }
.text-primary  { color: var(--primary) !important; }

.section-tag {
    display: inline-block;
    background: linear-gradient(135deg, #e3f2fd, #bbdefb);
    color: var(--primary);
    font-size: .75rem;
    font-weight: 700;
    letter-spacing: .12em;
    text-transform: uppercase;
    padding: .35rem 1rem;
    border-radius: 50px;
    margin-bottom: .75rem;
}

.section-heading {
    font-family: 'Poppins', sans-serif;
    font-size: clamp(1.6rem, 3vw, 2.4rem);
    font-weight: 700;
    color: var(--dark);
    line-height: 1.25;
    margin-bottom: 1rem;
}

.section-sub {
    font-size: 1.05rem;
    color: var(--text-light);
    max-width: 540px;
    margin: 0 auto 1.5rem;
}

.btn-cta-primary {
    display: inline-flex;
    align-items: center;
    gap: .5rem;
    background: var(--grad-primary);
    color: var(--white);
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    font-size: .95rem;
    padding: .85rem 2rem;
    border-radius: 50px;
    border: none;
    cursor: pointer;
    transition: var(--trans);
    box-shadow: 0 6px 20px rgba(13,71,161,.3);
    text-decoration: none;
}
.btn-cta-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 30px rgba(13,71,161,.4);
    color: var(--white);
}
.btn-cta-primary.w-100 { justify-content: center; }

/* ---------- 4. TOPBAR ---------- */
.topbar {
    background: var(--grad-dark);
    height: var(--topbar-h);
    display: flex;
    align-items: center;
}
.topbar-inner {
    width: 100%;
    max-width: 1320px;
    margin: 0 auto;
    padding: 0 1.5rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
}
.topbar-left, .topbar-right {
    display: flex;
    align-items: center;
    gap: 1.25rem;
}
.topbar-link {
    display: flex;
    align-items: center;
    gap: .4rem;
    color: rgba(255,255,255,.75);
    font-size: .78rem;
    font-weight: 500;
    transition: var(--trans);
    white-space: nowrap;
}
.topbar-link i { font-size: .8rem; }
.topbar-link:hover { color: var(--accent); }
.topbar-divider {
    width: 1px;
    height: 14px;
    background: rgba(255,255,255,.2);
}
.topbar-social { display: flex; align-items: center; gap: .5rem; }
.tsoc {
    width: 26px;
    height: 26px;
    border-radius: 50%;
    background: rgba(255,255,255,.1);
    color: rgba(255,255,255,.75);
    font-size: .7rem;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--trans);
}
.tsoc:hover { background: var(--accent); color: var(--dark); }
.whatsapp-top {
    display: flex;
    align-items: center;
    gap: .4rem;
    background: #25D366;
    color: #fff;
    font-size: .78rem;
    font-weight: 600;
    padding: .2rem .7rem;
    border-radius: 50px;
    transition: var(--trans);
}
.whatsapp-top:hover { background: #128c53; color: #fff; }

/* ---------- 5. NAVBAR ---------- */
#mainNav {
    background: rgba(255,255,255,.95);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--border);
    padding: 0;
    height: var(--navbar-h);
    transition: var(--trans);
    z-index: 1000;
}
#mainNav.scrolled {
    box-shadow: 0 4px 24px rgba(13,71,161,.12);
    background: rgba(255,255,255,.98);
}
#mainNav .container { height: 100%; }
.navbar-brand { display: flex; align-items: center; gap: .75rem; padding: 0; }
.brand-icon {
    width: 44px;
    height: 44px;
    border-radius: 12px;
    background: var(--grad-primary);
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    flex-shrink: 0;
    box-shadow: 0 4px 12px rgba(13,71,161,.3);
}
.brand-text { display: flex; flex-direction: column; line-height: 1.1; }
.brand-name {
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
    font-size: 1.05rem;
    color: var(--primary);
}
.brand-sub {
    font-size: .72rem;
    font-weight: 500;
    color: var(--text-light);
    letter-spacing: .03em;
}
.navbar-nav { gap: .25rem; }
.nav-pill {
    font-family: 'Inter', sans-serif;
    font-weight: 500;
    font-size: .875rem;
    color: var(--text) !important;
    padding: .45rem .9rem !important;
    border-radius: 50px;
    transition: var(--trans);
}
.nav-pill:hover, .nav-pill.active {
    background: linear-gradient(135deg,#e3f2fd,#bbdefb);
    color: var(--primary) !important;
}
.btn-nav-cta {
    display: inline-flex;
    align-items: center;
    gap: .4rem;
    background: var(--grad-primary);
    color: var(--white) !important;
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    font-size: .83rem;
    padding: .55rem 1.3rem !important;
    border-radius: 50px;
    transition: var(--trans);
    box-shadow: 0 4px 12px rgba(13,71,161,.25);
}
.btn-nav-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(13,71,161,.35);
    color: var(--white) !important;
}
.toggler-icon {
    width: 22px;
    height: 2px;
    background: var(--primary);
    display: block;
    border-radius: 2px;
    position: relative;
    transition: var(--trans);
}
.toggler-icon::before, .toggler-icon::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 2px;
    background: var(--primary);
    border-radius: 2px;
    transition: var(--trans);
}
.toggler-icon::before { top: -7px; }
.toggler-icon::after  { top: 7px; }
.navbar-toggler { border: none; background: transparent; padding: .5rem; }
.navbar-toggler:focus { box-shadow: none; }

/* ---------- 6. HERO ---------- */
.hero-section {
    height: 100vh;
    min-height: 600px;
    max-height: 900px;
    position: relative;
    margin-top: 0;
}
.carousel-item {
    background-size: cover !important;
    background-position: center !important;
    background-repeat: no-repeat !important;
}
.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(10,53,116,.85) 0%, rgba(13,71,161,.65) 60%, rgba(0,0,0,.3) 100%);
    z-index: 1;
}
.hero-overlay-2 {
    background: linear-gradient(135deg, rgba(5,25,60,.88) 0%, rgba(14,70,150,.5) 60%, rgba(0,0,0,.25) 100%);
}
.hero-overlay-3 {
    background: linear-gradient(135deg, rgba(10,40,90,.9) 0%, rgba(30,90,170,.55) 60%, rgba(0,0,0,.2) 100%);
}
.hero-content {
    position: relative;
    z-index: 2;
    max-width: 680px;
    animation: heroIn .9s cubic-bezier(.4,0,.2,1) both;
}
@keyframes heroIn {
    from { opacity:0; transform: translateY(40px); }
    to   { opacity:1; transform: translateY(0);    }
}
.hero-badge {
    display: inline-flex;
    align-items: center;
    background: rgba(255,193,7,.15);
    border: 1px solid rgba(255,193,7,.4);
    color: var(--accent);
    font-size: .8rem;
    font-weight: 600;
    padding: .4rem 1rem;
    border-radius: 50px;
    margin-bottom: 1.25rem;
    letter-spacing: .04em;
}
.hero-title {
    font-family: 'Poppins', sans-serif;
    font-size: clamp(2rem, 5vw, 3.5rem);
    font-weight: 800;
    color: var(--white);
    line-height: 1.15;
    margin-bottom: 1rem;
}
.hero-highlight { color: var(--accent); }
.hero-desc {
    font-size: 1.1rem;
    color: rgba(255,255,255,.85);
    margin-bottom: 2rem;
    max-width: 560px;
}
.hero-actions {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    margin-bottom: 2.5rem;
}
.btn-hero-primary {
    display: inline-flex;
    align-items: center;
    gap: .6rem;
    background: var(--accent);
    color: var(--dark);
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
    font-size: .95rem;
    padding: .85rem 2rem;
    border-radius: 50px;
    transition: var(--trans);
    box-shadow: 0 6px 20px rgba(255,193,7,.4);
}
.btn-hero-primary:hover {
    background: var(--accent-dark);
    color: var(--white);
    transform: translateY(-3px);
    box-shadow: 0 12px 28px rgba(255,143,0,.5);
}
.btn-hero-outline {
    display: inline-flex;
    align-items: center;
    gap: .6rem;
    background: transparent;
    color: var(--white);
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    font-size: .95rem;
    padding: .85rem 2rem;
    border-radius: 50px;
    border: 2px solid rgba(255,255,255,.6);
    transition: var(--trans);
}
.btn-hero-outline:hover {
    background: rgba(255,255,255,.15);
    border-color: var(--white);
    color: var(--white);
    transform: translateY(-3px);
}
.hero-stats {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    flex-wrap: wrap;
}
.stat-item { text-align: left; }
.stat-num {
    display: block;
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
    font-size: 1.3rem;
    color: var(--white);
}
.stat-label {
    font-size: .75rem;
    color: rgba(255,255,255,.7);
    text-transform: uppercase;
    letter-spacing: .08em;
}
.stat-divider {
    width: 1px;
    height: 40px;
    background: rgba(255,255,255,.25);
    flex-shrink: 0;
}
.hero-indicators {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: .5rem;
    z-index: 10;
}
.hero-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    border: 2px solid rgba(255,255,255,.5);
    background: transparent;
    padding: 0;
    transition: var(--trans);
    cursor: pointer;
}
.hero-dot.active {
    background: var(--accent);
    border-color: var(--accent);
    width: 28px;
    border-radius: 4px;
}
.hero-ctrl {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: rgba(255,255,255,.15);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,.3);
    color: var(--white);
    font-size: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10;
    transition: var(--trans);
    cursor: pointer;
}
.hero-ctrl:hover { background: rgba(255,255,255,.3); }
.hero-ctrl-prev { left: 1.5rem; }
.hero-ctrl-next { right: 1.5rem; }
.scroll-hint {
    position: absolute;
    bottom: 2.5rem;
    right: 2rem;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255,255,255,.15);
    border: 1px solid rgba(255,255,255,.4);
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: .85rem;
    z-index: 10;
    animation: bounceDown 1.8s ease-in-out infinite;
}
@keyframes bounceDown {
    0%,100%{ transform: translateY(0); }
    50%{ transform: translateY(6px); }
}

/* ---------- 7. STATS RIBBON ---------- */
.stats-ribbon {
    background: var(--grad-primary);
    padding: 2rem 0;
}
.ribbon-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 1rem;
    text-align: center;
    border-right: 1px solid rgba(255,255,255,.15);
}
.ribbon-item:last-child { border-right: none; }
.ribbon-icon {
    font-size: 1.6rem;
    color: rgba(255,255,255,.7);
    margin-bottom: .4rem;
}
.ribbon-item > div {
    display: flex;
    align-items: baseline;
    gap: 2px;
    color: var(--white);
    font-family: 'Poppins', sans-serif;
    font-weight: 800;
    font-size: 1.8rem;
}
.ribbon-num {
    font-family: 'Poppins', sans-serif;
    font-weight: 800;
    font-size: 1.8rem;
    color: var(--white);
}
.ribbon-label {
    font-size: .78rem;
    color: rgba(255,255,255,.7);
    text-transform: uppercase;
    letter-spacing: .08em;
}

/* ---------- 8. ABOUT ---------- */
.about-section {
    padding: 6rem 0;
    background: var(--white);
    overflow: hidden;
}
.about-img-wrap {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: visible;
}
.about-img {
    width: 100%;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    aspect-ratio: 4/3;
    object-fit: cover;
}
.about-exp-badge {
    position: absolute;
    bottom: -1.5rem;
    right: -1.5rem;
    background: var(--grad-primary);
    color: var(--white);
    border-radius: var(--radius);
    padding: 1.2rem 1.5rem;
    text-align: center;
    box-shadow: var(--shadow);
    z-index: 2;
}
.exp-num {
    display: block;
    font-family: 'Poppins', sans-serif;
    font-weight: 800;
    font-size: 2rem;
    line-height: 1;
}
.exp-label {
    font-size: .72rem;
    color: rgba(255,255,255,.8);
    text-transform: uppercase;
    letter-spacing: .08em;
}
.about-shape {
    position: absolute;
    top: -2rem;
    left: -2rem;
    width: 120px;
    height: 120px;
    border-radius: 50%;
    background: linear-gradient(135deg,var(--accent) 0%,var(--accent-dark) 100%);
    opacity: .15;
    z-index: 0;
}
.about-desc {
    font-size: 1.05rem;
    color: var(--text-light);
    margin-bottom: 1.5rem;
    line-height: 1.8;
}
.about-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    margin-top: 1.5rem;
}
.about-feat {
    display: flex;
    align-items: center;
    gap: .85rem;
    font-size: .9rem;
    color: var(--text);
}
.about-feat strong { display: block; font-size: .9rem; }
.feat-icon-wrap {
    width: 44px;
    height: 44px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    flex-shrink: 0;
}

/* ---------- 9. SERVICES ---------- */
.services-section {
    padding: 6rem 0;
    background: var(--body-bg);
}
.svc-card {
    background: var(--white);
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: var(--trans);
    height: 100%;
    display: flex;
    flex-direction: column;
    border: 1px solid var(--border);
}
.svc-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
    border-color: rgba(13,71,161,.15);
}
.svc-img-wrap {
    position: relative;
    overflow: hidden;
    height: 200px;
}
.svc-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .5s ease;
}
.svc-card:hover .svc-img { transform: scale(1.08); }
.svc-icon-badge {
    position: absolute;
    bottom: 15px;
    left: 1.25rem;
    width: 48px;
    height: 48px;
    border-radius: 14px;
    color: var(--white);
    font-size: 1.2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 6px 18px rgba(0,0,0,.25);
    z-index: 2;
}
.svc-body {
    padding: 2.25rem 1.5rem 1.5rem;
    display: flex;
    flex-direction: column;
    flex: 1;
}
.svc-title {
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
    font-size: 1.05rem;
    color: var(--dark);
    margin-bottom: .5rem;
}
.svc-desc {
    font-size: .9rem;
    color: var(--text-light);
    flex: 1;
    line-height: 1.7;
}
.svc-link {
    display: inline-flex;
    align-items: center;
    gap: .3rem;
    color: var(--primary);
    font-weight: 600;
    font-size: .85rem;
    margin-top: 1rem;
    transition: var(--trans);
}
.svc-link:hover { gap: .6rem; color: var(--primary-dark); }

/* ---------- 10. WHY CHOOSE US ---------- */
.why-section {
    padding: 6rem 0;
    background: linear-gradient(135deg, #f0f7ff 0%, #e8f4fb 100%);
}
.why-card {
    background: var(--white);
    border-radius: var(--radius);
    padding: 2rem;
    display: flex;
    align-items: flex-start;
    gap: 1.25rem;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--border);
    transition: var(--trans);
    height: 100%;
}
.why-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow);
    border-color: rgba(13,71,161,.15);
}
.why-icon {
    width: 56px;
    height: 56px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    flex-shrink: 0;
}
.why-title {
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
    font-size: 1rem;
    color: var(--dark);
    margin-bottom: .4rem;
}
.why-desc {
    font-size: .875rem;
    color: var(--text-light);
    margin: 0;
    line-height: 1.7;
}

/* ---------- 11. BRANDS ---------- */
.brands-section {
    padding: 6rem 0;
    background: var(--white);
}
.brands-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
}
.brand-tile {
    background: var(--body-bg);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    /* padding: 1.75rem 1.5rem; */
    display: flex;
    align-items: center;
    justify-content: center;
    /* height: 110px; */
    transition: var(--trans);
}
.brand-tile img {
    /* max-height: 55px; */
    width: auto;
    /* filter: grayscale(1) opacity(.6); */
    transition: var(--trans);
    object-fit: contain;
    border-radius: var(--radius);
}
.brand-tile:hover {
    background: linear-gradient(135deg,#e3f2fd,#dbeafe);
    border-color: rgba(13,71,161,.2);
    box-shadow: var(--shadow);
    transform: translateY(-4px);
}
.brand-tile:hover img { filter: grayscale(0) opacity(1); }

/* ---------- 12. GALLERY ---------- */
.gallery-section {
    padding: 6rem 0;
    background: var(--body-bg);
}
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1rem;
}
.gal-item {
    position: relative;
    border-radius: var(--radius-sm);
    overflow: hidden;
    cursor: pointer;
    aspect-ratio: 1;
    box-shadow: var(--shadow-sm);
}
.gal-item:nth-child(3)  { grid-row: span 2; aspect-ratio: auto; }
.gal-item:nth-child(7)  { grid-row: span 2; aspect-ratio: auto; }
.gal-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .5s ease;
    display: block;
}
.gal-item:hover .gal-img { transform: scale(1.08); }
.gal-overlay {
    position: absolute;
    inset: 0;
    background: rgba(13,71,161,.6);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    font-size: 1.6rem;
    color: var(--white);
    transition: var(--trans);
}
.gal-item:hover .gal-overlay { opacity: 1; }

/* Lightbox */
.lightbox-modal {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,.92);
    z-index: 9999;
    align-items: center;
    justify-content: center;
}
.lightbox-modal.active { display: flex; }
.lb-img-wrap { max-width: 90vw; max-height: 85vh; }
.lb-img { max-width: 100%; max-height: 85vh; border-radius: var(--radius-sm); object-fit: contain; }
.lb-close {
    position: absolute;
    top: 1.25rem;
    right: 1.25rem;
    background: rgba(255,255,255,.15);
    border: none;
    color: var(--white);
    width: 44px;
    height: 44px;
    border-radius: 50%;
    font-size: 1.1rem;
    cursor: pointer;
    transition: var(--trans);
    display: flex;
    align-items: center;
    justify-content: center;
}
.lb-close:hover { background: rgba(255,255,255,.3); }
.lb-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255,255,255,.15);
    border: none;
    color: var(--white);
    width: 48px;
    height: 48px;
    border-radius: 50%;
    font-size: 1.1rem;
    cursor: pointer;
    transition: var(--trans);
    display: flex;
    align-items: center;
    justify-content: center;
}
.lb-nav:hover { background: rgba(255,255,255,.3); }
.lb-prev { left: 1.5rem; }
.lb-next { right: 1.5rem; }

/* ---------- 13. CONTACT ---------- */
.contact-section {
    padding: 6rem 0;
    background: var(--white);
}
.contact-form-card {
    background: var(--body-bg);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 2.5rem;
}
.cf-heading {
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 1.75rem;
}
.cf-field { margin-bottom: 1.25rem; }
.cf-label {
    display: block;
    font-size: .85rem;
    font-weight: 600;
    color: var(--text);
    margin-bottom: .5rem;
}
.cf-input-wrap { position: relative; }
.cf-icon {
    position: absolute;
    top: 50%;
    left: 1rem;
    transform: translateY(-50%);
    color: var(--text-light);
    font-size: .9rem;
    pointer-events: none;
    z-index: 1;
}
.cf-textarea-wrap .cf-icon { top: 1rem; transform: none; }
.cf-input {
    width: 100%;
    padding: .8rem 1rem .8rem 2.6rem;
    border: 1.5px solid var(--border);
    border-radius: var(--radius-sm);
    background: var(--white);
    color: var(--text);
    font-size: .9rem;
    font-family: 'Inter', sans-serif;
    transition: var(--trans);
    appearance: none;
    -webkit-appearance: none;
}
.cf-input:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(13,71,161,.1);
}
textarea.cf-input { resize: vertical; min-height: 120px; }
.cf-error {
    display: block;
    color: #dc2626;
    font-size: .78rem;
    margin-top: .3rem;
}
.cf-success {
    background: linear-gradient(135deg,#d1fae5,#a7f3d0);
    border: 1px solid #34d399;
    color: var(--success);
    border-radius: var(--radius-sm);
    padding: 1rem 1.25rem;
    margin-top: 1rem;
    font-weight: 600;
    font-size: .9rem;
    display: flex;
    align-items: center;
}
.contact-info-card {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    background: var(--body-bg);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 1.25rem 1.5rem;
    transition: var(--trans);
    margin-bottom: 20px;
}
.contact-info-card:hover { box-shadow: var(--shadow); border-color: rgba(13,71,161,.15); }
.ci-icon {
    width: 46px;
    height: 46px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    flex-shrink: 0;
}
.ci-label {
    font-size: .78rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .08em;
    color: var(--text-light);
    margin-bottom: .25rem;
}
.ci-value {
    font-size: .9rem;
    color: var(--text);
    margin: 0;
    line-height: 1.5;
}
.ci-link { color: var(--primary); font-weight: 600; transition: var(--trans); }
.ci-link:hover { color: var(--primary-dark); }
.map-card {
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--border);
}

/* ---------- 14. FOOTER ---------- */
.site-footer { background: var(--grad-dark); color: rgba(255,255,255,.75); }
.footer-top { padding: 4rem 0 2.5rem; }
.footer-brand {
    display: flex;
    align-items: center;
    gap: .85rem;
    margin-bottom: 1rem;
}
.footer-brand-icon {
    width: 46px;
    height: 46px;
    border-radius: 12px;
    background: rgba(255,193,7,.2);
    color: var(--accent);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
}
.footer-brand-name {
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
    font-size: 1.05rem;
    color: var(--white);
    line-height: 1.2;
}
.footer-brand-sub {
    font-size: .72rem;
    color: var(--accent);
    letter-spacing: .04em;
}
.footer-desc {
    font-size: .875rem;
    line-height: 1.8;
    margin-bottom: 1.25rem;
    max-width: 320px;
}
.footer-socials { display: flex; gap: .6rem; flex-wrap: wrap; }
.fsoc {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: rgba(255,255,255,.08);
    color: rgba(255,255,255,.7);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: .85rem;
    transition: var(--trans);
}
.fsoc:hover { background: var(--primary-light); color: var(--white); transform: translateY(-3px); }
.fsoc.fsoc-wa:hover { background: #25D366; }
.footer-heading {
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
    font-size: .85rem;
    text-transform: uppercase;
    letter-spacing: .1em;
    color: var(--white);
    margin-bottom: 1.25rem;
}
.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: .55rem;
}
.footer-links a {
    font-size: .875rem;
    color: rgba(255,255,255,.6);
    transition: var(--trans);
    display: flex;
    align-items: center;
    gap: .4rem;
}
.footer-links a::before {
    content: '\f054';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    font-size: .6rem;
    color: var(--accent);
}
.footer-links a:hover { color: var(--accent); padding-left: .25rem; }
.footer-contact {
    display: flex;
    flex-direction: column;
    gap: .85rem;
}
.fc-item {
    display: flex;
    align-items: flex-start;
    gap: .75rem;
    font-size: .85rem;
}
.fc-item i { color: var(--accent); font-size: .9rem; margin-top: .15rem; flex-shrink: 0; }
.fc-item a { color: rgba(255,255,255,.6); transition: var(--trans); }
.fc-item a:hover { color: var(--accent); }
.fc-item span { color: rgba(255,255,255,.6); }
.footer-bottom {
    border-top: 1px solid rgba(255,255,255,.08);
    padding: 1.25rem 0;
    font-size: .8rem;
    color: rgba(255,255,255,.45);
}
.footer-tagline { color: rgba(255,255,255,.45); }

/* ---------- 15. FLOATING BUTTONS ---------- */
.fab-btn {
    position: fixed;
    display: flex;
    align-items: center;
    gap: .5rem;
    border-radius: 50px;
    color: var(--white);
    font-weight: 700;
    font-size: 1rem;
    padding: .75rem 1.25rem;
    box-shadow: 0 6px 24px rgba(0,0,0,.25);
    z-index: 999;
    transition: var(--trans);
    cursor: pointer;
}
.fab-label {
    font-size: .8rem;
    font-weight: 600;
    white-space: nowrap;
}
.fab-wa {
    bottom: 7rem;
    right: 1.5rem;
    background: #25D366;
}
.fab-wa:hover { background: #128c53; transform: translateY(-3px) scale(1.03); color: var(--white); }
.fab-call {
    bottom: 4rem;
    right: 1.5rem;
    background: var(--grad-primary);
}
.fab-call:hover { transform: translateY(-3px) scale(1.03); color: var(--white); }
.scroll-top-btn {
    position: fixed;
    bottom: 1.25rem;
    right: 1.5rem;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: var(--grad-primary);
    color: var(--white);
    border: none;
    font-size: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: var(--shadow);
    z-index: 999;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: var(--trans);
}
.scroll-top-btn.visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}
.scroll-top-btn:hover { transform: translateY(-3px); box-shadow: var(--shadow-lg); }

/* ---------- 16. REVEAL ---------- */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity .7s ease, transform .7s ease;
}
.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}

/* ---------- 17. RESPONSIVE ---------- */
@media (max-width: 991.98px) {
    .topbar-inner { flex-wrap: wrap; gap: .5rem; padding: .5rem 1rem; }
    .topbar-left  { flex-wrap: wrap; gap: .75rem; }
    :root { --topbar-h: auto; }
    .about-img-wrap { overflow: hidden; margin-bottom: 2.5rem; }
    #mainNav .navbar-collapse {
        background: var(--white);
        border-radius: var(--radius);
        padding: 1rem;
        margin-top: .5rem;
        box-shadow: var(--shadow);
        border: 1px solid var(--border);
    }
    .navbar-nav { gap: .15rem; flex-direction: column; }
    .nav-pill { border-radius: var(--radius-sm); }
    .about-features { grid-template-columns: 1fr; }
    .about-exp-badge { right: 0; }
    .brands-grid { grid-template-columns: repeat(2, 1fr); }
    .gallery-grid { grid-template-columns: repeat(2, 1fr); }
    .gal-item:nth-child(3),
    .gal-item:nth-child(7) { grid-row: span 1; }
    .topbar{
        display: none;
    }
}
@media (max-width: 767.98px) {
    .hero-section { min-height: 500px; max-height: 750px; }
    .hero-title   { font-size: 1.9rem; }
    .hero-stats   { display: none; }
    .ribbon-item  { border-right: none; border-bottom: 1px solid rgba(255,255,255,.15); }
    .ribbon-item:last-child { border-bottom: none; }
    .contact-form-card { padding: 1.5rem; }
    .brands-grid  { grid-template-columns: repeat(2, 1fr); }
    .gallery-grid { grid-template-columns: repeat(2, 1fr); }
    
}
@media (max-width: 575.98px) {
    .section-heading { font-size: 1.5rem; }
    .hero-actions { flex-direction: column; gap: .75rem; }
    .btn-hero-primary,
    .btn-hero-outline { width: 100%; justify-content: center; }
    .about-features { grid-template-columns: 1fr; }
    .gallery-grid { grid-template-columns: 1fr 1fr; gap: .5rem; }
    .brands-grid  { grid-template-columns: 1fr 1fr; }
}

