/*
Theme Name: True Exterior Cleaning Theme
Theme URI: https://www.trueexteriorcleaning.co.uk
Author: True Exterior Cleaning
Author URI: https://www.trueexteriorcleaning.co.uk
Description: Custom theme for True Exterior Cleaning - professional exterior cleaning services.
Version: 1.0.0
Text Domain: true-exterior-cleaning
*/

/* ============================================
   CSS RESET & BASE
   ============================================ */

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

html {
    font-size: 16px;
    scroll-behavior: smooth;
    -webkit-text-size-adjust: 100%;
}

body {
    font-family: 'Zain', sans-serif;
    color: #111111;
    background-color: #ffffff;
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    text-decoration: none;
    color: inherit;
    transition: color 0.3s ease;
}

ul, ol {
    list-style: none;
}

button {
    font-family: inherit;
    cursor: pointer;
    border: none;
    background: none;
}

/* ============================================
   CSS CUSTOM PROPERTIES (BRAND TOKENS)
   ============================================ */

:root {
    --color-white: #ffffff;
    --color-black: #111111;
    --color-gold: #C8A84E;
    --color-gold-light: #D4BA6A;
    --color-gold-dark: #B08F3A;
    --color-grey-light: #f5f5f5;
    --color-grey-mid: #e0e0e0;
    --color-grey-dark: #333333;
    --font-primary: 'Zain', sans-serif;
    --section-padding: 80px 0;
    --container-width: 1200px;
    --container-padding: 0 24px;
    --content-narrow-width: 680px;
    --content-copy-width: 560px;
    --header-height: 92px;
    --transition-fast: 0.2s ease;
    --transition-base: 0.3s ease;
    --transition-slow: 0.5s ease;
    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.08);
    --shadow-md: 0 4px 16px rgba(0, 0, 0, 0.12);
    --shadow-lg: 0 8px 32px rgba(0, 0, 0, 0.16);
}

/* ============================================
   LAYOUT UTILITIES
   ============================================ */

.container {
    width: 100%;
    max-width: var(--container-width);
    margin: 0 auto;
    padding: var(--container-padding);
}

.section {
    padding: var(--section-padding);
}

/* ============================================
   TYPOGRAPHY
   ============================================ */

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-primary);
    font-weight: 700;
    line-height: 1.2;
    color: var(--color-black);
}

h1 { font-size: clamp(2rem, 5vw, 3.5rem); }
h2 { font-size: clamp(1.6rem, 4vw, 2.5rem); }
h3 { font-size: clamp(1.3rem, 3vw, 1.75rem); }
h4 { font-size: clamp(1.1rem, 2.5vw, 1.25rem); }

p {
    font-size: 1rem;
    line-height: 1.7;
    color: var(--color-grey-dark);
}

/* ============================================
   BUTTONS
   ============================================ */

.btn {
    display: inline-block;
    padding: 14px 32px;
    font-family: var(--font-primary);
    font-size: 0.95rem;
    font-weight: 600;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    border-radius: 4px;
    transition: all var(--transition-base);
    cursor: pointer;
    text-align: center;
}

.btn-primary {
    background-color: var(--color-gold);
    color: var(--color-white);
    border: 2px solid var(--color-gold);
}

.btn-primary:hover {
    background-color: var(--color-gold-dark);
    border-color: var(--color-gold-dark);
}

.btn-outline {
    background-color: transparent;
    color: var(--color-white);
    border: 2px solid var(--color-white);
}

.btn-outline:hover {
    background-color: var(--color-white);
    color: var(--color-black);
}

.btn-dark {
    background-color: var(--color-black);
    color: var(--color-white);
    border: 2px solid var(--color-black);
}

.btn-dark:hover {
    background-color: transparent;
    color: var(--color-black);
}

/* ============================================
   SITE HEADER
   ============================================ */

.site-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: var(--header-height);
    z-index: 1000;
    background-color: var(--color-black);
    transition: background-color var(--transition-base), box-shadow var(--transition-base);
}

.site-header.scrolled {
    box-shadow: var(--shadow-md);
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: var(--header-height);
}

.site-logo {
    flex-shrink: 0;
}

.site-logo img {
    height: auto;
    width: 320px;
    max-height: 72px;
}

.site-logo-text {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--color-white);
    letter-spacing: 1px;
    text-transform: uppercase;
    white-space: nowrap;
}

.site-logo-text span {
    color: var(--color-gold);
}

/* ============================================
   DESKTOP NAVIGATION (visible above 768px)
   ============================================ */

.desktop-nav {
    display: flex;
    align-items: center;
}

.desktop-nav-menu {
    display: flex;
    align-items: center;
    gap: 36px;
}

.desktop-nav-menu li {
    position: relative;
}

.desktop-nav-menu a {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--color-white);
    text-transform: uppercase;
    letter-spacing: 1.5px;
    padding: 8px 0;
    transition: color var(--transition-base);
    position: relative;
}

.desktop-nav-menu a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--color-gold);
    transition: width var(--transition-base);
}

.desktop-nav-menu a:hover,
.desktop-nav-menu a:focus {
    color: var(--color-gold);
}

.desktop-nav-menu a:hover::after,
.desktop-nav-menu a:focus::after {
    width: 100%;
}

.desktop-nav-menu .current-menu-item a {
    color: var(--color-gold);
}

.desktop-nav-menu .current-menu-item a::after {
    width: 100%;
}

/* Spacer not needed */
.header-spacer {
    display: none;
}

/* ============================================
   HAMBURGER MENU BUTTON
   ============================================ */

.hamburger {
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 44px;
    height: 44px;
    padding: 0;
    background: none;
    border: none;
    cursor: pointer;
    z-index: 1100;
    position: relative;
}

.hamburger-line {
    display: block;
    width: 28px;
    height: 2px;
    background-color: var(--color-white);
    transition: all var(--transition-base);
    position: absolute;
}

.hamburger-line:nth-child(1) {
    transform: translateY(-8px);
}

.hamburger-line:nth-child(2) {
    transform: translateY(0);
}

.hamburger-line:nth-child(3) {
    transform: translateY(8px);
}

/* Hamburger active state - X shape */
.hamburger.active .hamburger-line:nth-child(1) {
    transform: rotate(45deg);
}

.hamburger.active .hamburger-line:nth-child(2) {
    opacity: 0;
}

.hamburger.active .hamburger-line:nth-child(3) {
    transform: rotate(-45deg);
}

/* ============================================
   MOBILE NAVIGATION PANEL (slide-in from right)
   ============================================ */

.nav-backdrop {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.6);
    z-index: 1040;
    opacity: 0;
    visibility: hidden;
    transition: opacity var(--transition-base), visibility var(--transition-base);
}

.nav-backdrop.open {
    opacity: 1;
    visibility: visible;
}

.mobile-nav {
    position: fixed;
    top: 0;
    right: 0;
    width: 280px;
    max-width: 80vw;
    height: 100%;
    background-color: #0a0a0a;
    z-index: 1060;
    transform: translateX(100%);
    transition: transform var(--transition-slow);
    display: flex;
    flex-direction: column;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
}

.mobile-nav.open {
    transform: translateX(0);
}

.mobile-nav-header {
    display: flex;
    justify-content: flex-end;
    padding: 24px 24px 16px;
}

.mobile-nav-close {
    width: 40px;
    height: 40px;
    position: relative;
    background: none;
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 50%;
    cursor: pointer;
    transition: border-color var(--transition-base);
}

.mobile-nav-close:hover {
    border-color: var(--color-gold);
}

.mobile-nav-close span {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 18px;
    height: 2px;
    background-color: var(--color-white);
    transition: background-color var(--transition-base);
}

.mobile-nav-close span:first-child {
    transform: translate(-50%, -50%) rotate(45deg);
}

.mobile-nav-close span:last-child {
    transform: translate(-50%, -50%) rotate(-45deg);
}

.mobile-nav-close:hover span {
    background-color: var(--color-gold);
}

.mobile-nav-content {
    flex: 1;
    padding: 16px 32px;
}

.nav-menu {
    text-align: left;
}

.nav-menu li {
    margin-bottom: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.nav-menu a {
    display: block;
    font-size: 1rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.7);
    text-transform: uppercase;
    letter-spacing: 2px;
    padding: 16px 0;
    transition: color var(--transition-base), padding-left var(--transition-base);
}

.nav-menu a:hover,
.nav-menu a:focus {
    color: var(--color-gold);
    padding-left: 8px;
}

.nav-menu .current-menu-item a {
    color: var(--color-gold);
}

.mobile-nav-footer {
    padding: 24px 32px 32px;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.mobile-nav-email {
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.4);
    letter-spacing: 0.5px;
    transition: color var(--transition-base);
}

.mobile-nav-email:hover {
    color: var(--color-gold);
}

.mobile-nav-actions {
    display: flex;
    gap: 12px;
    margin-top: 16px;
}

.mobile-nav-action {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: rgba(255, 255, 255, 0.62);
    font-size: 0.82rem;
    transition: color var(--transition-base), border-color var(--transition-base);
    border: 1px solid rgba(200, 168, 78, 0.18);
    border-radius: 999px;
    padding: 10px 14px;
}

.mobile-nav-action:hover,
.mobile-nav-action:focus-visible {
    color: var(--color-gold);
    border-color: rgba(200, 168, 78, 0.4);
}

/* ============================================
   HERO SECTION
   ============================================ */

.hero {
    position: relative;
    min-height: clamp(620px, 82vh, 760px);
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    background-color: var(--color-black);
    padding: 132px 0 96px;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 200%;
    height: 200%;
    background: radial-gradient(ellipse at 20% 50%, rgba(200, 168, 78, 0.04) 0%, transparent 50%),
                radial-gradient(ellipse at 80% 20%, rgba(255, 255, 255, 0.02) 0%, transparent 40%),
                radial-gradient(ellipse at 60% 80%, rgba(200, 168, 78, 0.03) 0%, transparent 45%),
                radial-gradient(ellipse at 40% 30%, rgba(100, 80, 40, 0.04) 0%, transparent 50%);
    animation: heroShift 20s ease-in-out infinite alternate;
    z-index: 0;
    pointer-events: none;
}

@keyframes heroShift {
    0% {
        transform: translate(0%, 0%);
    }
    25% {
        transform: translate(-10%, -5%);
    }
    50% {
        transform: translate(-5%, -10%);
    }
    75% {
        transform: translate(-15%, -3%);
    }
    100% {
        transform: translate(-8%, -8%);
    }
}

.hero-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -55%);
    width: 700px;
    height: 500px;
    background: radial-gradient(ellipse at center, rgba(200, 168, 78, 0.07) 0%, rgba(200, 168, 78, 0.03) 30%, transparent 65%);
    z-index: 1;
    pointer-events: none;
}

.hero-particles {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    width: 100%;
    max-width: 1120px;
    margin: 0 auto;
    padding: var(--container-padding);
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.hero-content > :not(.hero-buttons),
.about-hero-content > * {
    width: 100%;
    text-align: center;
}

.hero-title {
    color: var(--color-white);
    margin-bottom: 16px;
    font-size: clamp(2.2rem, 6vw, 4rem);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    animation: heroFadeUp 0.8s ease forwards;
    opacity: 0;
}

.hero-title span {
    color: var(--color-gold);
}

.hero-subtitle {
    color: rgba(255, 255, 255, 0.85);
    font-size: clamp(1rem, 2.5vw, 1.25rem);
    margin-bottom: 32px;
    font-weight: 400;
    line-height: 1.6;
    max-width: 860px;
    margin-left: auto;
    margin-right: auto;
    text-wrap: balance;
    animation: heroFadeUp 0.8s ease 0.3s forwards;
    opacity: 0;
}

.hero-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
    animation: heroFadeUp 0.8s ease 0.6s forwards;
    opacity: 0;
}

@keyframes heroFadeUp {
    from {
        opacity: 0;
        transform: translateY(24px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.btn-hero-primary,
.btn-hero-secondary {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 250px;
    height: 100px;
    background: none;
    border: none;
    cursor: pointer;
    transition: transform var(--transition-base);
}

.btn-hero-primary:hover,
.btn-hero-secondary:hover {
    transform: scale(1.06);
}

.btn-splash-border {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

.btn-hero-primary .btn-splash-border path {
    transition: stroke var(--transition-base);
}

.btn-hero-primary:hover .btn-splash-border path {
    stroke: rgba(200, 168, 78, 1);
}

.btn-hero-secondary .btn-splash-border path {
    transition: stroke var(--transition-base);
}

.btn-hero-secondary:hover .btn-splash-border path {
    stroke: rgba(255, 255, 255, 0.7);
}

.btn-splash-text {
    position: relative;
    z-index: 1;
    font-family: var(--font-primary);
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 1.5px;
    text-transform: uppercase;
}

.btn-hero-primary .btn-splash-text {
    color: var(--color-gold);
}

.btn-hero-primary:hover .btn-splash-text {
    color: var(--color-gold-light);
}

.btn-hero-secondary .btn-splash-text {
    color: rgba(255, 255, 255, 0.75);
}

.btn-hero-secondary:hover .btn-splash-text {
    color: var(--color-white);
}

/* ============================================
   SECTION DIVIDER
   ============================================ */

.section-divider {
    padding: 8px 0;
    text-align: center;
    background-color: var(--color-black);
}

.section-divider svg {
    display: block;
    margin: 0 auto;
    width: 100%;
    max-width: var(--content-narrow-width);
}

.section-heading-stack {
    width: 100%;
    max-width: var(--content-narrow-width);
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

/* ============================================
   FADE-IN SCROLL ANIMATION
   ============================================ */

.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.7s ease, transform 0.7s ease;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

/* ============================================
   SERVICES SECTION
   ============================================ */

.services-section {
    background-color: var(--color-black);
    padding: 80px 0 72px;
    text-align: center;
}

.services-label {
    font-size: 0.8rem;
    color: var(--color-gold);
    letter-spacing: 3px;
    text-transform: uppercase;
    margin-bottom: 8px;
    font-weight: 600;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
}

.services-label::before,
.services-label::after {
    content: '';
    display: inline-block;
    width: 28px;
    height: 1.5px;
    background-color: var(--color-gold);
    opacity: 0.5;
}

.services-heading {
    color: var(--color-white);
    margin-bottom: 8px;
}

.services-subheading {
    color: rgba(255, 255, 255, 0.5);
    font-size: 1rem;
    margin-bottom: 56px;
    max-width: var(--content-copy-width);
    margin-left: auto;
    margin-right: auto;
}

.services-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 56px 80px;
    max-width: 1000px;
    margin: 0 auto 60px;
}

.service-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.splatter-frame {
    width: 280px;
    height: 280px;
    margin-bottom: 24px;
    transition: transform var(--transition-base);
}

.service-card:hover .splatter-frame {
    transform: scale(1.05);
}

.splatter-svg {
    width: 100%;
    height: 100%;
    display: block;
}

.splatter-outline {
    fill: #1a1a1a;
    stroke: rgba(200, 168, 78, 0.5);
    stroke-width: 1.5;
    transition: stroke var(--transition-base);
}

.service-card:hover .splatter-outline {
    stroke: rgba(200, 168, 78, 0.85);
}

.splatter-bubble {
    fill: none;
    stroke: rgba(200, 168, 78, 0.3);
    stroke-width: 1;
}

.splatter-bubble-sm {
    fill: none;
    stroke: rgba(200, 168, 78, 0.2);
    stroke-width: 0.8;
}

.service-card-title {
    color: var(--color-white);
    font-size: 1.3rem;
    margin-bottom: 8px;
}

.service-card-desc {
    color: rgba(255, 255, 255, 0.55);
    font-size: 0.92rem;
    line-height: 1.6;
    max-width: 290px;
    margin-bottom: 16px;
}

.btn-service {
    display: inline-block;
    padding: 7px 20px;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: var(--color-gold);
    background-color: transparent;
    border: 1px solid rgba(200, 168, 78, 0.4);
    border-radius: 4px;
    transition: all var(--transition-base);
}

.btn-service:hover {
    border-color: var(--color-gold);
    color: var(--color-white);
    background-color: rgba(200, 168, 78, 0.15);
}

.btn-arrow {
    display: inline-block;
    margin-left: 4px;
    font-size: 1.1em;
    transition: transform var(--transition-base);
    vertical-align: middle;
}

.btn-service:hover .btn-arrow {
    transform: translateX(3px);
}

.services-cta {
    text-align: center;
}

.btn-view-all {
    display: inline-block;
    padding: 14px 40px;
    font-size: 0.95rem;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: var(--color-black);
    background-color: var(--color-gold);
    border: 2px solid var(--color-gold);
    border-radius: 4px;
    transition: all var(--transition-base);
}

.btn-view-all:hover {
    background-color: var(--color-gold-light);
    border-color: var(--color-gold-light);
    color: var(--color-black);
}

/* ============================================
   TRUST BANNER SECTION
   ============================================ */

.trust-section {
    background-color: var(--color-black);
    padding: 72px 0;
    text-align: center;
}

.trust-label {
    font-size: 0.8rem;
    color: var(--color-gold);
    letter-spacing: 3px;
    text-transform: uppercase;
    margin-bottom: 8px;
    font-weight: 600;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
}

.trust-label::before,
.trust-label::after {
    content: '';
    display: inline-block;
    width: 28px;
    height: 1.5px;
    background-color: var(--color-gold);
    opacity: 0.5;
}

.trust-heading {
    color: var(--color-white);
    margin-bottom: 8px;
}

.trust-subheading {
    color: rgba(255, 255, 255, 0.5);
    font-size: 1rem;
    margin-bottom: 48px;
    max-width: var(--content-copy-width);
    margin-left: auto;
    margin-right: auto;
}

.trust-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
    max-width: 1080px;
    margin: 0 auto;
}

.trust-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.trust-icon {
    margin-bottom: 16px;
}

.trust-icon svg {
    display: block;
}

.trust-title {
    color: var(--color-white);
    font-size: 1.05rem;
    margin-bottom: 6px;
    line-height: 1.25;
}

.trust-desc {
    color: rgba(255, 255, 255, 0.45);
    font-size: 0.85rem;
    line-height: 1.6;
    max-width: 220px;
    margin: 0 auto;
}

/* ============================================
   CTA SECTION
   ============================================ */

.cta-section {
    background-color: var(--color-black);
    padding: 80px 0 88px;
    text-align: center;
}

.cta-inner {
    max-width: var(--content-narrow-width);
    margin: 0 auto;
}

.cta-label {
    font-size: 0.8rem;
    color: var(--color-gold);
    letter-spacing: 3px;
    text-transform: uppercase;
    margin-bottom: 8px;
    font-weight: 600;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
}

.cta-label::before,
.cta-label::after {
    content: '';
    display: inline-block;
    width: 28px;
    height: 1.5px;
    background-color: var(--color-gold);
    opacity: 0.5;
}

.cta-heading {
    color: var(--color-white);
    margin-bottom: 16px;
    font-size: clamp(1.6rem, 4vw, 2.4rem);
}

.cta-text {
    color: rgba(255, 255, 255, 0.6);
    font-size: 1rem;
    line-height: 1.7;
    margin-bottom: 36px;
    max-width: var(--content-copy-width);
    margin-left: auto;
    margin-right: auto;
}

.cta-buttons {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
}

.btn-cta-primary {
    display: inline-block;
    padding: 16px 48px;
    font-family: var(--font-primary);
    font-size: 1rem;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: var(--color-black);
    background-color: var(--color-gold);
    border: 2px solid var(--color-gold);
    border-radius: 4px;
    transition: all var(--transition-base);
}

.btn-cta-primary:hover {
    background-color: var(--color-gold-light);
    border-color: var(--color-gold-light);
    color: var(--color-black);
}

.btn-cta-secondary {
    display: inline-block;
    font-family: var(--font-primary);
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.5);
    letter-spacing: 0.5px;
    transition: color var(--transition-base);
    padding: 4px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.15);
}

.btn-cta-secondary:hover {
    color: var(--color-gold);
    border-bottom-color: var(--color-gold);
}

/* ============================================
   FOOTER
   ============================================ */

.site-footer {
    background-color: #0a0a0a;
    color: var(--color-white);
    padding: 0 0 0;
}

.footer-accent {
    padding: 8px 0;
    background-color: #0a0a0a;
    text-align: center;
}

.footer-accent svg {
    display: block;
    margin: 0 auto;
    max-width: 100%;
}

.footer-inner {
    display: grid;
    grid-template-columns: 1.4fr 1fr 1fr 1.2fr;
    gap: 48px;
    padding: 56px 0 48px;
}

.footer-col-brand {
    padding-right: 24px;
}

.footer-logo {
    display: inline-block;
    margin-bottom: 16px;
}

.footer-logo img {
    height: auto;
    width: 260px;
    max-height: 70px;
}

.footer-logo-text {
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--color-white);
    letter-spacing: 1px;
    text-transform: uppercase;
}

.footer-logo-text span {
    color: var(--color-gold);
}

.footer-tagline {
    color: rgba(255, 255, 255, 0.45);
    font-size: 0.85rem;
    line-height: 1.7;
}

.footer-socials {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 22px;
}

.footer-social-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: rgba(255, 255, 255, 0.62);
    font-size: 0.82rem;
    border: 1px solid rgba(200, 168, 78, 0.18);
    border-radius: 999px;
    padding: 10px 14px;
    transition: color var(--transition-base), border-color var(--transition-base), background-color var(--transition-base);
}

.footer-social-link:hover,
.footer-social-link:focus-visible {
    color: var(--color-gold);
    border-color: rgba(200, 168, 78, 0.4);
    background-color: rgba(255, 255, 255, 0.02);
}

.footer-col h4 {
    color: var(--color-gold);
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 20px;
    font-weight: 700;
    position: relative;
    padding-bottom: 12px;
}

.footer-col h4::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 24px;
    height: 2px;
    background-color: var(--color-gold);
    border-radius: 1px;
}

.footer-links {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.55);
    font-size: 0.88rem;
    transition: color var(--transition-base), padding-left var(--transition-base);
}

.footer-links a:hover {
    color: var(--color-gold);
    padding-left: 4px;
}

.footer-contact {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.footer-contact li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
}

.footer-icon {
    flex-shrink: 0;
    margin-top: 2px;
}

.footer-contact a,
.footer-contact span {
    color: rgba(255, 255, 255, 0.55);
    font-size: 0.88rem;
    line-height: 1.5;
}

.footer-contact a:hover {
    color: var(--color-gold);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    padding: 24px 0;
    text-align: center;
}

.footer-bottom p {
    color: rgba(255, 255, 255, 0.3);
    font-size: 0.78rem;
    letter-spacing: 0.5px;
}

.footer-credit {
    margin-top: 10px;
}

.footer-credit a {
    color: rgba(255, 255, 255, 0.42);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-credit a:hover,
.footer-credit a:focus-visible {
    color: var(--color-gold);
}

/* ============================================
   BODY OFFSET FOR FIXED HEADER
   ============================================ */

body {
    padding-top: var(--header-height);
}

/* ============================================
   SCREEN READER ONLY (ACCESSIBILITY)
   ============================================ */

.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    margin: -1px;
    padding: 0;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    border: 0;
}


/* ============================================
   ABOUT PAGE - HERO
   ============================================ */

.about-hero {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    background-color: var(--color-black);
    padding: 100px 24px 80px;
    overflow: hidden;
}

.about-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 200%;
    height: 200%;
    background: radial-gradient(ellipse at 30% 40%, rgba(200, 168, 78, 0.04) 0%, transparent 50%),
                radial-gradient(ellipse at 70% 60%, rgba(255, 255, 255, 0.02) 0%, transparent 40%);
    animation: heroShift 20s ease-in-out infinite alternate;
    z-index: 0;
    pointer-events: none;
}

.about-hero-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 600px;
    height: 400px;
    background: radial-gradient(ellipse at center, rgba(200, 168, 78, 0.06) 0%, rgba(200, 168, 78, 0.02) 35%, transparent 65%);
    z-index: 1;
    pointer-events: none;
}

.about-hero-splash {
    position: absolute;
    z-index: 1;
    pointer-events: none;
    opacity: 0.8;
}

.about-hero-splash-tr {
    top: -20px;
    right: -30px;
    width: 220px;
    height: 220px;
}

.about-hero-splash-bl {
    bottom: -15px;
    left: -20px;
    width: 170px;
    height: 170px;
}

.about-hero-content {
    position: relative;
    z-index: 2;
    width: 100%;
    max-width: var(--content-narrow-width);
    margin: 0 auto;
    padding: var(--container-padding);
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.about-hero-label {
    font-size: 0.8rem;
    color: var(--color-gold);
    letter-spacing: 3px;
    text-transform: uppercase;
    margin-bottom: 12px;
    font-weight: 600;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    animation: heroFadeUp 0.8s ease forwards;
    opacity: 0;
}

.about-hero-label::before,
.about-hero-label::after {
    content: '';
    display: inline-block;
    width: 28px;
    height: 1.5px;
    background-color: var(--color-gold);
    opacity: 0.5;
}

.about-hero-title {
    color: var(--color-white);
    font-size: clamp(2rem, 5.5vw, 3.2rem);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 16px;
    line-height: 1.15;
    text-wrap: balance;
    animation: heroFadeUp 0.8s ease 0.2s forwards;
    opacity: 0;
}

.about-hero-title span {
    color: var(--color-gold);
}

.about-hero-subtitle {
    color: rgba(255, 255, 255, 0.65);
    font-size: clamp(1rem, 2.2vw, 1.15rem);
    line-height: 1.7;
    max-width: var(--content-copy-width);
    margin: 0 auto;
    text-wrap: balance;
    animation: heroFadeUp 0.8s ease 0.4s forwards;
    opacity: 0;
}

/* ============================================
   ABOUT PAGE - WHAT WE DO
   ============================================ */

.about-story {
    background-color: var(--color-black);
    padding: 80px 0;
}

.about-story-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 72px;
    align-items: center;
    max-width: 1050px;
    margin: 0 auto;
}

.about-story-image {
    position: relative;
}

.about-image-frame {
    position: relative;
    width: 100%;
    aspect-ratio: 4 / 5;
    max-width: 400px;
    margin: 0 auto;
    overflow: visible;
}

.about-image-placeholder {
    width: 100%;
    height: 100%;
    background-color: #1a1a1a;
    border: 1px solid rgba(200, 168, 78, 0.2);
    border-radius: 4px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 12px;
}

.about-image-placeholder .placeholder-text {
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.2);
    text-transform: uppercase;
    letter-spacing: 2px;
}

.about-image-frame img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 4px;
    display: block;
}

/* ============================================
   BEFORE / AFTER COMPARISON SLIDER
   ============================================ */

.ba-slider {
    position: relative;
    width: 100%;
    height: 100%;
    overflow: hidden;
    border-radius: 4px;
    cursor: ew-resize;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    touch-action: pan-y;
}

.ba-after {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 4px;
}

.ba-before-wrap {
    position: absolute;
    top: 0;
    left: 0;
    width: 50%;
    height: 100%;
    overflow: hidden;
    z-index: 2;
}

.ba-before {
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    object-fit: cover;
    border-radius: 4px 0 0 4px;
    max-width: none;
}

.ba-handle {
    position: absolute;
    top: 0;
    left: 50%;
    width: 2px;
    height: 100%;
    z-index: 4;
    display: flex;
    flex-direction: column;
    align-items: center;
    pointer-events: none;
    transform: translateX(-50%);
}

.ba-handle-line {
    flex: 1;
    width: 2px;
    background-color: var(--color-gold);
    opacity: 0.8;
}

.ba-handle-knob {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: var(--color-black);
    border: 2px solid var(--color-gold);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.4);
    transition: transform var(--transition-fast), box-shadow var(--transition-fast);
}

.ba-slider:active .ba-handle-knob {
    transform: scale(1.12);
    box-shadow: 0 2px 20px rgba(200, 168, 78, 0.3);
}

.ba-label {
    position: absolute;
    bottom: 12px;
    z-index: 3;
    font-family: var(--font-primary);
    font-size: 0.65rem;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    padding: 4px 10px;
    border-radius: 3px;
    pointer-events: none;
}

.ba-label-before {
    left: 12px;
    background-color: rgba(0, 0, 0, 0.65);
    color: var(--color-white);
    border: 1px solid rgba(255, 255, 255, 0.15);
}

.ba-label-after {
    right: 12px;
    background-color: rgba(0, 0, 0, 0.65);
    color: var(--color-gold);
    border: 1px solid rgba(200, 168, 78, 0.3);
}

/* ============================================
   ABOUT PAGE - GOLD CORNER ACCENTS
   ============================================ */

.frame-corner {
    position: absolute;
    width: 40px;
    height: 40px;
    pointer-events: none;
    z-index: 5;
}

.frame-corner::before,
.frame-corner::after {
    content: '';
    position: absolute;
    background-color: var(--color-gold);
    opacity: 0.5;
}

.frame-corner-tl {
    top: -8px;
    left: -8px;
}

.frame-corner-tl::before {
    top: 0;
    left: 0;
    width: 40px;
    height: 2px;
}

.frame-corner-tl::after {
    top: 0;
    left: 0;
    width: 2px;
    height: 40px;
}

.frame-corner-br {
    bottom: -8px;
    right: -8px;
}

.frame-corner-br::before {
    bottom: 0;
    right: 0;
    width: 40px;
    height: 2px;
}

.frame-corner-br::after {
    bottom: 0;
    right: 0;
    width: 2px;
    height: 40px;
}

.about-image-splash {
    position: absolute;
    bottom: -30px;
    right: -40px;
    width: 120px;
    height: 120px;
    pointer-events: none;
    z-index: -1;
}

/* ============================================
   ABOUT PAGE - SECTION LABELS & HEADINGS
   ============================================ */

.about-section-label {
    font-size: 0.8rem;
    color: var(--color-gold);
    letter-spacing: 3px;
    text-transform: uppercase;
    margin-bottom: 8px;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 16px;
}

.about-section-label::before {
    content: '';
    display: inline-block;
    width: 28px;
    height: 1.5px;
    background-color: var(--color-gold);
    opacity: 0.5;
}

.about-section-label-center {
    justify-content: center;
    text-align: center;
}

.about-section-label-center::after {
    content: '';
    display: inline-block;
    width: 28px;
    height: 1.5px;
    background-color: var(--color-gold);
    opacity: 0.5;
}

.about-section-heading {
    color: var(--color-white);
    font-size: clamp(1.5rem, 3.5vw, 2.2rem);
    margin-bottom: 24px;
    line-height: 1.2;
}

.about-section-heading-center {
    text-align: center;
}

.about-story-body {
    color: rgba(255, 255, 255, 0.6);
    font-size: 1rem;
    line-height: 1.8;
    margin-bottom: 16px;
}

.about-story-body:last-child {
    margin-bottom: 0;
}

/* ============================================
   ABOUT PAGE - RESULTS SECTION
   ============================================ */

.about-results {
    background-color: var(--color-black);
    padding: 80px 0;
    text-align: center;
}

.about-results-subheading {
    color: rgba(255, 255, 255, 0.5);
    font-size: 1rem;
    margin-bottom: 56px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.about-results-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 48px;
    max-width: 1000px;
    margin: 0 auto;
}

.about-result-card {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 40px 24px;
    background-color: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(200, 168, 78, 0.12);
    border-radius: 6px;
    transition: border-color var(--transition-base), background-color var(--transition-base);
    overflow: hidden;
}

.about-result-card:hover {
    border-color: rgba(200, 168, 78, 0.35);
    background-color: rgba(200, 168, 78, 0.03);
}

.about-result-icon {
    margin-bottom: 20px;
}

.about-result-icon svg {
    display: block;
}

.about-result-title {
    color: var(--color-white);
    font-size: 1.15rem;
    margin-bottom: 10px;
    font-weight: 700;
}

.about-result-desc {
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.92rem;
    line-height: 1.7;
    max-width: 300px;
}

.about-card-splash {
    position: absolute;
    width: 80px;
    height: 80px;
    pointer-events: none;
    bottom: -12px;
    right: -12px;
    opacity: 0.6;
    transition: opacity var(--transition-base);
}

.about-result-card:hover .about-card-splash {
    opacity: 1;
}

.about-card-splash-alt {
    top: -12px;
    left: -12px;
    bottom: auto;
    right: auto;
}

.about-card-splash-alt2 {
    top: -8px;
    right: -8px;
    bottom: auto;
}

/* ============================================
   ABOUT PAGE - AREA WE COVER
   ============================================ */

.about-area {
    background-color: var(--color-black);
    padding: 80px 0;
    text-align: center;
}

.about-area-inner {
    max-width: 680px;
    margin: 0 auto;
}

.about-area-icon {
    margin-bottom: 20px;
}

.about-area-icon svg {
    display: block;
    margin: 0 auto;
}

.about-area-heading {
    color: var(--color-white);
    font-size: clamp(1.4rem, 3.5vw, 2rem);
    margin-bottom: 16px;
}

.about-area-text {
    color: rgba(255, 255, 255, 0.55);
    font-size: 1rem;
    line-height: 1.8;
}

/* ============================================
   LEGAL PAGES
   ============================================ */

.legal-section {
    background-color: var(--color-black);
    padding: 80px 0;
}

.legal-card {
    max-width: 900px;
    margin: 0 auto;
    padding: 48px 40px;
    background-color: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(200, 168, 78, 0.12);
    border-radius: 8px;
}

.legal-card h2 {
    color: var(--color-white);
    font-size: clamp(1.35rem, 3vw, 1.8rem);
    margin: 40px 0 14px;
}

.legal-card h2:first-of-type {
    margin-top: 28px;
}

.legal-card p,
.legal-card li {
    color: rgba(255, 255, 255, 0.62);
    font-size: 0.98rem;
    line-height: 1.8;
}

.legal-card p {
    margin-bottom: 16px;
}

.legal-card ul {
    list-style: disc;
    margin: 0 0 20px 22px;
}

.legal-card li {
    margin-bottom: 8px;
}

.legal-card a {
    color: var(--color-gold);
}

.legal-card a:hover {
    color: var(--color-gold-light);
}

/* ============================================
   ABOUT PAGE - CTA OVERRIDES
   ============================================ */

.about-cta-buttons {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
    margin-bottom: 20px;
}

.btn-about-services {
    display: inline-block;
    padding: 16px 48px;
    font-family: var(--font-primary);
    font-size: 1rem;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: var(--color-white);
    background-color: transparent;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 4px;
    transition: all var(--transition-base);
}

.btn-about-services:hover {
    border-color: var(--color-gold);
    color: var(--color-gold);
    background-color: rgba(200, 168, 78, 0.06);
}

.about-cta-splash {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    max-width: 500px;
    height: auto;
    pointer-events: none;
    z-index: 0;
}

.cta-inner {
    position: relative;
}

.cta-label,
.cta-heading,
.cta-text,
.about-cta-buttons,
.cta-inner > .btn-cta-secondary {
    position: relative;
    z-index: 1;
}

/* ============================================
   RESPONSIVE - TABLET & MOBILE (768px and below)
   ============================================ */

@media (max-width: 768px) {
    :root {
        --header-height: 78px;
        --section-padding: 60px 0;
    }

    .desktop-nav { display: none; }
    .hamburger { display: flex; }

    .site-logo img { width: 220px; max-height: 56px; }
    .site-logo-text { font-size: 1.05rem; }
    .nav-menu a { font-size: 1.3rem; }

    .footer-inner { grid-template-columns: 1fr 1fr; gap: 40px 32px; }
    .footer-col-brand { grid-column: 1 / -1; padding-right: 0; }

    .services-section { padding: 60px 0 56px; }
    .services-grid { gap: 40px 32px; max-width: 760px; }
    .splatter-frame { width: 220px; height: 220px; }
    .services-subheading { margin-bottom: 40px; }

    .trust-section { padding: 56px 0; }
    .trust-grid { grid-template-columns: repeat(2, 1fr); gap: 40px 32px; max-width: 620px; }
    .trust-subheading { margin-bottom: 36px; }

    .cta-section { padding: 60px 0 68px; }
    .btn-cta-primary { padding: 14px 40px; font-size: 0.9rem; }

    /* ABOUT PAGE - TABLET */
    .about-hero { padding: 80px 24px 64px; }
    .about-hero-splash-tr { width: 150px; height: 150px; top: -10px; right: -15px; }
    .about-hero-splash-bl { width: 120px; height: 120px; bottom: -10px; left: -10px; }

    .about-story { padding: 60px 0; }
    .about-story-grid { grid-template-columns: 1fr; gap: 48px; text-align: center; }
    .about-story-image { order: -1; }
    .about-image-frame { max-width: 300px; aspect-ratio: 3 / 4; }
    .about-image-splash { bottom: -20px; right: -25px; width: 100px; height: 100px; }

    .about-section-label { justify-content: center; }
    .about-section-label::after {
        content: '';
        display: inline-block;
        width: 28px;
        height: 1.5px;
        background-color: var(--color-gold);
        opacity: 0.5;
    }
    .about-section-heading { text-align: center; }
    .about-story-body {
        text-align: center;
        max-width: 500px;
        margin-left: auto;
        margin-right: auto;
        margin-bottom: 16px;
    }
    .about-story-body:last-child { margin-bottom: 0; }

    .about-results { padding: 56px 0; }
    .about-results-grid { grid-template-columns: 1fr; gap: 32px; max-width: 400px; margin: 0 auto; }
    .about-results-subheading { margin-bottom: 40px; }

    .about-area { padding: 56px 0; }
    .legal-section { padding: 60px 0; }
    .legal-card { padding: 36px 28px; }
    .legal-card h2 { margin-top: 32px; }

    .about-cta-buttons { flex-direction: column; align-items: center; gap: 16px; }
    .btn-about-services { padding: 14px 40px; font-size: 0.9rem; }

    .frame-corner-tl { top: -6px; left: -6px; }
    .frame-corner-br { bottom: -6px; right: -6px; }
    .frame-corner { width: 30px; height: 30px; }
    .frame-corner-tl::before { width: 30px; }
    .frame-corner-tl::after { height: 30px; }
    .frame-corner-br::before { width: 30px; }
    .frame-corner-br::after { height: 30px; }

    .ba-handle-knob { width: 34px; height: 34px; }
    .ba-label { font-size: 0.6rem; padding: 3px 8px; bottom: 8px; }
}

@media (min-width: 769px) {
    .hero-title {
        white-space: nowrap;
        font-size: clamp(2.4rem, 5vw, 4.4rem);
    }
}

/* ============================================
   RESPONSIVE - SMALL MOBILE (480px and below)
   ============================================ */

@media (max-width: 480px) {
    :root {
        --header-height: 72px;
        --section-padding: 48px 0;
        --container-padding: 0 16px;
    }

    .site-logo img { width: 190px; max-height: 50px; }
    .site-logo-text { font-size: 0.95rem; }
    .hero-title { letter-spacing: 1px; }
    .hero-buttons { flex-direction: column; align-items: center; }
    .btn-hero-primary, .btn-hero-secondary { width: 220px; height: 88px; }
    .btn { padding: 12px 24px; font-size: 0.85rem; }

    .services-section { padding: 48px 0 44px; }
    .services-grid { grid-template-columns: 1fr; gap: 40px; max-width: 320px; }
    .splatter-frame { width: 240px; height: 240px; }
    .services-subheading { margin-bottom: 32px; }

    .trust-section { padding: 44px 0; }
    .trust-grid { grid-template-columns: 1fr; gap: 32px; max-width: 280px; }
    .trust-subheading { margin-bottom: 28px; }

    .cta-section { padding: 48px 0 56px; }
    .cta-text { margin-bottom: 28px; }
    .btn-cta-primary { padding: 14px 36px; font-size: 0.85rem; width: 100%; max-width: 300px; }
    .btn-cta-secondary { font-size: 0.8rem; }

    .footer-inner { grid-template-columns: 1fr; gap: 32px; }
    .footer-col-brand { padding-right: 0; }
    .footer-col h4::after { left: 50%; transform: translateX(-50%); }
    .footer-col, .footer-links, .footer-contact { text-align: center; align-items: center; }
    .footer-contact li { justify-content: center; }
    .footer-socials { justify-content: center; }
    .mobile-nav-actions { flex-wrap: wrap; }
    .contact-action-buttons { align-items: stretch; }
    .whatsapp-widget {
        right: 12px;
        bottom: 12px;
        gap: 8px;
        padding: 10px 14px;
    }
    .whatsapp-widget-icon svg { width: 18px; height: 18px; }
    .whatsapp-widget-text { font-size: 0.72rem; letter-spacing: 0.8px; }

    /* ABOUT PAGE - SMALL MOBILE */
    .about-hero { padding: 64px 16px 52px; }
    .about-hero-splash-tr { width: 110px; height: 110px; }
    .about-hero-splash-bl { width: 90px; height: 90px; }

    .about-story { padding: 48px 0; }
    .about-image-frame { max-width: 260px; }
    .about-story-grid { gap: 36px; }
    .about-story-body { font-size: 0.9rem; }
    .about-image-splash { width: 80px; height: 80px; bottom: -15px; right: -15px; }

    .about-results { padding: 44px 0; }
    .about-results-grid { max-width: 320px; }
    .about-result-card { padding: 32px 20px; }
    .about-results-subheading { margin-bottom: 32px; }

    .about-area { padding: 44px 0; }
    .about-area-text { font-size: 0.9rem; }
    .legal-section { padding: 48px 0; }
    .legal-card { padding: 28px 20px; }
    .legal-card p,
    .legal-card li { font-size: 0.92rem; }

    .btn-about-services { padding: 14px 36px; font-size: 0.85rem; width: 100%; max-width: 300px; }

    .ba-handle-knob { width: 30px; height: 30px; }
    .ba-handle-knob svg { width: 16px; height: 16px; }
    .ba-label { font-size: 0.55rem; padding: 3px 6px; bottom: 6px; }
    .ba-label-before { left: 8px; }
    .ba-label-after { right: 8px; }
}

/* ============================================
   PORTFOLIO PAGE - GRID & CARDS
   ============================================ */

.portfolio-section {
    background-color: var(--color-black);
    padding: 80px 0;
}

.portfolio-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 48px;
    max-width: 1080px;
    margin: 0 auto;
}

/* Centre the last card if odd number */
.portfolio-grid .portfolio-card:last-child:nth-child(odd) {
    grid-column: 1 / -1;
    max-width: 516px;
    justify-self: center;
}

.portfolio-card {
    background-color: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(200, 168, 78, 0.12);
    border-radius: 8px;
    overflow: hidden;
    transition: border-color var(--transition-base), box-shadow var(--transition-base);
}

.portfolio-card:hover {
    border-color: rgba(200, 168, 78, 0.3);
    box-shadow: 0 4px 24px rgba(200, 168, 78, 0.06);
}

.portfolio-slider-wrap {
    position: relative;
    width: 100%;
    aspect-ratio: 16 / 10;
    overflow: hidden;
}

.portfolio-slider-wrap .ba-slider {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 0;
}

.portfolio-slider-wrap .ba-after {
    border-radius: 0;
}

.portfolio-slider-wrap .ba-before {
    border-radius: 0;
}

.portfolio-card-info {
    padding: 24px 28px 28px;
}

.portfolio-card-title {
    color: var(--color-white);
    font-size: 1.15rem;
    font-weight: 700;
    margin-bottom: 8px;
}

.portfolio-card-desc {
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.88rem;
    line-height: 1.65;
}

/* ============================================
   PORTFOLIO PAGE - RESPONSIVE (768px)
   ============================================ */

@media (max-width: 768px) {
    .portfolio-section { padding: 60px 0; }

    .portfolio-grid {
        grid-template-columns: 1fr;
        gap: 36px;
        max-width: 500px;
    }

    .portfolio-grid .portfolio-card:last-child:nth-child(odd) {
        max-width: none;
    }

    .portfolio-card-info {
        padding: 20px 24px 24px;
    }
}

/* ============================================
   PORTFOLIO PAGE - RESPONSIVE (480px)
   ============================================ */

@media (max-width: 480px) {
    .portfolio-section { padding: 48px 0; }

    .portfolio-grid {
        max-width: 100%;
        gap: 28px;
    }

    .portfolio-card-info {
        padding: 18px 20px 22px;
    }

    .portfolio-card-title {
        font-size: 1.05rem;
    }

    .portfolio-card-desc {
        font-size: 0.82rem;
    }
}

/* ============================================
   SERVICES PAGE - GRID (7 cards, 3 columns)
   ============================================ */

.services-page-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 56px 60px;
    max-width: 1080px;
    margin: 0 auto 60px;
}

/* Centre the last card if it's alone on its row */
.services-page-grid .service-card:last-child:nth-child(3n+1) {
    grid-column: 2 / 3;
}

/* ============================================
   SERVICES PAGE - RESPONSIVE (768px)
   ============================================ */

@media (max-width: 768px) {
    .services-page-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 40px 32px;
    }

    .services-page-grid .service-card:last-child:nth-child(3n+1) {
        grid-column: auto;
    }

    .services-page-grid .service-card:last-child:nth-child(odd) {
        grid-column: 1 / -1;
        justify-self: center;
        max-width: 280px;
    }
}

/* ============================================
   SERVICES PAGE - RESPONSIVE (480px)
   ============================================ */

@media (max-width: 480px) {
    .services-page-grid {
        grid-template-columns: 1fr;
        gap: 40px;
        max-width: 280px;
    }

    .services-page-grid .service-card:last-child:nth-child(odd) {
        max-width: none;
    }
}

/* ============================================
   CONTACT PAGE - LAYOUT
   ============================================ */

.contact-section {
    background-color: var(--color-black);
    padding: 80px 0;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1.3fr 1fr;
    gap: 64px;
    align-items: start;
    max-width: 1080px;
    margin: 0 auto;
}

.contact-intro {
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.92rem;
    line-height: 1.7;
    margin-bottom: 32px;
}

/* ============================================
   CONTACT PAGE - INFO CARD
   ============================================ */

.contact-info-card {
    position: relative;
    background-color: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(200, 168, 78, 0.15);
    border-radius: 8px;
    padding: 40px 32px;
    overflow: hidden;
}

.contact-info-heading {
    color: var(--color-white);
    font-size: 1.2rem;
    margin-bottom: 8px;
    font-weight: 700;
}

.contact-info-text {
    color: rgba(255, 255, 255, 0.45);
    font-size: 0.88rem;
    line-height: 1.65;
    margin-bottom: 32px;
}

.contact-info-item {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    margin-bottom: 24px;
}

.contact-info-item:last-of-type {
    margin-bottom: 0;
}

.contact-info-icon {
    flex-shrink: 0;
}

.contact-info-icon svg {
    display: block;
}

.contact-info-detail h4 {
    color: var(--color-gold);
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 4px;
    font-weight: 700;
}

.contact-info-detail a,
.contact-info-detail span {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.9rem;
    line-height: 1.5;
    transition: color var(--transition-base);
}

.contact-info-detail a:hover {
    color: var(--color-gold);
}

.contact-action-buttons {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-top: 32px;
}

.contact-action-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    min-height: 50px;
    padding: 14px 18px;
    border-radius: 999px;
    font-size: 0.82rem;
    font-weight: 700;
    letter-spacing: 1.2px;
    text-transform: uppercase;
    transition: transform var(--transition-base), background-color var(--transition-base), color var(--transition-base), border-color var(--transition-base);
}

.contact-action-link:hover,
.contact-action-link:focus-visible {
    transform: translateY(-2px);
}

.contact-action-link-primary {
    background-color: var(--color-gold);
    color: var(--color-black);
    border: 1px solid var(--color-gold);
}

.contact-action-link-primary:hover,
.contact-action-link-primary:focus-visible {
    background-color: #d4b35a;
    color: var(--color-black);
}

.contact-action-link-secondary {
    color: var(--color-white);
    border: 1px solid rgba(255, 255, 255, 0.14);
    background-color: rgba(255, 255, 255, 0.03);
}

.contact-action-link-secondary:hover,
.contact-action-link-secondary:focus-visible {
    color: var(--color-gold);
    border-color: rgba(200, 168, 78, 0.38);
}

.contact-card-splash {
    position: absolute;
    bottom: -15px;
    right: -15px;
    width: 110px;
    height: 110px;
    pointer-events: none;
    opacity: 0.6;
}

/* ============================================
   NINJA FORMS - THEME OVERRIDE STYLES
   ============================================ */

.contact-form-wrap {
    position: relative;
}

.whatsapp-widget {
    position: fixed;
    right: 24px;
    bottom: 24px;
    z-index: 1000;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: linear-gradient(135deg, rgba(200, 168, 78, 0.96), rgba(181, 146, 58, 0.96));
    color: var(--color-black);
    border-radius: 999px;
    padding: 12px 18px;
    box-shadow: 0 12px 28px rgba(0, 0, 0, 0.28);
    border: 1px solid rgba(255, 255, 255, 0.14);
    transition: transform var(--transition-base), box-shadow var(--transition-base);
}

.whatsapp-widget:hover,
.whatsapp-widget:focus-visible {
    transform: translateY(-2px);
    box-shadow: 0 16px 34px rgba(0, 0, 0, 0.32);
}

.whatsapp-widget-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.whatsapp-widget-text {
    font-size: 0.82rem;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
}

/* Field containers */
.contact-form-wrap .nf-field-container {
    margin-bottom: 20px;
}

/* Labels */
.contact-form-wrap .nf-field-label label {
    font-family: var(--font-primary) !important;
    font-size: 0.78rem !important;
    font-weight: 700 !important;
    color: var(--color-gold) !important;
    text-transform: uppercase !important;
    letter-spacing: 2px !important;
    margin-bottom: 8px !important;
    display: block !important;
}

/* Description text below labels */
.contact-form-wrap .nf-field-description {
    font-family: var(--font-primary) !important;
    font-size: 0.85rem !important;
    color: rgba(255, 255, 255, 0.45) !important;
    line-height: 1.6 !important;
    margin-bottom: 10px !important;
}

.contact-form-wrap .nf-field-description p {
    color: rgba(255, 255, 255, 0.45) !important;
    font-size: 0.85rem !important;
}

/* Text inputs, email, tel, select */
.contact-form-wrap .ninja-forms-field,
.contact-form-wrap .nf-element {
    font-family: var(--font-primary) !important;
    font-size: 0.92rem !important;
    color: var(--color-white) !important;
    background-color: rgba(255, 255, 255, 0.04) !important;
    border: 1px solid rgba(200, 168, 78, 0.2) !important;
    border-radius: 4px !important;
    padding: 12px 16px !important;
    width: 100% !important;
    transition: border-color 0.3s ease, background-color 0.3s ease !important;
    outline: none !important;
    box-shadow: none !important;
}

.contact-form-wrap .ninja-forms-field:focus,
.contact-form-wrap .nf-element:focus {
    border-color: var(--color-gold) !important;
    background-color: rgba(200, 168, 78, 0.04) !important;
}

/* Placeholder text */
.contact-form-wrap .ninja-forms-field::placeholder {
    color: rgba(255, 255, 255, 0.25) !important;
    font-style: normal !important;
}

/* Textarea */
.contact-form-wrap textarea.ninja-forms-field,
.contact-form-wrap textarea.nf-element {
    min-height: 120px !important;
    resize: vertical !important;
}

/* Textarea scrollbar */
.contact-form-wrap textarea.ninja-forms-field::-webkit-scrollbar {
    width: 6px;
}

.contact-form-wrap textarea.ninja-forms-field::-webkit-scrollbar-track {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 3px;
}

.contact-form-wrap textarea.ninja-forms-field::-webkit-scrollbar-thumb {
    background: rgba(200, 168, 78, 0.3);
    border-radius: 3px;
}

/* ============================================
   SELECT DROPDOWN - CLOSED STATE
   ============================================ */

.contact-form-wrap select.ninja-forms-field,
.contact-form-wrap select.nf-element {
    -webkit-appearance: none !important;
    -moz-appearance: none !important;
    appearance: none !important;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1 L6 6 L11 1' stroke='%23C8A84E' stroke-width='1.5' fill='none' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E") !important;
    background-repeat: no-repeat !important;
    background-position: right 16px center !important;
    padding-right: 40px !important;
    cursor: pointer !important;
}

/* SELECT DROPDOWN - OPEN STATE (option elements) */
.contact-form-wrap select.ninja-forms-field option,
.contact-form-wrap select.nf-element option {
    background-color: #1a1a1a !important;
    color: var(--color-white) !important;
    font-family: var(--font-primary) !important;
    font-size: 0.9rem !important;
    padding: 10px 16px !important;
}

.contact-form-wrap select.ninja-forms-field option:checked,
.contact-form-wrap select.nf-element option:checked {
    background-color: rgba(200, 168, 78, 0.3) !important;
    color: var(--color-white) !important;
}

.contact-form-wrap select.ninja-forms-field option:hover,
.contact-form-wrap select.nf-element option:hover {
    background-color: rgba(200, 168, 78, 0.2) !important;
}

/* ============================================
   SUBMIT BUTTON
   ============================================ */

.contact-form-wrap .nf-field-container .submit-container input[type="button"],
.contact-form-wrap .nf-field-container .submit-wrap input[type="button"],
.contact-form-wrap .submit-container input[type="button"],
.contact-form-wrap input[type="button"].ninja-forms-field {
    font-family: var(--font-primary) !important;
    font-size: 0.9rem !important;
    font-weight: 700 !important;
    letter-spacing: 1.5px !important;
    text-transform: uppercase !important;
    color: var(--color-black) !important;
    background-color: var(--color-gold) !important;
    border: 2px solid var(--color-gold) !important;
    border-radius: 4px !important;
    padding: 14px 48px !important;
    cursor: pointer !important;
    transition: all 0.3s ease !important;
    width: auto !important;
    display: inline-block !important;
}

.contact-form-wrap .nf-field-container .submit-container input[type="button"]:hover,
.contact-form-wrap .nf-field-container .submit-wrap input[type="button"]:hover,
.contact-form-wrap .submit-container input[type="button"]:hover,
.contact-form-wrap input[type="button"].ninja-forms-field:hover {
    background-color: var(--color-gold-light) !important;
    border-color: var(--color-gold-light) !important;
    color: var(--color-black) !important;
}

/* Submit button - full width override for Ninja Forms default */
.contact-form-wrap .submit-container {
    text-align: left !important;
}

/* Error messages */
.contact-form-wrap .nf-error-wrap .nf-error-msg {
    font-family: var(--font-primary) !important;
    font-size: 0.78rem !important;
    color: #e74c3c !important;
    margin-top: 4px !important;
}

.contact-form-wrap .nf-error .ninja-forms-field,
.contact-form-wrap .nf-error .nf-element {
    border-color: rgba(231, 76, 60, 0.5) !important;
}

/* Success message */
.contact-form-wrap .nf-response-msg {
    font-family: var(--font-primary) !important;
    font-size: 1rem !important;
    color: var(--color-gold) !important;
    text-align: center !important;
    padding: 24px !important;
}

/* Remove Ninja Forms default padding/chrome */
.contact-form-wrap .nf-form-content {
    padding: 0 !important;
    max-width: 100% !important;
}

.contact-form-wrap .nf-form-fields-required {
    display: none !important;
}

/* Required asterisk colour */
.contact-form-wrap .ninja-forms-req-symbol {
    color: #e74c3c !important;
}

/* List select (radio / checkbox) styling */
.contact-form-wrap .list-select-wrap .nf-field-element label {
    color: rgba(255, 255, 255, 0.6) !important;
    font-size: 0.88rem !important;
    text-transform: none !important;
    letter-spacing: 0 !important;
    font-weight: 400 !important;
}

/* General fallback - any paragraph inside form */
.contact-form-wrap p {
    color: rgba(255, 255, 255, 0.45) !important;
}

/* ============================================
   WPFORMS - THEME OVERRIDE STYLES
   ============================================ */

.contact-form-wrap .wpforms-container {
    margin: 0 !important;
}

.contact-form-wrap .wpforms-form {
    --wpforms-field-border-radius: 4px;
}

.contact-form-wrap .wpforms-field {
    padding: 0 !important;
    margin-bottom: 20px !important;
}

.contact-form-wrap .wpforms-field-label,
.contact-form-wrap .wpforms-field-label-inline {
    font-family: var(--font-primary) !important;
    font-size: 0.78rem !important;
    font-weight: 700 !important;
    color: var(--color-gold) !important;
    text-transform: uppercase !important;
    letter-spacing: 2px !important;
    margin-bottom: 8px !important;
}

.contact-form-wrap .wpforms-required-label {
    color: #e74c3c !important;
}

.contact-form-wrap .wpforms-field-description,
.contact-form-wrap .wpforms-field-sublabel,
.contact-form-wrap .wpforms-field-limit-text {
    font-family: var(--font-primary) !important;
    font-size: 0.85rem !important;
    color: rgba(255, 255, 255, 0.45) !important;
    line-height: 1.6 !important;
}

.contact-form-wrap .wpforms-field input[type="text"],
.contact-form-wrap .wpforms-field input[type="email"],
.contact-form-wrap .wpforms-field input[type="tel"],
.contact-form-wrap .wpforms-field input[type="number"],
.contact-form-wrap .wpforms-field textarea,
.contact-form-wrap .wpforms-field select {
    font-family: var(--font-primary) !important;
    font-size: 0.92rem !important;
    color: var(--color-white) !important;
    background-color: rgba(255, 255, 255, 0.04) !important;
    border: 1px solid rgba(200, 168, 78, 0.2) !important;
    border-radius: 4px !important;
    padding: 12px 16px !important;
    width: 100% !important;
    min-height: 48px !important;
    transition: border-color 0.3s ease, background-color 0.3s ease !important;
    outline: none !important;
    box-shadow: none !important;
}

.contact-form-wrap .wpforms-field textarea {
    min-height: 140px !important;
    resize: vertical !important;
}

.contact-form-wrap .wpforms-field input::placeholder,
.contact-form-wrap .wpforms-field textarea::placeholder {
    color: rgba(255, 255, 255, 0.25) !important;
}

.contact-form-wrap .wpforms-field input:focus,
.contact-form-wrap .wpforms-field textarea:focus,
.contact-form-wrap .wpforms-field select:focus {
    border-color: var(--color-gold) !important;
    background-color: rgba(200, 168, 78, 0.04) !important;
}

.contact-form-wrap .wpforms-field select {
    -webkit-appearance: none !important;
    -moz-appearance: none !important;
    appearance: none !important;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1 L6 6 L11 1' stroke='%23C8A84E' stroke-width='1.5' fill='none' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E") !important;
    background-repeat: no-repeat !important;
    background-position: right 16px center !important;
    padding-right: 40px !important;
    cursor: pointer !important;
}

.contact-form-wrap .wpforms-field select option {
    color: var(--color-white) !important;
    background-color: #1b1b1b !important;
}

.contact-form-wrap .wpforms-field select:required:invalid {
    color: rgba(255, 255, 255, 0.45) !important;
}

.contact-form-wrap .wpforms-field select option[value=""] {
    color: rgba(255, 255, 255, 0.45) !important;
}

.contact-form-wrap .choices,
.contact-form-wrap .choices__inner {
    font-family: var(--font-primary) !important;
    font-size: 0.92rem !important;
    color: var(--color-white) !important;
    background-color: rgba(255, 255, 255, 0.04) !important;
    border: 1px solid rgba(200, 168, 78, 0.2) !important;
    border-radius: 4px !important;
    box-shadow: none !important;
}

.contact-form-wrap .choices__inner {
    min-height: 48px !important;
    padding: 0 40px 0 16px !important;
    display: flex !important;
    align-items: center !important;
}

.contact-form-wrap .is-open .choices__inner,
.contact-form-wrap .is-focused .choices__inner {
    border-color: var(--color-gold) !important;
    background-color: rgba(200, 168, 78, 0.04) !important;
}

.contact-form-wrap .choices[data-type*="select-one"]::after {
    border-color: var(--color-gold) transparent transparent transparent !important;
    right: 16px !important;
}

.contact-form-wrap .choices[data-type*="select-one"].is-open::after {
    border-color: transparent transparent var(--color-gold) transparent !important;
}

.contact-form-wrap .choices__list--single {
    padding: 0 !important;
    display: flex !important;
    align-items: center !important;
    min-height: 46px !important;
}

.contact-form-wrap .choices__list--single .choices__item {
    display: flex !important;
    align-items: center !important;
    min-height: 46px !important;
    line-height: 1.2 !important;
}

.contact-form-wrap .choices__placeholder,
.contact-form-wrap .choices__list--single .choices__item--selectable {
    color: rgba(255, 255, 255, 0.9) !important;
}

.contact-form-wrap .choices__placeholder {
    opacity: 0.55 !important;
}

.contact-form-wrap .choices__list--dropdown,
.contact-form-wrap .choices__list[aria-expanded] {
    background: #1b1b1b !important;
    background-color: #1b1b1b !important;
    border: 1px solid rgba(200, 168, 78, 0.2) !important;
    border-radius: 4px !important;
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.28) !important;
}

.contact-form-wrap div.wpforms-container-full .wpforms-form .wpforms-field.wpforms-field-select-style-modern .choices .choices__list--dropdown,
.contact-form-wrap div.wpforms-container-full .wpforms-form .wpforms-field.wpforms-field-select-style-modern .choices.is-open .choices__list--dropdown,
.contact-form-wrap div.wpforms-container-full .wpforms-form .wpforms-field.wpforms-field-select-style-modern .choices.is-open:not(.is-flipped) .choices__list--dropdown {
    background: #1b1b1b !important;
    background-color: #1b1b1b !important;
    color: var(--color-white) !important;
}

.contact-form-wrap .choices__list--dropdown .choices__list,
.contact-form-wrap .choices__list[aria-expanded] .choices__list {
    background: #1b1b1b !important;
    background-color: #1b1b1b !important;
}

.contact-form-wrap .choices__input,
.contact-form-wrap .choices__input--cloned {
    font-family: var(--font-primary) !important;
    font-size: 0.92rem !important;
    color: var(--color-white) !important;
    background-color: #1b1b1b !important;
    border: 0 !important;
    box-shadow: none !important;
}

.contact-form-wrap .choices__input::placeholder,
.contact-form-wrap .choices__input--cloned::placeholder {
    color: rgba(255, 255, 255, 0.45) !important;
}

.contact-form-wrap .choices__list--dropdown .choices__item,
.contact-form-wrap .choices__list[aria-expanded] .choices__item {
    color: var(--color-white) !important;
    font-size: 0.9rem !important;
    padding: 10px 16px !important;
}

.contact-form-wrap .choices__list--dropdown .choices__item--selectable.is-highlighted,
.contact-form-wrap .choices__list[aria-expanded] .choices__item--selectable.is-highlighted {
    background-color: rgba(200, 168, 78, 0.12) !important;
    color: var(--color-gold) !important;
}

.contact-form-wrap .wpforms-submit-container {
    padding-top: 8px !important;
}

.contact-form-wrap button[type="submit"].wpforms-submit,
.contact-form-wrap .wpforms-submit {
    font-family: var(--font-primary) !important;
    font-size: 0.9rem !important;
    font-weight: 700 !important;
    letter-spacing: 1.5px !important;
    text-transform: uppercase !important;
    color: var(--color-black) !important;
    background-color: var(--color-gold) !important;
    border: 2px solid var(--color-gold) !important;
    border-radius: 4px !important;
    padding: 14px 48px !important;
    width: auto !important;
    min-height: 0 !important;
    display: inline-block !important;
    transition: all 0.3s ease !important;
    box-shadow: none !important;
}

.contact-form-wrap button[type="submit"].wpforms-submit:hover,
.contact-form-wrap button[type="submit"].wpforms-submit:focus,
.contact-form-wrap .wpforms-submit:hover,
.contact-form-wrap .wpforms-submit:focus {
    color: var(--color-black) !important;
    background-color: var(--color-gold-light) !important;
    border-color: var(--color-gold-light) !important;
}

.contact-form-wrap .wpforms-error {
    font-family: var(--font-primary) !important;
    font-size: 0.78rem !important;
    color: #e74c3c !important;
}

.contact-form-wrap .wpforms-confirmation-container-full,
.contact-form-wrap div[aria-live="polite"] {
    font-family: var(--font-primary) !important;
    color: var(--color-gold) !important;
    background: rgba(255, 255, 255, 0.03) !important;
    border: 1px solid rgba(200, 168, 78, 0.2) !important;
    border-radius: 4px !important;
    padding: 20px !important;
}

/* ============================================
   CONTACT PAGE - RESPONSIVE (768px)
   ============================================ */

@media (max-width: 768px) {
    .contact-section {
        padding: 60px 0;
    }

    .contact-grid {
        grid-template-columns: 1fr;
        gap: 48px;
    }

    .contact-form-col {
        text-align: center;
    }

    .contact-form-col .about-section-label {
        justify-content: center;
    }

    .contact-form-col .about-section-label::after {
        content: '';
        display: inline-block;
        width: 28px;
        height: 1.5px;
        background-color: var(--color-gold);
        opacity: 0.5;
    }

    .contact-form-col .about-section-heading {
        text-align: center;
    }

    .contact-intro {
        text-align: center;
        max-width: 500px;
        margin-left: auto;
        margin-right: auto;
        margin-bottom: 32px;
    }

    .contact-info-card {
        padding: 32px 24px;
    }
}

/* ============================================
   CONTACT PAGE - RESPONSIVE (480px)
   ============================================ */

@media (max-width: 480px) {
    .contact-section {
        padding: 48px 0;
    }

    .contact-grid {
        gap: 36px;
    }

    .contact-info-card {
        padding: 28px 20px;
    }

    .contact-info-item {
        gap: 12px;
    }

    .contact-info-icon svg {
        width: 34px;
        height: 34px;
    }
}

/* ============================================
   SERVICE DETAIL PAGES
   ============================================ */

.service-detail-section {
    background-color: var(--color-black);
    padding: 80px 0;
    text-align: center;
}

.service-detail-inner {
    max-width: 980px;
    margin: 0 auto;
}

.service-detail-intro {
    color: rgba(255, 255, 255, 0.55);
    font-size: 1rem;
    line-height: 1.8;
    max-width: 760px;
    margin: 0 auto 48px;
}

.service-includes-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    max-width: 980px;
    margin: 0 auto;
}

.service-includes-grid-4 {
    grid-template-columns: repeat(4, 1fr);
    gap: 32px;
    max-width: 1080px;
}

.service-includes-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 32px 20px;
    height: 100%;
    background-color: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(200, 168, 78, 0.12);
    border-radius: 6px;
    transition: border-color var(--transition-base), background-color var(--transition-base);
}

.service-includes-card:hover {
    border-color: rgba(200, 168, 78, 0.3);
    background-color: rgba(200, 168, 78, 0.03);
}

.service-includes-icon {
    margin-bottom: 16px;
}

.service-includes-icon svg {
    display: block;
}

.service-includes-card h3 {
    color: var(--color-white);
    font-size: 1.05rem;
    margin-bottom: 8px;
    font-weight: 700;
}

.service-includes-card p {
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.9rem;
    line-height: 1.65;
    max-width: 280px;
    margin: 0 auto;
}

@media (max-width: 768px) {
    .service-detail-section { padding: 60px 0; }
    .service-detail-inner { max-width: 100%; }
    .service-includes-grid { grid-template-columns: 1fr; gap: 24px; max-width: 380px; }
    .service-includes-grid-4 { grid-template-columns: repeat(2, 1fr); gap: 24px; max-width: 460px; }
    .service-detail-intro { margin-bottom: 36px; }
}

@media (max-width: 480px) {
    .service-detail-section { padding: 48px 0; }
    .service-includes-grid-4 { grid-template-columns: 1fr; max-width: 320px; }
    .service-detail-intro { font-size: 0.9rem; }
}

/* ============================================
   SERVICE PAGES - BEFORE/AFTER SLIDER WRAP
   ============================================ */

.service-ba-wrap {
    position: relative;
    width: 100%;
    max-width: 700px;
    aspect-ratio: 16 / 10;
    margin: 0 auto;
    border-radius: 6px;
    overflow: hidden;
    border: 1px solid rgba(200, 168, 78, 0.15);
}

.service-ba-wrap .ba-slider {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 0;
}

.service-ba-wrap .ba-after,
.service-ba-wrap .ba-before {
    border-radius: 0;
}

/* ============================================
   SERVICE PAGES - INCLUDED / EXTRA BADGES
   ============================================ */

.service-badge {
    display: inline-block;
    margin-top: 12px;
    font-family: var(--font-primary);
    font-size: 0.65rem;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    padding: 4px 12px;
    border-radius: 3px;
}

.service-badge-included {
    color: var(--color-gold);
    background-color: rgba(200, 168, 78, 0.1);
    border: 1px solid rgba(200, 168, 78, 0.25);
}

.service-badge-extra {
    color: rgba(255, 255, 255, 0.5);
    background-color: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.12);
}

@media (max-width: 768px) {
    .service-ba-wrap {
        max-width: 100%;
    }
}
