/* ==========================================
   LIFTORA ELEVATORS — MAIN STYLESHEET
   Modern Premium Design 2025
========================================== */

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

:root {
    --gold:       #C9A84C;
    --gold-light: #e8c97e;
    --dark:       #0D0D0D;
    --dark-2:     #161616;
    --dark-3:     #1E1E1E;
    --text:       #ECECEC;
    --text-muted: #999;
    --white:      #FFFFFF;
    --light-bg:   #F8F8F6;
    --border:     rgba(255,255,255,0.08);

    --font-body:    'Plus Jakarta Sans', sans-serif;
    --font-display: 'Playfair Display', serif;
    --transition:   0.35s cubic-bezier(0.4,0,0.2,1);
    --shadow-card:  0 20px 60px rgba(0,0,0,0.12);
    --radius:       14px;
    --radius-sm:    8px;
}

html { scroll-behavior: smooth; }

body {
    font-family: var(--font-body);
    color: #222;
    background: #fff;
    line-height: 1.7;
    overflow-x: hidden;
}

img { max-width: 100%; display: block; }
a  { text-decoration: none; color: inherit; }
ul { list-style: none; }

/* ---- UTILITY ---- */
.container {
    max-width: 1260px;
    margin: 0 auto;
    padding: 0 24px;
}
.section { padding: 100px 0; }

.section-eyebrow {
    display: inline-block;
    font-size: 0.78rem;
    font-weight: 600;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 16px;
}
.section-eyebrow.light { color: var(--gold-light); }

.section-heading {
    font-size: clamp(2rem, 4vw, 3rem);
    font-family: var(--font-display);
    line-height: 1.2;
    color: #111;
    margin-bottom: 20px;
}
.section-heading.light { color: #fff; }
.section-heading.center { text-align: center; }
.section-heading em { color: var(--gold); font-style: italic; }

.section-body  { color: #555; margin-bottom: 16px; }
.section-subtext { color: #666; text-align: center; max-width: 680px; margin: 0 auto 60px; }

.center-btn-wrap { text-align: center; margin-top: 50px; }

/* ---- BUTTONS ---- */
.btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--gold);
    color: #fff;
    padding: 14px 34px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 0.9rem;
    letter-spacing: 0.5px;
    transition: var(--transition);
    border: 2px solid var(--gold);
}
.btn-primary:hover {
    background: transparent;
    color: var(--gold);
}

.btn-ghost {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: transparent;
    color: #fff;
    padding: 14px 34px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.9rem;
    border: 2px solid rgba(255,255,255,0.5);
    transition: var(--transition);
}
.btn-ghost:hover { background: rgba(255,255,255,0.15); border-color: #fff; }

.btn-ghost-white {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: transparent;
    color: #fff;
    padding: 14px 30px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.9rem;
    border: 2px solid rgba(255,255,255,0.6);
    transition: var(--transition);
}
.btn-ghost-white:hover { background: rgba(255,255,255,0.15); }

.btn-cta {
    display: inline-block;
    background: var(--gold);
    color: #fff;
    padding: 11px 26px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 0.85rem;
    transition: var(--transition);
}
.btn-cta:hover { background: var(--gold-light); }


/* ==========================================
   HEADER
========================================== */
.header {
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 9000;
    padding: 0;
    transition: var(--transition);
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 40px;
    background: transparent;
    transition: var(--transition);
}

/* Scrolled state */
.header.scrolled .header-inner {
    background: rgba(10,10,10,0.96);
    backdrop-filter: blur(20px);
    padding: 14px 40px;
    box-shadow: 0 4px 30px rgba(0,0,0,0.4);
}

/* Logo */
.logo {
    display: flex;
    align-items: center;
    gap: 12px;
    color: #fff;
}
.logo-text {
    font-family: var(--font-body);
    font-weight: 800;
    font-size: 1.1rem;
    letter-spacing: 1px;
    color: #fff;
}
.logo-thin { font-weight: 300; }

/* Nav */
.nav-list {
    display: flex;
    gap: 8px;
    align-items: center;
}
.nav-link {
    color: rgba(255,255,255,0.85);
    font-size: 0.88rem;
    font-weight: 500;
    padding: 8px 14px;
    border-radius: 6px;
    transition: var(--transition);
    display: flex;
    align-items: center;
    gap: 5px;
}
.nav-link:hover, .nav-link.active {
    color: var(--gold);
    background: rgba(201,168,76,0.1);
}

/* Dropdown menus */
.has-dropdown {
    position: relative;
}
.has-dropdown > .nav-link i {
    transition: transform var(--transition);
    font-size: 0.7rem;
}
.has-dropdown:hover > .nav-link i {
    transform: rotate(180deg);
}
.dropdown {
    display: none;
    position: absolute;
    top: 100%;
    margin-top: 10px;
    left: 0;
    min-width: 220px;
    background: rgba(15,15,15,0.97);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(201,168,76,0.2);
    border-radius: var(--radius-sm);
    padding: 8px 0;
    box-shadow: 0 20px 60px rgba(0,0,0,0.5);
    z-index: 9999;
    list-style: none;
}
.dropdown::before {
    content: '';
    position: absolute;
    top: -10px;
    left: 0;
    right: 0;
    height: 10px;
    background: transparent;
}
.has-dropdown:hover .dropdown {
    display: block;
}
.dropdown li a {
    display: block;
    padding: 10px 18px;
    color: rgba(255,255,255,0.75);
    font-size: 0.87rem;
    font-weight: 500;
    transition: var(--transition);
    white-space: nowrap;
}
.dropdown li a:hover {
    color: var(--gold);
    background: rgba(201,168,76,0.08);
    padding-left: 24px;
}

/* Header actions */
.header-actions { display: flex; align-items: center; gap: 16px; }

/* Hamburger */
.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 4px;
}
.hamburger span {
    display: block;
    width: 24px; height: 2px;
    background: #fff;
    border-radius: 2px;
    transition: var(--transition);
}

/* Mobile menu */
.mobile-menu {
    display: none;
    background: var(--dark-2);
    border-top: 1px solid var(--border);
    padding: 20px 40px;
    max-height: calc(100vh - 70px);
    overflow-y: auto;
}
.mobile-menu.open { display: block; }
.mobile-menu ul li a {
    display: block;
    padding: 12px 0;
    color: rgba(255,255,255,0.8);
    font-size: 1rem;
    font-weight: 500;
    border-bottom: 1px solid var(--border);
    transition: var(--transition);
}
.mobile-menu ul li a:hover { color: var(--gold); padding-left: 8px; }
.mobile-menu-parent {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid var(--border);
}
.mobile-menu-parent a {
    border-bottom: none !important;
    flex: 1;
}
.mobile-menu-toggle {
    padding: 12px 0 12px 20px;
    color: rgba(255,255,255,0.8);
    cursor: pointer;
    font-size: 1.2rem;
    transition: var(--transition);
}
.mobile-submenu {
    display: none;
    background: rgba(0,0,0,0.2);
    padding-left: 15px;
}
.mobile-submenu.open {
    display: block;
}
.mobile-has-dropdown.open .mobile-menu-toggle {
    transform: rotate(180deg);
    color: var(--gold);
}


/* ==========================================
   HERO SLIDER
========================================== */
.hero {
    position: relative;
    height: 100vh;
    min-height: 640px;
    overflow: hidden;
}

.hero-track {
    position: relative;
    width: 100%; height: 100%;
}

.hero-slide {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    opacity: 0;
    transition: opacity 1s ease;
    display: flex;
    align-items: center;
}
.hero-slide.active { opacity: 1; z-index: 2; }

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        90deg,
        rgba(0,0,0,0.75) 0%,
        rgba(0,0,0,0.35) 60%,
        rgba(0,0,0,0.1) 100%
    );
}

.hero-text {
    position: relative;
    z-index: 3;
    max-width: 680px;
    padding: 0 80px;
    color: #fff;
}

.hero-badge {
    display: inline-block;
    background: rgba(201,168,76,0.2);
    border: 1px solid rgba(201,168,76,0.5);
    color: var(--gold-light);
    padding: 6px 16px;
    border-radius: 50px;
    font-size: 0.78rem;
    font-weight: 600;
    letter-spacing: 1px;
    margin-bottom: 24px;
}

.hero-text h1 {
    font-family: var(--font-display);
    font-size: clamp(2.2rem, 4vw, 3.8rem);
    line-height: 1.15;
    margin-bottom: 20px;
    color: #fff;
}
.hero-text h1 em { color: var(--gold-light); font-style: italic; }

.hero-text p {
    font-size: 1.05rem;
    color: rgba(255,255,255,0.8);
    max-width: 520px;
    margin-bottom: 36px;
    line-height: 1.8;
}

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

/* Slide controls */
.hero-controls {
    position: absolute;
    bottom: 44px;
    left: 80px;
    z-index: 10;
    display: flex;
    align-items: center;
    gap: 20px;
}
.hero-btn {
    width: 46px; height: 46px;
    border-radius: 50%;
    border: 1.5px solid rgba(255,255,255,0.4);
    background: rgba(255,255,255,0.1);
    color: #fff;
    font-size: 0.9rem;
    cursor: pointer;
    transition: var(--transition);
    display: flex; align-items: center; justify-content: center;
    backdrop-filter: blur(6px);
}
.hero-btn:hover { background: var(--gold); border-color: var(--gold); }

.hero-dots { display: flex; gap: 10px; }
.dot {
    width: 8px; height: 8px;
    border-radius: 50%;
    border: none;
    background: rgba(255,255,255,0.35);
    cursor: pointer;
    transition: var(--transition);
}
.dot.active { background: var(--gold); width: 28px; border-radius: 4px; }

/* Scroll hint */
.scroll-hint {
    position: absolute;
    bottom: 44px;
    right: 40px;
    z-index: 10;
    color: rgba(255,255,255,0.5);
    font-size: 1.3rem;
    animation: bounce 2s infinite;
}
@keyframes bounce {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(8px); }
}


/* ==========================================
   TRUST BAR
========================================== */
.trust-bar {
    background: var(--dark);
    padding: 22px 0;
    border-bottom: 1px solid rgba(201,168,76,0.2);
}
.trust-inner {
    max-width: 1260px;
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0;
    flex-wrap: wrap;
}
.trust-item {
    display: flex;
    align-items: center;
    gap: 10px;
    color: rgba(255,255,255,0.75);
    font-size: 0.85rem;
    font-weight: 500;
    padding: 8px 32px;
}
.trust-item i { color: var(--gold); font-size: 1.1rem; }
.trust-divider {
    width: 1px;
    height: 30px;
    background: rgba(255,255,255,0.15);
}


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

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

.about-img-wrap {
    position: relative;
}
.about-img {
    width: 100%;
    height: 580px;
    object-fit: cover;
    border-radius: var(--radius);
    box-shadow: var(--shadow-card);
}

.about-badge-card {
    position: absolute;
    bottom: -30px;
    right: -30px;
    background: var(--gold);
    color: #fff;
    padding: 28px 32px;
    border-radius: var(--radius);
    text-align: center;
    box-shadow: 0 16px 40px rgba(201,168,76,0.4);
}
.about-badge-card h3 {
    font-size: 2.8rem;
    font-weight: 800;
    line-height: 1;
    margin-bottom: 4px;
}
.about-badge-card p {
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.5px;
    opacity: 0.9;
    line-height: 1.4;
}

.about-checklist {
    margin: 28px 0 32px;
    display: flex;
    flex-direction: column;
    gap: 12px;
}
.about-checklist li {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 0.92rem;
    color: #444;
}
.about-checklist li i { color: var(--gold); font-size: 1rem; }


/* ==========================================
   STATS
========================================== */
.stats-section {
    background: var(--dark);
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}
.stats-section::before {
    content: '';
    position: absolute;
    top: -100px; left: 50%;
    transform: translateX(-50%);
    width: 600px; height: 600px;
    background: radial-gradient(circle, rgba(201,168,76,0.08) 0%, transparent 70%);
    pointer-events: none;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2px;
}

.stat-card {
    text-align: center;
    padding: 48px 20px;
    position: relative;
    color: #fff;
    border-right: 1px solid var(--border);
}
.stat-card:last-child { border-right: none; }

.stat-num {
    font-size: 4rem;
    font-weight: 800;
    color: var(--gold);
    display: inline-block;
    line-height: 1;
}
.stat-plus {
    font-size: 2rem;
    font-weight: 700;
    color: var(--gold);
    vertical-align: super;
}
.stat-card p {
    font-size: 0.85rem;
    color: var(--text-muted);
    letter-spacing: 0.5px;
    margin-top: 12px;
    line-height: 1.5;
}


/* ==========================================
   PRODUCTS
========================================== */
.products-section { background: #fff; }

.products-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: 340px 340px;
    gap: 16px;
}

.product-card {
    position: relative;
    border-radius: var(--radius);
    overflow: hidden;
    background-size: cover;
    background-position: center;
    cursor: pointer;
    transition: transform var(--transition);
    min-height: 340px;
}
.product-card:hover { transform: scale(1.02); }
.product-card.large {
    grid-column: span 2;
}

.product-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.85) 0%, rgba(0,0,0,0.2) 60%, transparent 100%);
    transition: var(--transition);
}
.product-card:hover .product-overlay {
    background: linear-gradient(to top, rgba(0,0,0,0.9) 0%, rgba(0,0,0,0.4) 60%, rgba(0,0,0,0.1) 100%);
}

.product-info {
    position: absolute;
    bottom: 0; left: 0; right: 0;
    padding: 30px 28px;
    color: #fff;
    transform: translateY(10px);
    transition: var(--transition);
}
.product-card:hover .product-info { transform: translateY(0); }

.product-info h3 {
    font-family: var(--font-display);
    font-size: 1.35rem;
    line-height: 1.3;
    margin-bottom: 8px;
}
.product-info p {
    font-size: 0.85rem;
    color: rgba(255,255,255,0.7);
    margin-bottom: 16px;
    max-width: 480px;
    opacity: 0;
    transform: translateY(8px);
    transition: var(--transition);
}
.product-card:hover .product-info p { opacity: 1; transform: translateY(0); }

.product-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--gold-light);
    font-weight: 600;
    font-size: 0.88rem;
    transition: var(--transition);
}
.product-link:hover { gap: 14px; }


/* ==========================================
   WHY US
========================================== */
.why-section {
    background: var(--dark-2);
    padding: 100px 0;
}

.why-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    margin-top: 60px;
}

.why-card {
    background: var(--dark-3);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 40px 28px;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}
.why-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 3px;
    background: var(--gold);
    transform: scaleX(0);
    transition: var(--transition);
    transform-origin: left;
}
.why-card:hover::before { transform: scaleX(1); }
.why-card:hover { border-color: rgba(201,168,76,0.25); transform: translateY(-6px); }

.why-icon {
    width: 56px; height: 56px;
    background: rgba(201,168,76,0.12);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
    font-size: 1.4rem;
    color: var(--gold);
}

.why-card h4 {
    font-size: 1.05rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 12px;
}
.why-card p { font-size: 0.88rem; color: var(--text-muted); line-height: 1.7; }


/* ==========================================
   PROCESS
========================================== */
.process-section { background: var(--light-bg); }

.process-steps {
    display: flex;
    align-items: flex-start;
    gap: 0;
    margin-top: 60px;
    flex-wrap: wrap;
}

.process-step {
    flex: 1;
    min-width: 180px;
    text-align: center;
    padding: 0 20px;
}

.step-num {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 70px; height: 70px;
    border-radius: 50%;
    background: var(--gold);
    color: #fff;
    font-size: 1.4rem;
    font-weight: 800;
    margin: 0 auto 20px;
    box-shadow: 0 8px 30px rgba(201,168,76,0.35);
}
.process-step h4 {
    font-size: 1rem;
    font-weight: 700;
    color: #111;
    margin-bottom: 10px;
}
.process-step p { font-size: 0.88rem; color: #666; }

.step-arrow {
    color: var(--gold);
    font-size: 1.2rem;
    padding-top: 26px;
    opacity: 0.5;
}


/* ==========================================
   TESTIMONIALS
========================================== */
.testimonials-section {
    background: var(--dark);
    padding: 100px 0;
}

.testi-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-top: 60px;
}

.testi-card {
    background: var(--dark-3);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 36px 32px;
    transition: var(--transition);
}
.testi-card:hover {
    border-color: rgba(201,168,76,0.3);
    transform: translateY(-4px);
}

.testi-stars { color: var(--gold); margin-bottom: 16px; }

.testi-card > p {
    color: rgba(255,255,255,0.75);
    font-size: 0.93rem;
    line-height: 1.8;
    margin-bottom: 28px;
    font-style: italic;
}

.testi-author { display: flex; align-items: center; gap: 14px; }
.testi-avatar {
    width: 48px; height: 48px;
    border-radius: 50%;
    background: var(--gold);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 0.85rem;
    flex-shrink: 0;
}
.testi-author h5 { color: #fff; font-size: 0.92rem; font-weight: 700; }
.testi-author span { color: var(--text-muted); font-size: 0.78rem; }


/* ==========================================
   FAQ
========================================== */
.faq-section { background: #fff; }

.faq-layout {
    display: grid;
    grid-template-columns: 380px 1fr;
    gap: 80px;
    align-items: start;
}

.faq-left p { color: #666; margin-top: 16px; }

.faq-right { display: flex; flex-direction: column; gap: 0; }

.faq-item { border-bottom: 1px solid #eee; }

.faq-q {
    width: 100%;
    background: none;
    border: none;
    text-align: left;
    padding: 22px 0;
    font-family: var(--font-body);
    font-size: 0.97rem;
    font-weight: 600;
    color: #222;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
    transition: var(--transition);
}
.faq-q:hover { color: var(--gold); }
.faq-q i { font-size: 0.8rem; color: var(--gold); flex-shrink: 0; transition: var(--transition); }
.faq-item.open .faq-q i { transform: rotate(45deg); }

.faq-a {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, padding 0.4s ease;
}
.faq-item.open .faq-a { max-height: 200px; padding-bottom: 20px; }
.faq-a p { font-size: 0.92rem; color: #555; line-height: 1.8; }


/* ==========================================
   CTA BANNER
========================================== */
.cta-banner {
    position: relative;
    background: url('../images/hero-bg.png') center/cover no-repeat;
    padding: 100px 0;
    text-align: center;
    overflow: hidden;
}
.cta-overlay {
    position: absolute;
    inset: 0;
    background: rgba(13,13,13,0.82);
}
.cta-content {
    position: relative;
    z-index: 2;
    color: #fff;
}
.cta-content h2 {
    font-family: var(--font-display);
    font-size: clamp(2rem, 4vw, 3rem);
    margin-bottom: 16px;
}
.cta-content p {
    color: rgba(255,255,255,0.75);
    font-size: 1rem;
    margin-bottom: 40px;
    max-width: 560px;
    margin-left: auto;
    margin-right: auto;
}
.cta-btns { display: flex; justify-content: center; gap: 20px; flex-wrap: wrap; }


/* ==========================================
   FOOTER
========================================== */
.footer { background: var(--dark); }

.footer-top { padding: 80px 0 60px; }

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.6fr;
    gap: 50px;
}

.footer-brand { }
.footer-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    color: #fff;
    font-family: var(--font-body);
    font-weight: 800;
    font-size: 1rem;
    letter-spacing: 1px;
    margin-bottom: 20px;
}

.footer-brand > p {
    font-size: 0.87rem;
    color: var(--text-muted);
    line-height: 1.8;
    margin-bottom: 28px;
    max-width: 300px;
}

.footer-socials { display: flex; gap: 10px; }
.footer-socials a {
    width: 38px; height: 38px;
    border-radius: 10px;
    background: var(--dark-3);
    border: 1px solid var(--border);
    display: flex; align-items: center; justify-content: center;
    color: var(--text-muted);
    font-size: 0.85rem;
    transition: var(--transition);
}
.footer-socials a:hover { background: var(--gold); border-color: var(--gold); color: #fff; }

.footer-col h4 {
    font-size: 0.82rem;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: #fff;
    margin-bottom: 24px;
    padding-bottom: 12px;
    border-bottom: 1px solid var(--border);
}

.footer-col ul li {
    margin-bottom: 12px;
}
.footer-col ul li a {
    font-size: 0.87rem;
    color: var(--text-muted);
    transition: var(--transition);
    display: flex;
    align-items: center;
    gap: 6px;
}
.footer-col ul li a:hover { color: var(--gold); padding-left: 4px; }

/* Contact col */
.contact-info li {
    display: flex;
    gap: 14px;
    margin-bottom: 16px;
    color: var(--text-muted);
    font-size: 0.87rem;
    line-height: 1.6;
}
.contact-info li i {
    color: var(--gold);
    font-size: 1rem;
    margin-top: 3px;
    flex-shrink: 0;
}
.contact-info a { color: var(--text-muted); transition: var(--transition); }
.contact-info a:hover { color: var(--gold); }

/* Footer bottom */
.footer-bottom {
    border-top: 1px solid var(--border);
    padding: 22px 0;
}
.footer-bottom-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 12px;
}
.footer-bottom p { font-size: 0.82rem; color: var(--text-muted); }
.footer-bottom-links { display: flex; gap: 24px; }
.footer-bottom-links a { font-size: 0.82rem; color: var(--text-muted); transition: var(--transition); }
.footer-bottom-links a:hover { color: var(--gold); }


/* ==========================================
   STICKY ENQUIRY BUTTON
========================================== */
.sticky-enquiry {
    position: fixed;
    right: -78px;
    top: 50%;
    transform: translateY(-50%) rotate(-90deg);
    transform-origin: center;
    background: var(--gold);
    color: #fff;
    padding: 12px 24px;
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    z-index: 8000;
    border-radius: 8px 8px 0 0;
    transition: var(--transition);
    white-space: nowrap;
    display: flex;
    align-items: center;
    gap: 8px;
}
.sticky-enquiry:hover { background: var(--gold-light); right: -72px; }


/* ==========================================
   RESPONSIVE
========================================== */
@media (max-width: 1100px) {
    .why-grid         { grid-template-columns: repeat(2,1fr); }
    .footer-grid      { grid-template-columns: repeat(2,1fr); }
    .products-grid    { grid-template-columns: repeat(2,1fr); grid-template-rows: auto; }
    .product-card.large { grid-column: span 1; }
}

@media (max-width: 900px) {
    .about-grid   { grid-template-columns: 1fr; }
    .stats-grid   { grid-template-columns: repeat(2,1fr); }
    .testi-grid   { grid-template-columns: 1fr; }
    .faq-layout   { grid-template-columns: 1fr; gap: 40px; }
    .process-steps { flex-direction: column; align-items: center; }
    .step-arrow   { transform: rotate(90deg); padding: 10px 0; }
    .about-badge-card { right: 10px; bottom: -20px; }
}

@media (max-width: 768px) {
    .nav, .btn-cta  { display: none; }
    .hamburger      { display: flex; }
    .header-inner   { padding: 16px 20px; }

    .hero-text      { padding: 0 24px 0 80px; }
    .hero-controls  { left: 24px; }

    .trust-inner    { flex-direction: column; gap: 16px; }
    .trust-divider  { display: none; }

    .products-grid  { grid-template-columns: 1fr; }
    .why-grid       { grid-template-columns: 1fr; }
    .footer-grid    { grid-template-columns: 1fr; }

    .section        { padding: 70px 0; }
    .stats-grid     { grid-template-columns: repeat(2,1fr); }
}

@media (max-width: 480px) {
    .hero-text h1   { font-size: 2.2rem; }
    .hero-btns      { flex-direction: column; gap: 12px; }
    .about-img      { height: 320px; }
    .about-badge-card { display: none; }
    .sticky-enquiry { display: none; }
}

/* ========== INNER PAGES SHARED ========== */


/* Disable text selection */
body { -webkit-user-select: none; -ms-user-select: none; user-select: none; }

body { -webkit-user-select: none; -ms-user-select: none; user-select: none; }


.btn-brochure {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: #ffffff;
    border: 1px solid #ddd;
    color: #1a1a1a;
    padding: 8px 16px;
    border-radius: 6px;
    font-size: 0.85rem;
    font-weight: 600;
    white-space: nowrap;
    text-decoration: none;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
}
.btn-brochure:hover {
    background: #f5f5f5;
    color: #000;
    border-color: #ccc;
    transform: translateY(-2px);
}
.btn-brochure i { font-size: 0.9rem; }

/* ===== RESPONSIVE MOBILE ===== */
@media (max-width: 768px) {
    /* Header */
    .header { background: rgba(10,10,10,0.98); }
    .header-inner { padding: 0 16px; }
    .nav { display: none; }
    .hamburger { display: flex; }
    .header-actions .btn-cta { padding: 8px 14px; font-size: 0.8rem; }
    .btn-brochure { display: none; } /* hide on mobile, show in mobile menu */
    
    /* Hero */
    .hero { min-height: 90vh; }
    .hero-text { padding: 0 20px; }
    .hero-text h1 { font-size: clamp(1.8rem, 8vw, 2.8rem); }
    .hero-text p { font-size: 0.95rem; }
    .hero-btns { flex-direction: column; gap: 12px; }
    .hero-btns a { text-align: center; }
    
    /* About section */
    .about-grid { grid-template-columns: 1fr !important; }
    .about-img { height: 280px; }
    .about-badge-card { display: none; }
    
    /* Stats */
    .stats-grid { grid-template-columns: 1fr 1fr; gap: 16px; }
    .stat-num { font-size: 2.2rem; }
    
    /* Products */
    .products-grid { grid-template-columns: 1fr; }
    .product-card.large { grid-column: span 1; }
    
    /* Why section */
    .why-grid { grid-template-columns: 1fr; }
    
    /* Process steps */
    .process-steps { flex-direction: column; align-items: center; }
    .step-arrow { transform: rotate(90deg); }
    
    /* Testimonials */
    .testi-grid { grid-template-columns: 1fr; }
    
    /* FAQ */
    .faq-layout { grid-template-columns: 1fr; }
    .faq-left { text-align: center; }
    
    /* Footer */
    .footer-grid { grid-template-columns: 1fr !important; gap: 30px; }
    
    /* Inner pages */
    .page-layout { grid-template-columns: 1fr !important; }
    .spec-grid { grid-template-columns: 1fr 1fr !important; }
    .feature-list { grid-template-columns: 1fr !important; }
    .related-grid { grid-template-columns: 1fr !important; }
    
    /* Gallery */
    .gallery-grid { grid-template-columns: 1fr 1fr; }
    .video-grid { grid-template-columns: 1fr 1fr; }
    
    /* Page hero */
    .page-hero { min-height: 280px; }
    .page-hero h1 { font-size: clamp(1.6rem, 6vw, 2.2rem); }
    
    /* Contact */
    .contact-layout { grid-template-columns: 1fr !important; }
    
    /* Sections */
    .section { padding: 50px 0; }
    .container { padding: 0 16px; }
    .section-heading { font-size: clamp(1.5rem, 5vw, 2rem); }
}

@media (max-width: 480px) {
    .stats-grid { grid-template-columns: 1fr 1fr; }
    .gallery-grid { grid-template-columns: 1fr; }
    .video-grid { grid-template-columns: 1fr; }
    .hero-text h1 { font-size: 1.8rem; }
    .testi-grid { grid-template-columns: 1fr; }
    .spec-grid { grid-template-columns: 1fr !important; }
}



/* Testimonials Slider */
.testi-slider-wrap {
    position: relative;
    overflow: hidden;
    padding-bottom: 50px;
}
.testi-slider-track {
    display: flex;
    transition: transform 0.5s ease-in-out;
}
.testi-slide {
    min-width: 100%;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}
.testi-controls {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
    margin-top: 30px;
}
.testi-controls button {
    background: var(--primary);
    color: #fff;
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    cursor: pointer;
    font-size: 1.2rem;
    transition: var(--transition);
}
.testi-controls button:hover {
    background: var(--secondary);
}
.testi-dots {
    display: flex;
    gap: 8px;
}
.testi-dots .dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: #ccc;
    border: none;
    cursor: pointer;
}
.testi-dots .dot.active {
    background: var(--primary);
    transform: scale(1.2);
}

@media (max-width: 900px) {
    .testi-slide {
        grid-template-columns: repeat(2, 1fr);
    }
}
@media (max-width: 768px) {
    .testi-slide {
        grid-template-columns: 1fr;
    }
}
