/* ============================================================
   LUXE AUTO SPA — Premium Automotive Service Website
   Centralized CSS Theme File
   ============================================================ */

/* ----- CSS Custom Properties (Gold-Themed Tokens) ----- */

@import url("https://fonts.googleapis.com/css2?family=Krona+One&family=Mona+Sans:ital,wght@0,200..900;1,200..900&family=Nunito:ital,wght@0,200..1000;1,200..1000&family=Raleway:ital,wght@0,100..900;1,100..900&family=Urbanist:ital,wght@0,100..900;1,100..900&display=swap");
:root {
    /* Primary Brand Colors */
    --gold-primary: #d4af37;
    --gold-secondary: #c9a24d;
    --gold-light: #f5e6b8;
    --gold-dark: #a8882c;
    --gold-gradient: linear-gradient(
        135deg,
        #d4af37 0%,
        #f5e6b8 50%,
        #c9a24d 100%
    );
    --gold-gradient-btn: linear-gradient(135deg, #d4af37 0%, #c9a24d 100%);
    --gold-shimmer: linear-gradient(
        90deg,
        #d4af37 0%,
        #f5e6b8 40%,
        #d4af37 80%
    );

    /* Neutral Palette */
    --charcoal: #1a1a2e;
    --charcoal-light: #222240;
    --dark-bg: #0f0f1a;
    --dark-card: #16162b;
    --grey-900: #1e1e1e;
    --grey-800: #2d2d2d;
    --grey-700: #3d3d3d;
    --grey-600: #555555;
    --grey-400: #9e9e9e;
    --grey-200: #e0e0e0;
    --grey-100: #f5f5f5;
    --off-white: #faf9f6;
    --white: #ffffff;

    /* Typography */
    --font-primary: "Krona One", sans-serif;
    --fw-light: 300;
    --fw-regular: 400;
    --fw-medium: 500;
    --fw-semibold: 400;
    --fw-bold: 400;
    --fw-extrabold: 800;

    /* Spacing */
    --section-padding: 50px 0;
    --section-padding-sm: 40px 0;

    /* Border Radius */
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 16px;
    --radius-xl: 24px;
    --radius-pill: 50px;

    /* Shadows */
    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.08);
    --shadow-md: 0 4px 20px rgba(0, 0, 0, 0.12);
    --shadow-lg: 0 8px 40px rgba(0, 0, 0, 0.16);
    --shadow-gold: 0 4px 20px rgba(212, 175, 55, 0.25);
    --shadow-gold-lg: 0 8px 40px rgba(212, 175, 55, 0.35);

    /* Transitions */
    --transition-fast: all 0.2s ease;
    --transition-base: all 0.3s ease;
    --transition-slow: all 0.5s ease;
    --transition-smooth: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
p {
    font-family: "Urbanist", sans-serif !important;
}
/* ----- Global Reset & Base ----- */
*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: 80px;
}

body {
    font-family: var(--font-primary);
    font-weight: var(--fw-regular);
    color: var(--grey-800);
    background-color: var(--white);
    line-height: 1.7;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

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

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

a:hover {
    color: var(--gold-primary);
}

/* ----- Typography Hierarchy ----- */
h1,
h2,
h3,
h4,
h5,
h6 {
    font-weight: var(--fw-bold);
    line-height: 1.3;
    color: var(--charcoal);
}

h1 {
    font-size: 3.5rem;
}
h2 {
    font-size: 2.5rem;
}
h3 {
    font-size: 1.75rem;
}
h4 {
    font-size: 1.25rem;
}
h5 {
    font-size: 1.1rem;
}

.display-hero {
    font-size: 4rem;
    font-weight: var(--fw-extrabold);
    line-height: 1.1;
    letter-spacing: -1px;
}

.text-gold {
    color: var(--gold-primary) !important;
}

.text-charcoal {
    color: var(--charcoal) !important;
}

.text-light-muted {
    color: var(--grey-400) !important;
}

.bg-charcoal {
    background-color: var(--charcoal) !important;
    margin: 0 20px 0px 20px;
    border-radius: 20px;
}

.bg-dark-deep {
    background-color: var(--dark-bg) !important;
}

.bg-off-white {
    background-color: var(--off-white) !important;
}

/* ----- Section Styling ----- */
.section-padding {
    padding: var(--section-padding);
}

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

.section-title {
    font-size: 30px;
    font-weight: var(--fw-bold);
    margin-bottom: 1rem;
    position: relative;
}

.section-subtitle {
    font-size: 1.1rem;
    color: var(--grey-600);
    max-width: 640px;
    margin: 0 auto 3rem;
    font-weight: var(--fw-light);
}

.section-label {
    display: inline-block;
    font-size: 0.8rem;
    font-weight: var(--fw-semibold);
    text-transform: uppercase;
    letter-spacing: 3px;
    color: var(--gold-primary);
    margin-bottom: 0.75rem;
    position: relative;
    padding-left: 45px;
}

.section-label::before {
    content: "";
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 30px;
    height: 2px;
    background: var(--gold-gradient-btn);
}

/* Gold underline decorator */
.gold-underline {
    display: inline-block;
    position: relative;
    padding-bottom: 12px;
}

.gold-underline::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: var(--gold-gradient-btn);
    border-radius: 2px;
}

.gold-underline.text-start::after {
    left: 0;
    transform: none;
}

/* Gold separator */
.gold-separator {
    width: 60px;
    height: 3px;
    background: var(--gold-gradient-btn);
    border: none;
    border-radius: 2px;
    margin: 1.5rem auto;
}

/* ============================================================
   NAVBAR
   ============================================================ */
.navbar-premium {
    /* padding: 35px 0; */
    transition: var(--transition-smooth);
    z-index: 1050;
    background: transparent !important;
    margin: 0px 20px 0 20px;
}

.navbar-premium.scrolled {
    background: rgba(15, 15, 26, 0.95) !important;
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    padding: 10px 0;
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.3);
}

.navbar-premium .navbar-brand {
    font-size: 1.6rem;
    font-weight: var(--fw-extrabold);
    color: var(--white) !important;
    letter-spacing: 1px;
}

.navbar-premium .navbar-brand span {
    color: var(--gold-primary);
}

.navbar-premium .nav-link {
    color: rgba(0, 0, 0, 0.85) !important;
    font-weight: var(--fw-medium);
    font-size: 0.9rem;
    padding: 8px 18px !important;
    letter-spacing: 0.5px;
    position: relative;
    transition: var(--transition-base);
}

.navbar-premium .nav-link:hover,
.navbar-premium .nav-link.active {
    color: var(--gold-primary) !important;
}

.navbar-premium .nav-link::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 18px;
    right: 18px;
    height: 2px;
    background: var(--gold-primary);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

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

.navbar-toggler {
    border: 1px solid var(--gold-primary) !important;
    padding: 6px 10px;
}

.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='%23D4AF37' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e") !important;
}

/* ----- CTA Button Styles ----- */
.btn-gold {
    background: var(--gold-gradient-btn);
    color: var(--charcoal) !important;
    border: none;
    padding: 12px 32px;
    border-radius: var(--radius-pill);
    font-weight: var(--fw-semibold);
    font-size: 0.95rem;
    letter-spacing: 0.5px;
    transition: var(--transition-smooth);
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.btn-gold::before {
    content: "";
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        90deg,
        transparent,
        rgba(255, 255, 255, 0.3),
        transparent
    );
    transition: left 0.5s ease;
    z-index: -1;
}

.btn-gold:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-gold-lg);
    color: var(--charcoal) !important;
}

.btn-gold:hover::before {
    left: 100%;
}

.btn-gold-outline {
    background: transparent;
    color: var(--gold-primary) !important;
    border: 2px solid var(--gold-primary);
    padding: 10px 30px;
    border-radius: var(--radius-pill);
    font-weight: var(--fw-semibold);
    font-size: 0.95rem;
    letter-spacing: 0.5px;
    transition: var(--transition-smooth);
}

.btn-gold-outline:hover {
    background: var(--gold-primary);
    color: var(--charcoal) !important;
    transform: translateY(-2px);
    box-shadow: var(--shadow-gold);
}

.btn-white-outline {
    background: transparent;
    color: var(--white) !important;
    border: 2px solid rgba(255, 255, 255, 0.4);
    padding: 10px 30px;
    border-radius: var(--radius-pill);
    font-weight: var(--fw-semibold);
    font-size: 0.95rem;
    transition: var(--transition-smooth);
}

.btn-white-outline:hover {
    background: var(--white);
    color: var(--charcoal) !important;
    border-color: var(--white);
}

/* ============================================================
   HERO SECTION
   ============================================================ */
.hero-section {
    position: relative;
    min-height: 750px;
    display: flex;
    align-items: center;
    background:
        linear-gradient(
            135deg,
            rgba(0, 0, 0, 0.568) 0%,
            rgba(15, 15, 20, 0.63) 100%
        ),
        url("https://cdn.prod.website-files.com/66dc179a1d6aa88848a4efac/675021f0245836dd38d0d517_hero-01.avif")
            center/cover no-repeat;
    overflow: hidden;
    /* margin:20px;
  border-radius: 20px; */
    margin-top: 0px;
}

.hero-section::before {
    content: "";
    position: absolute;
    top: -50%;
    right: -20%;
    width: 600px;
    height: 600px;
    border-radius: 50%;
    background: radial-gradient(
        circle,
        rgba(212, 175, 55, 0.08) 0%,
        transparent 70%
    );
    animation: heroGlow 8s ease-in-out infinite alternate;
}

@keyframes heroGlow {
    0% {
        transform: translate(0, 0) scale(1);
    }
    100% {
        transform: translate(-30px, 30px) scale(1.2);
    }
}

.hero-section .hero-title {
    font-size: 2.8rem;
    font-weight: var(--fw-extrabold);
    color: var(--white);
    line-height: 1.15;
    margin-bottom: 1.5rem;
}

.hero-section .hero-subtitle {
    font-size: 1.15rem;
    color: rgba(255, 255, 255, 0.7);
    font-weight: var(--fw-light);
    max-width: 520px;
    line-height: 1.8;
    margin-bottom: 2rem;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(212, 175, 55, 0.12);
    border: 1px solid rgba(212, 175, 55, 0.3);
    padding: 8px 20px;
    border-radius: var(--radius-pill);
    font-size: 0.85rem;
    color: var(--gold-primary);
    font-weight: var(--fw-medium);
    margin-bottom: 1.5rem;
}

/* Hero Quote / Booking Card */
.hero-form-card {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(212, 175, 55, 0.2);
    border-radius: var(--radius-lg);
    padding: 40px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

.hero-form-card .form-control,
.hero-form-card .form-select {
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.15);
    color: var(--white);
    border-radius: var(--radius-sm);
    padding: 14px 18px;
    font-size: 0.9rem;
    transition: var(--transition-base);
}

.hero-form-card .form-control::placeholder {
    color: rgba(255, 255, 255, 0.4);
}

.hero-form-card .form-control:focus,
.hero-form-card .form-select:focus {
    border-color: var(--gold-primary);
    box-shadow: 0 0 0 3px rgba(212, 175, 55, 0.15);
    background: rgba(255, 255, 255, 0.1);
}

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

.hero-form-card .form-label {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.8rem;
    font-weight: var(--fw-medium);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 6px;
}

/* ============================================================
   PREMIUM CARDS
   ============================================================ */
.premium-card {
    background: var(--white);
    border: 1px solid var(--grey-200);
    border-radius: var(--radius-lg);
    padding: 40px 30px;
    text-align: center;
    transition: var(--transition-smooth);
    position: relative;
    overflow: hidden;
}

.premium-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--gold-gradient-btn);
    transform: scaleX(0);
    transition: transform 0.4s ease;
}

.premium-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
    border-color: rgba(212, 175, 55, 0.3);
}

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

.premium-card .card-icon {
    width: 72px;
    height: 72px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(
        135deg,
        rgba(212, 175, 55, 0.1) 0%,
        rgba(212, 175, 55, 0.05) 100%
    );
    color: var(--gold-primary);
    font-size: 1.6rem;
    margin-bottom: 1.5rem;
    transition: var(--transition-smooth);
}

.premium-card:hover .card-icon {
    background: var(--gold-gradient-btn);
    color: var(--charcoal);
    transform: scale(1.1);
}

.premium-card .card-title {
    font-size: 1.2rem;
    font-weight: var(--fw-semibold);
    margin-bottom: 0.75rem;
}

.premium-card .card-text {
    color: var(--grey-600);
    font-size: 0.92rem;
    line-height: 1.7;
}

/* Dark Card Variant */
.premium-card-dark {
    background: var(--dark-card);
    border-color: rgba(255, 255, 255, 0.08);
}

.premium-card-dark .card-title {
    color: var(--white);
}

.premium-card-dark .card-text {
    color: rgba(255, 255, 255, 0.6);
}

.premium-card-dark:hover {
    border-color: rgba(212, 175, 55, 0.4);
    box-shadow: var(--shadow-gold);
}

/* ============================================================
   HOW IT WORKS
   ============================================================ */
.step-card {
    text-align: center;
    position: relative;
    padding: 30px 20px;
}

.step-number {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: var(--gold-gradient-btn);
    color: var(--charcoal);
    font-size: 1.3rem;
    font-weight: var(--fw-bold);
    margin-bottom: 1.5rem;
    position: relative;
    z-index: 2;
    box-shadow: var(--shadow-gold);
}

.step-connector {
    position: absolute;
    top: 58px;
    left: 55%;
    width: calc(100% - 10%);
    height: 2px;
    background: linear-gradient(
        90deg,
        var(--gold-primary),
        rgba(212, 175, 55, 0.2)
    );
}

.step-card h5 {
    font-weight: var(--fw-semibold);
    margin-bottom: 0.5rem;
    font-size: 15px;
}

.step-card p {
    color: var(--grey-600);
    font-size: 0.9rem;
}

/* ============================================================
   TRUST / STATS SECTION
   ============================================================ */
.stat-item {
    text-align: center;
    padding: 30px 15px;
}

.stat-number {
    font-size: 3rem;
    font-weight: var(--fw-extrabold);
    background: var(--gold-gradient-btn);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.6);
    font-weight: var(--fw-medium);
    text-transform: uppercase;
    letter-spacing: 1.5px;
}

/* ============================================================
   TESTIMONIALS
   ============================================================ */
.testimonial-card {
    background: var(--white);
    border: 1px solid var(--grey-200);
    border-radius: var(--radius-lg);
    padding: 40px;
    margin: 15px;
    position: relative;
    transition: var(--transition-smooth);
}

.testimonial-card::before {
    content: "\f10d";
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    font-size: 2rem;
    color: rgba(212, 175, 55, 0.15);
    position: absolute;
    top: 20px;
    right: 30px;
}

.testimonial-card:hover {
    box-shadow: var(--shadow-md);
    border-color: rgba(212, 175, 55, 0.3);
}

.testimonial-stars {
    color: var(--gold-primary);
    font-size: 0.85rem;
    margin-bottom: 1rem;
}

.testimonial-text {
    font-size: 0.95rem;
    color: var(--grey-700);
    line-height: 1.8;
    font-style: italic;
    margin-bottom: 1.5rem;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 12px;
}

.testimonial-avatar {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: var(--gold-gradient-btn);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--charcoal);
    font-weight: var(--fw-bold);
    font-size: 1rem;
}

.testimonial-author-name {
    font-weight: var(--fw-semibold);
    font-size: 0.95rem;
    color: var(--charcoal);
}

.testimonial-author-role {
    font-size: 0.8rem;
    color: var(--grey-400);
}

/* ============================================================
   PRICING CARDS
   ============================================================ */
.pricing-card {
    background: var(--white);
    border: 2px solid var(--grey-200);
    border-radius: var(--radius-lg);
    padding: 45px 35px;
    text-align: center;
    transition: var(--transition-smooth);
    position: relative;
    overflow: hidden;
}

.pricing-card.featured {
    border-color: var(--gold-primary);
    transform: scale(1.03);
}

.pricing-card.featured::after {
    content: "POPULAR";
    position: absolute;
    top: 20px;
    right: -30px;
    background: var(--gold-gradient-btn);
    color: var(--charcoal);
    padding: 5px 40px;
    font-size: 0.7rem;
    font-weight: var(--fw-bold);
    letter-spacing: 1px;
    transform: rotate(45deg);
}

.pricing-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
    border-color: var(--gold-primary);
}

.pricing-card.featured:hover {
    transform: scale(1.03) translateY(-6px);
}

.pricing-label {
    font-size: 0.8rem;
    font-weight: var(--fw-semibold);
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--gold-primary);
    margin-bottom: 1rem;
}

.pricing-amount {
    font-size: 3rem;
    font-weight: var(--fw-extrabold);
    color: var(--charcoal);
    line-height: 1;
    margin-bottom: 0.5rem;
}

.pricing-amount span {
    font-size: 1rem;
    font-weight: var(--fw-regular);
    color: var(--grey-600);
}

.pricing-features {
    list-style: none;
    padding: 0;
    margin: 2rem 0;
    text-align: left;
}

.pricing-features li {
    padding: 10px 0;
    border-bottom: 1px solid var(--grey-100);
    font-size: 0.9rem;
    color: var(--grey-700);
    display: flex;
    align-items: center;
    gap: 10px;
}

.pricing-features li i {
    color: var(--gold-primary);
    font-size: 0.8rem;
}

.pricing-features li.disabled {
    color: var(--grey-400);
    text-decoration: line-through;
}

.pricing-features li.disabled i {
    color: var(--grey-400);
}

/* ============================================================
   FEATURE COMPARISON TABLE
   ============================================================ */
.comparison-table {
    border-radius: var(--radius-md);
    overflow: hidden;
    border: 1px solid var(--grey-200);
}

.comparison-table thead th {
    background: var(--charcoal);
    color: var(--white);
    font-weight: var(--fw-semibold);
    font-size: 0.9rem;
    padding: 18px 20px;
    border: none;
    text-align: center;
    vertical-align: middle;
}

.comparison-table thead th:first-child {
    text-align: left;
}

.comparison-table thead th.featured-col {
    background: var(--gold-primary);
    color: var(--charcoal);
}

.comparison-table tbody td {
    padding: 14px 20px;
    font-size: 0.88rem;
    border-bottom: 1px solid var(--grey-100);
    text-align: center;
    vertical-align: middle;
}

.comparison-table tbody td:first-child {
    text-align: left;
    font-weight: var(--fw-medium);
    color: var(--charcoal);
}

.comparison-table tbody tr:hover {
    background: rgba(212, 175, 55, 0.04);
}

.comparison-table .check {
    color: var(--gold-primary);
}

.comparison-table .cross {
    color: var(--grey-400);
}

/* ============================================================
   FAQ ACCORDION
   ============================================================ */
.faq-accordion .accordion-item {
    border: 1px solid var(--grey-200);
    border-radius: var(--radius-md) !important;
    margin-bottom: 12px;
    overflow: hidden;
    transition: var(--transition-base);
}

.faq-accordion .accordion-item:hover {
    border-color: rgba(212, 175, 55, 0.3);
}

.faq-accordion .accordion-button {
    font-family: var(--font-primary);
    font-weight: var(--fw-semibold);
    font-size: 1rem;
    color: var(--charcoal);
    padding: 20px 25px;
    background: var(--white);
    box-shadow: none !important;
}

.faq-accordion .accordion-button:not(.collapsed) {
    background: rgba(212, 175, 55, 0.05);
    color: var(--gold-dark);
}

.faq-accordion .accordion-button::after {
    background-image: none;
    content: "\f107";
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    font-size: 0.9rem;
    color: var(--gold-primary);
    transition: transform 0.3s ease;
    width: auto;
    height: auto;
}

.faq-accordion .accordion-button:not(.collapsed)::after {
    transform: rotate(180deg);
}

.faq-accordion .accordion-body {
    padding: 0 25px 25px;
    color: var(--grey-600);
    font-size: 0.92rem;
    line-height: 1.8;
}

/* ============================================================
   CONTACT FORM & INFO CARDS
   ============================================================ */
.contact-form .form-control,
.contact-form .form-select {
    border: 1px solid var(--grey-200);
    border-radius: var(--radius-sm);
    padding: 14px 18px;
    font-size: 0.9rem;
    font-family: var(--font-primary);
    transition: var(--transition-base);
    background: var(--white);
}

.contact-form .form-control:focus,
.contact-form .form-select:focus {
    border-color: var(--gold-primary);
    box-shadow: 0 0 0 3px rgba(212, 175, 55, 0.12);
}

.contact-form .form-label {
    font-weight: var(--fw-medium);
    font-size: 0.85rem;
    color: var(--charcoal);
    margin-bottom: 6px;
}

.contact-info-card {
    background: var(--white);
    border: 1px solid var(--grey-200);
    border-radius: var(--radius-md);
    padding: 30px;
    display: flex;
    align-items: flex-start;
    gap: 18px;
    transition: var(--transition-smooth);
}

.contact-info-card:hover {
    border-color: rgba(212, 175, 55, 0.4);
    box-shadow: var(--shadow-md);
}

.contact-info-card .info-icon {
    width: 54px;
    height: 54px;
    min-width: 54px;
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(
        135deg,
        rgba(212, 175, 55, 0.1) 0%,
        rgba(212, 175, 55, 0.05) 100%
    );
    color: var(--gold-primary);
    font-size: 1.2rem;
}

.contact-info-card h6 {
    font-weight: var(--fw-semibold);
    margin-bottom: 4px;
    font-size: 0.95rem;
}

.contact-info-card p {
    color: var(--grey-600);
    font-size: 0.88rem;
    margin: 0;
    line-height: 1.6;
}

/* ============================================================
   PAGE HEADER / INNER PAGES BANNER
   ============================================================ */
.page-header {
    background:
        linear-gradient(
            135deg,
            rgba(0, 0, 0, 0.637) 0%,
            rgba(0, 0, 0, 0.548) 100%
        ),
        url("./images/about.avif") center/cover no-repeat;
    padding: 160px 0 80px;
    text-align: center;
    /* position: relative; */
    overflow: hidden;
    height: 400px;
    border-radius: 20px;
    margin: 20px;
    margin-top: 0px !important;
}

/* .page-header::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 80px;
  background: linear-gradient(to top, var(--white), transparent);
} */

.page-header h1 {
    color: var(--white);
    font-size: 3rem;
    font-weight: var(--fw-extrabold);
    margin-bottom: 1rem;
}

.page-header .breadcrumb {
    justify-content: center;
    margin: 0;
}

.page-header .breadcrumb-item,
.page-header .breadcrumb-item a {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.9rem;
}

.page-header .breadcrumb-item.active {
    color: var(--gold-primary);
}

.page-header .breadcrumb-item + .breadcrumb-item::before {
    color: rgba(255, 255, 255, 0.3);
}

/* ============================================================
   FOOTER
   ============================================================ */
.footer-premium {
    background: var(--dark-bg);
    color: rgba(255, 255, 255, 0.7);
    padding-top: 80px;
}

.footer-premium .footer-brand {
    font-size: 1.5rem;
    font-weight: var(--fw-extrabold);
    color: var(--white);
    margin-bottom: 1rem;
    display: inline-block;
}

.footer-premium .footer-brand span {
    color: var(--gold-primary);
}

.footer-premium .footer-desc {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.5);
    line-height: 1.8;
    max-width: 300px;
}

.footer-premium h6 {
    color: var(--white);
    font-weight: var(--fw-semibold);
    font-size: 1rem;
    margin-bottom: 1.5rem;
    position: relative;
    padding-bottom: 12px;
}

.footer-premium h6::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 30px;
    height: 2px;
    background: var(--gold-primary);
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 10px;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.88rem;
    transition: var(--transition-base);
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

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

.footer-social {
    display: flex;
    gap: 12px;
    margin-top: 1.5rem;
}
.navbar-social {
    display: flex;
    gap: 12px;
    margin-top: 1.5rem;
}
.navbar-social.footer-social a {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255, 255, 255, 0.6);
    transition: var(--transition-smooth);
    font-size: 0.9rem;
    background-color: #a8882c;
}
.footer-social a {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255, 255, 255, 0.6);
    transition: var(--transition-smooth);
    font-size: 0.9rem;
}

.footer-social a:hover {
    background: var(--gold-primary);
    border-color: var(--gold-primary);
    color: var(--charcoal);
    transform: translateY(-3px);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    padding: 25px 0;
    margin-top: 60px;
}

.footer-bottom p {
    font-size: 0.82rem;
    color: rgba(255, 255, 255, 0.4);
    margin: 0;
}

/* ============================================================
   ABOUT / VALUES SECTION
   ============================================================ */
.value-card {
    text-align: center;
    padding: 40px 25px;
    border-radius: var(--radius-lg);
    background: var(--white);
    border: 1px solid var(--grey-200);
    transition: var(--transition-smooth);
}

.value-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-md);
    border-color: rgba(212, 175, 55, 0.3);
}

.value-card .value-icon {
    width: 64px;
    height: 64px;
    border-radius: var(--radius-md);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(
        135deg,
        rgba(212, 175, 55, 0.12) 0%,
        rgba(212, 175, 55, 0.04) 100%
    );
    color: var(--gold-primary);
    font-size: 1.5rem;
    margin-bottom: 1.25rem;
}

/* Counter / Achievement */
.counter-box {
    text-align: center;
    padding: 30px;
}

.counter-number {
    font-size: 3rem;
    font-weight: var(--fw-extrabold);
    color: var(--gold-primary);
    line-height: 1;
    margin-bottom: 0.5rem;
}

.counter-label {
    font-size: 0.88rem;
    color: var(--grey-600);
    font-weight: var(--fw-medium);
}

/* ============================================================
   MECHANICAL SERVICES
   ============================================================ */
.service-detail-card {
    background: var(--white);
    border: 1px solid var(--grey-200);
    border-radius: var(--radius-lg);
    padding: 35px 30px;
    transition: var(--transition-smooth);
    height: 100%;
}

.service-detail-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
    border-color: rgba(212, 175, 55, 0.3);
}

.service-detail-card .service-icon {
    width: 60px;
    height: 60px;
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(
        135deg,
        rgba(212, 175, 55, 0.12) 0%,
        rgba(212, 175, 55, 0.04) 100%
    );
    color: var(--gold-primary);
    font-size: 1.4rem;
    margin-bottom: 1.25rem;
    transition: var(--transition-smooth);
}

.service-detail-card:hover .service-icon {
    background: var(--gold-gradient-btn);
    color: var(--charcoal);
}

.service-detail-card h5 {
    font-weight: var(--fw-semibold);
    margin-bottom: 0.75rem;
    font-size: 1.1rem;
}

.service-detail-card p {
    color: var(--grey-600);
    font-size: 0.88rem;
    line-height: 1.7;
    margin-bottom: 0;
}

/* ============================================================
   LEGAL / CONTENT PAGES
   ============================================================ */
.legal-content {
    max-width: 800px;
    margin: 0 auto;
}

.legal-content h3 {
    font-size: 1.3rem;
    margin-top: 2.5rem;
    margin-bottom: 1rem;
    padding-bottom: 0.5rem;
    border-bottom: 1px solid var(--grey-200);
}

.legal-content p,
.legal-content li {
    color: var(--grey-600);
    font-size: 0.92rem;
    line-height: 1.9;
}

.legal-content ul {
    padding-left: 1.5rem;
}

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

/* ============================================================
   MAP EMBED
   ============================================================ */
.map-container {
    border-radius: var(--radius-lg);
    overflow: hidden;
    border: 1px solid var(--grey-200);
    height: 400px;
}

.map-container iframe {
    width: 100%;
    height: 100%;
    border: none;
}

/* ============================================================
   CTA BANNER
   ============================================================ */
.cta-banner {
    background: linear-gradient(
        135deg,
        var(--charcoal) 0%,
        var(--dark-bg) 100%
    );
    border-radius: var(--radius-xl);
    padding: 60px;
    position: relative;
    overflow: hidden;
}

.cta-banner::before {
    content: "";
    position: absolute;
    top: -50%;
    right: -20%;
    width: 400px;
    height: 400px;
    border-radius: 50%;
    background: radial-gradient(
        circle,
        rgba(212, 175, 55, 0.1) 0%,
        transparent 70%
    );
}

.cta-banner h2 {
    color: var(--white);
    margin-bottom: 1rem;
}

.cta-banner p {
    color: rgba(255, 255, 255, 0.6);
    margin-bottom: 2rem;
}

/* ============================================================
   SCROLL-TO-TOP BUTTON
   ============================================================ */
.scroll-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: var(--gold-gradient-btn);
    color: var(--charcoal);
    border: none;
    font-size: 1.1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition-smooth);
    z-index: 1000;
    box-shadow: var(--shadow-gold);
}

.scroll-to-top.show {
    opacity: 1;
    visibility: visible;
}

.scroll-to-top:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-gold-lg);
}

/* ============================================================
   ANIMATIONS
   ============================================================ */
.fade-up {
    opacity: 0;
    transform: translateY(30px);
    transition:
        opacity 0.6s ease,
        transform 0.6s ease;
}

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

/* ============================================================
   RESPONSIVE OVERRIDES
   ============================================================ */
@media (max-width: 991.98px) {
    h1 {
        font-size: 2.5rem;
    }
    h2 {
        font-size: 2rem;
    }
    .display-hero {
        font-size: 3rem;
    }
    .hero-section .hero-title {
        font-size: 2.8rem;
    }
    .section-padding {
        padding: 70px 0;
    }
    .hero-form-card {
        padding: 30px;
        margin-top: 40px;
    }
    .cta-banner {
        padding: 40px 30px;
    }
    .step-connector {
        display: none;
    }
    .page-header {
        padding: 140px 0 60px;
    }
    .page-header h1 {
        font-size: 2.2rem;
    }
}

@media (max-width: 767.98px) {
    h1 {
        font-size: 1.6rem;
    }
    h2 {
        font-size: 1.4rem;
    }
    h6 {
        font-size: 0.85rem;
    }
    .display-hero {
        font-size: 2rem;
    }
    .hero-section .hero-title {
        font-size: 1.8rem;
    }
    .section-padding {
        padding: 35px 0;
    }
    .section-title {
        font-size: 1.25rem;
    }
    .section-subtitle {
        font-size: 0.88rem;
    }
    .section-label {
        font-size: 0.7rem;
    }
    .stat-number {
        font-size: 2rem;
    }
    .stat-label {
        font-size: 0.8rem;
    }
    .pricing-card.featured {
        transform: none;
    }
    .pricing-card.featured:hover {
        transform: translateY(-6px);
    }
    .navbar-premium .navbar-collapse {
        background: rgba(15, 15, 26, 0.98);
        padding: 15px;
        border-radius: var(--radius-md);
        margin-top: 10px;
    }
    .hero-section {
        height: 400px !important;
    }
    .cr-card__container {
        row-gap: 2rem;
    }
    .cr-card__title {
        font-size: 16px;
    }
    .cr-card__description {
        font-size: 0.78rem;
    }
    .testimonial-text {
        font-size: 0.85rem;
    }
    .testimonial-card {
        padding: 20px 18px;
    }
    .cta-banner {
        padding: 30px 20px;
    }
    .cta-banner h2 {
        font-size: 1.3rem;
    }
    .btn-gold,
    .btn-white-outline,
    .btn-gold-outline {
        padding: 10px 22px;
        font-size: 0.85rem;
    }
}

@media (max-width: 575.98px) {
    .hero-section .hero-title {
        font-size: 1.8rem;
    }
    .hero-form-card {
        padding: 25px 20px;
    }
    .cta-banner {
        padding: 30px 20px;
    }
    .premium-card {
        padding: 30px 20px;
    }
}

/* ============================================================
   UTILITY CLASSES
   ============================================================ */
.gold-border-left {
    border-left: 3px solid var(--gold-primary);
    padding-left: 20px;
}

.gold-dot::before {
    content: "";
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--gold-primary);
    display: inline-block;
    margin-right: 10px;
}

.hover-gold:hover {
    color: var(--gold-primary) !important;
}

.img-gold-border {
    border: 3px solid var(--gold-primary);
    border-radius: var(--radius-lg);
}

.overflow-hidden {
    overflow: hidden;
}

/* WhatsApp floating button */
.whatsapp-float {
    position: fixed;
    bottom: 90px;
    right: 30px;
    width: 54px;
    height: 54px;
    border-radius: 50%;
    background: #25d366;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    z-index: 999;
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.35);
    transition: var(--transition-smooth);
}

.whatsapp-float:hover {
    transform: translateY(-3px) scale(1.05);
    color: #fff;
    box-shadow: 0 8px 30px rgba(37, 211, 102, 0.5);
}

/*=============== CARD ===============*/
.cr-container {
    display: grid;
    place-items: center;
    margin-inline: 1.5rem;
    padding-bottom: 80px;
}

.cr-card__container {
    display: grid;
    row-gap: 3.5rem;
}

.cr-card__article {
    position: relative;
    overflow: hidden;
}

.cr-card__img {
    width: 328px;
    border-radius: 1.5rem;
    height: 400px;
    object-fit: cover;
}

.cr-card__data {
    width: 280px;
    background-color: var(--white);
    padding: 1.5rem 1rem;
    box-shadow: 0 8px 24px hsla(0, 0%, 0%, 0.15);
    border-radius: 1rem;
    position: absolute;
    bottom: -9rem;
    left: 0;
    right: 0;
    margin-inline: auto;
    opacity: 0;
    transition: opacity 1s 1s;
}

.cr-card__description {
    display: block;
    font-size: var(--small-font-size);
    margin-bottom: 0.25rem;
}

.cr-card__title {
    font-size: 20px;
    font-weight: 500;
    color: var(--title-color);
    margin-bottom: 0.75rem;
}

.cr-card__button {
    text-decoration: none;
    font-size: var(--small-font-size);
    font-weight: 500;
    color: var(--first-color);
}

.cr-card__button:hover {
    text-decoration: underline;
}

/* Naming animations in hover */
.cr-card__article:hover .cr-card__data {
    animation: show-data 1s forwards;
    opacity: 1;
    transition: opacity 0.3s;
}

.cr-card__article:hover {
    animation: remove-overflow 2s forwards;
}

.cr-card__article:not(:hover) {
    animation: show-overflow 2s forwards;
}

.cr-card__article:not(:hover) .cr-card__data {
    animation: remove-data 1s forwards;
}

/* Card animation */
@keyframes show-data {
    50% {
        transform: translateY(-10rem);
    }
    100% {
        transform: translateY(-7rem);
    }
}

@keyframes remove-overflow {
    to {
        overflow: initial;
    }
}

@keyframes remove-data {
    0% {
        transform: translateY(-7rem);
    }
    50% {
        transform: translateY(-10rem);
    }
    100% {
        transform: translateY(0.5rem);
    }
}

@keyframes show-overflow {
    0% {
        overflow: initial;
        pointer-events: none;
    }
    50% {
        overflow: hidden;
    }
}

/*=============== BREAKPOINTS ===============*/
/* For small devices */
@media screen and (max-width: 340px) {
    .cr-container {
        margin-inline: 1rem;
    }

    .cr-card__data {
        width: 250px;
        padding: 1rem;
    }
}

/* For medium devices */
@media screen and (min-width: 768px) {
    .cr-card__container {
        grid-template-columns: repeat(2, 1fr);
        column-gap: 1.5rem;
    }
}

/* For large devices */
@media screen and (min-width: 1120px) {
    .cr-card__container {
        grid-template-columns: repeat(4, 1fr);
    }
    .cr-card__img {
        width: 300px;
    }
    .cr-card__data {
        width: 280px;
        padding-inline: 1.5rem;
    }
}

.image-comparison {
    max-width: 90%;
    margin: 20px auto;
    border-radius: 20px;
    overflow: hidden;
}

.image-comparison img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: left;
}

.image-comparison .images-container {
    position: relative;
    display: flex;
}

.image-comparison .images-container .before-image {
    position: absolute;
    top: 0;
    width: 50%;
}

.image-comparison .slider {
    position: absolute;
    inset: 0;
    opacity: 0;
    cursor: pointer;
}

.image-comparison .slider-line {
    position: absolute;
    height: 100%;
    width: 4px;
    background: #fff;
    left: 50%;
    transform: translateX(-50%);
}

.image-comparison .slider-icon {
    position: absolute;
    left: 50%;
    top: 50%;
    width: 60px;
    height: 60px;
    color: #fff;
    transform: translate(-50%, -50%) rotateZ(90deg);
}
.before-icon-box {
    position: absolute;
    top: 30%;
}
.before-icon {
    transform-style: preserve-3d;
    width: 85px;
    height: 85px;
    transform: rotateX(0) rotateY(180deg) rotate(10deg);
}
.icon-text {
    color: #000;
    font-size: 22px;
    font-weight: 600;
    line-height: 32px;
}
.after-icon-box {
    position: absolute;
    /* inset: auto 0% 0% auto; */
    bottom: 30%;
    right: 10%;
}
.after-icon {
    width: 85px;
    height: 85px;
    margin-bottom: 10px;
}
/* ============================================================
   HERO IMAGE SLIDER
   ============================================================ */
.hero-slider-section {
    position: relative;
    overflow: hidden;
}

.heroSwiper {
    width: 100%;
    height: 80vh;
}

.heroSwiper .swiper-slide {
    background: none;
}

.hero-slide {
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    position: relative;
}

.hero-slide-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        135deg,
        rgba(0, 0, 0, 0.7) 0%,
        rgba(0, 0, 0, 0.35) 100%
    );
    display: flex;
    align-items: center;
}

.hero-slide-overlay .container {
    text-align: left;
}

.hero-slide-badge {
    display: inline-block;
    background: rgba(212, 175, 55, 0.15);
    border: 1px solid rgba(212, 175, 55, 0.4);
    color: var(--gold-primary);
    padding: 6px 18px;
    border-radius: var(--radius-pill);
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 1rem;
    opacity: 0;
    transform: translateY(-20px);
    transition: all 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    transition-delay: 0.3s;
}

.hero-slide-badge i {
    margin-right: 6px;
}

.hero-slide-overlay h2 {
    font-family: var(--font-primary);
    font-size: 2.8rem;
    font-weight: var(--fw-bold);
    color: var(--white);
    margin-bottom: 0.8rem;
    line-height: 1.2;
    opacity: 0;
    transform: translateX(-40px);
    transition: all 0.7s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    transition-delay: 0.5s;
}

.hero-slide-overlay p {
    font-size: 1.05rem;
    color: rgba(255, 255, 255, 0.7);
    max-width: 500px;
    line-height: 1.7;
    margin: 0;
    opacity: 0;
    transform: translateX(-30px);
    transition: all 0.7s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    transition-delay: 0.7s;
}

/* Buttons row */
.hero-slide-overlay .d-flex.gap-3 {
    opacity: 0;
    transform: translateY(25px);
    transition: all 0.7s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    transition-delay: 0.9s;
}

/* Trust badges row */
.hero-slide-overlay .d-flex.gap-4 {
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    transition-delay: 1.1s;
}

/* Background image zoom effect */
.hero-slide {
    overflow: hidden;
}

.hero-slide::before {
    content: "";
    position: absolute;
    inset: 0;
    background: inherit;
    background-size: cover;
    background-position: center;
    transform: scale(1);
    transition: transform 6s ease-out;
    z-index: 0;
}

.heroSwiper .swiper-slide-active .hero-slide::before {
    transform: scale(1.08);
}

.hero-slide-overlay {
    z-index: 1;
}

/* Active slide animations */
.heroSwiper .swiper-slide-active .hero-slide-badge {
    opacity: 1;
    transform: translateY(0);
}

.heroSwiper .swiper-slide-active .hero-slide-overlay h2 {
    opacity: 1;
    transform: translateX(0);
}

.heroSwiper .swiper-slide-active .hero-slide-overlay p {
    opacity: 1;
    transform: translateX(0);
}

.heroSwiper .swiper-slide-active .hero-slide-overlay .d-flex.gap-3 {
    opacity: 1;
    transform: translateY(0);
}

.heroSwiper .swiper-slide-active .hero-slide-overlay .d-flex.gap-4 {
    opacity: 1;
    transform: translateY(0);
}

.heroSwiper .swiper-button-prev,
.heroSwiper .swiper-button-next {
    color: var(--gold-primary) !important;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    width: 56px;
    height: 56px;
    border-radius: 50%;
    border: 2px solid rgba(212, 175, 55, 0.4);
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
}

.heroSwiper .swiper-button-prev:hover,
.heroSwiper .swiper-button-next:hover {
    background: var(--gold-gradient-btn);
    color: var(--charcoal) !important;
    border-color: var(--gold-primary);
    transform: scale(1.12);
    box-shadow: var(--shadow-gold-lg);
}

.heroSwiper .swiper-button-prev:hover::after,
.heroSwiper .swiper-button-next:hover::after {
    color: var(--charcoal);
}

.heroSwiper .swiper-button-prev:active,
.heroSwiper .swiper-button-next:active {
    transform: scale(0.95);
}

.heroSwiper .swiper-button-prev::after,
.heroSwiper .swiper-button-next::after {
    font-size: 1.1rem !important;
    font-weight: 700;
    color: var(--gold-primary);
    display: block !important;
    visibility: visible !important;
    opacity: 1 !important;
}

.heroSwiper .swiper-pagination-bullet {
    width: 10px;
    height: 10px;
    background: rgba(255, 255, 255, 0.5);
    opacity: 1;
    transition: var(--transition-base);
}

.heroSwiper .swiper-pagination-bullet-active {
    background: var(--gold-primary);
    width: 28px;
    border-radius: 5px;
}

@media (max-width: 991px) {
    .heroSwiper {
        height: 70vh;
    }
    .hero-slide-overlay h2 {
        font-size: 2rem;
    }
}

@media (max-width: 600px) {
    /* Hero Slider */
    .heroSwiper {
        height: 60vh !important;
    }
    h5 {
        font-size: 1rem !important;
    }
    .step-card {
        padding: 0 !important;
    }
    .form-card h2 {
        font-size: 20px !important;
    }
    .service-detail-card h5 {
        font-size: 15px;
    }
    .service-detail-card {
        padding: 20px !important;
    }
    .comparison-table tbody td {
        padding: 10px !important;
    }
    .pricing-amount {
        font-size: 25px !important;
    }
    .pricing-card {
        padding: 20px !important;
    }
    .page-header {
        height: 250px;
    }
    .page-header {
        padding: 80px 0 50px;
    }
    .page-header h1 {
        font-size: 22px;
    }
    .value-card {
        padding: 20px !important;
    }
    .page-header {
        border-radius: 0;
        margin: 0 !important;
    }
    video.elementor-background-video-hosted {
        height: 250px !important;
    }
    .premium-card .card-title {
        font-size: 16px;
    }
    .hero-slide-overlay h2 {
        font-size: 1.1rem;
        margin-bottom: 0.3rem;
        line-height: 1.3;
    }
    .hero-slide-overlay p {
        font-size: 0.7rem;
        line-height: 1.4;
        margin-bottom: 0;
    }
    .hero-slide-badge {
        font-size: 0.6rem;
        padding: 3px 10px;
        margin-bottom: 0.4rem;
    }
    .hero-slide-overlay .btn-gold,
    .hero-slide-overlay .btn-white-outline {
        font-size: 0.68rem;
        padding: 5px 12px;
    }
    .hero-slide-overlay .btn-lg {
        font-size: 0.68rem !important;
        padding: 5px 12px !important;
    }
    .hero-slide-overlay .d-flex.gap-3 {
        gap: 0.4rem !important;
        margin-top: 0.4rem !important;
    }
    .hero-slide-overlay .d-flex.gap-4 {
        gap: 0.4rem !important;
        margin-top: 0.3rem !important;
        padding-top: 0 !important;
    }
    .hero-slide-overlay .d-flex.gap-4 span,
    .hero-slide-overlay .d-flex.gap-2 span {
        font-size: 0.62rem !important;
    }
    .hero-slide-overlay .d-flex.gap-2 i {
        font-size: 0.62rem;
    }
    .heroSwiper .swiper-button-prev,
    .heroSwiper .swiper-button-next {
        width: 30px;
        height: 30px;
        border-width: 1px;
    }
    .heroSwiper .swiper-button-prev::after,
    .heroSwiper .swiper-button-next::after {
        font-size: 0.65rem;
    }

    /* Sections global */
    .section-padding {
        padding: 22px 0;
    }
    h1 {
        font-size: 1.3rem;
    }
    h2 {
        font-size: 1.15rem;
    }
    h6 {
        font-size: 0.8rem;
    }
    .section-title {
        font-size: 1.05rem;
        margin-bottom: 1.5rem;
    }
    .section-subtitle {
        font-size: 0.78rem;
    }
    .section-label {
        font-size: 0.65rem;
        padding: 4px 14px;
    }
    .gold-underline::after {
        bottom: -6px;
        height: 2px;
    }
    .cr-container {
        padding-bottom: 30px;
    }
    /* Why Choose Us */
    .text-muted {
        font-size: 0.78rem !important;
        line-height: 1.6 !important;
    }
    .img-gold-border {
        border-radius: 10px !important;
    }

    /* Stats */
    .stat-number {
        font-size: 1.5rem;
    }
    .stat-label {
        font-size: 0.68rem;
    }
    .stat-item {
        padding: 10px 0;
    }
    .slide-track {
        animation: scroll 40s linear infinite;
        display: flex;
        width: calc(130px * 14) !important;
        gap: 20px;
    }

    /* Feature Cards */
    .cr-card__container {
        row-gap: 1.5rem;
    }
    .cr-card__img {
        width: 100%;
        border-radius: 1rem;
        height: 220px;
    }
    .cr-card__data {
        width: 90%;
        padding: 0.8rem;
    }
    .cr-card__title {
        font-size: 14px;
    }
    .cr-card__description {
        font-size: 0.72rem;
    }

    /* Before & After */
    .image-comparison {
        max-width: 100%;
        margin: 10px auto;
    }
    .before-icon,
    .after-icon {
        width: 50px;
        height: 50px;
    }
    .icon-text {
        font-size: 14px;
    }
    .section-subtitle {
        margin-bottom: 10px;
    }
    /* Service Slider */
    h5.home-service.card-title {
        font-size: 14px !important;
        padding-top: 8px;
    }
    .swiper-slide img {
        height: 180px !important;
    }
    .card-text {
        font-size: 0.72rem;
        margin-bottom: 0.5rem;
    }

    /* Testimonials */
    .testimonial-card {
        padding: 16px 14px;
    }
    .testimonial-text {
        font-size: 0.76rem;
        line-height: 1.5;
    }
    .testimonial-author-name {
        font-size: 0.8rem;
    }
    .testimonial-author-role {
        font-size: 0.7rem;
    }
    .testimonial-stars i {
        font-size: 0.75rem;
    }
    .testimonial-avatar {
        width: 36px;
        height: 36px;
        font-size: 0.75rem;
    }

    /* CTA Banner */
    .cta-banner {
        padding: 22px 16px;
    }
    .cta-banner h2 {
        font-size: 1.05rem;
    }
    .cta-banner p {
        font-size: 0.75rem;
        margin-bottom: 1rem !important;
    }
    .cta-banner .btn-lg {
        font-size: 0.72rem;
        padding: 7px 16px;
    }

    /* General buttons */
    .btn-gold,
    .btn-white-outline,
    .btn-gold-outline {
        padding: 8px 18px;
        font-size: 0.78rem;
    }
}

.swiper-container {
    width: 100%;
    height: 100%;
    overflow: hidden;
}
.swiper-slide {
    text-align: center;
    font-size: 18px;
    background: #fff;

    /* Center slide text vertically */
    display: -webkit-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    -webkit-justify-content: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    -webkit-align-items: center;
    align-items: center;
}
.swiper-slide img {
    height: 400px;
    width: 100%;
    object-fit: cover;
}
h5.home-service.card-title {
    font-size: 25px;
    padding-top: 20px;
}
.navbar-brand img {
    /*width: 30%;*/
    max-width: 280px;
}
a.navbar-brand {
    width: 22%;
}

@keyframes scroll {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(calc(-250px * 7));
    }
}

.slider {
    /* height: 100px; */
    margin: auto;
    overflow: hidden;
    position: relative;
    width: auto;
    margin-top: 20px;
    .slide-track {
        animation: scroll 40s linear infinite;
        display: flex;
        width: calc(220px * 14);
        gap: 20px;
    }
    .slide {
        /* height: 100px; */
        width: 220px;
        /* border:1px solid #bebebe; */
    }
}
.slide img {
    height: 100%;
    object-fit: cover;
    object-position: center;
    width: 70%;
}
.sticky-form-container {
    position: sticky;
    top: 2rem;
}

.form-card {
    background: linear-gradient(135deg, #ffffff 0%, #ffffff 100%);
    border-radius: 16px;
    padding: 2.5rem 2rem;
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.08);
    border: 1px solid var(--border-color);
    transition: all 0.3s ease;
}

.form-card:hover {
    box-shadow: 0 16px 40px rgba(15, 118, 110, 0.12);
    border-color: var(--secondary-color);
}

.form-card h2 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: var(--primary-color);
}

.form-card .form-subtitle {
    color: var(--text-light);
    font-size: 0.95rem;
    margin-bottom: 1.5rem;
    line-height: 1.5;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    font-weight: 400;
    font-size: 14px;
    color: var(--text-dark);
    margin-bottom: 0.5rem;
    display: block;
}

.form-control,
.form-select {
    border: 2px solid var(--border-color);
    border-radius: 8px;
    padding: 0.75rem 1rem;
    font-size: 1rem;
    transition: all 0.3s ease;
    font-family: "Inter", sans-serif;
}

.form-control:focus,
.form-select:focus {
    border-color: var(--secondary-color);
    box-shadow: 0 0 0 3px rgba(13, 148, 136, 0.1);
    outline: none;
}

.form-control::placeholder {
    color: var(--text-light);
    opacity: 0.7;
}

.btn-submit {
    width: 100%;
    padding: 0.95rem;
    font-family: "Poppins", sans-serif;
    font-weight: 700;
    font-size: 1rem;
    background: var(--gold-primary);
    border: none;
    border-radius: 8px;
    color: rgb(0, 0, 0);
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: 0 6px 16px rgba(15, 118, 110, 0.3);
    margin-top: 1rem;
}
.form-control {
    background-color: #f5f5f5 !important;
}
select#experience {
    background-color: #f5f5f5;
}
.btn-submit:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 24px rgba(15, 118, 110, 0.4);
    color: white;
    text-decoration: none;
}

.btn-submit:active {
    transform: translateY(0);
}

.form-footer {
    font-size: 0.85rem;
    color: var(--text-light);
    text-align: center;
    margin-top: 1.5rem;
    padding-top: 1.5rem;
    border-top: 1px solid var(--border-color);
}

/* Responsive Design */
@media (max-width: 1200px) {
    .main-container {
        flex-direction: column;
    }

    .left-section,
    .right-section {
        flex: 0 0 100%;
    }

    .sticky-form-container {
        position: static;
        margin-top: 2rem;
    }

    .header-section h1 {
        font-size: 2rem;
    }
}
@media (max-width: 768px) {
    .navbar-brand img {
        width: 100%;
    }
    a.navbar-brand {
        width: 50%;
    }
    .navbar-premium {
        margin: 0;
    }
    .navbar-premium .nav-link {
        color: #fff !important;
    }
}

/* ============================================================
   CAREER PAGE
   ============================================================ */

/* --- Job Listings Accordion --- */
.career-jobs-list {
    max-width: 900px;
    margin: 0 auto;
}

.career-job-item {
    background: var(--white);
    border: 1px solid var(--grey-200);
    border-radius: var(--radius-md);
    margin-bottom: 16px;
    overflow: hidden;
    transition: var(--transition-smooth);
}

.career-job-item:hover {
    border-color: rgba(212, 175, 55, 0.35);
    box-shadow: var(--shadow-sm);
}

.career-job-item.open {
    border-color: rgba(212, 175, 55, 0.5);
    box-shadow: var(--shadow-md);
}

.career-job-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 24px 30px;
    cursor: pointer;
    gap: 16px;
    transition: var(--transition-base);
}

.career-job-header:hover {
    background: var(--off-white);
}

.career-job-info {
    flex: 1;
}

.career-job-title {
    font-size: 1.05rem;
    font-weight: 600;
    color: var(--charcoal);
    margin-bottom: 8px;
}

.career-job-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    font-family: "Urbanist", sans-serif;
}

.career-job-meta span {
    font-size: 0.82rem;
    color: var(--grey-600);
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.career-job-meta span i {
    color: var(--gold-primary);
    font-size: 0.78rem;
}

.career-job-toggle {
    width: 40px;
    height: 40px;
    min-width: 40px;
    border-radius: 50%;
    background: linear-gradient(
        135deg,
        rgba(212, 175, 55, 0.1) 0%,
        rgba(212, 175, 55, 0.04) 100%
    );
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gold-primary);
    transition: var(--transition-base);
}

.career-job-item.open .career-job-toggle {
    transform: rotate(180deg);
    background: var(--gold-gradient-btn);
    color: var(--charcoal);
}

.career-job-body {
    max-height: 0;
    overflow: hidden;
    padding: 0 30px;
    transition:
        max-height 0.4s ease,
        padding 0.3s ease;
}

.career-job-item.open .career-job-body {
    max-height: 600px;
    padding: 0 30px 30px;
    border-top: 1px solid var(--grey-200);
    display: block;
}

.career-list {
    list-style: none;
    padding: 0;
    margin: 0;
    font-family: "Urbanist", sans-serif;
}

.career-list li {
    position: relative;
    padding-left: 20px;
    margin-bottom: 8px;
    font-size: 0.88rem;
    color: var(--grey-600);
    line-height: 1.7;
}

.career-list li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 10px;
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: var(--gold-gradient-btn);
}

/* --- Application Form Select --- */
.career-apply-form .form-select {
    border: 1px solid var(--grey-200);
    border-radius: var(--radius-sm);
    padding: 14px 18px;
    font-size: 0.9rem;
    color: var(--grey-800);
    transition: var(--transition-base);
    background-color: var(--white);
    font-family: "Urbanist", sans-serif;
}

.career-apply-form .form-select:focus {
    border-color: var(--gold-primary);
    box-shadow: 0 0 0 3px rgba(212, 175, 55, 0.1);
}

/* --- Responsive for Career Page --- */
@media (max-width: 768px) {
    .career-job-header {
        padding: 18px 20px;
    }

    .career-job-item.open .career-job-body {
        padding: 0 20px 24px;
    }

    .career-job-meta {
        gap: 10px;
    }

    .career-job-meta span {
        font-size: 0.78rem;
    }
}

/* --- Job Listings Accordion --- */
.career-jobs-list {
    max-width: 900px;
    margin: 0 auto;
}

.career-job-item {
    background: var(--white);
    border: 1px solid var(--grey-200);
    border-radius: var(--radius-md);
    margin-bottom: 16px;
    overflow: hidden;
    transition: var(--transition-smooth);
}

.career-job-item:hover {
    border-color: rgba(212, 175, 55, 0.35);
    box-shadow: var(--shadow-sm);
}

.career-job-item.open {
    border-color: rgba(212, 175, 55, 0.5);
    box-shadow: var(--shadow-md);
}

.career-job-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 24px 30px;
    cursor: pointer;
    gap: 16px;
    transition: var(--transition-base);
}

.career-job-header:hover {
    background: var(--off-white);
}

.career-job-info {
    flex: 1;
}

.career-job-title {
    font-size: 1.05rem;
    font-weight: 600;
    color: var(--charcoal);
    margin-bottom: 8px;
}

.career-job-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    font-family: "Urbanist", sans-serif;
}

.career-job-meta span {
    font-size: 0.82rem;
    color: var(--grey-600);
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.career-job-meta span i {
    color: var(--gold-primary);
    font-size: 0.78rem;
}

.career-job-toggle {
    width: 40px;
    height: 40px;
    min-width: 40px;
    border-radius: 50%;
    background: linear-gradient(
        135deg,
        rgba(212, 175, 55, 0.1) 0%,
        rgba(212, 175, 55, 0.04) 100%
    );
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gold-primary);
    transition: var(--transition-base);
}

.career-job-item.open .career-job-toggle {
    transform: rotate(180deg);
    background: var(--gold-gradient-btn);
    color: var(--charcoal);
}

.career-job-body {
    max-height: 0;
    overflow: hidden;
    padding: 0 30px;
    transition:
        max-height 0.4s ease,
        padding 0.3s ease;
}

.career-job-item.open .career-job-body {
    max-height: 600px;
    padding: 0 30px 30px;
    border-top: 1px solid var(--grey-200);
}

.career-list {
    list-style: none;
    padding: 0;
    margin: 0;
    font-family: "Urbanist", sans-serif;
}

.career-list li {
    position: relative;
    padding-left: 20px;
    margin-bottom: 8px;
    font-size: 0.88rem;
    color: var(--grey-600);
    line-height: 1.7;
}

.career-list li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 10px;
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: var(--gold-gradient-btn);
}

/* --- Application Form Select --- */
.career-apply-form .form-select {
    border: 1px solid var(--grey-200);
    border-radius: var(--radius-sm);
    padding: 14px 18px;
    font-size: 0.9rem;
    color: var(--grey-800);
    transition: var(--transition-base);
    background-color: var(--white);
    font-family: "Urbanist", sans-serif;
}

.career-apply-form .form-select:focus {
    border-color: var(--gold-primary);
    box-shadow: 0 0 0 3px rgba(212, 175, 55, 0.1);
}

/* --- Responsive for Career Page --- */
@media (max-width: 768px) {
    .career-job-header {
        padding: 18px 20px;
    }

    .career-job-item.open .career-job-body {
        padding: 0 20px 24px;
    }

    .career-job-meta {
        gap: 10px;
    }

    .career-job-meta span {
        font-size: 0.78rem;
    }
}
section.team {
    width: 100%;
    max-width: 1120px;
    padding: 40px;
    position: relative;
    z-index: 1;
    margin: auto;
}

/* ── Header ── */
.team-header {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    margin-bottom: 50px;
    opacity: 0;
    transform: translateY(24px);
    animation: fadeUp 0.9s cubic-bezier(0.22, 1, 0.36, 1) 0.2s forwards;
}

.team-label {
    font-size: 10px;
    font-weight: 500;
    letter-spacing: 5px;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 14px;
    display: flex;
    align-items: center;
    gap: 10px;
}
.team-label::before {
    content: "";
    display: inline-block;
    width: 28px;
    height: 1px;
    background: var(--gold);
}

.team-title {
    font-family: "Cormorant Garamond", serif;
    font-size: clamp(52px, 8vw, 96px);
    font-weight: 300;
    line-height: 0.9;
    color: var(--black);
}

.team-title span {
    color: var(--gold);
    font-style: italic;
}

.header-right p {
    font-size: 13px;
    color: var(--muted);
    font-weight: 300;
    max-width: 220px;
    line-height: 1.8;
    text-align: right;
}

.header-divider {
    width: 100%;
    height: 1px;
    background: linear-gradient(
        90deg,
        var(--gold) 0%,
        rgba(213, 180, 80, 0.15) 70%,
        transparent 100%
    );
    margin-bottom: 60px;
    opacity: 0;
    animation: fadeIn 1s ease 0.5s forwards;
}

/* ── Grid ── */
.team-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 32px;
}

.card {
    opacity: 0;
    transform: translateY(50px);
}
.card:nth-child(1) {
    animation: fadeUp 0.9s cubic-bezier(0.22, 1, 0.36, 1) 0.55s forwards;
}
.card:nth-child(2) {
    animation: fadeUp 0.9s cubic-bezier(0.22, 1, 0.36, 1) 0.75s forwards;
}

.card-inner {
    border: 1px solid var(--border);
    background: var(--card-bg);
    position: relative;
    overflow: hidden;
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.06);
    transition:
        border-color 0.4s ease,
        transform 0.5s cubic-bezier(0.22, 1, 0.36, 1),
        box-shadow 0.4s ease;
}

.card:hover .card-inner {
    border-color: var(--gold);
    transform: translateY(-8px);
    box-shadow:
        0 20px 60px rgba(213, 180, 80, 0.15),
        0 4px 20px rgba(0, 0, 0, 0.08);
}

/* Corner accents */
.card-inner::before,
.card-inner::after {
    content: "";
    position: absolute;
    width: 20px;
    height: 20px;
    z-index: 5;
    transition:
        width 0.35s ease,
        height 0.35s ease;
}
.card-inner::before {
    top: -1px;
    left: -1px;
    border-top: 2px solid var(--gold);
    border-left: 2px solid var(--gold);
}
.card-inner::after {
    bottom: -1px;
    right: -1px;
    border-bottom: 2px solid var(--gold);
    border-right: 2px solid var(--gold);
}
.card:hover .card-inner::before,
.card:hover .card-inner::after {
    width: 40px;
    height: 40px;
}

/* Image */
.card-image-wrap {
    position: relative;
    overflow: hidden;
    /* aspect-ratio: 4/5; */
    height: 300px;
}

.card-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    filter: grayscale(30%) brightness(1);
    transition:
        filter 0.6s ease,
        transform 0.6s cubic-bezier(0.22, 1, 0.36, 1);
    object-position: 15% 20% !important;
}

.card:hover .card-image {
    filter: grayscale(0%) brightness(1.02) saturate(1.1);
    transform: scale(1.04);
}

/* Bottom gradient overlay */
.card-image-wrap::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to top,
        rgba(255, 255, 255, 0.15) 0%,
        transparent 50%
    );
}

/* Gold shimmer */
.card-shimmer {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        135deg,
        transparent 35%,
        rgba(213, 180, 80, 0.22) 55%,
        transparent 65%
    );
    transform: translateX(-120%);
    transition: transform 0.9s ease;
    z-index: 3;
}
.card:hover .card-shimmer {
    transform: translateX(120%);
}

/* Quote overlay */
.card-quote-wrap {
    position: absolute;
    top: 20px;
    left: 20px;
    right: 20px;
    z-index: 4;
    opacity: 0;
    transform: translateY(-6px);
    transition:
        opacity 0.4s ease 0.1s,
        transform 0.4s ease 0.1s;
}
.card:hover .card-quote-wrap {
    opacity: 1;
    transform: translateY(0);
}

.card-quote {
    font-family: "Cormorant Garamond", serif;
    font-style: italic;
    font-size: 14px;
    color: var(--black);
    line-height: 1.55;
    border-left: 2px solid var(--gold);
    padding: 8px 14px;
    background: rgba(255, 255, 255, 0.88);
    backdrop-filter: blur(6px);
}

/* Body */
.card-body {
    padding: 28px 30px 32px;
    position: relative;
    background: var(--card-bg);
}

/* Gold top bar */
.card-body::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--gold), transparent);
    opacity: 0;
    transition: opacity 0.4s ease;
}
.card:hover .card-body::before {
    opacity: 1;
}

.card-index {
    position: absolute;
    top: 12px;
    right: 24px;
    font-family: "Cormorant Garamond", serif;
    font-size: 72px;
    font-weight: 600;
    color: rgba(213, 180, 80, 0.1);
    line-height: 1;
    user-select: none;
}

.card-role {
    font-size: 9px;
    font-weight: 500;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 8px;
}

.card-name {
    /* font-family: "Cormorant Garamond", serif; */
    font-size: 20px;
    font-weight: 600;
    color: var(--black);
    line-height: 1.05;
    margin-bottom: 16px;
}

.card-divider {
    width: 40px;
    height: 1px;
    background: var(--gold);
    margin-bottom: 14px;
    transition: width 0.4s ease;
}
.card:hover .card-divider {
    width: 80px;
}

.card-bio {
    font-size: 13px;
    line-height: 1.8;
    color: var(--muted);
    font-weight: 300;
}

/* Socials */
.card-socials {
    display: flex;
    gap: 10px;
    margin-top: 22px;
}

.social-btn {
    width: 34px;
    height: 34px;
    border: 1px solid rgba(0, 0, 0, 0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--muted);
    text-decoration: none;
    font-size: 12px;
    font-weight: 500;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.social-btn::before {
    content: "";
    position: absolute;
    inset: 0;
    background: var(--gold);
    transform: scaleY(0);
    transform-origin: bottom;
    transition: transform 0.3s ease;
}

.social-btn:hover::before {
    transform: scaleY(1);
}
.social-btn:hover {
    border-color: var(--gold);
}

.social-btn span {
    position: relative;
    z-index: 1;
    transition: color 0.3s ease;
}
.social-btn:hover span {
    color: var(--black);
}

/* Status */
.status {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    font-size: 10px;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--muted);
    margin-top: 18px;
}
.status-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--gold);
    animation: pulse 2.2s infinite;
}

@keyframes pulse {
    0%,
    100% {
        opacity: 1;
        transform: scale(1);
    }
    50% {
        opacity: 0.4;
        transform: scale(0.75);
    }
}
@keyframes fadeUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}
@keyframes fadeIn {
    to {
        opacity: 1;
    }
}

@media (max-width: 680px) {
    .team-grid {
        grid-template-columns: 1fr;
    }
    .team-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 20px;
    }
    .header-right p {
        text-align: left;
    }
    section.team {
        padding: 60px 24px;
    }
}

/* ── Section Wrapper ── */
.fc-section {
    padding: 40px 24px;
    position: relative;
    overflow: hidden;
    /* background: var(--off-white); */
}

.fc-section::before {
    content: "";
    position: absolute;
    top: -180px;
    left: 50%;
    transform: translateX(-50%);
    width: 900px;
    height: 900px;
    border-radius: 50%;
    background: radial-gradient(
        circle,
        rgba(212, 175, 55, 0.07) 0%,
        transparent 65%
    );
    pointer-events: none;
}

.fc-container {
    max-width: 1320px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

/* ── Header ── */
.fc-header {
    text-align: center;
    margin-bottom: 64px;
}

.fc-label {
    /* display: inline-flex; */
    align-items: center;
    gap: 10px;
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: var(--gold-primary);
    margin-bottom: 18px;
}
.fc-label::before,
.fc-label::after {
    content: "";
    display: inline-block;
    width: 28px;
    height: 1px;
    background: var(--gold-gradient-btn);
}

.fc-title {
    font-family: "Krona One", sans-serif;
    font-size: clamp(1.8rem, 4vw, 2.8rem);
    font-weight: 400;
    color: var(--charcoal);
    line-height: 1.15;
    margin-bottom: 16px;
    position: relative;
    display: inline-block;
    padding-bottom: 20px;
}
.fc-title::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 56px;
    height: 3px;
    background: var(--gold-gradient-btn);
    border-radius: 2px;
}

.fc-subtitle {
    font-size: 1rem;
    color: var(--grey-600);
    font-weight: 300;
    max-width: 520px;
    margin: 18px auto 0;
    line-height: 1.8;
}

/* ── Toggle (optional, purely cosmetic decoration) ── */
.fc-badge-row {
    display: flex;
    justify-content: center;
    gap: 12px;
    flex-wrap: wrap;
    margin-top: 28px;
}
.fc-badge {
    font-size: 0.76rem;
    font-weight: 500;
    letter-spacing: 1px;
    padding: 6px 18px;
    border-radius: 50px;
    border: 1px solid rgba(212, 175, 55, 0.35);
    color: var(--gold-dark);
    background: rgba(212, 175, 55, 0.07);
}

/* ── 3-column card grid ── */
.fc-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    align-items: start;
}

/* ── Individual Plan Card ── */
.fc-card {
    border-radius: 20px;
    overflow: hidden;
    position: relative;
    transition:
        transform 0.4s cubic-bezier(0.22, 1, 0.36, 1),
        box-shadow 0.4s ease;
    cursor: default;
}

.fc-card:not(.fc-card--featured) {
    background: var(--white);
    border: 1px solid var(--grey-200);
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.06);
}

.fc-card--featured {
    background: var(--charcoal);
    border: 1px solid rgba(212, 175, 55, 0.4);
    box-shadow: 0 12px 48px rgba(212, 175, 55, 0.2);
    transform: translateY(-16px);
}

.fc-card:not(.fc-card--featured):hover {
    transform: translateY(-8px);
    box-shadow: 0 16px 48px rgba(0, 0, 0, 0.12);
    border-color: rgba(212, 175, 55, 0.4);
}

.fc-card--featured:hover {
    transform: translateY(-22px);
    box-shadow: 0 20px 64px rgba(212, 175, 55, 0.3);
}

/* Gold shimmer sweep on hover */
.fc-card::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(
        135deg,
        transparent 35%,
        rgba(212, 175, 55, 0.1) 55%,
        transparent 65%
    );
    transform: translateX(-120%);
    transition: transform 0.8s ease;
    pointer-events: none;
    z-index: 0;
}
.fc-card:hover::after {
    transform: translateX(120%);
}

/* Featured badge ribbon */
.fc-popular-ribbon {
    position: absolute;
    top: 18px;
    right: -30px;
    background: var(--gold-gradient-btn);
    color: var(--charcoal);
    font-size: 0.62rem;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    padding: 5px 44px;
    transform: rotate(45deg);
    z-index: 10;
}

/* Gold top bar */
.fc-card-topbar {
    height: 4px;
    background: var(--grey-200);
}
.fc-card--featured .fc-card-topbar {
    background: var(--gold-gradient-btn);
}
.fc-card:not(.fc-card--featured):hover .fc-card-topbar {
    background: var(--gold-gradient-btn);
    transition: background 0.3s ease;
}

/* Header block */
.fc-card-head {
    padding: 32px 30px 24px;
    position: relative;
    z-index: 1;
}

.fc-plan-index {
    font-family: "Cormorant Garamond", serif;
    font-size: 64px;
    font-weight: 600;
    line-height: 1;
    position: absolute;
    top: 16px;
    right: 24px;
    color: rgba(212, 175, 55, 0.08);
    user-select: none;
}
.fc-card--featured .fc-plan-index {
    color: rgba(212, 175, 55, 0.15);
}

.fc-plan-type {
    font-size: 0.68rem;
    font-weight: 700;
    letter-spacing: 3.5px;
    text-transform: uppercase;
    color: var(--gold-primary);
    margin-bottom: 8px;
}

.fc-plan-name {
    font-family: "Krona One", sans-serif;
    font-size: 1.25rem;
    font-weight: 400;
    color: var(--charcoal);
    line-height: 1.2;
    margin-bottom: 6px;
}
.fc-card--featured .fc-plan-name {
    color: var(--white);
}

.fc-plan-tagline {
    font-size: 0.82rem;
    color: var(--grey-400);
    font-weight: 300;
    line-height: 1.6;
}
.fc-card--featured .fc-plan-tagline {
    color: rgba(255, 255, 255, 0.5);
}

/* Investment badge */
.fc-invest {
    margin-top: 20px;
    display: inline-flex;
    align-items: baseline;
    gap: 6px;
    background: rgba(212, 175, 55, 0.08);
    border: 1px solid rgba(212, 175, 55, 0.25);
    border-radius: 10px;
    padding: 10px 16px;
}
.fc-card--featured .fc-invest {
    background: rgba(212, 175, 55, 0.12);
    border-color: rgba(212, 175, 55, 0.4);
}
.fc-invest-label {
    font-size: 0.7rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: var(--gold-primary);
}
.fc-invest-value {
    font-family: "Krona One", sans-serif;
    font-size: 0.95rem;
    font-weight: 400;
    color: var(--charcoal);
}
.fc-card--featured .fc-invest-value {
    color: var(--white);
}

/* Divider */
.fc-card-divider {
    height: 1px;
    background: var(--grey-200);
    margin: 0 30px;
    transition: background 0.3s;
    position: relative;
    z-index: 1;
}
.fc-card--featured .fc-card-divider {
    background: rgba(255, 255, 255, 0.1);
}

/* Rows */
.fc-rows {
    padding: 20px 30px 28px;
    display: flex;
    flex-direction: column;
    gap: 2px;
    position: relative;
    z-index: 1;
}

.fc-row {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 10px;
    padding: 11px 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.04);
}
.fc-card--featured .fc-row {
    border-bottom-color: rgba(255, 255, 255, 0.05);
}
.fc-row:last-child {
    border-bottom: none;
}

.fc-row-key {
    font-size: 0.8rem;
    color: var(--grey-400);
    font-weight: 400;
    flex: 0 0 auto;
    min-width: 100px;
    line-height: 1.5;
}
.fc-card--featured .fc-row-key {
    color: rgba(255, 255, 255, 0.4);
}

.fc-row-val {
    font-size: 0.82rem;
    font-weight: 500;
    color: var(--charcoal);
    text-align: right;
    line-height: 1.5;
}
.fc-card--featured .fc-row-val {
    color: rgba(255, 255, 255, 0.85);
}

.fc-row-val .fa-check {
    color: var(--gold-primary);
    font-size: 0.78rem;
}
.fc-row-val .fa-xmark {
    color: var(--grey-400);
    font-size: 0.78rem;
}
.fc-card--featured .fc-row-val .fa-xmark {
    color: rgba(255, 255, 255, 0.25);
}

/* Tag chips inside val */
.fc-tag {
    display: inline-block;
    font-size: 0.72rem;
    font-weight: 600;
    padding: 2px 10px;
    border-radius: 50px;
    background: rgba(212, 175, 55, 0.1);
    color: var(--gold-dark);
    border: 1px solid rgba(212, 175, 55, 0.25);
    line-height: 1.6;
}
.fc-card--featured .fc-tag {
    background: rgba(212, 175, 55, 0.18);
    color: var(--gold-light);
    border-color: rgba(212, 175, 55, 0.4);
}

/* CTA */
.fc-card-cta {
    padding: 0 30px 30px;
    position: relative;
    z-index: 1;
}
.fc-btn {
    display: block;
    width: 100%;
    text-align: center;
    padding: 14px;
    border-radius: 50px;
    font-family: "Urbanist", sans-serif;
    font-size: 0.88rem;
    font-weight: 700;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    cursor: pointer;
    transition: all 0.35s cubic-bezier(0.22, 1, 0.36, 1);
    border: none;
    text-decoration: none;
}
.fc-btn--outline {
    background: transparent;
    border: 2px solid var(--gold-primary);
    color: var(--gold-primary);
}
.fc-btn--outline:hover {
    background: var(--gold-primary);
    color: var(--charcoal);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(212, 175, 55, 0.3);
}
.fc-btn--solid {
    background: var(--gold-gradient-btn);
    color: var(--charcoal);
    box-shadow: 0 4px 20px rgba(212, 175, 55, 0.3);
}
.fc-btn--solid:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 32px rgba(212, 175, 55, 0.5);
    filter: brightness(1.06);
}

/* ── Bottom note / legend ── */
.fc-footnote {
    margin-top: 48px;
    text-align: center;
    font-size: 0.8rem;
    color: var(--grey-400);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}
.fc-footnote span {
    display: inline-flex;
    align-items: center;
    gap: 6px;
}
.fc-footnote .fa-check {
    color: var(--gold-primary);
}
.fc-footnote .fa-xmark {
    color: var(--grey-400);
}

/* ── Animations ── */
.fc-card {
    opacity: 0;
    transform: translateY(40px);
    animation: fcFadeUp 0.7s cubic-bezier(0.22, 1, 0.36, 1) forwards;
}
.fc-card:nth-child(1) {
    animation-delay: 0.1s;
}
.fc-card:nth-child(2) {
    animation-delay: 0.25s;
    transform: translateY(56px);
}
.fc-card:nth-child(3) {
    animation-delay: 0.4s;
}

.fc-header > * {
    opacity: 0;
    transform: translateY(20px);
    animation: fcFadeUp 0.6s cubic-bezier(0.22, 1, 0.36, 1) forwards;
}
.fc-header > *:nth-child(1) {
    animation-delay: 0s;
}
.fc-header > *:nth-child(2) {
    animation-delay: 0.1s;
}
.fc-header > *:nth-child(3) {
    animation-delay: 0.2s;
}
.fc-header > *:nth-child(4) {
    animation-delay: 0.3s;
}

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

/* ── Responsive ── */
@media (max-width: 900px) {
    .fc-grid {
        grid-template-columns: 1fr;
        max-width: 460px;
        margin: 0 auto;
    }
    .fc-card--featured {
        transform: none;
    }
    .fc-card--featured:hover {
        transform: translateY(-8px);
    }
}
@media (max-width: 480px) {
    .fc-section {
        padding: 60px 16px;
    }
    .fc-card-head,
    .fc-rows,
    .fc-card-cta {
        padding-left: 20px;
        padding-right: 20px;
    }
    .fc-card-divider {
        margin: 0 20px;
    }
    .fc-plan-name {
        font-size: 1.1rem;
    }
}
