/* ============================================================
   BLISS CANBERRA MASSAGE — Main Stylesheet
   ============================================================ */
/* Prevent horizontal scroll - Best Practice */
html {
    overflow-x: hidden; /* Keeps the root safe */
}

body {
    overflow-x: hidden; /* Double-safe for mobile */
    width: 100%;
    position: relative; 
    /* Remove 'position: relative' if your fixed header glitches! */
}
/* ============================================================
   1. CSS VARIABLES & RESET
   ============================================================ */
:root {
    /* Colors */
    --color-navy: #0b1120;
    --color-navy-light: #1a2a44;
    --color-slate: #1e293b;
    --color-slate-light: #475569;
    --color-cream: #faf6f0;
    --color-ivory: #f5efe8;
    --color-white: #ffffff;
    --color-black: #0a0a0a;

    /* Gold */
    --color-gold-50: #fef9f0;
    --color-gold-100: #fdf0d6;
    --color-gold-200: #fbdfad;
    --color-gold-300: #f8c97a;
    --color-gold-400: #f5b347;
    --color-gold-500: #e89a2e;
    --color-gold-600: #d07d20;
    --color-gold-700: #b05e1a;
    --color-gold-800: #8f4b17;
    --color-gold-900: #753f16;

    /* Sage */
    --color-sage-50: #f5f8f4;
    --color-sage-100: #e4ece2;
    --color-sage-200: #c9dac7;
    --color-sage-300: #a5bea3;
    --color-sage-400: #7e9d7c;
    --color-sage-500: #5f7e5d;
    --color-sage-600: #4a6448;
    --color-sage-700: #3b4f3a;
    --color-sage-800: #314031;

    /* Rose */
    --color-rose-50: #fef2f4;
    --color-rose-100: #fde6e9;
    --color-rose-200: #fbd0d6;
    --color-rose-300: #f8b0ba;
    --color-rose-400: #f38696;
    --color-rose-500: #ea5f74;
    --color-rose-600: #d43d56;
    --color-rose-700: #b22e45;

    /* Typography */
    --font-display: 'Playfair Display', serif;
    --font-body: 'Inter', sans-serif;
    --font-accent: 'Playfair Display', serif;

    /* Spacing */
    --spacing-xs: 0.25rem;
    --spacing-sm: 0.5rem;
    --spacing-md: 1rem;
    --spacing-lg: 1.5rem;
    --spacing-xl: 2rem;
    --spacing-2xl: 3rem;
    --spacing-3xl: 4rem;
    --spacing-4xl: 6rem;

    /* Border Radius */
    --radius-sm: 0.5rem;
    --radius-md: 0.75rem;
    --radius-lg: 1rem;
    --radius-xl: 1.25rem;
    --radius-2xl: 1.5rem;
    --radius-3xl: 2rem;
    --radius-full: 9999px;

    /* Shadows */
    --shadow-sm: 0 1px 2px rgba(0, 0, 0, 0.04);
    --shadow-md: 0 4px 16px rgba(0, 0, 0, 0.06);
    --shadow-lg: 0 8px 32px rgba(0, 0, 0, 0.08);
    --shadow-xl: 0 20px 60px rgba(0, 0, 0, 0.10);
    --shadow-2xl: 0 32px 80px rgba(0, 0, 0, 0.12);

    /* Transitions */
    --transition-fast: 0.2s ease;
    --transition-base: 0.3s ease;
    --transition-slow: 0.5s ease;
    --transition-slower: 0.7s ease;

    /* Container */
    --container-max: 1280px;
    --container-padding: 1.25rem;
}

/* ============================================================
   2. BASE STYLES
   ============================================================ */
*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

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

body {
    font-family: var(--font-body);
    font-weight: 400;
    font-size: 16px;
    line-height: 1.6;
    color: var(--color-slate);
    background: var(--color-cream);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    overflow-x: hidden;
}

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

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

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

ul {
    list-style: none;
}

/* Selection */
::selection {
    background: var(--color-gold-500);
    color: var(--color-white);
}

/* Scrollbar */
::-webkit-scrollbar {
    width: 8px;
}
::-webkit-scrollbar-track {
    background: var(--color-ivory);
}
::-webkit-scrollbar-thumb {
    background: var(--color-gold-600);
    border-radius: var(--radius-full);
}
::-webkit-scrollbar-thumb:hover {
    background: var(--color-gold-700);
}

/* ============================================================
   3. TYPOGRAPHY
   ============================================================ */
h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-display);
    font-weight: 700;
    line-height: 1.15;
    color: var(--color-navy);
}

h1 {
    font-size: clamp(2.5rem, 6vw, 4.5rem);
}
h2 {
    font-size: clamp(2rem, 4vw, 3.25rem);
}
h3 {
    font-size: clamp(1.25rem, 2.5vw, 1.75rem);
}
h4 {
    font-size: clamp(1rem, 1.5vw, 1.25rem);
}
h5 {
    font-size: 1rem;
}
h6 {
    font-size: 0.875rem;
}

p {
    margin-bottom: 1rem;
}
p:last-child {
    margin-bottom: 0;
}

/* ============================================================
   4. CONTAINER & LAYOUT
   ============================================================ */
.container {
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 var(--container-padding);
    width: 100%;
}

.section {
    padding: var(--spacing-3xl) 0;
}

@media (min-width: 768px) {
    .section {
        padding: var(--spacing-4xl) 0;
    }
}

/* ============================================================
   5. BUTTONS
   ============================================================ */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.625rem 1.25rem;
    border-radius: var(--radius-xl);
    font-family: var(--font-body);
    font-weight: 600;
    font-size: 0.875rem;
    line-height: 1.5;
    transition: all var(--transition-base);
    text-align: center;
    border: 1.5px solid transparent;
    position: relative;
    overflow: hidden;
    white-space: nowrap;
}

.btn .btn-arrow {
    transition: transform var(--transition-base);
}
.btn:hover .btn-arrow {
    transform: translateX(4px);
}

/* Primary */
.btn-primary {
    background: linear-gradient(135deg, var(--color-gold-500), var(--color-gold-600));
    color: var(--color-white);
    box-shadow: 0 4px 20px rgba(232, 154, 46, 0.25);
}
.btn-primary:hover {
    box-shadow: 0 8px 32px rgba(232, 154, 46, 0.35);
    transform: translateY(-2px) scale(1.02);
}
.btn-primary:active {
    transform: scale(0.98);
}

/* Dark */
.btn-dark {
    background: var(--color-navy);
    color: var(--color-white);
    box-shadow: 0 4px 16px rgba(11, 17, 32, 0.15);
}
.btn-dark:hover {
    box-shadow: 0 8px 28px rgba(11, 17, 32, 0.25);
    transform: translateY(-2px);
}

/* Outline */
.btn-outline {
    background: transparent;
    color: var(--color-navy);
    border-color: rgba(11, 17, 32, 0.15);
}
.btn-outline:hover {
    background: var(--color-navy);
    color: var(--color-white);
    border-color: var(--color-navy);
    transform: translateY(-2px);
}

.btn-outline-light {
    background: transparent;
    color: rgba(255, 255, 255, 0.8);
    border-color: rgba(255, 255, 255, 0.15);
}
.btn-outline-light:hover {
    background: rgba(255, 255, 255, 0.1);
    color: var(--color-white);
    border-color: rgba(255, 255, 255, 0.3);
}

/* Sizes */
.btn-sm {
    padding: 0.5rem 1rem;
    font-size: 0.8125rem;
    border-radius: var(--radius-lg);
}
.btn-lg {
    padding: 0.875rem 1.75rem;
    font-size: 1rem;
}
.btn-xl {
    padding: 1rem 2rem;
    font-size: 1.125rem;
}

/* Dark small */
.btn-dark-sm {
    padding: 0.5rem 1rem;
    font-size: 0.8125rem;
    border-radius: var(--radius-lg);
    background: var(--color-navy);
    color: var(--color-white);
}
.btn-dark-sm:hover {
    background: var(--color-navy-light);
}

/* Outline small */
.btn-outline-sm {
    padding: 0.5rem 1rem;
    font-size: 0.8125rem;
    border-radius: var(--radius-lg);
    background: transparent;
    color: var(--color-navy);
    border-color: rgba(11, 17, 32, 0.12);
}
.btn-outline-sm:hover {
    background: var(--color-navy);
    color: var(--color-white);
    border-color: var(--color-navy);
}

.btn-outline-light-sm {
    padding: 0.5rem 1rem;
    font-size: 0.8125rem;
    border-radius: var(--radius-lg);
    background: transparent;
    color: rgba(255, 255, 255, 0.7);
    border-color: rgba(255, 255, 255, 0.12);
}
.btn-outline-light-sm:hover {
    background: rgba(255, 255, 255, 0.1);
    color: var(--color-white);
    border-color: rgba(255, 255, 255, 0.25);
}

/* Primary small */
.btn-primary-sm {
    padding: 0.5rem 1rem;
    font-size: 0.8125rem;
    border-radius: var(--radius-lg);
    background: linear-gradient(135deg, var(--color-gold-500), var(--color-gold-600));
    color: var(--color-white);
    box-shadow: 0 4px 16px rgba(232, 154, 46, 0.2);
}
.btn-primary-sm:hover {
    box-shadow: 0 6px 24px rgba(232, 154, 46, 0.3);
    transform: translateY(-2px);
}

/* ============================================================
   6. SECTION HEADERS
   ============================================================ */
.section-head {
    text-align: center;
    max-width: 640px;
    margin: 0 auto var(--spacing-2xl);
}

.section-head-light {
    color: var(--color-white);
}
.section-head-light .section-title {
    color: var(--color-white);
}

.section-tag {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.375rem 1rem;
    border-radius: var(--radius-full);
    background: rgba(232, 154, 46, 0.10);
    color: var(--color-gold-600);
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin-bottom: 0.75rem;
}
.section-tag i {
    font-size: 0.625rem;
}

.section-tag-light {
    background: rgba(232, 154, 46, 0.15);
    color: var(--color-gold-300);
}

.section-title {
    font-family: var(--font-display);
    font-weight: 700;
    font-size: clamp(2rem, 4.5vw, 3.25rem);
    line-height: 1.1;
    color: var(--color-navy);
}
.section-title-highlight {
    background: linear-gradient(135deg, var(--color-gold-500), var(--color-gold-600));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}
.section-title-highlight-gold {
    background: linear-gradient(135deg, var(--color-gold-300), var(--color-gold-500));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}
.section-title-light {
    color: var(--color-white);
}

.section-divider {
    width: 4rem;
    height: 0.25rem;
    border-radius: var(--radius-full);
    background: linear-gradient(90deg, var(--color-gold-400), var(--color-gold-600));
    margin: 0.75rem 0 1.25rem;
}

.section-desc {
    font-size: 1.125rem;
    color: var(--color-slate-light);
    line-height: 1.7;
    margin-top: 0.5rem;
}
.section-desc-light {
    color: rgba(255, 255, 255, 0.6);
}

/* ============================================================
   7. NAVIGATION
   ============================================================ */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    transition: transform var(--transition-slow), background var(--transition-base);
    background: rgba(255, 255, 255, 0.72);
    backdrop-filter: blur(20px) saturate(1.4);
    -webkit-backdrop-filter: blur(20px) saturate(1.4);
    border-bottom: 1px solid rgba(232, 154, 46, 0.06);
}

.header.scrolled {
    background: rgba(255, 255, 255, 0.92);
    box-shadow: 0 8px 40px -12px rgba(0, 0, 0, 0.10);
}

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

.navbar-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 68px;
}

@media (min-width: 768px) {
    .navbar-inner {
        height: 80px;
    }
}

/* Brand */
.brand {
    display: flex;
    align-items: center;
    gap: 0.625rem;
    flex-shrink: 0;
}
.brand-logo {
    width: 36px;
    height: 36px;
    object-fit: contain;
}
@media (min-width: 768px) {
    .brand-logo {
        width: 44px;
        height: 44px;
    }
}
.brand-text {
    display: flex;
    flex-direction: column;
    line-height: 1.2;
}
.brand-name {
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 0.875rem;
    color: var(--color-navy);
    letter-spacing: -0.02em;
}
@media (min-width: 768px) {
    .brand-name {
        font-size: 1.125rem;
    }
}
.brand-tagline {
    font-size: 0.5rem;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: var(--color-slate-light);
    opacity: 0.6;
}
@media (min-width: 768px) {
    .brand-tagline {
        font-size: 0.5625rem;
    }
}

/* Nav Menu */
.nav-menu {
    display: none;
    align-items: center;
    gap: 0.25rem;
}
@media (min-width: 1024px) {
    .nav-menu {
        display: flex;
    }
}

.nav-link {
    padding: 0.5rem 1rem;
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--color-slate-light);
    border-radius: var(--radius-sm);
    transition: all var(--transition-fast);
    position: relative;
}
.nav-link::after {
    content: '';
    position: absolute;
    bottom: 2px;
    left: 50%;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--color-gold-600), var(--color-gold-400));
    transition: all var(--transition-base);
    transform: translateX(-50%);
    border-radius: var(--radius-full);
}
.nav-link:hover {
    color: var(--color-navy);
}
.nav-link:hover::after,
.nav-link.active::after {
    width: 70%;
}
.nav-link.active {
    color: var(--color-navy);
}

/* Nav Actions */
.nav-actions {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}
.nav-phone {
    display: none;
    align-items: center;
    gap: 0.375rem;
    font-size: 0.8125rem;
    font-weight: 500;
    color: var(--color-slate-light);
    transition: color var(--transition-fast);
}
.nav-phone:hover {
    color: var(--color-navy);
}
.nav-phone i {
    color: var(--color-gold-500);
    font-size: 0.75rem;
}
@media (min-width: 768px) {
    .nav-phone {
        display: flex;
    }
}

.nav-toggle {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: var(--radius-full);
    background: rgba(11, 17, 32, 0.04);
    transition: background var(--transition-fast);
    font-size: 1.125rem;
    color: var(--color-navy);
}
.nav-toggle:hover {
    background: rgba(11, 17, 32, 0.08);
}
.nav-toggle.active {
    background: rgba(232, 154, 46, 0.10);
    color: var(--color-gold-600);
}
@media (min-width: 1024px) {
    .nav-toggle {
        display: none;
    }
}

/* Mobile Menu */
.mobile-menu {
    display: none;
    overflow: hidden;
    max-height: 0;
    transition: max-height var(--transition-slower), opacity var(--transition-slow);
    opacity: 0;
}
.mobile-menu.mobile-open {
    display: block;
    max-height: 600px;
    opacity: 1;
}
@media (min-width: 1024px) {
    .mobile-menu {
        display: none !important;
        max-height: 0 !important;
        opacity: 0 !important;
    }
}

.mobile-menu-inner {
    padding: 0.75rem 0 1.25rem;
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}
.mobile-link {
    padding: 0.625rem 1rem;
    border-radius: var(--radius-md);
    font-size: 0.9375rem;
    font-weight: 500;
    color: var(--color-navy);
    transition: background var(--transition-fast);
}
.mobile-link:hover {
    background: rgba(11, 17, 32, 0.05);
}
.mobile-phone {
    color: var(--color-gold-600);
}
.mobile-phone:hover {
    background: rgba(232, 154, 46, 0.08);
}
.mobile-divider {
    border: none;
    border-top: 1px solid rgba(11, 17, 32, 0.06);
    margin: 0.25rem 0;
}
.mobile-cta {
    margin-top: 0.25rem;
    justify-content: center;
    width: 100%;
}

/* ============================================================
   8. HERO
   ============================================================ */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    overflow: hidden;
    background: var(--color-navy);
    padding-top: 68px;
}
@media (min-width: 768px) {
    .hero {
        padding-top: 80px;
    }
}

/* Hero Background */
.hero-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
}
.hero-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.hero-fallback {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(11, 17, 32, 0.80), rgba(11, 17, 32, 0.40));
    z-index: 1;
}
.hero-glow {
    position: absolute;
    border-radius: 50%;
    filter: blur(120px);
    z-index: 1;
    pointer-events: none;
}
.hero-glow-1 {
    width: 400px;
    height: 400px;
    top: 20%;
    left: 10%;
    background: rgba(232, 154, 46, 0.06);
}
.hero-glow-2 {
    width: 320px;
    height: 320px;
    bottom: 30%;
    right: 15%;
    background: rgba(20, 184, 166, 0.05);
}

/* Hero Inner */
.hero-inner {
    position: relative;
    z-index: 2;
    width: 100%;
    padding-top: 2rem;
    padding-bottom: 2rem;
}
.hero-grid {
    display: grid;
    gap: 2.5rem;
    align-items: center;
}
@media (min-width: 1024px) {
    .hero-grid {
        grid-template-columns: 1fr 1fr;
        gap: 3rem;
    }
}

/* Hero Content */
.hero-content {
    color: var(--color-white);
}
.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.625rem;
    padding: 0.375rem 1rem;
    border-radius: var(--radius-full);
    background: rgba(232, 154, 46, 0.12);
    border: 1px solid rgba(232, 154, 46, 0.15);
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--color-gold-300);
    margin-bottom: 1.25rem;
}
.hero-badge-dot {
    display: inline-block;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--color-gold-400);
    animation: pulse-dot 2s ease-in-out infinite;
}
@keyframes pulse-dot {
    0%,
    100% {
        opacity: 0.6;
        transform: scale(1);
    }
    50% {
        opacity: 1;
        transform: scale(1.2);
    }
}

.hero-title {
    font-size: clamp(2.5rem, 6vw, 4.5rem);
    font-weight: 700;
    line-height: 1.04;
    color: var(--color-white);
    margin-bottom: 1.25rem;
}
.hero-highlight {
    background: linear-gradient(135deg, var(--color-gold-200), var(--color-gold-500));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-desc {
    font-size: 1.125rem;
    color: rgba(255, 255, 255, 0.65);
    line-height: 1.7;
    max-width: 480px;
    margin-bottom: 1.75rem;
}
@media (min-width: 768px) {
    .hero-desc {
        font-size: 1.25rem;
    }
}
.hero-desc-highlight {
    display: block;
    color: var(--color-gold-300);
    font-weight: 500;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    margin-bottom: 2.5rem;
}

/* Hero Stats */
.hero-stats {
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem 2.5rem;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
}
.hero-stat {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}
.hero-stat-icon {
    width: 40px;
    height: 40px;
    border-radius: var(--radius-md);
    background: rgba(232, 154, 46, 0.10);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-gold-400);
    font-size: 0.875rem;
}
.hero-stat-label {
    font-size: 0.9375rem;
    font-weight: 700;
    color: var(--color-white);
    line-height: 1.2;
}
.hero-stat-value {
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.40);
    line-height: 1.2;
}

/* Hero Media */
.hero-media {
    position: relative;
}
.hero-media-inner {
    position: relative;
    border-radius: var(--radius-2xl);
    overflow: hidden;
    box-shadow: 0 32px 80px -20px rgba(0, 0, 0, 0.4);
}
.hero-media-img {
    width: 100%;
    height: 340px;
    object-fit: cover;
}
@media (min-width: 640px) {
    .hero-media-img {
        height: 420px;
    }
}
@media (min-width: 1024px) {
    .hero-media-img {
        height: 540px;
    }
}

/* Hero Floating Badges */
.hero-badge-floating {
    position: absolute;
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(16px) saturate(1.4);
    -webkit-backdrop-filter: blur(16px) saturate(1.4);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: var(--radius-lg);
    padding: 0.5rem 1rem;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.15);
}
.hero-badge-rating {
    top: 1rem;
    left: 1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}
.hero-badge-rating .stars {
    display: flex;
    gap: 1px;
    color: #fbbf24;
    font-size: 0.625rem;
}
.hero-badge-rating span {
    color: var(--color-white);
    font-size: 0.8125rem;
    font-weight: 600;
}
.hero-badge-sub {
    color: rgba(255, 255, 255, 0.40) !important;
    font-weight: 400 !important;
}
.hero-badge-quote {
    bottom: 1rem;
    right: 1rem;
    padding: 0.75rem 1.25rem;
}
.hero-badge-quote i {
    color: var(--color-gold-400);
    font-size: 0.625rem;
    display: block;
    margin-bottom: 0.125rem;
}
.hero-badge-quote p {
    color: var(--color-white);
    font-size: 0.8125rem;
    font-weight: 500;
    line-height: 1.4;
    margin: 0;
}

/* Hero Floating Decorations */
.hero-float {
    position: absolute;
    z-index: 1;
    color: rgba(232, 154, 46, 0.06);
    pointer-events: none;
    font-size: 4rem;
}
.hero-float-1 {
    top: 10%;
    left: 5%;
    animation: float 7s ease-in-out infinite;
}
.hero-float-2 {
    top: 15%;
    right: 8%;
    color: rgba(20, 184, 166, 0.05);
    animation: float 8s ease-in-out infinite reverse;
    font-size: 3.5rem;
}
.hero-float-3 {
    bottom: 20%;
    left: 8%;
    color: rgba(232, 154, 46, 0.05);
    animation: float 9s ease-in-out infinite 1s;
}
.hero-float-4 {
    top: 45%;
    right: 5%;
    color: rgba(232, 154, 46, 0.04);
    animation: float 7s ease-in-out infinite 2s;
    font-size: 3rem;
}
@media (max-width: 768px) {
    .hero-float {
        display: none;
    }
}

@keyframes float {
    0%,
    100% {
        transform: translateY(0) rotate(0deg);
    }
    50% {
        transform: translateY(-20px) rotate(2deg);
    }
}

/* ============================================================
   9. ABOUT
   ============================================================ */
.about {
    background: var(--color-cream);
    position: relative;
    overflow: hidden;
}
.about-grid {
    display: grid;
    gap: 2.5rem;
    align-items: center;
}
@media (min-width: 1024px) {
    .about-grid {
        grid-template-columns: 1fr 1fr;
        gap: 4rem;
    }
}

.about-media {
    position: relative;
}
.about-media-inner {
    position: relative;
    border-radius: var(--radius-2xl);
    overflow: hidden;
    box-shadow: var(--shadow-xl);
}
.about-img {
    width: 100%;
    height: 340px;
    object-fit: cover;
}
@media (min-width: 640px) {
    .about-img {
        height: 400px;
    }
}
@media (min-width: 1024px) {
    .about-img {
        height: 480px;
    }
}

.about-badge {
    position: absolute;
    background: rgba(255, 255, 255, 0.80);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-radius: var(--radius-lg);
    padding: 0.75rem 1rem;
    box-shadow: var(--shadow-md);
    display: flex;
    align-items: center;
    gap: 0.625rem;
}
.about-badge-1 {
    bottom: 1rem;
    left: 1rem;
}
.about-badge-2 {
    top: 1rem;
    right: 1rem;
    flex-direction: column;
    align-items: flex-start;
    gap: 0.125rem;
    padding: 0.625rem 1rem;
}
.about-badge-2 i {
    color: var(--color-gold-500);
    font-size: 0.75rem;
}
.about-badge-2 p {
    font-size: 0.75rem;
    font-style: italic;
    color: var(--color-navy);
    margin: 0;
}
.about-badge-icon {
    width: 40px;
    height: 40px;
    border-radius: var(--radius-md);
    background: linear-gradient(135deg, var(--color-gold-500), var(--color-gold-600));
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-white);
    font-size: 1rem;
}
.about-badge-title {
    font-weight: 700;
    font-size: 0.8125rem;
    color: var(--color-navy);
    line-height: 1.2;
    margin: 0;
}
.about-badge-sub {
    font-size: 0.6875rem;
    color: var(--color-slate-light);
    line-height: 1.2;
    margin: 0;
}

.about-content {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}
.about-text {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    color: var(--color-slate-light);
    font-size: 1.0625rem;
    line-height: 1.7;
}
.about-text strong {
    color: var(--color-gold-600);
    font-weight: 600;
}

.about-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.75rem;
}
.about-feature {
    display: flex;
    align-items: center;
    gap: 0.625rem;
    padding: 0.625rem 0.875rem;
    background: rgba(255, 255, 255, 0.60);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(232, 154, 46, 0.06);
}
.about-feature-icon {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    font-size: 0.75rem;
    color: var(--color-gold-500);
    background: rgba(232, 154, 46, 0.08);
}
.about-feature-title {
    font-size: 0.8125rem;
    font-weight: 600;
    color: var(--color-navy);
    line-height: 1.2;
    margin: 0;
}
.about-feature-desc {
    font-size: 0.6875rem;
    color: var(--color-slate-light);
    line-height: 1.2;
    margin: 0;
}

/* ============================================================
   10. SERVICES
   ============================================================ */
.services {
    background: var(--color-white);
    position: relative;
}

.services-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
}
@media (min-width: 640px) {
    .services-grid {
        grid-template-columns: 1fr 1fr;
    }
}
@media (min-width: 1024px) {
    .services-grid {
        grid-template-columns: 1fr 1fr 1fr;
        gap: 2rem;
    }
}

.service-card {
    background: var(--color-cream);
    border-radius: var(--radius-2xl);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: all var(--transition-slow);
    border: 1px solid transparent;
}
.service-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-xl);
    border-color: rgba(232, 154, 46, 0.08);
}
.service-card-dark {
    background: var(--color-navy);
    color: var(--color-white);
}
.service-card-dark .service-card-title {
    color: var(--color-white);
}
.service-card-dark .service-card-desc {
    color: rgba(255, 255, 255, 0.65);
}
.service-card-dark:hover {
    border-color: rgba(232, 154, 46, 0.15);
}

.service-card-img {
    position: relative;
    overflow: hidden;
    height: 200px;
}
.service-card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--transition-slow);
}
.service-card:hover .service-card-img img {
    transform: scale(1.05);
}

.service-badge {
    position: absolute;
    top: 0.75rem;
    right: 0.75rem;
    padding: 0.25rem 0.75rem;
    border-radius: var(--radius-full);
    background: rgba(255, 255, 255, 0.90);
    backdrop-filter: blur(4px);
    font-size: 0.5625rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: var(--color-gold-600);
    box-shadow: var(--shadow-sm);
}
.service-badge-premium {
    background: rgba(232, 154, 46, 0.90);
    color: var(--color-white);
}
.service-badge-sage {
    background: rgba(94, 125, 93, 0.85);
    color: var(--color-white);
}
.service-badge-rose {
    background: rgba(212, 61, 86, 0.85);
    color: var(--color-white);
}

.service-card-body {
    padding: 1.25rem;
}
.service-card-header {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 0.5rem;
    margin-bottom: 0.5rem;
}
.service-card-title {
    font-size: 1.125rem;
    font-weight: 700;
    color: var(--color-navy);
    line-height: 1.2;
}
.service-card-tag {
    font-size: 0.5625rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    padding: 0.1875rem 0.625rem;
    border-radius: var(--radius-full);
    background: rgba(232, 154, 46, 0.10);
    color: var(--color-gold-600);
    white-space: nowrap;
    flex-shrink: 0;
}
.service-card-tag-gold {
    background: rgba(232, 154, 46, 0.15);
    color: var(--color-gold-300);
}
.service-card-tag-sage {
    background: rgba(94, 125, 93, 0.12);
    color: var(--color-sage-600);
}
.service-card-tag-rose {
    background: rgba(212, 61, 86, 0.12);
    color: var(--color-rose-600);
}

.service-card-desc {
    font-size: 0.875rem;
    color: var(--color-slate-light);
    line-height: 1.6;
    margin-bottom: 1rem;
}

.service-pricing {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.25rem 0.5rem;
    padding: 0.75rem;
    background: rgba(255, 255, 255, 0.60);
    border-radius: var(--radius-md);
    font-size: 0.8125rem;
    color: var(--color-slate-light);
    margin-bottom: 1rem;
}
.service-pricing span:nth-child(odd) {
    font-weight: 400;
}
.service-pricing span:nth-child(even) {
    font-weight: 600;
    color: var(--color-navy);
    text-align: right;
}
.service-pricing-light {
    background: rgba(255, 255, 255, 0.06);
    color: rgba(255, 255, 255, 0.50);
}
.service-pricing-light span:nth-child(even) {
    color: var(--color-white);
}

.service-card-actions {
    display: flex;
    gap: 0.5rem;
}
.service-card-actions .btn {
    flex: 1;
}

.services-cta {
    text-align: center;
    margin-top: 2.5rem;
}

/* ============================================================
   11. PACKAGES
   ============================================================ */
.packages {
    background: var(--color-cream);
    position: relative;
}

.packages-grid {
    display: grid;
    gap: 2rem;
    max-width: 1024px;
    margin: 0 auto;
}
@media (min-width: 1024px) {
    .packages-grid {
        grid-template-columns: 1fr 1fr;
        gap: 2.5rem;
    }
}

.package-card {
    background: var(--color-white);
    border-radius: var(--radius-2xl);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: all var(--transition-slow);
    position: relative;
}
.package-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-xl);
}
.package-card-featured {
    border: 2px solid rgba(232, 154, 46, 0.30);
}
.package-card-featured:hover {
    border-color: rgba(232, 154, 46, 0.50);
}

.package-card-badge {
    position: absolute;
    top: 1.5rem;
    right: 0;
    z-index: 5;
    padding: 0.375rem 1.25rem 0.375rem 1rem;
    background: linear-gradient(135deg, var(--color-gold-500), var(--color-gold-600));
    color: var(--color-white);
    font-size: 0.625rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    border-radius: var(--radius-full) 0 0 var(--radius-full);
    box-shadow: 0 4px 16px rgba(232, 154, 46, 0.25);
}

.package-card-img {
    position: relative;
    height: 200px;
    overflow: hidden;
}
.package-card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--transition-slow);
}
.package-card:hover .package-card-img img {
    transform: scale(1.04);
}
.package-card-img-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(11, 17, 32, 0.50), transparent);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 1.5rem;
}
.package-card-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--color-white);
    line-height: 1.1;
    margin: 0;
}
.package-card-sub {
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.60);
    margin: 0;
}
.package-card-icon {
    position: absolute;
    top: 0.75rem;
    right: 0.75rem;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.10);
    backdrop-filter: blur(8px);
    border: 1px solid rgba(255, 255, 255, 0.10);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-white);
    font-size: 1.25rem;
}

.package-card-body {
    padding: 1.25rem;
}
.package-card-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-bottom: 1rem;
}
.package-card-tags span {
    font-size: 0.75rem;
    font-weight: 500;
    color: var(--color-slate-light);
    background: rgba(255, 255, 255, 0.50);
    padding: 0.25rem 0.75rem;
    border-radius: var(--radius-full);
    display: flex;
    align-items: center;
    gap: 0.375rem;
}
.package-card-tags span i {
    font-size: 0.625rem;
    color: var(--color-gold-500);
}

.package-card-price {
    background: linear-gradient(135deg, rgba(232, 154, 46, 0.04), rgba(232, 154, 46, 0.10));
    border-radius: var(--radius-lg);
    padding: 0.75rem 1rem;
    text-align: center;
    margin-bottom: 1rem;
    border: 1px solid rgba(232, 154, 46, 0.08);
}
.package-card-price-label {
    font-size: 0.625rem;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: var(--color-slate-light);
    margin: 0 0 0.25rem;
}
.package-card-price-row {
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 0.75rem;
}
.package-card-price-old {
    font-size: 1.25rem;
    color: var(--color-slate-light);
    text-decoration: line-through;
}
.package-card-price-new {
    font-size: 2rem;
    font-weight: 700;
    color: var(--color-gold-600);
}
.package-card-price-save {
    font-size: 0.8125rem;
    font-weight: 600;
    color: var(--color-gold-600);
    margin: 0.125rem 0 0;
}

.package-card-features {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    margin-bottom: 1.25rem;
}
.package-card-features li {
    display: flex;
    align-items: center;
    gap: 0.625rem;
    font-size: 0.875rem;
    color: var(--color-slate);
}
.package-card-features li i {
    width: 18px;
    height: 18px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.5625rem;
    flex-shrink: 0;
}
.package-card-features li .fa-check {
    background: rgba(232, 154, 46, 0.10);
    color: var(--color-gold-500);
}
.package-card-features li .fa-star {
    background: rgba(232, 154, 46, 0.15);
    color: var(--color-gold-500);
}
.package-card-features li .fa-fire {
    background: rgba(212, 61, 86, 0.10);
    color: var(--color-rose-500);
}

.package-card-btn {
    width: 100%;
    justify-content: center;
}

/* ============================================================
   12. TESTIMONIALS
   ============================================================ */
.testimonials {
    background: var(--color-white);
    position: relative;
}

.testimonials-grid {
    display: grid;
    gap: 1.5rem;
}
@media (min-width: 768px) {
    .testimonials-grid {
        grid-template-columns: 1fr 1fr;
    }
}
@media (min-width: 1024px) {
    .testimonials-grid {
        grid-template-columns: 1fr 1fr 1fr;
        gap: 2rem;
    }
}

.testimonial-card {
    background: var(--color-cream);
    border-radius: var(--radius-2xl);
    padding: 1.5rem;
    box-shadow: var(--shadow-md);
    transition: all var(--transition-slow);
    position: relative;
}
.testimonial-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-xl);
}
.testimonial-card-dark {
    background: var(--color-navy);
}
.testimonial-card-dark .testimonial-quote {
    color: rgba(255, 255, 255, 0.75);
}
.testimonial-card-dark .testimonial-name {
    color: var(--color-white);
}
.testimonial-card-dark .testimonial-role {
    color: rgba(255, 255, 255, 0.40);
}
.testimonial-card-dark .testimonial-tags span {
    background: rgba(255, 255, 255, 0.06);
    color: rgba(255, 255, 255, 0.50);
}

.testimonial-stars {
    display: flex;
    gap: 0.125rem;
    color: #fbbf24;
    font-size: 0.75rem;
    margin-bottom: 0.75rem;
}
.testimonial-quote {
    font-size: 0.9375rem;
    font-style: italic;
    line-height: 1.6;
    color: var(--color-slate);
    margin-bottom: 1.25rem;
}
.testimonial-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 0.5rem;
}
.testimonial-name {
    font-weight: 700;
    font-size: 0.9375rem;
    color: var(--color-navy);
    line-height: 1.2;
}
.testimonial-role {
    font-size: 0.75rem;
    color: var(--color-slate-light);
}
.testimonial-tags {
    display: flex;
    gap: 0.375rem;
}
.testimonial-tags span {
    font-size: 0.5625rem;
    font-weight: 500;
    padding: 0.125rem 0.625rem;
    border-radius: var(--radius-full);
    background: rgba(232, 154, 46, 0.08);
    color: var(--color-gold-600);
    text-transform: uppercase;
    letter-spacing: 0.04em;
}
.testimonial-quote-icon {
    position: absolute;
    bottom: 1.5rem;
    right: 1.5rem;
    font-size: 2.5rem;
    color: rgba(232, 154, 46, 0.06);
}

.testimonials-cta {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    margin-top: 2.5rem;
}

/* ============================================================
   13. WHY CHOOSE
   ============================================================ */
.why-choose {
    background: var(--color-navy);
    position: relative;
    overflow: hidden;
}

.why-grid {
    display: grid;
    gap: 1rem;
}
@media (min-width: 640px) {
    .why-grid {
        grid-template-columns: 1fr 1fr;
    }
}
@media (min-width: 1024px) {
    .why-grid {
        grid-template-columns: 1fr 1fr 1fr 1fr;
        gap: 1.25rem;
    }
}

.why-card {
    text-align: center;
    padding: 1.25rem 1rem;
    background: rgba(255, 255, 255, 0.04);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(255, 255, 255, 0.04);
    transition: all var(--transition-base);
}
.why-card:hover {
    background: rgba(255, 255, 255, 0.07);
    border-color: rgba(232, 154, 46, 0.12);
    transform: translateY(-2px);
}

.why-icon {
    width: 48px;
    height: 48px;
    border-radius: var(--radius-md);
    background: rgba(232, 154, 46, 0.10);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 0.75rem;
    font-size: 1.25rem;
    color: var(--color-gold-400);
    transition: background var(--transition-base);
}
.why-card:hover .why-icon {
    background: rgba(232, 154, 46, 0.16);
}
.why-icon-sage {
    background: rgba(94, 125, 93, 0.12);
    color: var(--color-sage-400);
}
.why-card:hover .why-icon-sage {
    background: rgba(94, 125, 93, 0.18);
}
.why-icon-rose {
    background: rgba(212, 61, 86, 0.12);
    color: var(--color-rose-400);
}
.why-card:hover .why-icon-rose {
    background: rgba(212, 61, 86, 0.18);
}

.why-title {
    font-size: 0.9375rem;
    font-weight: 700;
    color: var(--color-white);
    margin: 0 0 0.25rem;
}
.why-desc {
    font-size: 0.8125rem;
    color: rgba(255, 255, 255, 0.45);
    line-height: 1.5;
    margin: 0 0 0.75rem;
}
.why-tag {
    display: inline-flex;
    align-items: center;
    gap: 0.3125rem;
    font-size: 0.5625rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    padding: 0.1875rem 0.625rem;
    border-radius: var(--radius-full);
    background: rgba(232, 154, 46, 0.10);
    color: var(--color-gold-400);
}
.why-tag-sage {
    background: rgba(94, 125, 93, 0.12);
    color: var(--color-sage-400);
}
.why-tag-rose {
    background: rgba(212, 61, 86, 0.12);
    color: var(--color-rose-400);
}

.why-cta {
    text-align: center;
    margin-top: 2.5rem;
}
.why-cta-text {
    color: rgba(255, 255, 255, 0.40);
    font-size: 0.875rem;
    margin: 0 0 1rem;
}
.why-cta-actions {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
}

/* ============================================================
   14. FINAL CTA
   ============================================================ */
.final-cta {
    background: var(--color-cream);
    position: relative;
}

.final-cta-grid {
    display: grid;
    gap: 2.5rem;
    align-items: start;
}
@media (min-width: 1024px) {
    .final-cta-grid {
        grid-template-columns: 1fr 1fr;
        gap: 4rem;
    }
}

.final-cta-desc {
    font-size: 1.0625rem;
    color: var(--color-slate-light);
    line-height: 1.7;
}

.final-cta-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.75rem;
    margin-top: 0.5rem;
}
.final-cta-feature {
    display: flex;
    align-items: center;
    gap: 0.625rem;
    padding: 0.625rem 0.875rem;
    background: rgba(255, 255, 255, 0.60);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(232, 154, 46, 0.06);
}
.final-cta-feature-icon {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    font-size: 0.75rem;
    color: var(--color-gold-500);
    background: rgba(232, 154, 46, 0.08);
}
.final-cta-feature-title {
    font-size: 0.8125rem;
    font-weight: 600;
    color: var(--color-navy);
    line-height: 1.2;
    margin: 0;
}
.final-cta-feature-desc {
    font-size: 0.6875rem;
    color: var(--color-slate-light);
    line-height: 1.2;
    margin: 0;
}

.final-cta-actions-wrapper {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}
.final-cta-main-btn {
    width: 100%;
    justify-content: center;
}

.final-cta-contact {
    display: flex;
    flex-direction: column;
    gap: 0.625rem;
}
.final-cta-contact-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem 1rem;
    background: rgba(255, 255, 255, 0.60);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(232, 154, 46, 0.06);
}
.final-cta-contact-icon {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    font-size: 0.875rem;
    background: rgba(11, 17, 32, 0.04);
    color: var(--color-navy);
}
.final-cta-contact-title {
    font-size: 0.8125rem;
    font-weight: 600;
    color: var(--color-navy);
    line-height: 1.2;
    margin: 0;
}
.final-cta-contact-desc {
    font-size: 0.6875rem;
    color: var(--color-slate-light);
    line-height: 1.2;
    margin: 0;
}
.final-cta-contact-item .btn {
    flex-shrink: 0;
    margin-left: auto;
}

.final-cta-stats {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 0.75rem;
    padding-top: 1rem;
    border-top: 1px solid rgba(232, 154, 46, 0.08);
}
.final-cta-stat {
    text-align: center;
}
.final-cta-stat-icon {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 0.25rem;
    font-size: 0.75rem;
    background: rgba(232, 154, 46, 0.08);
    color: var(--color-gold-500);
}
.final-cta-stat-value {
    font-size: 0.875rem;
    font-weight: 700;
    color: var(--color-navy);
    line-height: 1.2;
    margin: 0;
}
.final-cta-stat-label {
    font-size: 0.625rem;
    color: var(--color-slate-light);
    line-height: 1.2;
    margin: 0;
}

/* ============================================================
   15. FOOTER
   ============================================================ */
.footer {
    position: relative;
    color: var(--color-white);
    overflow: hidden;
    border-radius: 0 0 0 0;
    padding-top: 2rem;
}
.footer-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
}
.footer-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.footer-fallback {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.footer-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(11, 17, 32, 0.80), rgba(11, 17, 32, 0.60));
    z-index: 1;
}

.footer-inner {
    position: relative;
    z-index: 2;
    padding-top: 2.5rem;
    padding-bottom: 1.5rem;
}

.footer-grid {
    display: grid;
    gap: 2rem;
}
@media (min-width: 640px) {
    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }
}
@media (min-width: 1024px) {
    .footer-grid {
        grid-template-columns: 1.5fr 1fr 1fr 1.5fr;
        gap: 2.5rem;
    }
}

.footer-brand-inner {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 0.75rem;
}
.footer-logo {
    width: 44px;
    height: 44px;
    object-fit: contain;
}
.footer-brand-name {
    font-size: 1.125rem;
    font-weight: 700;
    color: var(--color-white);
    line-height: 1.2;
    margin: 0;
}
.footer-brand-tagline {
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.40);
    margin: 0;
}
.footer-brand-desc {
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.50);
    line-height: 1.6;
    max-width: 320px;
}

.footer-social {
    margin-top: 1.25rem;
}
.footer-social-title {
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--color-gold-400);
    margin: 0 0 0.625rem;
}
.footer-social-links {
    display: flex;
    gap: 0.5rem;
}
.footer-social-links a {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.06);
    color: rgba(255, 255, 255, 0.60);
    transition: all var(--transition-base);
    font-size: 0.875rem;
}
.footer-social-links a:hover {
    background: rgba(232, 154, 46, 0.15);
    color: var(--color-gold-400);
    transform: translateY(-2px);
}

.footer-links-title {
    font-size: 0.8125rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: var(--color-gold-400);
    margin: 0 0 1rem;
}
.footer-links ul {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}
.footer-links ul li a {
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.50);
    transition: all var(--transition-fast);
}
.footer-links ul li a:hover {
    color: var(--color-gold-400);
}

.footer-contact-list {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}
.footer-contact-list li {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.50);
}
.footer-contact-list li i {
    color: var(--color-gold-400);
    width: 18px;
    margin-top: 0.125rem;
    flex-shrink: 0;
}
.footer-contact-list li a {
    color: rgba(255, 255, 255, 0.50);
    transition: color var(--transition-fast);
}
.footer-contact-list li a:hover {
    color: var(--color-gold-400);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.06);
    padding-top: 1.5rem;
    margin-top: 2rem;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    align-items: center;
    text-align: center;
}
@media (min-width: 768px) {
    .footer-bottom {
        flex-direction: row;
        justify-content: space-between;
        text-align: left;
    }
}

.footer-copy {
    font-size: 0.8125rem;
    color: rgba(255, 255, 255, 0.30);
    margin: 0;
}

.footer-credit {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
}
@media (min-width: 768px) {
    .footer-credit {
        flex-direction: row;
        gap: 0.75rem;
    }
}
.footer-credit p {
    font-size: 0.8125rem;
    color: rgba(255, 255, 255, 0.30);
    margin: 0;
}
.footer-credit p a {
    background: linear-gradient(135deg, var(--color-gold-400), var(--color-gold-500));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 500;
}
.footer-credit-links {
    display: flex;
    gap: 0.5rem;
}
.footer-credit-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.375rem;
    padding: 0.375rem 0.875rem;
    border-radius: var(--radius-lg);
    font-size: 0.75rem;
    font-weight: 500;
    background: rgba(20, 184, 166, 0.15);
    color: rgba(255, 255, 255, 0.70);
    transition: all var(--transition-base);
}
.footer-credit-btn:hover {
    background: rgba(20, 184, 166, 0.25);
    color: var(--color-white);
}
.footer-credit-btn-outline {
    background: transparent;
    border: 1px solid rgba(232, 154, 46, 0.20);
    color: var(--color-gold-400);
}
.footer-credit-btn-outline:hover {
    background: rgba(232, 154, 46, 0.10);
    border-color: rgba(232, 154, 46, 0.30);
}

/* ============================================================
   16. SCROLL TO TOP
   ============================================================ */
.scroll-top {
    position: fixed;
    bottom: 1.5rem;
    right: 1.5rem;
    z-index: 900;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: var(--color-navy);
    color: var(--color-white);
    box-shadow: 0 4px 20px rgba(11, 17, 32, 0.20);
    border: 1px solid rgba(255, 255, 255, 0.06);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    transition: all var(--transition-base);
    opacity: 0;
    transform: translateY(20px) scale(0.9);
    pointer-events: none;
    visibility: hidden;
}
.scroll-top.visible {
    opacity: 1;
    transform: translateY(0) scale(1);
    pointer-events: auto;
    visibility: visible;
}
.scroll-top:hover {
    background: var(--color-navy-light);
    transform: translateY(-2px) scale(1.05);
    box-shadow: 0 8px 32px rgba(11, 17, 32, 0.30);
}

/* ============================================================
   17. TOAST
   ============================================================ */
.toast-overlay {
    position: fixed;
    inset: 0;
    z-index: 2000;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 1rem;
    opacity: 0;
    transition: opacity var(--transition-slow);
    background: rgba(11, 17, 32, 0.50);
}
.toast-overlay.toast-visible {
    display: flex;
    opacity: 1;
}

.toast-card {
    position: relative;
    max-width: 420px;
    width: 100%;
    background: var(--color-white);
    border-radius: var(--radius-2xl);
    box-shadow: var(--shadow-2xl);
    border: 1px solid rgba(232, 154, 46, 0.12);
    padding: 1.5rem 1.5rem 1.25rem;
    transform: scale(0.95);
    transition: transform var(--transition-slow);
}
.toast-overlay.toast-visible .toast-card {
    transform: scale(1);
}

.toast-accent {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--color-gold-400), var(--color-gold-600));
    border-radius: var(--radius-2xl) var(--radius-2xl) 0 0;
}

.toast-body {
    display: flex;
    align-items: flex-start;
    gap: 0.875rem;
}
.toast-icon {
    width: 44px;
    height: 44px;
    border-radius: var(--radius-md);
    background: linear-gradient(135deg, var(--color-gold-500), var(--color-gold-600));
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-white);
    font-size: 1.125rem;
    flex-shrink: 0;
}
.toast-content {
    flex: 1;
    min-width: 0;
}
.toast-title {
    font-size: 1rem;
    font-weight: 700;
    color: var(--color-navy);
    margin: 0 0 0.125rem;
}
.toast-message {
    font-size: 0.875rem;
    color: var(--color-slate-light);
    line-height: 1.5;
    margin: 0;
}
.toast-close {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-slate-light);
    transition: all var(--transition-fast);
    flex-shrink: 0;
}
.toast-close:hover {
    background: rgba(11, 17, 32, 0.04);
    color: var(--color-navy);
}

.toast-actions {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 0.5rem;
    margin-top: 1rem;
    padding-top: 0.875rem;
    border-top: 1px solid rgba(232, 154, 46, 0.08);
}
.toast-btn-primary {
    padding: 0.5rem 1.25rem;
    border-radius: var(--radius-lg);
    background: linear-gradient(135deg, var(--color-gold-500), var(--color-gold-600));
    color: var(--color-white);
    font-weight: 600;
    font-size: 0.8125rem;
    transition: all var(--transition-base);
}
.toast-btn-primary:hover {
    transform: scale(1.02);
    box-shadow: 0 4px 16px rgba(232, 154, 46, 0.25);
}
.toast-links {
    display: flex;
    align-items: center;
    gap: 0.375rem;
    font-size: 0.8125rem;
}
.toast-divider {
    color: var(--color-slate-light);
    opacity: 0.30;
}
.toast-link {
    font-weight: 500;
    color: var(--color-navy);
    transition: color var(--transition-fast);
}
.toast-link:hover {
    color: var(--color-gold-600);
}
.toast-link i {
    font-size: 0.625rem;
    transition: transform var(--transition-fast);
}
.toast-link:hover i {
    transform: translateX(2px);
}

.toast-footer-note {
    font-size: 0.5625rem;
    text-align: center;
    color: var(--color-slate-light);
    opacity: 0.40;
    margin: 0.75rem 0 0;
}

/* ============================================================
   18. RESPONSIVE UTILITIES
   ============================================================ */
/* Hide on mobile */
.hide-mobile {
    display: none !important;
}
@media (min-width: 768px) {
    .hide-mobile {
        display: block !important;
    }
}

/* Show on mobile */
.show-mobile {
    display: block !important;
}
@media (min-width: 768px) {
    .show-mobile {
        display: none !important;
    }
}

/* Text utilities */
.text-center {
    text-align: center;
}
.text-gold {
    color: var(--color-gold-500);
}

/* ============================================================
   19. ANIMATIONS (AOS overrides)
   ============================================================ */
[data-aos] {
    pointer-events: none;
}
[data-aos].aos-animate {
    pointer-events: auto;
}

/* ============================================================
   20. PRINT STYLES
   ============================================================ */
@media print {
    .header,
    .footer,
    .scroll-top,
    .toast-overlay {
        display: none !important;
    }
    .hero {
        min-height: auto;
        padding: 2rem 0;
    }
    .hero-bg {
        display: none;
    }
    .hero-content {
        color: var(--color-navy);
    }
    .hero-title {
        color: var(--color-navy);
    }
    .hero-highlight {
        -webkit-text-fill-color: var(--color-gold-600);
    }
    .hero-desc {
        color: var(--color-slate);
    }
    .hero-stats {
        border-top-color: rgba(0, 0, 0, 0.06);
    }
    .hero-stat-label {
        color: var(--color-navy);
    }
    .hero-stat-value {
        color: var(--color-slate-light);
    }
    .section {
        padding: 2rem 0;
    }
    .service-card {
        break-inside: avoid;
        border: 1px solid #e5e5e5;
    }
    .service-card:hover {
        transform: none !important;
    }
    .package-card {
        break-inside: avoid;
        border: 1px solid #e5e5e5;
    }
    .package-card:hover {
        transform: none !important;
    }
    .testimonial-card {
        break-inside: avoid;
        border: 1px solid #e5e5e5;
    }
    .testimonial-card:hover {
        transform: none !important;
    }
    .why-card {
        border: 1px solid rgba(255, 255, 255, 0.10);
    }
    .btn {
        border: 1px solid #333;
        background: transparent !important;
        color: #333 !important;
        box-shadow: none !important;
    }
    .btn-primary,
    .btn-dark,
    .btn-primary-sm,
    .btn-dark-sm {
        background: transparent !important;
        color: #333 !important;
    }
    .btn .btn-arrow {
        display: none;
    }
    .btn-outline {
        border-color: #333 !important;
    }
}
