/* ===================================================================
   AHAS INTER BIZ PROJECTS LTD — Corporate Stylesheet
   General Construction & Electrification Company, Abuja, Nigeria
   Layered on top of the base template (loaded last)
   Brand palette: Red / Black / White
=================================================================== */

/* ---------------- Fonts ---------------- */
@import url('https://fonts.googleapis.com/css2?family=Barlow+Condensed:wght@500;600;700&family=Jost:wght@300;400;500;600;700&display=swap');

/* ---------------- Design Tokens ---------------- */
:root {
    --gold: #D5202A;          /* Ahas red — primary accent */
    --gold-light: #ee4b53;    /* lighter red */
    --gold-dark: #a5121a;     /* deep red */
    --ink: #161616;           /* near-black — brand black */
    --charcoal: #232323;
    --cream: #f6f6f7;         /* light neutral */
    --sand: #e9e9ec;
    --muted: #5b6675;
    --line: rgba(213, 32, 42, 0.22);
    --shadow-sm: 0 8px 24px rgba(20, 17, 13, 0.08);
    --shadow-md: 0 18px 50px rgba(20, 17, 13, 0.14);
    --shadow-lg: 0 30px 80px rgba(20, 17, 13, 0.22);
    --ease: cubic-bezier(0.25, 0.8, 0.25, 1);
    --serif: 'Barlow Condensed', 'Jost', sans-serif;   /* industrial display face for headings */
    --sans: 'Jost', 'Helvetica Neue', sans-serif;
}

/* ---------------- Global ---------------- */
body {
    font-family: var(--sans);
    color: #46505f;
    font-size: 16px;
    line-height: 1.8;
    letter-spacing: 0.2px;
    overflow-x: hidden;
    background: #fff;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--serif);
    color: var(--ink);
    font-weight: 600;
    letter-spacing: 0.4px;
}

a { transition: all .35s var(--ease); }

::selection { background: var(--gold); color: #fff; }

img { max-width: 100%; }

/* Section title refinements */
.section-title { margin-bottom: 50px; }
.section-title span {
    color: var(--gold);
    font-family: var(--sans);
    font-weight: 600;
    font-size: 13px;
    letter-spacing: 4px;
    text-transform: uppercase;
    position: relative;
    display: inline-block;
    padding-left: 0;
    margin-bottom: 14px;
}
.section-title span:before {
    content: "";
    display: inline-block;
    width: 26px;
    height: 2px;
    background: var(--gold);
    vertical-align: middle;
    margin-right: 12px;
}
.section-title.text-center span:after {
    content: "";
    display: inline-block;
    width: 26px;
    height: 2px;
    background: var(--gold);
    vertical-align: middle;
    margin-left: 12px;
}
.section-title h2 {
    font-size: 46px;
    line-height: 1.15;
    color: var(--ink);
    font-weight: 600;
    margin-bottom: 0;
}
.section-title p { margin-top: 16px; color: var(--muted); }

/* ---------------- Premium Buttons ---------------- */
.primary-btn, .st-btn {
    display: inline-block;
    font-family: var(--sans);
    font-weight: 600;
    font-size: 13px;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: #fff;
    background: linear-gradient(120deg, var(--gold-dark), var(--gold));
    padding: 17px 40px;
    border: none;
    border-radius: 2px;
    position: relative;
    overflow: hidden;
    z-index: 1;
    box-shadow: 0 12px 30px rgba(176, 126, 34, 0.3);
    transition: all .4s var(--ease);
}
.primary-btn:after { display: none; }
.primary-btn:before, .st-btn:before {
    content: "";
    position: absolute;
    top: 0; left: -120%;
    width: 100%; height: 100%;
    background: linear-gradient(120deg, transparent, rgba(255,255,255,0.45), transparent);
    transition: left .7s var(--ease);
    z-index: -1;
}
.primary-btn:hover, .st-btn:hover {
    color: #fff;
    transform: translateY(-3px);
    box-shadow: 0 20px 40px rgba(176, 126, 34, 0.42);
}
.primary-btn:hover:before, .st-btn:hover:before { left: 120%; }

.st-btn.outline {
    background: transparent;
    border: 1.5px solid rgba(255,255,255,0.65);
    box-shadow: none;
    color: #fff;
}
.st-btn.outline:hover {
    background: #fff;
    color: var(--ink);
    border-color: #fff;
}
.st-btn.dark {
    background: linear-gradient(120deg, #1a1a1a, var(--ink));
    box-shadow: 0 12px 30px rgba(20,20,20,0.25);
}

/* ---------------- Top Bar ---------------- */
.top-nav {
    background: var(--ink);
    padding: 9px 0;
    font-size: 13px;
}
.top-nav .tn-left li { color: #c3cedd; font-size: 13px; }
.top-nav .tn-left li i { color: var(--gold); }
.top-nav .tn-left li a:hover { color: var(--gold) !important; }
/* Top-bar social icons — footer style (circular, gold hover) */
.top-nav .tn-right .top-social { margin-right: 0; padding: 0; }
.top-nav .tn-right .top-social a,
.top-nav .top-social a {
    display: inline-block;
    width: 34px; height: 34px;
    line-height: 33px;
    text-align: center;
    border: 1px solid rgba(255,255,255,0.22);
    border-radius: 50%;
    color: #d7deea !important;
    font-size: 14px;
    margin: 0 0 0 7px;
    transition: all .35s var(--ease);
}
.top-nav .tn-right .top-social a:hover,
.top-nav .top-social a:hover {
    background: var(--gold);
    border-color: var(--gold);
    color: #fff !important;
    transform: translateY(-2px);
}
.top-nav .bk-btn {
    background: var(--gold);
    color: #fff;
    font-weight: 600;
    letter-spacing: 1px;
    font-size: 12px;
    text-transform: uppercase;
    padding: 8px 22px;
    border-radius: 2px;
}
.top-nav .bk-btn:hover { background: #fff; color: var(--ink); }

/* ---------------- Header / Nav ---------------- */
.header-section { position: relative; z-index: 999; }
.menu-item {
    background: #fff;
    box-shadow: 0 4px 24px rgba(20,20,20,0.06);
    transition: all .4s var(--ease);
}
.menu-item.is-sticky {
    position: fixed;
    top: 0; left: 0; width: 100%;
    z-index: 999;
    box-shadow: 0 8px 30px rgba(20,20,20,0.12);
    animation: slideDown .5s var(--ease);
}
@keyframes slideDown {
    from { transform: translateY(-100%); opacity: 0; }
    to { transform: translateY(0); opacity: 1; }
}

/* Image logo */
.st-logo { padding: 12px 0; display: inline-flex; align-items: center; line-height: 1; }
.st-logo img { height: 58px; width: auto; display: block; transition: transform .35s var(--ease); }
.st-logo:hover img { transform: scale(1.03); }

/* Compact premium nav — overrides template's higher-specificity li a rules */
.menu-item .nav-menu .mainmenu li { margin-right: 0; }
.menu-item .nav-menu .mainmenu li a {
    font-family: var(--sans);
    font-weight: 500;
    font-size: 15px;
    letter-spacing: 0.3px;
    color: #1a1a1a;
    text-transform: capitalize;
    margin-right: 30px;
    padding: 32px 0;
}
.menu-item .nav-menu .mainmenu li a:after {
    top: auto;
    bottom: 28px;
    background: var(--gold);
}
.menu-item .nav-menu .mainmenu li.active a:after,
.menu-item .nav-menu .mainmenu li:hover > a:after { opacity: 1; }
.menu-item .nav-menu .mainmenu li.active a,
.menu-item .nav-menu .mainmenu li:hover > a { color: var(--gold-dark); }
.menu-item .nav-menu .mainmenu li .dropdown li a { margin-right: 0; padding: 8px 20px; }

/* Nav book button (overrides template's higher-specificity li a rules) */
.menu-item .nav-menu .mainmenu li a.nav-book-btn,
.nav-book-btn {
    display: inline-block;
    background: linear-gradient(120deg, var(--gold-dark), var(--gold)) !important;
    color: #fff !important;
    font-weight: 600 !important;
    font-size: 13px !important;
    letter-spacing: 1px;
    text-transform: uppercase;
    padding: 12px 26px !important;
    margin-right: 0 !important;
    margin-left: 8px;
    border-radius: 3px;
    box-shadow: 0 10px 24px rgba(165,18,26,0.3);
    transition: all .35s var(--ease);
}
.nav-book-btn:after { display: none !important; }
.menu-item .nav-menu .mainmenu li a.nav-book-btn:hover,
.nav-book-btn:hover { transform: translateY(-3px); color: #fff !important; box-shadow: 0 16px 32px rgba(165,18,26,0.42); }

/* Admin dropdown in the main nav */
.menu-item .nav-menu .mainmenu li.sb-admin-dd > a .fa {
    font-size: 11px;
    margin-left: 5px;
    vertical-align: middle;
    color: var(--gold);
}
/* Sit the dropdown flush under the nav item (no hover gap). */
.menu-item .nav-menu .mainmenu li .dropdown,
.menu-item .nav-menu .mainmenu li:hover .dropdown {
    top: 100%;
    width: 190px;
    border-top: 2px solid var(--gold);
}
.menu-item .nav-menu .mainmenu li .dropdown li a {
    color: #1a1a1a;
    font-size: 14px;
    margin-right: 0;
    padding: 9px 20px;
}
.menu-item .nav-menu .mainmenu li .dropdown li a:after { display: none; }
.menu-item .nav-menu .mainmenu li .dropdown li a:hover { color: var(--gold-dark); padding-left: 24px; }

/* ---------------- Hero ---------------- */
.hero-section { position: relative; height: 100vh; min-height: 680px; overflow: hidden; }
.hero-slider, .hero-slider .owl-stage-outer, .hero-slider .owl-stage, .hero-slider .owl-item { height: 100vh; min-height: 680px; }
.hero-section .hs-item {
    height: 100vh;
    min-height: 680px;
    background-position: center;
    background-size: cover;
    position: relative;
    animation: zoomBg 9s ease forwards;
}
@keyframes zoomBg {
    from { transform: scale(1.12); }
    to { transform: scale(1); }
}
.hero-section .hs-item:before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(105deg, rgba(17,17,17,0.82) 0%, rgba(17,17,17,0.55) 45%, rgba(17,17,17,0.25) 100%);
}
.hero-content {
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    z-index: 5;
    display: flex;
    align-items: center;
}
.hero-content .container { width: 100%; }
.hero-text-box { max-width: 660px; width: 100%; }
.hero-text-box .eyebrow {
    color: var(--gold-light);
    font-family: var(--sans);
    letter-spacing: 5px;
    text-transform: uppercase;
    font-size: 13px;
    font-weight: 500;
    margin-bottom: 22px;
    display: block;
    opacity: 0;
    animation: heroUp .9s var(--ease) .3s forwards;
}
.hero-text-box h1 {
    color: #fff;
    font-size: 72px;
    line-height: 1.05;
    font-weight: 600;
    margin-bottom: 24px;
    opacity: 0;
    animation: heroUp 1s var(--ease) .5s forwards;
}
.hero-text-box h1 em { color: var(--gold-light); font-style: italic; }
.hero-text-box p {
    color: rgba(255,255,255,0.85);
    font-size: 18px;
    line-height: 1.8;
    margin-bottom: 36px;
    max-width: 540px;
    opacity: 0;
    animation: heroUp 1s var(--ease) .7s forwards;
}
.hero-actions {
    opacity: 0;
    animation: heroUp 1s var(--ease) .9s forwards;
}
.hero-actions .st-btn { margin-right: 16px; }
@keyframes heroUp {
    from { opacity: 0; transform: translateY(40px); }
    to { opacity: 1; transform: translateY(0); }
}
.hero-price-badge {
    margin-top: 40px;
    display: inline-flex;
    align-items: center;
    gap: 14px;
    opacity: 0;
    animation: heroUp 1s var(--ease) 1.1s forwards;
}
.hero-price-badge .amt { color: #fff; font-family: var(--serif); font-size: 34px; font-weight: 600; }
.hero-price-badge .amt span { font-size: 15px; color: var(--gold-light); font-family: var(--sans); }
.hero-price-badge .divider { width: 1px; height: 40px; background: rgba(255,255,255,0.25); }
.hero-price-badge .label { color: rgba(255,255,255,0.75); font-size: 13px; letter-spacing: 1px; text-transform: uppercase; }

.hero-slider .owl-dots {
    position: absolute;
    right: 60px; bottom: 50px;
    display: flex; gap: 10px;
}
.hero-slider .owl-dots .owl-dot span {
    width: 12px; height: 12px; margin: 0;
    background: transparent;
    border: 1.5px solid rgba(255,255,255,0.6);
}
.hero-slider .owl-dots .owl-dot.active span { background: var(--gold); border-color: var(--gold); }

.hero-scroll {
    position: absolute;
    left: 50%; bottom: 28px;
    transform: translateX(-50%);
    z-index: 6;
    color: rgba(255,255,255,0.7);
    font-size: 11px;
    letter-spacing: 3px;
    text-transform: uppercase;
    text-align: center;
    animation: bob 2s infinite;
}
.hero-scroll i { display: block; font-size: 20px; margin-top: 6px; }
@keyframes bob { 0%,100%{ transform: translateX(-50%) translateY(0);} 50%{ transform: translateX(-50%) translateY(8px);} }

/* ---------------- Quick Info Strip ---------------- */
.info-strip {
    background: var(--ink);
    margin-top: -1px;
}
.info-strip .row > div {
    padding: 38px 25px;
    border-right: 1px solid rgba(255,255,255,0.08);
    display: flex;
    align-items: center;
    gap: 18px;
}
.info-strip .row > div:last-child { border-right: none; }
.info-strip .ico {
    width: 52px; height: 52px;
    flex-shrink: 0;
    border: 1px solid var(--line);
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    color: var(--gold);
    font-size: 22px;
}
.info-strip h5 { color: #fff; font-family: var(--sans); font-size: 16px; font-weight: 600; margin: 0 0 2px; }
.info-strip p { color: #9aa6b5; font-size: 13px; margin: 0; }

/* ---------------- About ---------------- */
.aboutus-section .about-text .section-title { margin-bottom: 26px; }
.about-features { list-style: none; padding: 0; margin: 26px 0 32px; }
.about-features li {
    position: relative;
    padding-left: 34px;
    margin-bottom: 14px;
    color: #46505f;
    font-size: 15.5px;
}
.about-features li:before {
    content: "\e5ca";
    font-family: 'ElegantIcons';
    position: absolute;
    left: 0; top: 1px;
    width: 22px; height: 22px;
    background: var(--gold);
    color: #fff;
    border-radius: 50%;
    font-size: 13px;
    text-align: center;
    line-height: 22px;
}
.about-pic img {
    border-radius: 4px;
    box-shadow: var(--shadow-sm);
    transition: transform .6s var(--ease);
}
.about-pic .col-sm-6:first-child { margin-top: 30px; }
.about-pic img:hover { transform: translateY(-6px); }
.about-experience {
    position: absolute;
    left: 15px; bottom: -20px;
    background: linear-gradient(120deg, var(--gold-dark), var(--gold));
    color: #fff;
    padding: 22px 30px;
    border-radius: 4px;
    box-shadow: var(--shadow-md);
    text-align: center;
}
.about-experience .num { font-family: var(--serif); font-size: 42px; font-weight: 700; line-height: 1; }
.about-experience .txt { font-size: 12px; letter-spacing: 1.5px; text-transform: uppercase; }

/* ---------------- Premium About Collage ---------------- */
.about-collage { position: relative; padding: 18px 0 50px; }
.about-collage.left-pad { padding-left: 40px; }
.about-collage .ac-main {
    position: relative;
    overflow: hidden;
    border-radius: 12px;
    box-shadow: var(--shadow-md);
}
.about-collage .ac-main:before {
    content: "";
    position: absolute; inset: 0;
    background: linear-gradient(140deg, rgba(20,20,20,0) 55%, rgba(20,20,20,0.28));
    z-index: 1; pointer-events: none;
}
.about-collage .ac-main img {
    width: 100%;
    height: 540px;
    object-fit: cover;
    display: block;
    transition: transform 1s var(--ease);
}
.about-collage:hover .ac-main img { transform: scale(1.06); }
.about-collage .ac-sub {
    position: absolute;
    right: 18px; bottom: -34px;
    width: 46%;
    overflow: hidden;
    border-radius: 12px;
    border: 7px solid #fff;
    box-shadow: var(--shadow-lg);
    z-index: 3;
}
.about-collage .ac-sub img {
    width: 100%;
    height: 260px;
    object-fit: cover;
    display: block;
    transition: transform 1s var(--ease);
}
.about-collage:hover .ac-sub img { transform: scale(1.08); }
/* gold ring accent behind main */
.about-collage:after {
    content: "";
    position: absolute;
    top: -16px; left: -16px;
    width: 120px; height: 120px;
    border: 3px solid var(--gold);
    border-radius: 12px;
    opacity: .5;
    z-index: 0;
}
.about-collage.left-pad:after { left: 24px; }
.about-collage .about-experience {
    top: 26px; left: -22px; bottom: auto;
    z-index: 4;
    border-radius: 8px;
}
.about-collage.left-pad .about-experience { left: 18px; }

/* ---------------- Stats / Counters ---------------- */
.stats-section {
    background: linear-gradient(rgba(20,20,20,0.86), rgba(20,20,20,0.86)), url('../img/ahas/project-school-building.jpg');
    background-attachment: fixed;
    background-size: cover;
    background-position: center;
    padding: 90px 0;
}
.stat-item { text-align: center; color: #fff; }
.stat-item .num { font-family: var(--serif); font-size: 56px; font-weight: 700; color: var(--gold-light); line-height: 1; }
.stat-item .lbl { font-size: 14px; letter-spacing: 2px; text-transform: uppercase; color: #c3cedd; margin-top: 10px; }

/* ---------------- Services / Amenities ---------------- */
.services-section { background: var(--cream); }
.service-item {
    background: #fff;
    padding: 45px 35px;
    margin-bottom: 30px;
    border-radius: 4px;
    box-shadow: var(--shadow-sm);
    transition: all .45s var(--ease);
    border-bottom: 3px solid transparent;
    height: calc(100% - 30px);
}
.service-item:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-md);
    border-bottom-color: var(--gold);
}
.service-item i {
    color: var(--gold);
    font-size: 50px;
    margin-bottom: 22px;
    display: inline-block;
    transition: transform .45s var(--ease);
}
.service-item:hover i { transform: scale(1.12) rotate(-4deg); }
.service-item h4 { font-size: 23px; margin-bottom: 12px; }
.service-item p { color: var(--muted); font-size: 14.5px; margin: 0; }

/* ---------------- Rooms / Spaces ---------------- */
.hp-room-item { position: relative; overflow: hidden; }
.hp-room-item:before {
    content: "";
    position: absolute; inset: 0;
    background: linear-gradient(to top, rgba(17,17,17,0.92) 0%, rgba(17,17,17,0.2) 55%, transparent 100%);
    z-index: 1;
    transition: all .5s;
}
.hp-room-item .hr-text { z-index: 2; }
.hp-room-item:hover { background-size: 112% !important; }

/* Spaces grid (rooms page) */
.space-card {
    position: relative;
    overflow: hidden;
    border-radius: 6px;
    margin-bottom: 30px;
    box-shadow: var(--shadow-sm);
}
.space-card img {
    width: 100%;
    height: 320px;
    object-fit: cover;
    transition: transform .8s var(--ease);
}
.space-card:hover img { transform: scale(1.08); }
.space-card .overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(17,17,17,0.9), rgba(17,17,17,0.05) 60%);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 30px;
    z-index: 2;
}
.space-card .overlay span {
    color: var(--gold-light);
    font-size: 12px;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 6px;
}
.space-card .overlay h4 { color: #fff; font-size: 26px; margin: 0; }
.space-card .tag {
    position: absolute;
    top: 18px; left: 18px;
    background: var(--gold);
    color: #fff;
    font-size: 11px;
    letter-spacing: 1px;
    text-transform: uppercase;
    padding: 6px 14px;
    border-radius: 2px;
    z-index: 3;
}

/* Feature room split */
.feature-room { display: flex; flex-wrap: wrap; align-items: center; margin-bottom: 70px; }
.feature-room .fr-img { flex: 1 1 50%; overflow: hidden; border-radius: 6px; }
.feature-room .fr-img img { width: 100%; height: 460px; object-fit: cover; transition: transform .8s var(--ease); }
.feature-room:hover .fr-img img { transform: scale(1.06); }
.feature-room .fr-body { flex: 1 1 50%; padding: 0 60px; }
.feature-room.reverse { flex-direction: row-reverse; }
.feature-room .fr-body .idx { font-family: var(--serif); font-size: 60px; color: var(--sand); font-weight: 700; line-height: 1; }
.feature-room .fr-body h3 { font-size: 34px; margin: 8px 0 16px; }
.feature-room .fr-body p { color: var(--muted); margin-bottom: 22px; }
.fr-specs { list-style: none; padding: 0; margin: 0 0 28px; display: flex; flex-wrap: wrap; gap: 14px 30px; }
.fr-specs li { font-size: 14px; color: #46505f; }
.fr-specs li i { color: var(--gold); margin-right: 8px; }

/* ---------------- Amenities checklist ---------------- */
.amenity-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 18px; }
.amenity-grid .am {
    display: flex; align-items: center; gap: 14px;
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 4px;
    padding: 18px 20px;
    transition: all .4s var(--ease);
}
.amenity-grid .am:hover { background: var(--ink); border-color: var(--ink); transform: translateY(-4px); }
.amenity-grid .am:hover h6, .amenity-grid .am:hover i { color: #fff; }
.amenity-grid .am i { color: var(--gold); font-size: 26px; }
.amenity-grid .am h6 { font-family: var(--sans); font-size: 14.5px; font-weight: 500; margin: 0; color: #1a1a1a; }

/* ---------------- CTA Banner ---------------- */
.cta-banner {
    background: linear-gradient(105deg, rgba(20,20,20,0.92), rgba(20,20,20,0.7)), url('../img/ahas/power-grid.jpg');
    background-size: cover;
    background-position: center;
    padding: 100px 0;
    text-align: center;
}
.cta-banner span { color: var(--gold-light); letter-spacing: 4px; text-transform: uppercase; font-size: 13px; font-weight: 500; }
.cta-banner h2 { color: #fff; font-size: 50px; margin: 16px 0 14px; }
.cta-banner p { color: rgba(255,255,255,0.8); max-width: 620px; margin: 0 auto 34px; font-size: 17px; }

/* ---------------- Testimonials ---------------- */
.testimonial-section { background: var(--cream); }
.ts-item {
    background: #fff;
    padding: 45px;
    border-radius: 6px;
    box-shadow: var(--shadow-sm);
    text-align: center;
}
.ts-item .quote-ico { color: var(--gold); font-size: 40px; margin-bottom: 18px; }
.ts-item p { font-family: var(--serif); font-size: 22px; line-height: 1.6; color: #1a1a1a; font-style: italic; }
.testimonial-section .rating i { color: var(--gold); }
.testimonial-section .ti-author h5 { color: var(--gold-dark); margin-top: 8px; font-family: var(--sans); font-size: 15px; letter-spacing: 1px; }

/* ---------------- Gallery ---------------- */
.gallery-grid { margin: 0 -8px; }
.gallery-item {
    padding: 8px;
    overflow: hidden;
}
.gallery-item a {
    display: block;
    position: relative;
    overflow: hidden;
    border-radius: 6px;
}
.gallery-item img {
    width: 100%;
    height: 280px;
    object-fit: cover;
    transition: transform .8s var(--ease);
}
.gallery-item a:before {
    content: "";
    position: absolute; inset: 0;
    background: rgba(17,17,17,0.4);
    opacity: 0;
    transition: opacity .4s;
    z-index: 1;
}
.gallery-item a:after {
    content: "+";
    position: absolute;
    top: 50%; left: 50%;
    transform: translate(-50%,-50%) scale(0.6);
    width: 54px; height: 54px;
    line-height: 50px;
    text-align: center;
    border: 1.5px solid #fff;
    border-radius: 50%;
    color: #fff;
    font-size: 28px;
    font-weight: 300;
    opacity: 0;
    transition: all .4s var(--ease);
    z-index: 2;
}
.gallery-item a:hover:before { opacity: 1; }
.gallery-item a:hover:after { opacity: 1; transform: translate(-50%,-50%) scale(1); }
.gallery-item a:hover img { transform: scale(1.1); }
.gallery-item.tall img { height: 588px; }

/* Gallery filter */
.gallery-filter { text-align: center; margin-bottom: 36px; }
.gallery-filter button {
    background: none;
    border: none;
    font-family: var(--sans);
    font-size: 14px;
    font-weight: 500;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: var(--muted);
    padding: 8px 20px;
    margin: 0 4px;
    cursor: pointer;
    border-radius: 2px;
    transition: all .3s;
}
.gallery-filter button.active, .gallery-filter button:hover { background: var(--gold); color: #fff; }

/* ---------------- Page Hero / Breadcrumb ---------------- */
.page-hero {
    position: relative;
    padding: 170px 0 110px;
    background-size: cover;
    background-position: center;
    text-align: center;
}
.page-hero:before {
    content: "";
    position: absolute; inset: 0;
    background: linear-gradient(rgba(17,17,17,0.7), rgba(17,17,17,0.75));
}
.page-hero .container { position: relative; z-index: 2; }
.page-hero span { color: var(--gold-light); letter-spacing: 4px; text-transform: uppercase; font-size: 13px; font-weight: 500; }
.page-hero h1 { color: #fff; font-size: 60px; margin: 14px 0 16px; }
.page-hero .crumb { color: rgba(255,255,255,0.8); font-size: 14px; letter-spacing: 1px; }
.page-hero .crumb a { color: rgba(255,255,255,0.8); }
.page-hero .crumb a:hover { color: var(--gold-light); }
.page-hero .crumb i { color: var(--gold); margin: 0 8px; font-size: 12px; }

/* ---------------- Contact ---------------- */
.contact-section { background: #fff; }
.contact-card {
    background: var(--cream);
    border-radius: 6px;
    padding: 40px 35px;
    height: 100%;
    transition: all .4s var(--ease);
    border-bottom: 3px solid transparent;
}
.contact-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-md); border-bottom-color: var(--gold); background: #fff; }
.contact-card .ic {
    width: 64px; height: 64px;
    border-radius: 50%;
    background: linear-gradient(120deg, var(--gold-dark), var(--gold));
    color: #fff;
    display: flex; align-items: center; justify-content: center;
    font-size: 26px;
    margin-bottom: 22px;
}
.contact-card h5 { font-size: 21px; margin-bottom: 10px; }
.contact-card p { color: var(--muted); margin: 0; font-size: 15px; }
.contact-card a { color: var(--muted); }
.contact-card a:hover { color: var(--gold-dark); }

.contact-form input, .contact-form textarea {
    width: 100%;
    border: 1px solid #dfe3ea;
    border-radius: 4px;
    padding: 15px 20px;
    margin-bottom: 18px;
    font-family: var(--sans);
    font-size: 15px;
    background: #fff;
    transition: border .3s;
}
.contact-form input:focus, .contact-form textarea:focus { border-color: var(--gold); outline: none; }
.contact-form textarea { height: 150px; resize: none; }

.map-wrap { border-radius: 6px; overflow: hidden; box-shadow: var(--shadow-sm); line-height: 0; }
.map-wrap iframe { width: 100%; height: 450px; border: 0; }

/* ---------------- FAQ ---------------- */
.faq-item {
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 6px;
    margin-bottom: 16px;
    overflow: hidden;
    transition: box-shadow .3s;
}
.faq-item.open { box-shadow: var(--shadow-sm); }
.faq-q {
    padding: 22px 28px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-family: var(--serif);
    font-size: 21px;
    font-weight: 600;
    color: var(--ink);
}
.faq-q .sign { color: var(--gold); font-size: 22px; transition: transform .35s; flex-shrink: 0; margin-left: 16px; }
.faq-item.open .faq-q .sign { transform: rotate(45deg); }
.faq-a { max-height: 0; overflow: hidden; transition: max-height .45s var(--ease); }
.faq-a-inner { padding: 0 28px 24px; color: var(--muted); }

/* ---------------- Footer ---------------- */
.footer-section { background: var(--ink); padding-top: 80px; }
.footer-section .ft-about .st-logo { padding: 0; margin-bottom: 22px; }
.footer-section .st-logo img { height: 64px; filter: brightness(0) invert(1); opacity: .95; }
.footer-section p { color: #9aa6b5; font-size: 14.5px; }
.footer-section .fa-social a {
    width: 40px; height: 40px;
    line-height: 40px;
    text-align: center;
    border: 1px solid rgba(255,255,255,0.15);
    border-radius: 50%;
    color: #c3cedd;
    margin-right: 8px;
    transition: all .35s;
}
.footer-section .fa-social a:hover { background: var(--gold); border-color: var(--gold); color: #fff; transform: translateY(-3px); }
.footer-section h6 {
    color: #fff;
    font-family: var(--sans);
    font-size: 16px;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 26px;
    position: relative;
    padding-bottom: 14px;
}
.footer-section h6:after { content: ""; position: absolute; left: 0; bottom: 0; width: 36px; height: 2px; background: var(--gold); }
.footer-section .ft-links { list-style: none; padding: 0; }
.footer-section .ft-links li { margin-bottom: 12px; }
.footer-section .ft-links li a { color: #9aa6b5; font-size: 14.5px; }
.footer-section .ft-links li a:before { content: "\35"; font-family: 'ElegantIcons'; color: var(--gold); margin-right: 10px; font-size: 12px; }
.footer-section .ft-links li a:hover { color: var(--gold-light); padding-left: 4px; }
.footer-section .ft-contact ul { list-style: none; padding: 0; }
.footer-section .ft-contact ul li { color: #9aa6b5; font-size: 14.5px; margin-bottom: 16px; padding-left: 30px; position: relative; }
.footer-section .ft-contact ul li i { position: absolute; left: 0; top: 4px; color: var(--gold); }
.footer-section .ft-contact ul li a { color: #9aa6b5; }
.footer-section .ft-contact ul li a:hover { color: var(--gold-light); }
.copyright-option { border-top: 1px solid rgba(255,255,255,0.08); margin-top: 40px; padding: 22px 0; }
.copyright-option ul li a { color: #9aa6b5; font-size: 13px; }
.copyright-option ul li a:hover { color: var(--gold-light); }
.copyright-option .co-text p { color: #9aa6b5; font-size: 13px; margin: 0; }
.copyright-option .co-text a { color: var(--gold-light); }
.footer-newsletter input {
    width: 100%;
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(255,255,255,0.12);
    border-radius: 4px;
    padding: 14px 18px;
    color: #fff;
    font-size: 14px;
    margin-bottom: 14px;
}
.footer-newsletter input::placeholder { color: #8593a4; }
.footer-newsletter button {
    width: 100%;
    background: linear-gradient(120deg, var(--gold-dark), var(--gold));
    color: #fff;
    border: none;
    padding: 13px;
    border-radius: 4px;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    font-size: 13px;
    cursor: pointer;
    transition: all .3s;
}
.footer-newsletter button:hover { transform: translateY(-2px); }

/* ---------------- Floating Buttons ---------------- */
.float-actions { position: fixed; right: 22px; bottom: 22px; z-index: 800; display: flex; flex-direction: column; gap: 12px; }
.float-actions a {
    width: 56px; height: 56px;
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    color: #fff;
    font-size: 26px;
    box-shadow: var(--shadow-md);
    transition: all .35s var(--ease);
}
.float-actions a.wa { background: #25d366; }
.float-actions a.call { background: linear-gradient(120deg, var(--gold-dark), var(--gold)); }
.float-actions a:hover { transform: scale(1.1) translateY(-2px); color: #fff; }
.float-actions .wa { animation: pulseWa 2.4s infinite; }
@keyframes pulseWa {
    0% { box-shadow: 0 0 0 0 rgba(37,211,102,0.5); }
    70% { box-shadow: 0 0 0 16px rgba(37,211,102,0); }
    100% { box-shadow: 0 0 0 0 rgba(37,211,102,0); }
}

/* ---------------- Scroll Reveal ---------------- */
[data-reveal] {
    opacity: 0;
    transform: translateY(45px);
    transition: opacity .9s var(--ease), transform .9s var(--ease);
    will-change: opacity, transform;
}
[data-reveal].in { opacity: 1; transform: translateY(0); }
[data-reveal="left"] { transform: translateX(-50px); }
[data-reveal="left"].in { transform: translateX(0); }
[data-reveal="right"] { transform: translateX(50px); }
[data-reveal="right"].in { transform: translateX(0); }
[data-reveal="zoom"] { transform: scale(0.92); }
[data-reveal="zoom"].in { transform: scale(1); }
[data-delay="1"] { transition-delay: .12s; }
[data-delay="2"] { transition-delay: .24s; }
[data-delay="3"] { transition-delay: .36s; }
[data-delay="4"] { transition-delay: .48s; }

/* ---------------- Booking page ---------------- */
.book-steps { counter-reset: step; }
.book-step {
    background: #fff;
    border-radius: 6px;
    padding: 40px 30px;
    text-align: center;
    box-shadow: var(--shadow-sm);
    height: 100%;
    position: relative;
    transition: all .4s var(--ease);
}
.book-step:hover { transform: translateY(-8px); box-shadow: var(--shadow-md); }
.book-step .step-num {
    counter-increment: step;
    width: 60px; height: 60px;
    margin: 0 auto 22px;
    border-radius: 50%;
    background: linear-gradient(120deg, var(--gold-dark), var(--gold));
    color: #fff;
    font-family: var(--serif);
    font-size: 26px;
    font-weight: 700;
    display: flex; align-items: center; justify-content: center;
}
.book-step h5 { font-size: 21px; margin-bottom: 10px; }
.book-step p { color: var(--muted); font-size: 14.5px; margin: 0; }

.calendly-embed {
    border-radius: 8px;
    overflow: hidden;
    box-shadow: var(--shadow-md);
    min-height: 700px;
    background: #fff;
}

/* ---------------- Offcanvas (mobile) tweaks ---------------- */
.offcanvas-menu-wrapper .st-logo { margin-bottom: 26px; padding: 0; justify-content: center; }
.offcanvas-menu-wrapper .st-logo img { height: 60px; }
.offcanvas-menu-wrapper .bk-btn {
    display: inline-block;
    background: linear-gradient(120deg, var(--gold-dark), var(--gold));
    color: #fff;
    padding: 13px 26px;
    border-radius: 3px;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 12px;
    font-weight: 600;
}
.slicknav_menu { display: none; }

/* Premium mobile hamburger (must sit above sticky header) */
.canvas-open {
    background: var(--ink);
    color: #fff !important;
    border: none !important;
    border-radius: 6px !important;
    width: 46px !important;
    height: 46px !important;
    line-height: 46px !important;
    font-size: 22px !important;
    top: 18px !important;
    right: 20px !important;
    z-index: 1002 !important;
    box-shadow: 0 8px 20px rgba(20,20,20,0.25);
}

/* ---------------- Responsive ---------------- */
@media (max-width: 1199px) {
    .hero-text-box h1 { font-size: 56px; }
    .feature-room .fr-body { padding: 0 35px; }
    .menu-item .nav-menu .mainmenu li a { margin-right: 22px; font-size: 14px; }
    .st-logo img { height: 50px; }
}
@media (max-width: 991px) {
    .section-title h2 { font-size: 36px; }
    .hero-text-box h1 { font-size: 48px; }
    .hero-section, .hero-section .hs-item, .hero-slider, .hero-slider .owl-stage-outer, .hero-slider .owl-stage, .hero-slider .owl-item { height: auto; min-height: 580px; }
    .hero-content { position: absolute; display: block; padding: 130px 0 60px; }
    .hero-content .container { display: block; width: 100%; }
    .hero-text-box { max-width: 100%; }
    .info-strip .row > div { border-right: none; border-bottom: 1px solid rgba(255,255,255,0.08); }
    .feature-room { flex-direction: column; }
    .feature-room.reverse { flex-direction: column; }
    .feature-room .fr-img, .feature-room .fr-body { flex: 1 1 100%; width: 100%; }
    .feature-room .fr-body { padding: 30px 0 0; }
    .feature-room .fr-img img { height: 360px; }
    .about-collage { padding: 10px 0 40px; max-width: 600px; margin: 0 auto; }
    .about-collage.left-pad { padding-left: 0; }
    .about-collage .ac-main img { height: 420px; }
    .about-collage .ac-sub { width: 44%; right: 10px; bottom: -28px; }
    .about-collage .ac-sub img { height: 200px; }
    .about-text { margin-bottom: 46px; }
    .page-hero { padding: 140px 0 80px; }
    .page-hero h1 { font-size: 44px; }
    .cta-banner h2 { font-size: 38px; }
    .mainmenu { display: none; }
    .slicknav_menu { display: block; }
    .canvas-open { display: block; }
    .menu-item { padding: 6px 0; }
    .st-logo { padding: 14px 0; }
    .st-logo img { height: 46px; }
}
@media (max-width: 767px) {
    .hero-text-box { max-width: 100%; }
    .hero-text-box h1 { font-size: 36px; overflow-wrap: break-word; }
    .hero-text-box p { font-size: 16px; }
    .hero-actions .st-btn { display: block; margin: 0 0 12px; text-align: center; }
    .hero-price-badge { margin-top: 28px; }
    .section-title h2 { font-size: 29px; }
    .stat-item { margin-bottom: 30px; }
    .gallery-item.tall img, .gallery-item img { height: 240px; }
    .page-hero h1 { font-size: 34px; }
    .cta-banner h2 { font-size: 28px; }
    .cta-banner p { font-size: 15px; }
    .ts-item { padding: 30px 25px; }
    .ts-item p { font-size: 18px; }
    .feature-room .fr-body h3 { font-size: 28px; }
    .service-item { padding: 35px 28px; }
}
@media (max-width: 480px) {
    .hero-text-box h1 { font-size: 30px; }
    .hero-text-box .eyebrow { font-size: 11px; letter-spacing: 3px; }
    .hero-price-badge .amt { font-size: 27px; }
    .section-title h2 { font-size: 26px; }
    .page-hero h1 { font-size: 29px; }
    .st-logo img { height: 42px; }
    .float-actions a { width: 50px; height: 50px; font-size: 22px; }
}
