:root {
    --dark: #26262b;
    --dark-2: #1c1c20;
    --charcoal: #33333a;
    --gold: #c9a24b;
    --gold-light: #e0c078;
    --gold-dark: #a8862f;
    --muted: #6c6c74;
    --light: #f6f5f2;
    --border: #e7e4dd;
}

* { scroll-behavior: smooth; }

body {
    font-family: 'Inter', system-ui, -apple-system, sans-serif;
    color: #2b2b30;
    background: #ffffff;
    line-height: 1.6;
}

h1, h2, h3, h4, h5, .brand-name {
    font-family: 'Playfair Display', serif;
    font-weight: 700;
    color: var(--dark);
}

a { text-decoration: none; }

.text-gold { color: var(--gold) !important; }
.bg-dark-theme { background: var(--dark) !important; }

/* ---------- Buttons ---------- */
.btn-gold {
    background: var(--gold);
    color: #1c1c20;
    font-weight: 600;
    border: none;
    padding: .6rem 1.4rem;
    border-radius: 6px;
    transition: all .25s ease;
}
.btn-gold:hover { background: var(--gold-dark); color: #fff; transform: translateY(-2px); }

.btn-outline-gold {
    border: 2px solid var(--gold);
    color: var(--gold);
    font-weight: 600;
    padding: .55rem 1.4rem;
    border-radius: 6px;
    background: transparent;
    transition: all .25s ease;
}
.btn-outline-gold:hover { background: var(--gold); color: #1c1c20; }

.btn-outline-light-gold {
    border: 2px solid rgba(255,255,255,.4);
    color: #fff;
    font-weight: 600;
    padding: .55rem 1.4rem;
    border-radius: 6px;
    background: transparent;
    transition: all .25s ease;
}
.btn-outline-light-gold:hover { background: #fff; color: var(--dark); }

/* ---------- Topbar ---------- */
.topbar {
    background: var(--dark-2);
    color: #cfcfd4;
    font-size: .85rem;
    padding: .5rem 0;
}
.topbar a { color: #cfcfd4; transition: color .2s; }
.topbar a:hover { color: var(--gold-light); }
.topbar-social a { font-size: 1rem; }

/* ---------- Navbar ---------- */
.main-nav {
    background: #fff;
    box-shadow: 0 2px 14px rgba(0,0,0,.07);
    padding: .5rem 0;
}
.brand-logo { height: 52px; width: 52px; object-fit: cover; border-radius: 50%; }
.footer-logo { height: 48px; width: 48px; object-fit: cover; border-radius: 50%; }
.brand-text { display: flex; flex-direction: column; line-height: 1.1; }
.brand-name { font-size: 1.25rem; color: var(--dark); }
.brand-sub { font-size: .68rem; letter-spacing: 2px; text-transform: uppercase; color: var(--gold-dark); font-weight: 600; }
.main-nav .nav-link { color: var(--dark); font-weight: 600; margin: 0 .35rem; position: relative; }
.main-nav .nav-link.active, .main-nav .nav-link:hover { color: var(--gold-dark); }
.main-nav .nav-link.active::after {
    content: ""; position: absolute; left: .35rem; right: .35rem; bottom: -2px; height: 2px; background: var(--gold);
}

/* ---------- Hero / Carousel ---------- */
.hero-carousel .carousel-item {
    height: 78vh;
    min-height: 460px;
    background-size: cover;
    background-position: center;
    position: relative;
}
.hero-carousel .carousel-item::before {
    content: ""; position: absolute; inset: 0;
    background: linear-gradient(90deg, rgba(20,20,24,.92) 0%, rgba(20,20,24,.72) 45%, rgba(20,20,24,.30) 100%);
}
.hero-content { position: relative; z-index: 2; max-width: 620px; }
.hero-content .eyebrow {
    color: var(--gold-light); letter-spacing: 3px; text-transform: uppercase; font-weight: 600; font-size: .8rem;
}
.hero-content h1 { color: #fff; font-size: clamp(1.9rem, 4vw, 3.1rem); line-height: 1.15; margin: .6rem 0 1rem; }
.hero-content p { color: #dcdce0; font-size: 1.05rem; margin-bottom: 1.6rem; }
.hero-carousel .carousel-indicators [data-bs-target] { width: 34px; height: 4px; border-radius: 2px; }
.hero-carousel .carousel-control-prev, .hero-carousel .carousel-control-next { width: 6%; z-index: 3; }

/* ---------- Sections ---------- */
.section { padding: 5rem 0; }
.section-sm { padding: 3.5rem 0; }
.section-title { position: relative; margin-bottom: 1rem; }
.eyebrow-line { color: var(--gold-dark); letter-spacing: 3px; text-transform: uppercase; font-weight: 700; font-size: .82rem; }
.section-head h2 { font-size: clamp(1.7rem, 3vw, 2.4rem); }
.section-head p { color: var(--muted); max-width: 640px; }
.bg-light-soft { background: var(--light); }
.divider-gold { width: 64px; height: 3px; background: var(--gold); border-radius: 2px; }

/* ---------- Intro / stats ---------- */
.intro-img { border-radius: 12px; box-shadow: 0 18px 45px rgba(0,0,0,.15); }
.stat-box { border-left: 3px solid var(--gold); padding-left: 1rem; }
.stat-box .num { font-family: 'Playfair Display', serif; font-size: 2rem; font-weight: 800; color: var(--dark); }
.stat-box .lbl { color: var(--muted); font-size: .9rem; }
.check-list { list-style: none; padding: 0; margin: 0; }
.check-list li { padding: .35rem 0 .35rem 1.9rem; position: relative; color: #3a3a40; }
.check-list li::before {
    content: "\F26E"; font-family: "bootstrap-icons"; position: absolute; left: 0; top: .35rem; color: var(--gold-dark);
}

/* ---------- Service Cards ---------- */
.service-card {
    background: #fff; border: 1px solid var(--border); border-radius: 12px; padding: 2rem 1.6rem; height: 100%;
    transition: all .3s ease;
}
.service-card:hover { transform: translateY(-6px); box-shadow: 0 18px 40px rgba(0,0,0,.12); border-color: var(--gold); }
.service-icon {
    width: 62px; height: 62px; border-radius: 12px; display: grid; place-items: center;
    background: linear-gradient(135deg, var(--dark), var(--charcoal)); color: var(--gold-light); font-size: 1.6rem; margin-bottom: 1.1rem;
}
.service-card h4 { font-size: 1.25rem; margin-bottom: .5rem; }
.service-card .mini-list { list-style: none; padding: 0; margin: .8rem 0 1.2rem; }
.service-card .mini-list li { padding: .2rem 0; color: #55555c; font-size: .92rem; }
.service-card .mini-list li i { color: var(--gold-dark); margin-right: .4rem; }

/* ---------- Feature grid image block ---------- */
.feature-block { background: var(--light); border-radius: 16px; overflow: hidden; }
.feature-img { height: 100%; min-height: 340px; background-size: cover; background-position: center; }
.feature-item { display: flex; gap: .9rem; margin-bottom: 1.3rem; }
.feature-item .fi-icon {
    flex: 0 0 46px; height: 46px; width: 46px; border-radius: 10px; background: #fff; border: 1px solid var(--border);
    display: grid; place-items: center; color: var(--gold-dark); font-size: 1.2rem;
}
.feature-item h5 { font-size: 1.05rem; margin-bottom: .2rem; }
.feature-item p { color: var(--muted); font-size: .9rem; margin: 0; }

/* ---------- Why choose ---------- */
.why-section { background: var(--dark); color: #dedee2; }
.why-section h2, .why-section h5 { color: #fff; }
.why-card { background: rgba(255,255,255,.04); border: 1px solid rgba(255,255,255,.09); border-radius: 12px; padding: 1.6rem; height: 100%; transition: all .3s; }
.why-card:hover { background: rgba(201,162,75,.12); border-color: var(--gold); }
.why-card .wc-icon { color: var(--gold-light); font-size: 2rem; margin-bottom: .8rem; }
.why-card p { color: #b9b9c0; font-size: .92rem; margin: 0; }
.why-img { border-radius: 12px; box-shadow: 0 18px 45px rgba(0,0,0,.4); }

/* ---------- Reviews / Testimonials ---------- */
.review-card { background: #fff; border: 1px solid var(--border); border-radius: 12px; padding: 1.8rem; height: 100%; }
.review-card .stars { color: var(--gold); margin-bottom: .8rem; }
.review-card p { color: #45454c; font-style: italic; }
.review-person { display: flex; align-items: center; gap: .8rem; margin-top: 1.2rem; }
.review-avatar { width: 48px; height: 48px; border-radius: 50%; background: linear-gradient(135deg, var(--gold), var(--gold-dark)); color: #1c1c20; display: grid; place-items: center; font-weight: 700; font-family: 'Playfair Display', serif; }
.review-person .name { font-weight: 700; color: var(--dark); font-size: .95rem; }
.review-person .role { color: var(--muted); font-size: .82rem; }

/* ---------- CTA / Enquiry band ---------- */
.enquiry-band {
    background: linear-gradient(90deg, var(--dark) 0%, var(--charcoal) 100%);
    color: #fff; border-radius: 16px; padding: 3rem;
}
.enquiry-band h2 { color: #fff; }
.enquiry-band p { color: #cfcfd4; }

/* ---------- Page banner ---------- */
.page-banner {
    background: linear-gradient(rgba(20,20,24,.82), rgba(20,20,24,.82)), var(--dark);
    color: #fff; padding: 4.5rem 0; text-align: center;
}
.page-banner h1 { color: #fff; font-size: clamp(2rem, 4vw, 3rem); }
.page-banner .breadcrumb { justify-content: center; }
.page-banner .breadcrumb a { color: var(--gold-light); }
.page-banner .breadcrumb-item.active { color: #cfcfd4; }
.page-banner .breadcrumb-item + .breadcrumb-item::before { color: #8a8a90; }

/* ---------- Contact ---------- */
.contact-info-card { background: var(--dark); color: #dedee2; border-radius: 12px; padding: 2rem; height: 100%; }
.contact-info-card h3 { color: #fff; }
.contact-info-card .ci-item { display: flex; gap: .9rem; margin-bottom: 1.3rem; }
.contact-info-card .ci-item i { color: var(--gold-light); font-size: 1.25rem; margin-top: .2rem; }
.contact-info-card a { color: #dedee2; }
.contact-info-card a:hover { color: var(--gold-light); }
.form-control, .form-select { border-radius: 8px; padding: .7rem .9rem; border: 1px solid var(--border); }
.form-control:focus, .form-select:focus { border-color: var(--gold); box-shadow: 0 0 0 .2rem rgba(201,162,75,.18); }
.form-label { font-weight: 600; color: var(--dark); font-size: .9rem; }
.map-frame { border: 0; width: 100%; height: 340px; border-radius: 12px; }

/* ---------- Footer ---------- */
.site-footer { background: var(--dark-2); color: #b7b7be; padding-top: 3.5rem; }
.footer-text { font-size: .92rem; color: #9c9ca4; }
.footer-title { color: #fff; font-family: 'Inter', sans-serif; font-weight: 700; font-size: 1.05rem; margin-bottom: 1.1rem; }
.footer-links, .footer-contact { list-style: none; padding: 0; margin: 0; }
.footer-links li { margin-bottom: .55rem; }
.footer-links a { color: #b7b7be; transition: color .2s; }
.footer-links a:hover, .footer-contact a:hover { color: var(--gold-light); }
.footer-contact li { display: flex; gap: .7rem; margin-bottom: .9rem; font-size: .92rem; }
.footer-contact i { color: var(--gold-light); margin-top: .2rem; }
.footer-contact a { color: #b7b7be; }
.footer-social a, .topbar-social a { color: #cfcfd4; }
.footer-social a { width: 36px; height: 36px; border-radius: 50%; border: 1px solid rgba(255,255,255,.18); display: inline-grid; place-items: center; transition: all .25s; }
.footer-social a:hover { background: var(--gold); color: #1c1c20; border-color: var(--gold); }
.footer-bottom { border-top: 1px solid rgba(255,255,255,.08); margin-top: 3rem; padding: 1.2rem 0; font-size: .85rem; color: #8a8a92; }

/* ---------- Floating call button ---------- */
.float-call {
    position: fixed; right: 18px; bottom: 18px; z-index: 999;
    width: 54px; height: 54px; border-radius: 50%; background: var(--gold); color: #1c1c20;
    display: grid; place-items: center; font-size: 1.4rem; box-shadow: 0 8px 20px rgba(0,0,0,.3);
}

/* ---------- Alerts ---------- */
.alert-success-custom { background: #e8f5e9; border: 1px solid #b7e0bb; color: #2e7d32; border-radius: 8px; }
.alert-error-custom { background: #fdecea; border: 1px solid #f5c2c0; color: #c62828; border-radius: 8px; }

/* ---------- Responsive ---------- */
@media (max-width: 991px) {
    .main-nav .navbar-nav { padding-top: .8rem; }
    .hero-carousel .carousel-item { height: auto; min-height: 520px; padding: 4rem 0; }
    .enquiry-band { padding: 2rem; text-align: center; }
}
