/* ═══════════════════════════════════════════════════
   MARKZAD GROUP — MASTER STYLESHEET
   Font: PingARLT → Almarai (Google Fonts fallback)
   Direction: RTL | Language: Arabic
═══════════════════════════════════════════════════ */

/* ── 0. FONT FACE (PingARLT — place font files in /fonts/) ── */
@font-face {
    font-family: 'Ping AR + LT';
    src: url('../fonts/PingARLT-Black.woff2') format('woff2'),
        url('../fonts/PingARLT-Black.woff') format('woff');
    font-weight: 900;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Ping AR + LT';
    src: url('../fonts/PingARLT-Bold.woff2') format('woff2'),
        url('../fonts/PingARLT-Bold.woff') format('woff');
    font-weight: bold;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Ping AR + LT';
    src: url('../fonts/PingARLT-ExtraLight.woff2') format('woff2'),
        url('../fonts/PingARLT-ExtraLight.woff') format('woff');
    font-weight: 200;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Ping AR + LT Hairline';
    src: url('../fonts/PingARLT-Hairline.woff2') format('woff2'),
        url('../fonts/PingARLT-Hairline.woff') format('woff');
    font-weight: 100;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Ping AR + LT';
    src: url('../fonts/PingARLT-Heavy.woff2') format('woff2'),
        url('../fonts/PingARLT-Heavy.woff') format('woff');
    font-weight: 800;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Ping AR + LT';
    src: url('../fonts/PingARLT-Light.woff2') format('woff2'),
        url('../fonts/PingARLT-Light.woff') format('woff');
    font-weight: 300;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Ping AR + LT';
    src: url('../fonts/PingARLT-Medium.woff2') format('woff2'),
        url('../fonts/PingARLT-Medium.woff') format('woff');
    font-weight: 500;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Ping AR + LT';
    src: url('../fonts/PingARLT-Regular.woff2') format('woff2'),
        url('../fonts/PingARLT-Regular.woff') format('woff');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Ping AR + LT';
    src: url('../fonts/PingARLT-Thin.woff2') format('woff2'),
        url('../fonts/PingARLT-Thin.woff') format('woff');
    font-weight: 100;
    font-style: normal;
    font-display: swap;
}

a{outline: none !important;}

/* ── 1. DESIGN TOKENS ── */
:root {
    --primary:        #002249;
    --accent:         #c9a84c;
    --accent-light:   #e4c96a;
    --accent-pale:    #fff8e6;
    --accent-glow:    rgba(201,168,76,0.28);
    --navy:           #002249;
    --white:          #ffffff;
    --bg-light:       #faf7ef;
    --bg-services:    #f6f1e2;
    --text-main:      #2f240e;
    --text-muted:     #6b5e3e;
    --border-light:   rgba(66,52,21,0.12);
    --shadow-sm:      0 4px 20px rgba(47,36,14,0.09);
    --shadow-md:      0 12px 40px rgba(47,36,14,0.13);
    --shadow-lg:      0 24px 60px rgba(47,36,14,0.16);
    --radius-sm:      10px;
    --radius-md:      18px;
    --radius-lg:      26px;
    --radius-xl:      36px;
    --font:           'Ping AR + LT', 'Almarai', 'Tajawal', sans-serif;
    --font-head:      'Ping AR + LT', 'Tajawal', 'Almarai', sans-serif;
    --transition:     0.32s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

/* ── 2. RESET & BASE ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html {
    scroll-behavior: smooth;
    max-width: 100%;
    overflow-x: hidden;
}

body {
    font-family: var(--font);
    background-color: var(--bg-light);
    color: var(--text-main);
    font-size: 15px;
    line-height: 1.7;
    overflow-x: hidden;
}

img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; transition: color var(--transition); }
ul { list-style: none; padding: 0; margin: 0; }
button { cursor: pointer; border: none; background: none; font-family: var(--font); }

/* ── 3. SCROLL PROGRESS ── */
#scroll-progress {
    position: fixed; top: 0; left: 0; right: 0; height: 3px;
    background: linear-gradient(90deg, var(--primary), var(--accent), var(--accent-light));
    transform-origin: left; transform: scaleX(0);
    z-index: 9999; transition: transform 0.1s linear;
    box-shadow: 0 0 8px var(--accent-glow);
}

/* ── 4. PRELOADER ── */
.preloader {
    position: fixed; inset: 0; z-index: 9998;
    background: var(--primary);
    display: flex; align-items: center; justify-content: center;
    flex-direction: column; gap: 24px;
    transition: opacity 0.5s ease, visibility 0.5s ease;
}
.preloader.fade-out { opacity: 0; visibility: hidden; pointer-events: none; }
.preloader-logo { width: 140px; height: auto; filter: brightness(0) invert(1); animation: pre-pulse 1.2s ease infinite alternate;margin: auto;
  margin-bottom: 12px; }
@keyframes pre-pulse { to { opacity: 0.5; transform: scale(0.96); } }
.preloader-bar {
    width: 180px; height: 3px; border-radius: 99px;
    background: rgba(255,255,255,0.12); overflow: hidden;
}
.preloader-bar span {
    display: block; height: 100%; width: 0; border-radius: 99px;
    background: var(--accent);
    animation: pre-bar 1.8s ease forwards;
}
@keyframes pre-bar { to { width: 100%; } }

/* ── 5. FLOAT WIDGETS ── */
#float-whatsapp {
    position: fixed; bottom: 88px; left: 20px; z-index: 1000;
    width: 54px; height: 54px; border-radius: 50%;
    background: #25d366;
    display: flex; align-items: center; justify-content: center;
    box-shadow: 0 6px 24px rgba(37,211,102,0.5);
    animation: wa-in 0.6s cubic-bezier(.34,1.56,.64,1) 2s both;
}
#float-whatsapp::before {
    content: ''; position: absolute; inset: -5px; border-radius: 50%;
    background: rgba(37,211,102,0.3);
    animation: wa-ring 2s ease infinite;
}
#float-whatsapp:hover { transform: scale(1.1) translateY(-3px); box-shadow: 0 12px 32px rgba(37,211,102,0.6); }
#float-whatsapp svg { width: 28px; height: 28px; fill: #fff; position: relative; z-index: 1; }
@keyframes wa-ring { 0%,100%{transform:scale(1);opacity:.7} 50%{transform:scale(1.4);opacity:0} }
@keyframes wa-in { from{opacity:0;transform:scale(0) rotate(-180deg)} to{opacity:1;transform:scale(1) rotate(0)} }
.wa-tooltip {
    position: absolute; right: 66px; left: auto; white-space: nowrap;
    background: var(--primary); color: #fff; font-size: 12px; font-weight: 700;
    padding: 5px 12px; border-radius: 8px; pointer-events: none;
    opacity: 0; transform: translateX(6px); transition: all 0.22s ease;
}
.wa-tooltip::after {
    content: ''; position: absolute; left: -5px; top: 50%;
    transform: translateY(-50%);
    border: 5px solid transparent; border-right-color: var(--primary); border-left: 0;
}
#float-whatsapp:hover .wa-tooltip { opacity: 1; transform: translateX(0); }

#scroll-top {
    position: fixed; bottom: 22px; left: 20px; z-index: 1000;
    width: 44px; height: 44px; border-radius: 50%;
    background: var(--accent); color: var(--primary);
    display: flex; align-items: center; justify-content: center;
    font-size: 18px;
    box-shadow: 0 4px 18px var(--accent-glow);
    opacity: 0; transform: translateY(16px) scale(0.8);
    transition: all 0.35s cubic-bezier(.34,1.56,.64,1); pointer-events: none;
}
#scroll-top.visible { opacity: 1; transform: translateY(0) scale(1); pointer-events: auto; }
#scroll-top:hover { background: var(--accent-light); transform: translateY(-3px) scale(1.06); }

/* ── 6. TOPBAR ── */
.topbar-wrap {
    position: fixed; top: 0; left: 0; right: 0; z-index: 200;
    background: var(--primary);
    padding: 7px 0;
}
.topbar-inner {
    display: flex; align-items: center; justify-content: space-between;
    flex-wrap: wrap; gap: 8px;
}
.topbar-right, .topbar-left { display: flex; align-items: center; gap: 10px; flex-wrap: wrap; }
.topbar-socials { display: flex; align-items: center; gap: 6px; }
.topbar-socials a {
    width: 28px; height: 28px; border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    background: rgba(255,255,255,0.1); border: 1px solid rgba(255,255,255,0.16);
    color: rgba(255,255,255,0.8); font-size: 13px;
    transition: all 0.25s ease;
}
.topbar-socials a:hover { background: var(--accent); color: var(--primary); transform: translateY(-2px); }
.topbar-divider { width: 1px; height: 16px; background: rgba(255,255,255,0.2); }
.topbar-phone { color: rgba(255,255,255,0.85); font-size: 12px; display: flex; align-items: center; gap: 5px; direction: ltr; unicode-bidi: embed; }
.topbar-phone i { color: var(--accent); }
.topbar-phone:hover { color: var(--accent); }

/* Vision 2030 Badge */
.vision-badge {
    display: flex; align-items: center; gap: 6px;
    padding: 3px 10px; border-radius: 6px;
    background: rgba(255,255,255,0.1); border: 1px solid rgba(255,255,255,0.18);
    transition: background 0.25s;
}
.vision-badge:hover { background: rgba(201,168,76,0.2); }
.vision-badge img { height: 22px; width: auto; object-fit: contain; }
.vision-fallback { display: flex; flex-direction: column; align-items: center; gap: 0; }
.vf-line1 { font-size: 9px; color: var(--accent); font-weight: 800; line-height: 1; }
.vf-line2 { font-size: 13px; color: #fff; font-weight: 900; line-height: 1; }

.topbar-btn {
    padding: 4px 12px; border-radius: 99px; font-size: 11px; font-weight: 700;
    background: rgba(255,255,255,0.1); border: 1px solid rgba(255,255,255,0.18);
    color: rgba(255,255,255,0.85);
    transition: all 0.25s;
}
.topbar-btn:hover { background: rgba(201,168,76,0.2); color: var(--accent); }
.topbar-btn--primary { background: var(--accent); border-color: var(--accent); color: var(--primary); }
.topbar-btn--primary:hover { background: var(--accent-light); color: var(--primary); }

/* ── 7. NAVBAR ── */
.site-header {
    position: fixed; top: 42px; left: 0; right: 0; z-index: 190;
    transition: top 0.3s ease, box-shadow 0.3s ease, background 0.3s ease;
}
.header-inner {
    background: rgba(255,255,255,0.96);
    border-bottom: 1px solid var(--border-light);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    transition: all 0.3s ease;
}
.site-header.scrolled .header-inner {
    background: rgba(250,247,239,0.97);
    box-shadow: 0 4px 28px rgba(47,36,14,0.12);
}
.site-header.scrolled { top: 42px; }

.nav-logo { height: 52px; width: auto; }
.navbar { padding: 10px 0; }

.navbar-nav .nav-link {
    font-family: var(--font-head); font-weight: 700;
    color: var(--text-main) !important; font-size: 14px;
    padding: 8px 14px !important; border-radius: 8px;
    position: relative; transition: color 0.25s ease, background 0.25s ease;
}
.navbar-nav .nav-link::after {
    content: ''; position: absolute; bottom: 2px; right: 14px;
    width: 0; height: 2px; background: var(--accent);
    border-radius: 99px; transition: width 0.3s ease;
}
.navbar-nav .nav-link:hover::after,
.navbar-nav .nav-link.active::after { width: calc(100% - 28px); }
.navbar-nav .nav-link:hover { color: var(--accent) !important; }
.navbar-nav .nav-link.active { color: var(--accent) !important; font-weight: 800; }

.nav-link--highlight {
    background: var(--accent-pale) !important;
    color: var(--accent) !important;
    border: 1px solid rgba(201,168,76,0.3);
}
.nav-link--highlight::after { display: none; }

/* Mega Dropdown */
.mega-dropdown { position: static !important; }
.mega-menu {
    position: absolute; left: 0; right: -150px !important;
    width: 100%; max-width: 920px; margin: 0 auto;
    background: #fff; border-radius: var(--radius-lg);
    border: 1px solid var(--border-light);
    box-shadow: var(--shadow-lg);
    padding: 24px; top: calc(100% + 8px);
    display: none; z-index: 100;
    animation: mega-in 0.25s ease;
    top: 52px;
}
@keyframes mega-in { from{opacity:0;transform:translateY(8px)} to{opacity:1;transform:translateY(0)} }
.mega-dropdown:hover .mega-menu,
.mega-dropdown .dropdown-menu.show { display: grid; grid-template-columns: 1fr; }
.mega-menu-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 20px; }
.mega-col-header {
    display: flex; align-items: center; gap: 10px;
    padding-bottom: 12px; margin-bottom: 12px;
    border-bottom: 1px solid var(--border-light);
}
.mega-col-header i { font-size: 20px; color: var(--accent); }
.mega-col-header h4 { font-size: 14px; font-weight: 800; color: var(--primary); margin: 0; }
.mega-col ul li a {
    display: flex; align-items: center; gap: 6px;
    font-size: 13px; color: var(--text-muted); padding: 5px 0;
    border-radius: 6px; transition: color 0.2s ease; font-weight: 500;
}
.mega-col ul li a i { font-size: 11px; color: var(--accent); }
.mega-col ul li a:hover { color: var(--accent); }

/* CTA button in nav */
.nav-cta { margin-right: auto; }
.btn-cta {
    display: inline-flex; align-items: center; gap: 8px;
    padding: 10px 22px; border-radius: 99px; font-size: 13px; font-weight: 800;
    background: var(--primary); color: #fff;
    transition: all 0.3s ease; white-space: nowrap;
}
.btn-cta:hover { background: var(--accent); color: var(--primary); transform: translateY(-2px); box-shadow: 0 8px 24px var(--accent-glow); }
.btn-cta--sm { padding: 7px 16px; font-size: 12px; }

/* Mobile Toggle */
.navbar-toggler { border: none; padding: 8px; }
.toggler-bar {
    display: block; width: 22px; height: 2px; border-radius: 2px;
    background: var(--primary); margin: 4px 0;
    transition: all 0.3s ease;
}

/* ── 8. HERO SECTION ── */
.hero-section {
    position: relative; width: 100%;
    height: 80vh; min-height: 600px;
    overflow: hidden;
}
#hero-particles {
    position: absolute; inset: 0; pointer-events: none; z-index: 2; opacity: 0.5;
}
.hero-swiper { width: 100%; height: 100%; }
.swiper-slide { position: relative; overflow: hidden; }

.slide-bg {
    position: absolute; inset: 0;
    background-size: cover; background-position: center;
    transform: scale(1.06);
    transition: transform 7s ease;
}
.swiper-slide-active .slide-bg { transform: scale(1); }

.slide-overlay {
    position: absolute; inset: 0; z-index: 1;
    background: linear-gradient(135deg, rgba(0,34,73,0.88) 0%, rgba(0,34,73,0.65) 60%, rgba(0,20,50,0.82) 100%);
}
.slide-overlay--teal { background: linear-gradient(135deg, rgba(0,50,60,0.88) 0%, rgba(0,80,90,0.65) 60%, rgba(0,30,40,0.82) 100%); }
.slide-overlay--deep { background: linear-gradient(135deg, rgba(10,20,50,0.9) 0%, rgba(20,50,80,0.7) 60%, rgba(10,25,55,0.85) 100%); }
.slide-overlay--warm { background: linear-gradient(135deg, rgba(40,20,0,0.88) 0%, rgba(70,40,10,0.7) 60%, rgba(30,15,0,0.85) 100%); }

.slide-content {
    position: relative; z-index: 3;
    display: flex; flex-direction: column;
    justify-content: center; height: 100%;
    padding: 130px 0 80px;
    max-width: 680px;
}

.slide-tag {
    display: inline-flex; align-items: center; gap: 8px;
    padding: 5px 16px; border-radius: 99px;
    background: rgba(201,168,76,0.18); border: 1px solid rgba(201,168,76,0.4);
    color: var(--accent-light); font-size: 12px; font-weight: 700; letter-spacing: 0.5px;
    margin-bottom: 16px; width: fit-content;
}
.slide-tag::before {
    content: ''; width: 6px; height: 6px; border-radius: 50%;
    background: var(--accent);
    animation: dot-blink 1.5s ease infinite;
}
@keyframes dot-blink { 0%,100%{opacity:1;transform:scale(1)} 50%{opacity:0.4;transform:scale(1.5)} }

.slide-title {
    font-family: var(--font-head); font-size: clamp(28px, 3.5vw, 54px);
    font-weight: 900; color: #fff; line-height: 1.2;
    margin-bottom: 16px;
}
.text-gold {
    background: linear-gradient(90deg, var(--accent), var(--accent-light), var(--accent));
    background-size: 200% auto;
    -webkit-background-clip: text; -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: gold-shimmer 3s linear infinite;
}
@keyframes gold-shimmer { to { background-position: 200% center; } }

.slide-desc {
    font-size: 15px; color: rgba(255,255,255,0.82); line-height: 1.75;
    margin-bottom: 28px; max-width: 560px;
}

.slide-actions { display: flex; align-items: center; gap: 14px; flex-wrap: wrap; margin-bottom: 28px; }

.btn-primary-hero {
    display: inline-flex; align-items: center; gap: 8px;
    padding: 13px 28px; border-radius: 99px; font-size: 14px; font-weight: 800;
    background: var(--accent); color: var(--primary);
    box-shadow: 0 8px 28px rgba(201,168,76,0.4);
    transition: all 0.3s ease;
}
.btn-primary-hero:hover { background: var(--accent-light); transform: translateY(-3px); box-shadow: 0 14px 36px rgba(201,168,76,0.55); color: var(--primary); }

.btn-outline-hero {
    display: inline-flex; align-items: center; gap: 8px;
    padding: 12px 24px; border-radius: 99px; font-size: 14px; font-weight: 700;
    background: transparent; color: #fff;
    border: 1.5px solid rgba(255,255,255,0.4);
    transition: all 0.3s ease;
}
.btn-outline-hero:hover { background: rgba(255,255,255,0.12); border-color: rgba(255,255,255,0.7); color: #fff; transform: translateY(-2px); }

.slide-trust { display: flex; align-items: center; gap: 20px; flex-wrap: wrap; }
.trust-item {
    display: flex; align-items: center; gap: 7px;
    font-size: 12px; color: rgba(255,255,255,0.75); font-weight: 600;
}
.trust-item i { color: var(--accent); font-size: 15px; }

/* Hero nav & pagination */
.hero-swiper-pagination { position: absolute; bottom: 24px; right: 0; left: 0; text-align: center; z-index: 10; }
.hero-swiper-pagination .swiper-pagination-bullet {
    width: 8px; height: 8px; background: rgba(255,255,255,0.4);
    border-radius: 99px; margin: 0 4px; transition: all 0.3s ease;
}
.hero-swiper-pagination .swiper-pagination-bullet-active {
    background: var(--accent); width: 28px;
}
.hero-swiper-prev,
.hero-swiper-next {
    position: absolute; top: 50%; z-index: 10;
    width: 46px; height: 46px; border-radius: 50%;
    background: rgba(255,255,255,0.12); border: 1px solid rgba(255,255,255,0.25);
    color: #fff; font-size: 20px;
    display: flex; align-items: center; justify-content: center;
    cursor: pointer; transition: all 0.3s ease;
    transform: translateY(-50%);
}
.hero-swiper-prev { left: 20px; }
.hero-swiper-next { right: 20px; }
.hero-swiper-prev:hover,
.hero-swiper-next:hover { background: var(--accent); color: var(--primary); }

/* Slide animations defaults */
.animate-tag, .animate-title, .animate-desc, .animate-actions, .animate-trust {
    opacity: 0; transform: translateY(28px);
    transition: opacity 0.7s ease, transform 0.7s ease;
}
.swiper-slide-active .animate-tag  { opacity:1;transform:translateY(0);transition-delay:0.1s }
.swiper-slide-active .animate-title{ opacity:1;transform:translateY(0);transition-delay:0.22s }
.swiper-slide-active .animate-desc { opacity:1;transform:translateY(0);transition-delay:0.36s }
.swiper-slide-active .animate-actions{ opacity:1;transform:translateY(0);transition-delay:0.5s }
.swiper-slide-active .animate-trust { opacity:1;transform:translateY(0);transition-delay:0.62s }

/* ── 9. BOOKING SECTION ── */
.booking-section {
    padding: 0 0 60px;
    background: linear-gradient(180deg, #001a3a 0%, #002249 100%);
    position: relative;
}
.booking-card {
    background: #fff; border-radius: var(--radius-xl);
    box-shadow: var(--shadow-lg);
    display: grid; grid-template-columns: 1fr auto;
    overflow: hidden;
    margin-top: -40px; position: relative; z-index: 5;
}
.booking-form-wrap { padding: 36px 40px; }
.booking-form-title {
    display: flex; align-items: center; gap: 12px;
    margin-bottom: 24px;
}
.booking-form-title i { font-size: 28px; color: var(--accent); }
.booking-form-title h2 { font-size: 22px; font-weight: 900; color: var(--primary); margin: 0; }
.booking-form-grid {
    display: grid; grid-template-columns: 1fr 1fr; gap: 14px;
}
.form-group--full { grid-column: 1 / -1; }
.booking-label {
    display: block;
    margin-bottom: 8px;
    font-size: 12px;
    font-weight: 800;
    color: var(--primary);
}
.form-control {
    width: 100%; padding: 11px 16px; border-radius: var(--radius-sm);
    border: 1.5px solid var(--border-light);
    font-family: var(--font); font-size: 13px; color: var(--text-main);
    background: var(--bg-light); outline: none;
    transition: border-color 0.25s ease, box-shadow 0.25s ease;
    text-align: right;
}
.form-control:focus { border-color: var(--accent); box-shadow: 0 0 0 3px var(--accent-glow); }
.btn-book {
    width: 100%; padding: 14px; border-radius: var(--radius-md);
    background: var(--primary); color: #fff;
    font-family: var(--font-head); font-size: 15px; font-weight: 800;
    display: flex; align-items: center; justify-content: center; gap: 10px;
    transition: all 0.3s ease;
}
.btn-book:hover { background: var(--accent); color: var(--primary); transform: translateY(-2px); box-shadow: var(--shadow-md); }

.booking-contact-wrap {
    padding: 36px 32px; min-width: 280px;
    display: flex; align-items: center; justify-content: center;
}
.booking-contact-inner { text-align: center; }
.booking-contact-icon {
    width: 60px; height: 60px; border-radius: 50%;
    background: rgba(201,168,76,0.15); border: 1px solid rgba(201,168,76,0.3);
    display: flex; align-items: center; justify-content: center;
    font-size: 26px; color: var(--accent);
    margin: 0 auto 16px;
}
.booking-contact-inner h3 { font-size: 16px; font-weight: 800; color: #fff; margin-bottom: 8px; }
.booking-contact-inner p { font-size: 13px; color: rgba(255,255,255,0.65); margin-bottom: 20px; }
.booking-phone-btn, .booking-wa-btn {
    display: flex; align-items: center; justify-content: center; gap: 8px;
    padding: 11px 20px; border-radius: 99px;
    font-size: 13px; font-weight: 700; margin-bottom: 10px;
    transition: all 0.3s ease; direction: ltr;
}
.booking-phone-btn { background: var(--accent); color: var(--primary); }
.booking-phone-btn:hover { background: var(--accent-light); color: var(--primary); transform: translateY(-2px); }
.booking-wa-btn { background: rgba(37,211,102,0.15); border: 1px solid rgba(37,211,102,0.3); color: #25d366; }
.booking-wa-btn:hover { background: #25d366; color: #fff; }
.booking-badges {
    display: flex; align-items: center; gap: 8px; justify-content: center;
    flex-wrap: wrap; margin-top: 14px;
}
.booking-badges span {
    display: flex; align-items: center; gap: 5px;
    font-size: 11px; color: rgba(255,255,255,0.55); font-weight: 600;
}
.booking-badges i { color: var(--accent); }

/* ── 10. SHARED SECTION STYLES ── */
.section-tag {
    display: inline-flex; align-items: center; gap: 8px;
    padding: 5px 16px; border-radius: 99px;
    background: var(--accent-pale); border: 1px solid rgba(201,168,76,0.35);
    color: var(--accent); font-size: 11px; font-weight: 800; letter-spacing: 0.5px;
    margin-bottom: 12px;
}
.section-tag::before {
    content: ''; width: 6px; height: 6px; border-radius: 50%;
    background: var(--accent);
    animation: dot-blink 1.5s ease infinite;
}
.section-tag--light { background: rgba(201,168,76,0.15); border-color: rgba(201,168,76,0.25); }

.section-head { margin-bottom: 44px; }
.section-title {
    font-family: var(--font-head); font-size: clamp(22px, 3vw, 34px);
    font-weight: 900; color: var(--primary); line-height: 1.25;
    margin-bottom: 12px;
}
.section-title--light { color: #fff; }
.section-desc { font-size: 14px; color: var(--text-muted); line-height: 1.75; max-width: 600px; margin: 0 auto; }

/* ── 11. SERVICES SECTION ── */
.services-section {
    padding: 50px 0 50px;
    background: var(--bg-services);
    position: relative;
}
.section-wave-top {
    position: absolute; top: -1px; left: 0; right: 0; line-height: 0;
}
.section-wave-top svg { display: block; width: 100%; }

.services-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.srv-card {
    background: #fff; border-radius: var(--radius-lg);
    border: 1px solid var(--border-light);
    overflow: hidden;
    transition: transform 0.35s ease, box-shadow 0.35s ease, border-color 0.35s ease;
    display: flex; flex-direction: column;
}
.srv-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
    border-color: rgba(201,168,76,0.6);
}
.srv-card-img {
    position: relative; height: 180px; overflow: hidden;
}
.srv-card-img img {
    width: 100%; height: 100%; object-fit: cover;
    transition: transform 0.5s ease;
}
.srv-card:hover .srv-card-img img { transform: scale(1.07); }
.srv-card-overlay {
    position: absolute; inset: 0;
    background: linear-gradient(180deg, transparent 30%, rgba(47,36,14,0.65) 100%);
}
.srv-card-badge {
    position: absolute; top: 12px; right: 12px;
    background: var(--accent); color: var(--primary);
    font-size: 10px; font-weight: 800; padding: 3px 10px;
    border-radius: 99px;
}
.srv-card-badge--blue { background: var(--navy); color: #fff; }

.srv-card-body { padding: 20px; flex: 1; display: flex; flex-direction: column; }
.srv-card-icon {
    width: 44px; height: 44px; border-radius: var(--radius-sm);
    background: var(--accent-pale); border: 1px solid rgba(201,168,76,0.25);
    display: flex; align-items: center; justify-content: center;
    font-size: 20px; color: var(--accent);
    margin-bottom: 12px;
    transition: background 0.3s ease, color 0.3s ease;
}
.srv-card:hover .srv-card-icon { background: var(--accent); color: var(--primary); }
.srv-card-body h3 { font-size: 15px; font-weight: 800; color: var(--primary); margin-bottom: 8px; line-height: 1.3; }
.srv-card-body p { font-size: 12.5px; color: var(--text-muted); line-height: 1.7; flex: 1; margin-bottom: 14px; }
.srv-card-btn {
    display: inline-flex; align-items: center; gap: 6px;
    padding: 9px 18px; border-radius: 99px;
    background: var(--primary); color: #fff;
    font-size: 12px; font-weight: 800;
    transition: all 0.3s ease; align-self: flex-start;
}
.srv-card-btn:hover { background: var(--accent); color: var(--primary); }

/* ── 12. PEST PRODUCTS SECTION ── */
.pest-products-section {
    padding: 50px 0 50px;
    background: linear-gradient(180deg, var(--bg-light) 0%, #f0ece0 100%);
}

.pest-products-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.pest-product-type {
    position: absolute; bottom: 10px; right: 10px;
    background: rgba(0,0,0,0.65); color: #fff;
    font-size: 10px; font-weight: 700; padding: 3px 10px;
    border-radius: 99px; display: flex; align-items: center; gap: 4px;
    backdrop-filter: blur(4px);
}

.pest-product-body { padding: 16px; flex: 1; display: flex; flex-direction: column; }
.pest-product-body h4 { font-size: 14px; font-weight: 800; color: var(--primary); margin-bottom: 7px; line-height: 1.3; }
.pest-product-desc { font-size: 12px; color: var(--text-muted); line-height: 1.65; flex: 1; margin-bottom: 12px; }
.pest-product-footer { display: flex; align-items: center; justify-content: space-between; }
.pest-product-eff { font-size: 11px; color: #27ae60; font-weight: 700; display: flex; align-items: center; gap: 4px; }
.pest-product-btn {
    padding: 6px 14px; border-radius: 99px;
    background: var(--primary); color: #fff;
    font-size: 11px; font-weight: 800;
    transition: all 0.25s ease;
}
.pest-product-btn:hover { background: var(--accent); color: var(--primary); }

/* ── 13. ABOUT SECTION ── */
.about-section {
    padding: 70px 0 60px;
    background: #fff;
    position: relative;
}
.about-section::before {
    content: ''; position: absolute; top: 0; right: 0;
    width: 420px; height: 420px; border-radius: 50%;
    background: radial-gradient(circle, rgba(201,168,76,0.12) 0%, transparent 70%);
    pointer-events: none;
}

/* About images */
.about-imgs-wrap { position: relative; padding: 20px; }
.about-img-main { border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-md); }
.about-img-main img { width: 100%; height: 360px; object-fit: cover; }
.about-img-secondary {
    position: absolute; bottom: 0; left: 0; width: 180px;
    border-radius: var(--radius-md); overflow: hidden;
    border: 4px solid #fff; box-shadow: var(--shadow-md);
}
.about-img-secondary img { width:100%; object-fit: cover; }
.about-rating-badge {
    position: absolute; top: 30px; left: -10px;
    background: #fff; border-radius: var(--radius-md);
    padding: 12px 16px; box-shadow: var(--shadow-md);
    display: flex; flex-direction: column; align-items: center; gap: 2px;
    border: 1px solid var(--border-light);
}
.arb-stars i { color: var(--accent); font-size: 12px; }
.arb-num { font-size: 22px; font-weight: 900; color: var(--primary); line-height: 1; }
.arb-label { font-size: 10px; color: var(--text-muted); font-weight: 600; }

/* About content */
.about-content { padding-right: 16px; }
.about-lead { font-size: 15px; color: var(--text-main); line-height: 1.8; margin: 14px 0 22px; font-weight: 500; }

.about-companies { display: flex; flex-direction: column; gap: 16px; margin-bottom: 28px; }
.about-company-item {
    display: flex; gap: 14px; align-items: flex-start;
    padding: 16px; border-radius: var(--radius-md);
    background: var(--bg-light); border: 1px solid var(--border-light);
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
    min-width: 0;
}
.about-company-item:hover { border-color: rgba(201,168,76,0.4); box-shadow: var(--shadow-sm); }
.aci-icon {
    width: 44px; height: 44px; border-radius: 12px; flex-shrink: 0;
    background: var(--accent-pale); border: 1px solid rgba(201,168,76,0.25);
    display: flex; align-items: center; justify-content: center;
    font-size: 20px; color: var(--accent);
}
.aci-content { min-width: 0; }
.aci-content h4 { font-size: 14px; font-weight: 800; color: var(--primary); margin-bottom: 4px; }
.aci-content p { font-size: 12.5px; color: var(--text-muted); margin-bottom: 8px; line-height: 1.6; }
.aci-link {
    display: inline-flex; align-items: center; gap: 5px;
    font-size: 12px; font-weight: 700; color: var(--accent);
    padding: 4px 12px; border-radius: 99px;
    background: var(--accent-pale); border: 1px solid rgba(201,168,76,0.3);
    transition: all 0.25s ease;
}
.aci-link:hover { background: var(--accent); color: var(--primary); }
.aci-link--wa { background: rgba(37,211,102,0.1); border-color: rgba(37,211,102,0.3); color: #27ae60; }
.aci-link--wa:hover { background: #25d366; color: #fff; }

/* Statistics Grid */
.stats-grid {
    display: grid; grid-template-columns: repeat(6, 1fr);
    gap: 16px;
}
.stat-card {
    background: var(--bg-light); border-radius: var(--radius-md);
    border: 1px solid var(--border-light);
    padding: 20px 16px; text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
    display: flex; flex-direction: column; align-items: center; gap: 10px;
}
.stat-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-md); border-color: rgba(201,168,76,0.4); }
.stat-icon {
    width: 46px; height: 46px; border-radius: 12px;
    background: var(--accent-pale); border: 1px solid rgba(201,168,76,0.25);
    display: flex; align-items: center; justify-content: center;
    font-size: 20px; color: var(--accent);
    transition: background 0.3s; 
}
.stat-card:hover .stat-icon { background: var(--accent); color: var(--primary); }
.stat-body { display: flex; flex-direction: column; align-items: center; gap: 2px; }
.stat-num {
    font-family: var(--font-head); font-size: 26px;
    font-weight: 900; color: var(--primary); line-height: 1;
}
.stat-suffix { font-size: 18px; font-weight: 900; color: var(--accent); }
.stat-label { font-size: 11px; color: var(--text-muted); font-weight: 600; line-height: 1.4; }

/* Learn More Button */
.about-learn-more-wrap { margin-top: 40px; }
.btn-learn-more {
    display: inline-flex; align-items: center; gap: 10px;
    padding: 12px 32px; border-radius: 99px;
    background: transparent; border: 1.5px solid var(--primary);
    color: var(--primary); font-size: 14px; font-weight: 800;
    font-family: var(--font);
    transition: all 0.3s ease;
}
.btn-learn-more:hover { background: var(--primary); color: #fff; }
.lm-icon { transition: transform 0.35s ease; font-size: 14px; }

/* ── 14. ABOUT EXTRA (collapsible) ── */
.about-extra-wrap {
    max-height: 0; overflow: hidden;
    transition: max-height 0.7s cubic-bezier(0.25, 0.46, 0.45, 0.94), opacity 0.5s ease;
    opacity: 0;
}
.about-extra-wrap.is-open {
    max-height: 6000px; opacity: 1;
}

/* WHY US */
.why-us-section {
    padding: 70px 0;
    background: var(--bg-services);
}
.why-items { display: flex; flex-direction: column; gap: 18px; margin: 22px 0 28px; }
.why-item {
    display: flex; gap: 14px; align-items: flex-start;
    padding: 16px; border-radius: var(--radius-md);
    background: #fff; border: 1px solid var(--border-light);
    transition: border-color 0.3s, box-shadow 0.3s;
    min-width: 0;
}
.why-item:hover { border-color: rgba(201,168,76,0.4); box-shadow: var(--shadow-sm); }
.why-item-icon {
    width: 44px; height: 44px; border-radius: 12px; flex-shrink: 0;
    background: var(--accent-pale);
    display: flex; align-items: center; justify-content: center;
    font-size: 20px; color: var(--accent);
    transition: background 0.3s;
}
.why-item:hover .why-item-icon { background: var(--accent); color: var(--primary); }
.why-item > div:last-child { min-width: 0; }
.why-item h4 { font-size: 14px; font-weight: 800; color: var(--primary); margin-bottom: 5px; }
.why-item p { font-size: 12.5px; color: var(--text-muted); line-height: 1.65; margin: 0; }

.why-img-wrap { position: relative; }
.why-img-main { border-radius: var(--radius-lg); width: 100%; height: 350px; object-fit: contain; }
.why-img-secondary {
    position: absolute; bottom: -20px; left: -20px;
    width: 160px; height: 130px; border-radius: var(--radius-md);
    object-fit: cover; border: 4px solid #fff; box-shadow: var(--shadow-md);
}

/* FEATURES */
.features-section {
    padding: 70px 0;
    background: #fff;
}
.feature-img-wrap { position: relative; padding-bottom: 30px; }
.feature-img-wrap > img { border-radius: var(--radius-lg); box-shadow: var(--shadow-md); width: 100%; height: 360px; object-fit: cover; }
.feature-cta-card {
    position: absolute; bottom: 0; right: 20px;
    background: var(--primary); border-radius: var(--radius-md);
    padding: 16px 20px; display: flex; align-items: center; gap: 12px;
    box-shadow: var(--shadow-md);
}
.feature-cta-card > i { font-size: 28px; color: var(--accent); }
.feature-cta-card h4 { font-size: 13px; font-weight: 800; color: #fff; margin-bottom: 2px; }
.feature-cta-card p { font-size: 11px; color: rgba(255,255,255,0.6); margin: 0; }

.features-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; margin: 20px 0 26px; }
.feat-item {
    display: flex; gap: 12px; align-items: flex-start;
    padding: 14px; border-radius: var(--radius-md);
    background: var(--bg-light); border: 1px solid var(--border-light);
    transition: all 0.3s ease;
    min-width: 0;
}
.feat-item:hover { border-color: rgba(201,168,76,0.4); box-shadow: var(--shadow-sm); }
.feat-icon {
    width: 40px; height: 40px; border-radius: 10px; flex-shrink: 0;
    background: var(--accent-pale);
    display: flex; align-items: center; justify-content: center;
    font-size: 18px; color: var(--accent);
}
.feat-item > div:last-child { min-width: 0; }
.feat-item h4 { font-size: 13px; font-weight: 800; color: var(--primary); margin-bottom: 4px; }
.feat-item p { font-size: 12px; color: var(--text-muted); margin: 0; line-height: 1.6; }

/* HOW IT WORKS */
.how-section {
    padding: 70px 0;
    background: var(--bg-services);
}
.how-steps {
    display: flex; align-items: flex-start; gap: 0;
    margin-top: 44px; flex-wrap: wrap;
}
.how-step {
    flex: 1; min-width: 180px; text-align: center; padding: 0 10px;
    position: relative;
}
.how-step-num {
    font-family: var(--font-head); font-size: 36px; font-weight: 900;
    color: var(--accent); opacity: 0.25; line-height: 1;
    margin-bottom: -8px; position: relative; z-index: 1;
}
.how-step-img {
    width: 100%; border-radius: var(--radius-md);
    overflow: hidden; margin-bottom: 16px;
    box-shadow: var(--shadow-sm); position: relative; z-index: 2;
}
.how-step-img img { width: 100%; height: 150px; object-fit: cover; transition: transform 0.5s ease; }
.how-step:hover .how-step-img img { transform: scale(1.05); }
.how-step h4 { font-size: 14px; font-weight: 800; color: var(--primary); margin-bottom: 7px; }
.how-step p { font-size: 12.5px; color: var(--text-muted); line-height: 1.65; }
.how-step-arrow {
    display: flex; align-items: center; justify-content: center;
    padding-top: 60px; color: var(--accent); font-size: 22px; opacity: 0.6;
}

/* ── 15. PILLARS SECTION ── */
.pillars-section {
    padding: 50px 0 50px;
    background: linear-gradient(180deg, #fff 0%, var(--bg-services) 100%);
}
.pillars-grid {
    display: grid; grid-template-columns: repeat(3, 1fr);
    gap: 24px; margin-top: 40px;
}
.pillar-card {
    background: #fff; border-radius: var(--radius-xl);
    border: 1px solid var(--border-light);
    overflow: hidden; display: flex; flex-direction: column;
    transition: transform 0.35s ease, box-shadow 0.35s ease;
    box-shadow: var(--shadow-sm);
}
.pillar-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-lg); }
.pillar-cover { height: 220px; overflow: hidden; position: relative; }
.pillar-cover img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s ease; }
.pillar-card:hover .pillar-cover img { transform: scale(1.06); }
.pillar-overlay {
    position: absolute; inset: 0;
    background: linear-gradient(180deg, rgba(47,36,14,0.12) 0%, rgba(47,36,14,0.6) 100%);
}
.pillar-badge-tag {
    position: absolute; bottom: 14px; right: 14px;
    background: var(--accent); color: var(--primary);
    font-size: 11px; font-weight: 800; padding: 4px 14px;
    border-radius: 99px;
}
.pillar-body { padding: 26px 26px 28px; flex: 1; display: flex; flex-direction: column; }
.pillar-icon {
    width: 50px; height: 50px; border-radius: 14px;
    background: var(--accent-pale); border: 1px solid rgba(201,168,76,0.25);
    display: flex; align-items: center; justify-content: center;
    font-size: 22px; color: var(--accent);
    margin-bottom: 14px;
}
.pillar-body h3 { font-size: 18px; font-weight: 900; color: var(--primary); margin-bottom: 10px; line-height: 1.3; }
.pillar-body p { font-size: 13.5px; color: var(--text-muted); line-height: 1.75; flex: 1; margin-bottom: 20px; }
.pillar-btn {
    display: inline-flex; align-items: center; gap: 8px;
    padding: 12px 24px; border-radius: 50px;
    font-size: 13px; font-weight: 800;
    transition: all 0.3s ease; align-self: flex-start;
}
.pillar-btn--wa { background: #25d366; color: #fff; box-shadow: 0 6px 18px rgba(37,211,102,0.3); }
.pillar-btn--wa:hover { background: #1ebe5d; color: #fff; transform: translateX(-3px); }
.pillar-btn--gold { background: var(--accent); color: var(--primary); box-shadow: 0 6px 18px var(--accent-glow); }
.pillar-btn--gold:hover { background: var(--accent-light); color: var(--primary); transform: translateX(-3px); }

/* ── 16. TESTIMONIALS ── */
.testimonials-section {
    padding: 70px 0;
    background: linear-gradient(135deg, #001a3a 0%, #002249 60%, #001530 100%);
    position: relative; overflow: hidden;
}
.testimonials-section::before {
    content: ''; position: absolute; top: -100px; right: -100px;
    width: 400px; height: 400px; border-radius: 50%;
    background: radial-gradient(circle, rgba(201,168,76,0.1) 0%, transparent 70%);
    pointer-events: none;
}
.testi-card {
    background: rgba(255,255,255,0.06); border: 1px solid rgba(255,255,255,0.1);
    border-radius: var(--radius-lg); padding: 24px;
    backdrop-filter: blur(8px);
    transition: border-color 0.3s ease, background 0.3s ease;
}
.testi-card:hover { border-color: rgba(201,168,76,0.3); background: rgba(255,255,255,0.09); }
.testi-stars { margin-bottom: 12px; }
.testi-stars i { color: var(--accent); font-size: 14px; margin-inline-end: 2px; }
.testi-card p { font-size: 13.5px; color: rgba(255,255,255,0.8); line-height: 1.75; margin-bottom: 16px; font-style: italic; }
.testi-author { display: flex; align-items: center; gap: 10px; }
.testi-author-avatar { font-size: 30px; color: rgba(255,255,255,0.3); }
.testi-author strong { display: block; font-size: 14px; font-weight: 800; color: #fff; }
.testi-author span { display: block; font-size: 12px; color: rgba(255,255,255,0.5); }
.testimonials-pagination { margin-top: 20px; text-align: center; }
.testimonials-pagination .swiper-pagination-bullet {
    background: rgba(255,255,255,0.3); width: 7px; height: 7px; margin: 0 3px;
}
.testimonials-pagination .swiper-pagination-bullet-active {
    background: var(--accent); width: 22px; border-radius: 99px;
}

/* ── 17. FAQ ── */
.faq-section {
    padding: 50px 0 50px;
    background: var(--bg-light);
}
.custom-accordion .accordion-item {
    background: #fff; border: 1px solid var(--border-light);
    border-radius: var(--radius-md) !important;
    margin-bottom: 10px; overflow: hidden;
}
.custom-accordion .accordion-button {
    font-family: var(--font-head); font-size: 14px; font-weight: 800;
    color: var(--primary); background: #fff; padding: 16px 20px;
    border-radius: var(--radius-md) !important;
    box-shadow: none !important; text-align: right;
}
.custom-accordion .accordion-button:not(.collapsed) {
    color: var(--accent); background: var(--accent-pale);
}
.custom-accordion .accordion-button::after {
    filter: none; background-image: none;
    content: '\f282'; font-family: 'Bootstrap-icons';
    width: auto; height: auto; font-size: 14px;
    transition: transform 0.3s ease;
    margin-right: auto; margin-left: 0;
}
.custom-accordion .accordion-button:not(.collapsed)::after { transform: rotate(180deg); }
.custom-accordion .accordion-body {
    font-size: 13.5px; color: var(--text-muted); line-height: 1.75;
    padding: 0 20px 18px; background: var(--accent-pale);
}

/* ── 18. BLOG ── */
.blog-section {
    padding: 50px 0 50px;
    background: var(--bg-services);
}
.blog-grid {
    display: grid; grid-template-columns: repeat(4, 1fr);
    gap: 10px;
}
.blog-card {
    background: #fff; border-radius: var(--radius-lg);
    border: 1px solid var(--border-light);
    overflow: hidden;
    transition: transform 0.35s ease, box-shadow 0.35s ease;
    display: flex; flex-direction: column;
    text-decoration: none;
    color: inherit;
    cursor: pointer;
}
.blog-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); border-color: rgba(201,168,76,0.4); }
.blog-card-img { position: relative; height: 180px; overflow: hidden; }
.blog-card-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s ease; }
.blog-card:hover .blog-card-img img { transform: scale(1.06); }
.blog-category {
    position: absolute; top: 12px; right: 12px;
    background: var(--accent); color: var(--primary);
    font-size: 10px; font-weight: 800; padding: 3px 10px;
    border-radius: 99px;
}
.blog-card-body { padding: 18px; flex: 1; display: flex; flex-direction: column; }
.blog-meta { font-size: 11px; color: var(--text-muted); margin-bottom: 8px; display: flex; align-items: center; gap: 5px; }
.blog-meta i { color: var(--accent); }
.blog-card-body h3 { font-size: 14px; font-weight: 800; color: var(--primary); line-height: 1.4; flex: 1; margin-bottom: 14px; }
.blog-card-body h3 a { color: inherit; transition: color 0.25s; }
.blog-card-body h3 a:hover { color: var(--accent); }
.blog-readmore {
    display: inline-flex; align-items: center; gap: 6px;
    font-size: 12px; font-weight: 800; color: var(--accent);
    transition: gap 0.25s ease;
}
.blog-card:hover .blog-readmore { gap: 10px; }

/* ── 19. FOOTER ── */
.site-footer { background: var(--primary); color: rgba(255,255,255,0.8); }
.footer-top { padding: 60px 0 40px; }

.footer-col { }
.footer-logo { margin-bottom: 16px; }
.footer-logo img { height: 75px; width: auto; opacity: 0.9; }
.footer-about { font-size: 13px; line-height: 1.75; color: rgba(255,255,255,0.6); margin-bottom: 16px; }
.footer-vision {
    display: flex; align-items: center; gap: 10px; margin-bottom: 16px;
    padding: 10px 14px; border-radius: var(--radius-sm);
    background: rgba(255,255,255,0.06); border: 1px solid rgba(255,255,255,0.1);
}
.footer-vision-logo { height: 80px; width: auto; object-fit: contain; filter: brightness(0) invert(1) opacity(0.7); }
.footer-vision-text { font-size: 12px; font-weight: 700; color: rgba(255,255,255,0.55); }

.footer-socials { display: flex; align-items: center; gap: 8px; margin-bottom: 20px; }
.footer-socials a {
    width: 34px; height: 34px; border-radius: 10px;
    background: rgba(255,255,255,0.08); border: 1px solid rgba(255,255,255,0.12);
    display: flex; align-items: center; justify-content: center;
    color: rgba(255,255,255,0.7); font-size: 15px;
    transition: all 0.25s ease;
}
.footer-socials a:hover { background: var(--accent); border-color: var(--accent); color: var(--primary); transform: translateY(-3px); }

.footer-contact-items { display: flex; flex-direction: column; gap: 10px; }
.fci {
    display: flex; align-items: center; gap: 10px;
    font-size: 12.5px; color: rgba(255,255,255,0.65);
    min-width: 0;
}
.fci i { color: var(--accent); font-size: 14px; flex-shrink: 0; }
.fci a { color: rgba(255,255,255,0.65); transition: color 0.25s; direction: ltr; unicode-bidi: embed; }
.fci a:hover { color: var(--accent); }

.fci a,
.booking-phone-btn,
.booking-wa-btn,
.auth-otp-message,
.auth-resend-note {
    overflow-wrap: anywhere;
}

.footer-col-title {
    font-size: 16px; font-weight: 900; color: #fff;
    margin-bottom: 10px; padding-bottom: 12px;
    border-bottom: 1px solid rgba(255,255,255,0.12);
}
.footer-col-desc { font-size: 12.5px; color: rgba(255,255,255,0.55); margin-bottom: 18px; line-height: 1.7; }
.footer-links { display: flex; flex-direction: column; gap: 7px; }
.footer-links a {
    display: flex; align-items: center; gap: 6px;
    font-size: 12.5px; color: rgba(255,255,255,0.65);
    padding: 4px 0; transition: color 0.25s, padding 0.25s;
}
.footer-links i { color: var(--accent); font-size: 10px; }
.footer-links a:hover { color: var(--accent); padding-right: 6px; }
.footer-wa-btn, .footer-site-btn {
    display: inline-flex; align-items: center; gap: 8px;
    padding: 10px 20px; border-radius: 99px;
    font-size: 13px; font-weight: 700; margin-top: 16px;
    transition: all 0.3s ease;
}
.footer-wa-btn {
    background: rgba(37,211,102,0.12); border: 1px solid rgba(37,211,102,0.25);
    color: #2de370;
}
.footer-wa-btn:hover { background: #25d366; color: #fff; }
.footer-site-btn {
    background: rgba(201,168,76,0.12); border: 1px solid rgba(201,168,76,0.25);
    color: var(--accent);
}
.footer-site-btn:hover { background: var(--accent); color: var(--primary); }

.footer-homakx-grid { display: flex; flex-direction: column; gap: 14px; }
.fhg-item strong { font-size: 13px; font-weight: 800; color: rgba(255,255,255,0.8); display: block; margin-bottom: 8px; }
.fhg-item .footer-links { margin-bottom: 4px; }

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.1);
    padding: 18px 0;
}
.footer-bottom-inner {
    display: flex; align-items: center; justify-content: space-between;
    flex-wrap: wrap; gap: 12px;
}
.footer-bottom p { font-size: 12px; color: rgba(255,255,255,0.45); margin: 0; }
.footer-legal { display: flex; align-items: center; gap: 14px; }
.footer-legal a { font-size: 12px; color: rgba(255,255,255,0.45); transition: color 0.25s; }
.footer-legal a:hover { color: var(--accent); }

/* ── 20. LOGIN MODAL ── */
body.auth-modal-open { overflow: hidden; }

.auth-modal {
    position: fixed; inset: 0; z-index: 1200;
    display: grid; place-items: center;
    opacity: 0; pointer-events: none;
    transition: opacity 0.28s ease;
}
.auth-modal.is-open { opacity: 1; pointer-events: auto; }
.auth-modal__backdrop {
    position: absolute; inset: 0;
    background:
        radial-gradient(circle at top right, rgba(201,168,76,0.2), transparent 35%),
        rgba(0, 18, 40, 0.72);
    backdrop-filter: blur(10px);
}
.auth-modal__dialog {
    position: relative; z-index: 1;
    width: min(100% - 24px, 520px);
    border-radius: 28px;
    background: linear-gradient(180deg, #fffaf0 0%, #ffffff 42%, #f7f9fc 100%);
    border: 1px solid rgba(201,168,76,0.22);
    box-shadow: 0 28px 80px rgba(0, 34, 73, 0.24);
    transform: translateY(18px) scale(0.98);
    transition: transform 0.28s ease;
    overflow: hidden;
}
.auth-modal.is-open .auth-modal__dialog { transform: translateY(0) scale(1); }
.auth-modal__close {
    position: absolute; top: 16px; left: 16px;
    width: 42px; height: 42px; border-radius: 50%;
    border: 1px solid rgba(0,34,73,0.08);
    background: rgba(255,255,255,0.85); color: var(--primary);
    display: inline-flex; align-items: center; justify-content: center;
    transition: all 0.25s ease;
}
.auth-modal__close:hover { background: var(--accent); color: var(--primary); transform: rotate(90deg); }
.auth-modal__content { padding: 34px 32px 30px; }
.auth-modal__header { margin-bottom: 24px; padding-left: 44px; }
.auth-modal__eyebrow {
    display: inline-flex; align-items: center; gap: 8px;
    margin-bottom: 10px; padding: 7px 14px; border-radius: 999px;
    background: rgba(201,168,76,0.14); color: var(--primary);
    font-size: 12px; font-weight: 800;
}
.auth-modal__title {
    margin: 0 0 10px;
    font-family: var(--font-head);
    font-size: clamp(24px, 4vw, 30px);
    color: var(--primary);
}
.auth-modal__desc {
    margin: 0;
    color: var(--text-muted);
    font-size: 14px;
    line-height: 1.85;
}
.auth-form { display: flex; flex-direction: column; gap: 14px; }
.auth-label {
    color: var(--primary);
    font-size: 14px;
    font-weight: 800;
}
.auth-phone-field {
    display: flex; align-items: center; gap: 10px;
    border: 1.5px solid var(--border-light);
    border-radius: 18px;
    background: #fff;
    padding: 10px 14px;
    box-shadow: inset 0 1px 0 rgba(255,255,255,0.9);
    transition: border-color 0.22s ease, box-shadow 0.22s ease, transform 0.22s ease;
}
.auth-phone-field:focus-within {
    border-color: var(--accent);
    box-shadow: 0 0 0 4px rgba(201,168,76,0.16);
    transform: translateY(-1px);
}
.auth-phone-field.is-invalid {
    border-color: #c23b3b;
    box-shadow: 0 0 0 4px rgba(194,59,59,0.12);
}
.auth-phone-prefix {
    direction: ltr; unicode-bidi: embed;
    color: var(--primary);
    font-size: 15px; font-weight: 900;
}
.auth-input {
    flex: 1;
    border: 0;
    outline: 0;
    background: transparent;
    color: var(--text-main);
    font-size: 15px;
    font-weight: 700;
    direction: ltr;
    text-align: left;
}
.auth-help, .auth-error {
    margin: -4px 2px 0;
    font-size: 12.5px;
    line-height: 1.7;
}
.auth-help { color: var(--text-muted); }
.auth-error {
    min-height: 22px;
    color: #c23b3b;
    font-weight: 700;
}
.auth-submit {
    width: 100%;
    border: 0;
    border-radius: 18px;
    padding: 14px 18px;
    background: linear-gradient(135deg, var(--primary), #0a4f71);
    color: #fff;
    font-size: 14px;
    font-weight: 900;
    cursor: pointer;
    box-shadow: 0 14px 34px rgba(0,34,73,0.18);
    transition: transform 0.25s ease, box-shadow 0.25s ease, filter 0.25s ease;
}
.auth-submit:hover { transform: translateY(-2px); box-shadow: 0 18px 40px rgba(0,34,73,0.22); filter: brightness(1.02); }
.auth-otp-meta {
    display: flex; align-items: center; justify-content: space-between;
    gap: 14px; flex-wrap: wrap;
    margin-bottom: 18px;
}
.auth-otp-message {
    margin: 0;
    color: var(--text-main);
    font-size: 14px;
}
.auth-link-btn {
    border: 0;
    padding: 0;
    background: transparent;
    color: var(--primary);
    font-size: 13px;
    font-weight: 800;
    text-decoration: underline;
    text-underline-offset: 4px;
    cursor: pointer;
}
.auth-link-btn:hover { color: var(--accent); }
.otp-group {
    display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 12px;
}
.otp-input {
    height: 62px;
    border-radius: 18px;
    border: 1.5px solid var(--border-light);
    background: #fff;
    text-align: center;
    font-size: 24px;
    font-weight: 900;
    color: var(--primary);
    outline: 0;
    transition: border-color 0.22s ease, box-shadow 0.22s ease, transform 0.22s ease;
}
.otp-input:focus {
    border-color: var(--accent);
    box-shadow: 0 0 0 4px rgba(201,168,76,0.16);
    transform: translateY(-1px);
}
.auth-input.is-invalid,
.otp-input.is-invalid,
.auth-input.is-invalid:focus,
.otp-input.is-invalid:focus {
    border-color: #c23b3b;
    box-shadow: 0 0 0 4px rgba(194,59,59,0.12);
}
.auth-resend-row {
    display: flex; align-items: center; justify-content: space-between;
    gap: 16px; flex-wrap: wrap;
    margin-top: 18px;
    padding-top: 18px;
    border-top: 1px solid rgba(0,34,73,0.08);
}
.auth-resend-note {
    color: var(--text-muted);
    font-size: 12.5px;
    font-weight: 700;
}
.auth-link-btn:disabled {
    color: #9ba8b4;
    text-decoration: none;
    cursor: not-allowed;
}
.auth-step--success {
    text-align: center;
    padding-top: 4px;
}
.auth-success-icon {
    width: 82px; height: 82px; border-radius: 26px;
    margin: 0 auto 18px;
    display: grid; place-items: center;
    background: radial-gradient(circle at top, rgba(201,168,76,0.32), rgba(201,168,76,0.08));
    color: var(--primary);
    font-size: 38px;
}
.auth-success-title {
    margin: 0 0 10px;
    color: var(--primary);
    font-family: var(--font-head);
    font-size: 24px;
}
.auth-success-text {
    max-width: 360px;
    margin: 0 auto 20px;
    color: var(--text-muted);
    font-size: 14px;
    line-height: 1.8;
}

/* ── 20. SCROLLBAR ── */
::-webkit-scrollbar { width: 5px; }
::-webkit-scrollbar-track { background: var(--bg-light); }
::-webkit-scrollbar-thumb { background: var(--accent); border-radius: 99px; }
::-webkit-scrollbar-thumb:hover { background: var(--accent-light); }

/* ── 21. RESPONSIVE ── */
@media (max-width: 1199px) {
    .services-grid { grid-template-columns: repeat(2, 1fr); }
    .pest-products-grid { grid-template-columns: repeat(2, 1fr); }
    .stats-grid { grid-template-columns: repeat(3, 1fr); }
    .blog-grid { grid-template-columns: repeat(1, 1fr); }
}
.pest-parent{transition: 0.3s;}
.pest-parent:hover{
    transform: scale(1.05);
}
.pest-parent .small{
    font-size: 11px;
}

@media (max-width: 991px) {
    body { padding-top: 0; }
    .site-header { top: 38px; }
    .site-header.scrolled { top: 0; }
    .topbar-wrap { padding: 6px 0; }
    .topbar-phone { display: none; }

    .hero-section { height: 70vh; }
    .slide-title { font-size: 28px; }
    .slide-content { padding: 120px 0 70px; }

    .booking-card { grid-template-columns: 1fr; }
    .booking-contact-wrap { padding: 28px 24px; }
    .booking-contact-inner { display: flex; align-items: center; flex-wrap: wrap; gap: 12px; }

    .pillars-grid { grid-template-columns: 1fr; max-width: 500px; margin-left: auto; margin-right: auto; }
    .stats-grid { grid-template-columns: repeat(3, 1fr); }

    .mega-menu-grid { grid-template-columns: 1fr; }
    .mega-dropdown:hover .mega-menu,
    .mega-dropdown .dropdown-menu.show { grid-template-columns: 1fr; }

    .how-steps { gap: 10px; }
    .how-step-arrow { padding-top: 30px; }

    .features-grid { grid-template-columns: 1fr; }
    .why-img-secondary { display: none; }
    .auth-modal__content { padding: 30px 22px 24px; }
    .auth-modal__header { padding-left: 34px; }
    .auth-modal__close { top: 14px; left: 14px; }
    .auth-otp-meta, .auth-resend-row { align-items: flex-start; }
}

@media (max-width: 767px) {
    .site-header { top: 0; }
    .topbar-wrap { display: none; }

    .hero-section { height: 50svh; min-height: 580px; }
    .slide-title { font-size: 24px; }
    .slide-tag { font-size: 11px; }
    .slide-desc { font-size: 13.5px; }
    .slide-actions { gap: 10px; }
    .btn-primary-hero, .btn-outline-hero { padding: 11px 20px; font-size: 13px; }
    .slide-trust { gap: 12px; }
    .hero-swiper-prev, .hero-swiper-next { width: 38px; height: 38px; font-size: 16px; }

    .booking-form-grid { grid-template-columns: 1fr; }

    .services-grid { grid-template-columns: 1fr; }
    .pest-products-grid { grid-template-columns: 1fr 1fr; }
    .stats-grid { grid-template-columns: repeat(2, 1fr); }
    .blog-grid { grid-template-columns: 1fr; }
    .pillars-grid { grid-template-columns: 1fr; }

    .about-imgs-wrap { padding: 10px; }
    .about-img-secondary { width: 120px; }
    .about-img-main img { height: 260px; }
    .about-rating-badge { top: 14px; left: 0; }

    .how-steps { flex-direction: column; align-items: stretch; }
    .how-step { flex: none; padding: 0; }
    .how-step-arrow { display: none; }
    .how-step-img img { height: 180px; }

    .feature-img-wrap { padding-bottom: 0; }
    .feature-cta-card {
        position: static;
        right: auto;
        margin-top: 16px;
        flex-wrap: wrap;
        width: 100%;
    }
    .booking-contact-inner {
        flex-direction: column;
        align-items: stretch;
    }

    .footer-bottom-inner { flex-direction: column; text-align: center; }
    .footer-legal { justify-content: center; }
    .auth-modal__header { padding-left: 28px; }

    #float-whatsapp { left: 14px; bottom: 78px; width: 48px; height: 48px; }
    #scroll-top { left: 14px; bottom: 18px; width: 40px; height: 40px; font-size: 16px; }

    .section-head { margin-bottom: 32px; }
    .section-title { font-size: clamp(20px, 5vw, 28px); }
}

@media (max-width: 480px) {
    .pest-products-grid { grid-template-columns: 1fr; }
    .stats-grid { grid-template-columns: 1fr 1fr; }
    .slide-title { font-size: 21px; }
    .booking-form-wrap { padding: 24px 20px; }
    .auth-modal__dialog { width: min(100% - 16px, 520px); border-radius: 22px; }
    .otp-group { gap: 8px; }
    .otp-input { height: 56px; font-size: 22px; }
}

/* ── UTILITY ── */
.animate__fadeIn { animation-duration: 0.4s; }
