:root {
    --brand-navy: #0d3b66;
    --brand-blue: #1769aa;
    --brand-orange: #ff8b2b;
    --brand-orange-dark: #ef6c08;
    --brand-cream: #f5f9ff;
    --brand-white: #ffffff;
    --brand-ink: #15253a;
    --brand-muted: #5f6b7b;
    --brand-border: #dce6f2;
    --brand-shadow: 0 16px 48px rgba(13, 59, 102, 0.14);
}

* { box-sizing: border-box; }
body {
    margin: 0;
    font-family: "Manrope", sans-serif;
    color: var(--brand-ink);
    background: #f8fbff;
}
a { text-decoration: none; }
img { max-width: 100%; display: block; }
h1, h2, h3, h4, h5, h6 { font-family: "Sora", sans-serif; line-height: 1.15; }

.site-header {
    position: sticky;
    top: 0;
    z-index: 1030;
    background: rgba(255, 255, 255, 0.94);
    backdrop-filter: blur(16px);
    border-bottom: 1px solid rgba(13, 59, 102, 0.08);
}
.navbar { padding: 16px 0; }
.navbar-brand { color: var(--brand-ink); }
.navbar-brand small { display: block; color: var(--brand-muted); font-size: 12px; }
.brand-mark {
    width: 44px;
    height: 44px;
    border-radius: 14px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(145deg, var(--brand-blue), var(--brand-navy));
    color: white;
}
.brand-logo-image {
    width: 54px;
    height: 54px;
    border-radius: 16px;
    overflow: hidden;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: white;
    border: 1px solid rgba(13, 59, 102, 0.08);
    box-shadow: 0 10px 24px rgba(13, 59, 102, 0.12);
}
.brand-logo-image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    padding: 5px;
}
.nav-link { color: var(--brand-ink); font-weight: 600; }
.nav-link:hover { color: var(--brand-blue); }
.btn {
    border-radius: 14px;
    padding: 12px 18px;
    font-weight: 700;
    border: 0;
}
.btn-primary-main {
    background: linear-gradient(135deg, var(--brand-orange), var(--brand-orange-dark));
    color: white;
    box-shadow: 0 12px 28px rgba(255, 139, 43, 0.28);
}
.btn-primary-main:hover { color: white; }
.btn-whatsapp {
    background: var(--brand-cream);
    color: var(--brand-blue);
    border: 1px solid rgba(23, 105, 170, 0.12);
}
.btn-whatsapp:hover { color: var(--brand-blue); }
.btn-call {
    background: var(--brand-cream);
    color: var(--brand-blue);
    border: 1px solid rgba(23, 105, 170, 0.12);
}
.btn-light-action {
    background: white;
    color: var(--brand-blue);
}

.eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 12px;
    border-radius: 999px;
    background: rgba(23, 105, 170, 0.08);
    color: var(--brand-blue);
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.hero-section, .inner-hero {
    padding: 76px 0 56px;
    background:
        radial-gradient(circle at top left, rgba(23, 105, 170, 0.18), transparent 32%),
        linear-gradient(180deg, #f5f9ff 0%, #ffffff 100%);
}
.hero-section h1, .inner-hero h1 { font-size: clamp(2.2rem, 5vw, 4rem); margin: 18px 0 16px; }
.hero-copy, .inner-hero p { color: var(--brand-muted); font-size: 1.05rem; max-width: 640px; }
.hero-actions, .hero-badges { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 24px; }
.hero-badges span {
    padding: 10px 12px;
    border-radius: 999px;
    background: white;
    border: 1px solid var(--brand-border);
    font-weight: 700;
    font-size: 14px;
}
.hero-media img, .service-detail-hero img {
    border-radius: 28px;
    box-shadow: var(--brand-shadow);
}
.hero-carousel {
    position: relative;
    border-radius: 30px;
    overflow: hidden;
    box-shadow: var(--brand-shadow);
}
.hero-carousel .carousel-item {
    position: relative;
}
.hero-carousel .carousel-item::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(8, 28, 51, 0.04) 0%, rgba(8, 28, 51, 0.58) 100%);
}
.hero-carousel .carousel-item img {
    width: 100%;
    height: 540px;
    object-fit: cover;
    border-radius: 0;
    box-shadow: none;
}
.hero-carousel .carousel-item.fit-contain img {
    object-fit: contain;
    background: #050b14;
}
.hero-slide-caption {
    position: absolute;
    left: 28px;
    right: 28px;
    bottom: 26px;
    z-index: 2;
    padding: 20px 22px;
    border-radius: 24px;
    background: rgba(255, 255, 255, 0.14);
    border: 1px solid rgba(255, 255, 255, 0.18);
    backdrop-filter: blur(12px);
    color: white;
}
.hero-slide-caption span {
    display: inline-block;
    margin-bottom: 8px;
    padding: 6px 10px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.16);
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}
.hero-slide-caption strong {
    display: block;
    font-family: "Sora", sans-serif;
    font-size: clamp(1.2rem, 3vw, 1.8rem);
    margin-bottom: 8px;
}
.hero-slide-caption p {
    margin: 0;
    color: rgba(255, 255, 255, 0.9);
}
.hero-indicators {
    margin-bottom: 14px;
}
.hero-indicators [data-bs-target] {
    width: 10px;
    height: 10px;
    border-radius: 999px;
    border: 0;
    opacity: 1;
    background: rgba(255, 255, 255, 0.35);
}
.hero-indicators .active {
    width: 32px;
    background: white;
}
.hero-control {
    width: 52px;
    height: 52px;
    top: 20px;
    bottom: auto;
    opacity: 1;
    background: rgba(255, 255, 255, 0.14);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 18px;
}
.hero-control.carousel-control-prev { left: auto; right: 82px; }
.hero-control.carousel-control-next { right: 20px; }
.hero-control .carousel-control-prev-icon,
.hero-control .carousel-control-next-icon {
    width: 1.2rem;
    height: 1.2rem;
}

.section-space { padding: 72px 0; }
.muted-section { background: #eef5fd; }
.section-heading { max-width: 700px; margin-bottom: 32px; }
.section-heading h2 { margin-top: 16px; }

.service-card, .benefit-card, .testimonial-card, .booking-card, .contact-panel, .map-card, .metric-card, .detail-panel, .admin-card, .admin-stat-card {
    background: white;
    border: 1px solid rgba(13, 59, 102, 0.08);
    border-radius: 28px;
    box-shadow: var(--brand-shadow);
}
.service-card { overflow: hidden; height: 100%; }
.service-card img { width: 100%; height: 230px; object-fit: cover; }
.service-card-body { padding: 24px; }
.service-card h3, .service-card h2 { font-size: 1.3rem; margin-bottom: 12px; }
.service-card p, .benefit-card p, .testimonial-card p, .booking-card p, .contact-panel p, .metric-card p, .detail-panel p { color: var(--brand-muted); }
.service-card a { color: var(--brand-blue); font-weight: 800; }

.benefit-card, .testimonial-card, .metric-card, .detail-panel, .booking-card, .contact-panel { padding: 28px; height: 100%; }
.map-card {
    margin-top: 24px;
    overflow: hidden;
    position: relative;
    z-index: 1;
}
.benefit-icon {
    width: 56px; height: 56px; border-radius: 18px;
    display: inline-flex; align-items: center; justify-content: center;
    background: rgba(255, 139, 43, 0.12); color: var(--brand-orange-dark);
    font-size: 1.3rem; margin-bottom: 18px;
}
.brand-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
    gap: 16px;
}
.brand-pill {
    min-height: 84px;
    padding: 18px;
    border-radius: 20px;
    background: white;
    border: 1px solid var(--brand-border);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    color: var(--brand-blue);
}

.process-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 18px;
}
.process-card {
    padding: 24px;
    border-radius: 24px;
    background: linear-gradient(180deg, #ffffff 0%, #f3f8fd 100%);
    border: 1px solid var(--brand-border);
}
.process-count {
    width: 42px; height: 42px; border-radius: 14px; margin-bottom: 18px;
    display: inline-flex; align-items: center; justify-content: center;
    background: var(--brand-blue); color: white; font-weight: 800;
}

.trust-section {
    background:
        radial-gradient(circle at top right, rgba(255, 139, 43, 0.12), transparent 34%),
        linear-gradient(180deg, #ffffff 0%, #f8fbff 100%);
}
.trust-metrics {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 14px;
    margin-top: 28px;
}
.trust-metric {
    padding: 18px;
    border-radius: 20px;
    background: white;
    border: 1px solid rgba(13, 59, 102, 0.08);
    box-shadow: var(--brand-shadow);
}
.trust-metric strong {
    display: block;
    font-family: "Sora", sans-serif;
    font-size: 1.35rem;
    margin-bottom: 6px;
}
.trust-metric span { color: var(--brand-muted); font-size: 0.92rem; }
.testimonial-top { display: flex; gap: 16px; align-items: center; margin-bottom: 16px; }
.testimonial-top img { width: 64px; height: 64px; border-radius: 20px; object-fit: cover; }
.rating { color: #f7b731; }
.testimonial-card.featured {
    min-height: 100%;
    background: linear-gradient(180deg, #ffffff 0%, #f8fbff 100%);
}
.testimonial-card.featured p {
    font-size: 1.02rem;
}

.faq-accordion .accordion-item {
    border: 1px solid var(--brand-border);
    border-radius: 18px !important;
    overflow: hidden;
    margin-bottom: 14px;
}
.faq-accordion .accordion-button { font-weight: 700; }

.booking-card .form-control, .booking-card .form-select,
.admin-card .form-control, .admin-card .form-select {
    border-radius: 14px;
    border-color: #d6e2ee;
    min-height: 48px;
}
.form-response { font-weight: 700; }
.form-response.error { color: #dc3545; }
.form-response.success { color: #198754; }

.footer-cta { padding: 0 0 32px; }
.footer-cta-card {
    background: linear-gradient(135deg, var(--brand-navy), var(--brand-blue));
    color: white;
    border-radius: 32px;
    padding: 32px;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 20px;
    box-shadow: var(--brand-shadow);
}
.footer-cta-card.alt { margin-top: 8px; }
.footer-cta-card p { max-width: 620px; color: rgba(255,255,255,0.82); }

.site-footer {
    background: #081c33;
    color: rgba(255,255,255,0.8);
    padding: 48px 0 96px;
}
.site-footer h5, .site-footer h6 { color: white; }
.footer-links { padding: 0; list-style: none; margin: 0; }
.footer-links li { margin-bottom: 10px; }
.footer-links a { color: rgba(255,255,255,0.82); }

.floating-actions {
    position: fixed;
    right: 16px;
    bottom: 16px;
    z-index: 1040;
    display: flex;
    flex-direction: column;
    gap: 12px;
}
.floating-actions a {
    width: 64px;
    height: 64px;
    border-radius: 22px;
    color: white;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    font-weight: 800;
    box-shadow: var(--brand-shadow);
}
.floating-call { background: linear-gradient(135deg, var(--brand-orange), var(--brand-orange-dark)); }
.floating-wa { background: #25d366; }

.check-stack ul, .chip-list, .contact-list { list-style: none; padding: 0; margin: 0; }
.check-stack li, .contact-list li {
    padding: 12px 0;
    color: var(--brand-muted);
    border-bottom: 1px solid rgba(13, 59, 102, 0.08);
}
.contact-list li { display: flex; gap: 14px; align-items: flex-start; }
.contact-list a { color: var(--brand-blue); }
.contact-map-feature {
    display: grid;
    grid-template-columns: minmax(260px, 340px) 1fr;
    gap: 24px;
    align-items: stretch;
}
.contact-map-copy,
.contact-map-large {
    background: white;
    border: 1px solid rgba(13, 59, 102, 0.08);
    border-radius: 28px;
    box-shadow: var(--brand-shadow);
}
.contact-map-copy {
    padding: 28px;
}
.contact-map-copy p {
    color: var(--brand-muted);
    margin: 12px 0 20px;
}
.contact-map-large {
    overflow: hidden;
}
.contact-map-large iframe,
.map-card iframe {
    display: block;
    border: 0;
    width: 100%;
}
.chip-list { display: flex; flex-wrap: wrap; gap: 12px; }
.chip-list li {
    padding: 12px 14px;
    border-radius: 14px;
    background: #f5f9ff;
    border: 1px solid var(--brand-border);
    font-weight: 700;
}
.breadcrumb-wrap {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 20px;
    color: var(--brand-muted);
}
.mini-service-card {
    display: block;
    overflow: hidden;
    border-radius: 24px;
    background: white;
    border: 1px solid rgba(13, 59, 102, 0.08);
    box-shadow: var(--brand-shadow);
}
.mini-service-card img { height: 180px; width: 100%; object-fit: cover; }
.mini-service-card strong { display: block; padding: 18px; color: var(--brand-ink); }

.admin-body {
    background:
        radial-gradient(circle at top right, rgba(23, 105, 170, 0.1), transparent 26%),
        linear-gradient(180deg, #edf3fb 0%, #f7faff 100%);
    font-family: "Manrope", sans-serif;
}
.admin-shell { display: grid; grid-template-columns: 280px 1fr; min-height: 100vh; }
.admin-sidebar {
    background: linear-gradient(180deg, #0d2543 0%, #102f52 100%);
    padding: 28px 22px;
    color: white;
    position: sticky;
    top: 0;
    height: 100vh;
}
.admin-brand {
    display: flex; align-items: center; gap: 12px;
    color: white; font-weight: 800; margin-bottom: 24px;
}
.admin-brand strong { display: block; }
.admin-brand small { display: block; color: rgba(255,255,255,0.68); font-size: 12px; }
.admin-brand-mark {
    width: 48px;
    height: 48px;
    border-radius: 16px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: rgba(255,255,255,0.12);
    border: 1px solid rgba(255,255,255,0.12);
    box-shadow: inset 0 0 0 1px rgba(255,255,255,0.04);
}
.admin-brand-logo {
    overflow: hidden;
    background: rgba(255,255,255,0.96);
}
.admin-brand-logo img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    padding: 5px;
}
.admin-nav { display: grid; gap: 10px; }
.admin-nav a {
    padding: 12px 14px; border-radius: 14px;
    color: rgba(255,255,255,0.85);
    transition: all 0.2s ease;
}
.admin-nav a:hover { background: rgba(255,255,255,0.08); color: white; }
.admin-nav a.active {
    background: rgba(255,255,255,0.14);
    color: white;
    box-shadow: inset 0 0 0 1px rgba(255,255,255,0.08);
}
.admin-main { padding: 32px; }
.admin-page-title { font-family: "Sora", sans-serif; margin-bottom: 6px; }
.admin-card {
    padding: 24px;
    background: rgba(255,255,255,0.94);
    backdrop-filter: blur(10px);
}
.admin-stat-card {
    padding: 24px;
    position: relative;
    overflow: hidden;
}
.admin-stat-card span { color: var(--brand-muted); display: block; margin-bottom: 8px; }
.admin-stat-card strong { font-size: 2rem; font-family: "Sora", sans-serif; }
.admin-stat-icon {
    width: 52px;
    height: 52px;
    border-radius: 18px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 18px;
    font-size: 1.15rem;
    color: white;
}
.admin-stat-card.accent-blue .admin-stat-icon { background: linear-gradient(135deg, #1769aa, #0d3b66); }
.admin-stat-card.accent-orange .admin-stat-icon { background: linear-gradient(135deg, #ff8b2b, #ef6c08); }
.admin-stat-card.accent-gold .admin-stat-icon { background: linear-gradient(135deg, #f7b731, #d99610); }
.admin-stat-card.accent-green .admin-stat-icon { background: linear-gradient(135deg, #2fbf71, #19965a); }
.admin-hero-card {
    padding: 28px 30px;
    border-radius: 30px;
    color: white;
    background:
        radial-gradient(circle at top right, rgba(255,255,255,0.18), transparent 28%),
        linear-gradient(135deg, #0d3b66 0%, #1769aa 100%);
    box-shadow: var(--brand-shadow);
    display: flex;
    justify-content: space-between;
    gap: 20px;
    align-items: flex-end;
    flex-wrap: wrap;
}
.admin-hero-card p { max-width: 640px; color: rgba(255,255,255,0.82); }
.admin-inline-link {
    color: var(--brand-blue);
    font-weight: 800;
}
.admin-card .table > :not(caption) > * > * {
    padding-top: 0.95rem;
    padding-bottom: 0.95rem;
}
.admin-card .table thead th {
    color: var(--brand-muted);
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.04em;
}
.admin-auth-wrap {
    min-height: 100vh; display: flex; align-items: center; justify-content: center;
    padding: 24px;
}
.admin-login-card {
    width: 100%;
    max-width: 460px;
    background: white;
    border-radius: 28px;
    padding: 32px;
    box-shadow: var(--brand-shadow);
    border: 1px solid rgba(13, 59, 102, 0.08);
}

.booking-detail-card { max-width: 980px; }
.booking-detail-header {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    align-items: flex-start;
    justify-content: space-between;
    padding-bottom: 20px;
    border-bottom: 1px solid rgba(13, 59, 102, 0.08);
}
.booking-status-pill {
    padding: 10px 14px;
    border-radius: 999px;
    background: #edf5ff;
    color: var(--brand-blue);
    font-weight: 800;
}
.booking-info-block {
    height: 100%;
    padding: 20px;
    border-radius: 20px;
    background: #f8fbff;
    border: 1px solid var(--brand-border);
}
.booking-info-block h3 {
    font-family: "Manrope", sans-serif;
    font-size: 1rem;
    margin-bottom: 14px;
}
.booking-info-block ul {
    list-style: none;
    padding: 0;
    margin: 0;
}
.booking-info-block li {
    padding: 8px 0;
    border-bottom: 1px solid rgba(13, 59, 102, 0.08);
}
.booking-info-block li:last-child { border-bottom: 0; }
.booking-status-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
    gap: 16px;
}
.booking-status-card {
    background: white;
    border: 1px solid rgba(13, 59, 102, 0.08);
    border-radius: 20px;
    box-shadow: var(--brand-shadow);
    padding: 18px 20px;
}
.booking-status-card span {
    display: block;
    color: var(--brand-muted);
    margin-bottom: 6px;
    font-size: 0.9rem;
}
.booking-status-card strong {
    font-family: "Sora", sans-serif;
    font-size: 1.6rem;
}
.settings-media-preview {
    padding: 14px;
    border-radius: 16px;
    background: #f8fbff;
    border: 1px solid var(--brand-border);
}
.settings-media-preview img {
    width: 100%;
    max-width: 180px;
    height: 100px;
    object-fit: cover;
    border-radius: 12px;
    margin-bottom: 8px;
}
.settings-media-preview small {
    display: block;
    color: var(--brand-muted);
    word-break: break-all;
}
.settings-helper-row {
    display: flex;
    justify-content: space-between;
    gap: 12px;
    margin-top: 8px;
}
.settings-counter {
    color: var(--brand-blue);
    font-weight: 800;
}
.settings-social-preview {
    padding: 18px;
    border-radius: 20px;
    background: linear-gradient(180deg, #f8fbff 0%, #eef5fd 100%);
    border: 1px solid var(--brand-border);
}
.settings-social-card {
    margin-top: 16px;
    overflow: hidden;
    border-radius: 18px;
    background: white;
    border: 1px solid rgba(13, 59, 102, 0.08);
}
.settings-social-image-wrap {
    aspect-ratio: 1.91 / 1;
    background: #dfeaf7;
}
.settings-social-image-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.settings-social-body {
    padding: 16px;
}
.settings-social-body small {
    display: block;
    color: var(--brand-muted);
    margin-bottom: 8px;
    text-transform: uppercase;
    letter-spacing: 0.04em;
}
.settings-social-body strong {
    display: block;
    font-family: "Sora", sans-serif;
    margin-bottom: 8px;
}
.settings-social-body p {
    margin: 0;
    color: var(--brand-muted);
}

@media print {
    .admin-sidebar,
    .no-print,
    .alert {
        display: none !important;
    }

    .admin-shell {
        display: block;
    }

    .admin-main {
        padding: 0;
        background: white;
    }

    .admin-card,
    .booking-info-block {
        box-shadow: none;
        border-color: #d7dfea;
    }

    body.admin-body {
        background: white;
    }
}

@media (max-width: 991.98px) {
    .admin-shell { grid-template-columns: 1fr; }
    .admin-sidebar { position: relative; height: auto; }
    .section-space { padding: 56px 0; }
    .floating-actions a { width: 56px; height: 56px; border-radius: 18px; }
    .contact-map-feature { grid-template-columns: 1fr; }
    .trust-metrics { grid-template-columns: 1fr; }
    .admin-hero-card { align-items: flex-start; }
    .hero-carousel .carousel-item img { height: 420px; }
    .hero-control {
        width: 44px;
        height: 44px;
        top: 16px;
        border-radius: 14px;
    }
    .hero-control.carousel-control-prev { right: 68px; }
    .hero-slide-caption {
        left: 18px;
        right: 18px;
        bottom: 18px;
        padding: 18px;
    }
}
