:root {
    --burgundy: #7b1e3a;
    --burgundy-dark: #5c152c;
    --gold: #c9a227;
    --gold-light: #e8d48b;
    --cream: #f8f5f0;
    --cream-dark: #efe8dc;
    --text: #1a1a1a;
    --text-muted: #5a5a5a;
    --white: #ffffff;
    --shadow: 0 12px 40px rgba(123, 30, 58, 0.12);
    --shadow-sm: 0 4px 20px rgba(123, 30, 58, 0.08);
    --radius: 16px;
    --font-serif: 'Playfair Display', Georgia, serif;
    --font-sans: 'Montserrat', system-ui, sans-serif;
}

* { box-sizing: border-box; }

body {
    font-family: var(--font-sans);
    color: var(--text);
    background: var(--cream);
    line-height: 1.7;
    margin: 0;
}

h1, h2, h3, h4, h5 {
    font-family: var(--font-serif);
    color: var(--burgundy);
    line-height: 1.25;
}

a { color: var(--burgundy); text-decoration: none; transition: color 0.2s; }
a:hover { color: var(--gold); }

.top-bar {
    background: var(--burgundy-dark);
    color: var(--gold-light);
    font-size: 0.85rem;
    padding: 0.5rem 0;
}

.top-bar a { color: var(--gold-light); }
.top-bar a:hover { color: var(--white); }
.top-bar .emergency { font-weight: 700; letter-spacing: 0.5px; }

.top-bar-address {
    max-width: 420px;
    line-height: 1.4;
}

.top-bar-address a {
    display: inline;
}

@media (max-width: 767px) {
    .top-bar-address {
        max-width: 100%;
        flex: 1 1 100%;
    }
    .top-bar .emergency {
        flex: 1 1 100%;
        text-align: left;
    }
}

.navbar-luxury {
    background: rgba(248, 245, 240, 0.97);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(201, 162, 39, 0.25);
    padding: 0.75rem 0;
    box-shadow: var(--shadow-sm);
}

.navbar-luxury .navbar-brand img { max-height: 85px; width: auto; object-fit: contain; }
.navbar-luxury .nav-link {
    font-weight: 600;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: var(--text) !important;
    padding: 0.5rem 1rem !important;
}
.navbar-luxury .nav-link:hover,
.navbar-luxury .nav-link.active { color: var(--burgundy) !important; }

.btn-gold {
    background: linear-gradient(135deg, var(--gold), var(--gold-light));
    color: var(--burgundy-dark) !important;
    border: none;
    font-weight: 700;
    padding: 0.65rem 1.5rem;
    border-radius: 50px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-size: 0.8rem;
    box-shadow: 0 4px 15px rgba(201, 162, 39, 0.4);
}
.btn-gold:hover { transform: translateY(-2px); box-shadow: 0 8px 25px rgba(201, 162, 39, 0.5); color: var(--burgundy-dark) !important; }

.btn-burgundy {
    background: linear-gradient(135deg, var(--burgundy), var(--burgundy-dark));
    color: var(--white) !important;
    border: none;
    font-weight: 600;
    padding: 0.75rem 1.75rem;
    border-radius: 50px;
}
.btn-burgundy:hover { color: var(--white) !important; opacity: 0.95; transform: translateY(-2px); }

.hero-section {
    position: relative;
    min-height: 92vh;
    display: flex;
    align-items: center;
    overflow: hidden;
    background: var(--cream);
}

.hero-section .hero-bg {
    position: absolute;
    inset: -5%;
    width: 110%;
    height: 110%;
    background-size: cover;
    background-position: center center;
    opacity: 0.55;
    z-index: 0;
}

.hero-section::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(105deg, rgba(248, 245, 240, 0.97) 0%, rgba(248, 245, 240, 0.75) 45%, rgba(248, 245, 240, 0.2) 100%);
    pointer-events: none;
    z-index: 1;
}

.hero-content { position: relative; z-index: 3; padding: 5rem 0; }

.hero-title {
    font-size: clamp(2.4rem, 5.5vw, 3.75rem);
    margin-bottom: 1rem;
    font-weight: 700;
}

.hero-title .highlight {
    display: block;
    background: linear-gradient(135deg, var(--burgundy), #a02850);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle-line {
    font-size: 1.15rem;
    color: var(--text-muted);
    max-width: 520px;
}

.footer-luxury .navbar-brand img,
.footer-luxury img { filter: drop-shadow(0 2px 8px rgba(0,0,0,0.2)); }

.gold-divider {
    width: 80px;
    height: 3px;
    background: linear-gradient(90deg, var(--gold), transparent);
    margin: 1.5rem 0;
}

.section-padding { padding: 5rem 0; }

.section-title {
    text-align: center;
    margin-bottom: 3rem;
}

.section-title span {
    display: block;
    font-family: var(--font-sans);
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 3px;
    color: var(--gold);
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.service-card {
    background: var(--white);
    border-radius: var(--radius);
    padding: 2rem;
    text-align: center;
    border: 1px solid rgba(201, 162, 39, 0.2);
    box-shadow: var(--shadow-sm);
    height: 100%;
    transition: transform 0.3s, box-shadow 0.3s;
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow);
}

.service-card .icon-wrap {
    width: 72px;
    height: 72px;
    margin: 0 auto 1.25rem;
    border-radius: 16px;
    background: linear-gradient(135deg, rgba(201, 162, 39, 0.15), rgba(123, 30, 58, 0.08));
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.75rem;
    color: var(--gold);
    border: 1px solid rgba(201, 162, 39, 0.3);
}

.luxury-card {
    background: var(--white);
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    border: 1px solid rgba(201, 162, 39, 0.15);
    height: 100%;
}

.luxury-card img { width: 100%; height: 220px; object-fit: cover; }
.luxury-card .card-body { padding: 1.5rem; }

.staff-card { text-align: center; padding: 2rem; }
.staff-card img {
    width: 140px;
    height: 140px;
    border-radius: 50%;
    object-fit: cover;
    border: 4px solid var(--gold);
    margin-bottom: 1rem;
}

.cta-banner {
    background: linear-gradient(135deg, var(--burgundy), var(--burgundy-dark));
    color: var(--white);
    border-radius: var(--radius);
    padding: 3rem;
    position: relative;
    overflow: hidden;
}

.cta-banner::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 300px;
    height: 300px;
    background: rgba(201, 162, 39, 0.15);
    border-radius: 50%;
}

.cta-banner h2, .cta-banner p { color: var(--white); position: relative; }

.emergency-strip {
    background: var(--burgundy-dark);
    color: var(--white);
    padding: 1rem 0;
}

.emergency-strip i { color: var(--gold); }

.footer-luxury {
    background: var(--burgundy-dark);
    color: rgba(255, 255, 255, 0.85);
    padding: 4rem 0 0;
}

.footer-luxury h5 { color: var(--gold); font-family: var(--font-serif); }
.footer-luxury a { color: rgba(255, 255, 255, 0.85); }
.footer-luxury a:hover { color: var(--gold); }

.footer-map h5 {
    color: var(--gold);
    font-family: var(--font-serif);
}

.footer-map-wrapper {
    border-color: rgba(201, 162, 39, 0.45);
    background: rgba(0, 0, 0, 0.15);
}

.footer-map-wrapper iframe {
    min-height: 320px;
}

.page-header {
    background: linear-gradient(135deg, var(--burgundy) 0%, var(--burgundy-dark) 100%);
    color: var(--white);
    padding: 4rem 0;
    text-align: center;
}

.page-header h1 { color: var(--white); margin: 0; }
.page-header .breadcrumb { justify-content: center; margin-top: 1rem; }
.page-header .breadcrumb-item a { color: var(--gold-light); }
.page-header .breadcrumb-item.active { color: rgba(255,255,255,0.7); }

.vision-box {
    background: var(--white);
    border-left: 4px solid var(--gold);
    padding: 2rem;
    border-radius: 0 var(--radius) var(--radius) 0;
    box-shadow: var(--shadow-sm);
}

.contact-info-card {
    background: var(--white);
    padding: 2rem;
    border-radius: var(--radius);
    border: 1px solid rgba(201, 162, 39, 0.2);
    height: 100%;
}

.contact-card-link:hover .contact-info-card {
    transform: translateY(-6px);
    box-shadow: var(--shadow);
    border-color: var(--gold);
}

.contact-info-card {
    transition: transform 0.35s ease, box-shadow 0.35s ease, border-color 0.35s ease;
}

.contact-info-card i {
    width: 48px;
    height: 48px;
    background: rgba(123, 30, 58, 0.08);
    color: var(--burgundy);
    border-radius: 12px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    margin-bottom: 1rem;
}

.map-wrapper {
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow);
    border: 3px solid var(--gold);
}

.map-wrapper iframe {
    width: 100%;
    min-height: 400px;
    height: 100%;
    border: 0;
    display: block;
}

.form-luxury .form-control,
.form-luxury .form-select {
    border-radius: 10px;
    border: 1px solid rgba(201, 162, 39, 0.35);
    padding: 0.75rem 1rem;
}

.form-luxury .form-control:focus,
.form-luxury .form-select:focus {
    border-color: var(--burgundy);
    box-shadow: 0 0 0 0.2rem rgba(123, 30, 58, 0.15);
}

.alert-success-luxury {
    background: rgba(201, 162, 39, 0.15);
    border: 1px solid var(--gold);
    color: var(--burgundy-dark);
    border-radius: var(--radius);
}

.trust-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(201, 162, 39, 0.2);
    padding: 0.5rem 1rem;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--burgundy);
    margin-top: 1rem;
}

.section-divider-gold {
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--gold), transparent);
    margin: 0 auto 3rem;
    max-width: 200px;
}

.btn-burgundy, .btn-gold {
    transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.content-rich p:last-child { margin-bottom: 0; }

/* Service listing & detail */
.service-card-link:hover .service-card,
.service-card-link:hover .service-list-card {
    transform: translateY(-8px);
    box-shadow: var(--shadow);
}

.service-read-more {
    color: var(--burgundy);
    font-weight: 600;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: color 0.2s, gap 0.2s;
}

.service-card-link:hover .service-read-more {
    color: var(--gold);
}

.service-list-card {
    transition: transform 0.45s cubic-bezier(0.22, 1, 0.36, 1), box-shadow 0.45s ease;
}

.service-detail-image {
    width: 100%;
    max-height: 420px;
    object-fit: cover;
    border-radius: var(--radius);
    border: 3px solid rgba(201, 162, 39, 0.35);
    box-shadow: var(--shadow);
}

.service-detail-icon-banner {
    height: 280px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: var(--radius);
    background: linear-gradient(135deg, rgba(123, 30, 58, 0.08), rgba(201, 162, 39, 0.15));
    border: 2px solid rgba(201, 162, 39, 0.3);
}

.service-detail-icon-banner i {
    font-size: 5rem;
    color: var(--gold);
}

.service-detail-content {
    font-size: 1.05rem;
    line-height: 1.85;
}

.service-detail-content ul,
.service-detail-content ol {
    padding-left: 1.25rem;
    margin-bottom: 1rem;
}

.service-detail-cta {
    background: linear-gradient(135deg, var(--burgundy), var(--burgundy-dark));
    box-shadow: var(--shadow);
}

.service-related-list li + li {
    border-top: 1px solid rgba(201, 162, 39, 0.15);
}

.service-related-list a {
    color: inherit;
    text-decoration: none;
    transition: background 0.2s;
    border-radius: 8px;
    margin: 0 -0.5rem;
    padding-left: 0.5rem !important;
    padding-right: 0.5rem !important;
}

.service-related-list a:hover {
    background: rgba(201, 162, 39, 0.1);
}

.service-related-list .related-icon {
    width: 40px;
    height: 40px;
    flex-shrink: 0;
    border-radius: 10px;
    background: rgba(123, 30, 58, 0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--burgundy);
}

@media (max-width: 991px) {
    .hero-section { min-height: auto; padding-bottom: 2rem; }
    .hero-section .hero-bg { opacity: 0.35; }
    .navbar-luxury .navbar-brand img { max-height: 64px; }
}
