@import url('https://fonts.googleapis.com/css2?family=DM+Sans:wght@400;500;700&family=Cormorant+Garamond:wght@600;700&display=swap');

:root {
    --orange: #FF6B1A;
    --yellow: #FFB800;
    --navy: #0A2540;
    --white: #FFFFFF;
    --bg-light: #F4F6F8;
    --text: #1A1A1A;
    --text-muted: #6B7280;

    --blue: #0051BA;
    /* Keeping for compatibility if needed */

    --spacing-xl: 8rem;
    --spacing-lg: 5rem;
    --spacing-md: 3rem;

    --transition: all 0.2s ease;
    --shadow-premium: 0 10px 30px rgba(0, 0, 0, 0.05);
    --shadow-luxury: 0 40px 100px rgba(0, 0, 0, 0.1);
    --font-serif: 'Cormorant+Garamond', serif;
    --font-sans: 'DM Sans', sans-serif;
}


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

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

body {
    font-family: var(--font-sans);
    background: var(--bg-light);
    color: var(--text);
    overflow-x: hidden;
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
}

h1,
h2,
h3,
h4 {
    font-family: var(--font-serif);
    font-weight: 800;
    line-height: 1.1;
    letter-spacing: -0.02em;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

button {
    cursor: pointer;
    border: none;
    outline: none;
    background: none;
    font-family: var(--font-sans);
}

/* ---- UTILITIES ---- */
.container {
    max-width: 1440px;
    margin: 0 auto;
    padding: 0 2rem;
}

.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}

.btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 1rem;
    background: var(--orange);
    color: white;
    padding: 1.2rem 2.5rem;
    font-weight: 700;
    border-radius: 4px;
    font-size: 1rem;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    transition: var(--transition);
    box-shadow: 0 10px 30px rgba(255, 107, 26, 0.2);
}

.btn-primary:hover {
    transform: translateY(-3px);
    background: #e65a0d;
    box-shadow: 0 15px 40px rgba(255, 107, 26, 0.35);
}

/* Hero Section Specific Button Upgrade */
.hero .btn-primary {
    background: #FF6B1A;
    color: #ffffff;
    padding: 20px 48px;
    border-radius: 6px;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    box-shadow: 0 8px 30px rgba(255, 107, 26, 0.45);
    border: none;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.hero .btn-primary::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.15), transparent);
    transition: left 0.5s ease;
}

.hero .btn-primary:hover::after {
    left: 100%;
}

.hero .btn-primary:hover {
    background: #e85e10;
    box-shadow: 0 12px 40px rgba(255, 107, 26, 0.6);
    transform: translateY(-2px);
    color: white;
}

/* ---- NAVBAR ---- */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 0.75rem 0;
    transition: var(--transition);
}

.navbar.scrolled,
.navbar.navbar-light {
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(20px);
    padding: 0.5rem 0;
    border-bottom: 1px solid rgba(10, 37, 64, 0.05);
    box-shadow: var(--shadow-premium);
    color: var(--navy);
}

.nav-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 2rem;
    /* Ensure some breathing room at the edges */
}

.logo {
    padding-left: 0;
    display: flex;
    align-items: center;
}

.logo img {
    height: 120px;
    width: 120px;
    object-fit: contain;
    transition: all 0.3s ease;
    display: block;
}

.navbar .logo img {
    margin: 0.3rem 0;
}

.navbar.scrolled .logo img,
.navbar.navbar-light .logo img {
    height: 80px;
    width: 80px;
}

/* White logo on transparent navbar */
.navbar:not(.scrolled):not(.navbar-light) .logo img {
    filter: brightness(0) invert(1);
}

.nav-links {
    display: flex;
    gap: 3rem;
    list-style: none;
}

.nav-links a {
    font-weight: 600;
    font-size: 1rem;
    color: white;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.navbar.scrolled .nav-links a,
.navbar.navbar-light .nav-links a {
    color: var(--navy);
    text-shadow: none;
}

.nav-links a.active {
    color: var(--orange) !important;
}

.nav-links a:hover {
    color: var(--yellow);
}

/* ---- HERO ---- */
.hero {
    height: 100vh;
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: flex-start;
    padding-top: 22vh;
    color: white;
}

.hero-bg {
    position: absolute;
    inset: 0;
    z-index: -1;
}


.hero-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(0.6);
    /* Slightly darker for better text contrast */
}

.hero-content {
    max-width: 900px;
    display: flex;
    flex-direction: column;
}

.hero-title {
    font-size: clamp(3rem, 10vw, 6.8rem);
    font-weight: 900;
    margin-bottom: 2rem;
    line-height: 1.05;
    order: 1;
    display: inline-block;
    text-align: center;
}

/* Line 1 — clean white with depth */
.hero-line-1 {
    display: block;
    color: #ffffff;
    text-shadow:
        0 2px 4px rgba(0,0,0,0.4),
        0 8px 32px rgba(0,0,0,0.3);
    letter-spacing: -0.02em;
}

/* Line 2 — sweeping gold shimmer with warm glow */
.hero-line-2 {
    display: block;
    font-size: 1.12em;
    letter-spacing: -0.03em;
    background: linear-gradient(
        100deg,
        #ffffff 0%,
        #FFD966 18%,
        #FFB800 35%,
        #ffffff 50%,
        #FFB800 65%,
        #FFD966 82%,
        #ffffff 100%
    );
    background-size: 250% auto;
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    animation: heroGoldSweep 3.5s linear infinite;
    filter: drop-shadow(0 4px 24px rgba(255,184,0,0.45));
}

@keyframes heroGoldSweep {
    0%   { background-position: 200% center; }
    100% { background-position: -200% center; }
}

.hero-anim-btn {
    order: 2;
    text-align: center;
}

.hero-sub {
    font-size: 15px;
    font-weight: 700;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    display: inline-block;
    background: linear-gradient(to right,
            #FFB800 0%,
            #FFB800 35%,
            #ffffff 50%,
            #FFB800 65%,
            #FFB800 100%);
    background-size: 200% auto;
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    animation: heroLabelShine 3s linear infinite;
    padding: 0;
    text-shadow: none;
    margin-top: 2.5rem;
    order: 3;
}

@keyframes heroLabelShine {
    0% {
        background-position: 200% center;
    }

    100% {
        background-position: -200% center;
    }
}

@media (max-width: 768px) {
    .hero {
        height: auto;
        min-height: 100svh;
        align-items: flex-start;
        padding-top: 260px;
        padding-bottom: 3rem;
        text-align: center;
        overflow: hidden;
        margin-bottom: 0;
    }

    .hero-content {
        align-items: center;
    }

    .hero-title {
        order: 1;
        margin-bottom: 1rem;
    }

    .hero-sub {
        order: 3;
        margin-top: 1rem;
        margin-bottom: 0;
    }

    .hero-anim-btn {
        order: 2;
        position: static;
        width: 100%;
        padding: 0;
        box-sizing: border-box;
        text-align: center;
    }

    .hero .btn-primary {
        display: block;
        width: 100%;
        text-align: center;
        padding: 18px 24px;
        font-size: 13px;
        letter-spacing: 0.2em;
        box-shadow: 0 6px 24px rgba(255, 107, 26, 0.45);
    }

    .logo img {
        height: 80px;
        width: 80px;
    }
}

/* ---- TRUST STRIP ---- */
.trust-strip {
    background: white;
    padding: 3rem 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.trust-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 2rem;
}

.trust-item {
    display: flex;
    flex-direction: column;
}

.trust-num {
    font-family: var(--font-serif);
    font-size: 2.5rem;
    font-weight: 900;
    color: var(--navy);
}

.trust-label {
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--text-muted);
}

/* ---- SERVICES STRIP ---- */
.services-strip {
    padding: 5rem 0;
    background: white;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2px;
    background: rgba(10, 37, 64, 0.05);
    border: 1px solid rgba(10, 37, 64, 0.05);
}

.service-card {
    background: white;
    padding: 5rem 4rem;
    transition: var(--transition);
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    border: 1px solid rgba(10, 37, 64, 0.03);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.02);
}

.service-card:hover {
    background: var(--bg-light);
    transform: translateY(-5px);
}

.service-icon {
    font-size: 2.5rem;
}

.service-card h3 {
    font-size: 1.8rem;
    color: var(--navy);
}

.service-card p {
    color: var(--text-muted);
    font-size: 1.05rem;
}

.service-link {
    font-weight: 700;
    color: var(--blue);
    text-transform: uppercase;
    font-size: 0.85rem;
    letter-spacing: 0.1em;
    margin-top: auto;
    border-bottom: 2px solid var(--yellow);
    display: inline-block;
    width: fit-content;
}

/* Mobile Service Card Enhancements */
@media (max-width: 768px) {
    .service-card {
        border-radius: 16px;
        border: 1px solid rgba(10, 37, 64, 0.10);
        box-shadow: 0 8px 32px rgba(10, 37, 64, 0.10);
        padding: 28px 24px;
        margin-bottom: 16px;
        background: #ffffff;
    }

    .service-card:hover {
        box-shadow: 0 12px 40px rgba(255, 107, 26, 0.15);
        border-color: rgba(255, 107, 26, 0.3);
        transform: translateY(-2px);
        transition: all 0.3s ease;
    }
}

/* ---- BEFORE / AFTER SLIDER ---- */
.ba-section {
    padding: 5rem 0;
    background: linear-gradient(135deg, #0A2540 0%, #061828 100%);
    color: white;
}

.ba-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 5rem;
}

.ba-container {
    position: relative;
    width: 100%;
    aspect-ratio: 16 / 9;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 40px 100px rgba(0, 0, 0, 0.4);
}

.ba-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.ba-before {
    z-index: 1;
}

.ba-after {
    z-index: 2;
    clip-path: inset(0 0 0 50%);
}

.ba-slider-handle {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 50%;
    width: 4px;
    background: white;
    z-index: 3;
    cursor: ew-resize;
    transform: translateX(-50%);
}

.ba-slider-button {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 60px;
    height: 60px;
    background: var(--yellow);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 0 30px rgba(255, 218, 26, 0.4);
}

.ba-slider-button::before,
.ba-slider-button::after {
    content: '';
    width: 0;
    height: 0;
    border-top: 8px solid transparent;
    border-bottom: 8px solid transparent;
}

.ba-slider-button::before {
    border-right: 10px solid var(--blue);
    margin-right: 5px;
}

.ba-slider-button::after {
    border-left: 10px solid var(--blue);
    margin-left: 5px;
}

.ba-label {
    position: absolute;
    bottom: 2rem;
    background: rgba(0, 81, 186, 0.8);
    padding: 0.5rem 1.2rem;
    font-weight: 700;
    text-transform: uppercase;
    font-size: 0.75rem;
    letter-spacing: 0.1em;
    border-radius: 4px;
    z-index: 4;
}

.ba-label.before {
    left: 2rem;
}

.ba-label.after {
    right: 2rem;
}

/* ---- TESTIMONIALS ---- */
.testimonials-section {
    padding: var(--spacing-xl) 0;
    background: var(--bg-light);
}

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

.testimonial-card {
    background: white;
    padding: 4rem;
    border-radius: 8px;
    box-shadow: var(--shadow-premium);
}

.stars {
    color: var(--gold);
    margin-bottom: 1.5rem;
    font-size: 1.2rem;
}

.testimonial-text {
    font-size: 1.4rem;
    font-family: var(--font-serif);
    color: var(--blue);
    line-height: 1.4;
    margin-bottom: 2rem;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.author-info h4 {
    font-family: var(--font-sans);
    font-size: 1rem;
}

.author-info span {
    font-size: 0.8rem;
    color: var(--text-muted);
}

/* ---- BLOG PREVIEW ---- */
.blog-preview {
    padding: var(--spacing-lg) 0;
}

.section-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 4rem;
}

.blog-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.blog-card {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.blog-img {
    aspect-ratio: 4 / 3;
    overflow: hidden;
    border-radius: 4px;
}

.blog-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.blog-card:hover .blog-img img {
    transform: scale(1.05);
}

.blog-meta {
    font-size: 0.8rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.blog-card h3 {
    font-size: 1.4rem;
    color: var(--navy);
}

/* ---- FOOTER ---- */
.footer-cta {
    background: linear-gradient(135deg, #0A2540 0%, #061828 100%);
    padding: var(--spacing-lg) 0;
    text-align: center;
    color: white;
}

.trust-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    margin-bottom: 2rem;
    padding: 0.5rem 1rem;
    border-radius: 50px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.trust-score {
    font-weight: 700;
    font-size: 1.1rem;
    color: white;
}

.trust-stars {
    color: #FBBC04;
    font-size: 1.1rem;
    letter-spacing: 2px;
}

.trust-text {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.8);
    position: relative;
    top: 1px;
}

.footer-main {
    padding: 4rem 0 1rem 0;
    background: var(--navy);
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-grid {
    display: grid;
    grid-template-columns: 1fr 1fr 1.5fr;
    gap: 2rem;
}

.footer-col li {
    color: white;
}

.footer-col h4 {
    font-size: 1rem;
    margin-bottom: 1.5rem;
    color: white;
}

.footer-col p {
    color: rgba(255, 255, 255, 0.7) !important;
}

.footer-col ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
}

.footer-col a {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.95rem;
}

.footer-col a:hover {
    color: var(--orange);
}

.footer-bottom {
    padding: 1rem 0;
    margin-top: 1.5rem;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    display: flex;
    justify-content: center;
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.5);
}

/* Mobile Footer Redesign */
@media (max-width: 768px) {
    .footer-main {
        padding: 32px 16px !important;
    }

    .footer-grid {
        grid-template-columns: 1fr 1fr !important;
        gap: 2rem !important;
    }

    /* Experience & Services columns */

    /* Connect section spans full width */
    .footer-grid .footer-col:last-child {
        grid-column: span 2 !important;
        text-align: center;
    }

    .footer-grid .footer-col:last-child ul {
        align-items: center;
    }

    .footer-col h4 {
        font-weight: 700 !important;
        color: white !important;
        margin-bottom: 1rem !important;
    }

    .footer-col a {
        font-size: 0.85rem !important;
        color: rgba(255, 255, 255, 0.5) !important;
    }

    .footer-bottom {
        padding: 2rem 0 !important;
        margin-top: 2rem !important;
        flex-direction: column;
        gap: 1rem;
    }

    .footer-bottom div {
        justify-content: center !important;
        gap: 1rem !important;
    }
}

.footer-compliance {
    border-top: none;
    padding-top: 0.5rem;
    padding-bottom: 2rem;
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 0.5rem;
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.5);
}

.footer-compliance a {
    color: rgba(255, 255, 255, 0.5);
    text-decoration: none;
}

.footer-compliance a:hover {
    color: white;
}

/* ---- COMPLIANCE PAGES ---- */
.compliance-section {
    padding: 12rem 0 6rem;
    background: white;
    color: var(--text);
}

.compliance-container {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 2rem;
}

.compliance-container h1 {
    font-size: 3rem;
    color: var(--navy);
    margin-bottom: 0.5rem;
}

.compliance-container .last-updated {
    color: var(--text-muted);
    font-size: 0.9rem;
    margin-bottom: 3rem;
    display: block;
}

.compliance-container h2 {
    font-size: 1.8rem;
    color: var(--navy);
    margin: 2.5rem 0 1rem;
}

.compliance-container p {
    font-size: 1rem;
    margin-bottom: 1.2rem;
    line-height: 1.8;
}

/* ---- HOMEPAGE SPECIFIC ANIMATIONS ---- */
.hero-anim-text,
.hero-anim-btn {
    opacity: 0;
    transform: translateY(20px);
    display: inline-block;
    transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1), transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
    will-change: opacity, transform;
    backface-visibility: hidden;
}

.hero-anim-btn {
    display: block;
}

.fade-up-active {
    opacity: 1 !important;
    transform: translateY(0) !important;
    visibility: visible !important;
}

/* Portfolio Stats Grid */
.ticker-wrap {
    background: #0A2540;
    padding: 48px 32px;
    overflow: visible;
}

.ticker {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0;
    animation: none;
    transform: none;
    max-width: 1200px;
    margin: 0 auto;
}

.ticker-item {
    text-align: center;
    padding: 16px 24px;
    border-right: 1px solid rgba(255, 255, 255, 0.1);
    opacity: 0;
    transform: scale(0.85) translateY(10px);
    animation: statPop 0.5s cubic-bezier(0.34, 1.56, 0.64, 1) forwards;
}

.ticker-item:last-child {
    border-right: none;
}

.ticker-item:nth-child(1) {
    animation-delay: 0.1s;
}

.ticker-item:nth-child(2) {
    animation-delay: 0.25s;
}

.ticker-item:nth-child(3) {
    animation-delay: 0.4s;
}

.ticker-item:nth-child(4) {
    animation-delay: 0.55s;
}

@keyframes statPop {
    0% {
        opacity: 0;
        transform: scale(0.85) translateY(10px);
    }

    60% {
        opacity: 1;
        transform: scale(1.05) translateY(-4px);
    }

    100% {
        opacity: 1;
        transform: scale(1) translateY(0);
    }
}

@media (max-width: 768px) {
    .ticker {
        grid-template-columns: repeat(2, 1fr);
        gap: 0;
    }

    .ticker-item {
        border-right: none;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
        padding: 20px 16px;
    }

    .ticker-item:nth-child(odd) {
        border-right: 1px solid rgba(255, 255, 255, 0.1);
    }

    .ticker-item:last-child,
    .ticker-item:nth-last-child(2):nth-child(odd) {
        border-bottom: none;
    }
}

/* Compliance Footer Links */
.footer-compliance {
    padding: 1rem 0;
    margin-top: 0;
    border-top: 1px solid rgba(0, 0, 0, 0.05);
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    font-size: 0.8rem;
}

.footer-compliance a {
    color: var(--text-muted);
}

.footer-compliance a:hover {
    color: var(--navy);
}

/* ---- CALL US NOW FLOATING BUTTON ---- */
.call-float {
    position: fixed;
    bottom: 24px;
    right: 24px;
    background-color: var(--orange);
    color: #FFF;
    border-radius: 50px;
    box-shadow: 0 4px 20px rgba(255, 107, 26, 0.45);
    z-index: 9998;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 14px 22px;
    font-family: var(--font-sans);
    font-weight: 700;
    font-size: 13px;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    text-decoration: none;
    transition: transform 0.2s ease, background-color 0.2s ease, box-shadow 0.2s ease, bottom 0.3s ease;
}

.call-float:hover {
    transform: translateY(-3px);
    background-color: #e65a0d;
    box-shadow: 0 8px 30px rgba(255, 107, 26, 0.6);
    color: white;
}

.call-float svg {
    flex-shrink: 0;
}

/* Shift when cookie banner is active */
body.cookie-active .call-float {
    bottom: 104px;
}

/* ---- COOKIE CONSENT BANNER ---- */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background: var(--navy);
    color: white;
    border-top: 2px solid var(--orange);
    z-index: 9999;
    padding: 16px 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transform: translateY(100%);
    transition: transform 0.3s ease-out;
    box-shadow: 0 -10px 30px rgba(0, 0, 0, 0.15);
}

.cookie-banner.show {
    transform: translateY(0);
}

.cookie-text {
    font-size: 0.95rem;
    margin-right: 2rem;
    line-height: 1.5;
}

.cookie-text a {
    color: var(--orange);
    text-decoration: underline;
    font-weight: 500;
}

.cookie-buttons {
    display: flex;
    gap: 8px;
    flex-shrink: 0;
}

.btn-cookie-accept {
    background: var(--orange);
    color: white;
    border: none;
    padding: 10px 24px;
    border-radius: 100px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.2s ease;
    font-family: var(--font-sans);
}

.btn-cookie-accept:hover {
    background: #e65a10;
}

.btn-cookie-decline {
    background: transparent;
    color: white;
    border: 1.5px solid white;
    padding: 10px 24px;
    border-radius: 100px;
    font-weight: 500;
    cursor: pointer;
    transition: background-color 0.2s ease, color 0.2s ease;
    font-family: var(--font-sans);
}

.btn-cookie-decline:hover {
    background: white;
    color: var(--navy);
}

/* ---- RESPONSIVE ---- */
@media (max-width: 1024px) {

    .services-grid,
    .blog-grid {
        grid-template-columns: 1fr;
    }

    .testimonial-grid {
        grid-template-columns: 1fr;
    }

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

@media (max-width: 768px) {
    :root {
        --spacing-xl: 4rem;
        /* Further reduced for mobile */
        --spacing-lg: 3rem;
    }

    .hero-title {
        font-size: 2.6rem;
        /* Scaled down from 3.5rem */
    }

    h2 {
        font-size: 2.2rem !important;
    }

    h3 {
        font-size: 1.6rem !important;
    }

    .trust-inner {
        flex-direction: column;
        text-align: center;
        gap: 2rem;
    }

    /* ---- MOBILE NAVIGATION ---- */
    .mobile-menu-btn {
        display: flex;
        flex-direction: column;
        gap: 5px;
        background: transparent;
        border: none;
        cursor: pointer;
        padding: 5px;
        z-index: 1001;
        /* Above the menu */
    }

    .mobile-menu-btn span {
        width: 25px;
        height: 2px;
        background-color: var(--navy);
        transition: var(--transition);
        transform-origin: left center;
    }

    /* Keep icon white on dark transparent nav if needed, but we invert it back on scroll */
    .navbar:not(.scrolled):not(.navbar-light) .mobile-menu-btn span {
        background-color: white;
    }

    /* Animated Close X */
    .mobile-menu-btn.active span:nth-child(1) {
        transform: rotate(45deg);
        width: 28px;
        background-color: var(--navy);
    }

    .mobile-menu-btn.active span:nth-child(2) {
        opacity: 0;
    }

    .mobile-menu-btn.active span:nth-child(3) {
        transform: rotate(-45deg);
        width: 28px;
        background-color: var(--navy);
    }

    .nav-links {
        display: flex;
        flex-direction: column;
        position: fixed;
        top: 0;
        right: -100%;
        width: 75%;
        max-width: 320px;
        height: 100vh;
        background: white;
        padding: 5rem 2rem 2rem;
        gap: 0;
        box-shadow: -10px 0 40px rgba(0, 0, 0, 0.18);
        transition: right 0.35s cubic-bezier(0.77, 0, 0.175, 1);
        z-index: 1000;
    }

    .nav-links.active {
        right: 0;
    }

    /* X close button inside menu */
    .nav-close-btn {
        display: block;
        position: absolute;
        top: 1.2rem;
        right: 1.2rem;
        background: none;
        border: none;
        cursor: pointer;
        width: 36px;
        height: 36px;
        padding: 6px;
    }
    .nav-close-btn::before,
    .nav-close-btn::after {
        content: '';
        position: absolute;
        top: 50%; left: 50%;
        width: 22px; height: 2px;
        background: var(--navy);
        border-radius: 2px;
    }
    .nav-close-btn::before { transform: translate(-50%,-50%) rotate(45deg); }
    .nav-close-btn::after  { transform: translate(-50%,-50%) rotate(-45deg); }

    .nav-links a {
        color: var(--navy);
        font-size: 1rem;
        font-weight: 600;
        display: block;
        padding: 1rem 0;
        border-bottom: 1px solid rgba(0, 0, 0, 0.07);
        letter-spacing: 0.02em;
    }

    /* Ensure body scrolling is locked when menu opens */
    body.menu-open {
        overflow: hidden;
    }

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

    /* Responsive overrides for interior pages */
    .service-detail-hero {
        padding: 130px 0 3rem !important;
    }

    /* Wrap CTA Banner inline flex block */
    .luxury-cta-banner .container>div {
        flex-direction: column !important;
        gap: 1rem !important;
    }
}

/* ---- FLOATING CONTACT FORM ---- */
.floating-contact {
    position: fixed;
    left: 2rem;
    top: 10%;
    /* Moved to top to avoid overlap with expanded reviews */
    width: 320px;
    background: rgba(0, 0, 0, 0.2);
    /* Much more transparent */
    backdrop-filter: blur(20px);
    /* Increased blur for true glass effect */
    -webkit-backdrop-filter: blur(20px);
    color: white;
    padding: 2rem;
    border-radius: 8px;
    z-index: 1100;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: var(--transition);
}

.floating-contact.closed {
    transform: translateX(-120%);
    opacity: 0;
    pointer-events: none;
}

.contact-close {
    position: absolute;
    top: 1rem;
    right: 1rem;
    cursor: pointer;
    color: rgba(255, 255, 255, 0.5);
    font-size: 1.2rem;
    transition: var(--transition);
}

.contact-close:hover {
    color: var(--yellow);
}

.floating-contact h3 {
    font-size: 1.4rem;
    margin-bottom: 0.5rem;
    color: white;
}

.floating-contact p {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 1.5rem;
}

.float-form {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.float-form input {
    background: rgba(255, 255, 255, 0.1);
    /* Increased field visibility */
    border: 1px solid rgba(255, 255, 255, 0.2);
    padding: 0.8rem;
    border-radius: 4px;
    color: white;
    font-size: 0.9rem;
    transition: var(--transition);
}

.float-form input::placeholder {
    color: rgba(255, 255, 255, 0.6);
}

.float-form input:focus {
    border-color: var(--yellow);
    outline: none;
    background: rgba(255, 255, 255, 0.1);
}

.sms-consent {
    display: flex;
    gap: 0.8rem;
    font-size: 0.7rem;
    line-height: 1.3;
    color: rgba(255, 255, 255, 0.5);
}

.sms-consent input {
    margin-top: 2px;
}

/* ---- REVIEW POPUP ---- */
/* ---- REVIEW POPUP (NEW COMPACT LAYOUT) ---- */
.review-popup {
    position: fixed;
    bottom: 24px;
    left: 24px;
    width: 280px;
    background: white;
    padding: 1.25rem;
    border-radius: 12px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.12);
    border-left: 3px solid var(--orange);
    z-index: 1050;
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
    cursor: pointer;
    /* Hidden by default, toggled via JS animations */
    transform: translateX(-120%);
    opacity: 0;
    transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.review-popup.show {
    transform: translateX(0);
    opacity: 1;
}

.review-close {
    position: absolute;
    top: 0.8rem;
    right: 0.8rem;
    font-size: 1.1rem;
    color: var(--text-muted);
    cursor: pointer;
    line-height: 1;
    transition: var(--transition);
}

.review-close:hover {
    color: var(--navy);
}

.review-header {
    display: flex;
    align-items: center;
    gap: 0.6rem;
}

.google-logo {
    width: 20px;
    height: 20px;
}

.review-stars {
    color: #FBBC04;
    font-size: 1rem;
    display: flex;
    gap: 1px;
    margin-top: 1px;
}

.review-text {
    font-size: 0.9rem;
    color: var(--text);
    line-height: 1.4;
    display: -webkit-box;
    -webkit-line-clamp: 1;
    line-clamp: 1;
    -webkit-box-orient: vertical;
    overflow: hidden;
    font-family: var(--font-sans);
}

.review-popup:hover .review-text {
    -webkit-line-clamp: unset;
    line-clamp: unset;
}

.review-footer {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-top: 0.5rem;
}

.review-meta {
    display: flex;
    flex-direction: column;
    gap: 0.2rem;
}

.reviewer-name {
    font-weight: 700;
    color: var(--blue);
    font-size: 0.8rem;
}

.reviewer-city {
    color: var(--text-muted);
    font-size: 0.75rem;
}

.review-date {
    color: var(--text-muted);
    font-size: 0.75rem;
}

@media (max-width: 768px) {
    .review-popup {
        display: none !important;
    }
}

/* ---- LUXURY MULTI-STEP FORM ---- */
.quote-page {
    background: var(--navy);
    background: radial-gradient(circle at center, #0F3254 0%, #0A2540 100%);
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 6rem 1rem;
}

.luxury-card {
    background: var(--white);
    width: 100%;
    max-width: 680px;
    border-radius: 24px;
    box-shadow: var(--shadow-luxury);
    border: 1px solid rgba(0, 0, 0, 0.07);
    padding: 4rem 3rem 3rem;
    position: relative;
    overflow: hidden;
}

.form-logo {
    display: block;
    margin: 0 auto 2rem;
    height: 120px;
}

/* Progress Bar */
.luxury-progress {
    width: calc(100% + 6rem);
    margin-left: -3rem;
    height: 5px;
    background: var(--bg-light);
    margin-bottom: 3.5rem;
    display: flex;
}

.progress-fill {
    height: 100%;
    background: var(--orange);
    transition: width 0.6s cubic-bezier(0.16, 1, 0.3, 1);
    width: 33.33%;
}

.step-labels {
    display: flex;
    justify-content: space-between;
    margin-bottom: 3rem;
    padding: 0 0.5rem;
}

.step-label {
    font-size: 0.75rem;
    font-weight: 500;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.08em;
    transition: var(--transition);
}

.step-label.active {
    color: var(--navy);
    font-weight: 700;
}

.step-label.completed {
    color: var(--orange);
}

/* Steps & Animation */
.step-container {
    position: relative;
    min-height: 480px;
}

.luxury-step {
    display: none;
}

.luxury-step.active {
    display: block;
    animation: luxuryFadeIn 0.5s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

@keyframes luxuryFadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.luxury-header {
    text-align: center;
    margin-bottom: 3rem;
}

.luxury-header h2 {
    font-size: 2rem;
    color: var(--navy);
    margin-bottom: 0.5rem;
    font-family: var(--font-serif);
}

.luxury-header p {
    color: var(--text-muted);
    font-size: 0.95rem;
}

/* Inputs & Form Elements */
.luxury-group {
    margin-bottom: 1.5rem;
}

.luxury-group label {
    display: block;
    font-size: 0.85rem;
    font-weight: 700;
    margin-bottom: 0.6rem;
    color: var(--navy);
    text-transform: uppercase;
    letter-spacing: 0.02em;
}

.luxury-group input,
.luxury-group select,
.luxury-group textarea {
    width: 100%;
    padding: 1.1rem 1.4rem;
    background: #F4F6F8;
    border: 2px solid transparent;
    border-radius: 12px;
    font-size: 1rem;
    font-family: var(--font-sans);
    transition: var(--transition);
    color: var(--navy);
}

.luxury-group input:focus {
    border-color: var(--orange);
    background: white;
    outline: none;
    box-shadow: 0 8px 20px rgba(255, 107, 26, 0.1);
}

.input-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
}

/* Custom Button Selection */
.btn-select-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin-bottom: 2rem;
}

.btn-select-item {
    padding: 1.2rem;
    background: #F4F6F8;
    border-radius: 12px;
    text-align: center;
    cursor: pointer;
    transition: var(--transition);
    font-weight: 600;
    font-size: 0.95rem;
    border: 2px solid transparent;
    color: var(--navy);
}

.btn-select-item:hover {
    background: #EBEDF0;
}

.btn-select-item.selected {
    background: white;
    border-color: var(--orange);
    color: var(--orange);
    box-shadow: 0 8px 20px rgba(255, 107, 26, 0.1);
}

/* Toggle Styling */
.luxury-toggle {
    display: flex;
    background: #F4F6F8;
    padding: 0.4rem;
    border-radius: 50px;
    margin-bottom: 2rem;
}

.toggle-opt {
    flex: 1;
    text-align: center;
    padding: 0.8rem;
    border-radius: 40px;
    cursor: pointer;
    font-size: 0.9rem;
    font-weight: 700;
    transition: var(--transition);
    color: var(--text-muted);
}

.toggle-opt.active {
    background: white;
    color: var(--orange);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.06);
}

/* Checkbox Styling */
.luxury-check-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0.8rem;
    margin-bottom: 2rem;
}

.luxury-check {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.1rem;
    background: #F4F6F8;
    border-radius: 12px;
    cursor: pointer;
    transition: var(--transition);
}

.luxury-check input {
    accent-color: var(--orange);
    width: 20px;
    height: 20px;
}

.luxury-check span {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--navy);
}

.luxury-check.selected {
    background: white;
    outline: 2px solid var(--orange);
}

/* Nav Buttons */
.luxury-form-nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(0, 0, 0, 0.05);
}

.btn-back-ghost {
    color: var(--text-muted);
    font-weight: 600;
    font-size: 0.95rem;
    background: none;
    border: none;
}

.btn-next-orange {
    background: var(--orange);
    color: white;
    padding: 1.1rem 2.5rem;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1rem;
    display: flex;
    align-items: center;
    gap: 0.8rem;
    box-shadow: 0 10px 20px rgba(255, 107, 26, 0.2);
    border: none;
}

.btn-next-orange:disabled {
    background: #E5E7EB;
    box-shadow: none;
    cursor: not-allowed;
}

/* Success State */
.luxury-success {
    text-align: center;
    padding: 3rem 0;
    display: none;
}

.success-icon {
    width: 90px;
    height: 90px;
    background: #F0FDF4;
    color: #16A34A;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    margin: 0 auto 2.5rem;
    animation: successPop 0.6s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

@keyframes successPop {
    0% {
        transform: scale(0.5);
        opacity: 0;
    }

    100% {
        transform: scale(1);
        opacity: 1;
    }
}

.success-link {
    display: inline-block;
    margin-top: 2.5rem;
    color: var(--orange);
    font-weight: 700;
    font-size: 1rem;
}

.privacy-footer {
    text-align: center;
    margin-top: 2.5rem;
    font-size: 0.75rem;
    color: var(--text-muted);
}

/* ---- HOME TESTIMONIALS ---- */
.testimonials-home {
    background: var(--navy);
    padding: 5rem 0;
}

.test-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.test-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 16px;
    padding: 2.5rem 2rem;
    display: flex;
    flex-direction: column;
    height: 100%;
    transition: var(--transition);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.test-card:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.test-card .stars {
    color: var(--orange);
    font-size: 1.2rem;
    margin-bottom: 1.5rem;
    letter-spacing: 2px;
}

.test-quote {
    color: white;
    font-family: var(--font-serif);
    font-size: 1.25rem;
    font-style: italic;
    line-height: 1.6;
    margin-bottom: 2rem;
    flex-grow: 1;
}

.test-client strong {
    display: block;
    color: white;
    font-size: 1.1rem;
    font-weight: 700;
}

.test-client span {
    display: block;
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.85rem;
    margin-top: 0.2rem;
}

@media (max-width: 1024px) {
    .test-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .quote-page {
        padding: 4rem 1.5rem;
        display: flex;
        flex-direction: column;
        align-items: center;
        width: 100%;
        overflow-x: hidden;
    }

    .luxury-card {
        border-radius: 20px;
        padding: 3rem 1.5rem 2.5rem;
        min-height: auto;
        margin: 0 auto 3rem auto;
        width: 100%;
        max-width: 550px;
        box-shadow: none;
        border: 1px solid rgba(0, 0, 0, 0.05);
    }

    .luxury-toggle {
        flex-wrap: wrap;
        gap: 0.5rem;
        padding: 0.5rem;
        background: #F4F6F8;
        border-radius: 12px;
    }

    .toggle-opt {
        flex: 1 1 calc(50% - 0.5rem);
        min-width: 80px;
        font-size: 0.8rem;
        padding: 0.6rem;
    }

    .luxury-progress {
        width: calc(100% + 3rem);
        margin-left: -1.5rem;
        margin-bottom: 2.5rem;
    }

    .step-labels {
        gap: 0.5rem;
    }

    .step-label {
        font-size: 0.65rem;
    }

    .btn-select-grid,
    .luxury-check-grid,
    .input-grid {
        grid-template-columns: 1fr !important;
    }
}

/* ---- SERVICES PAGE REDESIGN ---- */
.service-hero {
    position: relative;
}

.hero-label {
    position: absolute;
    bottom: 2rem;
    background: rgba(0, 0, 0, 0.4);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    color: white;
    padding: 0.6rem 1.2rem;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    z-index: 5;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.label-before {
    left: 3rem;
}

.label-after {
    right: 3rem;
}

/* Process Strip */
.process-strip {
    background: #eff1f3;
    /* High-density light version */
    padding: 3rem 0;
    border-top: 1px solid rgba(0, 0, 0, 0.05);
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.process-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 3rem;
}

.process-item {
    text-align: center;
    position: relative;
}

.process-item:not(:last-child)::after {
    content: '';
    position: absolute;
    top: 1.5rem;
    right: -1.5rem;
    width: 3rem;
    height: 1px;
    background: rgba(0, 0, 0, 0.1);
}

.process-num {
    width: 3rem;
    height: 3rem;
    background: rgba(255, 107, 26, 0.1);
    color: var(--orange);
    border: 1px solid var(--orange);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    font-weight: 800;
    font-size: 1.1rem;
}

.process-item h4 {
    color: var(--navy);
    /* High contrast dark text */
    font-size: 0.95rem;
    font-family: var(--font-sans);
    letter-spacing: 0.02em;
    font-weight: 700;
}

/* Service Cards (Navy Version) */
.services-navy-section {
    background: white;
    padding: 4rem 0 0;
    /* Reduced from 10rem to eliminate empty space */
}

.services-navy-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 3rem;
}

.service-card-navy {
    background: var(--navy);
    padding: 3.5rem;
    border-radius: 24px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    display: flex;
    flex-direction: column;
    gap: 2rem;
    transition: var(--transition);
}

.service-card-navy:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-luxury);
    border-color: rgba(255, 107, 26, 0.3);
}

.service-card-navy .card-img {
    width: 100%;
    aspect-ratio: 16 / 10;
    border-radius: 16px;
    overflow: hidden;
}

.service-card-navy .card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s ease;
}

.service-card-navy:hover .card-img img {
    transform: scale(1.05);
}

.service-card-navy h3 {
    color: var(--orange);
    font-size: 2.2rem;
    margin-bottom: 0.5rem;
}

.service-card-navy p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 1.1rem;
    line-height: 1.6;
}

.feature-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
    margin-top: 1rem;
}

.feature-list li {
    color: white;
    font-size: 0.95rem;
    display: flex;
    align-items: center;
    gap: 0.8rem;
}

.feature-list li::before {
    content: '→';
    color: var(--orange);
    font-weight: 700;
}

.btn-pill-orange {
    display: inline-flex;
    align-items: center;
    gap: 0.8rem;
    background: var(--orange);
    color: white;
    padding: 1rem 2rem;
    border-radius: 50px;
    font-weight: 700;
    font-size: 0.95rem;
    width: fit-content;
    box-shadow: 0 10px 20px rgba(255, 107, 26, 0.2);
    margin-top: auto;
}

.btn-pill-orange:hover {
    transform: translateX(5px);
    box-shadow: 0 15px 30px rgba(255, 107, 26, 0.35);
}

/* Luxury CTA Banner */
.luxury-cta-banner {
    background: #061828;
    padding: 10rem 0;
    text-align: center;
    margin-top: 10rem;
}

.luxury-cta-banner h2 {
    font-size: 3.5rem;
    color: white;
    margin-bottom: 3rem;
}

@media (max-width: 1024px) {

    .services-navy-grid,
    .process-grid {
        grid-template-columns: 1fr;
    }

    .process-item:not(:last-child)::after {
        display: none;
    }
}

/* ---- JOURNAL / BLOG REDESIGN ---- */
.blog-hero {
    background: var(--navy);
    padding: 120px 0 80px;
    text-align: center;
    color: white;
}

.blog-hero .container {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.blog-hero .hero-sub {
    display: inline-block;
    color: var(--orange) !important;
    background: none !important;
    -webkit-background-clip: unset !important;
    background-clip: unset !important;
    -webkit-text-fill-color: var(--orange);
    animation: none !important;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    margin-bottom: 1.5rem;
    margin-top: 0;
    order: unset;
}

.blog-hero h1 {
    font-size: clamp(3rem, 8vw, 5.5rem);
    margin-bottom: 1.5rem;
    text-align: center;
    display: block;
    order: unset;
}

.blog-hero p {
    color: rgba(255,255,255,0.5);
    font-size: 1.1rem;
    max-width: 600px;
    margin: 0 auto;
}

/* Category Filter */
.filter-bar {
    padding: 3rem 0;
    display: flex;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
    background: white;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.filter-btn {
    padding: 0.8rem 1.8rem;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 600;
    border: 1px solid #E5E7EB;
    color: var(--text-muted);
    transition: var(--transition);
}

.filter-btn:hover,
.filter-btn.active {
    background: var(--orange);
    border-color: var(--orange);
    color: white;
}

/* Blog Cards & Grid */
.journal-section {
    padding: 8rem 0;
    background: var(--bg-light);
}

.journal-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 3rem;
}

/* Featured Card */
.blog-featured {
    grid-column: 1 / -1;
    display: flex;
    background: white;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: var(--shadow-premium);
    margin-bottom: 5rem;
    transition: var(--transition);
}

.blog-featured .featured-img {
    flex: 0 0 60%;
    overflow: hidden;
}

.blog-featured .featured-content {
    flex: 0 0 40%;
    padding: 4rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 1.5rem;
}

.badge-featured {
    background: var(--yellow);
    color: var(--navy);
    padding: 0.4rem 1rem;
    border-radius: 50px;
    font-size: 0.7rem;
    font-weight: 800;
    text-transform: uppercase;
    width: fit-content;
}

.blog-featured:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-luxury);
}

/* Standard Blog Card */
.journal-card {
    background: white;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: var(--shadow-premium);
    transition: var(--transition);
    display: flex;
    flex-direction: column;
}

.card-top {
    position: relative;
    aspect-ratio: 16 / 10;
    overflow: hidden;
}

.card-top img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s ease;
}

.category-badge {
    position: absolute;
    top: 1.5rem;
    left: 1.5rem;
    background: var(--orange);
    color: white;
    padding: 0.4rem 1.2rem;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 700;
    z-index: 2;
}

.journal-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-luxury);
}

.journal-card:hover .card-top img {
    transform: scale(1.05);
}

.card-body {
    padding: 2.5rem;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.journal-card h3 {
    font-size: 1.6rem;
    color: var(--navy);
    line-height: 1.2;
}

.journal-card p {
    color: #555555;
    font-size: 0.95rem;
    line-height: 1.6;
}

.card-footer {
    padding: 0 2.5rem 2.5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: auto;
}

.author-row {
    display: flex;
    align-items: center;
    gap: 0.8rem;
}

.author-avatar {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: #E5E7EB;
}

.author-name {
    font-size: 0.85rem;
    font-weight: 700;
    color: #444444;
}

.read-time {
    font-size: 0.8rem;
    color: #444444;
}

.btn-journal-link {
    color: var(--orange);
    font-weight: 700;
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    gap: 0.6rem;
    position: relative;
    padding-bottom: 2px;
    width: fit-content;
}

.btn-journal-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 1px;
    background: var(--orange);
    transition: width 0.3s ease;
}

.btn-journal-link:hover::after {
    width: 100%;
}

/* Newsletter Strip */
.newsletter-strip {
    background: #061828;
    padding: 8rem 0;
    text-align: center;
    color: white;
}

.newsletter-strip h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.newsletter-form {
    display: flex;
    justify-content: center;
    gap: 1rem;
    max-width: 500px;
    margin: 3rem auto 1rem;
}

.newsletter-form input {
    flex: 1;
    padding: 1.1rem 1.5rem;
    border-radius: 50px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    background: rgba(255, 255, 255, 0.05);
    color: white;
    outline: none;
}

.newsletter-form input:focus {
    border-color: var(--orange);
}

.newsletter-form .btn-primary {
    padding: 1rem 2.5rem;
    border-radius: 50px;
    background: var(--orange);
    color: white;
    box-shadow: none;
}

.newsletter-subtext {
    font-size: 0.8rem;
    color: var(--text-muted);
}

@media (max-width: 1200px) {
    .journal-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .journal-grid {
        grid-template-columns: 1fr;
    }

    .blog-featured {
        flex-direction: column;
    }

    .blog-featured .featured-img {
        flex: none;
        aspect-ratio: 16/9;
    }

    .blog-featured .featured-content {
        flex: none;
        padding: 2.5rem;
    }
}

/* ---- SERVICE DETAIL PAGE ---- */
.service-detail-hero {
    background: var(--navy);
    padding: 120px 0 80px;
    color: white;
    text-align: center;
}

.service-detail-hero .container {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.service-detail-hero .hero-sub {
    display: inline-block;
    color: var(--orange) !important;
    background: none !important;
    -webkit-background-clip: unset !important;
    background-clip: unset !important;
    -webkit-text-fill-color: var(--orange);
    animation: none !important;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    margin-bottom: 1.2rem;
    margin-top: 0;
    order: unset;
}

.service-detail-hero .hero-title {
    display: block;
    text-align: center;
    font-size: 2.8rem;
    margin-bottom: 1.2rem;
    order: unset;
}

.service-detail-hero p {
    font-size: 1.1rem;
    max-width: 600px;
    color: rgba(255,255,255,0.7);
    line-height: 1.6;
    margin: 0 auto;
}

.service-detail-hero .btn-group {
    display: flex;
    gap: 1.5rem;
    margin-top: 3rem;
}

.btn-ghost {
    display: inline-flex;
    align-items: center;
    gap: 0.8rem;
    border: 1px solid rgba(255, 255, 255, 0.3);
    color: white;
    padding: 1.1rem 2.5rem;
    border-radius: 4px;
    font-weight: 700;
    font-size: 0.95rem;
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

.btn-ghost:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: white;
}

/* Focus styles for contact form */
.contact-card input:focus,
.contact-card textarea:focus {
    outline: none;
    border-color: var(--orange) !important;
    box-shadow: 0 0 0 3px rgba(224, 106, 51, 0.1);
}

.contact-card label {
    font-weight: 600;
}

/* Overview Section */
.overview-section {
    padding: 10rem 0;
    background: white;
}

.overview-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 6rem;
    align-items: center;
}

.overview-img {
    border-radius: 24px;
    overflow: hidden;
    box-shadow: var(--shadow-luxury);
}

.overview-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.stat-strip {
    display: flex;
    gap: 3rem;
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(0, 0, 0, 0.05);
}

.stat-item {
    display: flex;
    flex-direction: column;
}

.stat-val {
    font-family: var(--font-serif);
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--orange);
}

.stat-label {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--text-muted);
}

/* Feature Grid */
.feature-grid-section {
    background: var(--navy);
    padding: 10rem 0;
    color: white;
}

.feature-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 5rem;
}

.feature-detail-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    padding: 3rem;
    border-radius: 16px;
    transition: var(--transition);
}

.feature-detail-card:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: var(--orange);
}

.feature-detail-card .icon {
    font-size: 2rem;
    margin-bottom: 1.5rem;
    display: block;
}

.feature-detail-card h4 {
    font-family: var(--font-sans);
    font-size: 1.2rem;
    margin-bottom: 0.8rem;
}

.feature-detail-card p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
    line-height: 1.6;
}

/* Gallery Strip */
.gallery-strip {
    padding: 6rem 0;
    background: white;
    overflow: hidden;
}

.gallery-scroll {
    display: flex;
    gap: 2rem;
    padding: 0 2rem;
    overflow-x: auto;
    scrollbar-width: none;
    -ms-overflow-style: none;
}

.gallery-scroll::-webkit-scrollbar {
    display: none;
}

.gallery-item {
    flex: 0 0 450px;
    aspect-ratio: 16/10;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: var(--shadow-premium);
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* FAQ Accordion */
.faq-section {
    padding: 10rem 0;
    background: var(--bg-light);
}

.faq-container {
    max-width: 800px;
    margin: 5rem auto 0;
}

.faq-item {
    background: white;
    border-radius: 12px;
    margin-bottom: 1rem;
    overflow: hidden;
    border: 1px solid rgba(0, 0, 0, 0.03);
}

.faq-question {
    padding: 1.5rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    font-weight: 700;
    color: var(--navy);
}

.faq-answer {
    padding: 0 2rem 1.5rem;
    color: var(--text-muted);
    font-size: 0.95rem;
    line-height: 1.6;
    display: none;
}

.faq-item.active .faq-answer {
    display: block;
}

.faq-toggle {
    transition: transform 0.3s ease;
}

.faq-item.active .faq-toggle {
    transform: rotate(45deg);
}

@media (max-width: 1024px) {
    .overview-grid {
        grid-template-columns: 1fr;
        gap: 4rem;
    }

    .feature-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .stat-strip {
        flex-wrap: wrap;
    }
}

@media (max-width: 768px) {
    .feature-grid {
        grid-template-columns: 1fr;
    }

    .gallery-item {
        flex: 0 0 300px;
    }

    .service-detail-hero .btn-group {
        flex-direction: column;
    }
}

/* ---- PORTFOLIO PAGE ---- */
.portfolio-body {
    background: #060F1A;
    color: white;
}

/* Hero Section with Grain */
.portfolio-hero {
    background: var(--navy);
    padding: 100px 0 80px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.portfolio-hero::after {
    content: "";
    position: absolute;
    inset: 0;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noiseFilter'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.65' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noiseFilter)'/%3E%3C/svg%3E");
    opacity: 0.05;
    pointer-events: none;
}

.hero-glow {
    position: absolute;
    width: 60vw;
    height: 60vw;
    background: radial-gradient(circle, rgba(0, 81, 186, 0.2) 0%, transparent 70%);
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    filter: blur(80px);
    animation: drift 20s infinite alternate;
}

@keyframes drift {
    0% {
        transform: translate(-50%, -50%) scale(1);
    }

    100% {
        transform: translate(-45%, -55%) scale(1.2);
    }
}

.hero-editorial {
    font-size: clamp(2.5rem, 6vw, 4rem);
    /* Reduced from clamp(4rem, 10vw, 8rem) */
    line-height: 0.9;
    margin-bottom: 2rem;
    z-index: 1;
}

.hero-editorial span {
    font-style: italic;
    font-weight: 400;
}



/* Filter Bar */
.filter-bar {
    background: rgba(10, 37, 64, 0.85);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    padding: 1rem 0;
}

.filter-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.filter-tabs {
    display: flex;
    gap: 1rem;
}

.filter-tab {
    padding: 0.8rem 1.5rem;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 700;
    color: rgba(255, 255, 255, 0.6);
    border: 1px solid transparent;
    transition: var(--transition);
}

.filter-tab:hover {
    color: white;
}

.filter-tab.active {
    background: var(--orange);
    color: white;
}

/* Portfolio Grid (Masonry Simulate) */
.portfolio-container {
    padding: 6rem 0;
}

.portfolio-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-auto-rows: 300px;
    gap: 1.5rem;
}

.portfolio-item {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    background: var(--navy);
    transition: transform 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.portfolio-item.size-large {
    grid-column: span 2;
    grid-row: span 2;
}

.portfolio-item.size-tall {
    grid-row: span 2;
}

.portfolio-item:hover {
    transform: scale(1.02);
    z-index: 10;
    box-shadow: 0 0 0 1px rgba(255, 107, 26, 0.4), var(--shadow-luxury);
}

.portfolio-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.portfolio-item:hover .portfolio-img {
    transform: scale(1.1);
}

.portfolio-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(6, 15, 26, 0.95), transparent);
    padding: 2.5rem;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.4s ease;
}

.portfolio-item:hover .portfolio-overlay {
    opacity: 1;
    transform: translateY(0);
}

.portfolio-item .badge {
    background: var(--orange);
    color: white;
    padding: 0.4rem 1rem;
    border-radius: 50px;
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    display: inline-block;
    margin-bottom: 1rem;
}

.portfolio-item h3 {
    font-size: 1.8rem;
    margin-bottom: 0.5rem;
    color: white;
}

.portfolio-meta {
    display: flex;
    gap: 1.5rem;
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.6);
    margin-bottom: 1.5rem;
}

/* Banner Card */
.banner-card {
    grid-column: 1 / -1;
    height: 400px;
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 4rem;
    position: relative;
    border-top: 1px solid var(--orange);
    border-bottom: 1px solid var(--orange);
}

.banner-card::before {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(6, 15, 26, 0.7);
}

.banner-card h2 {
    font-size: 2.5rem;
    font-style: italic;
    max-width: 800px;
    z-index: 1;
}

.banner-card p {
    margin-top: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    font-size: 0.8rem;
    z-index: 1;
    color: var(--orange);
}


/* Lightbox */
/* Lightbox Redesign */
.lightbox {
    position: fixed;
    inset: 0;
    z-index: 3000;
    background: rgba(6, 15, 26, 0.98);
    backdrop-filter: blur(25px);
    display: none;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.lightbox.active {
    display: block;
    opacity: 1;
}

.lb-container {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    height: 100vh;
    width: 100%;
}

.lb-media {
    background: #000;
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.lb-main-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    animation: lbImgScale 20s infinite alternate;
}

@keyframes lbImgScale {
    from {
        transform: scale(1);
    }

    to {
        transform: scale(1.1);
    }
}

.lb-details {
    background: rgba(255, 255, 255, 0.01);
    border-left: 1px solid rgba(255, 255, 255, 0.05);
    padding: 6rem 5rem 4rem;
    overflow-y: auto;
    position: relative;
}

.lb-content-inner {
    max-width: 600px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    min-height: 100%;
    gap: 2.5rem;
}

.lb-header .badge {
    background: var(--orange);
    color: white;
    padding: 0.5rem 1.2rem;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.lb-header h2 {
    font-family: var(--font-serif);
    font-size: clamp(2.5rem, 5vw, 4rem);
    line-height: 1.1;
    margin: 1.5rem 0 0.5rem;
    color: white;
}

.lb-meta {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.5);
    letter-spacing: 0.05em;
}

.lb-description {
    font-size: 1.15rem;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.8);
}

.lb-stats-strip {
    display: flex;
    justify-content: space-between;
    padding: 2rem 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.lb-stat-item label {
    display: block;
    font-size: 0.7rem;
    text-transform: uppercase;
    color: var(--orange);
    letter-spacing: 0.15em;
    font-weight: 800;
    margin-bottom: 0.5rem;
}

.lb-stat-item span {
    font-size: 1.3rem;
    font-weight: 700;
    color: white;
}

.lb-features-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
}

.lb-feature-item {
    background: rgba(255, 255, 255, 0.03);
    padding: 1rem 1.5rem;
    border-radius: 12px;
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.9);
    border-left: 3px solid var(--orange);
    display: flex;
    align-items: center;
}

.lb-quote-card {
    background: rgba(255, 255, 255, 0.02);
    padding: 2.5rem;
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    position: relative;
}

.lb-quote-card::before {
    content: '"';
    position: absolute;
    top: 1rem;
    left: 1.5rem;
    font-size: 5rem;
    font-family: var(--font-serif);
    color: var(--orange);
    opacity: 0.2;
    line-height: 1;
}

.lb-quote-card p {
    font-style: italic;
    font-size: 1.2rem;
    line-height: 1.6;
    color: white;
    position: relative;
    z-index: 1;
}

.lb-quote-card cite {
    display: block;
    margin-top: 1.5rem;
    color: var(--orange);
    font-weight: 700;
    font-style: normal;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    font-size: 0.85rem;
}

.lb-footer-cta {
    margin-top: auto;
    padding-top: 2rem;
}

.lb-close {
    position: absolute;
    top: 2.5rem;
    right: 2.5rem;
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: white;
    cursor: pointer;
    z-index: 3100;
    transition: all 0.3s ease;
}

.lb-close:hover {
    background: var(--orange);
    transform: rotate(90deg);
}

@media (max-width: 1200px) {
    .lb-details {
        padding: 4rem 3rem;
    }
}

@media (max-width: 1024px) {
    .lb-container {
        grid-template-columns: 1fr;
    }

    .lb-media {
        height: 50vh;
    }

    .lb-details {
        height: auto;
        overflow: visible;
    }
}

@media (max-width: 600px) {
    .lb-stats-strip {
        flex-direction: column;
        gap: 1.5rem;
    }

    .lb-features-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 1024px) {
    .lightbox {
        grid-template-columns: 1fr;
    }

    .lightbox-details {
        padding: 3rem;
    }

    .portfolio-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .portfolio-grid {
        grid-template-columns: 1fr;
    }

    .filter-tabs {
        display: flex;
        overflow-x: auto;
        white-space: nowrap;
        padding-bottom: 1rem;
        -webkit-overflow-scrolling: touch;
        gap: 0.5rem;
    }

    .filter-tab {
        flex: 0 0 auto;
    }

    .footer-col li {
        color: rgba(255, 255, 255, 0.7) !important;
    }

    .footer-dot {
        display: none !important;
    }

    /* Cookie Banner Stacked */
    .cookie-banner {
        flex-direction: column;
        align-items: flex-start;
        padding: 16px 20px;
        gap: 16px;
    }

    .cookie-text {
        margin-right: 0;
    }

    .cookie-buttons {
        width: 100%;
        display: flex;
        justify-content: flex-end;
    }

}

@keyframes whatsapp-pulse {
    0% {
        transform: scale(1);
        opacity: 0.6;
    }

    100% {
        transform: scale(1.4);
        opacity: 0;
    }
}

/* --- OVERRIDES --- */
@media (max-width: 768px) {
    .hero .btn-primary {
        display: block;
        width: 100%;
        text-align: center;
        padding: 18px 24px;
        font-size: 13px;
        box-sizing: border-box;
        animation: mobilePulse 2.5s ease-in-out infinite;
    }

    .testimonials-home,
    .services-strip,
    .ba-section,
    .blog-preview {
        padding-top: 56px;
        padding-bottom: 56px;
    }

    .compliance-section,
    .services-hero,
    .contact-hero {
        padding-top: 7rem;
        padding-bottom: 4rem;
    }

    .about-content-section,
    .services-process,
    .portfolio-hero,
    .contact-info-section,
    .contact-form-section,
    .quote-hero,
    .faq-section,
    .gallery-strip {
        padding-bottom: 4rem;
    }

    @keyframes mobilePulse {
        0% {
            box-shadow: 0 8px 30px rgba(255, 107, 26, 0.45);
        }

        50% {
            box-shadow: 0 8px 45px rgba(255, 107, 26, 0.75);
        }

        100% {
            box-shadow: 0 8px 30px rgba(255, 107, 26, 0.45);
        }
    }
}

/* --- HERO PREMIUM BOX --- */
.hero-premium-box {
    background: transparent;
    border: none;
    padding: 3.5rem 5rem;
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
    opacity: 0;
    transform: scale(0.9);
    animation: boxReveal 1s ease forwards 0.3s;
}

.hero-slides {
    position: relative;
    min-height: 340px;
    display: flex;
    justify-content: center;
}

.hero-slide {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%) translateY(10px);
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    width: max-content;
    max-width: 100vw;
    opacity: 0;
    transition: opacity 0.8s ease, transform 0.8s ease;
    pointer-events: none;
}

.hero-slide.active {
    opacity: 1;
    transform: translateX(-50%) translateY(0);
    pointer-events: auto;
}

.hero-premium-title {
    font-family: var(--font-heading, 'Playfair Display', serif);
    font-size: 4.5rem;
    font-weight: 900;
    color: white;
    margin: 0 0 0.5rem;
    line-height: 1.1;
    white-space: nowrap;
    text-align: center;
    text-shadow: 0 2px 20px rgba(0, 0, 0, 0.6);
}

.hero-premium-sub {
    font-size: 1.2rem;
    font-weight: 700;
    color: white;
    text-transform: uppercase;
    letter-spacing: 0.25em;
    margin: 0 0 1.5rem;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
}

.hero-premium-divider {
    width: 80px;
    height: 3px;
    background: var(--orange);
    margin: 0 auto 1.5rem;
}

.hero-premium-price {
    font-size: 0.95rem;
    font-weight: 700;
    color: white;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    margin: 0 0 0.3rem;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
}

.hero-premium-amount {
    font-family: var(--font-heading, 'Playfair Display', serif);
    font-size: 4rem;
    font-weight: 900;
    color: white;
    margin: 0 0 1.5rem;
    line-height: 1;
    text-shadow: 0 2px 20px rgba(0, 0, 0, 0.6);
}

.hero-premium-cta {
    display: inline-block;
    background: var(--orange);
    color: white;
    font-size: 1rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    padding: 1rem 3rem;
    border-radius: 50px;
    text-decoration: none;
    transition: background 0.3s ease, transform 0.2s ease;
}

.hero-premium-cta:hover {
    background: #e85d10;
    transform: translateY(-2px);
}

.hero-premium-licensed {
    font-size: 0.8rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.8);
    margin: 1rem 0 0;
    letter-spacing: 0.05em;
    text-shadow: 0 1px 8px rgba(0, 0, 0, 0.5);
}

@keyframes boxReveal {
    0% {
        opacity: 0;
        transform: scale(0.9);
    }
    60% {
        opacity: 1;
        transform: scale(1.02);
    }
    100% {
        opacity: 1;
        transform: scale(1);
    }
}

@media (max-width: 768px) {
    .hero-premium-box {
        padding: 2rem 1rem;
        max-width: 100%;
        margin: 0 0.5rem;
    }
    .hero-slides {
        min-height: 200px;
    }
    .hero-premium-title {
        font-size: 2rem;
        white-space: nowrap;
    }
    .hero-premium-amount {
        font-size: 2rem;
    }
    .hero-premium-sub {
        font-size: 0.7rem;
        white-space: nowrap;
    }
    .hero-premium-price {
        font-size: 0.75rem;
    }
    .hero-premium-licensed {
        font-size: 0.65rem;
    }
}

/* --- SERVICE PRICE STATIC --- */
.service-price-static {
    color: var(--orange);
    font-size: 1.2em;
    font-weight: 800;
}

/* --- SERVICE CARD PRICE SHINE --- */
.service-price {
    background: linear-gradient(to right,
            #FF6B1A 0%,
            #FFB800 40%,
            #ffffff 50%,
            #FFB800 60%,
            #FF6B1A 100%);
    background-size: 200% auto;
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    animation: priceShine 2.5s linear infinite;
    font-size: 1.2em;
    font-weight: 800;
    display: inline-block;
}

@keyframes priceShine {
    0% {
        background-position: 200% center;
    }

    100% {
        background-position: -200% center;
    }
}

/* --- ABOUT PAGE UPGRADES --- */
.values-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.value-card {
    background: #0A2540;
    border-radius: 16px;
    padding: 32px 24px;
    border-left: 3px solid #FF6B1A;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
}

.value-icon {
    width: 56px;
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 107, 26, 0.1);
    border: 1px solid rgba(255, 107, 26, 0.25);
    border-radius: 14px;
    margin-bottom: 1.25rem;
}

.value-title {
    color: #FF6B1A;
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
    font-family: var(--font-sans);
}

.value-text {
    color: white;
    font-size: 0.95rem;
    line-height: 1.6;
}

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

.stat-block {
    position: relative;
}

.stat-block:not(:last-child)::after {
    content: '';
    position: absolute;
    right: -1rem;
    top: 50%;
    transform: translateY(-50%);
    width: 1px;
    height: 60px;
    background: rgba(0, 0, 0, 0.1);
}

.stat-number {
    margin-bottom: 0.5rem;
}

.stat-override {
    font-size: 3rem !important;
}

.stat-label {
    color: var(--navy);
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    font-weight: 700;
}

@media (max-width: 768px) {
    .values-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 3rem 1rem;
    }

    .stat-block:not(:last-child)::after {
        display: none;
    }

    .stat-block:nth-child(odd)::after {
        content: '';
        position: absolute;
        right: -0.5rem;
        top: 50%;
        transform: translateY(-50%);
        width: 1px;
        height: 50px;
        background: rgba(0, 0, 0, 0.1);
        display: block;
    }
}

.about-legacy-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    margin-top: 3rem;
}

.about-value-card {
    background: #0A2540;
    border-radius: 16px;
    padding: 32px 28px;
    border-left: 3px solid #FF6B1A;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.15);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.about-value-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 16px 48px rgba(255, 107, 26, 0.2);
}

.about-value-card h3 {
    color: #FF6B1A;
    font-size: 18px;
    font-weight: 800;
    letter-spacing: 0.05em;
    margin-bottom: 12px;
}

.about-value-card p {
    color: rgba(255, 255, 255, 0.75);
    font-size: 14px;
    line-height: 1.7;
}

.engineering-section {
    padding: 6rem 0;
    background: var(--bg-light);
}

.quote-section {
    padding: 6rem 0;
    text-align: center;
    background: var(--white);
}

@media (max-width: 768px) {
    .about-legacy-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .about-value-card {
        width: 100%;
        margin-bottom: 16px;
    }

    .legacy-card {
        background: white;
        padding: 24px;
        border-radius: 12px;
        box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
        border: 1px solid rgba(0, 0, 0, 0.05);
    }

    .engineering-section,
    .quote-section {
        padding: 4rem 1.5rem;
    }
}

@media (max-width: 768px) {

    .service-detail-hero,
    .blog-hero,
    .portfolio-hero,
    [class*='-hero'] {
        padding-top: 130px !important;
        padding-bottom: 60px !important;
        text-align: center !important;
    }
}

/* --- MOBILE FILTER BAR SCROLL --- */
@media (max-width: 768px) {
    .filter-bar {
        overflow-x: auto;
        flex-wrap: nowrap;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none;
        padding-bottom: 4px;
        justify-content: flex-start;
    }

    .filter-bar::-webkit-scrollbar {
        display: none;
    }

    .filter-bar button {
        flex-shrink: 0;
        white-space: nowrap;
    }
}

/* --- MOBILE PORTFOLIO CONSTRAINTS --- */
@media (max-width: 768px) {
    .portfolio-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .portfolio-item,
    .portfolio-item.size-large,
    .portfolio-item.size-tall {
        height: 280px !important;
        min-height: 280px !important;
        grid-column: span 1 !important;
        grid-row: span 1 !important;
        overflow: hidden !important;
    }

    .portfolio-item .portfolio-img,
    .portfolio-item img {
        height: 100% !important;
        object-fit: cover !important;
    }
}

/* --- PREMIUM PROCESS STRIP --- */
.process-strip-new {
    background: #0A2540;
    padding: 80px 48px;
    overflow: hidden;
    border-top: 1px solid rgba(255, 107, 26, 0.4);
    border-bottom: 1px solid rgba(255, 107, 26, 0.4);
    position: relative;
}

.process-strip-new::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(to right, transparent, #FF6B1A, transparent);
}

.process-strip-new::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(to right, transparent, #FF6B1A, transparent);
}

.process-eyebrow {
    text-align: center;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.3em;
    color: #FF6B1A;
    margin-bottom: 48px;
}

.process-steps-new {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0;
    position: relative;
}

.process-step-new {
    position: relative;
    padding: 0 24px;
    opacity: 0;
    transform: translateY(30px);
    animation: processReveal 0.6s ease forwards;
}

.process-step-new:nth-child(1) {
    animation-delay: 0.1s;
}

.process-step-new:nth-child(2) {
    animation-delay: 0.3s;
}

.process-step-new:nth-child(3) {
    animation-delay: 0.5s;
}

.process-step-new:nth-child(4) {
    animation-delay: 0.7s;
}

@keyframes processReveal {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.process-step-number {
    font-size: 56px;
    font-weight: 800;
    background: linear-gradient(to right, #FF6B1A 0%, #FFB800 40%, #ffffff 50%, #FFB800 60%, #FF6B1A 100%);
    background-size: 200% auto;
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    animation: priceShine 3s linear infinite;
    line-height: 1;
    margin-bottom: 16px;
}

.process-step-line {
    width: 40px;
    height: 2px;
    background: #FF6B1A;
    margin-bottom: 16px;
    position: relative;
    overflow: hidden;
}

.process-step-line::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: #ffffff;
    animation: lineSweep 2s ease-in-out infinite;
}

.process-step-new:nth-child(2) .process-step-line::after {
    animation-delay: 0.5s;
}

.process-step-new:nth-child(3) .process-step-line::after {
    animation-delay: 1s;
}

.process-step-new:nth-child(4) .process-step-line::after {
    animation-delay: 1.5s;
}

@keyframes lineSweep {
    0% {
        left: -100%;
    }

    50% {
        left: 100%;
    }

    100% {
        left: 100%;
    }
}

.process-step-content h4 {
    color: #ffffff;
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 8px;
    letter-spacing: 0.02em;
}

.process-step-content p {
    color: rgba(255, 255, 255, 0.75);
    font-size: 15px;
    line-height: 1.7;
}

@media (max-width: 768px) {
    .process-strip-new {
        padding: 56px 24px;
    }

    .process-steps-new {
        grid-template-columns: 1fr 1fr;
        gap: 40px 24px;
    }

    .process-step-new {
        padding: 0;
    }

    .process-step-number {
        font-size: 36px;
    }
}