/* =====================================================================
   Jabal Al-Bena Contracting – public site styles
   Brand: navy #173D55 · gold #AC895B · light grey #E5E5E5
   ===================================================================== */
:root {
    --navy: #173D55;
    --navy-dark: #0F2A3C;
    --navy-light: #23506E;
    --gold: #AC895B;
    --gold-light: #C9A97A;
    --gold-dark: #8E6E45;
    --grey: #E5E5E5;
    --grey-light: #F4F4F2;
    --ink: #1F2933;
    --muted: #6B7A88;
    --white: #ffffff;
    --radius: 14px;
    --shadow: 0 10px 30px rgba(23, 61, 85, .10);
    --shadow-lg: 0 24px 60px rgba(23, 61, 85, .18);
    --header-h: 84px;
    --font: "Tajawal", "Segoe UI", Tahoma, sans-serif;
}

html { scroll-behavior: smooth; scroll-padding-top: 90px; overflow-x: hidden; }
main { overflow-x: clip; }
body {
    font-family: var(--font);
    color: var(--ink);
    background: var(--white);
    line-height: 1.8;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}
h1, h2, h3, h4, h5, h6 { font-weight: 800; color: var(--navy); line-height: 1.35; }
a { color: var(--navy); text-decoration: none; transition: color .2s; }
a:hover { color: var(--gold); }
img { max-width: 100%; }
.text-gold { color: var(--gold) !important; }
.text-navy { color: var(--navy) !important; }
.bg-light-grey { background: var(--grey-light); }
.skip-link { position: absolute; top: -60px; right: 10px; background: var(--gold); color: #fff; padding: 8px 14px; z-index: 2000; border-radius: 6px; }
.skip-link:focus { top: 10px; }

/* ---------- Buttons ---------- */
.btn { font-family: var(--font); font-weight: 700; border-radius: 10px; padding: .6rem 1.4rem; transition: all .25s; }
.btn i { margin-inline-start: 6px; }
.btn-gold { background: var(--gold); border-color: var(--gold); color: #fff; }
.btn-gold:hover, .btn-gold:focus { background: var(--gold-dark); border-color: var(--gold-dark); color: #fff; transform: translateY(-2px); box-shadow: 0 10px 20px rgba(172, 137, 91, .35); }
.btn-navy { background: var(--navy); border-color: var(--navy); color: #fff; }
.btn-navy:hover { background: var(--navy-dark); border-color: var(--navy-dark); color: #fff; transform: translateY(-2px); box-shadow: 0 10px 20px rgba(23, 61, 85, .3); }
.btn-outline-navy { border: 2px solid var(--navy); color: var(--navy); }
.btn-outline-navy:hover { background: var(--navy); color: #fff; }
.btn-outline-light { border-width: 2px; font-weight: 700; }
.btn-outline-light:hover { background: #fff; color: var(--navy); }
.btn-lg { padding: .8rem 1.8rem; font-size: 1.05rem; }

/* ---------- Header ---------- */
.site-header { position: fixed; inset-inline: 0; top: 0; z-index: 1030; transition: transform .35s, box-shadow .3s; }
.topbar { background: var(--navy-dark); color: #dbe3ea; padding: 9px 0; font-size: 1rem; font-weight: 500; transition: all .3s; }
.topbar a { color: #e6ecf0; }
.topbar a:hover { color: var(--gold-light); }
.topbar i { color: var(--gold); margin-inline-end: 6px; font-size: 1.05rem; }
.social-mini a { margin-inline-start: 12px; font-size: 1.15rem; }
.main-nav { background: #fff; padding: 10px 0; box-shadow: 0 2px 20px rgba(0,0,0,.06); transition: all .35s; }
.navbar-brand .logo { height: 62px; width: auto; transition: height .3s; }
.logo-light { display: none; }
.navbar-nav .nav-link { color: var(--navy); font-weight: 700; font-size: 1.05rem; padding: .5rem 1rem !important; position: relative; }
.navbar-nav .nav-link::after { content: ""; position: absolute; bottom: 4px; inset-inline: 1rem; height: 2px; background: var(--gold); transform: scaleX(0); transition: transform .25s; transform-origin: right; }
.navbar-nav .nav-link:hover::after, .navbar-nav .nav-link.active::after { transform: scaleX(1); }
.navbar-nav .nav-link.active { color: var(--gold); }
.btn-nav { padding: .5rem 1.2rem; }

/* transparent header over hero */
body.has-hero .site-header.over-hero:not(.scrolled) .topbar { background: rgba(15, 42, 60, .35); backdrop-filter: blur(4px); }
body.has-hero .site-header.over-hero:not(.scrolled) .main-nav { background: transparent; box-shadow: none; }
body.has-hero .site-header.over-hero:not(.scrolled) .nav-link { color: #fff; }
body.has-hero .site-header.over-hero:not(.scrolled) .nav-link.active { color: var(--gold-light); }
body.has-hero .site-header.over-hero:not(.scrolled) .logo-dark { display: none; }
body.has-hero .site-header.over-hero:not(.scrolled) .logo-light { display: inline-block; }
body.has-hero .site-header.over-hero:not(.scrolled) .navbar-toggler span { background: #fff; }
.site-header.scrolled .topbar { display: none !important; }
.site-header.scrolled .main-nav { padding: 6px 0; box-shadow: 0 4px 24px rgba(0,0,0,.1); }
.site-header.scrolled .navbar-brand .logo { height: 50px; }
.site-header.hide-up { transform: translateY(-110%); }
body.no-hero main { padding-top: calc(var(--header-h) + 34px); }
@media (max-width: 991.98px) { body.no-hero main { padding-top: 78px; } }

.navbar-toggler { border: 0; width: 44px; height: 40px; display: flex; flex-direction: column; justify-content: center; gap: 5px; padding: 0 8px; }
.navbar-toggler:focus { box-shadow: none; }
.navbar-toggler span { display: block; height: 3px; width: 100%; background: var(--navy); border-radius: 2px; transition: .3s; }

.mobile-nav { background: var(--navy); color: #fff; width: 300px; }
.mobile-nav .offcanvas-header { border-bottom: 1px solid rgba(255,255,255,.1); }
.mobile-links li a { display: flex; align-items: center; gap: 12px; color: #fff; font-weight: 700; font-size: 1.1rem; padding: 12px 6px; border-bottom: 1px solid rgba(255,255,255,.08); }
.mobile-links li a i { color: var(--gold); }
.mobile-contact { margin-top: 30px; }
.mobile-nav .social-mini a { color: #fff; }

/* ---------- Hero ---------- */
.hero { position: relative; height: 100vh; min-height: 560px; max-height: 1080px; overflow: hidden; background: var(--navy-dark); color: #fff; }
.hero-swiper, .hero-video { position: absolute; inset: 0; }
.hero-video video { width: 100%; height: 100%; object-fit: cover; }
.hero-img { position: absolute; inset: 0; background-size: cover; background-position: center; transform: scale(1); }
.swiper-slide-active .hero-img { animation: kenburns 9s ease-out forwards; }
@keyframes kenburns { from { transform: scale(1); } to { transform: scale(1.12); } }
.hero-overlay { position: absolute; inset: 0; pointer-events: none; z-index: 2;
    background: linear-gradient(180deg, rgba(15,42,60, calc(var(--overlay) + .15)) 0%, rgba(15,42,60, var(--overlay)) 45%, rgba(15,42,60, calc(var(--overlay) + .25)) 100%); }
.hero-content { position: absolute; inset: 0; z-index: 3; display: flex; align-items: center; pointer-events: none; }
.hero-content .container { pointer-events: auto; }
.hero-box { max-width: 720px; }
.hero-kicker { display: inline-flex; align-items: center; gap: 8px; background: rgba(172,137,91,.18); border: 1px solid rgba(201,169,122,.5); color: var(--gold-light); padding: 6px 16px; border-radius: 100px; font-weight: 700; margin-bottom: 20px; backdrop-filter: blur(6px); }
.hero-title { color: #fff; font-size: clamp(2rem, 5vw, 3.8rem); font-weight: 900; margin-bottom: 18px; text-shadow: 0 6px 30px rgba(0,0,0,.35); }
.hero-sub { font-size: clamp(1.05rem, 2vw, 1.35rem); color: #e6ecf0; max-width: 600px; margin-bottom: 30px; }
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; }
.hero-slide-caption { position: absolute; bottom: 90px; inset-inline: 0; z-index: 2; color: #fff; text-align: left; display: none; }
.hero .swiper-pagination { bottom: 34px; z-index: 5; }
.hero .swiper-pagination-bullet { width: 34px; height: 4px; border-radius: 2px; background: #fff; opacity: .4; transition: .3s; }
.hero .swiper-pagination-bullet-active { background: var(--gold); opacity: 1; width: 54px; }
.hero .swiper-button-prev, .hero .swiper-button-next { color: #fff; width: 52px; height: 52px; border-radius: 50%; background: rgba(255,255,255,.12); backdrop-filter: blur(6px); z-index: 5; transition: .3s; }
.hero .swiper-button-prev:hover, .hero .swiper-button-next:hover { background: var(--gold); }
.hero .swiper-button-prev::after, .hero .swiper-button-next::after { font-size: 18px; font-weight: 900; }
.scroll-down { position: absolute; bottom: 26px; left: 50%; transform: translateX(-50%); z-index: 5; width: 28px; height: 46px; border: 2px solid rgba(255,255,255,.6); border-radius: 20px; display: none; }
.scroll-down span { position: absolute; top: 8px; left: 50%; width: 4px; height: 8px; margin-left: -2px; background: var(--gold); border-radius: 2px; animation: scrolldot 1.8s infinite; }
@keyframes scrolldot { 0% { opacity: 1; transform: translateY(0); } 100% { opacity: 0; transform: translateY(18px); } }
@media (min-width: 992px) { .scroll-down { display: block; } }
@media (max-width: 767.98px) { .hero { height: 88vh; min-height: 520px; } .hero-actions .btn { width: 100%; } }

/* ---------- Sections ---------- */
.section { padding: 90px 0; }
@media (max-width: 767.98px) { .section { padding: 60px 0; } }
.section-heading { margin-bottom: 44px; }
.section-heading .kicker { display: inline-block; color: var(--gold); font-weight: 800; letter-spacing: .5px; margin-bottom: 8px; position: relative; padding-inline-start: 34px; }
.section-heading .kicker::before { content: ""; position: absolute; inset-inline-start: 0; top: 50%; width: 24px; height: 3px; background: var(--gold); border-radius: 2px; }
.section-heading.text-center .kicker { padding: 0 34px; }
.section-heading.text-center .kicker::after { content: ""; position: absolute; inset-inline-end: 0; top: 50%; width: 24px; height: 3px; background: var(--gold); border-radius: 2px; }
.section-heading h2 { font-size: clamp(1.7rem, 3.4vw, 2.5rem); margin-bottom: 10px; }
.section-heading h2 .count { color: var(--gold); font-size: .7em; }
.section-heading p { color: var(--muted); font-size: 1.1rem; max-width: 640px; margin: 0 auto; }
.section-heading.light h2 { color: #fff; }
.section-heading.light p { color: #d5dde3; }

/* ---------- Page hero (inner pages) ---------- */
.page-hero { position: relative; overflow: hidden; padding: 170px 0 80px; background: var(--navy) center/cover no-repeat; color: #fff; margin-top: calc(-1 * (var(--header-h) + 34px)); }
.page-hero::before { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, rgba(15,42,60,.75), rgba(15,42,60,.85)); }
.page-hero::after { content: ""; position: absolute; inset-inline-end: -120px; bottom: -160px; width: 420px; height: 420px; border: 60px solid rgba(172,137,91,.18); transform: rotate(45deg); }
.page-hero .container { position: relative; z-index: 1; }
.page-hero .kicker { color: var(--gold-light); font-weight: 800; display: block; margin-bottom: 6px; }
.page-hero h1 { color: #fff; font-size: clamp(2rem, 4.5vw, 3.2rem); font-weight: 900; margin: 0; }
.page-hero .hero-en { color: #cfd8e0; font-size: 1.1rem; letter-spacing: 1px; }
.page-hero .crumbs { margin-top: 12px; color: #cfd8e0; font-size: .95rem; }
.page-hero .crumbs a { color: #fff; }
.page-hero .crumbs i { font-size: .75rem; color: var(--gold); margin: 0 6px; }
.page-hero.small { padding: 150px 0 50px; }
@media (max-width: 991.98px) { .page-hero { margin-top: -78px; padding: 130px 0 60px; } }

/* ---------- About ---------- */
.about-media { position: relative; padding: 0 0 30px 30px; }
.about-media img { width: 100%; border-radius: var(--radius); box-shadow: var(--shadow-lg); position: relative; z-index: 1; aspect-ratio: 4/3; object-fit: cover; }
.about-frame { position: absolute; inset: 30px 30px 0 0; border: 4px solid var(--gold); border-radius: var(--radius); z-index: 0; }
.about-badge { position: absolute; bottom: 0; inset-inline-end: 0; z-index: 2; background: var(--navy); color: #fff; padding: 16px 24px; border-radius: 12px; box-shadow: var(--shadow-lg); text-align: center; }
.about-badge strong { display: block; font-size: 2rem; color: var(--gold); line-height: 1; }
.about-text p { color: #3d4b58; font-size: 1.05rem; }
.lead-text p { font-size: 1.12rem; }
.goal-list { list-style: none; padding: 0; margin: 20px 0 0; display: grid; grid-template-columns: 1fr 1fr; gap: 10px 20px; }
.goal-list li { display: flex; align-items: center; gap: 10px; font-weight: 700; color: var(--navy); }
.goal-list li i { color: var(--gold); font-size: 1.2rem; }
@media (max-width: 575.98px) { .goal-list { grid-template-columns: 1fr; } }
.vm-card { background: #fff; border: 1px solid #e9ecef; border-inline-start: 5px solid var(--gold); border-radius: var(--radius); padding: 26px; box-shadow: var(--shadow); margin-bottom: 20px; }
.vm-card h3 { font-size: 1.3rem; margin-bottom: 8px; }
.vm-card p { margin: 0; color: #3d4b58; }
.vm-icon { width: 54px; height: 54px; border-radius: 12px; background: rgba(172,137,91,.14); color: var(--gold); display: grid; place-items: center; font-size: 1.5rem; margin-bottom: 12px; }
.vm-card.vision2030 { background: var(--navy); color: #fff; border-color: var(--gold); }
.vm-card.vision2030 h3 { color: #fff; }
.vm-card.vision2030 p { color: #d5dde3; }
.goal-card { background: #fff; border-radius: var(--radius); padding: 30px; height: 100%; box-shadow: var(--shadow); transition: .3s; text-align: center; }
.goal-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.goal-card h3 { font-size: 1.25rem; }
.goal-card p { color: var(--muted); margin: 0; }
.goal-icon { width: 70px; height: 70px; border-radius: 20px; background: var(--navy); color: var(--gold-light); display: grid; place-items: center; font-size: 2rem; margin: 0 auto 16px; }

/* ---------- Stats ---------- */
.stats-section { background: var(--navy) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='120' height='120' viewBox='0 0 120 120'%3E%3Cpath d='M0 120 L60 40 L120 120' fill='none' stroke='rgba(255,255,255,0.04)' stroke-width='2'/%3E%3C/svg%3E"); color: #fff; padding: 70px 0; position: relative; }
.stats-section::before { content: ""; position: absolute; inset: 0; background: linear-gradient(90deg, rgba(172,137,91,.12), transparent 50%); }
.stat-item { text-align: center; position: relative; }
.stat-item i { font-size: 2.2rem; color: var(--gold); }
.stat-value { font-size: 3rem; font-weight: 900; line-height: 1.1; color: #fff; margin: 6px 0 4px; }
.stat-label { color: #cfd8e0; font-weight: 700; }

/* ---------- Services ---------- */
.services-section { background: var(--grey-light); position: relative; }
.service-card { background: #fff; border-radius: var(--radius); padding: 34px 26px; height: 100%; box-shadow: var(--shadow); position: relative; overflow: hidden; transition: .35s; border-bottom: 4px solid transparent; }
.service-card::before { content: ""; position: absolute; inset-inline-end: -40px; top: -40px; width: 120px; height: 120px; border-radius: 50%; background: rgba(172,137,91,.08); transition: .35s; }
.service-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-lg); border-bottom-color: var(--gold); }
.service-card:hover::before { transform: scale(1.6); }
.service-icon { width: 68px; height: 68px; border-radius: 18px; background: var(--navy); color: var(--gold-light); display: grid; place-items: center; font-size: 2rem; margin-bottom: 18px; position: relative; transition: .3s; }
.service-card:hover .service-icon { background: var(--gold); color: #fff; }
.service-card h3 { font-size: 1.25rem; margin-bottom: 10px; }
.service-card p { color: var(--muted); margin-bottom: 14px; font-size: .98rem; }
.service-img { margin: -34px -26px 20px; height: 160px; }
.service-img img { width: 100%; height: 100%; object-fit: cover; }
.service-link { font-weight: 800; color: var(--gold); }
.service-link:hover { color: var(--navy); }
.services-detailed { display: flex; flex-direction: column; gap: 26px; }
.service-row { display: grid; grid-template-columns: 140px 1fr; gap: 30px; background: #fff; border-radius: var(--radius); box-shadow: var(--shadow); padding: 30px; align-items: start; }
.service-row-icon { width: 140px; height: 140px; border-radius: 20px; background: var(--navy); color: var(--gold-light); display: grid; place-items: center; font-size: 3.4rem; overflow: hidden; }
.service-row-icon img { width: 100%; height: 100%; object-fit: cover; }
.service-row-body h3 { font-size: 1.5rem; }
.service-row-body p { color: #3d4b58; }
.lead-sm { font-size: 1.12rem; font-weight: 700; color: var(--navy-light) !important; }
@media (max-width: 575.98px) { .service-row { grid-template-columns: 1fr; } .service-row-icon { width: 90px; height: 90px; font-size: 2.4rem; } }

/* ---------- Projects ---------- */
.project-card { display: block; background: #fff; border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow); transition: .35s; height: 100%; color: var(--ink); }
.project-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-lg); color: var(--ink); }
.project-media { position: relative; aspect-ratio: 4/3; overflow: hidden; background: var(--grey); }
.project-media img { width: 100%; height: 100%; object-fit: cover; transition: transform .6s; }
.project-card:hover .project-media img { transform: scale(1.08); }
.project-media::after { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, transparent 55%, rgba(15,42,60,.55)); }
.project-status { position: absolute; top: 14px; inset-inline-start: 14px; z-index: 1; padding: 4px 12px; border-radius: 100px; font-size: .8rem; font-weight: 800; color: #fff; background: var(--gold); }
.project-status.progress { background: #2C7BE5; }
.project-status.planned { background: #6c757d; }
.project-featured { position: absolute; top: 14px; inset-inline-end: 14px; z-index: 1; width: 32px; height: 32px; border-radius: 50%; background: #fff; color: var(--gold); display: grid; place-items: center; }
.project-body { padding: 20px 22px 24px; }
.project-cat { color: var(--gold); font-weight: 800; font-size: .88rem; }
.project-name { font-size: 1.3rem; margin: 4px 0 0; }
.project-name-en { color: var(--muted); font-size: .9rem; letter-spacing: .5px; }
.project-loc { color: var(--muted); margin-top: 8px; font-size: .95rem; }
.project-loc i { color: var(--gold); }
.project-more { display: inline-block; margin-top: 12px; font-weight: 800; color: var(--navy); }
.project-card:hover .project-more { color: var(--gold); }
.filter-bar { display: flex; flex-wrap: wrap; gap: 10px; justify-content: center; margin-bottom: 40px; }
.filter-chip { padding: 8px 20px; border-radius: 100px; border: 2px solid var(--grey); font-weight: 700; color: var(--navy); background: #fff; }
.filter-chip:hover, .filter-chip.active { border-color: var(--gold); background: var(--gold); color: #fff; }

/* project details */
.project-hero { padding-bottom: 60px; }
.project-facts { display: flex; flex-wrap: wrap; gap: 14px; margin-top: -60px; position: relative; z-index: 2; }
.fact { display: flex; align-items: center; gap: 12px; background: #fff; border-radius: 12px; padding: 14px 18px; box-shadow: var(--shadow); min-width: 170px; flex: 1; color: var(--ink); }
.fact i { font-size: 1.6rem; color: var(--gold); }
.fact small { display: block; color: var(--muted); font-size: .8rem; line-height: 1.2; }
.fact strong { color: var(--navy); }
.fact-link:hover { background: var(--navy); color: #fff; }
.fact-link:hover strong, .fact-link:hover small { color: #fff; }
.gallery-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(200px, 1fr)); gap: 14px; }
.gallery-item { position: relative; display: block; border-radius: 12px; overflow: hidden; aspect-ratio: 4/3; background: var(--grey); }
.gallery-item:nth-child(6n+1) { grid-column: span 2; grid-row: span 2; }
.gallery-item img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s; }
.gallery-item:hover img { transform: scale(1.06); }
.gallery-item .zoom { position: absolute; inset: 0; display: grid; place-items: center; background: rgba(23,61,85,.45); color: #fff; font-size: 2rem; opacity: 0; transition: .3s; }
.gallery-item:hover .zoom { opacity: 1; }
@media (max-width: 575.98px) { .gallery-grid { grid-template-columns: 1fr 1fr; } .gallery-item:nth-child(6n+1) { grid-column: span 2; grid-row: span 1; } }
.video-wrap { border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow); background: #000; margin-bottom: 16px; }
.video-wrap video { width: 100%; display: block; max-height: 520px; }
.video-caption { background: var(--navy); color: #fff; padding: 10px 16px; font-weight: 700; }
.coming-soon { display: flex; gap: 16px; align-items: center; background: rgba(172,137,91,.1); border: 1px dashed var(--gold); border-radius: var(--radius); padding: 22px; }
.coming-soon i { font-size: 2.2rem; color: var(--gold); }
.coming-soon span { display: block; color: var(--muted); }
.side-card { background: #fff; border-radius: var(--radius); box-shadow: var(--shadow); padding: 24px; margin-bottom: 20px; }
.side-card h3 { font-size: 1.2rem; margin-bottom: 14px; }
.side-card.cta { background: var(--navy); color: #fff; }
.side-card.cta h3 { color: #fff; }
.side-card.cta p { color: #d5dde3; }
.map-embed, .contact-map { border-radius: 12px; overflow: hidden; aspect-ratio: 4/3; box-shadow: var(--shadow); }
.map-embed iframe, .contact-map iframe { width: 100%; height: 100%; border: 0; }

/* ---------- Contact ---------- */
.contact-card { background: #fff; border-radius: var(--radius); box-shadow: var(--shadow); padding: 34px; height: 100%; }
.contact-form .form-control, .contact-form .form-select { border-radius: 10px; padding: .75rem 1rem; border: 2px solid #e9ecef; font-family: var(--font); }
.contact-form .form-control:focus, .contact-form .form-select:focus { border-color: var(--gold); box-shadow: 0 0 0 4px rgba(172,137,91,.15); }
.contact-form .form-label { font-weight: 700; color: var(--navy); }
.hp-field { position: absolute; left: -9999px; top: -9999px; opacity: 0; height: 0; overflow: hidden; }
.contact-alert { padding: 10px 16px; border-radius: 10px; font-weight: 700; }
.contact-alert.ok { background: #e6f6ec; color: #157347; }
.contact-alert.err { background: #fde8e8; color: #b02a37; }
.contact-info { display: flex; flex-direction: column; gap: 14px; }
.info-item { display: flex; gap: 16px; align-items: flex-start; background: #fff; border-radius: 12px; padding: 18px 20px; box-shadow: var(--shadow); }
.info-item h4 { font-size: 1.05rem; margin-bottom: 4px; }
.info-item a, .info-item span { display: block; color: #3d4b58; }
.info-item a:hover { color: var(--gold); }
.info-icon { flex: 0 0 52px; width: 52px; height: 52px; border-radius: 14px; background: var(--navy); color: var(--gold-light); display: grid; place-items: center; font-size: 1.4rem; }
.info-icon.wa { background: #25D366; color: #fff; }
.thanks-icon { width: 110px; height: 110px; border-radius: 50%; background: #e6f6ec; color: #157347; display: grid; place-items: center; font-size: 3.5rem; margin: 0 auto; }

/* ---------- CTA ---------- */
.cta-section { background: linear-gradient(135deg, var(--navy) 0%, var(--navy-light) 100%); color: #fff; padding: 80px 0; position: relative; overflow: hidden; }
.cta-section::before { content: ""; position: absolute; inset-inline-start: -100px; top: -100px; width: 300px; height: 300px; border-radius: 50%; background: rgba(172,137,91,.18); }
.cta-section h2 { color: #fff; font-size: clamp(1.6rem, 3.5vw, 2.4rem); }
.cta-section p { color: #d5dde3; font-size: 1.1rem; }

/* ---------- Footer ---------- */
.site-footer { background: var(--navy-dark); color: #cfd8e0; padding: 70px 0 0; position: relative; overflow: hidden; }
.footer-shape { position: absolute; inset-inline-end: -10%; top: -20%; width: 45%; height: 140%; background: linear-gradient(120deg, rgba(172,137,91,.12), rgba(23,61,85,.4)); transform: skewX(-18deg); pointer-events: none; }
.footer-logo { height: 80px; margin-bottom: 16px; }
.footer-about { color: #b8c4cf; max-width: 360px; }
.vision-badge { display: inline-flex; align-items: center; gap: 8px; border: 1px solid var(--gold); color: var(--gold-light); padding: 6px 14px; border-radius: 100px; font-weight: 700; }
.footer-title { color: #fff; font-size: 1.15rem; margin-bottom: 18px; position: relative; padding-bottom: 10px; }
.footer-title::after { content: ""; position: absolute; bottom: 0; inset-inline-start: 0; width: 34px; height: 3px; background: var(--gold); border-radius: 2px; }
.footer-links, .footer-contact { list-style: none; padding: 0; margin: 0; }
.footer-links li, .footer-contact li { margin-bottom: 10px; }
.footer-links a, .footer-contact a { color: #cfd8e0; }
.footer-links a:hover, .footer-contact a:hover { color: var(--gold-light); padding-inline-start: 4px; }
.footer-contact i { color: var(--gold); margin-inline-end: 6px; }
.footer-social { display: flex; gap: 10px; flex-wrap: wrap; }
.footer-social a { width: 42px; height: 42px; border-radius: 10px; background: rgba(255,255,255,.08); color: #fff; display: grid; place-items: center; font-size: 1.2rem; transition: .3s; }
.footer-social a:hover { background: var(--gold); transform: translateY(-3px); }
.footer-hours { margin-top: 18px; color: #b8c4cf; }
.footer-hours i { color: var(--gold); }
.footer-bottom { margin-top: 50px; padding: 18px 0; border-top: 1px solid rgba(255,255,255,.08); display: flex; justify-content: space-between; flex-wrap: wrap; gap: 10px; font-size: .9rem; color: #9fb0bf; }
.admin-link { color: #5f7384; }
.admin-link:hover { color: var(--gold); }

/* ---------- Floating ---------- */
.whatsapp-float { position: fixed; bottom: 24px; inset-inline-start: 24px; z-index: 1020; display: flex; align-items: center; gap: 10px; background: #25D366; color: #fff; padding: 10px 18px 10px 14px; border-radius: 100px; font-weight: 800; box-shadow: 0 10px 30px rgba(37,211,102,.4); transition: .3s; }
.whatsapp-float i { font-size: 1.6rem; }
.whatsapp-float:hover { color: #fff; transform: translateY(-3px); box-shadow: 0 14px 34px rgba(37,211,102,.55); }
@media (max-width: 575.98px) { .whatsapp-float span { display: none; } .whatsapp-float { padding: 12px; } }
.back-to-top { position: fixed; bottom: 24px; inset-inline-end: 24px; z-index: 1020; width: 46px; height: 46px; border-radius: 12px; border: 0; background: var(--navy); color: #fff; font-size: 1.2rem; opacity: 0; visibility: hidden; transition: .3s; box-shadow: var(--shadow); }
.back-to-top.show { opacity: 1; visibility: visible; }
.back-to-top:hover { background: var(--gold); }

/* ---------- Misc ---------- */
::selection { background: var(--gold); color: #fff; }
.glightbox-clean .gslide-description { font-family: var(--font); }

/* ---------- Lightbox caption ---------- */
.glightbox-clean .gslide-media { border-radius: 14px 14px 0 0; box-shadow: 0 30px 80px rgba(0,0,0,.5); }
.glightbox-clean .gslide-description.description-bottom { background: linear-gradient(180deg, var(--navy) 0%, var(--navy-dark) 100%); border-radius: 0 0 14px 14px; padding: 16px 26px 18px; text-align: center; direction: rtl; }
.glightbox-clean .gslide-title { font-family: var(--font); font-weight: 800; font-size: 1.3rem; color: #fff; margin: 0 0 6px; line-height: 1.4; }
.glightbox-clean .gslide-title::after { content: ""; display: block; width: 46px; height: 3px; background: var(--gold); border-radius: 2px; margin: 8px auto 0; }
.glightbox-clean .gslide-desc { font-family: var(--font); color: var(--gold-light); font-size: .95rem; font-weight: 700; margin: 0; letter-spacing: .3px; }
.glightbox-clean .gnext, .glightbox-clean .gprev { background: rgba(23,61,85,.7); width: 52px; height: 52px; border-radius: 50%; }
.glightbox-clean .gnext:hover, .glightbox-clean .gprev:hover { background: var(--gold); }
.glightbox-clean .gclose { background: rgba(23,61,85,.7); border-radius: 50%; }
.glightbox-clean .gclose:hover { background: var(--gold); }
