/*
 * FlatPackCo — Main Stylesheet
 * Layout inspired by Eleganzo Template
 * Brand: FlatPackCo | Built Easy. Built Right.
 * =============================================
 * TABLE OF CONTENTS
 * 1.  Imports & Variables
 * 2.  Reset & Base
 * 3.  Typography
 * 4.  Utilities & Grid
 * 5.  Animations
 * 6.  Buttons
 * 7.  Announcement Bar
 * 8.  Header & Navigation
 * 9.  Hero Section
 * 10. Stats Section
 * 11. Services Section
 * 12. About Section
 * 13. Products Section
 * 14. Work / Portfolio Section
 * 15. Testimonials
 * 16. CTA Banner
 * 17. FAQ Section
 * 18. Newsletter
 * 19. Footer
 * 20. Page Hero (Inner Pages)
 * 21. Clients Page
 * 22. Blog Cards
 * 23. Blog Detail Page
 * 24. Product Detail Page
 * 25. Portfolio Filter
 * 26. Process Steps
 * 27. WhatsApp Float Button
 * 28. Misc Components
 * =============================================
 */

/* ======================
   1. IMPORTS & VARIABLES
   ====================== */

@import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:wght@400;500;600;700;800&family=Poppins:wght@300;400;500;600;700&display=swap');

:root {
    /* Brand Colors */
    --primary:        #0F172A;
    --primary-dark:   #070D1A;
    --primary-light:  #1E293B;
    --accent:         #204cf8;
    --accent-hover:   #204cf8;
    --accent-light:   rgba(200, 150, 62, 0.12);

    /* Neutrals */
    --white:          #FFFFFF;
    --off-white:      #FAF8F4;
    --bg-section:     #F5F2EC;
    --bg-light:       #F8F6F1;
    --border:         #E8E3DA;
    --border-light:   #F0ECE4;

    /* Text */
    --text-dark:      #0F172A;
    --text-body:      #374151;
    --text-muted:     #6B7280;
    --text-light:     #9CA3AF;

    /* Typography */
    --font-heading:   'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, sans-serif;
    --font-body:      'Poppins', -apple-system, BlinkMacSystemFont, sans-serif;

    /* Spacing */
    --section-pad:    90px 0;
    --container-max:  1200px;
    --container-wide: 1400px;

    /* Effects */
    --shadow-xs:  0 1px 3px rgba(0,0,0,0.07);
    --shadow-sm:  0 2px 8px rgba(0,0,0,0.08);
    --shadow:     0 4px 20px rgba(0,0,0,0.09);
    --shadow-md:  0 8px 32px rgba(0,0,0,0.11);
    --shadow-lg:  0 16px 48px rgba(0,0,0,0.13);
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-fast: all 0.15s ease;
    --radius:     4px;
    --radius-md:  8px;
    --radius-lg:  16px;
}

/* ======================
   2. RESET & BASE
   ====================== */

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

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

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

img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; transition: var(--transition-fast); }
ul, ol { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }
input, textarea, select { font-family: inherit; font-size: inherit; }

/* ======================
   3. TYPOGRAPHY
   ====================== */

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    color: var(--text-dark);
    line-height: 1.3;
    font-weight: 600;
}
h1 { font-size: clamp(2.2rem, 5vw, 3.5rem); }
h2 { font-size: clamp(1.8rem, 3.5vw, 2.6rem); }
h3 { font-size: clamp(1.25rem, 2.5vw, 1.6rem); }
h4 { font-size: 1.15rem; }
h5 { font-size: 1rem; }
h6 { font-size: 0.9rem; }
p { color: var(--text-body); line-height: 1.8; }

/* ======================
   4. UTILITIES & GRID
   ====================== */

.container      { max-width: var(--container-max);  margin: 0 auto; padding: 0 24px; }
.container-wide { max-width: var(--container-wide); margin: 0 auto; padding: 0 24px; }

.section       { padding: var(--section-pad); }
.section-light { background-color: var(--bg-section); }
.section-dark  { background-color: var(--primary); }
.section-dark h1, .section-dark h2, .section-dark h3, .section-dark h4 { color: var(--white); }
.section-dark p { color: rgba(255,255,255,0.72); }

/* Section header */
.section-header        { margin-bottom: 60px; }
.section-header.center { text-align: center; }

.section-tag {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--accent);
    margin-bottom: 14px;
}
.section-tag::before {
    content: '';
    display: inline-block;
    width: 28px;
    height: 2px;
    background: var(--accent);
    flex-shrink: 0;
}
.section-title    { margin-bottom: 14px; }
.section-subtitle { font-size: 1.05rem; color: var(--text-muted); max-width: 560px; }
.section-header.center .section-subtitle { margin: 0 auto; }

/* Grid helpers */
.grid-2    { display: grid; grid-template-columns: repeat(2, 1fr); gap: 32px; }
.grid-3    { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.grid-4    { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.grid-auto { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 28px; }

/* Flex helpers */
.flex         { display: flex; }
.flex-center  { display: flex; align-items: center; justify-content: center; }
.flex-between { display: flex; align-items: center; justify-content: space-between; }
.gap-8  { gap: 8px; }
.gap-16 { gap: 16px; }
.gap-24 { gap: 24px; }

/* Text helpers */
.text-center { text-align: center; }
.text-accent { color: var(--accent); }
.text-white  { color: var(--white); }
.text-muted  { color: var(--text-muted); }
.mt-8  { margin-top: 8px; }
.mt-16 { margin-top: 16px; }
.mt-32 { margin-top: 32px; }
.mt-48 { margin-top: 48px; }
.mb-0  { margin-bottom: 0; }

/* Image wrappers — gradient fallback when real images are absent */
.img-cover-wrap {
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg, var(--primary-light) 0%, var(--primary-dark) 100%);
}
.img-cover-wrap img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.img-cover-wrap .img-icon {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 12px;
    color: rgba(200,150,62,0.35);
}
.img-cover-wrap .img-icon i   { font-size: 2.5rem; }
.img-cover-wrap .img-icon span {
    font-size: 0.72rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.25);
}

/* ======================
   5. ANIMATIONS
   ====================== */

.fade-up {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.65s ease, transform 0.65s ease;
}
.fade-up.visible { opacity: 1; transform: translateY(0); }

.fade-in { opacity: 0; transition: opacity 0.7s ease; }
.fade-in.visible { opacity: 1; }

.delay-1 { transition-delay: 0.1s !important; }
.delay-2 { transition-delay: 0.2s !important; }
.delay-3 { transition-delay: 0.3s !important; }
.delay-4 { transition-delay: 0.4s !important; }
.delay-5 { transition-delay: 0.5s !important; }
.delay-6 { transition-delay: 0.6s !important; }

/* ======================
   6. BUTTONS
   ====================== */

.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 13px 30px;
    font-size: 0.82rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    border-radius: var(--radius);
    border: 2px solid transparent;
    transition: var(--transition);
    cursor: pointer;
    white-space: nowrap;
    font-family: var(--font-body);
}

.btn-primary {
    background: var(--accent);
    color: var(--white);
    border-color: var(--accent);
}
.btn-primary:hover {
    background: var(--accent-hover);
    border-color: var(--accent-hover);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(200,150,62,0.35);
    color: var(--white);
}

.btn-outline {
    background: transparent;
    color: var(--accent);
    border-color: var(--accent);
}
.btn-outline:hover {
    background: var(--accent);
    color: var(--white);
    transform: translateY(-2px);
}

.btn-outline-white {
    background: transparent;
    color: var(--white);
    border-color: rgba(255,255,255,0.6);
}
.btn-outline-white:hover {
    background: var(--white);
    color: var(--primary);
    border-color: var(--white);
}

.btn-dark {
    background: var(--primary);
    color: var(--white);
    border-color: var(--primary);
}
.btn-dark:hover {
    background: var(--primary-light);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
    color: var(--white);
}

/* Highlighted accent CTA — gold with pulse glow */
@keyframes btn-pulse {
    0%   { box-shadow: 0 0 0 0 rgba(200,150,62,0.55); }
    70%  { box-shadow: 0 0 0 12px rgba(200,150,62,0); }
    100% { box-shadow: 0 0 0 0 rgba(200,150,62,0); }
}
.btn-accent {
    background: var(--accent);
    color: var(--white);
    border-color: var(--accent);
    font-weight: 700;
    letter-spacing: 0.03em;
    animation: btn-pulse 2s ease-out infinite;
    box-shadow: 0 4px 18px rgba(200,150,62,0.45);
}
.btn-accent:hover {
    background: var(--accent-hover);
    border-color: var(--accent-hover);
    color: var(--white);
    transform: translateY(-3px);
    box-shadow: 0 8px 28px rgba(200,150,62,0.55);
    animation: none;
}

.btn-link {
    padding: 0;
    color: var(--accent);
    font-size: 0.82rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}
.btn-link:hover { gap: 14px; color: var(--accent-hover); }
.btn-link i { transition: transform 0.2s; }
.btn-link:hover i { transform: translateX(4px); }

/* Video play button */
.btn-video {
    display: inline-flex;
    align-items: center;
    gap: 14px;
    color: var(--white);
    text-decoration: none;
    font-size: 0.88rem;
    font-weight: 500;
    cursor: pointer;
}
.btn-video .play-circle {
    width: 52px;
    height: 52px;
    border: 2px solid rgba(255,255,255,0.45);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
    flex-shrink: 0;
}
.btn-video:hover .play-circle {
    background: var(--accent);
    border-color: var(--accent);
}

/* ======================
   7. ANNOUNCEMENT BAR
   ====================== */

.announcement-bar {
    background: var(--primary-dark);
    color: rgba(255,255,255,0.72);
    text-align: center;
    padding: 10px 24px;
    font-size: 0.8rem;
    letter-spacing: 0.02em;
}
.announcement-bar strong { color: var(--accent); }
.announcement-bar a { color: var(--accent); font-weight: 600; margin-left: 8px; }
.announcement-bar a:hover { text-decoration: underline; }

/* ======================
   8. HEADER & NAVIGATION
   ====================== */

.site-header {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: var(--white);
    box-shadow: var(--shadow-xs);
    transition: var(--transition);
}
.site-header.scrolled { box-shadow: var(--shadow); }

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 80px;
    padding: 0 32px;
    max-width: var(--container-wide);
    margin: 0 auto;
    gap: 20px;
}

/* Logo */
.logo-img {
    width: 90px;
    height: 45px;
    object-fit: contain; /* keeps logo from stretching */
    display: block;
}

.footer-logo-img {
    width: 120px;   /* match your header size, or adjust */
    height: 60px;
    object-fit: contain;
    display: block;
}

.site-logo { display: flex; align-items: center; gap: 10px; flex-shrink: 0; }
.logo-mark {
    width: 42px;
    height: 42px;
    background: var(--primary);
    border-radius: var(--radius);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-heading);
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--accent);
    letter-spacing: -1px;
}
.logo-text    { display: flex; flex-direction: column; line-height: 1.1; }
.logo-name    { font-family: var(--font-heading); font-size: 1.3rem; font-weight: 700; color: var(--primary); }
.logo-tagline { font-size: 0.62rem; color: var(--accent); font-weight: 700; letter-spacing: 0.14em; text-transform: uppercase; }

/* Primary nav */
.primary-nav { display: flex; align-items: center; gap: 2px; }

.nav-item { position: relative; }

.nav-link {
    display: flex;
    align-items: center;
    gap: 5px;
    padding: 10px 14px;
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--text-body);
    border-radius: var(--radius);
    white-space: nowrap;
    transition: color 0.15s;
}
.nav-link:hover, .nav-link.active { color: var(--accent); }
.nav-link i { font-size: 0.65rem; transition: transform 0.2s; }
.nav-item:hover > .nav-link i { transform: rotate(180deg); }

/* Dropdown */
.nav-dropdown {
    position: absolute;
    top: calc(100% + 8px);
    left: 0;
    background: var(--white);
    min-width: 220px;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-md);
    border-top: 3px solid var(--accent);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: var(--transition);
    z-index: 100;
}
.nav-item:hover .nav-dropdown { opacity: 1; visibility: visible; transform: translateY(0); }
.nav-dropdown a {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 11px 20px;
    font-size: 0.875rem;
    color: var(--text-body);
    border-bottom: 1px solid var(--border-light);
    transition: var(--transition-fast);
}
.nav-dropdown a:last-child { border-bottom: none; }
.nav-dropdown a:hover { background: var(--bg-section); color: var(--accent); padding-left: 26px; }
.nav-dropdown a i { font-size: 0.8rem; color: var(--accent); width: 14px; }

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

.header-phone {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    line-height: 1.2;
}
.header-phone span { font-size: 0.65rem; color: var(--text-muted); text-transform: uppercase; letter-spacing: 0.08em; }
.header-phone a { font-size: 0.88rem; font-weight: 700; color: var(--primary); }
.header-phone a:hover { color: var(--accent); }

/* Mobile toggle */
.mobile-toggle { display: none; flex-direction: column; gap: 5px; padding: 4px; cursor: pointer; }
.mobile-toggle span { display: block; width: 24px; height: 2px; background: var(--primary); transition: var(--transition); transform-origin: center; }
.mobile-toggle.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.mobile-toggle.active span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.mobile-toggle.active span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

/* ======================
   9. HERO SECTION
   ====================== */

.hero {
    position: relative;
    min-height: 88vh;
    display: flex;
    align-items: center;
    background: var(--primary);
    overflow: hidden;
}

.hero-bg-layer {
    position: absolute;
    inset: 0;
    background-image: url('../images/hero-bg.jpg');
    background-size: cover;
    background-position: center;
    opacity: 0.28;
    transition: transform 8s ease;
}
.hero:hover .hero-bg-layer { transform: scale(1.04); }

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(110deg, rgba(7,13,26,0.92) 0%, rgba(15,23,42,0.65) 55%, rgba(15,23,42,0.3) 100%);
}

.hero-content {
    position: relative;
    z-index: 2;
    width: 100%;
    max-width: var(--container-wide);
    margin: 0 auto;
    padding: 80px 32px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.hero-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: rgba(200,150,62,0.14);
    border: 1px solid rgba(200,150,62,0.28);
    padding: 6px 16px;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: rgba(200,150,62,0.9);
    margin-bottom: 24px;
}

.hero-title {
    color: var(--white);
    font-size: clamp(2.6rem, 5.5vw, 4.2rem);
    line-height: 1.15;
    margin-bottom: 22px;
    font-weight: 700;
}
.hero-title em { color: var(--accent); font-style: italic; }

.hero-desc {
    color: rgba(255,255,255,0.72);
    font-size: 1.05rem;
    line-height: 1.85;
    margin-bottom: 40px;
    max-width: 480px;
}

.hero-cta { display: flex; flex-wrap: wrap; align-items: center; gap: 20px; }

.hero-mini-stats {
    display: flex;
    gap: 36px;
    margin-top: 48px;
    padding-top: 36px;
    border-top: 1px solid rgba(255,255,255,0.12);
}
.hms-item { display: flex; flex-direction: column; }
.hms-number {
    font-family: var(--font-heading);
    font-size: 2rem;
    font-weight: 700;
    color: var(--accent);
    line-height: 1;
}
.hms-label { font-size: 0.75rem; color: rgba(255,255,255,0.5); text-transform: uppercase; letter-spacing: 0.08em; margin-top: 4px; }

/* Hero visual — image grid */
.hero-visual {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto auto;
    gap: 14px;
}
.hero-visual-card {
    border-radius: var(--radius-md);
    overflow: hidden;
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.08);
}
.hero-visual-card.span-2 { grid-column: span 2; height: 210px; }
.hero-visual-card:not(.span-2) { height: 150px; }

.hero-visual-card .img-cover-wrap { width: 100%; height: 100%; }
.hero-visual-card .img-icon i { font-size: 2rem; }

/* ======================
   10. STATS SECTION
   ====================== */

.stats-section {
    background: var(--primary-dark);
    padding: 55px 0;
    border-top: 1px solid rgba(255,255,255,0.05);
}
.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
}
.stat-item {
    text-align: center;
    padding: 28px 20px;
    border-right: 1px solid rgba(255,255,255,0.07);
}
.stat-item:last-child { border-right: none; }
.stat-number {
    display: block;
    font-family: var(--font-heading);
    font-size: 3rem;
    font-weight: 700;
    color: var(--accent);
    line-height: 1;
    margin-bottom: 8px;
}
.stat-label {
    font-size: 0.78rem;
    color: rgba(255,255,255,0.45);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    font-weight: 500;
}

/* ======================
   11. SERVICES SECTION
   ====================== */

.service-card {
    background: var(--white);
    padding: 38px 30px;
    border-radius: var(--radius-md);
    border: 1px solid var(--border-light);
    box-shadow: var(--shadow-xs);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}
.service-card::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: var(--accent);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.35s ease;
}
.service-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); border-color: transparent; }
.service-card:hover::after { transform: scaleX(1); }

.service-icon {
    width: 58px;
    height: 58px;
    background: var(--accent-light);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 22px;
    transition: var(--transition);
}
.service-icon i { font-size: 1.5rem; color: var(--accent); transition: var(--transition); }
.service-card:hover .service-icon { background: var(--accent); }
.service-card:hover .service-icon i { color: var(--white); }

.service-card h3 { font-size: 1.15rem; margin-bottom: 10px; }
.service-card p  { font-size: 0.875rem; color: var(--text-muted); line-height: 1.7; margin-bottom: 18px; }

/* ======================
   12. ABOUT SECTION
   ====================== */

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

.about-img-wrap { position: relative; }

.about-main-img {
    width: 100%;
    height: 420px;
    border-radius: var(--radius-md);
    overflow: hidden;
}
.about-main-img .img-cover-wrap { width: 100%; height: 100%; }

.about-accent-img {
    position: absolute;
    bottom: -28px;
    right: -28px;
    width: 200px;
    height: 175px;
    border-radius: var(--radius-md);
    border: 6px solid var(--white);
    box-shadow: var(--shadow-lg);
    overflow: hidden;
    background: var(--accent);
}
.about-accent-img .img-cover-wrap { width: 100%; height: 100%; }
.about-accent-img .img-icon i { font-size: 1.5rem; }

.about-badge {
    position: absolute;
    top: 32px;
    left: -24px;
    background: var(--primary);
    padding: 18px 22px;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-md);
    text-align: center;
    z-index: 2;
}
.about-badge-num  { font-family: var(--font-heading); font-size: 1.8rem; font-weight: 700; color: var(--accent); display: block; line-height: 1; }
.about-badge-text { font-size: 0.7rem; color: rgba(255,255,255,0.6); text-transform: uppercase; letter-spacing: 0.08em; margin-top: 4px; }

.about-features { margin-top: 28px; display: flex; flex-direction: column; gap: 18px; }
.about-feat-item { display: flex; gap: 14px; align-items: flex-start; }
.feat-check {
    width: 28px;
    height: 28px;
    background: var(--accent-light);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    margin-top: 2px;
}
.feat-check i { font-size: 0.72rem; color: var(--accent); }
.feat-body h5 { font-size: 0.92rem; font-family: var(--font-body); font-weight: 600; margin-bottom: 3px; }
.feat-body p  { font-size: 0.85rem; color: var(--text-muted); margin: 0; }
.feat-body p.section-subtitle { font-size: 1.05rem; }

/* ======================
   12B. FLATPACKCO ADVANTAGE SECTION
   ====================== */

.edge-grid {
    display: grid;
    grid-template-columns: 0.95fr 1.05fr;
    gap: 70px;
    align-items: start;
}

.edge-subtitle {
    font-family: var(--font-heading);
    font-style: italic;
    font-size: 1.15rem;
    color: var(--text-dark);
    margin-bottom: 16px;
}

.edge-left p,
.edge-right p { margin-bottom: 0; }

.edge-image-single {
    margin-top: 28px;
    border-radius: var(--radius-md);
    overflow: hidden;
    height: 340px;
}
.edge-image-single .img-cover-wrap { width: 100%; height: 100%; }

.edge-image-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 28px;
}
.edge-image {
    border-radius: var(--radius-md);
    overflow: hidden;
    height: 260px;
}
.edge-image .img-cover-wrap { width: 100%; height: 100%; }

.edge-right p { margin-bottom: 28px; }

/* ======================
   12C. WHO WE BUILD FOR SECTION
   ====================== */

.audience-section {
    position: relative;
    overflow: hidden;
    background: var(--primary-dark);
}

.audience-bg-layer {
    position: absolute;
    inset: -25% 0;
    background-image: url('../images/Home_banner.jpg');
    background-size: cover;
    background-position: center;
    opacity: 0.2;
    will-change: transform;
}

.audience-content { position: relative; z-index: 2; }
.audience-content .section-title { color: var(--white); }
.audience-content p { color: rgba(255,255,255,0.75); margin-bottom: 0; }

/* ======================
   13. PRODUCTS SECTION
   ====================== */

.product-card {
    border-radius: var(--radius-md);
    overflow: hidden;
    background: var(--white);
    border: 1px solid var(--border-light);
    box-shadow: var(--shadow-xs);
    transition: var(--transition);
    display: flex;
    flex-direction: column;
    text-decoration: none;
}
.product-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); border-color: transparent; }

.product-card-img {
    width: 100%;
    height: 230px;
    overflow: hidden;
    position: relative;
}
.product-card-img .img-cover-wrap { width: 100%; height: 100%; }

.product-card-body { padding: 22px 24px; flex: 1; display: flex; flex-direction: column; }
.prod-category { font-size: 0.7rem; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; color: var(--accent); margin-bottom: 6px; }
.product-card h3 { font-size: 1.05rem; margin-bottom: 8px; color: var(--text-dark); }
.product-card p  { font-size: 0.86rem; color: var(--text-muted); line-height: 1.65; flex: 1; margin-bottom: 16px; }

/* ======================
   14. WORK / PORTFOLIO SECTION
   ====================== */

.work-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}
.work-card {
    border-radius: var(--radius-md);
    overflow: hidden;
    background: var(--white);
    box-shadow: var(--shadow-xs);
    transition: var(--transition);
    display: flex;
    flex-direction: column;
}
.work-card:hover    { transform: translateY(-5px); box-shadow: var(--shadow-md); }

.work-card-img { width: 100%; height: 240px; overflow: hidden; }
.work-card-img .img-cover-wrap { width: 100%; height: 100%; }
.work-card-img .img-cover-wrap { transition: transform 0.55s ease; }
.work-card:hover .work-card-img .img-cover-wrap { transform: scale(1.05); }

.work-card-info { padding: 18px 22px; background: var(--white); }
.work-category { font-size: 0.7rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.1em; color: var(--accent); margin-bottom: 5px; }
.work-card-info h3 { font-size: 0.98rem; color: var(--text-dark); margin-bottom: 3px; }
.work-card-info p  { font-size: 0.84rem; color: var(--text-muted); margin: 0; }

/* ======================
   15. TESTIMONIALS
   ====================== */

.testimonials-section { background: var(--primary); overflow: hidden; }

.testimonials-overflow { overflow: hidden; }
.testimonials-track {
    display: flex;
    gap: 24px;
    transition: transform 0.5s cubic-bezier(0.4,0,0.2,1);
}

.testimonial-card {
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: var(--radius-md);
    padding: 36px;
    min-width: 360px;
    flex-shrink: 0;
    transition: var(--transition);
}
.testimonial-card:hover { background: rgba(255,255,255,0.09); border-color: rgba(200,150,62,0.3); }

.quote-mark { display: block; font-family: Georgia, serif; font-size: 3.5rem; color: var(--accent); line-height: 1; margin-bottom: 16px; opacity: 0.7; }
.testimonial-text { color: rgba(255,255,255,0.78); font-size: 0.96rem; line-height: 1.85; font-style: italic; margin-bottom: 28px; }
.testimonial-author { display: flex; align-items: center; gap: 14px; }
.author-avatar {
    width: 46px;
    height: 46px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--accent), var(--accent-hover));
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-heading);
    font-size: 1rem;
    font-weight: 700;
    color: var(--white);
    flex-shrink: 0;
}
.author-name  { color: var(--white); font-size: 0.92rem; font-family: var(--font-body); font-weight: 600; }
.author-title { font-size: 0.78rem; color: rgba(255,255,255,0.45); }

.slider-controls { display: flex; align-items: center; gap: 12px; margin-top: 36px; }
.slider-btn {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    border: 1px solid rgba(255,255,255,0.2);
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: var(--transition);
    background: transparent;
    font-size: 0.88rem;
}
.slider-btn:hover { background: var(--accent); border-color: var(--accent); }

.slider-dots { display: flex; gap: 8px; align-items: center; }
.slider-dot { width: 8px; height: 8px; border-radius: 50%; background: rgba(255,255,255,0.22); cursor: pointer; transition: var(--transition); }
.slider-dot.active { background: var(--accent); width: 26px; border-radius: 4px; }

/* ======================
   16. CTA BANNER
   ====================== */

.cta-banner {
    position: relative;
    padding: 100px 24px;
    background: var(--primary);
    overflow: hidden;
    text-align: center;
}
.cta-banner-bg {
    position: absolute;
    inset: 0;
    background-image: url('../images/cta-bg.jpg');
    background-size: cover;
    background-position: center;
    opacity: 0.18;
}
.cta-banner-content { position: relative; z-index: 2; max-width: 680px; margin: 0 auto; }
.cta-banner h2 { color: var(--white); font-size: clamp(1.9rem, 4vw, 3rem); margin-bottom: 14px; }
.cta-banner p  { color: rgba(255,255,255,0.7); font-size: 1.05rem; margin-bottom: 36px; }
.cta-banner-btns { display: flex; justify-content: center; flex-wrap: wrap; gap: 14px; }

/* ======================
   17. FAQ SECTION
   ====================== */

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

.faq-list { display: flex; flex-direction: column; gap: 10px; }
.faq-item {
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    overflow: hidden;
    transition: var(--transition);
}
.faq-item.open { border-color: var(--accent); box-shadow: var(--shadow-sm); }

.faq-question {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 18px 22px;
    cursor: pointer;
    background: var(--white);
    transition: background 0.2s;
}
.faq-question:hover { background: var(--bg-section); }
.faq-item.open .faq-question { background: var(--bg-section); }
.faq-question h4 { font-size: 0.92rem; font-family: var(--font-body); font-weight: 600; flex: 1; padding-right: 16px; }

.faq-icon {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background: var(--accent-light);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: var(--transition);
}
.faq-icon i { font-size: 0.72rem; color: var(--accent); transition: transform 0.3s; }
.faq-item.open .faq-icon { background: var(--accent); }
.faq-item.open .faq-icon i { color: var(--white); transform: rotate(45deg); }

.faq-answer { max-height: 0; overflow: hidden; transition: max-height 0.42s ease; background: var(--white); }
.faq-item.open .faq-answer { max-height: 300px; }
.faq-answer-inner { padding: 4px 22px 22px; }
.faq-answer-inner p { font-size: 0.9rem; color: var(--text-muted); line-height: 1.8; }

/* ======================
   18. NEWSLETTER
   ====================== */

.newsletter-section { background: var(--bg-section); padding: 72px 0; }
.newsletter-inner { display: flex; align-items: center; justify-content: space-between; gap: 40px; flex-wrap: wrap; }
.newsletter-text h3 { font-size: 1.5rem; margin-bottom: 6px; }
.newsletter-text p  { color: var(--text-muted); font-size: 0.9rem; margin: 0; }
.newsletter-form { display: flex; flex: 0 0 460px; max-width: 100%; }
.newsletter-input {
    flex: 1;
    padding: 13px 18px;
    border: 1px solid var(--border);
    border-right: none;
    border-radius: var(--radius) 0 0 var(--radius);
    font-size: 0.9rem;
    outline: none;
    background: var(--white);
    transition: border-color 0.2s;
}
.newsletter-input:focus { border-color: var(--accent); }
.newsletter-form .btn { border-radius: 0 var(--radius) var(--radius) 0; }

/* ======================
   19. FOOTER
   ====================== */

.site-footer {
    background: var(--primary-dark);
    padding-top: 80px;
}
.footer-grid {
    display: grid;
    grid-template-columns: 1.6fr 1fr 1fr 1fr;
    gap: 48px;
    padding-bottom: 56px;
    border-bottom: 1px solid rgba(255,255,255,0.07);
}

.footer-logo-wrap { display: flex; align-items: center; gap: 10px; margin-bottom: 16px; }
.footer-logo-mark {
    width: 38px;
    height: 38px;
    background: var(--accent);
    border-radius: var(--radius);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-heading);
    font-weight: 700;
    color: var(--white);
    font-size: 1rem;
}
.footer-logo-name { font-family: var(--font-heading); font-size: 1.2rem; font-weight: 700; color: var(--white); }
.footer-brand p { font-size: 0.875rem; color: rgba(255,255,255,0.48); line-height: 1.8; max-width: 275px; }

.footer-social { display: flex; gap: 10px; margin-top: 20px; }
.social-link {
    width: 36px;
    height: 36px;
    border: 1px solid rgba(255,255,255,0.14);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255,255,255,0.5);
    font-size: 0.85rem;
    transition: var(--transition);
}
.social-link:hover { background: var(--accent); border-color: var(--accent); color: var(--white); transform: translateY(-2px); }

.footer-widget h5 {
    color: var(--white);
    font-family: var(--font-body);
    font-size: 0.82rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 22px;
    padding-bottom: 12px;
    border-bottom: 1px solid rgba(255,255,255,0.08);
}
.footer-links { display: flex; flex-direction: column; gap: 10px; }
.footer-links a { font-size: 0.875rem; color: rgba(255,255,255,0.48); display: flex; align-items: center; gap: 8px; transition: var(--transition-fast); }
.footer-links a:hover { color: var(--accent); padding-left: 4px; }
.footer-links a i { font-size: 0.7rem; color: var(--accent); width: 12px; flex-shrink: 0; }

.footer-contact-item { display: flex; gap: 12px; margin-bottom: 14px; }
.footer-contact-item:last-child { margin-bottom: 0; }
.footer-contact-item i { color: var(--accent); font-size: 0.9rem; margin-top: 3px; flex-shrink: 0; width: 16px; }
.footer-contact-item p { font-size: 0.84rem; color: rgba(255,255,255,0.48); line-height: 1.6; margin: 0; }
.footer-contact-item strong { color: rgba(255,255,255,0.72); font-weight: 500; }

.footer-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 22px 0;
    flex-wrap: wrap;
    gap: 12px;
}
.footer-bottom p { font-size: 0.8rem; color: rgba(255,255,255,0.3); margin: 0; }
.footer-bottom-links { display: flex; gap: 20px; }
.footer-bottom-links a { font-size: 0.8rem; color: rgba(255,255,255,0.3); }
.footer-bottom-links a:hover { color: var(--accent); }

/* ======================
   20. PAGE HERO (INNER PAGES)
   ====================== */

.page-hero {
    background: var(--primary);
    padding: 72px 24px;
    position: relative;
    overflow: hidden;
}
.page-hero-bg {
    position: absolute;
    inset: 0;
    background-image: url('../images/page-hero-bg.jpg');
    background-size: cover;
    background-position: center;
    opacity: 0.18;
}
.page-hero-content { position: relative; z-index: 2; max-width: var(--container-max); margin: 0 auto; }
.breadcrumb { display: flex; align-items: center; gap: 8px; margin-bottom: 18px; flex-wrap: wrap; }
.breadcrumb a { color: rgba(255,255,255,0.5); font-size: 0.8rem; }
.breadcrumb a:hover { color: var(--accent); }
.breadcrumb .sep { color: rgba(255,255,255,0.25); font-size: 0.75rem; }
.breadcrumb .crumb-current { color: var(--accent); font-size: 0.8rem; font-weight: 500; }
.page-hero h1 { color: var(--white); font-size: clamp(1.9rem, 4vw, 3rem); margin-bottom: 12px; }
.page-hero p  { color: rgba(255,255,255,0.62); font-size: 1rem; max-width: 560px; margin: 0; }

/* ======================
   21. CLIENTS PAGE
   ====================== */

.clients-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 1px;
    background: var(--border);
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    overflow: hidden;
}
.client-logo-cell {
    background: var(--white);
    padding: 28px 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 8px;
    min-height: 110px;
    transition: background 0.2s;
}
.client-logo-cell:hover { background: var(--bg-section); }
.client-logo-cell img { max-height: 44px; max-width: 110px; object-fit: contain; filter: grayscale(100%); opacity: 0.45; transition: var(--transition); }
.client-logo-cell:hover img { filter: grayscale(0%); opacity: 1; }
.client-logo-text { font-family: var(--font-heading); font-size: 1.1rem; font-weight: 700; color: var(--text-muted); text-align: center; }
.client-logo-sub  { font-size: 0.6rem; text-transform: uppercase; letter-spacing: 0.08em; color: var(--text-light); margin-top: 4px; text-align: center; }

/* ======================
   22. BLOG CARDS
   ====================== */

.blog-card {
    background: var(--white);
    border-radius: var(--radius-md);
    overflow: hidden;
    border: 1px solid var(--border-light);
    box-shadow: var(--shadow-xs);
    transition: var(--transition);
    display: flex;
    flex-direction: column;
    text-decoration: none;
}
.blog-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-md); border-color: transparent; }

.blog-card-img { width: 100%; height: 210px; overflow: hidden; }
.blog-card-img .img-cover-wrap { width: 100%; height: 100%; transition: transform 0.5s ease; }
.blog-card:hover .blog-card-img .img-cover-wrap { transform: scale(1.05); }

.blog-card-body { padding: 26px; flex: 1; display: flex; flex-direction: column; }
.blog-meta { display: flex; align-items: center; gap: 12px; margin-bottom: 12px; flex-wrap: wrap; }
.blog-cat  { font-size: 0.7rem; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; color: var(--accent); background: var(--accent-light); padding: 3px 10px; border-radius: 50px; }
.blog-date { font-size: 0.78rem; color: var(--text-light); display: flex; align-items: center; gap: 5px; }
.blog-date i { font-size: 0.72rem; }
.blog-card h3 { font-size: 1.08rem; margin-bottom: 10px; color: var(--text-dark); line-height: 1.4; transition: color 0.2s; }
.blog-card:hover h3 { color: var(--accent); }
.blog-card p  { font-size: 0.86rem; color: var(--text-muted); line-height: 1.7; flex: 1; margin-bottom: 18px; }

/* ======================
   23. BLOG DETAIL PAGE
   ====================== */

.blog-post-layout {
    display: grid;
    grid-template-columns: 1fr 330px;
    gap: 56px;
    align-items: start;
}
.blog-post-header { margin-bottom: 28px; }
.blog-post-meta { display: flex; align-items: center; gap: 18px; margin-bottom: 14px; flex-wrap: wrap; }
.blog-post-meta .blog-cat { font-size: 0.7rem; }
.blog-post-meta .meta-item { font-size: 0.84rem; color: var(--text-muted); display: flex; align-items: center; gap: 6px; }
.blog-post-meta .meta-item i { color: var(--accent); font-size: 0.78rem; }
.blog-post-title { font-size: clamp(1.8rem, 3.5vw, 2.5rem); line-height: 1.25; margin-bottom: 14px; }
.blog-post-lead { font-size: 1.05rem; color: var(--text-muted); line-height: 1.85; border-left: 3px solid var(--accent); padding-left: 20px; font-style: italic; margin-bottom: 32px; }

.blog-featured-img { width: 100%; height: 420px; border-radius: var(--radius-md); overflow: hidden; margin-bottom: 40px; }
.blog-featured-img .img-cover-wrap { width: 100%; height: 100%; }
.blog-featured-img .img-icon i { font-size: 3.5rem; }

.blog-post-body { font-size: 1rem; line-height: 1.92; color: var(--text-body); }
.blog-post-body h2 { font-size: 1.65rem; margin: 38px 0 14px; }
.blog-post-body h3 { font-size: 1.25rem; margin: 30px 0 12px; }
.blog-post-body p  { margin-bottom: 20px; }
.blog-post-body ul, .blog-post-body ol { list-style: disc; padding-left: 28px; margin-bottom: 20px; }
.blog-post-body li { margin-bottom: 8px; }
.blog-post-body blockquote {
    background: var(--bg-section);
    border-left: 4px solid var(--accent);
    padding: 22px 26px;
    margin: 32px 0;
    border-radius: 0 var(--radius-md) var(--radius-md) 0;
    font-style: italic;
    color: var(--text-muted);
    font-size: 1.03rem;
}

/* Blog sidebar */
.blog-sidebar { display: flex; flex-direction: column; gap: 28px; position: sticky; top: 100px; }
.sidebar-widget { background: var(--bg-section); border-radius: var(--radius-md); padding: 26px; border: 1px solid var(--border-light); }
.sidebar-widget-title {
    font-size: 0.8rem;
    font-family: var(--font-body);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--text-dark);
    padding-bottom: 12px;
    border-bottom: 2px solid var(--accent);
    margin-bottom: 18px;
}
.recent-post { display: flex; gap: 12px; padding: 12px 0; border-bottom: 1px solid var(--border-light); }
.recent-post:last-child { border-bottom: none; padding-bottom: 0; }
.recent-post-thumb { width: 60px; height: 60px; border-radius: var(--radius); overflow: hidden; flex-shrink: 0; background: var(--border); display: flex; align-items: center; justify-content: center; }
.recent-post-thumb i { font-size: 1.2rem; color: var(--text-light); }
.recent-post-info h6 { font-size: 0.86rem; font-family: var(--font-body); font-weight: 600; color: var(--text-dark); line-height: 1.4; margin-bottom: 4px; transition: color 0.2s; }
.recent-post:hover .recent-post-info h6 { color: var(--accent); }
.recent-post-info span { font-size: 0.76rem; color: var(--text-light); }
.cat-list-item { display: flex; justify-content: space-between; padding: 10px 0; border-bottom: 1px solid var(--border-light); font-size: 0.875rem; color: var(--text-body); transition: color 0.2s; cursor: pointer; }
.cat-list-item:last-child { border-bottom: none; }
.cat-list-item:hover { color: var(--accent); }
.cat-count { background: var(--border); color: var(--text-muted); padding: 1px 8px; border-radius: 50px; font-size: 0.74rem; }

/* ======================
   24. PRODUCT DETAIL PAGE
   ====================== */

.product-detail-layout {
    display: grid;
    grid-template-columns: 1fr 420px;
    gap: 56px;
    align-items: start;
}
.product-gallery { position: sticky; top: 100px; }
.product-main-img {
    width: 100%;
    height: 460px;
    border-radius: var(--radius-md);
    overflow: hidden;
    margin-bottom: 14px;
    background: var(--bg-section);
}
.product-main-img .img-cover-wrap { width: 100%; height: 100%; cursor: zoom-in; }
.product-main-img .img-cover-wrap img { width: 100%; height: 100%; object-fit: cover; }
.product-main-img .img-icon i { font-size: 3.5rem; }
.product-thumbs { display: grid; grid-template-columns: repeat(4, 1fr); gap: 10px; }
.product-thumb {
    height: 85px;
    border-radius: var(--radius);
    overflow: hidden;
    border: 2px solid transparent;
    cursor: pointer;
    background: var(--bg-section);
    transition: border-color 0.2s;
    display: flex;
    align-items: center;
    justify-content: center;
}
.product-thumb img { width: 100%; height: 100%; object-fit: cover; }
.product-thumb.active, .product-thumb:hover { border-color: var(--accent); }
.product-thumb i { font-size: 1.5rem; color: var(--text-light); }

/* Product Image Lightbox */
.product-lightbox {
    position: fixed; inset: 0; z-index: 10000;
    background: rgba(0,0,0,0.92);
    display: flex; align-items: center; justify-content: center;
    opacity: 0; visibility: hidden;
    transition: opacity 0.3s, visibility 0.3s;
}
.product-lightbox.open { opacity: 1; visibility: visible; }
.product-lightbox img {
    max-width: 90vw; max-height: 85vh;
    border-radius: var(--radius-md);
    box-shadow: 0 8px 60px rgba(0,0,0,0.5);
    object-fit: contain;
}
.product-lightbox .lightbox-close {
    position: absolute; top: 20px; right: 24px;
    width: 44px; height: 44px; border-radius: 50%;
    background: rgba(255,255,255,0.12); border: none;
    color: #fff; font-size: 1.4rem; cursor: pointer;
    display: flex; align-items: center; justify-content: center;
    transition: background 0.2s;
}
.product-lightbox .lightbox-close:hover { background: rgba(255,255,255,0.25); }
.product-lightbox .lightbox-nav {
    position: absolute; top: 50%; transform: translateY(-50%);
    width: 48px; height: 48px; border-radius: 50%;
    background: rgba(255,255,255,0.12); border: none;
    color: #fff; font-size: 1.2rem; cursor: pointer;
    display: flex; align-items: center; justify-content: center;
    transition: background 0.2s;
}
.product-lightbox .lightbox-nav:hover { background: rgba(255,255,255,0.25); }
.product-lightbox .lightbox-prev { left: 20px; }
.product-lightbox .lightbox-next { right: 20px; }

.prod-detail-category { font-size: 0.75rem; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; color: var(--accent); display: block; margin-bottom: 10px; }
.product-detail-info h1 { font-size: clamp(1.8rem, 3vw, 2.4rem); margin-bottom: 16px; }
.prod-detail-desc { font-size: 0.96rem; line-height: 1.85; color: var(--text-muted); margin-bottom: 28px; padding-bottom: 28px; border-bottom: 1px solid var(--border); }

.product-specs { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; margin-bottom: 28px; }
.spec-item { background: var(--bg-section); padding: 14px 18px; border-radius: var(--radius); border-left: 3px solid var(--accent); }
.spec-item label { display: block; font-size: 0.7rem; font-weight: 600; letter-spacing: 0.08em; text-transform: uppercase; color: var(--text-light); margin-bottom: 4px; }
.spec-item span  { font-size: 0.88rem; font-weight: 600; color: var(--text-dark); }

.prod-features-title { font-size: 0.9rem; font-family: var(--font-body); font-weight: 700; text-transform: uppercase; letter-spacing: 0.08em; margin-bottom: 14px; }
.prod-features-list { display: flex; flex-direction: column; gap: 10px; margin-bottom: 28px; }
.prod-features-list li { display: flex; align-items: flex-start; gap: 12px; font-size: 0.9rem; }
.prod-features-list li i { color: var(--accent); margin-top: 2px; flex-shrink: 0; font-size: 0.8rem; }

.product-cta-box { background: var(--primary); border-radius: var(--radius-md); padding: 26px; text-align: center; }
.product-cta-box h4 { color: var(--white); margin-bottom: 6px; font-size: 1.05rem; }
.product-cta-box p  { color: rgba(255,255,255,0.62); font-size: 0.88rem; margin-bottom: 18px; }

/* ======================
   25. PORTFOLIO FILTER
   ====================== */

.portfolio-filter { display: flex; gap: 8px; flex-wrap: wrap; margin-bottom: 36px; }
.filter-btn {
    padding: 7px 18px;
    border: 1px solid var(--border);
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 500;
    color: var(--text-muted);
    background: var(--white);
    cursor: pointer;
    transition: var(--transition);
    font-family: var(--font-body);
}
.filter-btn:hover, .filter-btn.active { background: var(--accent); border-color: var(--accent); color: var(--white); }

.portfolio-masonry {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 22px;
}
.portfolio-item { border-radius: var(--radius-md); overflow: hidden; position: relative; cursor: pointer; }
.portfolio-item-img { overflow: hidden; }
.portfolio-item-img .img-cover-wrap { height: 260px; transition: transform 0.55s ease; }
.portfolio-item:hover .portfolio-item-img .img-cover-wrap { transform: scale(1.06); }
.portfolio-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 22px 20px;
    background: linear-gradient(to top, rgba(7,13,26,0.88) 0%, transparent 100%);
    opacity: 0;
    transform: translateY(8px);
    transition: var(--transition);
}
.portfolio-item:hover .portfolio-overlay { opacity: 1; transform: translateY(0); }
.portfolio-cat  { font-size: 0.68rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.1em; color: var(--accent); margin-bottom: 4px; }
.portfolio-name { font-family: var(--font-heading); font-size: 1rem; color: var(--white); }
.portfolio-item-info { padding: 14px 18px; background: var(--white); }
.portfolio-item-info .portfolio-cat  { margin-bottom: 3px; }
.portfolio-item-info .portfolio-name { font-size: 0.95rem; color: var(--text-dark); font-family: var(--font-heading); font-weight: 600; }

/* ======================
   26. PROCESS STEPS
   ====================== */

.process-steps {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    position: relative;
    gap: 0;
}
.process-steps::before {
    content: '';
    position: absolute;
    top: 30px;
    left: 12%;
    right: 12%;
    height: 1px;
    background: linear-gradient(to right, transparent, var(--border) 20%, var(--border) 80%, transparent);
    z-index: 0;
}
.process-step { text-align: center; padding: 10px 20px 24px; position: relative; z-index: 1; }
.step-number {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: var(--white);
    border: 2px solid var(--accent);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 18px;
    font-family: var(--font-heading);
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--accent);
    box-shadow: var(--shadow-sm);
}
.process-step h4 { font-size: 0.98rem; margin-bottom: 8px; }
.process-step p  { font-size: 0.84rem; color: var(--text-muted); line-height: 1.6; }

/* ======================
   27. WHATSAPP FLOAT BUTTON
   ====================== */

.whatsapp-float { position: fixed; bottom: 28px; right: 28px; z-index: 999; }
.whatsapp-btn {
    display: flex;
    align-items: center;
    gap: 10px;
    background: #25D366;
    color: var(--white);
    padding: 13px 20px;
    border-radius: 50px;
    font-size: 0.875rem;
    font-weight: 600;
    box-shadow: 0 4px 20px rgba(37,211,102,0.38);
    transition: var(--transition);
    text-decoration: none;
    font-family: var(--font-body);
}
.whatsapp-btn:hover { transform: translateY(-3px); box-shadow: 0 8px 28px rgba(37,211,102,0.48); color: var(--white); }
.whatsapp-btn i { font-size: 1.2rem; }

/* ======================
   28. MISC COMPONENTS
   ====================== */

/* Tags */
.tag { display: inline-block; padding: 4px 12px; border-radius: 50px; font-size: 0.74rem; font-weight: 600; }
.tag-accent { background: var(--accent-light); color: var(--accent); border: 1px solid rgba(200,150,62,0.2); }

/* Value cards */
.value-card {
    background: var(--white);
    border-radius: var(--radius-md);
    padding: 36px 26px;
    border: 1px solid var(--border-light);
    text-align: center;
    transition: var(--transition);
}
.value-card:hover { border-color: var(--accent); transform: translateY(-4px); box-shadow: var(--shadow); }
.value-icon { width: 64px; height: 64px; background: var(--accent-light); border-radius: 50%; display: flex; align-items: center; justify-content: center; margin: 0 auto 18px; transition: var(--transition); }
.value-icon i { font-size: 1.5rem; color: var(--accent); }
.value-card:hover .value-icon { background: var(--accent); }
.value-card:hover .value-icon i { color: var(--white); }
.value-card h3 { font-size: 1.08rem; margin-bottom: 10px; }
.value-card p  { font-size: 0.875rem; color: var(--text-muted); line-height: 1.7; }

/* Team cards */
.team-card { text-align: center; }
.team-img { width: 100%; height: 280px; border-radius: var(--radius-md); overflow: hidden; margin-bottom: 16px; }
.team-img .img-cover-wrap { width: 100%; height: 100%; }
.team-name  { font-size: 1.05rem; margin-bottom: 4px; }
.team-role  { font-size: 0.8rem; color: var(--accent); font-weight: 600; text-transform: uppercase; letter-spacing: 0.08em; margin-bottom: 12px; }
.team-links { display: flex; justify-content: center; gap: 8px; }

/* Related products strip */
.related-strip h2 { margin-bottom: 32px; }

/* Accent divider */
.accent-line { width: 48px; height: 3px; background: var(--accent); border-radius: 2px; margin-bottom: 14px; }
.accent-line.centered { margin-left: auto; margin-right: auto; }

/* Number badge (for steps/process) */
.num-badge { display: inline-flex; align-items: center; justify-content: center; width: 36px; height: 36px; background: var(--accent); color: var(--white); border-radius: 50%; font-size: 0.85rem; font-weight: 700; font-family: var(--font-heading); flex-shrink: 0; }

/* ======================
   29. CONTACT PAGE
   ====================== */

.contact-info-strip {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0;
    background: var(--primary);
    border-top: 1px solid rgba(255,255,255,0.07);
}
.contact-info-card {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    padding: 40px 36px;
    border-right: 1px solid rgba(255,255,255,0.07);
    transition: var(--transition);
}
.contact-info-card:last-child { border-right: none; }
.contact-info-card:hover { background: rgba(255,255,255,0.03); }
.contact-info-icon {
    width: 52px;
    height: 52px;
    border-radius: var(--radius-md);
    background: rgba(200,150,62,0.12);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}
.contact-info-icon i { font-size: 1.2rem; color: var(--accent); }
.contact-info-text h5 { color: var(--white); font-family: var(--font-body); font-size: 0.78rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.1em; margin-bottom: 6px; }
.contact-info-text p, .contact-info-text a { color: rgba(255,255,255,0.6); font-size: 0.88rem; line-height: 1.6; margin: 0; }
.contact-info-text a:hover { color: var(--accent); }

.contact-main { padding: 96px 0; }
.contact-layout {
    display: grid;
    grid-template-columns: 1fr 420px;
    gap: 72px;
    align-items: start;
}

/* Contact Form */
.contact-form-wrap { background: var(--white); border-radius: var(--radius-lg); border: 1px solid var(--border-light); padding: 48px; box-shadow: var(--shadow-md); }
.contact-form-wrap h2 { font-size: clamp(1.6rem, 3vw, 2rem); margin-bottom: 8px; }
.contact-form-wrap > p { color: var(--text-muted); font-size: 0.9rem; margin-bottom: 36px; }

.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; margin-bottom: 20px; }
.form-group { display: flex; flex-direction: column; gap: 6px; margin-bottom: 20px; }
.form-group:last-child { margin-bottom: 0; }
.form-label { font-size: 0.8rem; font-weight: 600; color: var(--text-dark); text-transform: uppercase; letter-spacing: 0.07em; }
.form-label span { color: var(--accent); }
.form-control {
    width: 100%;
    padding: 13px 16px;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    font-size: 0.9rem;
    font-family: var(--font-body);
    color: var(--text-body);
    background: var(--off-white);
    transition: border-color 0.2s, box-shadow 0.2s;
    outline: none;
}
.form-control:focus { border-color: var(--accent); background: var(--white); box-shadow: 0 0 0 3px rgba(200,150,62,0.12); }
.form-control::placeholder { color: var(--text-light); }
select.form-control { appearance: none; -webkit-appearance: none; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%236B7280' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 14px center; padding-right: 40px; cursor: pointer; }
textarea.form-control { resize: vertical; min-height: 130px; }

.form-submit-row { display: flex; align-items: center; gap: 20px; flex-wrap: wrap; margin-top: 8px; }
.form-note { font-size: 0.78rem; color: var(--text-light); }
.form-note i { color: var(--accent); margin-right: 4px; }

/* Contact Sidebar */
.contact-sidebar { display: flex; flex-direction: column; gap: 28px; }
.contact-sidebar-box {
    background: var(--bg-section);
    border-radius: var(--radius-md);
    padding: 32px 28px;
    border: 1px solid var(--border-light);
}
.contact-sidebar-box h4 { font-size: 1rem; margin-bottom: 18px; padding-bottom: 14px; border-bottom: 1px solid var(--border); }
.sidebar-contact-row { display: flex; gap: 14px; margin-bottom: 18px; align-items: flex-start; }
.sidebar-contact-row:last-child { margin-bottom: 0; }
.sidebar-contact-icon { width: 40px; height: 40px; border-radius: var(--radius); background: var(--accent-light); display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.sidebar-contact-icon i { font-size: 0.9rem; color: var(--accent); }
.sidebar-contact-info h6 { font-size: 0.78rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.07em; color: var(--text-dark); margin-bottom: 3px; }
.sidebar-contact-info p, .sidebar-contact-info a { font-size: 0.875rem; color: var(--text-muted); margin: 0; }
.sidebar-contact-info a:hover { color: var(--accent); }

.hours-table { width: 100%; font-size: 0.875rem; }
.hours-table tr { display: flex; justify-content: space-between; padding: 8px 0; border-bottom: 1px solid var(--border-light); }
.hours-table tr:last-child { border-bottom: none; }
.hours-table .day { color: var(--text-body); font-weight: 500; }
.hours-table .time { color: var(--text-muted); }
.hours-table .closed { color: #EF4444; }

.dark-sidebar-box {
    background: var(--primary);
    border-radius: var(--radius-md);
    padding: 32px 28px;
    text-align: center;
}
.dark-sidebar-box h4 { color: var(--white); font-size: 1.1rem; margin-bottom: 10px; }
.dark-sidebar-box p { color: rgba(255,255,255,0.6); font-size: 0.875rem; margin-bottom: 22px; }

/* Map Section */
.map-section { background: var(--primary-dark); padding: 0; }
.map-wrap { width: 100%; height: 440px; position: relative; overflow: hidden; }
.map-wrap iframe { width: 100%; height: 100%; border: 0; display: block; }
.map-overlay-card {
    position: absolute;
    top: 32px;
    left: 32px;
    background: var(--white);
    border-radius: var(--radius-md);
    padding: 24px 28px;
    box-shadow: var(--shadow-md);
    max-width: 280px;
    z-index: 2;
}
.map-overlay-card h5 { font-size: 1rem; margin-bottom: 6px; }
.map-overlay-card p { font-size: 0.85rem; color: var(--text-muted); margin: 0 0 16px; }

/* ======================
   30. LANDING PAGE
   ====================== */

/* Landing page — minimal header */
.landing-header {
    position: sticky;
    top: 0;
    z-index: 900;
    background: var(--white);
    border-bottom: 1px solid var(--border-light);
    padding: 0;
}
.landing-header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px 32px;
    max-width: var(--container-wide);
    margin: 0 auto;
}
.landing-header-right { display: flex; align-items: center; gap: 20px; }
.landing-header-phone { display: flex; align-items: center; gap: 8px; font-size: 0.875rem; color: var(--text-muted); }
.landing-header-phone i { color: var(--accent); }
.landing-header-phone a { font-weight: 600; color: var(--text-dark); }
.landing-header-phone a:hover { color: var(--accent); }

/* Landing Hero */
.landing-hero {
    background: var(--primary);
    padding: 80px 0 0;
    overflow: hidden;
    position: relative;
}
.landing-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at 70% 50%, rgba(200,150,62,0.08) 0%, transparent 65%);
    pointer-events: none;
}
.landing-hero-inner {
    max-width: var(--container-wide);
    margin: 0 auto;
    padding: 0 40px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: center;
}
.landing-hero-text { padding-bottom: 80px; }
.landing-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: rgba(200,150,62,0.12);
    border: 1px solid rgba(200,150,62,0.25);
    border-radius: 50px;
    padding: 6px 16px;
    font-size: 0.74rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--accent);
    margin-bottom: 24px;
}
.landing-eyebrow i { font-size: 0.75rem; }
.landing-hero h1 { color: var(--white); font-size: clamp(2.4rem, 5vw, 3.8rem); line-height: 1.18; margin-bottom: 20px; }
.landing-hero h1 em { color: var(--accent); font-style: italic; }
.landing-hero-desc { color: rgba(255,255,255,0.68); font-size: 1.05rem; line-height: 1.8; margin-bottom: 36px; max-width: 500px; }
.landing-cta-group { display: flex; align-items: center; gap: 16px; flex-wrap: wrap; margin-bottom: 44px; }
.landing-trust-row { display: flex; align-items: center; gap: 12px; flex-wrap: wrap; }
.landing-trust-item { display: flex; align-items: center; gap: 6px; font-size: 0.8rem; color: rgba(255,255,255,0.55); }
.landing-trust-item i { color: var(--accent); font-size: 0.75rem; }
.landing-trust-divider { width: 1px; height: 14px; background: rgba(255,255,255,0.15); }

.landing-hero-visual { display: flex; flex-direction: column; gap: 14px; padding-bottom: 0; align-self: end; }
.landing-hero-inner .hero-visual { align-self: end; padding-bottom: 0; }
.lhv-row { display: grid; gap: 14px; }
.lhv-row-2 { grid-template-columns: 1.2fr 1fr; }
.lhv-row-1 { grid-template-columns: 1fr; }
.lhv-img {
    border-radius: var(--radius-md) var(--radius-md) 0 0;
    overflow: hidden;
    background: linear-gradient(135deg, var(--primary-light) 0%, var(--primary-dark) 100%);
    position: relative;
}
.lhv-img-tall { height: 240px; }
.lhv-img-short { height: 180px; }
.lhv-img-wide { height: 200px; border-radius: var(--radius-md); }
.lhv-img .img-cover-wrap { width: 100%; height: 100%; }
.lhv-img .img-icon { position: absolute; inset: 0; display: flex; align-items: center; justify-content: center; color: rgba(200,150,62,0.3); font-size: 2rem; }

/* Landing proof bar */
.landing-proof {
    background: var(--accent);
    padding: 20px 0;
}
.landing-proof-inner {
    max-width: var(--container-wide);
    margin: 0 auto;
    padding: 0 40px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    flex-wrap: wrap;
}
.lp-stat { text-align: center; }
.lp-stat-num { font-family: var(--font-heading); font-size: 1.8rem; font-weight: 700; color: var(--white); line-height: 1; display: block; }
.lp-stat-label { font-size: 0.78rem; color: rgba(255,255,255,0.8); text-transform: uppercase; letter-spacing: 0.08em; margin-top: 4px; display: block; }
.lp-divider { width: 1px; height: 40px; background: rgba(255,255,255,0.25); }

/* Landing benefits */
.landing-benefits { padding: 88px 0; }
.lbenefit-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px; }
.lbenefit-card {
    background: var(--white);
    border-radius: var(--radius-md);
    padding: 40px 32px;
    border: 1px solid var(--border-light);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}
.lbenefit-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 3px;
    background: var(--accent);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.35s ease;
}
.lbenefit-card:hover::before { transform: scaleX(1); }
.lbenefit-card:hover { box-shadow: var(--shadow-md); transform: translateY(-4px); border-color: transparent; }
.lbenefit-icon { width: 60px; height: 60px; border-radius: var(--radius-md); background: var(--accent-light); display: flex; align-items: center; justify-content: center; margin-bottom: 22px; transition: var(--transition); }
.lbenefit-icon i { font-size: 1.4rem; color: var(--accent); }
.lbenefit-card:hover .lbenefit-icon { background: var(--accent); }
.lbenefit-card:hover .lbenefit-icon i { color: var(--white); }
.lbenefit-card h3 { font-size: 1.15rem; margin-bottom: 12px; }
.lbenefit-card p { font-size: 0.88rem; color: var(--text-muted); line-height: 1.75; margin-bottom: 18px; }
.lbenefit-stat { font-family: var(--font-heading); font-size: 2rem; font-weight: 700; color: var(--accent); display: block; }
.lbenefit-stat-label { font-size: 0.78rem; color: var(--text-light); text-transform: uppercase; letter-spacing: 0.07em; }

/* Landing how it works */
.landing-how { background: var(--primary); padding: 88px 0; }
.lhow-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 40px; position: relative; }
.lhow-grid::before {
    content: '';
    position: absolute;
    top: 40px;
    left: calc(16.66% + 20px);
    right: calc(16.66% + 20px);
    height: 1px;
    background: rgba(200,150,62,0.3);
    border-top: 1px dashed rgba(200,150,62,0.35);
}
.lhow-step { text-align: center; padding: 0 16px; }
.lhow-num {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    border: 2px solid rgba(200,150,62,0.4);
    background: rgba(200,150,62,0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 24px;
    font-family: var(--font-heading);
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--accent);
    transition: var(--transition);
}
.lhow-step:hover .lhow-num { background: var(--accent); color: var(--white); border-color: var(--accent); }
.lhow-step h3 { color: var(--white); font-size: 1.08rem; margin-bottom: 12px; }
.lhow-step p { color: rgba(255,255,255,0.55); font-size: 0.875rem; line-height: 1.75; }

/* Landing gallery */
.landing-gallery { padding: 88px 0; background: var(--bg-section); }
.lgallery-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr; grid-template-rows: 240px 240px; gap: 16px; }
.lgallery-item {
    border-radius: var(--radius-md);
    overflow: hidden;
    position: relative;
    background: linear-gradient(135deg, var(--primary-light) 0%, var(--primary-dark) 100%);
}
.lgallery-item img { width: 100%; height: 100%; object-fit: cover; display: block; }
.lgallery-item.tall { grid-row: span 2; }
.lgallery-item .img-icon { position: absolute; inset: 0; display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 8px; color: rgba(200,150,62,0.35); font-size: 2rem; }
.lgallery-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(15,23,42,0.85) 0%, transparent 60%);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 20px;
    opacity: 0;
    transition: var(--transition);
}
.lgallery-item:hover .lgallery-overlay { opacity: 1; }
.lgallery-overlay span { color: var(--white); font-size: 0.875rem; font-weight: 600; }
.lgallery-overlay small { color: rgba(255,255,255,0.6); font-size: 0.78rem; }

/* Landing testimonials */
.landing-testimonials { padding: 88px 0; }
.ltestimonial-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 28px; }
.ltestimonial-card {
    background: var(--bg-section);
    border-radius: var(--radius-md);
    padding: 36px 32px;
    border: 1px solid var(--border-light);
    position: relative;
}
.ltestimonial-card::before {
    content: '\201C';
    font-family: Georgia, serif;
    font-size: 5rem;
    color: var(--accent);
    opacity: 0.2;
    position: absolute;
    top: 12px;
    left: 28px;
    line-height: 1;
}
.ltestimonial-stars { display: flex; gap: 3px; margin-bottom: 16px; }
.ltestimonial-stars i { color: var(--accent); font-size: 0.85rem; }
.ltestimonial-text { font-size: 0.95rem; color: var(--text-body); line-height: 1.8; margin-bottom: 24px; font-style: italic; }
.ltestimonial-author { display: flex; align-items: center; gap: 14px; }
.ltestimonial-avatar {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary-light), var(--primary-dark));
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-heading);
    font-weight: 700;
    color: var(--accent);
    font-size: 1.1rem;
    flex-shrink: 0;
}
.ltestimonial-name { font-weight: 600; font-size: 0.9rem; color: var(--text-dark); }
.ltestimonial-meta { font-size: 0.78rem; color: var(--text-muted); }

/* Landing CTA form */
.landing-cta-section {
    background: var(--primary);
    padding: 88px 0;
    position: relative;
    overflow: hidden;
}
.landing-cta-section::before {
    content: '';
    position: absolute;
    top: -60px; right: -60px;
    width: 400px; height: 400px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(200,150,62,0.1) 0%, transparent 70%);
    pointer-events: none;
}
.lcta-layout {
    display: grid;
    grid-template-columns: 1fr 440px;
    gap: 72px;
    align-items: center;
}
.lcta-text h2 { color: var(--white); font-size: clamp(1.8rem, 3.5vw, 2.8rem); margin-bottom: 16px; }
.lcta-text h2 em { color: var(--accent); font-style: italic; }
.lcta-text p { color: rgba(255,255,255,0.6); font-size: 1rem; line-height: 1.8; margin-bottom: 32px; }
.lcta-checklist { display: flex; flex-direction: column; gap: 12px; }
.lcta-check-item { display: flex; align-items: center; gap: 12px; font-size: 0.9rem; color: rgba(255,255,255,0.75); }
.lcta-check-item i { color: var(--accent); font-size: 0.85rem; flex-shrink: 0; }

.lcta-form-box {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 40px 36px;
    box-shadow: 0 24px 64px rgba(0,0,0,0.3);
}
.lcta-form-box h3 { font-size: 1.3rem; margin-bottom: 6px; }
.lcta-form-box > p { font-size: 0.875rem; color: var(--text-muted); margin-bottom: 28px; }
.lcta-form-urgency {
    background: var(--accent-light);
    border: 1px solid rgba(200,150,62,0.25);
    border-radius: var(--radius);
    padding: 10px 14px;
    font-size: 0.8rem;
    color: var(--accent);
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 24px;
}

/* Landing minimal footer */
.landing-footer {
    background: var(--primary-dark);
    padding: 28px 0;
    border-top: 1px solid rgba(255,255,255,0.06);
}
.landing-footer-inner {
    max-width: var(--container-wide);
    margin: 0 auto;
    padding: 0 40px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    flex-wrap: wrap;
}
.landing-footer p { color: rgba(255,255,255,0.4); font-size: 0.82rem; margin: 0; }
.landing-footer-links { display: flex; gap: 20px; }
.landing-footer-links a { font-size: 0.82rem; color: rgba(255,255,255,0.4); transition: var(--transition-fast); }
.landing-footer-links a:hover { color: var(--accent); }

/* ======================
   RESPONSIVE — Contact & Landing
   ====================== */

@media (max-width: 992px) {
    .contact-info-strip { grid-template-columns: 1fr; }
    .contact-info-card { border-right: none; border-bottom: 1px solid rgba(255,255,255,0.07); }
    .contact-layout { grid-template-columns: 1fr; gap: 40px; }
    .form-row { grid-template-columns: 1fr; }

    .landing-hero-inner { grid-template-columns: 1fr; gap: 40px; }
    .landing-hero-visual { display: none; }
    .landing-hero-inner .hero-visual { display: none; }
    .landing-hero-text { padding-bottom: 64px; }
    .lbenefit-grid { grid-template-columns: 1fr; }
    .lhow-grid { grid-template-columns: 1fr; gap: 28px; }
    .lhow-grid::before { display: none; }
    .lgallery-grid { grid-template-columns: 1fr 1fr; grid-template-rows: auto; }
    .lgallery-item.tall { grid-row: span 1; }
    .ltestimonial-grid { grid-template-columns: 1fr; }
    .lcta-layout { grid-template-columns: 1fr; gap: 40px; }
    .landing-proof-inner { justify-content: center; gap: 32px; }
    .lp-divider { display: none; }
}

@media (max-width: 768px) {
    .contact-form-wrap { padding: 32px 24px; }
    .lbenefit-grid { grid-template-columns: 1fr; }
    .landing-header-inner { padding: 14px 20px; }
    .landing-footer-inner { flex-direction: column; text-align: center; }
    .landing-hero-inner { padding: 0 20px; }
    .landing-proof-inner { padding: 0 20px; }
    .lgallery-grid { grid-template-columns: 1fr; }
    .map-overlay-card { position: static; margin: 24px; max-width: calc(100% - 48px); }
    .map-wrap { height: auto; }
}

@media (max-width: 576px) {
    .landing-cta-group { flex-direction: column; align-items: stretch; }
    .landing-cta-group .btn { text-align: center; justify-content: center; }
    .lcta-form-box { padding: 28px 20px; }
}

/* ======================
   PROJECT POPUP MODAL
   ====================== */

.project-popup {
    position: fixed;
    inset: 0;
    z-index: 10000;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    visibility: hidden;
    pointer-events: none;
}

.project-popup-backdrop {
    position: absolute;
    inset: 0;
    background: rgba(7, 13, 26, 0.82);
    opacity: 0;
    transition: opacity 0.38s ease;
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
}

.project-popup-inner {
    position: relative;
    width: 100%;
    max-width: 1140px;
    height: 90vh;
    background: #fff;
    border-radius: 14px;
    overflow: hidden;
    box-shadow: 0 40px 100px rgba(0, 0, 0, 0.45);
    transform: scale(0.88) translateY(32px);
    opacity: 0;
    transition: transform 0.42s cubic-bezier(0.34, 1.4, 0.64, 1), opacity 0.38s ease;
    will-change: transform, opacity;
}

.project-popup.open {
    visibility: visible;
    pointer-events: auto;
}

.project-popup.open .project-popup-backdrop {
    opacity: 1;
}

.project-popup.open .project-popup-inner {
    transform: scale(1) translateY(0);
    opacity: 1;
}

.project-popup-close {
    position: absolute;
    top: 14px;
    right: 14px;
    z-index: 10;
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.96);
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.05rem;
    color: var(--text-dark);
    box-shadow: 0 2px 14px rgba(0, 0, 0, 0.22);
    transition: background 0.22s ease, color 0.22s ease, transform 0.22s ease;
}

.project-popup-close:hover {
    background: var(--accent);
    color: #fff;
    transform: scale(1.1) rotate(90deg);
}

.project-popup-frame {
    width: 100%;
    height: 100%;
    border: none;
    display: block;
}

@media (max-width: 600px) {
    .project-popup { padding: 10px; }
    .project-popup-inner { height: 95vh; border-radius: 10px; }
}

/* ======================
   SCOPE OF WORK ACCORDION
   ====================== */

.scope-list { display: flex; flex-direction: column; gap: 11px; }
.scope-list li { display: flex; align-items: center; gap: 12px; font-size: 0.875rem; color: var(--text-body); }
.scope-list li i { color: var(--accent); font-size: 0.8rem; width: 14px; flex-shrink: 0; }

.scope-accordion { display: flex; flex-direction: column; gap: 10px; }
.scope-acc-item { border: 1px solid var(--border-light); border-radius: var(--radius-sm, 8px); overflow: hidden; }
.scope-acc-header { display: flex; align-items: center; justify-content: space-between; gap: 10px; padding: 13px 16px; cursor: pointer; background: var(--bg-section); font-size: 0.78rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.09em; color: var(--text-dark); }
.scope-acc-header .scope-acc-chevron { color: var(--accent); font-size: 0.78rem; transition: transform 0.3s; }
.scope-acc-item.open .scope-acc-header .scope-acc-chevron { transform: rotate(180deg); }
.scope-acc-body { max-height: 0; overflow: hidden; transition: max-height 0.4s ease; }
.scope-acc-item.open .scope-acc-body { max-height: 2000px; }
.scope-acc-body .scope-list { padding: 16px; }
