/* =========================================================
   EARLS FREIGHT — style.css
   Brand: Black #0A0A0A · Gold #C9A84C · Off-white #F5F0E8
   ========================================================= */

@import url("https://fonts.googleapis.com/css2?family=Playfair+Display:wght@700;900&family=Barlow:ital,wght@0,300;0,400;0,500;0,600;1,300&family=Barlow+Condensed:wght@400;600;700&display=swap");

/* ── CSS Variables ────────────────────────────────────────── */
:root {
    --gold: #c9a84c;
    --gold-light: #e2c46b;
    --gold-dark: #9e7a2a;
    --black: #0a0a0a;
    --black-soft: #141414;
    --black-card: #1a1a1a;
    --off-white: #f5f0e8;
    --grey-mid: #6b6b6b;
    --grey-light: #d4cfc6;
    --font-display: "Playfair Display", serif;
    --font-body: "Barlow", sans-serif;
    --font-label: "Barlow Condensed", sans-serif;
    --transition: 0.35s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    --shadow-gold: 0 8px 40px rgba(201, 168, 76, 0.2);
    --shadow-deep: 0 20px 60px rgba(0, 0, 0, 0.5);
}

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

html {
    scroll-behavior: smooth;
}

body {
    background-color: var(--black);
    color: var(--off-white);
    font-family: var(--font-body);
    font-weight: 300;
    font-size: 16px;
    line-height: 1.75;
    overflow-x: hidden;
}

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

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

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

/* ── Scrollbar ────────────────────────────────────────────── */
::-webkit-scrollbar {
    width: 6px;
}
::-webkit-scrollbar-track {
    background: var(--black);
}
::-webkit-scrollbar-thumb {
    background: var(--gold-dark);
    border-radius: 3px;
}





/* ─── Floating Buttons ──────────────────────────────────── */
#backToTop {
    position: fixed;
    bottom: 32px;
    left: 32px;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: 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 var(--transition);
    box-shadow: 0 4px 20px rgba(201, 168, 76, 0.4);
}
#backToTop.visible {
    opacity: 1;
    transform: translateY(0);
}
#backToTop:hover {
    background: var(--gold-dark);
    transform: translateY(-2px);
}

#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 var(--transition);
}
#whatsappBtn a:hover {
    background: #1da851;
    transform: translateY(-2px);
    box-shadow: 0 6px 24px rgba(37, 211, 102, 0.5);
}
#whatsappBtn i {
    font-size: 1.2rem;
}












/* ========================================================
   NAVBAR
   ======================================================== */
#navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 0;
    transition:
        background var(--transition),
        box-shadow var(--transition),
        padding var(--transition);
}

#navbar.scrolled {
    background: rgba(10, 10, 10, 0.97);
    box-shadow: 0 2px 30px rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(201, 168, 76, 0.207);
}

#navbar .navbar-brand img {
    height: 56px;
    transition: height var(--transition);
}

#navbar.scrolled .navbar-brand img {
    height: 52px;
}

#navbar .navbar-nav .nav-link {
    font-family: var(--font-label);
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--off-white);
    padding: 8px 18px;
    position: relative;
    transition: color var(--transition);
}

#navbar .navbar-nav .nav-link::after {
    content: "";
    position: absolute;
    bottom: 2px;
    left: 18px;
    right: 18px;
    height: 1px;
    background: var(--gold);
    transform: scaleX(0);
    transform-origin: right;
    transition: transform var(--transition);
}

#navbar .navbar-nav .nav-link:hover,
#navbar .navbar-nav .nav-link.active {
    color: var(--gold);
}

#navbar .navbar-nav .nav-link:hover::after,
#navbar .navbar-nav .nav-link.active::after {
    transform: scaleX(1);
    transform-origin: left;
}

#navbar .nav-cta {
    font-family: var(--font-label);
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    background: var(--gold);
    color: var(--black) !important;
    padding: 10px 26px !important;
    border-radius: 2px;
    margin-left: 10px;
    transition:
        background var(--transition),
        transform var(--transition);
}

#navbar .nav-cta::after {
    display: none;
}

#navbar .nav-cta:hover {
    background: var(--gold-light);
    transform: translateY(-1px);
    color: var(--black) !important;
}

.navbar-toggler {
    border: 1px solid var(--gold);
    padding: 6px 10px;
    border-radius: 2px;
}
.navbar-toggler-icon {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='%23C9A84C' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

/* ========================================================
   HERO
   ======================================================== */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    overflow: hidden;
    background: var(--black);
}

.hero-bg {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(
            135deg,
            rgba(10, 10, 10, 0.92) 0%,
            rgba(10, 10, 10, 0.6) 60%,
            rgba(10, 10, 10, 0.88) 100%
        ),
        url("/images/hero-bg.jpg") center/cover no-repeat;
}

/* Geometric accent lines */
.hero-bg::before {
    content: "";
    position: absolute;
    top: -100px;
    right: -100px;
    width: 600px;
    height: 600px;
    border: 1px solid rgba(201, 168, 76, 0.12);
    border-radius: 50%;
}

.hero-bg::after {
    content: "";
    position: absolute;
    bottom: -150px;
    left: -150px;
    width: 800px;
    height: 800px;
    border: 1px solid rgba(201, 168, 76, 0.07);
    border-radius: 50%;
}

.hero-content {
    position: relative;
    z-index: 2;
}

.hero-eyebrow {
    font-family: var(--font-label);
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 14px;
    opacity: 0;
    animation: fadeUp 0.8s 0.3s ease forwards;
}

.hero-eyebrow::before {
    content: "";
    width: 40px;
    height: 1px;
    background: var(--gold);
    flex-shrink: 0;
}

.hero-title {
    font-family: var(--font-display);
    font-size: clamp(42px, 7vw, 86px);
    font-weight: 900;
    line-height: 1;
    color: var(--off-white);
    margin-bottom: 28px;
    opacity: 0;
    animation: fadeUp 0.8s 0.5s ease forwards;
}

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

.hero-subtitle {
    font-size: 17px;
    font-weight: 300;
    color: var(--grey-light);
    max-width: 520px;
    line-height: 1.8;
    margin-bottom: 44px;
    opacity: 0;
    animation: fadeUp 0.8s 0.7s ease forwards;
}

.hero-actions {
    display: flex;
    gap: 18px;
    flex-wrap: wrap;
    opacity: 0;
    animation: fadeUp 0.8s 0.9s ease forwards;
}

.hero-stats {
    position: absolute;
    bottom: 50px;
    right: 0;
    display: flex;
    flex-direction: column;
    gap: 2px;
    z-index: 2;
    opacity: 0;
    animation: fadeLeft 0.8s 1.1s ease forwards;
}

.hero-stat-item {
    background: rgba(20, 20, 20, 0.9);
    border-left: 3px solid var(--gold);
    padding: 18px 28px;
    min-width: 200px;
    backdrop-filter: blur(8px);
}

.hero-stat-item .stat-number {
    font-family: var(--font-display);
    font-size: 32px;
    font-weight: 900;
    color: var(--gold);
    line-height: 1;
}

.hero-stat-item .stat-label {
    font-family: var(--font-label);
    font-size: 11px;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--grey-light);
    margin-top: 4px;
}

/* ========================================================
   BUTTONS
   ======================================================== */
.btn-gold {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-family: var(--font-label);
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    background: var(--gold);
    color: var(--black);
    border: 2px solid var(--gold);
    padding: 14px 32px;
    border-radius: 2px;
    cursor: pointer;
    transition: all var(--transition);
    position: relative;
    overflow: hidden;
}

.btn-gold::before {
    content: "";
    position: absolute;
    inset: 0;
    background: var(--black);
    transform: scaleX(0);
    transform-origin: right;
    transition: transform var(--transition);
    z-index: 0;
}

.btn-gold span,
.btn-gold i {
    position: relative;
    z-index: 1;
}

.btn-gold:hover {
    color: var(--gold);
}
.btn-gold:hover::before {
    transform: scaleX(1);
    transform-origin: left;
}

.btn-outline-gold {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-family: var(--font-label);
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    background: transparent;
    color: var(--off-white);
    border: 2px solid rgba(201, 168, 76, 0.45);
    padding: 14px 32px;
    border-radius: 2px;
    cursor: pointer;
    transition: all var(--transition);
}

.btn-outline-gold:hover {
    border-color: var(--gold);
    color: var(--gold);
}

/* ========================================================
   SECTION LAYOUT
   ======================================================== */
section {
    padding: 100px 0;
}

.section-header {
    margin-bottom: 70px;
}

.section-eyebrow {
    font-family: var(--font-label);
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: var(--gold);
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 14px;
}
.section-eyebrow::before {
    content: "";
    width: 32px;
    height: 1px;
    background: var(--gold);
    flex-shrink: 0;
}

.section-title {
    font-family: var(--font-display);
    font-size: clamp(28px, 4vw, 48px);
    font-weight: 900;
    color: var(--off-white);
    line-height: 1.1;
    margin-bottom: 18px;
}

.section-title .gold-accent {
    color: var(--gold);
}

.section-desc {
    font-size: 16px;
    font-weight: 300;
    color: var(--grey-light);
    max-width: 560px;
    line-height: 1.85;
}

/* Gold divider */
.gold-divider {
    width: 60px;
    height: 2px;
    background: linear-gradient(90deg, var(--gold), transparent);
    margin: 20px 0;
}

/* ========================================================
   SERVICES
   ======================================================== */
#services {
    background: var(--black-soft);
}

.service-card {
    background: var(--black-card);
    border: 1px solid rgba(201, 168, 76, 0.1);
    border-radius: 4px;
    padding: 42px 36px;
    height: 100%;
    position: relative;
    overflow: hidden;
    transition:
        border-color var(--transition),
        transform var(--transition),
        box-shadow var(--transition);
}

.service-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--gold), transparent);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform var(--transition);
}

.service-card:hover {
    border-color: rgba(201, 168, 76, 0.35);
    transform: translateY(-6px);
    box-shadow: var(--shadow-gold);
}

.service-card:hover::before {
    transform: scaleX(1);
}

.service-icon {
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(201, 168, 76, 0.1);
    border: 1px solid rgba(201, 168, 76, 0.25);
    border-radius: 4px;
    margin-bottom: 26px;
    font-size: 26px;
    color: var(--gold);
    transition: background var(--transition);
}

.service-card:hover .service-icon {
    background: rgba(201, 168, 76, 0.18);
}

.service-card h4 {
    font-family: var(--font-display);
    font-size: 22px;
    font-weight: 700;
    color: var(--off-white);
    margin-bottom: 14px;
}

.service-card p {
    font-size: 15px;
    color: var(--grey-light);
    line-height: 1.8;
    margin-bottom: 24px;
}

.service-card .service-features {
    list-style: none;
    padding: 0;
    margin: 0;
}

.service-card .service-features li {
    font-family: var(--font-label);
    font-size: 13px;
    letter-spacing: 0.5px;
    color: var(--grey-mid);
    padding: 6px 0;
    display: flex;
    align-items: center;
    gap: 10px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}
.service-card .service-features li:last-child {
    border-bottom: none;
}

.service-card .service-features li::before {
    content: "";
    width: 6px;
    height: 6px;
    background: var(--gold);
    border-radius: 50%;
    flex-shrink: 0;
}

/* ========================================================
   ABOUT / STATS
   ======================================================== */
#about {
    background: var(--black);
}

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

.about-image-wrap img {
    width: 100%;
    height: 520px;
    object-fit: cover;
    border-radius: 4px;
    filter: grayscale(20%);
}

.about-image-wrap::before {
    content: "";
    position: absolute;
    top: -16px;
    left: -16px;
    right: 16px;
    bottom: 16px;
    border: 2px solid rgba(201, 168, 76, 0.3);
    border-radius: 4px;
    pointer-events: none;
    z-index: -1;
}

.about-badge {
    position: absolute;
    bottom: -20px;
    right: -20px;
    background: var(--gold);
    color: var(--black);
    padding: 24px 28px;
    border-radius: 4px;
    text-align: center;
    min-width: 150px;
}

.about-badge .badge-number {
    font-family: var(--font-display);
    font-size: 36px;
    font-weight: 900;
    line-height: 1;
    display: block;
}

.about-badge .badge-text {
    font-family: var(--font-label);
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    display: block;
    margin-top: 4px;
}

.stat-row {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1px;
    background: rgba(201, 168, 76, 0.15);
    border-radius: 4px;
    overflow: hidden;
    margin-top: 44px;
}

.stat-box {
    background: var(--black-card);
    padding: 28px 24px;
    text-align: center;
}

.stat-box .s-number {
    font-family: var(--font-display);
    font-size: 36px;
    font-weight: 900;
    color: var(--gold);
    line-height: 1;
    display: block;
}

.stat-box .s-label {
    font-family: var(--font-label);
    font-size: 11px;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: var(--grey-light);
    margin-top: 6px;
    display: block;
}

/* ========================================================
   PROCESS STEPS
   ======================================================== */
#process {
    background: var(--black-soft);
}

.process-step {
    display: flex;
    gap: 28px;
    padding: 36px;
    background: var(--black-card);
    border: 1px solid rgba(201, 168, 76, 0.08);
    border-radius: 4px;
    margin-bottom: 18px;
    transition:
        border-color var(--transition),
        box-shadow var(--transition);
    position: relative;
}

.process-step:hover {
    border-color: rgba(201, 168, 76, 0.3);
    box-shadow: var(--shadow-gold);
}

.step-number {
    font-family: var(--font-display);
    font-size: 60px;
    font-weight: 900;
    color: rgba(201, 168, 76, 0.12);
    line-height: 1;
    flex-shrink: 0;
    width: 60px;
    transition: color var(--transition);
}

.process-step:hover .step-number {
    color: rgba(201, 168, 76, 0.3);
}

.step-body h4 {
    font-family: var(--font-display);
    font-size: 20px;
    font-weight: 700;
    color: var(--off-white);
    margin-bottom: 8px;
}

.step-body p {
    font-size: 15px;
    color: var(--grey-light);
    line-height: 1.75;
    margin: 0;
}

/* ========================================================
   FACILITY
   ======================================================== */
#facility {
    background: var(--black);
}

.facility-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 3px;
    border-radius: 4px;
    overflow: hidden;
}

.facility-grid-item {
    position: relative;
    height: 280px;
    overflow: hidden;
    background: var(--black-card);
}

.facility-grid-item:first-child {
    grid-row: span 2;
    height: 100%;
}

.facility-grid-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition:
        transform 0.6s ease,
        filter 0.6s ease;
    filter: grayscale(30%);
}

.facility-grid-item:hover img {
    transform: scale(1.06);
    filter: grayscale(0%);
}

.facility-grid-item .overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to top,
        rgba(10, 10, 10, 0.7) 0%,
        transparent 50%
    );
    opacity: 0;
    transition: opacity var(--transition);
}
.facility-grid-item:hover .overlay {
    opacity: 1;
}

.facility-specs {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 18px;
    margin-top: 40px;
}

.spec-item {
    background: var(--black-card);
    border: 1px solid rgba(201, 168, 76, 0.12);
    border-left: 3px solid var(--gold);
    padding: 22px 20px;
    border-radius: 0 4px 4px 0;
}

.spec-item h5 {
    font-family: var(--font-label);
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 6px;
}

.spec-item p {
    font-size: 15px;
    color: var(--off-white);
    font-weight: 400;
    margin: 0;
}

/* ========================================================
   WHY CHOOSE US
   ======================================================== */
#why {
    background: var(--black);
}

.why-card {
    text-align: center;
    padding: 48px 30px;
    background: var(--black-card);
    border: 1px solid rgba(201, 168, 76, 0.1);
    border-radius: 4px;
    height: 100%;
    transition:
        border-color var(--transition),
        transform var(--transition);
}

.why-card:hover {
    border-color: rgba(201, 168, 76, 0.3);
    transform: translateY(-4px);
}

.why-icon {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    background: rgba(201, 168, 76, 0.08);
    border: 1px solid rgba(201, 168, 76, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    color: var(--gold);
    margin: 0 auto 24px;
    transition: background var(--transition);
}
.why-card:hover .why-icon {
    background: rgba(201, 168, 76, 0.15);
}

.why-card h4 {
    font-family: var(--font-display);
    font-size: 20px;
    font-weight: 700;
    color: var(--off-white);
    margin-bottom: 12px;
}

.why-card p {
    font-size: 15px;
    color: var(--grey-light);
    line-height: 1.8;
    margin: 0;
}

/* ========================================================
   CTA BANNER
   ======================================================== */
.cta-banner {
    position: relative;
    padding: 90px 0;
    background: var(--black);
    overflow: hidden;
}

.cta-banner::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(
        135deg,
        rgba(201, 168, 76, 0.08) 0%,
        transparent 60%
    );
}

.cta-banner::after {
    content: "";
    position: absolute;
    bottom: 0;
    right: 0;
    width: 400px;
    height: 400px;
    background: radial-gradient(
        circle,
        rgba(201, 168, 76, 0.06) 0%,
        transparent 70%
    );
    pointer-events: none;
}

.cta-banner .content {
    position: relative;
    z-index: 1;
}

.cta-banner h2 {
    font-family: var(--font-display);
    font-size: clamp(28px, 4vw, 48px);
    font-weight: 900;
    color: var(--off-white);
    margin-bottom: 16px;
}

.cta-banner p {
    font-size: 17px;
    color: var(--grey-light);
    margin-bottom: 36px;
    max-width: 540px;
}

/* ========================================================
   CONTACT
   ======================================================== */
#contact {
    background: var(--black);
}
.contact-page {
    background: var(--black);
    min-height: 100vh;
    padding-top: 120px;
}

.contact-info-card {
    background: var(--black-card);
    border: 1px solid rgba(201, 168, 76, 0.12);
    border-top: 3px solid var(--gold);
    padding: 44px 36px;
    border-radius: 0 0 4px 4px;
    height: 100%;
}

.contact-info-card h3 {
    font-family: var(--font-display);
    font-size: 26px;
    font-weight: 700;
    color: var(--off-white);
    margin-bottom: 8px;
}

.contact-info-card .subtitle {
    font-size: 14px;
    color: var(--grey-mid);
    margin-bottom: 36px;
}

.contact-detail {
    display: flex;
    align-items: flex-start;
    gap: 18px;
    padding: 18px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}
.contact-detail:last-child {
    border-bottom: none;
}

.contact-detail .icon-wrap {
    width: 44px;
    height: 44px;
    background: rgba(201, 168, 76, 0.1);
    border: 1px solid rgba(201, 168, 76, 0.2);
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    color: var(--gold);
    flex-shrink: 0;
}

.contact-detail .detail-body p {
    font-size: 11px;
    font-family: var(--font-label);
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 4px;
}

.contact-detail .detail-body a,
.contact-detail .detail-body span {
    font-size: 15px;
    color: var(--off-white);
    font-weight: 400;
}

/* Contact Form */
.contact-form-wrap {
    background: var(--black-card);
    border: 1px solid rgba(201, 168, 76, 0.12);
    padding: 44px 40px;
    border-radius: 4px;
}

.contact-form-wrap h3 {
    font-family: var(--font-display);
    font-size: 26px;
    font-weight: 700;
    color: var(--off-white);
    margin-bottom: 6px;
}

.contact-form-wrap .subtitle {
    font-size: 14px;
    color: var(--grey-mid);
    margin-bottom: 36px;
}

.form-label {
    font-family: var(--font-label);
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: var(--grey-light);
    margin-bottom: 8px;
}

.form-control,
.form-select {
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(201, 168, 76, 0.18);
    border-radius: 2px;
    color: var(--off-white);
    font-family: var(--font-body);
    font-size: 15px;
    padding: 12px 16px;
    transition:
        border-color var(--transition),
        box-shadow var(--transition),
        background var(--transition);
}

.form-control:focus,
.form-select:focus {
    background: rgba(201, 168, 76, 0.05);
    border-color: var(--gold);
    box-shadow: 0 0 0 3px rgba(201, 168, 76, 0.1);
    color: var(--off-white);
    outline: none;
}

.form-control::placeholder {
    color: var(--grey-mid);
}

.form-select option {
    background: var(--black-card);
    color: var(--off-white);
}

textarea.form-control {
    min-height: 130px;
    resize: vertical;
}

/* Form Alerts */
#form-success,
#form-error {
    display: none;
    padding: 16px 20px;
    border-radius: 4px;
    font-family: var(--font-label);
    font-size: 13px;
    letter-spacing: 0.5px;
    margin-bottom: 20px;
}
#form-success {
    background: rgba(52, 199, 89, 0.12);
    border: 1px solid rgba(52, 199, 89, 0.3);
    color: #4cd964;
}
#form-error {
    background: rgba(255, 69, 58, 0.12);
    border: 1px solid rgba(255, 69, 58, 0.3);
    color: #ff453a;
}

/* ========================================================
   PAGE HERO (inner pages)
   ======================================================== */
.page-hero {
    position: relative;
    padding: 160px 0 80px;
    background: var(--black-soft);
    overflow: hidden;
}

.page-hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(
        135deg,
        rgba(201, 168, 76, 0.05) 0%,
        transparent 60%
    );
}

.page-hero-content {
    position: relative;
    z-index: 1;
}

.page-hero .eyebrow {
    font-family: var(--font-label);
    font-size: 12px;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 14px;
}

.page-hero .page-title {
    font-family: var(--font-display);
    font-size: clamp(36px, 5vw, 62px);
    font-weight: 900;
    color: var(--off-white);
    line-height: 1.1;
    margin-bottom: 18px;
}

.page-hero .page-desc {
    font-size: 17px;
    color: var(--grey-light);
    max-width: 560px;
    line-height: 1.8;
}

.breadcrumb {
    background: transparent;
    padding: 0;
    margin: 0;
}

.breadcrumb-item {
    font-family: var(--font-label);
    font-size: 12px;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: var(--grey-mid);
}

.breadcrumb-item.active {
    color: var(--gold);
}
.breadcrumb-item a {
    color: var(--grey-mid);
}
.breadcrumb-item a:hover {
    color: var(--gold);
}
.breadcrumb-item + .breadcrumb-item::before {
    color: var(--grey-mid);
    content: "›";
}

/* ========================================================
   ABOUT PAGE
   ======================================================== */
.about-page {
    background: var(--black);
}

.value-card {
    padding: 36px 30px;
    background: var(--black-card);
    border: 1px solid rgba(201, 168, 76, 0.1);
    border-bottom: 3px solid transparent;
    border-radius: 4px;
    height: 100%;
    transition:
        border-color var(--transition),
        transform var(--transition);
}
.value-card:hover {
    border-bottom-color: var(--gold);
    transform: translateY(-4px);
}

.value-card .v-icon {
    font-size: 32px;
    color: var(--gold);
    margin-bottom: 18px;
}
.value-card h5 {
    font-family: var(--font-display);
    font-size: 20px;
    font-weight: 700;
    color: var(--off-white);
    margin-bottom: 12px;
}
.value-card p {
    font-size: 15px;
    color: var(--grey-light);
    line-height: 1.8;
    margin: 0;
}

/* ========================================================
   SERVICES PAGE
   ======================================================== */
.service-detail-block {
    padding: 70px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}
.service-detail-block:last-child {
    border-bottom: none;
}

.service-detail-block:nth-child(even) .row {
    flex-direction: row-reverse;
}

.service-detail-img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: 4px;
    filter: grayscale(20%);
}

.service-detail-content {
    padding: 20px 0;
}

.service-detail-content h3 {
    font-family: var(--font-display);
    font-size: 34px;
    font-weight: 900;
    color: var(--off-white);
    margin-bottom: 18px;
    line-height: 1.1;
}

.service-detail-content p {
    font-size: 16px;
    color: var(--grey-light);
    line-height: 1.85;
    margin-bottom: 24px;
}

.feature-list {
    list-style: none;
    padding: 0;
    margin: 0 0 30px;
}
.feature-list li {
    padding: 10px 0;
    font-size: 15px;
    color: var(--grey-light);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    display: flex;
    align-items: center;
    gap: 12px;
}
.feature-list li:last-child {
    border-bottom: none;
}
.feature-list li i {
    color: var(--gold);
    font-size: 14px;
    flex-shrink: 0;
}

/* ========================================================
   FOOTER
   ======================================================== */
footer {
    background: var(--black-soft);
    border-top: 1px solid rgba(201, 168, 76, 0.12);
    padding: 80px 0 0;
}

.footer-brand img {
    height: 56px;
    margin-bottom: 20px;
}

.footer-brand p {
    font-size: 15px;
    color: var(--grey-light);
    line-height: 1.8;
    max-width: 300px;
}

.footer-tagline {
    font-family: var(--font-label);
    font-size: 11px;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--gold);
    margin-top: 18px;
    display: flex;
    align-items: center;
    gap: 10px;
}
.footer-tagline::before,
.footer-tagline::after {
    content: "";
    height: 1px;
    width: 24px;
    background: var(--gold);
}

.footer-heading {
    font-family: var(--font-label);
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 24px;
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}
.footer-links li {
    margin-bottom: 10px;
}
.footer-links li a {
    font-size: 16px;
    color: var(--grey-light);
    transition:
        color var(--transition),
        padding-left var(--transition);
    display: inline-block;
}
.footer-links li a:hover {
    color: var(--gold);
    padding-left: 6px;
}

.footer-contact-item {
    display: flex;
    gap: 14px;
    margin-bottom: 16px;
    font-size: 14px;
    color: var(--grey-light);
}
.footer-contact-item:last-child {
    margin-bottom: 0px;
}

.footer-contact-item i {
    color: var(--gold);
    margin-top: 4px;
    flex-shrink: 0;
}

.footer-bottom {
    margin-top: 60px;
    padding: 22px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    /* gap: 14px; */
}

.footer-bottom p {
    font-size: 13px;
    color: var(--grey-light);
    margin: 0;
}

.footer-bottom .policy-links a {
    font-size: 13px;
    color: var(--grey-light);
    margin-left: 20px;
}
.footer-bottom .policy-links a:hover {
    color: var(--gold);
}

.footer-brand .social-icons {
    display: flex;
    gap: 12px;
    margin-top: 1.3rem;
}

.social-icons a {
    width: 40px;
    height: 40px;
    border-radius: 6px;
    border: 1px solid rgba(201, 168, 76, 0.323);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    color: var(--grey-light);
    transition: all 0.2s;
}
.social-icons a:hover {
    border-color: var(--gold);
    color: var(--gold);
}
/* ========================================================
   ANIMATIONS
   ======================================================== */
@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}
@keyframes fadeLeft {
    from {
        opacity: 0;
        transform: translateX(30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}
@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

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

.delay-1 {
    transition-delay: 0.1s;
}
.delay-2 {
    transition-delay: 0.2s;
}
.delay-3 {
    transition-delay: 0.3s;
}
.delay-4 {
    transition-delay: 0.4s;
}

/* ========================================================
   MISC UTILITIES
   ======================================================== */
.text-gold {
    color: var(--gold) !important;
}
.bg-black-card {
    background: var(--black-card);
}
.border-gold-faint {
    border-color: rgba(201, 168, 76, 0.2) !important;
}

/* Map */
.map-placeholder {
    width: 100%;
    height: 360px;
    background: var(--black-card);
    border: 1px solid rgba(201, 168, 76, 0.15);
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--grey-mid);
    font-family: var(--font-label);
    letter-spacing: 2px;
    font-size: 12px;
    text-transform: uppercase;
}

/* Loading overlay for btn */
.btn-loading {
    position: relative;
    pointer-events: none;
    opacity: 0.7;
}
.btn-loading::after {
    content: "";
    position: absolute;
    right: 18px;
    top: 50%;
    transform: translateY(-50%);
    width: 16px;
    height: 16px;
    border: 2px solid rgba(0, 0, 0, 0.3);
    border-top-color: var(--black);
    border-radius: 50%;
    animation: spin 0.7s linear infinite;
}
@keyframes spin {
    to {
        transform: translateY(-50%) rotate(360deg);
    }
}

/* ========================================================
   RESPONSIVE
   ======================================================== */
@media (max-width: 992px) {
    section {
        padding: 70px 0;
    }
    .hero-stats {
        position: static;
        flex-direction: row;
        flex-wrap: wrap;
        margin-top: 48px;
    }
    .hero-stat-item {
        min-width: 150px;
    }
    .stat-row {
        grid-template-columns: 1fr 1fr 1fr;
    }
    .facility-specs {
        grid-template-columns: 1fr;
    }
    .service-detail-block:nth-child(even) .row {
        flex-direction: row;
    }
}

@media (max-width: 768px) {
    .hero-title {
        font-size: 38px;
    }
    .stat-row {
        grid-template-columns: 1fr 1fr;
    }
    .stat-row .stat-box:last-child {
        grid-column: span 2;
    }
    .facility-grid {
        grid-template-columns: 1fr;
    }
    .facility-grid-item:first-child {
        grid-row: auto;
        height: 280px;
    }
    .contact-form-wrap {
        padding: 30px 22px;
    }
    .about-image-wrap::before {
        display: none;
    }
    .about-badge {
        bottom: 0;
        right: 0;
    }
    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }
    .footer-bottom .policy-links a:first-child {
        margin-left: 0;
    }
}

/* faq section css start here */
section.faq {
}

h2.accordion-header {
    font-family: var(--font-display);
    font-size: 20px;
    font-weight: 700;
    color: var(--off-white);
}

.faq-item {
    border: 1px solid rgba(201, 168, 76, 0.1);
    border-radius: 0px;
    overflow: hidden;
    background: #111;
}

.faq-btn {
    background: transparent;
    color: #fff;
    font-weight: 600;
    box-shadow: none;
    border: none;
    transition: all var(--transition);
}

.faq-btn:not(.collapsed) {
    color: var(--gold);
    background: rgba(151, 132, 23, 0.05);
    box-shadow: none;
    border: none;
}
.accordion-button:focus {
    box-shadow: none;
    border: none;
}
.accordion-body {
    color: var(--grey-light);
    line-height: 1.8;
}
/* Make accordion arrow icon white */
.accordion-button::after {
    filter: brightness(0) invert(1);
}

/* Optional: keep it white even when expanded */
.accordion-button:not(.collapsed)::after {
    filter: brightness(0) invert(1);
}
/* faq section end  here */

/* ========================================================
   TESTIMONIALS
   ======================================================== */
#testimonials {
    background: var(--black);
    position: relative;
    overflow: hidden;
}

/* Decorative background quote mark */
#testimonials::before {
    content: "\201C";
    position: absolute;
    top: -40px;
    left: 50%;
    transform: translateX(-50%);
    font-family: var(--font-display);
    font-size: 360px;
    font-weight: 900;
    color: rgba(201, 168, 76, 0.04);
    line-height: 1;
    pointer-events: none;
    user-select: none;
}

/* Slider wrapper */
.testimonial-track-wrap {
    overflow: hidden;
    position: relative;
}

.testimonial-track {
    display: flex;
    transition: transform 0.65s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    will-change: transform;
}

/* Individual card */
.testimonial-card {
    flex: 0 0 100%;
    max-width: 100%;
    padding: 0 16px;
}

.testimonial-inner {
    background: var(--black-card);
    border: 1px solid rgba(201, 168, 76, 0.12);
    border-radius: 4px;
    padding: 52px 52px 44px;
    position: relative;
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

/* Top gold bar */
.testimonial-inner::before {
    content: "";
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 2px;
    background: var(--gold);
}

/* Quote icon */
.testimonial-quote-icon {
    width: 52px;
    height: 52px;
    background: rgba(201, 168, 76, 0.1);
    border: 1px solid rgba(201, 168, 76, 0.25);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 30px;
    color: var(--gold);
    font-size: 22px;
}

/* Stars */
.testimonial-stars {
    display: flex;
    gap: 5px;
    justify-content: center;
    margin-bottom: 26px;
    color: var(--gold);
    font-size: 16px;
}

/* Quote text */
.testimonial-text {
    font-family: var(--font-display);
    font-size: clamp(17px, 2.2vw, 22px);
    font-weight: 700;
    font-style: italic;
    color: var(--off-white);
    line-height: 1.65;
    margin-bottom: 36px;
}

/* Author info */
.testimonial-author {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
}

.testimonial-avatar {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--gold-dark), var(--gold));
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-display);
    font-size: 18px;
    font-weight: 700;
    color: var(--black);
    flex-shrink: 0;
    border: 2px solid rgba(201, 168, 76, 0.4);
}

.testimonial-author-info .author-name {
    font-family: var(--font-label);
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 1px;
    color: var(--off-white);
    text-align: left;
}

.testimonial-author-info .author-role {
    font-family: var(--font-label);
    font-size: 12px;
    letter-spacing: 0.5px;
    color: var(--gold);
    text-align: left;
    margin-top: 2px;
}

/* Divider line between avatar and info */
.testimonial-author-divider {
    width: 1px;
    height: 32px;
    background: rgba(201, 168, 76, 0.3);
}

/* Navigation dots */
.testimonial-dots {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 40px;
}

.testimonial-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: rgba(201, 168, 76, 0.25);
    border: none;
    cursor: pointer;
    padding: 0;
    transition:
        background var(--transition),
        transform var(--transition),
        width var(--transition);
}

.testimonial-dot.active {
    background: var(--gold);
    width: 28px;
    border-radius: 4px;
}

/* Prev / Next arrows */
.testimonial-nav {
    display: flex;
    justify-content: center;
    gap: 14px;
    margin-top: 24px;
}

.testimonial-arrow {
    width: 48px;
    height: 48px;
    border: 1px solid rgba(201, 168, 76, 0.3);
    border-radius: 50%;
    background: transparent;
    color: var(--gold);
    font-size: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition:
        background var(--transition),
        border-color var(--transition),
        transform var(--transition);
}

.testimonial-arrow:hover {
    background: rgba(201, 168, 76, 0.12);
    border-color: var(--gold);
    transform: scale(1.08);
}

/* Responsive */
@media (max-width: 768px) {
    .testimonial-inner {
        padding: 40px 28px 36px;
    }
    .testimonial-text {
        font-size: 17px;
    }
}

/* ========================================================
   RESPONSIVE
   ======================================================== */
@media (max-width: 992px) {
    section {
        padding: 70px 0;
    }
    .hero-stats {
        position: static;
        flex-direction: row;
        flex-wrap: wrap;
        margin-top: 48px;
    }
    .hero-stat-item {
        min-width: 150px;
    }
    .stat-row {
        grid-template-columns: 1fr 1fr 1fr;
    }
    .facility-specs {
        grid-template-columns: 1fr;
    }
    .service-detail-block:nth-child(even) .row {
        flex-direction: row;
    }
}

@media (max-width: 768px) {
    .hero-title {
        font-size: 38px;
    }
    .stat-row {
        grid-template-columns: 1fr 1fr;
    }
    .stat-row .stat-box:last-child {
        grid-column: span 2;
    }
    .facility-grid {
        grid-template-columns: 1fr;
    }
    .facility-grid-item:first-child {
        grid-row: auto;
        height: 280px;
    }
    .contact-form-wrap {
        padding: 30px 22px;
    }
    .about-image-wrap::before {
        display: none;
    }
    .about-badge {
        bottom: 0;
        right: 0;
    }
    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }
    .footer-bottom .policy-links a:first-child {
        margin-left: 0;
    }
}
