/* ============================================================
   MUTUAL MEDIATION — style.css
   Brand: Gold (#C9A84C / #E8C56D) on Dark Charcoal (#141414)
   Fonts: Cormorant Garamond (display) + DM Sans (body)
============================================================ */

/* ---- CSS Variables ---- */
:root {
    --gold: #c9a84c;
    --gold-light: #e8c56d;
    --gold-pale: #f5e6c0;
    --gold-dark: #a07a2a;
    --charcoal: #141414;
    --charcoal-2: #1c1c1c;
    --charcoal-3: #242424;
    --charcoal-4: #2e2e2e;
    --charcoal-5: #3a3a3a;
    --white: #ffffff;
    --off-white: #f7f4ee;
    --text-muted: #9a8f7e;
    --text-light: #bbbbbb;
    --border: rgba(201, 168, 76, 0.18);
    --border-light: rgba(255, 255, 255, 0.07);
    --shadow-sm: 0 2px 16px rgba(0, 0, 0, 0.35);
    --shadow-md: 0 8px 40px rgba(0, 0, 0, 0.45);
    --shadow-gold: 0 8px 40px rgba(201, 168, 76, 0.2);
    --radius-sm: 6px;
    --radius-md: 12px;
    --radius-lg: 20px;
    --radius-xl: 32px;
    --transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    --font-display: "Cormorant Garamond", Georgia, serif;
    --font-body: "DM Sans", sans-serif;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    background: var(--charcoal);
    color: var(--off-white);
    overflow-x: hidden;
    font-size: 16px;
    line-height: 1.7;
    -webkit-font-smoothing: antialiased;
}

::selection {
    background: var(--gold);
    color: var(--charcoal);
}

a {
    color: inherit;
    text-decoration: none;
    transition: var(--transition);
}
img {
    max-width: 100%;
    display: block;
}

/* ─── Floating Buttons ──────────────────────────────────── */
#backToTop {
    position: fixed;
    bottom: 32px;
    left: 32px;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--gold-dark), var(--gold));
    color: var(--black);
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    cursor: pointer;
    z-index: 999;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.2s ease-in-out;
    box-shadow: 0 4px 20px rgba(201, 168, 76, 0.4);
    color: var(--charcoal);
}
#backToTop.visible {
    opacity: 1;
    transform: translateY(0);
}
#backToTop:hover {
    background: linear-gradient(135deg, var(--gold), var(--gold-light));
    transform: translateY(-4px);
}

#whatsappBtn {
    position: fixed;
    bottom: 32px;
    right: 32px;
    z-index: 999;
}
#whatsappBtn a {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 20px;
    background: #25d366;
    color: var(--black);
    border-radius: 30px;
    font-weight: 600;
    font-size: 0.85rem;
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
    transition: all 0.2s ease-in-out;
    color: var(--charcoal);
}
#whatsappBtn a:hover {
    background: #1da851;
    transform: translateY(-4px);
    box-shadow: 0 6px 24px rgba(37, 211, 102, 0.5);
}
#whatsappBtn i {
    font-size: 1.2rem;
}

/* ============================================================
   TOP BAR
============================================================ */
.topbar {
    background: var(--charcoal-2);
    border-bottom: 1px solid var(--border);
    padding: 9px 0;
    font-size: 13px;
}
.topbar-link {
    color: var(--text-light);
    letter-spacing: 0.02em;
    font-weight: 300;
}
.topbar-link:hover {
    color: var(--gold);
}
.topbar-hours {
    color: var(--text-muted);
    font-size: 12px;
}

.topbar-social a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 28px;
    height: 28px;
    border: 1px solid var(--border);
    border-radius: 50%;
    color: var(--text-muted);
    font-size: 11px;
    transition: var(--transition);
}
.topbar-social a:hover {
    background: var(--gold);
    border-color: var(--gold);
    color: var(--charcoal);
}

/* ============================================================
   NAVIGATION
============================================================ */
.main-navbar {
    background: rgba(20, 20, 20, 0.92);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-bottom: 1px solid var(--border);
    padding: 14px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    transition: var(--transition);
}
.main-navbar.scrolled {
    padding: 10px 0;
    background: rgba(20, 20, 20, 0.98);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.5);
}

/* Brand Logo */
.brand-logo {
    display: flex;
    align-items: center;
    gap: 12px;
}
.brand-icon {
    width: 42px;
    height: 42px;
    background: linear-gradient(135deg, var(--gold-dark), var(--gold));
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--charcoal);
    font-size: 18px;
    flex-shrink: 0;
}
.brand-text {
    display: flex;
    flex-direction: column;
    line-height: 1.1;
}
.brand-name {
    font-family: var(--font-display);
    font-size: 22px;
    font-weight: 700;
    color: var(--white);
    letter-spacing: 0.04em;
}
.brand-sub {
    font-size: 10px;
    font-weight: 500;
    color: var(--gold);
    letter-spacing: 0.2em;
    text-transform: uppercase;
}

/* Nav Links */
.main-navbar .nav-link {
    color: var(--text-light);
    font-size: 14px;
    font-weight: 400;
    letter-spacing: 0.04em;
    padding: 8px 12px !important;
    position: relative;
    transition: var(--transition);
}
.main-navbar .nav-link::after {
    content: "";
    position: absolute;
    bottom: 4px;
    left: 12px;
    right: 12px;
    height: 1px;
    background: var(--gold);
    transform: scaleX(0);
    transition: transform 0.3s ease;
    transform-origin: left;
}
.main-navbar .nav-link:hover,
.main-navbar .nav-link.active {
    color: var(--gold);
}
.main-navbar .nav-link:hover::after,
.main-navbar .nav-link.active::after {
    transform: scaleX(1);
}

.btn-nav-contact {
    background: linear-gradient(
        135deg,
        var(--gold-dark),
        var(--gold)
    ) !important;
    color: var(--charcoal) !important;
    font-weight: 600 !important;
    border-radius: var(--radius-sm) !important;
    padding: 10px 22px !important;
    letter-spacing: 0.04em;
}
.btn-nav-contact::after {
    display: none !important;
}
.btn-nav-contact:hover {
    background: linear-gradient(
        135deg,
        var(--gold),
        var(--gold-light)
    ) !important;
    transform: translateY(-1px);
    box-shadow: var(--shadow-gold);
}

/* Mobile Toggle */
.navbar-toggler {
    border: 1px solid var(--border);
    background: transparent;
    padding: 8px;
    border-radius: var(--radius-sm);
}
.toggler-icon {
    display: flex;
    flex-direction: column;
    gap: 5px;
    width: 22px;
}
.toggler-icon span {
    display: block;
    height: 2px;
    background: var(--gold);
    border-radius: 2px;
    transition: var(--transition);
}

.navbar-nav .nav-link.active,
.navbar-nav .nav-link.show {
    color: var(--gold);
}
.main-navbar .nav-link.dropdown-toggle::after {
    display: none;
}

.dropdown-menu {
    background: var(--charcoal);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 0.5rem;
    min-width: 240px;
    box-shadow: var(--shadow-dark);
    margin-top: 8px;
    border-radius: 5px;
}
.dropdown-item {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.85rem;
    font-weight: 500;
    padding: 10px 14px;
    border: none;
    border-radius: 4px;
    transition: all var(--transition);
    display: flex;
    align-items: center;
}

.dropdown-item:hover,
.dropdown-item:focus,
.dropdown-item:active,
.dropdown-item:focus-visible {
    background: rgba(184, 151, 46, 0.15);
    color: var(--gold);
    border: none;
}
.dropdown-divider {
    border-color: var(--border);
}

/* ============================================================
   SECTION UTILITIES
============================================================ */
.section-pad {
    padding: 100px 0;
}

.section-label {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 16px;
}
.section-label.centered {
    justify-content: center;
}
.label-line {
    display: block;
    width: 40px;
    height: 1px;
    background: linear-gradient(to right, transparent, var(--gold));
}
.section-label.centered .label-line:last-child {
    background: linear-gradient(to left, transparent, var(--gold));
}

.section-title {
    font-family: var(--font-display);
    font-size: clamp(2rem, 3.5vw, 3.2rem);
    font-weight: 600;
    color: var(--white);
    line-height: 1.2;
    margin-bottom: 20px;
}
.section-title em {
    font-style: italic;
    color: var(--gold);
}
.section-subtitle {
    font-size: 16px;
    color: var(--text-muted);
    max-width: 600px;
    margin: 0 auto;
}
.section-body {
    font-size: 16px;
    color: var(--text-light);
    line-height: 1.8;
    max-width: 560px;
}
.section-header {
    margin-bottom: 10px;
}

/* ============================================================
   BUTTONS
============================================================ */
.btn-gold {
    background: linear-gradient(135deg, var(--gold-dark), var(--gold));
    color: var(--charcoal);
    font-weight: 600;
    font-size: 14px;
    letter-spacing: 0.05em;
    padding: 14px 32px;
    border-radius: var(--radius-sm);
    border: none;
    display: inline-flex;
    align-items: center;
    transition: var(--transition);
}
.btn-gold:hover {
    background: linear-gradient(135deg, var(--gold), var(--gold-light));
    color: var(--charcoal);
    transform: translateY(-2px);
    box-shadow: var(--shadow-gold);
}
.btn-gold-outline {
    background: transparent;
    color: var(--gold);
    font-weight: 600;
    font-size: 14px;
    letter-spacing: 0.05em;
    padding: 13px 32px;
    border-radius: var(--radius-sm);
    border: 1px solid var(--gold);
    display: inline-flex;
    align-items: center;
    transition: var(--transition);
}
.btn-gold-outline:hover {
    background: var(--gold);
    color: var(--charcoal);
    transform: translateY(-2px);
    box-shadow: var(--shadow-gold);
}

/* ============================================================
   FORM ELEMENTS
============================================================ */
.form-floating-custom {
    position: relative;
    margin-bottom: 4px;
}
.form-floating-custom input,
.form-floating-custom select,
.form-floating-custom textarea {
    width: 100%;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-sm);
    color: var(--white);
    font-family: var(--font-body);
    font-size: 14px;
    padding: 14px 16px 14px 40px;
    outline: none;
    transition: var(--transition);
    -webkit-appearance: none;
    appearance: none;
}
.form-floating-custom textarea {
    min-height: 90px;
    resize: vertical;
}
.form-floating-custom select {
    cursor: pointer;
}
.form-floating-custom select option {
    background: var(--charcoal-3);
    color: var(--white);
}

.form-floating-custom input::placeholder,
.form-floating-custom textarea::placeholder {
    color: transparent;
}

.form-floating-custom label {
    position: absolute;
    top: 50%;
    left: 12px;
    transform: translateY(-50%);
    font-size: 13px;
    color: var(--text-muted);
    pointer-events: none;
    transition: var(--transition);
    display: flex;
    align-items: center;
    gap: 6px;
    white-space: nowrap;
}
.form-floating-custom textarea + label {
    top: 20px;
    transform: none;
}

.form-floating-custom input:focus,
.form-floating-custom select:focus,
.form-floating-custom textarea:focus {
    border-color: var(--gold);
    background: rgba(201, 168, 76, 0.06);
    box-shadow: 0 0 0 3px rgba(201, 168, 76, 0.1);
}
.form-floating-custom input:focus ~ label,
.form-floating-custom input:not(:placeholder-shown) ~ label,
.form-floating-custom select:focus ~ label,
.form-floating-custom select:valid ~ label,
.form-floating-custom textarea:focus ~ label,
.form-floating-custom textarea:not(:placeholder-shown) ~ label {
    top: -8px;
    left: 10px;
    transform: none;
    font-size: 10px;
    font-weight: 600;
    letter-spacing: 0.1em;
    color: var(--gold);
    background: var(--charcoal);
    padding: 0 6px;
}
.field-focus-line {
    position: absolute;
    bottom: 0;
    left: 0;
    height: 2px;
    width: 0;
    background: var(--gold);
    border-radius: 0 0 var(--radius-sm) var(--radius-sm);
    transition: width 0.3s ease;
}
.form-floating-custom input:focus ~ .field-focus-line,
.form-floating-custom select:focus ~ .field-focus-line,
.form-floating-custom textarea:focus ~ .field-focus-line {
    width: 100%;
}

.btn-form-submit {
    background: linear-gradient(135deg, var(--gold-dark), var(--gold));
    color: var(--charcoal);
    font-weight: 700;
    font-size: 15px;
    letter-spacing: 0.06em;
    padding: 15px;
    border-radius: var(--radius-sm);
    border: none;
    cursor: pointer;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1; /* important */
}
.btn-form-submit::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, var(--gold), var(--gold-light));
    opacity: 0;
    transition: opacity 0.3s;
    z-index: 0; /* behind text */
}
.btn-form-submit:hover::before {
    opacity: 1;
    inset: 1;
}
.btn-form-submit > * {
    position: relative;
    z-index: 2;
}
.btn-form-submit:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-gold);
}

.form-note {
    text-align: center;
    font-size: 11px;
    color: var(--text-muted);
    margin-top: 12px;
    margin-bottom: 0;
}

.form-alert {
    margin-top: 12px;
    font-size: 13px;
    border-radius: var(--radius-sm);
    padding: 10px 14px;
    display: none;
}
.form-alert.success {
    display: block;
    background: rgba(40, 167, 69, 0.15);
    border: 1px solid rgba(40, 167, 69, 0.3);
    color: #6fcf97;
}
.form-alert.error {
    display: block;
    background: rgba(220, 53, 69, 0.15);
    border: 1px solid rgba(220, 53, 69, 0.3);
    color: #eb5757;
}

/* ============================================================
   HERO SECTION
============================================================ */
.hero-section {
    min-height: 100vh;
    background: var(--charcoal);
    position: relative;
    display: flex;
    align-items: center;
    overflow: hidden;
}
.hero-bg-overlay {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(
            ellipse 60% 70% at 10% 50%,
            rgba(201, 168, 76, 0.07) 0%,
            transparent 60%
        ),
        radial-gradient(
            ellipse 40% 50% at 80% 20%,
            rgba(201, 168, 76, 0.04) 0%,
            transparent 50%
        ),
        linear-gradient(180deg, var(--charcoal-2) 0%, var(--charcoal) 100%);
    pointer-events: none;
}
.hero-particles {
    position: absolute;
    inset: 0;
    pointer-events: none;
    overflow: hidden;
}

.hero-content-col {
    padding: 120px 0 80px 0;
}
.hero-content {
    max-width: 600px;
}

.hero-label {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 12px;
    font-weight: 500;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 24px;
}
.label-dot {
    width: 8px;
    height: 8px;
    background: var(--gold);
    border-radius: 50%;
    animation: pulse-dot 2s infinite;
}
@keyframes pulse-dot {
    0%,
    100% {
        opacity: 1;
        transform: scale(1);
    }
    50% {
        opacity: 0.5;
        transform: scale(1.4);
    }
}

.hero-title {
    font-family: var(--font-display);
    font-size: clamp(3rem, 6vw, 5.5rem);
    font-weight: 700;
    line-height: 1;
    color: var(--white);
    margin-bottom: 16px;
}
.hero-title em {
    font-style: italic;
    color: var(--gold);
    display: block;
}
.hero-title .title-line {
    display: block;
    color: var(--white);
    -webkit-text-stroke: 1px rgba(255, 255, 255, 0.2);
    color: transparent;
}
.hero-subtitle {
    font-size: 18px;
    font-weight: 300;
    color: var(--text-muted);
    letter-spacing: 0.08em;
    margin-bottom: 20px;
}
.hero-body {
    font-size: 15px;
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 0;
}

/* Hero Stats */
.hero-stats {
    align-items: center;
}
.stat-pill {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}
.stat-num {
    font-family: var(--font-display);
    font-size: 2.4rem;
    font-weight: 700;
    color: var(--gold);
    line-height: 1;
}
.stat-pct,
.stat-plus {
    font-size: 1.4rem;
    color: var(--gold);
    font-weight: 600;
}
.stat-label {
    font-size: 11px;
    color: var(--text-muted);
    letter-spacing: 0.06em;
    margin-top: 2px;
}
.stat-divider {
    width: 1px;
    height: 50px;
    background: var(--border);
}

/* Hero CTA */
.btn-hero-primary {
    background: linear-gradient(135deg, var(--gold-dark), var(--gold));
    color: var(--charcoal) !important;
    font-weight: 700;
    font-size: 14px;
    letter-spacing: 0.05em;
    padding: 15px 32px;
    border-radius: var(--radius-sm);
    border: none;
    transition: var(--transition);
    display: inline-flex;
    align-items: center;
}
.btn-hero-primary:hover {
    background: linear-gradient(135deg, var(--gold), var(--gold-light));
    transform: translateY(-2px);
    box-shadow: var(--shadow-gold);
}
.btn-hero-outline {
    background: transparent;
    color: var(--off-white) !important;
    font-weight: 500;
    font-size: 14px;
    letter-spacing: 0.05em;
    padding: 14px 28px;
    border-radius: var(--radius-sm);
    border: 1px solid rgba(255, 255, 255, 0.15);
    display: inline-flex;
    align-items: center;
    transition: var(--transition);
}
.btn-hero-outline:hover {
    border-color: var(--gold);
    color: var(--gold) !important;
    background: rgba(201, 168, 76, 0.05);
}

/* Hero Form */
.hero-form-col {
    padding: 60px 0 60px 40px;
}
.hero-form-wrapper {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 40px;
    backdrop-filter: blur(12px);
    position: relative;
    overflow: hidden;
}
.hero-form-wrapper::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(
        to right,
        var(--gold-dark),
        var(--gold),
        var(--gold-light)
    );
}

.form-header {
    text-align: center;
    margin-bottom: 28px;
}
.form-header-icon {
    width: 56px;
    height: 56px;
    background: linear-gradient(135deg, var(--gold-dark), var(--gold));
    border-radius: var(--radius-md);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    color: var(--charcoal);
    margin-bottom: 12px;
}
.form-header h3 {
    font-family: var(--font-display);
    font-size: 1.8rem;
    font-weight: 600;
    color: var(--white);
    margin-bottom: 6px;
}
.form-header p {
    font-size: 13px;
    color: var(--text-muted);
    margin: 0;
}

/* Scroll Indicator */
.hero-scroll-indicator {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    font-size: 10px;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--text-muted);
}
.scroll-line {
    width: 1px;
    height: 50px;
    background: rgba(255, 255, 255, 0.1);
    position: relative;
    overflow: hidden;
}
.scroll-dot {
    position: absolute;
    top: -6px;
    left: 50%;
    transform: translateX(-50%);
    width: 4px;
    height: 4px;
    background: var(--gold);
    border-radius: 50%;
    animation: scroll-drop 2s infinite ease-in-out;
}
@keyframes scroll-drop {
    0% {
        top: -6px;
        opacity: 1;
    }
    100% {
        top: 56px;
        opacity: 0;
    }
}

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

.about-img-wrapper {
    position: relative;
    padding: 20px 20px 40px 0;
}
.about-img-frame {
    border-radius: var(--radius-lg);
    overflow: hidden;
    position: relative;
}
.about-img-frame::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to bottom right,
        transparent 60%,
        rgba(201, 168, 76, 0.12)
    );
    z-index: 1;
}
.about-img {
    width: 100%;
    height: 520px;
    object-fit: cover;
    display: block;
}
.about-img-badge {
    position: absolute;
    top: 0;
    right: -10px;
    background: linear-gradient(135deg, var(--gold-dark), var(--gold));
    border-radius: var(--radius-md);
    padding: 20px 24px;
    text-align: center;
    box-shadow: var(--shadow-gold);
    z-index: 2;
}
.badge-num {
    display: block;
    font-family: var(--font-display);
    font-size: 2.4rem;
    font-weight: 700;
    color: var(--charcoal);
    line-height: 1;
}
.badge-txt {
    font-size: 12px;
    font-weight: 600;
    color: rgba(20, 20, 20, 0.7);
}
.about-img-deco {
    position: absolute;
    border: 2px solid var(--gold);
    border-radius: var(--radius-md);
    opacity: 0.25;
}
.deco-1 {
    top: 0;
    right: 5px;
    width: 100px;
    height: 100px;
}
.deco-2 {
    bottom: 30px;
    left: -15px;
    width: 70px;
    height: 70px;
    border-style: dashed;
}

/* About Features */
.about-features {
    display: flex;
    flex-direction: column;
    gap: 20px;
}
.feature-item {
    display: flex;
    gap: 16px;
    align-items: flex-start;
    padding: 16px;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    transition: var(--transition);
}
.feature-item:hover {
    background: rgba(201, 168, 76, 0.05);
    border-color: var(--gold);
    transform: translateX(6px);
}
.feature-icon-wrap {
    width: 42px;
    height: 42px;
    background: linear-gradient(135deg, var(--gold-dark), var(--gold));
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    color: var(--charcoal);
    flex-shrink: 0;
}
.feature-text h5 {
    font-size: 15px;
    font-weight: 600;
    color: var(--white);
    margin-bottom: 4px;
}
.feature-text p {
    font-size: 13px;
    color: var(--text-muted);
    margin: 0;
    line-height: 1.6;
}

/* ============================================================
   PROCESS SECTION
============================================================ */
.process-section {
    background: var(--charcoal);
    position: relative;
    overflow: hidden;
}
.process-bg-pattern {
    position: absolute;
    inset: 0;
    background-image: radial-gradient(
        rgba(201, 168, 76, 0.04) 1px,
        transparent 1px
    );
    background-size: 30px 30px;
    pointer-events: none;
}

.process-steps {
    position: relative;
}

.process-connector {
    position: absolute;
    top: 80px;
    left: 25%;
    right: 25%;
    height: 1px;
    background: linear-gradient(
        to right,
        transparent,
        var(--gold),
        transparent
    );
    display: none;
}

@media (min-width: 992px) {
    .process-connector {
        display: none;
    }
}

.process-card {
    background: var(--charcoal-3);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 40px 32px;
    text-align: center;
    position: relative;
    overflow: hidden;
    transition: var(--transition);
    height: 100%;
}
.process-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(
        to right,
        transparent,
        var(--border),
        transparent
    );
    transition: var(--transition);
}
.process-card:hover {
    border-color: var(--gold);
    transform: translateY(-8px);
    box-shadow: var(--shadow-gold);
}
.process-card:hover::before {
    background: linear-gradient(to right, var(--gold-dark), var(--gold));
}
.process-card-featured {
    background: linear-gradient(
        145deg,
        var(--charcoal-3),
        rgba(201, 168, 76, 0.06)
    );
    border-color: rgba(201, 168, 76, 0.4);
}
.process-card-featured::before {
    background: linear-gradient(to right, var(--gold-dark), var(--gold));
}

.process-step-num {
    font-family: var(--font-display);
    font-size: 4rem;
    font-weight: 700;
    color: rgb(201 168 76 / 45%);
    line-height: 1;
    position: absolute;
    top: 16px;
    right: 20px;
}
.process-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--gold-dark), var(--gold));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 26px;
    color: var(--charcoal);
    margin: 0 auto 20px;
    box-shadow: 0 6px 24px rgba(201, 168, 76, 0.3);
}
.process-card h4 {
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--white);
    margin-bottom: 12px;
}
.process-card p {
    font-size: 14px;
    color: var(--text-light);
    line-height: 1.7;
}
.process-tag {
    display: inline-block;
    margin-top: 16px;
    background: rgba(201, 168, 76, 0.1);
    border: 1px solid rgba(201, 168, 76, 0.25);
    color: var(--gold);
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    padding: 5px 14px;
    border-radius: 100px;
}

/* ============================================================
   TEAM SECTION
============================================================ */
.team-section {
    background: var(--charcoal-2);
}

.team-card {
    background: var(--charcoal-3);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    overflow: hidden;
    transition: var(--transition);
}
.team-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-gold);
    border-color: var(--gold);
}

.team-img-wrap {
    position: relative;
    overflow: hidden;
}
.team-img-wrap img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    transition: transform 0.5s ease;
}
.team-card:hover .team-img-wrap img {
    transform: scale(1.05);
}

.team-overlay {
    position: absolute;
    inset: 0;
    background: rgba(20, 20, 20, 0.7);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: var(--transition);
}
.team-card:hover .team-overlay {
    opacity: 1;
}
.team-social {
    display: flex;
    gap: 12px;
}
.team-social a {
    width: 40px;
    height: 40px;
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 14px;
    transition: var(--transition);
    transform: translateY(10px);
    opacity: 0;
}
.team-card:hover .team-social a {
    opacity: 1;
    transform: translateY(0);
}
.team-card:hover .team-social a:nth-child(2) {
    transition-delay: 0.1s;
}
.team-social a:hover {
    background: var(--gold);
    border-color: var(--gold);
    color: var(--charcoal);
}

.team-info {
    padding: 20px;
}
.team-accreditation {
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 8px;
}
.team-info h5 {
    font-size: 17px;
    font-weight: 600;
    color: var(--white);
    margin-bottom: 2px;
}
.team-info > p {
    font-size: 13px;
    color: var(--text-muted);
    margin-bottom: 12px;
}
.team-expertise {
    display: flex;
    gap: 6px;
    flex-wrap: wrap;
}
.team-expertise span {
    font-size: 11px;
    padding: 3px 10px;
    background: rgba(201, 168, 76, 0.1);
    border: 1px solid rgba(201, 168, 76, 0.2);
    border-radius: 100px;
    color: var(--gold);
    font-weight: 500;
}

/* Team Swiper Custom */
#teamSwiper {
    padding-bottom: 50px !important;
}
.team-pagination .swiper-pagination-bullet {
    width: 8px;
    height: 8px;
    background: var(--charcoal-5);
    opacity: 1;
    transition: var(--transition);
}
.team-pagination .swiper-pagination-bullet-active {
    background: var(--gold);
    width: 24px;
    border-radius: 4px;
}
.team-prev,
.team-next {
    width: 44px;
    height: 44px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--border);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gold);
    font-size: 14px;
    cursor: pointer;
    transition: var(--transition);
    top: auto;
    bottom: 0;
}
.team-prev {
    left: calc(50% - 56px);
}
.team-next {
    right: calc(50% - 56px);
}
.team-prev:hover,
.team-next:hover {
    background: var(--gold);
    border-color: var(--gold);
    color: var(--charcoal);
}
.team-prev::after,
.team-next::after {
    display: none;
}

/* ============================================================
   SERVICES SECTION
============================================================ */
.services-section {
    background: var(--charcoal);
    position: relative;
    overflow: hidden;
}
.services-bg {
    position: absolute;
    inset: 0;
    background: radial-gradient(
        ellipse 70% 60% at 100% 100%,
        rgba(201, 168, 76, 0.05) 0%,
        transparent 60%
    );
    pointer-events: none;
}

.service-card {
    background: var(--charcoal-3);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 36px 28px;
    position: relative;
    overflow: hidden;
    transition: var(--transition);
    height: 100%;
    display: flex;
    flex-direction: column;
}
.service-card::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(to right, var(--gold-dark), var(--gold));
    transform: scaleX(0);
    transition: transform 0.3s ease;
    transform-origin: left;
}
.service-card:hover {
    border-color: var(--gold);
    transform: translateY(-8px);
    box-shadow: var(--shadow-gold);
}
.service-card:hover::after {
    transform: scaleX(1);
}
.service-card-featured {
    background: linear-gradient(
        145deg,
        var(--charcoal-3),
        rgba(201, 168, 76, 0.08)
    );
    border-color: rgba(201, 168, 76, 0.5);
}
.service-card-featured::after {
    transform: scaleX(1);
}

.service-badge {
    position: absolute;
    top: 16px;
    right: 16px;
    background: var(--gold);
    color: var(--charcoal);
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    padding: 4px 12px;
    border-radius: 100px;
}
.service-num {
    font-family: var(--font-display);
    font-size: 3.5rem;
    font-weight: 700;
    color: rgba(201, 168, 76, 0.08);
    line-height: 1;
    margin-bottom: -10px;
}
.service-icon-wrap {
    width: 52px;
    height: 52px;
    background: linear-gradient(135deg, var(--gold-dark), var(--gold));
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    color: var(--charcoal);
    margin-bottom: 16px;
}
.service-card h4 {
    font-family: var(--font-display);
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--white);
    margin-bottom: 10px;
}
.service-card > p {
    font-size: 13px;
    color: var(--text-light);
    line-height: 1.7;
    margin-bottom: 16px;
}

.service-list {
    list-style: none;
    padding: 0;
    margin: 0 0 20px;
    flex: 1;
}
.service-list li {
    font-size: 13px;
    color: var(--text-light);
    padding: 5px 0;
    display: flex;
    align-items: center;
    gap: 8px;
    border-bottom: 1px solid var(--border-light);
}
.service-list li:last-child {
    border: none;
}
.service-list li i {
    color: var(--gold);
    font-size: 11px;
}
.service-link i {
    transition: var(--transition);
}
.service-link {
    font-size: 13px;
    font-weight: 600;
    color: var(--gold);
    letter-spacing: 0.05em;
    display: flex;
    gap: 0px;
    align-items: center;
    transition: var(--transition);
    margin-top: auto;
}
.service-link:hover {
    color: var(--gold-light);
    gap: 6px;
    transition: var(--transition);
}

/* ============================================================
   SPLIT BOOKING SECTION
============================================================ */
.split-booking-section {
    background: var(--charcoal-2);
}

.split-content-wrap {
    padding: 80px 60px 80px 0;
    max-width: 580px;
}
.split-benefits {
    list-style: none;
    padding: 0;
}
.split-benefits li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 10px 0;
    font-size: 14px;
    color: var(--text-light);
    border-bottom: 1px solid var(--border-light);
}
.split-benefits li:last-child {
    border: none;
}
.split-benefits li i {
    color: var(--gold);
    margin-top: 3px;
    flex-shrink: 0;
}

.split-contact-row {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}
.split-contact-item {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 14px 20px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    flex: 1;
    min-width: 180px;
    transition: var(--transition);
}
.split-contact-item:hover {
    border-color: var(--gold);
    background: rgba(201, 168, 76, 0.05);
}
.split-contact-icon {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, var(--gold-dark), var(--gold));
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    color: var(--charcoal);
    flex-shrink: 0;
}
.split-contact-item span {
    display: block;
    font-size: 11px;
    color: var(--text-muted);
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.08em;
}
.split-contact-item strong {
    display: block;
    font-size: 13px;
    color: var(--white);
    font-weight: 600;
}

.split-form-wrap {
    background: var(--charcoal-3);
    border-left: 1px solid var(--border);
    padding: 80px 60px;
    height: 100%;
    position: relative;
}
.split-form-wrap::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    width: 3px;
    background: linear-gradient(
        to bottom,
        transparent,
        var(--gold),
        transparent
    );
}
.split-form-title {
    font-family: var(--font-display);
    font-size: 2rem;
    font-weight: 600;
    color: var(--white);
    margin-bottom: 28px;
}

/* ============================================================
   TESTIMONIALS SECTION
============================================================ */
.testimonials-section {
    background: var(--charcoal);
    position: relative;
    overflow: hidden;
}
.testi-bg-accent {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 300px;
    background: linear-gradient(
        to bottom,
        rgba(201, 168, 76, 0.03),
        transparent
    );
    pointer-events: none;
}

.testi-card {
    background: var(--charcoal-3);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 40px;
    position: relative;
    overflow: hidden;
    transition: var(--transition);
}
.testi-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(to right, var(--gold-dark), var(--gold));
    transform: scaleX(0);
    transition: transform 0.3s ease;
    transform-origin: left;
}
.testi-card:hover {
    border-color: var(--gold);
}
.testi-card:hover::before {
    transform: scaleX(1);
}

.testi-quote {
    font-size: 2.5rem;
    color: rgba(201, 168, 76, 0.15);
    line-height: 1;
    margin-bottom: 16px;
}
.testi-text {
    font-family: var(--font-display);
    font-size: 1.1rem;
    font-style: italic;
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 24px;
}
.testi-meta {
    display: flex;
    align-items: center;
    gap: 14px;
}
.testi-avatar {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    overflow: hidden;
    border: 2px solid var(--gold);
    flex-shrink: 0;
}
.testi-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.testi-info strong {
    display: block;
    font-size: 14px;
    color: var(--white);
    font-weight: 600;
}
.testi-info span {
    display: block;
    font-size: 12px;
    color: var(--text-muted);
}
.testi-stars {
    color: var(--gold);
    font-size: 12px;
    margin-top: 3px;
    letter-spacing: 2px;
}

/* Testi Swiper */
#testiSwiper {
    padding-bottom: 50px !important;
}
.testi-pagination .swiper-pagination-bullet {
    width: 8px;
    height: 8px;
    background: var(--charcoal-5);
    opacity: 1;
}
.testi-pagination .swiper-pagination-bullet-active {
    background: var(--gold);
    width: 24px;
    border-radius: 4px;
}

.testi-nav,
.team-nav {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-top: 20px;
}

.testi-btn {
    width: 44px;
    height: 44px;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid var(--border);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gold);
    font-size: 14px;
    cursor: pointer;
    transition: var(--transition);
}
.testi-btn:hover {
    background: var(--gold);
    border-color: var(--gold);
    color: var(--charcoal);
}

/* ============================================================
   BLOG SECTION
============================================================ */
.blog-section {
    background: var(--charcoal-2);
}

.blog-card {
    background: var(--charcoal-3);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    overflow: hidden;
    transition: var(--transition);
    height: 100%;
    display: flex;
    flex-direction: column;
}
.blog-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-gold);
    border-color: var(--gold);
}

.blog-img-wrap {
    position: relative;
    overflow: hidden;
}
.blog-img-wrap img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    transition: transform 0.5s ease;
}
.blog-card:hover .blog-img-wrap img {
    transform: scale(1.05);
}
.blog-category {
    position: absolute;
    top: 16px;
    left: 16px;
    background: var(--gold);
    color: var(--charcoal);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    padding: 4px 12px;
    border-radius: 100px;
}
.blog-body {
    padding: 24px;
    flex: 1;
    display: flex;
    flex-direction: column;
}
.blog-date {
    font-size: 12px;
    color: var(--text-muted);
    margin-bottom: 10px;
}
.blog-body h5 {
    font-family: var(--font-display);
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--white);
    line-height: 1.4;
    margin-bottom: 10px;
}
.blog-body > p {
    font-size: 13px;
    color: var(--text-light);
    line-height: 1.7;
    flex: 1;
}
.blog-read-more {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 13px;
    font-weight: 600;
    color: var(--gold);
    margin-top: 16px;
    transition: var(--transition);
}
.blog-read-more:hover {
    color: var(--gold-light);
    gap: 10px;
}

/* ============================================================
   CTA BANNER
============================================================ */
.cta-banner {
    background: var(--charcoal);
    position: relative;
    overflow: hidden;
    padding: 120px 0;
}
.cta-overlay {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(
            ellipse 70% 80% at 50% 50%,
            rgba(201, 168, 76, 0.1) 0%,
            transparent 60%
        ),
        linear-gradient(135deg, var(--charcoal) 0%, var(--charcoal-2) 100%);
    pointer-events: none;
}
.cta-particles {
    position: absolute;
    inset: 0;
    pointer-events: none;
    overflow: hidden;
}

.cta-content {
    position: relative;
    z-index: 1;
}
.cta-badge {
    display: inline-flex;
    align-items: center;
    background: rgba(201, 168, 76, 0.12);
    border: 1px solid rgba(201, 168, 76, 0.3);
    color: var(--gold);
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    padding: 8px 20px;
    border-radius: 100px;
    margin-bottom: 24px;
}
.cta-content h2 {
    font-family: var(--font-display);
    font-size: clamp(2.5rem, 5vw, 4.5rem);
    font-weight: 700;
    color: var(--white);
    line-height: 1.1;
    margin-bottom: 20px;
}
.cta-content h2 em {
    font-style: italic;
    color: var(--gold);
}
.cta-content > p {
    font-size: 17px;
    color: var(--text-light);
    max-width: 600px;
    margin: 0 auto 32px;
}

.btn-cta-primary {
    background: linear-gradient(135deg, var(--gold-dark), var(--gold));
    color: var(--charcoal) !important;
    font-weight: 700;
    font-size: 15px;
    letter-spacing: 0.05em;
    padding: 16px 36px;
    border-radius: var(--radius-sm);
    border: none;
    display: inline-flex;
    align-items: center;
    transition: var(--transition);
}
.btn-cta-primary:hover {
    background: linear-gradient(135deg, var(--gold), var(--gold-light));
    transform: translateY(-2px);
    box-shadow: 0 12px 48px rgba(201, 168, 76, 0.4);
}
.btn-cta-outline {
    background: transparent;
    color: var(--off-white) !important;
    font-weight: 600;
    font-size: 15px;
    letter-spacing: 0.05em;
    padding: 15px 32px;
    border-radius: var(--radius-sm);
    border: 1px solid rgba(255, 255, 255, 0.2);
    display: inline-flex;
    align-items: center;
    transition: var(--transition);
}
.btn-cta-outline:hover {
    border-color: var(--gold);
    color: var(--gold) !important;
    background: rgba(201, 168, 76, 0.05);
}
.cta-small {
    font-size: 13px;
    color: var(--text-muted);
}

/* ============================================================
   FOOTER
============================================================ */
.site-footer {
    background: var(--charcoal-2);
    border-top: 1px solid var(--border);
}
.footer-body {
    padding: 80px 0 60px;
}

.footer-desc {
    font-size: 14px;
    color: var(--text-muted);
    line-height: 1.7;
    max-width: 340px;
}
.footer-address {
    font-size: 13px;
    color: var(--text-muted);
}
.footer-address p {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 6px;
}
.footer-address i {
    color: var(--gold);
    width: 16px;
}
.footer-address a {
    color: var(--text-muted);
}
.footer-address a:hover {
    color: var(--gold);
}

.footer-social {
    display: flex;
    gap: 10px;
}
.social-btn {
    width: 36px;
    height: 36px;
    border: 1px solid var(--border);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-muted);
    font-size: 13px;
    transition: var(--transition);
}
.social-btn:hover {
    background: var(--gold);
    border-color: var(--gold);
    color: var(--charcoal);
}

.footer-heading {
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 20px;
    position: relative;
}
.footer-heading::after {
    content: "";
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 30px;
    height: 1px;
    background: var(--gold);
}

.footer-links {
    list-style: none;
    padding: 0;
}
.footer-links li {
    margin-bottom: 10px;
}
.footer-links a {
    font-size: 14px;
    color: var(--text-muted);
    transition: var(--transition);
}
.footer-links a:hover {
    color: var(--gold);
    padding-left: 6px;
}

/* Newsletter */
.footer-newsletter-text {
    font-size: 14px;
    color: var(--text-muted);
    margin-bottom: 16px;
}
.newsletter-input-group {
    display: flex;
    gap: 0;
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    overflow: hidden;
    transition: var(--transition);
}
.newsletter-input-group:focus-within {
    border-color: var(--gold);
}
.newsletter-input-group input {
    flex: 1;
    background: rgba(255, 255, 255, 0.04);
    border: none;
    padding: 12px 16px;
    color: var(--white);
    font-size: 13px;
    font-family: var(--font-body);
    outline: none;
}
.newsletter-input-group input::placeholder {
    color: var(--text-muted);
}
.newsletter-input-group button {
    background: linear-gradient(135deg, var(--gold-dark), var(--gold));
    border: none;
    padding: 12px 18px;
    color: var(--charcoal);
    cursor: pointer;
    font-size: 14px;
    transition: var(--transition);
}
.newsletter-input-group button:hover {
    background: var(--gold-light);
}

.footer-badge {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}
.badge-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 12px;
    color: var(--text-muted);
    padding: 6px 14px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--border);
    border-radius: 100px;
}
.badge-item i {
    color: var(--gold);
}

.footer-bottom {
    border-top: 1px solid var(--border);
    padding: 20px 0;
}
.footer-bottom p {
    font-size: 13px;
    color: var(--text-muted);
}
.footer-bottom-links {
    display: flex;
    gap: 20px;
}
.footer-bottom-links a {
    font-size: 13px;
    color: var(--text-muted);
    transition: var(--transition);
}
.footer-bottom-links a:hover {
    color: var(--gold);
}

/* ============================================================
   PARTICLES (JS generated)
============================================================ */
.particle {
    position: absolute;
    border-radius: 50%;
    pointer-events: none;
}

/* ============================================================
   AOS OVERRIDES
============================================================ */
[data-aos] {
    pointer-events: none;
}
[data-aos].aos-animate {
    pointer-events: all;
}

/* ============================================================
   RESPONSIVE
============================================================ */
@media (max-width: 1199px) {
    .hero-form-col {
        padding: 40px 0 60px 20px;
    }
    .split-content-wrap {
        padding: 60px 40px 60px 0;
    }
    .split-form-wrap {
        padding: 60px 40px;
    }
}

@media (max-width: 991px) {
    .section-pad {
        padding: 70px 0;
    }
    .hero-content-col {
        padding: 100px 0 40px;
    }
    .hero-form-col {
        padding: 20px 0 80px;
    }
    .hero-title {
        font-size: clamp(2.5rem, 7vw, 4rem);
    }
    .hero-form-wrapper {
        padding: 28px 24px;
    }
    .about-img {
        height: 380px;
    }
    .split-content-wrap {
        padding: 60px 0 40px;
        max-width: 100%;
    }
    .split-form-wrap {
        padding: 40px 0 60px;
        border-left: none;
        border-top: 1px solid var(--border);
    }
    .split-form-wrap::before {
        display: none;
    }
}

@media (max-width: 767px) {
    .section-pad {
        padding: 60px 0;
    }
    .hero-stats {
        flex-wrap: wrap;
        gap: 20px;
    }
    .stat-divider {
        display: none;
    }
    .process-card {
        padding: 30px 22px;
    }
    .hero-form-wrapper {
        padding: 24px 18px;
    }
    .footer-body {
        padding: 60px 0 40px;
    }
    .split-contact-row {
        flex-direction: column;
    }
}

@media (max-width: 575px) {
    .hero-title {
        font-size: 2.8rem;
    }
    .testi-card {
        padding: 24px 20px;
    }
    .blog-body {
        padding: 18px;
    }
    .cta-banner {
        padding: 80px 0;
    }
    .hero-cta-group {
        flex-direction: column;
    }
    .btn-hero-primary,
    .btn-hero-outline {
        justify-content: center;
    }
}

/* ============================================================
   ABOUT PAGE — Additional Styles
   Appended to style.css
============================================================ */

/* ============================================================
   ABOUT HERO
============================================================ */
.about-hero-section {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    overflow: hidden;
}
.about-hero-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
}
.about-hero-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 30%;
    display: block;
}
.about-hero-overlay {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(
            to right,
            rgba(20, 20, 20, 0.92) 40%,
            rgba(20, 20, 20, 0.65) 100%
        ),
        linear-gradient(
            to bottom,
            rgba(20, 20, 20, 0.3) 0%,
            rgba(20, 20, 20, 0.5) 100%
        );
}
.about-hero-particles {
    position: absolute;
    inset: 0;
    pointer-events: none;
    overflow: hidden;
    z-index: 1;
}

/* Breadcrumb */
.about-hero-breadcrumb {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-size: 13px;
    color: var(--text-muted);
    margin-bottom: 24px;
    position: relative;
    z-index: 2;
}
.about-hero-breadcrumb a {
    color: var(--gold);
}
.about-hero-breadcrumb a:hover {
    color: var(--gold-light);
}
.breadcrumb-sep {
    font-size: 10px;
    color: var(--text-muted);
}

/* Hero label */
.about-hero-label {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    font-size: 12px;
    font-weight: 500;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 20px;
    position: relative;
    z-index: 2;
}
.ah-label-dot {
    width: 6px;
    height: 6px;
    background: var(--gold);
    border-radius: 50%;
    opacity: 0.7;
}

/* Hero title */
.about-hero-title {
    font-family: var(--font-display);
    font-size: clamp(3rem, 7vw, 6rem);
    font-weight: 700;
    line-height: 1;
    color: var(--white);
    margin-bottom: 20px;
    position: relative;
    z-index: 2;
}
.about-hero-title em {
    font-style: italic;
    color: var(--gold);
    display: inline;
}

/* Hero tagline */
.about-hero-tagline {
    font-size: 18px;
    font-weight: 300;
    color: var(--text-light);
    max-width: 580px;
    margin: 0 auto;
    line-height: 1.7;
    position: relative;
    z-index: 2;
}

/* Hero CTA */
.about-hero-cta {
    position: relative;
    z-index: 2;
}

/* Wave bottom */
.about-hero-wave {
    position: absolute;
    bottom: -1px;
    left: 0;
    right: 0;
    z-index: 3;
    line-height: 0;
}
.about-hero-wave svg {
    width: 100%;
    height: 80px;
    display: block;
}

/* ============================================================
   STATS STRIP
============================================================ */
.about-stats-strip {
    background: var(--charcoal-2);
    border-bottom: 1px solid var(--border);
    padding: 0;
    position: relative;
    z-index: 2;
}
.astat-item {
    padding: 36px 24px;
    text-align: center;
    position: relative;
}
.astat-bordered {
    border-left: 1px solid var(--border);
    border-right: 1px solid var(--border);
}
.astat-num {
    display: inline-block;
    font-family: var(--font-display);
    font-size: clamp(2.5rem, 4vw, 3.5rem);
    font-weight: 700;
    color: var(--gold);
    line-height: 1;
}
.astat-suf {
    font-family: var(--font-display);
    font-size: 2rem;
    font-weight: 600;
    color: var(--gold);
}
.astat-label {
    display: block;
    font-size: 12px;
    font-weight: 500;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--text-muted);
    margin-top: 8px;
}

/* ============================================================
   WHO WE ARE SECTION
============================================================ */
.who-section {
    background: var(--charcoal-2);
}

/* Image composition */
.who-img-wrap {
    position: relative;
    padding: 20px 0 60px 20px;
}
.who-img-main {
    border-radius: var(--radius-lg);
    overflow: hidden;
    position: relative;
    box-shadow: var(--shadow-md);
}
.who-img-main::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to bottom,
        transparent 60%,
        rgba(20, 20, 20, 0.3)
    );
}
.who-img-main img {
    width: 100%;
    height: 480px;
    object-fit: cover;
    display: block;
    transition: transform 0.6s ease;
}
.who-img-wrap:hover .who-img-main img {
    transform: scale(1.03);
}

/* Secondary small image */
.who-img-secondary {
    position: absolute;
    bottom: 0;
    right: -20px;
    width: 200px;
    border-radius: var(--radius-md);
    overflow: hidden;
    border: 4px solid var(--charcoal-2);
    box-shadow: var(--shadow-md);
    z-index: 2;
}
.who-img-secondary img {
    width: 100%;
    height: 130px;
    object-fit: cover;
    display: block;
}

/* Accent ring */
.who-img-accent-ring {
    position: absolute;
    top: 0;
    left: 0;
    width: 90px;
    height: 90px;
    border: 2px solid var(--gold);
    border-radius: var(--radius-md);
    opacity: 0.2;
}
.who-img-accent-dot {
    position: absolute;
    bottom: 40px;
    left: -10px;
    width: 60px;
    height: 60px;
    border: 1px dashed rgba(201, 168, 76, 0.3);
    border-radius: 50%;
}

/* Trust badge */
.who-trust-badge {
    position: absolute;
    top: 30px;
    right: -10px;
    background: linear-gradient(135deg, var(--gold-dark), var(--gold));
    border-radius: var(--radius-md);
    padding: 14px 18px;
    display: flex;
    align-items: center;
    gap: 12px;
    box-shadow: var(--shadow-gold);
    z-index: 3;
}
.wtb-icon {
    width: 36px;
    height: 36px;
    background: rgba(20, 20, 20, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    color: var(--charcoal);
}
.wtb-text strong {
    display: block;
    font-size: 13px;
    font-weight: 700;
    color: var(--charcoal);
}
.wtb-text span {
    display: block;
    font-size: 11px;
    color: rgba(20, 20, 20, 0.65);
    font-weight: 500;
}

/* Who pillars */
.who-pillars {
    display: flex;
    flex-direction: column;
    gap: 18px;
}
.who-pillar {
    display: flex;
    gap: 16px;
    align-items: flex-start;
    padding: 18px 20px;
    background: rgba(255, 255, 255, 0.025);
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    transition: var(--transition);
}
.who-pillar:hover {
    background: rgba(201, 168, 76, 0.06);
    border-color: rgba(201, 168, 76, 0.4);
    transform: translateX(8px);
}
.wp-icon {
    width: 44px;
    height: 44px;
    background: linear-gradient(135deg, var(--gold-dark), var(--gold));
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    color: var(--charcoal);
    flex-shrink: 0;
}
.wp-body h5 {
    font-size: 15px;
    font-weight: 600;
    color: var(--white);
    margin-bottom: 4px;
}
.wp-body p {
    font-size: 13px;
    color: var(--text-muted);
    margin: 0;
    line-height: 1.6;
}

/* ============================================================
   VALUES / CORE STRENGTHS
============================================================ */
.values-section {
    background: var(--charcoal);
    position: relative;
    overflow: hidden;
}
.values-bg-mesh {
    position: absolute;
    inset: 0;
    background-image: radial-gradient(
        rgba(201, 168, 76, 0.04) 1px,
        transparent 1px
    );
    background-size: 28px 28px;
    pointer-events: none;
}

/* Value cards */
.value-card {
    background: var(--charcoal-3);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 40px 32px 32px;
    position: relative;
    overflow: hidden;
    transition: var(--transition);
    height: 100%;
    display: flex;
    flex-direction: column;
}
.value-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(
        to right,
        transparent,
        var(--border),
        transparent
    );
    transition: var(--transition);
}
.value-card:hover {
    border-color: rgba(201, 168, 76, 0.5);
    transform: translateY(-8px);
    box-shadow: var(--shadow-gold);
}
.value-card:hover::before {
    background: linear-gradient(to right, var(--gold-dark), var(--gold));
}
.value-card-featured {
    background: linear-gradient(
        160deg,
        var(--charcoal-3) 0%,
        rgba(201, 168, 76, 0.07) 100%
    );
    border-color: rgba(201, 168, 76, 0.45);
}
.value-card-featured::before {
    background: linear-gradient(to right, var(--gold-dark), var(--gold));
}
.vc-featured-tag {
    position: absolute;
    top: 18px;
    right: 18px;
    background: var(--gold);
    color: var(--charcoal);
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    padding: 4px 14px;
    border-radius: 100px;
}

.vc-header {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    margin-bottom: 16px;
}
.vc-icon-wrap {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--gold-dark), var(--gold));
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    color: var(--charcoal);
    box-shadow: 0 6px 20px rgba(201, 168, 76, 0.25);
}
.vc-number {
    font-family: var(--font-display);
    font-size: 4rem;
    font-weight: 700;
    color: rgba(201, 168, 76, 0.06);
    line-height: 1;
}

.vc-title {
    font-family: var(--font-display);
    font-size: 1.7rem;
    font-weight: 600;
    color: var(--white);
    margin-bottom: 12px;
    line-height: 1.2;
}
.vc-title em {
    font-style: italic;
    color: var(--gold);
}

.vc-desc {
    font-size: 14px;
    color: var(--text-light);
    line-height: 1.7;
    margin-bottom: 24px;
}

/* Value list items */
.vc-list {
    list-style: none;
    padding: 0;
    margin: 0 0 auto;
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 0;
}
.vc-list li {
    display: flex;
    gap: 12px;
    align-items: flex-start;
    padding: 12px 0;
    border-bottom: 1px solid var(--border-light);
}
.vc-list li:last-child {
    border-bottom: none;
}
.vc-list-icon {
    width: 22px;
    height: 22px;
    background: rgba(201, 168, 76, 0.12);
    border: 1px solid rgba(201, 168, 76, 0.25);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 9px;
    color: var(--gold);
    flex-shrink: 0;
    margin-top: 2px;
}
.vc-list li strong {
    display: block;
    font-size: 13px;
    font-weight: 600;
    color: var(--white);
    margin-bottom: 2px;
}
.vc-list li span {
    font-size: 12px;
    color: var(--text-muted);
    line-height: 1.5;
    display: block;
}

/* Bottom badge */
.vc-badge {
    display: inline-flex;
    align-items: center;
    margin-top: 24px;
    background: rgba(201, 168, 76, 0.08);
    border: 1px solid rgba(201, 168, 76, 0.2);
    color: var(--gold);
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.05em;
    padding: 8px 16px;
    border-radius: 100px;
}

/* Accreditations row */
.accreditations-row {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0;
    flex-wrap: wrap;
    padding: 32px 40px;
    background: rgba(255, 255, 255, 0.025);
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
}
.acc-label {
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--text-muted);
    margin-right: 32px;
    white-space: nowrap;
}
.acc-logos {
    display: flex;
    align-items: center;
    gap: 0;
    flex-wrap: wrap;
    flex: 1;
}
.acc-item {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 8px 24px;
    font-size: 13px;
    color: var(--text-muted);
    font-weight: 500;
    transition: var(--transition);
}
.acc-item i {
    color: var(--gold);
    font-size: 16px;
}
.acc-item:hover {
    color: var(--off-white);
}
.acc-divider {
    width: 1px;
    height: 28px;
    background: var(--border);
}

/* ============================================================
   ABOUT BOOKING SECTION
============================================================ */
.about-booking-section {
    background: var(--charcoal-2);
    position: relative;
    overflow: hidden;
}
.abb-bg-left {
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    width: 50%;
    background: radial-gradient(
        ellipse 80% 60% at 0% 50%,
        rgba(201, 168, 76, 0.04) 0%,
        transparent 70%
    );
    pointer-events: none;
}

.abb-content {
    padding: 80px 60px 80px 0;
    max-width: 580px;
}

/* Promise items */
.abb-promises {
    display: flex;
    flex-direction: column;
    gap: 16px;
}
.abb-promise {
    display: flex;
    gap: 16px;
    align-items: flex-start;
    padding: 16px 18px;
    background: rgba(255, 255, 255, 0.025);
    border: 1px solid var(--border);
    border-left: 3px solid var(--gold);
    border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
    transition: var(--transition);
}
.abb-promise:hover {
    background: rgba(201, 168, 76, 0.05);
    border-color: var(--gold);
    border-left-color: var(--gold);
    transform: translateX(4px);
}
.abp-icon {
    width: 38px;
    height: 38px;
    background: linear-gradient(135deg, var(--gold-dark), var(--gold));
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 15px;
    color: var(--charcoal);
    flex-shrink: 0;
}
.abp-text strong {
    display: block;
    font-size: 14px;
    font-weight: 600;
    color: var(--white);
    margin-bottom: 3px;
}
.abp-text span {
    font-size: 12px;
    color: var(--text-muted);
    line-height: 1.5;
}

/* Form panel */
.abb-form-wrap {
    background: var(--charcoal-3);
    border-left: 1px solid var(--border);
    padding: 60px 60px 60px 60px;
    min-height: 100%;
    position: relative;
}
.abb-form-wrap::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    width: 3px;
    background: linear-gradient(
        to bottom,
        transparent 10%,
        var(--gold) 50%,
        transparent 90%
    );
}
.abb-form-header {
    margin-bottom: 32px;
}
.abb-form-icon {
    width: 52px;
    height: 52px;
    background: linear-gradient(135deg, var(--gold-dark), var(--gold));
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    color: var(--charcoal);
    margin-bottom: 14px;
}
.abb-form-header h3 {
    font-family: var(--font-display);
    font-size: 2rem;
    font-weight: 600;
    color: var(--white);
    margin-bottom: 6px;
}
.abb-form-header p {
    font-size: 13px;
    color: var(--text-muted);
    margin: 0;
}

/* ============================================================
   FINAL EMOTIONAL CTA
============================================================ */
.about-final-cta {
    position: relative;
    padding: 130px 0;
    overflow: hidden;
}
.afc-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
}
.afc-bg-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 40%;
    display: block;
}
.afc-overlay {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(
            to bottom,
            rgba(20, 20, 20, 0.85) 0%,
            rgba(20, 20, 20, 0.92) 100%
        ),
        radial-gradient(
            ellipse 60% 70% at 50% 50%,
            rgba(201, 168, 76, 0.1) 0%,
            transparent 60%
        );
}
.afc-particles {
    position: absolute;
    inset: 0;
    pointer-events: none;
    overflow: hidden;
    z-index: 1;
}

.afc-content {
    position: relative;
    z-index: 2;
    max-width: 760px;
    margin: 0 auto;
}

/* Icon ring */
.afc-icon-ring {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--gold-dark), var(--gold));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    color: var(--charcoal);
    margin: 0 auto;
    box-shadow:
        0 0 0 12px rgba(201, 168, 76, 0.1),
        0 0 0 24px rgba(201, 168, 76, 0.05);
    animation: ring-pulse 3s infinite ease-in-out;
}
@keyframes ring-pulse {
    0%,
    100% {
        box-shadow:
            0 0 0 12px rgba(201, 168, 76, 0.1),
            0 0 0 24px rgba(201, 168, 76, 0.05);
    }
    50% {
        box-shadow:
            0 0 0 18px rgba(201, 168, 76, 0.15),
            0 0 0 36px rgba(201, 168, 76, 0.04);
    }
}

.afc-title {
    font-family: var(--font-display);
    font-size: clamp(2.4rem, 5vw, 4rem);
    font-weight: 700;
    color: var(--white);
    line-height: 1.15;
    margin: 20px 0;
}
.afc-title em {
    font-style: italic;
    color: var(--gold);
}

.afc-body {
    font-size: 17px;
    color: var(--text-light);
    line-height: 1.8;
    max-width: 600px;
    margin: 0 auto;
}

/* Reassurance row */
.afc-reassurances {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 8px 28px;
    margin-top: 32px;
}
.afc-r-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    color: var(--text-light);
}
.afc-r-item i {
    color: var(--gold);
    font-size: 14px;
}

.afc-cta-group {
    margin-top: 40px;
}

.afc-quote {
    font-family: var(--font-display);
    font-size: 1.1rem;
    font-style: italic;
    color: var(--text-muted);
    line-height: 1.7;
}

/* ============================================================
   ABOUT PAGE RESPONSIVE
============================================================ */
@media (max-width: 1199px) {
    .abb-content {
        padding: 60px 40px 60px 0;
    }
    .abb-form-wrap {
        padding: 60px 40px;
    }
}

@media (max-width: 991px) {
    .about-hero-section {
        min-height: 70vh;
    }
    .who-img-secondary {
        display: none;
    }
    .who-img-main img {
        height: 380px;
    }
    .who-trust-badge {
        position: static;
        margin-top: 16px;
        display: inline-flex;
    }
    .who-img-wrap {
        padding: 0 0 20px 0;
    }
    .abb-content {
        padding: 60px 0 40px;
        max-width: 100%;
    }
    .abb-form-wrap {
        padding: 40px 30px;
        border-left: none;
        border-top: 1px solid var(--border);
    }
    .abb-form-wrap::before {
        display: none;
    }
    .accreditations-row {
        flex-direction: column;
        gap: 16px;
        text-align: center;
    }
    .acc-label {
        margin-right: 0;
    }
    .acc-divider {
        display: none;
    }
    .afc-reassurances {
        gap: 10px 16px;
    }
}

@media (max-width: 767px) {
    .astat-bordered {
        border: none;
        border-top: 1px solid var(--border);
    }
    .astat-item {
        padding: 24px 16px;
    }
    .value-card {
        padding: 28px 22px;
    }
    .about-final-cta {
        padding: 90px 0;
    }
    .who-pillar {
        padding: 14px 16px;
    }
}

@media (max-width: 575px) {
    .about-hero-title {
        font-size: 3rem;
    }
    .afc-reassurances {
        flex-direction: column;
        align-items: center;
        gap: 10px;
    }
    .acc-logos {
        justify-content: center;
    }
    .about-hero-cta .btn {
        width: 100%;
        justify-content: center;
    }
    .abb-form-wrap {
        padding: 32px 16px;
    }
}
