/* Global Styles & Variables */
:root {
    --bg-main: #0B0B0B;
    --bg-alt: #0F0F0F;
    --bg-card: #151515;
    --text-main: #EAEAEA;
    --text-muted: #9D9D9D;
    --gold: #D4AF37;
    --gold-dim: rgba(212, 175, 55, 0.2);
    --font-heading: 'Cormorant Garamond', serif;
    --font-body: 'Inter', sans-serif;
    --font-btn: 'Montserrat', sans-serif;
}

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

html {
    scroll-behavior: smooth;
}

body {
    background-color: var(--bg-main);
    color: var(--text-main);
    font-family: var(--font-body);
    overflow-x: hidden;
}

/* Typography */
.font-heading, h1, h2, h3, h4 {
    font-family: var(--font-heading);
}

.gold-text {
    background: linear-gradient(to right, #F9F295, #E0AA3E, #E0AA3E, #B88A44);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-style: normal;
}

/* Layout Utilities */
.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
}

.section-padding {
    padding: 6rem 0;
}
@media (min-width: 768px) {
    .section-padding {
        padding: 9rem 0;
    }
}

.border-y {
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.bg-alt {
    background-color: var(--bg-alt);
}

/* Flex Utilities */
.flex { display: flex; }
.items-center { align-items: center; }
.justify-between { justify-content: space-between; }
.justify-center { justify-content: center; }
.gap-2 { gap: 0.5rem; }
.gap-3 { gap: 0.75rem; }
.gap-4 { gap: 1rem; }
.gap-8 { gap: 2rem; }
.flex-col { flex-direction: column; }
.flex-wrap { flex-wrap: wrap; }
.mx-auto { margin-left: auto; margin-right: auto; }
.px-5 { padding-left: 1.25rem; padding-right: 1.25rem; }
@media (min-width: 768px) {
    .md\:px-8 { padding-left: 2rem; padding-right: 2rem; }
}

/* UI Elements */
.glass-pill {
    padding: 0.75rem 1.25rem;
    font-size: 0.65rem;
    color: rgba(234, 234, 234, 0.9);
    background: rgba(11, 11, 11, 0.6);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 9999px;
    font-family: var(--font-btn);
    text-transform: uppercase;
    letter-spacing: 0.1em;
}
@media (min-width: 768px) {
    .glass-pill {
        font-size: 0.6875rem;
    }
}

.glass-tag {
    position: absolute;
    top: 1rem;
    left: 1rem;
    padding: 0.25rem 0.75rem;
    font-size: 0.625rem;
    color: var(--gold);
    z-index: 10;
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 9999px;
    font-family: var(--font-btn);
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

/* Buttons */
.btn-gold {
    background-color: var(--gold);
    color: black;
    border: none;
    padding: 0.75rem 1.5rem;
    border-radius: 9999px;
    font-family: var(--font-btn);
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.3s ease;
}
.btn-gold:hover {
    background-color: #E0AA3E;
    transform: translateY(-2px);
}

.btn-ghost {
    background-color: rgba(0, 0, 0, 0.5);
    color: var(--gold);
    border: 1px solid var(--gold);
    padding: 0.75rem 1.5rem;
    border-radius: 9999px;
    font-family: var(--font-btn);
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.3s ease;
}
.btn-ghost:hover {
    background-color: rgba(212, 175, 55, 0.1);
}

.icon-sm {
    width: 1rem;
    height: 1rem;
}
.icon-xs {
    width: 0.875rem;
    height: 0.875rem;
    transition: transform 0.3s ease;
}

/* Navigation */
.glass-nav {
    background: transparent;
    padding: 2rem 0;
    transition: all 0.5s ease;
}
.glass-nav.scrolled {
    background: rgba(11, 11, 11, 0.95);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    padding: 1rem 0;
}

.logo-link {
    text-decoration: none;
}
.logo-circle {
    width: 2.5rem;
    height: 2.5rem;
    border-radius: 50%;
    border: 1px solid var(--gold);
    display: flex;
    align-items: center;
    justify-content: center;
}
.logo-text {
    font-family: var(--font-heading);
    color: var(--gold);
    font-size: 1.125rem;
}
.brand-name {
    font-family: var(--font-heading);
    font-size: 1.125rem;
    color: white;
    letter-spacing: 0.025em;
}
.brand-tag {
    font-family: var(--font-btn);
    font-size: 0.5625rem;
    letter-spacing: 0.35em;
    color: var(--gold);
    text-transform: uppercase;
    margin-top: 0.125rem;
}

.nav-links {
    display: flex;
    gap: 2rem;
}
.nav-link {
    color: rgba(234, 234, 234, 0.8);
    text-decoration: none;
    font-family: var(--font-btn);
    font-size: 0.875rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    transition: color 0.3s ease;
}
.nav-link:hover {
    color: var(--gold);
}

.nav-actions {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}
.phone-link {
    color: rgba(234, 234, 234, 0.8);
    text-decoration: none;
    font-family: var(--font-btn);
    font-size: 0.75rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    transition: color 0.3s ease;
}
.phone-link:hover {
    color: var(--gold);
}

.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    color: var(--gold);
    cursor: pointer;
}

@media (max-width: 1024px) {
    .hidden-mobile {
        display: none !important;
    }
    .mobile-menu-btn {
        display: block;
    }
}

/* Mobile Menu */
.mobile-menu-overlay {
    position: fixed;
    inset: 0;
    background: rgba(11, 11, 11, 0.98);
    z-index: 100;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
}
.mobile-menu-overlay.active {
    opacity: 1;
    pointer-events: auto;
}
.close-menu-btn {
    position: absolute;
    top: 2rem;
    right: 2rem;
    background: none;
    border: none;
    color: var(--gold);
    cursor: pointer;
}
.mobile-nav-links {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2rem;
}
.mobile-nav-link {
    color: white;
    text-decoration: none;
    font-family: var(--font-heading);
    font-size: 2rem;
    transition: color 0.3s ease;
}
.mobile-nav-link:hover {
    color: var(--gold);
}

/* Hero Section */
.hero-section {
    position: relative;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}
.hero-bg {
    position: absolute;
    inset: 0;
    z-index: -1;
    overflow: hidden;
}
.ken-burns {
    width: 100%;
    height: 100%;
    object-fit: cover;
    animation: kenBurns 20s infinite alternate;
}
@keyframes kenBurns {
    0% { transform: scale(1); }
    100% { transform: scale(1.1); }
}
.hero-vignette {
    position: absolute;
    inset: 0;
    box-shadow: inset 0 0 150px rgba(0,0,0,0.9);
}
.hero-gradient {
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom right, rgba(0,0,0,0.6), transparent, rgba(212,175,55,0.15));
}

.noise-overlay {
    position: fixed;
    inset: 0;
    pointer-events: none;
    z-index: 9999;
    opacity: 0.05;
    background-image: url('data:image/svg+xml;utf8,%3Csvg viewBox="0 0 200 200" xmlns="http://www.w3.org/200%22%3E%3Cfilter id="noiseFilter"%3E%3CfeTurbulence type="fractalNoise" baseFrequency="0.65" numOctaves="3" stitchTiles="stitch"/%3E%3C/filter%3E%3Crect width="100%25" height="100%25" filter="url(%23noiseFilter)"/%3E%3C/svg%3E');
}

.hero-eyebrow {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
}
.hero-eyebrow .line {
    height: 1px;
    width: 3rem;
    background-color: var(--gold);
}
.hero-eyebrow .text {
    font-family: var(--font-btn);
    font-size: 0.625rem;
    letter-spacing: 0.5em;
    color: var(--gold);
    text-transform: uppercase;
}
@media (min-width: 768px) {
    .hero-eyebrow .text { font-size: 0.75rem; }
}

.hero-title {
    font-size: 13vw;
    line-height: 0.95;
    letter-spacing: -0.02em;
    max-width: 72rem;
    margin: 0 auto;
}
@media (min-width: 768px) {
    .hero-title { font-size: 7.5rem; }
    .mobile-break { display: none; }
}

.hero-subtitle {
    margin-top: 1.5rem;
    font-size: 1rem;
    color: rgba(234, 234, 234, 0.85);
    max-width: 42rem;
    margin-inline: auto;
    line-height: 1.6;
}
@media (min-width: 768px) {
    .hero-subtitle { font-size: 1.125rem; }
}

.hero-cta {
    margin-top: 2.5rem;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1rem;
}
.hero-stats {
    margin-top: 3.5rem;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1rem;
}

.scroll-indicator {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
}
.scroll-text {
    font-family: var(--font-btn);
    font-size: 0.625rem;
    letter-spacing: 0.4em;
    color: var(--gold);
    text-transform: uppercase;
}
.scroll-icon {
    color: var(--gold);
    animation: bounce 2s infinite;
}
@keyframes bounce {
    0%, 20%, 50%, 80%, 100% { transform: translateY(0); }
    40% { transform: translateY(-10px); }
    60% { transform: translateY(-5px); }
}

/* Trust Section */
.trust-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
}
@media (min-width: 768px) {
    .trust-grid {
        grid-template-columns: repeat(5, 1fr);
        gap: 1rem;
    }
}
.trust-item {
    text-align: center;
}
.trust-number {
    font-size: 2.5rem;
    font-family: var(--font-heading);
    font-weight: 600;
}
@media (min-width: 768px) {
    .trust-number { font-size: 3.75rem; }
}
.trust-label {
    margin-top: 0.75rem;
    font-family: var(--font-btn);
    font-size: 0.6875rem;
    letter-spacing: 0.3em;
    color: var(--text-muted);
    text-transform: uppercase;
}

/* Shared Section Header */
.section-header {
    text-align: center;
    margin-bottom: 3.5rem;
}
.section-eyebrow {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    margin-bottom: 1rem;
}
.section-eyebrow .line-grad-r {
    height: 1px;
    width: 2rem;
    background: linear-gradient(to right, transparent, var(--gold));
}
.section-eyebrow .line-grad-l {
    height: 1px;
    width: 2rem;
    background: linear-gradient(to left, transparent, var(--gold));
}
.section-eyebrow .text {
    font-family: var(--font-btn);
    font-size: 0.6875rem;
    letter-spacing: 0.4em;
    color: var(--gold);
    text-transform: uppercase;
}
.section-title {
    font-size: 2.25rem;
    line-height: 1.05;
    letter-spacing: -0.02em;
}
@media (min-width: 768px) {
    .section-title { font-size: 3.75rem; }
}
.section-subtitle {
    margin-top: 1.25rem;
    color: var(--text-muted);
    max-width: 42rem;
    margin-inline: auto;
    font-size: 1rem;
}
@media (min-width: 768px) {
    .section-subtitle { font-size: 1.125rem; }
}

/* Services Section */
.service-filters {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.5rem;
    margin-bottom: 3rem;
}
.filter-btn {
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: rgba(234, 234, 234, 0.7);
    padding: 0.5rem 1.25rem;
    border-radius: 9999px;
    font-family: var(--font-btn);
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    cursor: pointer;
    transition: all 0.3s ease;
}
.filter-btn:hover {
    border-color: rgba(212, 175, 55, 0.5);
}
.filter-btn.active {
    background-color: var(--gold);
    color: black;
    border-color: var(--gold);
}

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

.service-card {
    background-color: var(--bg-alt);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 1rem;
    overflow: hidden;
    position: relative;
    transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}
.service-card:hover {
    transform: translateY(-10px);
}
.service-img-wrapper {
    position: relative;
    aspect-ratio: 4 / 5;
    overflow: hidden;
}
.service-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 1.4s ease;
}
.service-card:hover .service-img {
    transform: scale(1.1);
}
.service-img-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, black, rgba(0,0,0,0.4), transparent);
}
.service-content {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 1.5rem;
}
.service-icon {
    width: 1.5rem;
    height: 1.5rem;
    margin-bottom: 0.75rem;
}
.service-name {
    font-size: 1.5rem;
    color: white;
}
.service-desc {
    font-size: 0.875rem;
    color: rgba(234, 234, 234, 0.7);
    margin-top: 0.5rem;
    line-height: 1.6;
}
.service-footer {
    margin-top: 1.25rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.service-price {
    font-family: var(--font-btn);
    font-size: 0.75rem;
    color: var(--gold);
    letter-spacing: 0.1em;
}
.service-book {
    background: none;
    border: none;
    color: white;
    font-family: var(--font-btn);
    font-size: 0.625rem;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 0.25rem;
}
.service-card:hover .icon-xs {
    transform: translateX(4px);
}

/* About Section */
.about-grid {
    display: grid;
    gap: 1rem;
    grid-template-columns: 1fr;
}
@media (min-width: 768px) {
    .about-grid { grid-template-columns: repeat(2, 1fr); gap: 1.25rem; }
}
@media (min-width: 1024px) {
    .about-grid { grid-template-columns: repeat(3, 1fr); }
}

.feature-card {
    background-color: var(--bg-card);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 1rem;
    padding: 2rem;
    position: relative;
    overflow: hidden;
    height: 100%;
    transition: all 0.5s ease;
}
.feature-card:hover {
    border-color: rgba(212, 175, 55, 0.3);
}
.feature-glow {
    position: absolute;
    top: -5rem;
    right: -5rem;
    width: 10rem;
    height: 10rem;
    background-color: rgba(212, 175, 55, 0.1);
    border-radius: 50%;
    filter: blur(40px);
    opacity: 0;
    transition: opacity 0.7s ease;
}
.feature-card:hover .feature-glow {
    opacity: 1;
}
.feature-icon-wrapper {
    width: 3.5rem;
    height: 3.5rem;
    border-radius: 0.75rem;
    background: linear-gradient(to bottom right, rgba(212, 175, 55, 0.2), rgba(182, 141, 64, 0.05));
    border: 1px solid rgba(212, 175, 55, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.25rem;
}
.feature-icon {
    width: 1.5rem;
    height: 1.5rem;
}
.feature-title {
    font-size: 1.5rem;
    color: white;
}
.feature-desc {
    color: var(--text-muted);
    margin-top: 0.75rem;
    line-height: 1.6;
}

/* Experts Section */
.experts-grid {
    display: grid;
    gap: 1.5rem;
    grid-template-columns: 1fr;
}
@media (min-width: 768px) {
    .experts-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (min-width: 1024px) {
    .experts-grid { grid-template-columns: repeat(4, 1fr); gap: 1rem; }
}
.expert-card {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}
.expert-img-wrapper {
    position: relative;
    aspect-ratio: 4 / 5;
    border-radius: 1rem;
    overflow: hidden;
}
.expert-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 1s ease;
}
.expert-card:hover .expert-img {
    transform: scale(1.1);
}
.expert-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.8), transparent 50%);
}
.expert-tags {
    position: absolute;
    bottom: 1rem;
    left: 1rem;
    right: 1rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.glass-pill-sm {
    background: rgba(11, 11, 11, 0.7);
    backdrop-filter: blur(8px);
    border: 1px solid rgba(212, 175, 55, 0.3);
    border-radius: 9999px;
    padding: 0.25rem 0.625rem;
    font-family: var(--font-btn);
    font-size: 0.55rem;
    color: var(--gold);
    text-transform: uppercase;
    letter-spacing: 0.1em;
}
.glass-icon {
    background: rgba(11, 11, 11, 0.7);
    backdrop-filter: blur(8px);
    border: 1px solid rgba(212, 175, 55, 0.3);
    border-radius: 50%;
    width: 1.75rem;
    height: 1.75rem;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gold);
}
.text-gold {
    color: var(--gold) !important;
}
.expert-info {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}
.expert-name {
    font-size: 1.25rem;
    color: white;
}
.expert-title {
    font-family: var(--font-btn);
    font-size: 0.625rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    font-weight: 600;
}
.expert-desc {
    font-size: 0.8125rem;
    color: var(--text-muted);
    margin-bottom: 0.5rem;
}
.expert-link {
    font-family: var(--font-btn);
    font-size: 0.625rem;
    letter-spacing: 0.2em;
    color: white;
    text-transform: uppercase;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: color 0.3s ease;
}
.expert-link:hover {
    color: var(--gold);
}
.expert-link:hover .icon-xs {
    transform: translateX(4px);
}

/* Gallery Section */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0.75rem;
}
@media (min-width: 768px) {
    .gallery-grid { grid-template-columns: repeat(3, 1fr); gap: 1rem; }
}
@media (min-width: 1024px) {
    .gallery-grid { grid-template-columns: repeat(4, 1fr); }
}
.gallery-item {
    position: relative;
    aspect-ratio: 1;
    border-radius: 0.75rem;
    overflow: hidden;
}
.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 1s ease;
}
.gallery-item:hover img {
    transform: scale(1.25);
}
.gallery-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, black, transparent, transparent);
    opacity: 0.7;
}
.gallery-item::after {
    content: '';
    position: absolute;
    inset: 0;
    border: 1px solid transparent;
    transition: border-color 0.5s ease;
    border-radius: 0.75rem;
}
.gallery-item:hover::after {
    border-color: rgba(212, 175, 55, 0.5);
}
.gallery-item .gallery-tag {
    opacity: 0;
    transition: opacity 0.5s ease;
    bottom: 0.75rem;
    left: 0.75rem;
    top: auto;
}
.gallery-item:hover .gallery-tag {
    opacity: 1;
}

/* Footer */
.footer-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
    margin-bottom: 4rem;
}
@media (min-width: 768px) {
    .footer-grid { grid-template-columns: 2fr 1fr 1fr; }
}
.footer-desc {
    color: var(--text-muted);
    margin-top: 1rem;
    max-width: 24rem;
    line-height: 1.6;
}
.footer-heading {
    font-family: var(--font-btn);
    font-size: 1rem;
    color: white;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 1.5rem;
}
.footer-links {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}
.footer-links a {
    color: var(--text-muted);
    text-decoration: none;
    font-size: 0.875rem;
    transition: color 0.3s ease;
}
.footer-links a:hover {
    color: var(--gold);
}
.footer-bottom {
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    text-align: center;
    color: var(--text-muted);
    font-size: 0.875rem;
}

/* Animations (Initial State) */
.fade-item, .fade-up-scroll {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}
.fade-item {
    transition-delay: calc(var(--delay, 0) * 0.15s);
}
.fade-up-scroll {
    transition-delay: calc(var(--delay, 0) * 0.15s);
}
.fade-in {
    opacity: 1;
    transform: translateY(0);
}

/* Pricing Section */
.pricing-section {
    background: radial-gradient(circle at 50% 50%, rgba(212, 175, 55, 0.05) 0%, rgba(0,0,0,1) 60%);
}
.pricing-grid {
    display: grid;
    gap: 1.5rem;
    grid-template-columns: 1fr;
    margin-top: 3rem;
}
@media (min-width: 768px) {
    .pricing-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (min-width: 1024px) {
    .pricing-grid { grid-template-columns: repeat(4, 1fr); gap: 1rem; align-items: start; }
}
.pricing-card {
    background: rgba(11, 11, 11, 0.6);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 1rem;
    padding: 2.5rem 1.5rem;
    display: flex;
    flex-direction: column;
    position: relative;
    height: 100%;
}
.pricing-card-highlighted {
    border: 1px solid rgba(212, 175, 55, 0.5);
    background: linear-gradient(to bottom, rgba(212, 175, 55, 0.1), rgba(11, 11, 11, 0.9));
    box-shadow: 0 0 30px rgba(212, 175, 55, 0.1);
    transform: translateY(-10px);
}
@media (max-width: 1023px) {
    .pricing-card-highlighted { transform: none; }
}
.pricing-tag {
    position: absolute;
    top: -10px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--gold);
    color: black;
    font-family: var(--font-btn);
    font-size: 0.625rem;
    font-weight: 700;
    padding: 0.25rem 1rem;
    border-radius: 9999px;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    box-shadow: 0 0 10px rgba(212, 175, 55, 0.5);
}
.pricing-icon {
    color: var(--gold);
    width: 1.5rem;
    height: 1.5rem;
    margin-bottom: 1rem;
}
.pricing-tier {
    font-family: var(--font-heading);
    font-size: 1.75rem;
    font-weight: 400;
    color: white;
    margin-bottom: 0.5rem;
}
.pricing-price {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    color: var(--gold);
    margin-bottom: 2rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    padding-bottom: 1.5rem;
}
.pricing-features {
    list-style: none;
    padding: 0;
    margin: 0 0 2.5rem 0;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}
.pricing-features li {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 0.8125rem;
    color: var(--text-muted);
}
.check-icon {
    color: var(--gold);
    width: 0.875rem;
    height: 0.875rem;
    flex-shrink: 0;
}
.w-full { width: 100%; }
.mt-auto { margin-top: auto; }

/* Testimonials Section */
.testimonials-section {
    background: radial-gradient(circle at 50% 50%, rgba(212, 175, 55, 0.05) 0%, var(--bg-alt) 60%);
}
.max-w-3xl {
    max-width: 48rem;
    margin-left: auto;
    margin-right: auto;
}
.text-center { text-align: center; }
.mt-8 { margin-top: 2rem; }
.quote-icon {
    width: 2.5rem;
    height: 2.5rem;
    color: var(--gold);
    margin-bottom: 1.5rem;
}
.stars {
    display: flex;
    gap: 0.25rem;
    margin-bottom: 1.5rem;
}
.star-icon { width: 1.25rem; height: 1.25rem; }
.fill-gold { fill: var(--gold); }
.testimonial-text {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-style: italic;
    color: white;
    line-height: 1.5;
    margin: 0 0 2rem 0;
}
@media (min-width: 768px) {
    .testimonial-text { font-size: 1.75rem; }
}
.testimonial-author { margin-bottom: 3rem; }
.author-name {
    font-family: var(--font-body);
    font-weight: 600;
    font-size: 0.875rem;
    color: white;
    margin-bottom: 0.25rem;
}
.author-service {
    font-family: var(--font-btn);
    font-size: 0.625rem;
    color: var(--gold);
    text-transform: uppercase;
    letter-spacing: 0.15em;
}
.carousel-dots {
    display: flex;
    gap: 0.5rem;
    align-items: center;
}
.carousel-dots .dot {
    width: 1rem;
    height: 2px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 9999px;
    transition: all 0.3s ease;
    cursor: pointer;
}
.carousel-dots .dot.active {
    width: 2rem;
    background: var(--gold);
}

/* FAQ Section */
.faq-section {
    background-color: var(--bg-main);
}
.faq-accordion {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}
.faq-item {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 0.75rem;
    overflow: hidden;
    transition: all 0.3s ease;
}
.faq-item:hover, .faq-item.active {
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(212, 175, 55, 0.2);
}
.faq-btn {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem;
    background: transparent;
    border: none;
    color: white;
    cursor: pointer;
    text-align: left;
}
.faq-question {
    font-family: var(--font-body);
    font-weight: 600;
    font-size: 1rem;
    transition: color 0.3s ease;
}
.faq-item:hover .faq-question, 
.faq-item.active .faq-question {
    color: var(--gold);
}
.faq-icon {
    width: 1.25rem;
    height: 1.25rem;
    color: rgba(255, 255, 255, 0.5);
    transition: all 0.3s ease;
}
.faq-item:hover .faq-icon {
    color: rgba(255, 255, 255, 0.8);
}
.faq-item.active .faq-icon {
    transform: rotate(180deg);
    color: var(--gold);
}
.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, padding 0.4s ease;
    padding: 0 1.5rem;
}
.faq-item.active .faq-answer {
    max-height: 200px;
    padding-bottom: 1.5rem;
}
.faq-answer p {
    color: var(--text-muted);
    font-size: 0.9375rem;
    line-height: 1.6;
    margin: 0;
}

/* Contact Section */
.contact-card {
    background: rgba(11, 11, 11, 0.8);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 1.5rem;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    margin-top: 3rem;
}
@media (min-width: 992px) {
    .contact-card { flex-direction: row; }
}
.contact-map {
    width: 100%;
    min-height: 300px;
}
@media (min-width: 992px) {
    .contact-map { width: 50%; min-height: 500px; }
}
.contact-info {
    padding: 3rem 2rem;
    display: flex;
    flex-direction: column;
}
@media (min-width: 992px) {
    .contact-info { width: 50%; padding: 4rem; }
}
.contact-eyebrow {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-family: var(--font-btn);
    font-size: 0.625rem;
    color: var(--gold);
    text-transform: uppercase;
    letter-spacing: 0.15em;
    margin-bottom: 1rem;
}
.contact-location {
    font-family: var(--font-heading);
    font-size: 2rem;
    color: white;
    margin-bottom: 1rem;
}
.contact-address {
    color: var(--text-muted);
    font-size: 0.875rem;
    line-height: 1.6;
    margin-bottom: 2rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}
.contact-details {
    list-style: none;
    padding: 0;
    margin: 0 0 2.5rem 0;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}
.contact-details li {
    display: flex;
    align-items: center;
    gap: 1rem;
    color: white;
    font-size: 0.9375rem;
}
.contact-details a {
    color: white;
    text-decoration: none;
    transition: color 0.3s ease;
}
.contact-details a:hover { color: var(--gold); }
.contact-icon {
    width: 1.25rem;
    height: 1.25rem;
    flex-shrink: 0;
}
.contact-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    margin-top: auto;
}
.contact-actions .btn-gold,
.contact-actions .btn-ghost {
    padding: 0.75rem 1.25rem;
    font-size: 0.75rem;
}

/* Floating Action Buttons */
.fab-container {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    z-index: 99;
}
.fab {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 3rem;
    height: 3rem;
    border-radius: 50%;
    cursor: pointer;
    transition: transform 0.3s ease;
    text-decoration: none;
    border: none;
    font-family: var(--font-btn);
    font-weight: 600;
}
.fab:hover {
    transform: translateY(-2px);
}
@keyframes pulse-whatsapp {
    0% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7);
    }
    70% {
        box-shadow: 0 0 0 15px rgba(37, 211, 102, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
    }
}

.fab-whatsapp {
    background-color: #25D366;
    color: white;
    animation: pulse-whatsapp 2s infinite;
}
.fab-phone {
    background-color: var(--gold);
    color: black;
}
.fab-book {
    background-color: var(--gold);
    color: black;
    width: auto;
    padding: 0 1.25rem;
    border-radius: 9999px;
    font-size: 0.875rem;
    gap: 0.5rem;
}
