/* ==========================================================================
   Gola Oil & Gas — Laravel Theme Stylesheet
   Matches: https://gola.peerduck.com/oil-gas-company/
   Fonts: DM Sans (body) + Outfit (headings)
   Accent: #ED6C30
   ========================================================================== */

/* ------------------------------------------------------------------
   FONTS
   ------------------------------------------------------------------ */
@font-face {
    font-family: "DM Sans";
    src: url("../theme/fonts/DMSans-400.woff2") format("woff2");
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}
@font-face {
    font-family: "DM Sans";
    src: url("../theme/fonts/DMSans-500.woff2") format("woff2");
    font-weight: 500;
    font-style: normal;
    font-display: swap;
}
@font-face {
    font-family: "DM Sans";
    src: url("../theme/fonts/DMSans-700.woff2") format("woff2");
    font-weight: 700;
    font-style: normal;
    font-display: swap;
}
@font-face {
    font-family: "Outfit";
    src: url("../theme/fonts/Outfit-700.woff2") format("woff2");
    font-weight: 700;
    font-style: normal;
    font-display: swap;
}

/* ------------------------------------------------------------------
   DESIGN TOKENS
   ------------------------------------------------------------------ */
:root {
    --accent: #ed6c30;
    --accent-dark: #d5591f;
    --ink: #0c0c0c;
    --muted: #666b73;
    --paper: #f6f3ee;
    --panel: #ffffff;
    --line: #e4e5e9;
    --night: #0b0c0e;
    --night-2: #141619;
    --shadow: 0 16px 50px rgba(12, 12, 12, .08);
    --radius-pill: 30px;
    --radius-card: 24px;
    --side-pad: clamp(22px, 6vw, 92px);
    --container: 1360px;
}

/* ------------------------------------------------------------------
   RESET & BASE
   ------------------------------------------------------------------ */
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
    margin: 0;
    font-family: "DM Sans", Arial, sans-serif;
    color: var(--ink);
    background: var(--paper);
    overflow-x: hidden;
}
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
h1, h2, h3 { font-family: "Outfit", sans-serif; letter-spacing: 0; margin: 0; }

/* ------------------------------------------------------------------
   BLUEPRINT BACKGROUND PATTERN (schematic lines on light sections)
   ------------------------------------------------------------------ */
.blueprint-bg {
    position: relative;
}
.blueprint-bg::before {
    content: "";
    position: absolute;
    inset: 0;
    opacity: .05;
    pointer-events: none;
    background-image:
        url("data:image/svg+xml,%3Csvg width='400' height='400' xmlns='http://www.w3.org/2000/svg'%3E%3Cdefs%3E%3Cpattern id='bp' width='200' height='200' patternUnits='userSpaceOnUse'%3E%3Cline x1='0' y1='50' x2='200' y2='50' stroke='%23333' stroke-width='.5'/%3E%3Cline x1='0' y1='150' x2='200' y2='150' stroke='%23333' stroke-width='.5'/%3E%3Cline x1='50' y1='0' x2='50' y2='200' stroke='%23333' stroke-width='.5'/%3E%3Cline x1='150' y1='0' x2='150' y2='200' stroke='%23333' stroke-width='.5'/%3E%3Ccircle cx='50' cy='50' r='3' fill='none' stroke='%23333' stroke-width='.5'/%3E%3Ccircle cx='150' cy='150' r='3' fill='none' stroke='%23333' stroke-width='.5'/%3E%3Cline x1='20' y1='20' x2='35' y2='20' stroke='%23333' stroke-width='.4'/%3E%3Cline x1='20' y1='20' x2='20' y2='35' stroke='%23333' stroke-width='.4'/%3E%3Cline x1='180' y1='180' x2='165' y2='180' stroke='%23333' stroke-width='.4'/%3E%3Cline x1='180' y1='180' x2='180' y2='165' stroke='%23333' stroke-width='.4'/%3E%3Ctext x='52' y='46' font-size='7' fill='%23333' opacity='.7'%3E53.4%3C/text%3E%3Ctext x='152' y='146' font-size='7' fill='%23333' opacity='.7'%3E83.6%3C/text%3E%3Cline x1='80' y1='100' x2='120' y2='100' stroke='%23333' stroke-width='.3'/%3E%3Cline x1='100' y1='80' x2='100' y2='120' stroke='%23333' stroke-width='.3'/%3E%3Cpolyline points='0,100 20,80 40,100 60,80 80,100' fill='none' stroke='%23333' stroke-width='.3'/%3E%3Cpolyline points='120,100 140,120 160,100 180,120 200,100' fill='none' stroke='%23333' stroke-width='.3'/%3E%3C/pattern%3E%3C/defs%3E%3Crect width='400' height='400' fill='url(%23bp)'/%3E%3C/svg%3E");
    background-size: 400px 400px;
    z-index: 0;
}
.blueprint-bg > * {
    position: relative;
    z-index: 1;
}

/* ------------------------------------------------------------------
   HEADER
   ------------------------------------------------------------------ */
.site-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 50;
    padding: 28px var(--side-pad);
    color: #fff;
    background: transparent;
    transition: padding .25s ease, background .25s ease, box-shadow .25s ease;
}
.header-inner {
    width: min(1580px, 100%);
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 28px;
}
.site-header::after {
    content: "";
    position: absolute;
    left: var(--side-pad);
    right: var(--side-pad);
    bottom: 0;
    height: 1px;
    background: rgba(255, 255, 255, .13);
    transition: opacity .25s ease;
}
.site-header.is-scrolled {
    padding-top: 15px;
    padding-bottom: 15px;
    background: rgba(0, 0, 0, .92);
    box-shadow: 0 18px 40px rgba(0, 0, 0, .22);
    backdrop-filter: blur(16px);
}
.site-header.is-scrolled::after { opacity: 0; }

.brand {
    display: flex;
    align-items: center;
    min-width: 110px;
}
.brand img {
    width: 112px;
    max-height: 46px;
    object-fit: contain;
    height: auto;
}

.main-nav {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: clamp(16px, 2vw, 30px);
    font-weight: 700;
    color: #fff;
}
.main-nav a {
    position: relative;
    white-space: nowrap;
    transition: color .2s ease, transform .2s ease;
}
.main-nav > a:not(.nav-cta)::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: -8px;
    height: 2px;
    background: var(--accent);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform .2s ease;
}
.main-nav > a:not(.nav-cta):hover::after { transform: scaleX(1); }
.main-nav a:hover { color: var(--accent); transform: translateY(-1px); }

/* Services Dropdown Menu */
.nav-dropdown-wrapper {
    position: relative;
    display: inline-block;
}

.nav-dropdown-trigger {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    cursor: pointer;
    white-space: nowrap;
    padding: 6px 0;
    color: #ffffff;
    transition: color .2s ease;
}

.dropdown-chevron {
    transition: transform .25s ease;
}

.nav-dropdown-wrapper:hover .dropdown-chevron {
    transform: rotate(180deg);
    color: var(--accent);
}

.nav-dropdown-menu {
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%) translateY(12px);
    width: 250px;
    background: #0f131a;
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 18px;
    padding: 12px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(16px);
    opacity: 0;
    visibility: hidden;
    transition: all .25s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 1000;
}

.nav-dropdown-wrapper:hover .nav-dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(4px);
}

.dropdown-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px 14px;
    border-radius: 12px;
    color: #e2e8f0 !important;
    font-size: 13.5px;
    font-weight: 700;
    text-decoration: none;
    transition: background .2s ease, color .2s ease, transform .2s ease;
}

.dropdown-item:hover {
    background: rgba(237, 108, 48, 0.15);
    color: var(--accent) !important;
    transform: translateX(4px) !important;
}

.dropdown-divider {
    height: 1px;
    background: rgba(255, 255, 255, 0.08);
    margin: 8px 0;
}

.dropdown-view-all {
    color: var(--accent) !important;
    font-weight: 800;
    font-size: 13px;
    justify-content: center;
}

/* Dynamic Brand Logo Badge */
.brand-logo-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
}
.brand-logo-icon {
    width: 36px;
    height: 36px;
    border-radius: 10px;
    background: var(--accent);
    color: #ffffff;
    display: grid;
    place-items: center;
    box-shadow: 0 4px 14px rgba(237, 108, 48, 0.4);
}
.brand-logo-text {
    font-family: 'Outfit', sans-serif;
    font-size: 22px;
    font-weight: 800;
    color: #ffffff;
    letter-spacing: -.02em;
    white-space: nowrap;
}
.footer-logo-badge .brand-logo-text {
    font-size: 24px;
}

/* Google Translate Header Component (gtranslator) */
.gtranslator-wrapper {
    position: relative;
    display: inline-block;
}
.gtranslator-trigger {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 8px 14px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.16);
    border-radius: 20px;
    color: #ffffff;
    font-size: 13px;
    font-weight: 700;
    cursor: pointer;
    transition: all .2s ease;
}
.gtranslator-trigger:hover {
    background: rgba(255, 255, 255, 0.15);
    border-color: var(--accent);
}
.gtranslator-dropdown {
    position: absolute;
    top: 100%;
    right: 0;
    transform: translateY(12px);
    width: 340px;
    max-height: 420px;
    overflow-y: auto;
    background: #0c0e14;
    border: 1px solid rgba(255, 255, 255, 0.14);
    border-radius: 18px;
    padding: 16px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.65);
    backdrop-filter: blur(18px);
    opacity: 0;
    visibility: hidden;
    transition: all .25s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 1000;
}
.gtranslator-wrapper:hover .gtranslator-dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateY(4px);
}
.gtranslator-header-label {
    font-size: 10.5px;
    font-weight: 800;
    color: var(--accent);
    letter-spacing: .8px;
    margin-bottom: 12px;
    padding-bottom: 6px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}
.gtranslator-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 6px;
}
.lang-select-btn {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 7px 10px;
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid transparent;
    color: #e2e8f0;
    font-size: 12.5px;
    font-weight: 600;
    cursor: pointer;
    transition: all .2s ease;
}
.lang-select-btn:hover,
.lang-select-btn.active {
    background: rgba(237, 108, 48, 0.18);
    border-color: var(--accent);
    color: #ffffff;
}
.goog-te-banner-frame,
.skiptranslate {
    display: none !important;
}
body {
    top: 0 !important;
}

/* ------------------------------------------------------------------
   BUTTONS — Pill Shape (Gola style)
   ------------------------------------------------------------------ */
.nav-cta, .btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 48px;
    border-radius: var(--radius-pill);
    padding: 0 28px;
    font-weight: 800;
    cursor: pointer;
    border: none;
    transition: transform .2s ease, background .2s ease, border-color .2s ease, box-shadow .2s ease;
}
.nav-cta, .btn-primary {
    background: var(--accent);
    color: #fff;
}
.nav-cta:hover, .btn-primary:hover {
    background: var(--accent-dark);
    color: #fff;
    box-shadow: 0 8px 28px rgba(237, 108, 48, .35);
}
.btn-ghost {
    border: 1.5px solid rgba(255,255,255,.55);
    color: #fff;
    background: transparent;
}
.btn-ghost:hover {
    border-color: #fff;
    background: rgba(255,255,255,.08);
}
.btn:hover { transform: translateY(-2px); }

.menu-toggle { display: none; background: none; border: 0; cursor: pointer; color: #fff; }
.menu-toggle svg { width: 30px; stroke: currentColor; stroke-width: 2; }

/* ------------------------------------------------------------------
   HERO
   ------------------------------------------------------------------ */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 160px var(--side-pad) 180px;
    color: #fff;
    background: var(--hero-image) center/cover fixed;
    overflow: hidden;
}
.hero-bg-slideshow { position: absolute; inset: 0; z-index: 0; }
.hero-bg-slideshow span {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    opacity: 0;
    transform: scale(1);
    animation: heroFade 25s infinite;
    animation-delay: calc(var(--slide-index) * 5s);
}
.hero-bg-slideshow span:first-child { opacity: 1; }
.hero > *:not(.hero-bg-slideshow) { position: relative; z-index: 1; }
@keyframes heroFade {
    0% { opacity: 0; transform: scale(1); }
    5% { opacity: 1; }
    35% { opacity: 1; transform: scale(1.08); }
    45% { opacity: 0; transform: scale(1.11); }
    100% { opacity: 0; transform: scale(1.11); }
}
.hero-overlay {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 78% 20%, rgba(237, 108, 48, .22), transparent 30%),
        linear-gradient(90deg, rgba(0,0,0,.86), rgba(0,0,0,.55), rgba(0,0,0,.16));
}
.hero-content {
    position: relative;
    max-width: 820px;
    z-index: 20;
    margin-bottom: 30px;
}
.eyebrow {
    color: var(--accent);
    text-transform: uppercase;
    font-weight: 900;
    letter-spacing: .08em;
    margin: 0 0 14px;
    font-size: 15px;
}
.hero h1 {
    font-size: clamp(54px, 8.6vw, 124px);
    line-height: .9;
    max-width: 980px;
}
.hero p:not(.eyebrow) {
    max-width: 620px;
    color: rgba(255,255,255,.84);
    font-size: 20px;
    line-height: 1.65;
}
.hero-actions {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 16px;
    margin-top: 30px;
    position: relative;
    z-index: 25;
}
.video-link {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    min-height: 48px;
    color: #fff;
    font-weight: 900;
    cursor: pointer;
    transition: transform .2s ease, color .2s ease;
    z-index: 25;
}
.video-link:hover { color: var(--accent); transform: translateY(-2px); }
.video-link span {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    display: inline-grid;
    place-items: center;
    background: #fff;
    color: var(--accent);
    box-shadow: 0 6px 24px rgba(0,0,0,.18);
    transition: transform .2s ease, box-shadow .2s ease;
}
.video-link:hover span { transform: scale(1.08); box-shadow: 0 8px 32px rgba(0,0,0,.28); }
.video-link svg { width: 20px; fill: currentColor; }

/* Hero bottom strip carousel - Brought down so it never covers CTA buttons */
.hero-strip {
    position: absolute;
    left: var(--side-pad);
    right: var(--side-pad);
    bottom: 16px;
    overflow: hidden;
    border-radius: 14px;
    mask-image: linear-gradient(90deg, transparent, #000 4%, #000 96%, transparent);
    z-index: 10;
}
.hero-strip-track {
    display: flex;
    gap: 16px;
    width: max-content;
    animation: heroSlideMarquee 26s linear infinite;
    will-change: transform;
}
.hero-strip:hover .hero-strip-track { animation-play-state: paused; }
.hero-strip-track article {
    flex: 0 0 clamp(260px, 25vw, 420px);
}
.hero-strip article {
    min-height: 105px;
    background-size: cover;
    background-position: center;
    border-radius: 12px;
    overflow: hidden;
    display: flex;
    align-items: end;
    box-shadow: var(--shadow);
}
.slide-caption-box,
.hero-strip a { width: 100%; height: 100%; display: flex; align-items: end; text-decoration: none; }
.hero-strip span {
    width: 100%;
    padding: 18px;
    color: #fff;
    font-weight: 900;
    background: linear-gradient(transparent, rgba(0,0,0,.78));
}
@keyframes heroSlideMarquee {
    from { transform: translateX(0); }
    to { transform: translateX(calc(-50% - 8px)); }
}

/* ------------------------------------------------------------------
   PARTNER STRIP
   ------------------------------------------------------------------ */
.partner-strip {
    display: grid;
    grid-template-columns: repeat(7, minmax(0, 1fr));
    align-items: center;
    gap: clamp(22px, 4vw, 60px);
    padding: 56px var(--side-pad);
    background: #fff;
}
.partner-logo {
    display: grid;
    place-items: center;
    min-height: 70px;
}
.partner-logo img {
    max-height: 52px;
    width: auto;
    object-fit: contain;
    opacity: .72;
    filter: grayscale(1);
    transition: opacity .2s ease, filter .2s ease, transform .2s ease;
}
.partner-logo:hover img {
    opacity: 1;
    filter: grayscale(0);
    transform: translateY(-2px);
}

/* ------------------------------------------------------------------
   SHARED SECTION LAYOUT
   ------------------------------------------------------------------ */
.section, .split-section, .contact-grid, .faq-list, .content-page {
    padding: 108px var(--side-pad);
}
.section-head {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 12px;
    margin-bottom: 56px;
}
.section-head h2 {
    font-size: clamp(38px, 5.4vw, 72px);
    line-height: .98;
    max-width: 780px;
}
.section-head p {
    color: var(--muted);
    font-size: 18px;
    line-height: 1.75;
    max-width: 680px;
}

/* Orange underline accent on key words */
.accent-underline {
    text-decoration: underline;
    text-decoration-color: var(--accent);
    text-underline-offset: 6px;
    text-decoration-thickness: 4px;
}

/* ------------------------------------------------------------------
   ABOUT / SPLIT SECTION
   ------------------------------------------------------------------ */
.split-section {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: clamp(40px, 6vw, 80px);
    align-items: center;
    background: #fff;
    padding-top: 60px;
    padding-bottom: 60px;
}
.about-media {
    position: relative;
    width: 100%;
    height: 500px;
}
.about-img-primary {
    position: absolute;
    top: 0;
    left: 0;
    width: 65%;
    height: 480px;
    object-fit: cover;
    border-radius: 28px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, .12);
    z-index: 1;
}
.about-img-secondary {
    position: absolute;
    bottom: 20px;
    right: 0;
    width: 52%;
    height: 310px;
    object-fit: cover;
    border-radius: 24px;
    box-shadow: 0 24px 60px rgba(0, 0, 0, .18);
    z-index: 2;
}
.about-badge {
    position: absolute;
    left: 36%;
    bottom: -10px;
    width: 130px;
    height: 130px;
    z-index: 5;
}
.about-badge-circle {
    width: 130px;
    height: 130px;
    border-radius: 50%;
    background: var(--accent);
    display: grid;
    place-items: center;
    animation: badgeSpin 18s linear infinite;
    box-shadow: 0 8px 32px rgba(237, 108, 48, .3);
}
.about-badge-circle svg {
    width: 94px;
    height: 94px;
}
@keyframes badgeSpin {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

.split-copy h2 {
    font-size: clamp(38px, 5.4vw, 72px);
    line-height: .98;
}
.split-copy p {
    color: var(--muted);
    font-size: 18px;
    line-height: 1.75;
}
.text-link {
    color: var(--accent);
    font-weight: 900;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    transition: gap .2s ease;
}
.text-link:hover { gap: 10px; }
.text-link::after {
    content: "→";
    font-size: 1.1em;
}

.mission-panel { margin-top: 38px; }
.mission-panel h3 {
    max-width: 760px;
    font-size: clamp(30px, 4vw, 58px);
    line-height: 1;
}

.value-stack { display: grid; gap: 18px; margin-top: 28px; }
.value-panel {
    display: grid;
    grid-template-columns: .7fr 1fr;
    gap: 28px;
    padding-top: 24px;
    border-top: 1px solid var(--line);
}
.value-panel strong {
    color: var(--accent);
    font: 800 clamp(42px, 6vw, 78px) "Outfit", sans-serif;
    line-height: .9;
}
.value-panel p { margin: 0; }

.about-closing {
    font-family: "Outfit", sans-serif;
    color: var(--ink) !important;
    font-size: clamp(30px, 4vw, 58px) !important;
    line-height: 1.04 !important;
    margin-top: 36px;
}

/* ------------------------------------------------------------------
   STATS BAR
   ------------------------------------------------------------------ */
.stats-bar {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1px;
    background: rgba(255,255,255,.12);
    padding: 0 var(--side-pad);
}
.stat-item {
    text-align: center;
    padding: 44px 20px;
    background: var(--paper);
}
.stat-item strong {
    display: block;
    font: 800 clamp(36px, 5vw, 62px) "Outfit", sans-serif;
    color: var(--accent);
    line-height: 1;
    margin-bottom: 8px;
}
.stat-item span {
    color: var(--muted);
    font-size: 16px;
    font-weight: 500;
}

/* ------------------------------------------------------------------
   SERVICES — Centered headers + Orange circle icons + Rounded Cards
   ------------------------------------------------------------------ */
.service-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}
.service-card {
    background: #f4f5f8;
    border-radius: var(--radius-card);
    padding: 48px 36px 44px;
    text-align: center;
    transition: transform .25s ease, box-shadow .25s ease, background .25s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
}
.service-card-link {
    display: flex;
    flex-direction: column;
    align-items: center;
    color: inherit;
    text-decoration: none;
    width: 100%;
}
.service-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 50px rgba(0,0,0,.08);
    background: #ffffff;
}
.service-read-more {
    color: var(--accent);
    font-weight: 800;
    font-size: 15px;
    margin-top: 18px;
    display: inline-block;
    transition: transform .2s ease;
}
.service-card:hover .service-read-more {
    transform: translateX(4px);
}

/* Service Detail Page Layout */
.service-detail-section {
    padding-top: 84px;
    padding-bottom: 100px;
}
.service-detail-grid {
    display: grid;
    grid-template-columns: 1fr 340px;
    gap: 48px;
    align-items: start;
}
.service-detail-main h2 {
    font-size: clamp(32px, 4vw, 54px);
    margin-bottom: 24px;
}
.service-body-text {
    color: var(--muted);
    font-size: 18.5px;
    line-height: 1.8;
    margin-bottom: 44px;
}
.service-highlights {
    background: #ffffff;
    border-radius: 24px;
    padding: 40px;
    border: 1px solid var(--line);
    box-shadow: 0 10px 30px rgba(0,0,0,.03);
}
.service-highlights h3 {
    font-size: 24px;
    margin-bottom: 24px;
    font-weight: 700;
}
.highlights-grid {
    display: grid;
    gap: 20px;
}
.highlight-item {
    display: flex;
    align-items: flex-start;
    gap: 16px;
}
.highlight-item svg {
    flex-shrink: 0;
    margin-top: 3px;
}
.highlight-item strong {
    display: block;
    font-size: 17px;
    color: var(--ink);
    margin-bottom: 4px;
}
.highlight-item p {
    color: var(--muted);
    font-size: 15px;
    line-height: 1.55;
    margin: 0;
}
.faq-list {
    max-width: 860px;
    margin: 0 auto;
    display: grid;
    gap: 16px;
}
.faq-item {
    background: #ffffff;
    border-radius: var(--radius-card);
    padding: 24px 28px;
    border: 1px solid var(--line);
    box-shadow: var(--shadow);
}
.faq-item summary {
    font-size: 20px;
    font-weight: 700;
    cursor: pointer;
}
.faq-item p {
    color: var(--muted);
    margin-top: 14px;
    line-height: 1.7;
}

/* Premium FAQs Page Styling */
.faq-page-section {
    padding-top: 70px;
    padding-bottom: 90px;
}
.faq-page-grid {
    display: grid;
    grid-template-columns: 1fr 340px;
    gap: 44px;
    align-items: start;
}
.faq-accordion-list {
    display: grid;
    gap: 18px;
}
.faq-accordion-item {
    background: #ffffff;
    border-radius: 20px;
    border: 1px solid var(--line);
    box-shadow: 0 8px 25px rgba(0,0,0,.03);
    overflow: hidden;
    transition: box-shadow .25s ease, border-color .25s ease;
}
.faq-accordion-item[open] {
    border-color: var(--accent);
    box-shadow: 0 14px 40px rgba(237, 108, 48, .1);
}
.faq-summary {
    padding: 24px 28px;
    font-size: 19px;
    font-weight: 700;
    color: var(--ink);
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    list-style: none;
    user-select: none;
    transition: color .2s ease;
}
.faq-summary::-webkit-details-marker { display: none; }
.faq-summary:hover {
    color: var(--accent);
}
.faq-icon-toggle {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: #f4f5f8;
    color: var(--ink);
    display: grid;
    place-items: center;
    flex-shrink: 0;
    margin-left: 16px;
    transition: transform .3s ease, background .3s ease, color .3s ease;
}
.faq-accordion-item[open] .faq-icon-toggle {
    transform: rotate(45deg);
    background: var(--accent);
    color: #ffffff;
}
.faq-answer-content {
    padding: 0 28px 26px 28px;
    border-top: 1px solid #f0f2f6;
    margin-top: -4px;
}
.faq-answer-content p {
    color: var(--muted);
    font-size: 16.5px;
    line-height: 1.75;
    margin: 16px 0 0 0;
}

.faq-help-card {
    background: #ffffff;
    border-radius: 24px;
    padding: 36px 30px;
    border: 1px solid var(--line);
    box-shadow: 0 10px 30px rgba(0,0,0,.04);
}
.faq-card-icon {
    width: 60px;
    height: 60px;
    border-radius: 18px;
    background: rgba(237, 108, 48, .1);
    display: grid;
    place-items: center;
    margin-bottom: 20px;
}
.faq-help-card h3 {
    font-size: 22px;
    margin-bottom: 12px;
    font-weight: 700;
}
.faq-help-card p {
    color: var(--muted);
    font-size: 15px;
    line-height: 1.6;
    margin-bottom: 22px;
}
.faq-sidebar-contacts {
    display: grid;
    gap: 10px;
    margin-bottom: 24px;
}
.faq-contact-link {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
    font-weight: 700;
    color: var(--ink);
    padding: 10px 14px;
    background: #f8f9fc;
    border-radius: 12px;
    text-decoration: none;
    transition: background .2s ease, color .2s ease;
}
.faq-contact-link:hover {
    background: var(--accent);
    color: #ffffff;
}
.btn-block {
    width: 100%;
    text-align: center;
}

/* Testimonials Section Styling */
.testimonials-section {
    padding-top: 80px;
    padding-bottom: 90px;
}
.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}
.testimonial-card {
    background: #ffffff;
    border-radius: 24px;
    padding: 38px 32px;
    border: 1px solid var(--line);
    box-shadow: 0 10px 30px rgba(0,0,0,.04);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    transition: transform .25s ease, box-shadow .25s ease;
}
.testimonial-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 50px rgba(0,0,0,.09);
}
.testimonial-rating {
    display: flex;
    gap: 4px;
    margin-bottom: 18px;
}
.testimonial-quote {
    color: var(--ink);
    font-size: 16.5px;
    line-height: 1.7;
    margin: 0 0 28px 0;
    font-style: italic;
}
.testimonial-author-block {
    display: flex;
    align-items: center;
    gap: 14px;
    padding-top: 20px;
    border-top: 1px solid #f0f2f6;
}
.author-avatar {
    width: 46px;
    height: 46px;
    border-radius: 50%;
    background: var(--accent);
    color: #ffffff;
    display: grid;
    place-items: center;
    font-weight: 800;
    font-size: 18px;
    flex-shrink: 0;
}
.author-info strong {
    display: block;
    font-size: 16px;
    color: var(--ink);
}
.author-info span {
    display: block;
    font-size: 13.5px;
    color: var(--muted);
}

.service-detail-sidebar {
    display: grid;
    gap: 28px;
}
.sidebar-widget {
    background: #ffffff;
    border-radius: 24px;
    padding: 32px 28px;
    border: 1px solid var(--line);
    box-shadow: 0 8px 25px rgba(0,0,0,.03);
}
.sidebar-widget h3 {
    font-size: 20px;
    margin-bottom: 20px;
    font-weight: 700;
}
.sidebar-services-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    gap: 10px;
}
.sidebar-services-list li a {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 14px 18px;
    border-radius: 14px;
    background: #f8f9fc;
    color: var(--ink);
    font-weight: 700;
    font-size: 15px;
    transition: background .2s ease, color .2s ease, transform .2s ease;
}
.sidebar-services-list li.active a, .sidebar-services-list li a:hover {
    background: var(--accent);
    color: #ffffff;
    transform: translateX(4px);
}
.sidebar-cta-box {
    background: #141619;
    color: #ffffff;
}
.sidebar-cta-box h3 { color: #ffffff; }
.sidebar-cta-box p { color: rgba(255,255,255,.76); font-size: 15px; line-height: 1.6; margin-bottom: 20px; }
.sidebar-cta-box .btn-primary { width: 100%; text-align: center; }

/* Orange circle icon container */
.service-icon {
    width: 84px;
    height: 84px;
    border-radius: 50%;
    background: var(--accent);
    color: #ffffff;
    display: grid;
    place-items: center;
    margin: 0 auto 28px;
    box-shadow: 0 8px 24px rgba(237, 108, 48, .28);
    transition: transform .25s ease, background .25s ease;
}
.service-icon svg {
    width: 38px;
    height: 38px;
    stroke-width: 1.8;
}
.service-card:hover .service-icon {
    transform: scale(1.08);
    background: var(--accent-dark);
}

.service-card h3 {
    font-size: 24px;
    line-height: 1.25;
    margin-bottom: 14px;
    font-weight: 700;
}
.service-card p {
    color: var(--muted);
    font-size: 16px;
    line-height: 1.65;
    margin: 0;
}

/* ------------------------------------------------------------------
   PRODUCTION / PROJECTS — Bento Masonry Grid (Matches Target Screenshot 2)
   ------------------------------------------------------------------ */
.dark-section {
    background: #0d0e10;
    color: #fff;
}
.dark-section .section-head h2 { color: #fff; }
.dark-section .eyebrow { color: var(--accent); }

.project-intro {
    max-width: 860px;
    color: rgba(255,255,255,.76);
    font-size: 20px;
    line-height: 1.6;
    margin: -24px auto 52px;
    text-align: center;
}

/* Bento 2-column Layout */
.production-bento-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 28px;
}
.bento-col-left, .bento-col-right {
    display: flex;
    flex-direction: column;
    gap: 28px;
}
.bento-card {
    background: #141619;
    border-radius: var(--radius-card);
    overflow: hidden;
    transition: transform .25s ease, box-shadow .25s ease;
    border: 1px solid rgba(255,255,255,.05);
}
.bento-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 24px 60px rgba(0,0,0,.45);
}
.bento-card-img {
    width: 100%;
    overflow: hidden;
}
.bento-card-img img {
    width: 100%;
    aspect-ratio: 16 / 10;
    object-fit: cover;
    transition: transform .45s ease;
}
.bento-tall .bento-card-img img {
    aspect-ratio: 16 / 11;
}
.bento-card:hover .bento-card-img img {
    transform: scale(1.05);
}
.bento-card-content {
    padding: 24px 28px 28px;
}
.bento-card-content h3 {
    font-size: 22px;
    margin-bottom: 8px;
    color: #ffffff;
    font-weight: 700;
}
.bento-card-content p {
    color: rgba(255,255,255,.68);
    font-size: 15px;
    line-height: 1.6;
    margin: 0;
}

/* Bento subgrid for right column bottom cards */
.bento-subgrid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
}

/* ------------------------------------------------------------------
   NEWS — Horizontal Cards 2x2 Grid (Matches Target Screenshot 3)
   ------------------------------------------------------------------ */
.news-horizontal-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
}
.news-horizontal-card {
    display: grid;
    grid-template-columns: 290px 1fr;
    background: #ffffff;
    border-radius: 26px;
    overflow: hidden;
    box-shadow: 0 12px 35px rgba(0,0,0,.05);
    border: 1px solid var(--line);
    min-height: 260px;
    transition: transform .25s ease, box-shadow .25s ease;
}
.news-horizontal-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 24px 50px rgba(0,0,0,.1);
}
.news-horizontal-img {
    width: 100%;
    height: 100%;
    min-height: 260px;
    overflow: hidden;
}
.news-horizontal-img a {
    display: block;
    width: 100%;
    height: 100%;
}
.news-horizontal-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .45s ease;
}
.news-horizontal-card:hover .news-horizontal-img img {
    transform: scale(1.07);
}
.news-horizontal-body {
    padding: 32px 36px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}
.news-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 14px;
}
.news-tag {
    background: var(--accent);
    color: #ffffff;
    border-radius: 14px;
    font-size: 11px;
    font-weight: 800;
    padding: 5px 12px;
    letter-spacing: .5px;
    text-transform: uppercase;
}
.news-horizontal-body h3 {
    font-size: 22px;
    line-height: 1.35;
    margin-bottom: 12px;
    font-weight: 700;
}
.news-horizontal-body h3 a {
    transition: color .2s ease;
}
.news-horizontal-body h3 a:hover {
    color: var(--accent);
}
.news-horizontal-body p {
    color: var(--muted);
    font-size: 15.5px;
    line-height: 1.65;
    margin: 0;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

/* ------------------------------------------------------------------
   PAGE HERO (inner pages)
   ------------------------------------------------------------------ */
.page-hero {
    position: relative;
    min-height: 62vh;
    display: grid;
    align-items: end;
    padding: 150px var(--side-pad) 80px;
    background: var(--page-hero-image) center/cover fixed;
    color: #fff;
    overflow: hidden;
}
.page-hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background: inherit;
    transform: scale(1.04);
    animation: pageHeroZoom 11s ease-out forwards;
}
.page-hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(0,0,0,.78), rgba(0,0,0,.44), rgba(0,0,0,.14));
}
.page-hero-inner { position: relative; z-index: 1; }
.page-hero h1 {
    font-size: clamp(44px, 7vw, 92px);
    line-height: .95;
    max-width: 980px;
}
.page-hero p:last-child {
    max-width: 720px;
    color: rgba(255,255,255,.78);
    font-size: 19px;
}
@keyframes pageHeroZoom {
    from { transform: scale(1.12); }
    to { transform: scale(1.03); }
}

/* ------------------------------------------------------------------
   ARTICLE / NEWS DETAIL
   ------------------------------------------------------------------ */
.article-page {
    padding: 96px var(--side-pad);
    background: #fff;
}
.article-page > img {
    width: min(1120px, 100%);
    max-height: 620px;
    object-fit: cover;
    border-radius: var(--radius-card);
    box-shadow: var(--shadow);
    margin: 0 auto 46px;
}
.article-body {
    width: min(860px, 100%);
    margin: 0 auto;
    color: var(--muted);
    font-size: 19px;
    line-height: 1.85;
}
.article-body .lead {
    color: var(--ink);
    font-size: 24px;
    font-family: "Outfit", sans-serif;
    line-height: 1.35;
}

/* ------------------------------------------------------------------
   FAQ
   ------------------------------------------------------------------ */
.faq-list { max-width: 980px; margin: 0 auto; }
.faq-item {
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 16px;
    margin-bottom: 14px;
    padding: 22px 26px;
    transition: box-shadow .2s ease;
}
.faq-item:hover { box-shadow: 0 4px 20px rgba(0,0,0,.06); }
.faq-item summary {
    cursor: pointer;
    font: 800 22px "Outfit", sans-serif;
    list-style: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 16px;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
    content: "+";
    font-size: 28px;
    color: var(--accent);
    font-weight: 300;
    transition: transform .25s ease;
    flex-shrink: 0;
}
.faq-item[open] summary::after {
    transform: rotate(45deg);
}
.faq-item p { color: var(--muted); line-height: 1.7; }

/* ------------------------------------------------------------------
   CONTACT
   ------------------------------------------------------------------ */
.contact-grid {
    display: grid;
    grid-template-columns: .8fr 1.2fr;
    gap: 28px;
}
.contact-panel, .contact-form {
    background: #fff;
    border-radius: var(--radius-card);
    border: 1px solid var(--line);
    padding: 32px;
}
.contact-form { display: grid; gap: 18px; }
label { display: grid; gap: 8px; font-weight: 800; }
input, textarea {
    width: 100%;
    border: 1px solid var(--line);
    border-radius: 6px;
    padding: 14px 16px;
    font: inherit;
    outline: none;
    transition: border-color .2s ease, box-shadow .2s ease;
}
input:focus, textarea:focus {
    border-color: var(--accent);
    box-shadow: 0 0 0 4px rgba(237,108,48,.14);
}
.flash {
    padding: 14px 16px;
    background: #fff1e9;
    border: 1px solid #ffd1bd;
    border-radius: 6px;
    font-weight: 800;
}

/* ------------------------------------------------------------------
   CTA SECTION — Dark bg image, centered
   ------------------------------------------------------------------ */
.cta-section {
    position: relative;
    padding: 110px var(--side-pad);
    color: #fff;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    gap: 18px;
    overflow: hidden;
    background: #0e0f10;
}
.cta-bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    opacity: .45;
    z-index: 0;
}
.cta-section > *:not(.cta-bg) { position: relative; z-index: 1; }
.cta-section h2 {
    max-width: 980px;
    font-size: clamp(38px, 5.4vw, 72px);
    line-height: 1.02;
}
.cta-section .cta-subtitle {
    color: rgba(255,255,255,.78);
    font-size: 20px;
    max-width: 680px;
    line-height: 1.6;
    margin: 0 0 8px;
}
.cta-section .btn-primary {
    background: var(--accent);
    padding: 0 36px;
    min-height: 54px;
    font-size: 17px;
}
.cta-section .btn-primary:hover {
    background: var(--accent-dark);
}

/* ------------------------------------------------------------------
   CONTACT PAGE ENHANCEMENTS
   ------------------------------------------------------------------ */
.contact-cards-section {
    padding-top: 76px;
    padding-bottom: 96px;
}
.contact-info-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
    margin-bottom: 56px;
}
.contact-info-card {
    background: #ffffff;
    border-radius: var(--radius-card);
    padding: 36px 30px;
    border: 1px solid var(--line);
    box-shadow: 0 10px 30px rgba(0,0,0,.03);
    transition: transform .25s ease, box-shadow .25s ease;
}
.contact-info-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 45px rgba(0,0,0,.07);
}
.contact-card-icon {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    background: #fff4ee;
    color: var(--accent);
    display: grid;
    place-items: center;
    margin-bottom: 20px;
}
.contact-info-card h3 {
    font-size: 22px;
    margin-bottom: 10px;
    font-weight: 700;
}
.contact-info-card p {
    color: var(--muted);
    font-size: 15.5px;
    line-height: 1.6;
    margin: 0 0 12px;
}
.contact-card-badge {
    display: inline-block;
    background: #f0f1f4;
    color: #4a5056;
    font-size: 12px;
    font-weight: 700;
    padding: 4px 12px;
    border-radius: 20px;
}
.contact-card-badge.status-active {
    background: #e6f7ed;
    color: #0d8a43;
}

.contact-main-grid {
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    gap: 36px;
    align-items: start;
}
.contact-brand-panel {
    background: #121417;
    color: #ffffff;
    border-radius: var(--radius-card);
    padding: 48px 40px;
    position: relative;
    overflow: hidden;
    box-shadow: 0 24px 60px rgba(0,0,0,.35);
}
.contact-brand-panel::before {
    content: "";
    position: absolute;
    inset: 0;
    opacity: .08;
    background-image: radial-gradient(circle at 80% 20%, var(--accent) 0%, transparent 50%);
}
.brand-panel-inner { position: relative; z-index: 1; }
.contact-brand-panel h2 {
    font-size: 34px;
    margin-bottom: 16px;
    color: #ffffff;
}
.brand-panel-desc {
    color: rgba(255,255,255,.76);
    font-size: 16.5px;
    line-height: 1.7;
    margin-bottom: 32px;
}
.contact-features-list {
    display: grid;
    gap: 16px;
    margin-bottom: 36px;
}
.contact-features-list .feature-item {
    display: flex;
    align-items: center;
    gap: 14px;
    font-size: 15.5px;
    font-weight: 700;
    color: rgba(255,255,255,.92);
}
.btn-whatsapp {
    background: #25D366;
    color: #ffffff;
    border-radius: var(--radius-pill);
    gap: 10px;
    font-weight: 800;
    padding: 0 26px;
}
.btn-whatsapp:hover {
    background: #1da851;
    color: #ffffff;
    box-shadow: 0 8px 24px rgba(37, 211, 102, .3);
}

.contact-form-premium {
    background: #ffffff;
    border-radius: var(--radius-card);
    padding: 44px 40px;
    border: 1px solid var(--line);
    box-shadow: 0 20px 60px rgba(0,0,0,.05);
    display: flex;
    flex-direction: column;
    gap: 20px;
}
.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}
.form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}
.form-group label {
    font-size: 14px;
    font-weight: 800;
    color: #22252a;
    letter-spacing: .2px;
}
.form-group label span { color: var(--accent); }
.form-group input, .form-group select, .form-group textarea {
    width: 100%;
    background: #f8f9fc;
    border: 1.5px solid #e2e4e9;
    border-radius: 12px;
    padding: 14px 18px;
    font: inherit;
    font-size: 15px;
    color: var(--ink);
    outline: none;
    transition: border-color .2s ease, box-shadow .2s ease, background .2s ease;
}
.form-group input:focus, .form-group select:focus, .form-group textarea:focus {
    background: #ffffff;
    border-color: var(--accent);
    box-shadow: 0 0 0 4px rgba(237, 108, 48, .15);
}
.btn-submit-large {
    align-self: flex-start;
    padding: 0 36px;
    min-height: 52px;
    font-size: 16px;
    gap: 10px;
    margin-top: 8px;
}
.flash-success {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 16px 20px;
    background: #e6f7ed;
    border: 1px solid #b3e6c5;
    color: #0d8a43;
    border-radius: 12px;
    font-weight: 700;
    font-size: 15px;
}

/* ------------------------------------------------------------------
   MODERN FOOTER ENHANCEMENTS
   ------------------------------------------------------------------ */
.site-footer {
    background: #111215;
    color: #ffffff;
    padding: 0 var(--side-pad);
    border-top: 1px solid rgba(255,255,255,.08);
}
.footer-inner {
    width: min(var(--container), 100%);
    margin: 0 auto;
    padding: 84px 0 36px;
}
.footer-grid {
    display: grid;
    grid-template-columns: 1.3fr 0.9fr 1fr 1.2fr;
    gap: clamp(28px, 4vw, 64px);
    align-items: start;
}
.footer-brand {
    display: inline-block;
    margin-bottom: 20px;
}
.footer-brand img {
    max-height: 44px;
    width: auto;
}
.footer-brand-text {
    color: rgba(255,255,255,.68);
    font-size: 15.5px;
    line-height: 1.65;
    margin-bottom: 28px;
    max-width: 320px;
}
.footer-socials {
    display: flex;
    gap: 12px;
}
.footer-socials a {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: rgba(255,255,255,.07);
    color: #ffffff;
    display: grid;
    place-items: center;
    transition: background .2s ease, transform .2s ease, color .2s ease;
}
.footer-socials a:hover {
    background: var(--accent);
    color: #ffffff;
    transform: translateY(-3px);
}

.footer-links-col h4, .footer-contact-col h4 {
    font-size: 19px;
    margin-bottom: 22px;
    color: #ffffff;
    font-weight: 700;
    letter-spacing: .3px;
}
.footer-links-col ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    gap: 12px;
}
.footer-links-col a {
    color: rgba(255,255,255,.72);
    font-size: 15px;
    transition: color .2s ease, transform .2s ease;
    display: inline-block;
}
.footer-links-col a:hover {
    color: var(--accent);
    transform: translateX(4px);
}

.footer-contact-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    color: rgba(255,255,255,.75);
    font-size: 15px;
    line-height: 1.5;
    margin-bottom: 14px;
}
.footer-contact-item svg {
    color: var(--accent);
    flex-shrink: 0;
    margin-top: 2px;
}

.footer-newsletter {
    margin-top: 28px;
    padding-top: 20px;
    border-top: 1px solid rgba(255,255,255,.1);
}
.footer-newsletter label {
    display: block;
    color: #ffffff;
    font-size: 14px;
    font-weight: 800;
    margin-bottom: 10px;
}
.newsletter-input-group {
    display: flex;
    gap: 8px;
}
.newsletter-input-group input {
    background: rgba(255,255,255,.08);
    border: 1px solid rgba(255,255,255,.15);
    border-radius: var(--radius-pill);
    padding: 12px 18px;
    color: #ffffff;
    font-size: 14px;
    width: 100%;
    outline: none;
}
.newsletter-input-group input::placeholder {
    color: rgba(255,255,255,.45);
}
.newsletter-input-group input:focus {
    border-color: var(--accent);
    background: rgba(255,255,255,.12);
}
.btn-newsletter {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: var(--accent);
    color: #ffffff;
    border: none;
    display: grid;
    place-items: center;
    cursor: pointer;
    flex-shrink: 0;
    transition: background .2s ease, transform .2s ease;
}
.btn-newsletter:hover {
    background: var(--accent-dark);
    transform: scale(1.06);
}

.footer-bottom-bar {
    margin-top: 64px;
    padding-top: 28px;
    border-top: 1px solid rgba(255,255,255,.1);
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 16px;
    color: rgba(255,255,255,.55);
    font-size: 14px;
}
.footer-bottom-links {
    display: flex;
    align-items: center;
    gap: 12px;
}
.footer-bottom-links a {
    color: rgba(255,255,255,.65);
    transition: color .2s ease;
}
.footer-bottom-links a:hover {
    color: var(--accent);
}
.footer-bottom-links .dot {
    color: rgba(255,255,255,.25);
}
.footer-admin-link {
    background: rgba(255,255,255,.1);
    padding: 4px 12px;
    border-radius: 12px;
    color: #ffffff !important;
    font-weight: 700;
}
.footer-admin-link:hover {
    background: var(--accent);
}

/* ------------------------------------------------------------------
   CONTENT PAGE (custom pages)
   ------------------------------------------------------------------ */
.content-page p {
    color: var(--muted);
    font-size: 18px;
    line-height: 1.75;
    max-width: 860px;
}

/* ------------------------------------------------------------------
   SCROLL REVEAL ANIMATION
   ------------------------------------------------------------------ */
.reveal {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity .5s ease, transform .5s ease;
}
.reveal.is-visible { opacity: 1; transform: translateY(0); }

/* ------------------------------------------------------------------
   RESPONSIVE BREAKPOINTS
   ------------------------------------------------------------------ */
@media (max-width: 1024px) {
    .service-grid { grid-template-columns: repeat(2, 1fr); }
    .production-bento-grid { grid-template-columns: 1fr; }
    .news-horizontal-grid { grid-template-columns: 1fr; }
    .partner-strip { grid-template-columns: repeat(4, 1fr); }
    .split-section, .contact-grid, .value-panel { grid-template-columns: 1fr; }
    .about-media { min-height: 520px; }
    .stats-bar { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
    .menu-toggle { display: inline-flex; color: inherit; }
    .main-nav {
        position: fixed;
        inset: 76px 16px auto;
        max-height: calc(100vh - 96px);
        overflow-y: auto;
        display: none;
        flex-direction: column;
        align-items: stretch;
        background: #101112;
        color: #fff;
        padding: 20px;
        border-radius: var(--radius-card);
        box-shadow: var(--shadow);
    }
    .main-nav.is-open { display: flex; }
    .main-nav a { padding: 12px 4px; }
    .main-nav > a:not(.nav-cta)::after { bottom: 4px; }

    .hero-strip { left: 16px; right: 16px; bottom: 18px; mask-image: none; }
    .hero-strip-track article { flex-basis: 76vw; }
    .hero-strip article { min-height: 118px; }
    .hero { min-height: 92vh; padding-top: 118px; padding-bottom: 180px; background-attachment: scroll; }
    .page-hero { min-height: 48vh; padding-top: 118px; padding-bottom: 54px; background-attachment: scroll; }
    .hero p:not(.eyebrow) { font-size: 17px; }
    .video-link { width: 100%; justify-content: center; }

    .service-grid, .news-horizontal-grid, .footer-grid, .stats-bar, .bento-subgrid { grid-template-columns: 1fr; }
    .news-horizontal-card { grid-template-columns: 1fr; }
    .news-horizontal-img { height: 180px; min-height: 0; }

    .partner-strip { grid-template-columns: repeat(2, 1fr); padding-top: 36px; padding-bottom: 36px; }
    .section-head, .footer-bottom { align-items: start; flex-direction: column; text-align: left; }
    .cta-section { text-align: left; align-items: flex-start; }
    .section, .split-section, .contact-grid, .faq-list, .content-page { padding-top: 64px; padding-bottom: 64px; }
    .about-media { min-height: 380px; }
    .about-media img { width: 72%; }
    .about-badge { width: 100px; height: 100px; }
    .about-badge-circle { width: 100px; height: 100px; }
    .about-badge-circle svg { width: 72px; height: 72px; }
}

@media (max-width: 375px) {
    .site-header { padding: 14px 16px; }
    .brand img { width: 86px; }
    .hero h1, .page-hero h1 { font-size: 38px; }
    .split-copy h2, .section-head h2, .cta-section h2 { font-size: 30px; }
    .nav-cta, .btn { width: 100%; }
    .contact-panel, .contact-form, .service-card { padding: 22px; }
}


/* ==========================================================================
   AGENCY-GRADE RESPONSIVE & MOBILE-FRIENDLY REFINEMENTS
   Fixes full-width contact form, testimonials grid, FAQ, and mobile overflow
   ========================================================================== */

/* Universal viewport overflow protection */
html {
    overflow-x: hidden;
    width: 100%;
}

body {
    overflow-x: hidden;
    width: 100%;
    max-width: 100vw;
    position: relative;
}

/* ------------------------------------------------------------------
   TESTIMONIALS SECTION & CARDS
   ------------------------------------------------------------------ */
.testimonials-section {
    padding-top: 80px;
    padding-bottom: 96px;
    position: relative;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
    margin-top: 48px;
    width: 100%;
}

.testimonial-card {
    background: #ffffff;
    border: 1px solid var(--line);
    border-radius: var(--radius-card);
    padding: 36px 30px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.03);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    gap: 20px;
    transition: transform .25s ease, box-shadow .25s ease;
    width: 100%;
    box-sizing: border-box;
}

.testimonial-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 18px 45px rgba(0, 0, 0, 0.07);
}

.testimonial-rating {
    display: flex;
    gap: 4px;
    color: var(--accent);
}

.testimonial-quote {
    font-size: 15.5px;
    font-style: italic;
    color: #334155;
    line-height: 1.7;
    margin: 0;
    flex-grow: 1;
}

.testimonial-author-block {
    display: flex;
    align-items: center;
    gap: 14px;
    padding-top: 18px;
    border-top: 1px solid var(--line);
}

.author-avatar {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: var(--accent);
    color: #ffffff;
    display: grid;
    place-items: center;
    font-weight: 800;
    font-size: 16px;
    flex-shrink: 0;
}

.author-info {
    display: flex;
    flex-direction: column;
    overflow: hidden;
}

.author-info strong {
    display: block;
    font-size: 15.5px;
    color: var(--ink);
    font-weight: 700;
}

.author-info span {
    font-size: 13px;
    color: var(--muted);
    line-height: 1.3;
}

/* ------------------------------------------------------------------
   FAQ PAGE ACCORDION & SIDEBAR
   ------------------------------------------------------------------ */
.faq-page-section {
    padding-top: 80px;
    padding-bottom: 96px;
}

.faq-page-grid {
    display: grid;
    grid-template-columns: 1.3fr 0.7fr;
    gap: 36px;
    align-items: start;
    width: 100%;
}

.faq-accordion-list {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.faq-accordion-item {
    background: #ffffff;
    border: 1px solid var(--line);
    border-radius: 16px;
    padding: 22px 26px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.02);
    transition: box-shadow .2s ease;
}

.faq-accordion-item:hover {
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.05);
}

.faq-summary {
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    font-family: 'Outfit', sans-serif;
    font-size: 18px;
    font-weight: 700;
    color: var(--ink);
    list-style: none;
    gap: 14px;
}

.faq-summary::-webkit-details-marker { display: none; }

.faq-icon-toggle {
    color: var(--accent);
    display: grid;
    place-items: center;
    transition: transform .25s ease;
    flex-shrink: 0;
}

.faq-accordion-item[open] .faq-icon-toggle {
    transform: rotate(45deg);
}

.faq-answer-content {
    margin-top: 14px;
    padding-top: 14px;
    border-top: 1px solid #f1f5f9;
    color: var(--muted);
    font-size: 15px;
    line-height: 1.7;
}

.faq-help-card {
    background: #ffffff;
    border: 1px solid var(--line);
    border-radius: var(--radius-card);
    padding: 32px 26px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.03);
}

.faq-card-icon {
    width: 56px;
    height: 56px;
    border-radius: 16px;
    background: #fff4ee;
    display: grid;
    place-items: center;
    margin-bottom: 18px;
}

.faq-help-card h3 {
    font-size: 20px;
    margin-bottom: 8px;
    font-weight: 700;
}

.faq-help-card p {
    color: var(--muted);
    font-size: 14.5px;
    line-height: 1.6;
    margin-bottom: 20px;
}

.faq-sidebar-contacts {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-bottom: 22px;
}

.faq-contact-link {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--ink);
    font-weight: 700;
    font-size: 14px;
    transition: color .2s ease;
    word-break: break-all;
}

.faq-contact-link:hover { color: var(--accent); }
.btn-block { width: 100%; justify-content: center; }

/* ------------------------------------------------------------------
   SERVICE DETAIL PAGE
   ------------------------------------------------------------------ */
.service-detail-section {
    padding-top: 80px;
    padding-bottom: 96px;
}

.service-detail-grid {
    display: grid;
    grid-template-columns: 1.3fr 0.7fr;
    gap: 36px;
    align-items: start;
    width: 100%;
}

.service-body-text {
    font-size: 16.5px;
    line-height: 1.8;
    color: var(--ink);
    margin-bottom: 36px;
}

.service-body-text h3 {
    font-size: 22px;
    margin: 28px 0 12px 0;
    color: var(--ink);
}

.service-highlights {
    background: #ffffff;
    border: 1px solid var(--line);
    border-radius: var(--radius-card);
    padding: 32px 28px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.03);
}

.service-highlights h3 {
    font-size: 20px;
    margin-bottom: 20px;
    font-weight: 700;
}

.highlights-grid {
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.highlight-item {
    display: flex;
    gap: 14px;
    align-items: flex-start;
}

.highlight-item svg {
    flex-shrink: 0;
    margin-top: 2px;
}

.highlight-item strong {
    display: block;
    font-size: 15.5px;
    color: var(--ink);
    margin-bottom: 4px;
}

.highlight-item p {
    color: var(--muted);
    font-size: 14px;
    line-height: 1.5;
    margin: 0;
}

.sidebar-widget {
    background: #ffffff;
    border: 1px solid var(--line);
    border-radius: var(--radius-card);
    padding: 28px 24px;
    margin-bottom: 24px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.03);
}

.sidebar-widget h3 {
    font-size: 18px;
    margin-bottom: 16px;
    font-weight: 700;
}

.sidebar-services-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.sidebar-services-list li a {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 11px 16px;
    border-radius: 12px;
    font-size: 14px;
    font-weight: 700;
    color: #475569;
    background: #f8fafc;
    border: 1px solid var(--line);
    transition: all .2s ease;
}

.sidebar-services-list li.active a,
.sidebar-services-list li a:hover {
    background: var(--accent);
    color: #ffffff;
    border-color: var(--accent);
}

/* ------------------------------------------------------------------
   COMPREHENSIVE MOBILE & TABLET RESPONSIVE OVERRIDES
   ------------------------------------------------------------------ */

@media (max-width: 1024px) {
    :root {
        --side-pad: clamp(16px, 4vw, 40px);
    }

    .contact-info-cards {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }

    .contact-main-grid {
        grid-template-columns: 1fr;
        gap: 28px;
    }

    .contact-brand-panel,
    .contact-form-premium {
        width: 100%;
        padding: 36px 28px;
    }

    .testimonials-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }

    .faq-page-grid,
    .service-detail-grid {
        grid-template-columns: 1fr;
        gap: 28px;
    }
}

@media (max-width: 768px) {
    :root {
        --side-pad: 16px;
    }

    .section {
        padding-top: 56px;
        padding-bottom: 56px;
    }

    .contact-cards-section {
        padding-top: 48px;
        padding-bottom: 64px;
    }

    .contact-info-cards {
        grid-template-columns: 1fr;
        gap: 16px;
        margin-bottom: 36px;
    }

    .contact-info-card {
        padding: 24px 20px;
        width: 100%;
        word-break: break-word;
    }

    .contact-main-grid {
        grid-template-columns: 1fr;
        gap: 20px;
        width: 100%;
    }

    .contact-brand-panel {
        padding: 28px 20px;
        border-radius: 20px;
        width: 100%;
    }

    .contact-brand-panel h2 {
        font-size: 26px;
    }

    .contact-form-premium {
        padding: 28px 20px;
        border-radius: 20px;
        width: 100%;
    }

    .form-row {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .btn-submit-large {
        width: 100%;
        justify-content: center;
    }

    .testimonials-section {
        padding-top: 56px;
        padding-bottom: 64px;
    }

    .testimonials-grid {
        grid-template-columns: 1fr;
        gap: 16px;
        margin-top: 32px;
    }

    .testimonial-card {
        padding: 26px 20px;
        border-radius: 20px;
        width: 100%;
    }

    .faq-page-section,
    .service-detail-section {
        padding-top: 56px;
        padding-bottom: 64px;
    }

    .faq-accordion-item {
        padding: 18px 20px;
    }

    .faq-summary {
        font-size: 16px;
    }

    .faq-help-card,
    .service-highlights,
    .sidebar-widget {
        padding: 24px 20px;
        border-radius: 20px;
    }

    .footer-inner {
        padding: 56px 0 28px;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 36px;
    }

    .footer-bottom-bar {
        flex-direction: column;
        align-items: flex-start;
        gap: 12px;
        margin-top: 40px;
    }

    .footer-bottom-links {
        flex-wrap: wrap;
    }
}

@media (max-width: 480px) {
    .brand-logo-text {
        font-size: 18px;
    }

    .brand img {
        width: 96px;
    }

    .page-hero h1 {
        font-size: 32px;
    }

    .section-head h2,
    .cta-section h2 {
        font-size: 28px;
    }

    .contact-features-list .feature-item {
        font-size: 14px;
    }

    .btn-whatsapp {
        width: 100%;
        justify-content: center;
    }
}
