:root {
    --primary-gold: #D4AF37;
    --primary-gold-hover: #AA820A;
    --primary-gold-light: rgba(212, 175, 55, 0.15);
    --accent-dark: #121212;
    --bg-light: #FDFBF7;
    --bg-card: #FFFFFF;
    --text-main: #2C2C2C;
    --text-muted: #666666;
    --font-heading: 'Playfair Display', serif;
    --font-subheading: 'Cormorant Garamond', serif;
    --font-body: 'Poppins', sans-serif;
    --shadow-soft: 0 10px 30px rgba(0, 0, 0, 0.05);
    --shadow-hover: 0 18px 40px rgba(198, 167, 105, 0.2);
    --border-subtle: rgba(212, 175, 55, 0.25);
}

body {
    font-family: var(--font-body);
    color: var(--text-main);
    background-color: var(--bg-light);
    overflow-x: hidden;
    scroll-behavior: smooth;
    padding-bottom: 70px;
}

@media (min-width: 992px) {
    body { padding-bottom: 0; }
}

h1, h2, h3, h4, .font-heading {
    font-family: var(--font-heading);
    letter-spacing: 0.5px;
}

p, .lead {
    font-family: var(--font-body);
    font-weight: 300;
    line-height: 1.8;
}

/* Modernized Decorative Divider */
.gold-divider {
    width: 80px;
    height: 3px;
    background: linear-gradient(90deg, transparent, var(--primary-gold), transparent);
    margin: 15px auto 30px auto;
    border-radius: 2px;
}

/* Navbar */
.navbar-custom {
    background: rgba(255, 255, 255, 0.92) !important;
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--border-subtle);
    transition: all 0.3s ease;
}

.navbar-brand img {
    transition: all 0.3s ease;
    box-shadow: 0 0 8px rgba(0,0,0,0.1);
}

.navbar-brand:hover img {
    transform: scale(1.08) rotate(2deg);
    box-shadow: 0 0 15px rgba(212, 175, 55, 0.6);
}

.navbar-brand-title {
    font-family: var(--font-heading);
    font-weight: 700;
    letter-spacing: 2.5px;
    color: var(--accent-dark) !important;
}

.nav-link-custom {
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--accent-dark) !important;
    padding: 8px 14px !important;
    border-radius: 30px;
    transition: all 0.3s ease;
    white-space: nowrap;
    font-weight: 500;
}

.nav-link-custom:hover,
.nav-link-custom.active {
    background-color: var(--primary-gold);
    color: #ffffff !important;
    box-shadow: 0 4px 12px rgba(212, 175, 55, 0.3);
}

/* Hero Section */
.hero-section {
    position: relative;
    padding: 180px 20px 120px 20px;
    border-radius: 0 0 40px 40px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.25);
    overflow: hidden;
    clip-path: inset(0 0 0 0);
    -webkit-clip-path: inset(0 0 0 0);
}

.hero-section::before {
    content: "";
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: linear-gradient(180deg, rgba(18,18,18,0.7) 0%, rgba(18,18,18,0.4) 50%, rgba(18,18,18,0.8) 100%), 
                      url('assets/img/banner1.jpg');
    background-position: center center;
    background-size: cover;
    background-repeat: no-repeat;
    will-change: transform;
    z-index: -1;
}

.hero-title {
    color: #FFFFFF;
    font-size: 3.4rem;
    font-weight: 700;
    margin-bottom: 20px;
    text-shadow: 0 3px 6px rgba(0,0,0,0.4);
    line-height: 1.2;
}

.hero-subtitle {
    color: #F5F5F5;
    font-size: 1.4rem;
    letter-spacing: 1.5px;
    margin-bottom: 40px;
    font-family: var(--font-subheading);
    font-style: italic;
}

.hero-badges {
    margin-top: 50px;
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.hero-badge-item {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-size: 0.88rem;
    letter-spacing: 0.5px;
    color: #FFFFFF;
    background: rgba(255, 255, 255, 0.12);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    padding: 10px 22px;
    border-radius: 30px;
    border: 1px solid rgba(255, 255, 255, 0.25);
    transition: all 0.3s ease;
}

.hero-badge-item:hover {
    background: rgba(255, 255, 255, 0.22);
    transform: translateY(-2px);
}

.hero-badge-item i { color: var(--primary-gold); }

/* Banner (Parallax) */
.parallax-banner {
    position: relative;
    width: 100%;
    max-width: 340px;
    height: 520px;
    margin: 0 auto;
    border-radius: 24px;
    overflow: hidden;
    background: url("assets/img/Rosanna 274 x 597.png") center var(--banner-offset, 50%) / cover no-repeat;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.22);
    border: 2px solid var(--border-subtle);
    will-change: background-position;
    contain: paint;
}

/* Buttons & Cards */
.btn-gold {
    background: linear-gradient(135deg, #D4AF37 0%, #C6A769 100%);
    color: #FFFFFF !important;
    padding: 14px 38px;
    border-radius: 50px;
    font-weight: 600;
    letter-spacing: 1.2px;
    text-transform: uppercase;
    font-size: 0.85rem;
    border: none;
    box-shadow: 0 6px 20px rgba(198, 167, 105, 0.4);
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
}

.btn-gold:hover {
    background: linear-gradient(135deg, #C6A769 0%, #AA820A 100%);
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(198, 167, 105, 0.6);
}

.btn-outline-gold {
    background: transparent;
    color: #FFFFFF !important;
    padding: 14px 38px;
    border-radius: 50px;
    font-weight: 600;
    letter-spacing: 1.2px;
    text-transform: uppercase;
    font-size: 0.85rem;
    border: 2px solid var(--primary-gold);
    backdrop-filter: blur(4px);
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
}

.btn-outline-gold:hover {
    background: var(--primary-gold);
    color: #FFFFFF !important;
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(198, 167, 105, 0.4);
}

.custom-card {
    background: var(--bg-card);
    border: 1px solid var(--border-subtle);
    border-radius: 24px;
    padding: 35px;
    box-shadow: var(--shadow-soft);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    height: 100%;
}

.custom-card:hover {
    transform: translateY(-7px);
    box-shadow: var(--shadow-hover);
}

/* Swiper Styling */
.swiper-container {
    width: 100%;
    border-radius: 18px;
    overflow: hidden;
    margin: 15px 0;
    box-shadow: 0 8px 20px rgba(0,0,0,0.08);
}

.swiper-slide img {
    border-radius: 18px;
    object-fit: cover;
    width: 100%;
    height: 360px;
}

.swiper-button-next, .swiper-button-prev {
    background: rgba(255,255,255,0.8);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    backdrop-filter: blur(4px);
    transition: all 0.3s ease;
}

.swiper-button-next::after, .swiper-button-prev::after {
    font-size: 1.1rem !important;
    font-weight: bold;
}

.swiper-button-next:hover, .swiper-button-prev:hover {
    background: #FFFFFF;
    transform: scale(1.1);
}

/* Testimonials */
.testimonial-card {
    background: #FFFFFF;
    border: 1px solid var(--border-subtle);
    border-radius: 20px;
    padding: 30px;
    box-shadow: var(--shadow-soft);
    transition: transform 0.3s ease;
}

.testimonial-card:hover {
    transform: translateY(-5px);
}

.stars-gold {
    color: var(--primary-gold);
    font-size: 1rem;
}

/* FAQ Accordion */
.accordion-custom .accordion-item {
    border: 1px solid var(--border-subtle);
    border-radius: 18px !important;
    margin-bottom: 15px;
    overflow: hidden;
    background: #FFF;
    box-shadow: 0 4px 12px rgba(0,0,0,0.02);
}

.accordion-custom .accordion-button {
    font-family: var(--font-body);
    font-weight: 500;
    color: var(--accent-dark);
    background-color: #FFF;
    box-shadow: none;
    padding: 20px 24px;
    transition: all 0.3s ease;
}

.accordion-custom .accordion-button:not(.collapsed) {
    color: var(--primary-gold);
    background-color: var(--primary-gold-light);
}

/* Mobile Bar */
.mobile-contact-bar {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(12px);
    border-top: 1px solid var(--border-subtle);
    z-index: 1000;
    display: flex;
    padding: 12px 18px;
    gap: 12px;
    box-shadow: 0 -8px 20px rgba(0,0,0,0.08);
}

.mobile-contact-bar a {
    flex: 1;
    text-align: center;
    padding: 12px;
    border-radius: 30px;
    font-size: 0.88rem;
    font-weight: 600;
    text-decoration: none;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}

.btn-mobile-call { background: var(--accent-dark); color: #FFF !important; }
.btn-mobile-wa { background: #25D366; color: #FFF !important; }

/* Form & Map */
.form-control {
    border-radius: 14px;
    padding: 14px 20px;
    border: 1px solid #E2E8F0;
    background-color: #FAFAFA;
    transition: all 0.3s ease;
}

.form-control:focus {
    border-color: var(--primary-gold);
    box-shadow: 0 0 0 0.25rem rgba(212, 175, 55, 0.2);
    background-color: #FFF;
}

.map-container {
    position: relative;
    min-height: 300px;
    border-radius: 20px;
    overflow: hidden;
}

.map-container iframe {
    width: 100%;
    height: 100%;
    min-height: 300px;
    border-radius: 20px;
    border: 0;
}

.map-placeholder {
    position: absolute;
    inset: 0;
    background: #F7F5F0;
    border-radius: 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 24px;
    text-align: center;
    z-index: 2;
}

.back-to-top {
    position: fixed;
    bottom: 25px;
    right: 25px;
    z-index: 999;
    width: 48px;
    height: 48px;
    background: var(--primary-gold);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 6px 16px rgba(0,0,0,0.18);
    transition: all 0.3s ease;
    text-decoration: none;
}

.back-to-top:hover {
    background: var(--accent-dark);
    color: white;
    transform: translateY(-4px);
}

/* Responsive Breakpoints */
@media (max-width: 1199.98px) and (min-width: 992px) {
    .navbar-custom .container { max-width: 100%; padding-left: 15px; padding-right: 15px; }
    .navbar-brand-title { font-size: 1.25rem !important; letter-spacing: 1.5px; }
    .navbar-brand img { width: 40px; height: 40px; }
    .navbar-nav { gap: 0 !important; flex-wrap: nowrap; }
    .nav-link-custom { font-size: 0.74rem; letter-spacing: 0.35px; padding: 7px !important; }
    .navbar-custom .ms-lg-4 { margin-left: 8px !important; }
}

@media (max-width: 991.98px) {
    .navbar-custom .container { padding-left: 15px; padding-right: 15px; }
    .navbar-custom { padding-top: 10px !important; padding-bottom: 10px !important; }
    .navbar-brand-title { font-size: 1.3rem !important; letter-spacing: 1.5px; }
    .navbar-brand img { width: 40px; height: 40px; }
    .navbar-toggler { padding: 6px 8px; margin-left: 10px; flex-shrink: 0; }
    .navbar-collapse { width: 100%; padding-top: 12px; overflow-x: hidden; }
    .navbar-nav { width: 100%; gap: 4px !important; margin-left: 0 !important; }
    .nav-item { width: 100%; }
    .nav-link-custom { width: 100%; display: block; padding: 10px 14px !important; border-radius: 10px; font-size: 0.85rem; white-space: normal; }
    .navbar-custom .d-flex.align-items-center.ms-lg-4 { margin-left: 0 !important; margin-top: 12px !important; padding-top: 10px; border-top: 1px solid var(--border-subtle); }
}

@media (max-width: 768px) {
    .hero-title { font-size: 2.2rem; }
    .hero-section { padding: 120px 15px 80px 15px; }
    .back-to-top { bottom: 85px; }
}

@media (max-width: 575.98px) {
    .navbar-custom .container { padding-left: 12px; padding-right: 12px; }
    .navbar-brand { min-width: 0; max-width: calc(100% - 55px); }
    .navbar-brand-title { font-size: 1.12rem !important; letter-spacing: 1px; white-space: nowrap; }
    .navbar-brand img { width: 38px; height: 38px; flex-shrink: 0; }
    .navbar-toggler { margin-left: auto; }
    .nav-link-custom { font-size: 0.82rem; }
    .parallax-banner { max-width: 290px; height: 450px; border-radius: 20px; }
}

@media (min-width: 576px) and (max-width: 991.98px) {
    .parallax-banner { max-width: 330px; height: 490px; }
}