/*
Theme Name: EFL Logistics
Theme URI: https://efllogistics.local
Author: EFL Logistics
Author URI: https://efllogistics.local
Description: Custom theme for EFL Logistics.
Version: 1.0.0
Requires at least: 6.0
Tested up to: 7.0
Requires PHP: 8.0
License: GNU General Public License v2 or later
License URI: https://www.gnu.org/licenses/gpl-2.0.html
Text Domain: efl-logistics
*/


/* =============================================================================
   CUSTOM PROPERTIES
   ============================================================================= */

:root {
	/* Brand — Orange accent + Navy base */
	--color-brand:          #F07C00;
	--color-brand-dark:     #d06400;
	--color-brand-light:    #FF9500;
	--color-brand-bg:       #F4F7FF;
	--color-navy:           #0B2B5C;
	--color-navy-dark:      #061B3D;

	/* UI colours */
	--color-white:          #ffffff;
	--color-off-white:      #F4F7FF;
	--color-gray-light:     #eef0f4;
	--color-text:           #1E293B;
	--color-text-muted:     #64748B;
	--color-border:         #E2E8F0;
	--color-stars:          #FFB800;

	/* Header / nav */
	--color-header-bg:      #ffffff;
	--color-nav-text:       #1E293B;
	--color-nav-hover:      var(--color-brand);

	/* Footer */
	--color-footer-bg:      #061B3D;
	--color-footer-mid:     #0B2B5C;
	--color-footer-bottom:  #040f24;
	--color-footer-text:    rgba(255,255,255,.7);
	--color-footer-heading: #ffffff;
	--color-footer-link:    rgba(255,255,255,.6);
	--color-footer-hover:   var(--color-brand-light);

	/* Typography */
	--font-heading: 'Barlow Condensed', system-ui, Arial, sans-serif;
	--font-sans:    'Barlow', system-ui, -apple-system, "Segoe UI", Arial, sans-serif;

	/* Spacing */
	--space-xs:   0.25rem;
	--space-sm:   0.5rem;
	--space-md:   1rem;
	--space-lg:   1.5rem;
	--space-xl:   2rem;
	--space-2xl:  3rem;
	--space-3xl:  4rem;
	--space-section: 5rem;

	/* Layout */
	--container-max:  1200px;
	--container-pad:  1.5rem;
	--header-height:  72px;
	--radius:         8px;
	--radius-sm:      4px;
	--radius-lg:      16px;
	--transition:     0.2s ease;

	/* Shadows */
	--shadow-sm:     0 1px 3px rgba(0,0,0,.08);
	--shadow-md:     0 4px 16px rgba(0,0,0,.12);
	--shadow-lg:     0 8px 32px rgba(0,0,0,.16);
	--shadow-header: 0 2px 12px rgba(0,0,0,.09);
	--shadow-card:   0 2px 20px rgba(0,0,0,.08);
}


/* =============================================================================
   RESET & BASE
   ============================================================================= */

*,
*::before,
*::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; font-size: 16px; }

body {
	font-family: var(--font-sans);
	font-size: 1rem;
	line-height: 1.65;
	color: var(--color-text);
	background: var(--color-white);
	-webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4, h5, h6 {
	font-family: var(--font-heading);
	line-height: 1.15;
	font-weight: 700;
	color: var(--color-text);
}

img { max-width: 100%; height: auto; display: block; }
a { color: var(--color-brand); text-decoration: none; transition: color var(--transition); }
a:hover { color: var(--color-brand-dark); }
ul { list-style: none; }
[id] { scroll-margin-top: var(--header-height); }


/* =============================================================================
   UTILITY
   ============================================================================= */

.container {
	width: 100%;
	max-width: var(--container-max);
	margin-inline: auto;
	padding-inline: var(--container-pad);
}

.sr-only {
	position: absolute; width: 1px; height: 1px; padding: 0;
	overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border: 0;
}


/* =============================================================================
   GLOBAL BUTTONS
   ============================================================================= */

.btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: var(--space-sm);
	padding: 0.7rem 1.5rem;
	font-family: var(--font-sans);
	font-size: 0.9375rem;
	font-weight: 600;
	border: 2px solid transparent;
	border-radius: var(--radius);
	cursor: pointer;
	transition: background-color var(--transition), color var(--transition),
	            box-shadow var(--transition), transform var(--transition), border-color var(--transition);
	white-space: nowrap;
	text-decoration: none;
}

.btn--lg { padding: 0.875rem 2rem; font-size: 1.0625rem; }

.btn--primary {
	background: var(--color-brand);
	color: var(--color-white);
	box-shadow: 0 2px 8px rgba(240,124,0,.28);
}
.btn--primary:hover {
	background: var(--color-brand-dark);
	color: var(--color-white);
	box-shadow: 0 4px 14px rgba(240,124,0,.38);
	transform: translateY(-1px);
}
.btn--primary:active { transform: translateY(0); box-shadow: none; }

.btn--white {
	background: var(--color-white);
	color: var(--color-brand);
	border-color: var(--color-white);
}
.btn--white:hover {
	background: #f0f0f0;
	color: var(--color-brand-dark);
	border-color: #f0f0f0;
}

.btn--ghost {
	background: transparent;
	color: var(--color-white);
	border-color: rgba(255,255,255,.5);
}
.btn--ghost:hover {
	border-color: var(--color-white);
	color: var(--color-white);
}

.btn--text {
	background: none;
	color: var(--color-brand);
	padding-inline: 0;
	border: none;
	font-weight: 500;
}
.btn--text:hover { color: var(--color-brand-dark); text-decoration: underline; }

.btn--block { display: flex; width: 100%; margin-top: var(--space-lg); }


/* =============================================================================
   HEADER
   ============================================================================= */

#site-header {
	position: sticky; top: 0; z-index: 1000;
	width: 100%; height: var(--header-height);
	background: var(--color-header-bg);
	box-shadow: var(--shadow-header);
	transition: box-shadow var(--transition);
}
#site-header.is-scrolled { box-shadow: var(--shadow-md); }

.header-inner {
	display: flex; align-items: center; justify-content: space-between;
	gap: var(--space-lg); height: 100%;
	max-width: var(--container-max); margin-inline: auto; padding-inline: var(--container-pad);
}

/* Logo */
.header-logo { flex-shrink: 0; }
.header-logo a { display: flex; align-items: center; }
.header-logo img { height: 44px; width: auto; object-fit: contain; }

/* Primary nav */
.header-nav { flex: 1; display: flex; justify-content: center; }
.header-nav .nav-menu { display: flex; align-items: center; gap: var(--space-xs); }
.header-nav .nav-menu li { position: relative; }
.header-nav .nav-menu a {
	display: block; padding: var(--space-sm) var(--space-md);
	font-size: 0.9375rem; font-weight: 500; color: var(--color-nav-text);
	border-radius: var(--radius-sm);
	transition: color var(--transition), background-color var(--transition);
	white-space: nowrap;
}
.header-nav .nav-menu a:hover,
.header-nav .nav-menu .current-menu-item > a,
.header-nav .nav-menu .current-page-ancestor > a {
	color: var(--color-brand); background: var(--color-brand-bg);
}

/* Dropdown */
.header-nav .nav-menu .sub-menu {
	display: none; position: absolute; top: calc(100% + 4px); left: 0;
	min-width: 200px; background: var(--color-white);
	border: 1px solid var(--color-border); border-radius: var(--radius);
	box-shadow: var(--shadow-md); z-index: 100; flex-direction: column;
}
.header-nav .nav-menu li:hover > .sub-menu,
.header-nav .nav-menu li:focus-within > .sub-menu { display: flex; }
.header-nav .nav-menu .sub-menu a {
	padding: var(--space-sm) var(--space-md); border-radius: 0; font-weight: 400;
}
.header-nav .nav-menu .sub-menu li:first-child a { border-radius: var(--radius) var(--radius) 0 0; }
.header-nav .nav-menu .sub-menu li:last-child a  { border-radius: 0 0 var(--radius) var(--radius); }

/* CTA button */
.header-cta { flex-shrink: 0; }
.btn-call {
	display: inline-flex; align-items: center; gap: var(--space-sm);
	padding: 0.625rem var(--space-lg);
	background: var(--color-brand); color: var(--color-white);
	font-size: 0.9375rem; font-weight: 600; border-radius: var(--radius);
	white-space: nowrap;
	transition: background-color var(--transition), box-shadow var(--transition), transform var(--transition);
	box-shadow: 0 2px 8px rgba(240,124,0,.28);
}
.btn-call:hover {
	background: var(--color-brand-dark); color: var(--color-white);
	box-shadow: 0 4px 14px rgba(240,124,0,.38); transform: translateY(-1px);
}
.btn-call:active { transform: translateY(0); box-shadow: none; }

/* Hamburger */
.nav-toggle {
	display: none; flex-direction: column; justify-content: center; gap: 5px;
	width: 40px; height: 40px; padding: var(--space-sm);
	background: none; border: none; cursor: pointer; border-radius: var(--radius-sm);
	transition: background-color var(--transition);
}
.nav-toggle:hover { background: var(--color-off-white); }
.hamburger-bar {
	display: block; width: 22px; height: 2px;
	background: var(--color-nav-text); border-radius: 2px;
	transition: transform var(--transition), opacity var(--transition);
}
.nav-toggle[aria-expanded="true"] .hamburger-bar:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] .hamburger-bar:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] .hamburger-bar:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }


/* =============================================================================
   MAIN CONTENT (non-homepage)
   ============================================================================= */

#main-content { min-height: 60vh; padding-block: var(--space-3xl); }
.home #main-content { padding-block: 0; min-height: 0; }


/* =============================================================================
   FOOTER
   ============================================================================= */

#site-footer { background: var(--color-footer-bg); color: var(--color-footer-text); font-size: 0.9375rem; }

.footer-top {
	padding: var(--space-3xl) var(--container-pad) var(--space-2xl);
	max-width: var(--container-max); margin-inline: auto;
	border-bottom: 1px solid rgba(255,255,255,.07);
}
.footer-brand { display: flex; flex-direction: column; gap: var(--space-md); }
.footer-brand img { height: 48px; width: auto; object-fit: contain; filter: brightness(0) invert(1); opacity: .9; }
.footer-tagline { color: var(--color-footer-text); font-size: 0.9375rem; font-style: italic; max-width: 320px; }

.footer-middle { background: var(--color-footer-mid); padding-block: var(--space-3xl); }
.footer-columns {
	display: grid; grid-template-columns: repeat(4, 1fr); gap: var(--space-2xl);
	max-width: var(--container-max); margin-inline: auto; padding-inline: var(--container-pad);
}
.footer-col-title { color: var(--color-footer-heading); font-size: 0.875rem; font-weight: 700; text-transform: uppercase; letter-spacing: .08em; margin-bottom: var(--space-lg); }
.footer-nav-list { display: flex; flex-direction: column; gap: var(--space-sm); }
.footer-nav-list a { color: var(--color-footer-link); font-size: 0.9375rem; transition: color var(--transition), padding-left var(--transition); display: inline-block; }
.footer-nav-list a:hover { color: var(--color-footer-hover); padding-left: var(--space-xs); }
.footer-col > div { margin: 0; }

.footer-contact-list { display: flex; flex-direction: column; gap: var(--space-md); }
.footer-contact-list li { display: flex; align-items: flex-start; gap: var(--space-sm); color: var(--color-footer-text); line-height: 1.5; }
.footer-contact-list svg { flex-shrink: 0; margin-top: 2px; color: var(--color-brand); }
.footer-contact-list a { color: var(--color-footer-link); }
.footer-contact-list a:hover { color: var(--color-footer-hover); }

.footer-social { display: flex; gap: var(--space-sm); margin-top: var(--space-xl); }
.social-icon {
	display: inline-flex; align-items: center; justify-content: center;
	width: 38px; height: 38px; background: rgba(255,255,255,.08); color: var(--color-footer-text);
	border-radius: 50%; transition: background-color var(--transition), color var(--transition), transform var(--transition);
}
.social-icon:hover { background: var(--color-brand); color: var(--color-white); transform: translateY(-2px); }

.footer-bottom { background: var(--color-footer-bottom); padding-block: var(--space-lg); }
.footer-bottom-inner {
	display: flex; align-items: center; justify-content: space-between; gap: var(--space-lg); flex-wrap: wrap;
	max-width: var(--container-max); margin-inline: auto; padding-inline: var(--container-pad);
}
.copyright { color: var(--color-footer-text); font-size: 0.875rem; }
.copyright a { color: var(--color-footer-text); }
.copyright a:hover { color: var(--color-footer-hover); }
.footer-bottom-links { display: flex; gap: var(--space-lg); }
.footer-bottom-links a { color: var(--color-footer-text); font-size: 0.875rem; }
.footer-bottom-links a:hover { color: var(--color-footer-hover); }


/* =============================================================================
   HOMEPAGE — SHARED SECTION STYLES
   ============================================================================= */

.hp-section { padding-block: var(--space-section); }
.hp-section--gray { background: var(--color-off-white); }

.hp-section-header { margin-bottom: var(--space-3xl); }
.hp-section-header--center { text-align: center; }
.hp-section-header h2 { font-size: clamp(1.75rem, 3.5vw, 2.5rem); margin-bottom: var(--space-md); }
.hp-section-sub { color: var(--color-text-muted); font-size: 1.0625rem; max-width: 600px; margin-top: var(--space-sm); }
.hp-section-header--center .hp-section-sub { margin-inline: auto; }

/* Decorative rule */
.hp-rule {
	display: block; width: 56px; height: 3px;
	background: var(--color-brand); border-radius: 2px;
	margin-block: var(--space-md);
}
.hp-section-header--center .hp-rule { margin-inline: auto; }

/* Star rating row */
.hp-rating { display: flex; align-items: center; gap: 0.4rem; flex-wrap: wrap; }
.hp-rating__stars { color: var(--color-stars); font-size: 1.125rem; letter-spacing: 2px; }
.hp-rating__score { font-size: 1.125rem; font-weight: 700; }
.hp-rating__count { color: var(--color-text-muted); font-size: 0.9rem; }


/* =============================================================================
   HOMEPAGE — 1. HERO
   ============================================================================= */

.hp-hero {
	background: var(--color-navy);
	padding-block: 0;
	position: relative;
	overflow: hidden;
	min-height: 92vh;
	display: flex;
	align-items: center;
}
.hp-hero::before {
	content: '';
	position: absolute;
	inset: 0;
	background-image: url('https://images.unsplash.com/photo-1578662996442-48f60103fc96?auto=format&fit=crop&w=1920&q=80');
	background-size: cover;
	background-position: center;
	opacity: .15;
}
.hp-hero::after {
	content: '';
	position: absolute;
	inset: 0;
	background-image: radial-gradient(circle at 80% 20%, rgba(240,124,0,.15) 0%, transparent 50%),
	                  radial-gradient(circle at 10% 80%, rgba(255,255,255,.05) 0%, transparent 40%);
}

.hp-hero__inner {
	display: grid;
	grid-template-columns: 1fr 1fr;
	align-items: center;
	gap: 60px;
	max-width: var(--container-max);
	margin-inline: auto;
	padding: 80px var(--container-pad);
	position: relative;
	z-index: 1;
	width: 100%;
}

/* Media */
.hp-hero__main-img img {
	width: 100%; height: auto; border-radius: var(--radius); object-fit: cover;
	box-shadow: var(--shadow-md);
}
.hp-hero__thumbs {
	display: grid; grid-template-columns: repeat(4, 1fr); gap: 0.5rem; margin-top: 0.5rem;
}
.hp-hero__thumbs img { width: 100%; aspect-ratio: 4/3; object-fit: cover; border-radius: var(--radius-sm); }

/* Content */
.hp-hero__rating { margin-bottom: var(--space-md); color: rgba(255,255,255,.85); }
.hp-hero__rating .hp-rating__stars { color: #FFB800; }
.hp-hero__rating .hp-rating__score,
.hp-hero__rating .hp-rating__count { color: rgba(255,255,255,.85); }
.hp-hero__headline {
	font-family: var(--font-heading);
	font-size: clamp(2.25rem, 5.5vw, 4rem);
	font-weight: 800;
	line-height: 1.05;
	color: var(--color-white);
	margin-bottom: var(--space-lg);
}
.hp-hero__headline span { color: var(--color-brand); }

.hp-hero__sub {
	font-size: 1.0625rem;
	color: rgba(255,255,255,.78);
	margin-bottom: var(--space-xl);
	line-height: 1.75;
	max-width: 520px;
}
.hp-hero__sub strong { color: var(--color-brand-light); font-weight: 800; }

.hp-hero__offer {
	display: flex; flex-direction: column; gap: 0.25rem;
	padding: var(--space-md) var(--space-lg);
	background: rgba(240,124,0,.12);
	border-left: 3px solid var(--color-brand);
	border-radius: 0 var(--radius) var(--radius) 0;
	margin-bottom: var(--space-lg);
}
.hp-hero__offer-line { font-weight: 600; color: var(--color-brand-light); font-size: 1rem; }
.hp-hero__offer-note { font-size: 0.875rem; color: rgba(255,255,255,.6); }

.hp-hero__actions {
	display: flex; align-items: center; gap: var(--space-md); flex-wrap: wrap;
	margin-bottom: var(--space-lg);
}

.hp-hero__badges {
	display: flex; flex-wrap: wrap; gap: var(--space-sm);
	margin-bottom: var(--space-lg);
}
.hp-badge {
	display: inline-flex; align-items: center; gap: 0.35rem;
	padding: 0.35rem 0.75rem;
	background: var(--color-white);
	border: 1px solid var(--color-border);
	border-radius: 100px;
	font-size: 0.8125rem;
	font-weight: 500;
	color: var(--color-text);
	box-shadow: var(--shadow-sm);
}
.hp-badge svg { color: var(--color-brand); flex-shrink: 0; }

.hp-hero__copy { font-size: 0.9375rem; color: rgba(255,255,255,.6); line-height: 1.7; }

/* Hero features row */
.hp-hero__features { display: flex; gap: 24px; flex-wrap: wrap; margin-top: var(--space-lg); }
.hp-hero__feat { display: flex; align-items: center; gap: 8px; color: rgba(255,255,255,.7); font-size: 14px; font-weight: 600; }
.hp-hero__feat-check { width: 20px; height: 20px; background: rgba(240,124,0,.2); border-radius: 50%; display: flex; align-items: center; justify-content: center; color: var(--color-brand-light); font-size: 11px; flex-shrink: 0; font-weight: 700; }


/* =============================================================================
   HOMEPAGE — 2. PROCESS (3 Steps)
   ============================================================================= */

.hp-process__grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: var(--space-2xl);
	position: relative;
}

/* Connector line between steps */
.hp-process__grid::before {
	content: '';
	position: absolute;
	top: 36px; left: calc(16.67% + 24px); right: calc(16.67% + 24px);
	height: 2px;
	background: linear-gradient(90deg, var(--color-brand) 0%, var(--color-brand-light) 100%);
	z-index: 0;
}

.hp-process__step {
	text-align: center;
	padding: var(--space-xl);
	background: var(--color-white);
	border: 1px solid var(--color-border);
	border-radius: var(--radius);
	box-shadow: var(--shadow-card);
	position: relative;
	z-index: 1;
	transition: transform var(--transition), box-shadow var(--transition);
}
.hp-process__step:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }

.hp-process__icon {
	display: inline-flex; align-items: center; justify-content: center;
	width: 72px; height: 72px; border-radius: 50%;
	background: var(--color-brand-bg);
	color: var(--color-brand);
	margin-bottom: var(--space-md);
}

.hp-process__num {
	font-family: var(--font-heading);
	font-size: 0.8125rem;
	font-weight: 700;
	color: var(--color-brand);
	letter-spacing: .1em;
	text-transform: uppercase;
	margin-bottom: var(--space-sm);
}

.hp-process__step h3 { font-size: 1.25rem; margin-bottom: var(--space-sm); }
.hp-process__step p  { color: var(--color-text-muted); font-size: 0.9375rem; line-height: 1.7; }


/* =============================================================================
   HOMEPAGE — 3 & 4. ALTERNATING IMAGE/TEXT (Benefits + Features)
   ============================================================================= */

.hp-alt {
	display: grid;
	grid-template-columns: 1fr 1fr;
	align-items: center;
	gap: var(--space-3xl);
	margin-bottom: var(--space-3xl);
}
.hp-alt:last-of-type { margin-bottom: 0; }

.hp-alt--img-right .hp-alt__text { order: -1; }

.hp-alt__img img {
	width: 100%; height: auto; border-radius: var(--radius);
	object-fit: cover; box-shadow: var(--shadow-md);
}

.hp-alt__tag {
	display: inline-block;
	font-size: 0.75rem; font-weight: 700; text-transform: uppercase; letter-spacing: .1em;
	color: var(--color-brand); margin-bottom: var(--space-sm);
}

.hp-alt__text h3 { font-size: clamp(1.375rem, 2.5vw, 1.875rem); margin-bottom: var(--space-md); }
.hp-alt__text p  { color: var(--color-text-muted); font-size: 1rem; line-height: 1.75; margin-bottom: var(--space-md); }
.hp-alt__text .btn { margin-top: var(--space-sm); }

/* Features social bar */
.hp-features__bar {
	display: flex; align-items: center; justify-content: center; flex-wrap: wrap;
	gap: var(--space-xl);
	padding: var(--space-xl) var(--container-pad);
	border-top: 1px solid var(--color-border);
	margin-top: var(--space-3xl);
}


/* =============================================================================
   HOMEPAGE — 5. WHAT'S INCLUDED
   ============================================================================= */

.hp-included__inner {
	display: grid; grid-template-columns: 1fr 1fr;
	align-items: center; gap: var(--space-3xl);
}

.hp-included__text h2 { font-size: clamp(1.75rem, 3vw, 2.25rem); margin-bottom: var(--space-md); }
.hp-included__text .hp-section-sub { margin-bottom: var(--space-xl); }

.hp-checklist {
	display: flex; flex-direction: column; gap: var(--space-md);
	margin-bottom: var(--space-xl);
}
.hp-checklist li {
	display: flex; align-items: flex-start; gap: var(--space-md);
	font-size: 1rem; line-height: 1.6;
}
.hp-checklist__icon {
	display: inline-flex; align-items: center; justify-content: center;
	flex-shrink: 0; width: 26px; height: 26px;
	background: var(--color-brand); color: var(--color-white);
	border-radius: 50%; font-size: 0.75rem; font-weight: 700;
}

.hp-included__img img {
	width: 100%; border-radius: var(--radius); box-shadow: var(--shadow-md);
}


/* =============================================================================
   HOMEPAGE — 6. SOCIAL PROOF
   ============================================================================= */

/* Carousel base */
.hp-carousel {
	position: relative;
	margin-bottom: var(--space-3xl);
}

.hp-carousel__track {
	overflow: hidden;
	position: relative;
}

.hp-carousel__slide {
	display: none;
	animation: fadeIn 0.4s ease;
}
.hp-carousel__slide.is-active { display: block; }

@keyframes fadeIn { from { opacity: 0; transform: translateY(8px); } to { opacity: 1; transform: translateY(0); } }

/* Prev/next buttons */
.hp-carousel__btn {
	position: absolute; top: 50%; transform: translateY(-50%);
	width: 44px; height: 44px;
	display: flex; align-items: center; justify-content: center;
	background: var(--color-white); border: 1px solid var(--color-border);
	border-radius: 50%; cursor: pointer; z-index: 2;
	box-shadow: var(--shadow-sm);
	transition: background-color var(--transition), box-shadow var(--transition);
}
.hp-carousel__btn:hover { background: var(--color-brand); color: var(--color-white); box-shadow: var(--shadow-md); }
.hp-carousel__prev { left: -22px; }
.hp-carousel__next { right: -22px; }

/* Dots */
.hp-carousel__dots {
	display: flex; justify-content: center; gap: var(--space-sm); margin-top: var(--space-lg);
}
.hp-carousel__dot {
	width: 10px; height: 10px; border-radius: 50%;
	background: var(--color-border); border: none; cursor: pointer;
	transition: background var(--transition), transform var(--transition);
}
.hp-carousel__dot.is-active { background: var(--color-brand); transform: scale(1.2); }

/* Text testimonials */
.hp-carousel--text { padding-inline: 2.5rem; }

.hp-testimonial {
	background: var(--color-white);
	border: 1px solid var(--color-border);
	border-radius: var(--radius);
	padding: var(--space-2xl);
	box-shadow: var(--shadow-card);
	max-width: 760px;
	margin-inline: auto;
}
.hp-testimonial__stars { color: var(--color-stars); font-size: 1.25rem; letter-spacing: 2px; margin-bottom: var(--space-md); }
.hp-testimonial__quote {
	font-size: 1.0625rem; line-height: 1.75;
	color: var(--color-text); font-style: italic;
	margin-bottom: var(--space-lg);
}
.hp-testimonial__author strong { display: block; font-weight: 700; color: var(--color-text); }
.hp-testimonial__author span  { font-size: 0.875rem; color: var(--color-text-muted); }

/* Video testimonials */
.hp-proof__video-heading { text-align: center; font-size: 1.5rem; margin-bottom: var(--space-xl); }
.hp-carousel--video { padding-inline: 2.5rem; }

.hp-video-card { background: var(--color-white); border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow-card); }
.hp-video-card__thumb { position: relative; }
.hp-video-card__thumb img { width: 100%; aspect-ratio: 3/2; object-fit: cover; }
.hp-video-card__play {
	position: absolute; inset: 0;
	display: flex; align-items: center; justify-content: center;
	background: rgba(0,0,0,.35);
	color: var(--color-white);
	cursor: pointer;
	transition: background var(--transition);
}
.hp-video-card__play:hover { background: rgba(131,166,0,.65); }
.hp-video-card__name { padding: var(--space-md); font-weight: 600; font-size: 0.9375rem; }

/* Social proof bar */
.hp-proof__bar {
	display: flex; align-items: center; justify-content: center; flex-wrap: wrap;
	gap: var(--space-xl); padding-top: var(--space-2xl);
	border-top: 1px solid var(--color-border);
}


/* =============================================================================
   HOMEPAGE — 7. COMPARISON TABLE
   ============================================================================= */

.hp-comparison__inner {
	display: grid; grid-template-columns: 1fr 1.3fr;
	align-items: start; gap: var(--space-3xl);
}

.hp-comparison__img img { width: 100%; border-radius: var(--radius); box-shadow: var(--shadow-md); }

.hp-compare-table {
	width: 100%; border-collapse: collapse;
	background: var(--color-white); border-radius: var(--radius);
	overflow: hidden; box-shadow: var(--shadow-card);
}

.hp-compare-table th,
.hp-compare-table td {
	padding: 0.875rem 1rem; text-align: center;
	border-bottom: 1px solid var(--color-border);
	font-size: 0.9375rem;
}

.hp-compare-table__feature-col { text-align: left; font-weight: 500; color: var(--color-text); width: 44%; }

.hp-compare-table thead th {
	background: var(--color-footer-bg); color: var(--color-white);
	font-size: 0.875rem; font-weight: 700; text-transform: uppercase; letter-spacing: .05em;
}
.hp-compare-table thead .hp-compare-table__us {
	background: var(--color-brand); color: var(--color-white);
}

.hp-compare-table td.hp-compare-table__us { background: #f8fdf0; }

.hp-compare-table tbody tr:last-child td { border-bottom: none; }
.hp-compare-table tbody tr:hover { background: var(--color-off-white); }
.hp-compare-table tbody tr:hover td.hp-compare-table__us { background: #f0fada; }

.hp-check { font-size: 1.25rem; font-weight: 700; }
.hp-check--yes { color: var(--color-brand); }
.hp-check--no  { color: #e05252; }


/* =============================================================================
   HOMEPAGE — 8. FAQ
   ============================================================================= */

.hp-faq__inner {
	display: grid; grid-template-columns: 1fr 1fr;
	align-items: start; gap: var(--space-3xl);
}

.hp-faq__left h2 { font-size: clamp(1.75rem, 3vw, 2.25rem); margin-bottom: var(--space-md); }
.hp-faq__left .hp-section-sub { margin-bottom: var(--space-xl); }

/* Accordion */
.hp-accordion { margin-bottom: var(--space-xl); }
.hp-accordion__item { border-bottom: 1px solid var(--color-border); }
.hp-accordion__item:first-child { border-top: 1px solid var(--color-border); }

.hp-accordion__trigger {
	display: flex; align-items: center; justify-content: space-between;
	width: 100%; padding: var(--space-lg) 0;
	background: none; border: none; cursor: pointer;
	font-family: var(--font-sans); font-size: 1rem; font-weight: 600;
	color: var(--color-text); text-align: left;
	gap: var(--space-md);
	transition: color var(--transition);
}
.hp-accordion__trigger:hover { color: var(--color-brand); }

.hp-accordion__icon {
	flex-shrink: 0; transition: transform 0.3s ease;
	stroke: currentColor; fill: none;
	stroke-width: 2; stroke-linecap: round; stroke-linejoin: round;
}
.hp-accordion__item.is-open .hp-accordion__icon { transform: rotate(180deg); }
.hp-accordion__item.is-open .hp-accordion__trigger { color: var(--color-brand); }

.hp-accordion__panel { padding-bottom: var(--space-lg); }
.hp-accordion__panel p { color: var(--color-text-muted); font-size: 0.9375rem; line-height: 1.75; }

/* FAQ image grid */
.hp-faq__grid {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 0.5rem;
}
.hp-faq__grid img { width: 100%; height: 100%; object-fit: cover; border-radius: var(--radius-sm); }
.hp-faq__grid-wide { grid-column: 1 / -1; aspect-ratio: 16/7; }
.hp-faq__grid img:not(.hp-faq__grid-wide) { aspect-ratio: 4/3; }


/* =============================================================================
   HOMEPAGE — 9. FINAL CTA BANNER
   ============================================================================= */

.hp-cta-final {
	background: var(--color-brand);
	padding-block: var(--space-section);
	color: var(--color-white);
}

.hp-cta-final .container { max-width: 900px; }

.hp-cta-final__content {
	display: grid; grid-template-columns: 1fr 1.1fr;
	align-items: start; gap: var(--space-3xl);
	margin-bottom: var(--space-2xl);
}

.hp-cta-final__headline h2 {
	font-size: clamp(1.875rem, 4vw, 2.75rem);
	color: var(--color-white);
	margin-bottom: var(--space-md);
}
.hp-cta-final__sub {
	color: rgba(255,255,255,.85); font-size: 1.0625rem;
	line-height: 1.7; margin-bottom: var(--space-lg);
}
.hp-cta-final__rating .hp-rating__stars { color: #ffe066; }
.hp-cta-final__rating .hp-rating__score,
.hp-cta-final__rating .hp-rating__count { color: rgba(255,255,255,.9); }

/* Social icons in CTA */
.hp-cta-final__social { justify-content: center; }

/* Form wrapper */
.hp-form-wrap {
	background: var(--color-white);
	border-radius: var(--radius);
	padding: var(--space-xl);
	box-shadow: 0 8px 32px rgba(0,0,0,.18);
}

/* Progress bar */
.hp-form__progress {
	height: 4px; background: var(--color-border);
	border-radius: 2px; margin-bottom: var(--space-md); overflow: hidden;
}
.hp-form__progress-fill {
	height: 100%; background: var(--color-brand); border-radius: 2px;
	transition: width 0.4s ease;
}

/* Step indicator dots */
.hp-form__steps-indicator {
	display: flex; align-items: center; justify-content: center;
	gap: 0; margin-bottom: var(--space-xl);
}
.hp-form__dot {
	display: flex; align-items: center; justify-content: center;
	width: 32px; height: 32px; border-radius: 50%;
	background: var(--color-border); color: var(--color-text-muted);
	font-size: 0.8125rem; font-weight: 700;
	transition: background var(--transition), color var(--transition);
}
.hp-form__dot.is-active { background: var(--color-brand); color: var(--color-white); }
.hp-form__dot-line { flex: 1; height: 2px; background: var(--color-border); max-width: 48px; }

/* Step content */
.hp-form__step-title { font-size: 1.25rem; margin-bottom: var(--space-xs); color: var(--color-text); }
.hp-form__step-sub   { color: var(--color-text-muted); font-size: 0.9rem; margin-bottom: var(--space-lg); }

/* Radio option cards */
.hp-form__options {
	display: grid; grid-template-columns: 1fr 1fr;
	gap: var(--space-sm); margin-bottom: var(--space-md);
}
.hp-form__option { cursor: pointer; }
.hp-form__option input { position: absolute; opacity: 0; width: 0; height: 0; }
.hp-form__option-card {
	display: flex; flex-direction: column; align-items: center;
	gap: var(--space-sm); padding: var(--space-md);
	border: 2px solid var(--color-border); border-radius: var(--radius);
	text-align: center; font-size: 0.9rem; font-weight: 500;
	color: var(--color-text); cursor: pointer;
	transition: border-color var(--transition), background var(--transition), color var(--transition);
}
.hp-form__option-card svg { color: var(--color-text-muted); transition: color var(--transition); }
.hp-form__option input:checked + .hp-form__option-card {
	border-color: var(--color-brand); background: var(--color-brand-bg); color: var(--color-brand-dark);
}
.hp-form__option input:checked + .hp-form__option-card svg { color: var(--color-brand); }
.hp-form__option-card:hover { border-color: var(--color-brand-light); }

/* Text inputs */
.hp-form__fields {
	display: grid; grid-template-columns: 1fr 1fr; gap: var(--space-md); margin-bottom: var(--space-md);
}
.hp-form__field { display: flex; flex-direction: column; gap: 0.35rem; }
.hp-form__field--full { grid-column: 1 / -1; }
.hp-form__field label { font-size: 0.875rem; font-weight: 600; color: var(--color-text); }
.hp-form__field label span { color: var(--color-brand); }
.hp-form__field input {
	padding: 0.7rem 1rem; border: 1.5px solid var(--color-border); border-radius: var(--radius-sm);
	font-family: var(--font-sans); font-size: 1rem; color: var(--color-text);
	transition: border-color var(--transition), box-shadow var(--transition);
}
.hp-form__field input:focus {
	outline: none; border-color: var(--color-brand);
	box-shadow: 0 0 0 3px rgba(131,166,0,.15);
}
.hp-form__field input.is-invalid { border-color: #e05252; }

.hp-form__error { color: #e05252; font-size: 0.8125rem; min-height: 1.2em; margin-bottom: var(--space-sm); }

.hp-form__nav { display: flex; justify-content: space-between; align-items: center; gap: var(--space-md); }
.hp-form__nav .btn--ghost { color: var(--color-text-muted); border-color: var(--color-border); }
.hp-form__nav .btn--ghost:hover { color: var(--color-text); border-color: var(--color-text); }

/* Success state */
.hp-form__success { text-align: center; padding: var(--space-xl) 0; }
.hp-form__success-icon {
	display: inline-flex; align-items: center; justify-content: center;
	width: 64px; height: 64px; border-radius: 50%;
	background: var(--color-brand); color: var(--color-white);
	font-size: 1.75rem; font-weight: 700; margin-bottom: var(--space-lg);
}
.hp-form__success h3 { font-size: 1.5rem; margin-bottom: var(--space-sm); }
.hp-form__success p  { color: var(--color-text-muted); }

/* Hero trust badge */
.hp-hero__trust-badge {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	background: rgba(240,124,0,.15);
	border: 1px solid rgba(240,124,0,.4);
	color: var(--color-brand-light);
	font-size: 0.8125rem;
	font-weight: 700;
	padding: 6px 14px;
	border-radius: 50px;
	margin-bottom: var(--space-md);
	letter-spacing: 0.02em;
}
.hp-hero__trust-dot {
	width: 7px;
	height: 7px;
	background: var(--color-brand-light);
	border-radius: 50%;
	flex-shrink: 0;
	animation: trust-pulse 2s ease-in-out infinite;
}
@keyframes trust-pulse {
	0%, 100% { opacity: 1; transform: scale(1); }
	50%       { opacity: .5; transform: scale(1.3); }
}

/* Hero image wrap */
.hp-hero__img-wrap { position: relative; display: flex; justify-content: center; }
.hp-hero__img-main { width: 100%; max-width: 520px; border-radius: 20px; object-fit: cover; height: 420px; display: block; box-shadow: 0 30px 80px rgba(0,0,0,.4); }

/* Float cards over hero image */
.hp-hero__float-card { position: absolute; background: white; border-radius: 12px; padding: 14px 18px; box-shadow: 0 10px 40px rgba(0,0,0,.2); display: flex; align-items: center; gap: 12px; }
.hp-hero__float-card--1 { bottom: -10px; left: -20px; }
.hp-hero__float-card--2 { top: -10px; right: -20px; }
.hp-hero__float-icon { width: 42px; height: 42px; background: var(--color-navy); border-radius: 10px; display: flex; align-items: center; justify-content: center; font-size: 20px; flex-shrink: 0; }
.hp-hero__float-label { font-size: 11px; color: var(--color-text-muted); font-weight: 500; }
.hp-hero__float-value { font-size: 16px; font-weight: 800; color: var(--color-navy); }

/* Testimonial avatars */
.hp-testimonial__author {
	display: flex;
	align-items: center;
	gap: var(--space-sm);
}
.hp-testimonial__avatar {
	width: 48px;
	height: 48px;
	border-radius: 50%;
	object-fit: cover;
	flex-shrink: 0;
	border: 2px solid var(--color-brand-bg);
}
.hp-testimonial__author div {
	display: flex;
	flex-direction: column;
}

/* Social icons — homepage shared */
.hp-social { display: flex; align-items: center; gap: var(--space-sm); }
.hp-social__icon {
	display: inline-flex; align-items: center; justify-content: center;
	width: 40px; height: 40px; border-radius: 50%;
	background: rgba(255,255,255,.15); color: var(--color-white);
	transition: background var(--transition), transform var(--transition);
}
.hp-social__icon:hover { background: rgba(255,255,255,.3); transform: translateY(-2px); }

/* Social icons in feature bar / proof bar (on white background) */
.hp-features__bar .hp-social__icon,
.hp-proof__bar .hp-social__icon {
	background: var(--color-off-white); color: var(--color-nav-text);
}
.hp-features__bar .hp-social__icon:hover,
.hp-proof__bar .hp-social__icon:hover {
	background: var(--color-brand); color: var(--color-white);
}


/* =============================================================================
   RESPONSIVE — TABLET  (max 1024px)
   ============================================================================= */

@media (max-width: 1024px) {
	.footer-columns     { grid-template-columns: repeat(2, 1fr); }
	.hp-hero__inner     { gap: var(--space-2xl); }
	.hp-comparison__inner { grid-template-columns: 1fr; }
	.hp-comparison__img { max-width: 480px; margin-inline: auto; }
	.hp-cta-final__content { grid-template-columns: 1fr; gap: var(--space-2xl); }
}


/* =============================================================================
   RESPONSIVE — MOBILE  (max 768px)
   ============================================================================= */

@media (max-width: 768px) {

	:root { --space-section: 3.5rem; }

	/* Header */
	.nav-toggle        { display: flex; order: 3; }
	.header-cta        { order: 2; }
	.header-cta .btn-call { display: none; }
	.header-nav {
		display: none; position: absolute; top: var(--header-height);
		left: 0; right: 0; background: var(--color-white);
		box-shadow: var(--shadow-md); padding: var(--space-md) var(--container-pad);
		justify-content: flex-start;
	}
	.header-nav.is-open { display: flex; }
	.header-nav .nav-menu { flex-direction: column; align-items: flex-start; width: 100%; gap: 0; }
	.header-nav .nav-menu li { width: 100%; }
	.header-nav .nav-menu a { width: 100%; padding: 0.75rem var(--space-md); border-radius: 0; border-bottom: 1px solid var(--color-border); }
	.header-nav .nav-menu .sub-menu { position: static; box-shadow: none; border: none; border-radius: 0; display: flex; padding-left: var(--space-md); background: var(--color-off-white); }
	.header-nav .nav-menu .sub-menu a { border-radius: 0; }

	/* Hero */
	.hp-hero__inner { grid-template-columns: 1fr; gap: var(--space-xl); }
	.hp-hero__thumbs { grid-template-columns: repeat(2, 1fr); }
	.hp-hero__actions { flex-direction: column; align-items: flex-start; }

	/* Process */
	.hp-process__grid { grid-template-columns: 1fr; }
	.hp-process__grid::before { display: none; }

	/* Alternating */
	.hp-alt { grid-template-columns: 1fr; gap: var(--space-xl); }
	.hp-alt--img-right .hp-alt__text { order: 0; }

	/* Included */
	.hp-included__inner { grid-template-columns: 1fr; }

	/* Comparison */
	.hp-compare-table { font-size: 0.875rem; }
	.hp-compare-table th, .hp-compare-table td { padding: 0.625rem 0.5rem; }

	/* FAQ */
	.hp-faq__inner { grid-template-columns: 1fr; }
	.hp-faq__right { display: none; }

	/* CTA form */
	.hp-form__options { grid-template-columns: 1fr 1fr; }
	.hp-form__fields  { grid-template-columns: 1fr; }

	/* Carousels */
	.hp-carousel__prev { left: -16px; }
	.hp-carousel__next { right: -16px; }

	/* Footer */
	.footer-columns { grid-template-columns: 1fr; gap: var(--space-xl); }
	.footer-bottom-inner { flex-direction: column; text-align: center; }
	.footer-bottom-links { justify-content: center; flex-wrap: wrap; }

	/* Features bar / proof bar */
	.hp-features__bar,
	.hp-proof__bar { flex-direction: column; text-align: center; }
}


/* =============================================================================
   RESPONSIVE — SMALL MOBILE  (max 480px)
   ============================================================================= */

@media (max-width: 480px) {
	:root { --container-pad: 1rem; }
	.header-logo img { height: 36px; }
	.hp-form__options { grid-template-columns: 1fr; }
	.hp-form-wrap { padding: var(--space-lg); }
	.hp-carousel--text, .hp-carousel--video { padding-inline: 1.5rem; }
}


/* =============================================================================
   LANGUAGE / DIRECTION SWITCHER BUTTON
   ============================================================================= */

.lang-switch-btn--topbar {
	display: inline-flex;
	align-items: center;
	gap: 5px;
	background: rgba(255,255,255,.1);
	border: 1.5px solid rgba(255,255,255,.22);
	color: rgba(255,255,255,.85);
	font-size: 12px;
	font-weight: 700;
	padding: 4px 10px;
	border-radius: 50px;
	cursor: pointer;
	transition: background var(--transition), border-color var(--transition);
	white-space: nowrap;
	font-family: var(--font-sans);
	line-height: 1;
}
.lang-switch-btn--topbar:hover {
	background: var(--color-brand);
	border-color: var(--color-brand);
	color: var(--color-white);
}
.lang-switch-btn--nav {
	display: inline-flex;
	align-items: center;
	gap: 5px;
	background: var(--color-brand-bg);
	border: 1.5px solid var(--color-border);
	color: var(--color-navy);
	font-size: 12px;
	font-weight: 700;
	padding: 6px 12px;
	border-radius: 50px;
	cursor: pointer;
	transition: background var(--transition), color var(--transition), border-color var(--transition);
	white-space: nowrap;
	font-family: var(--font-sans);
	line-height: 1;
}
.lang-switch-btn--nav:hover {
	background: var(--color-navy);
	border-color: var(--color-navy);
	color: var(--color-white);
}
.lang-flag  { font-size: 13px; line-height: 1; }
.lang-label { font-size: 11px; font-weight: 700; letter-spacing: 0.02em; }
.topbar-divider {
	display: inline-block;
	width: 1px;
	height: 14px;
	background: rgba(255,255,255,.2);
	margin-inline: 4px;
	vertical-align: middle;
}


/* =============================================================================
   TOPBAR
   ============================================================================= */

.site-topbar {
	background: var(--color-footer-bg);
	color: rgba(255,255,255,.75);
	font-size: 0.8125rem;
	line-height: 1;
}
.topbar-inner {
	max-width: var(--container-max);
	margin-inline: auto;
	padding-inline: var(--container-pad);
	height: 40px;
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: var(--space-md);
}
.topbar-contact {
	display: flex;
	align-items: center;
	gap: var(--space-lg);
}
.topbar-link {
	display: inline-flex;
	align-items: center;
	gap: 6px;
	color: rgba(255,255,255,.8);
	text-decoration: none;
	transition: color var(--transition);
}
.topbar-link:hover { color: var(--color-brand-light); }
.topbar-link--wa { color: #25d366; }
.topbar-link--wa:hover { color: #1db954; }
.topbar-hours {
	display: inline-flex;
	align-items: center;
	gap: 6px;
	color: rgba(255,255,255,.6);
}
.topbar-social {
	display: flex;
	align-items: center;
	gap: var(--space-sm);
}
.topbar-social-link {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	color: rgba(255,255,255,.6);
	transition: color var(--transition);
}
.topbar-social-link:hover { color: var(--color-brand-light); }

@media (max-width: 768px) {
	.site-topbar { display: none; }
}


/* =============================================================================
   SERVICE CARDS — image-based 2-col layout
   ============================================================================= */

.hp-services { background: var(--color-off-white); }
.hp-services__grid {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: var(--space-lg);
}
.hp-service-card {
	background: var(--color-white);
	border-radius: var(--radius-lg);
	overflow: hidden;
	box-shadow: 0 4px 24px rgba(11,43,92,.07);
	transition: box-shadow var(--transition), transform var(--transition);
	display: flex;
	flex-direction: column;
}
.hp-service-card:hover {
	box-shadow: 0 16px 50px rgba(11,43,92,.15);
	transform: translateY(-6px);
}
.hp-service-card__img-wrap {
	position: relative;
	overflow: hidden;
	height: 200px;
}
.hp-service-card__img-wrap img {
	width: 100%; height: 100%; object-fit: cover;
	transition: transform .5s ease;
}
.hp-service-card:hover .hp-service-card__img-wrap img { transform: scale(1.05); }
.hp-service-card__badge {
	position: absolute; top: 14px; left: 14px;
	background: var(--color-navy); color: white;
	font-size: 11px; font-weight: 700; padding: 4px 12px;
	border-radius: 50px; text-transform: uppercase; letter-spacing: .5px;
}
.hp-service-card__badge--import { background: var(--color-brand); }
.hp-service-card__body {
	padding: 28px; flex: 1; display: flex; flex-direction: column;
}
.hp-service-card__icon {
	width: 52px; height: 52px; background: rgba(240,124,0,.1);
	border-radius: 12px; display: flex; align-items: center; justify-content: center;
	font-size: 24px; margin-bottom: 16px;
	transition: background var(--transition);
}
.hp-service-card:hover .hp-service-card__icon { background: var(--color-brand); }
.hp-service-card__tag {
	font-size: 12px; font-weight: 700; color: var(--color-brand);
	text-transform: uppercase; letter-spacing: 1.5px; margin-bottom: 6px;
}
.hp-service-card h3 {
	font-size: 1.25rem; font-weight: 800; color: var(--color-navy);
	margin-bottom: 12px;
}
.hp-service-card p {
	font-size: 0.9375rem; color: var(--color-text-muted);
	flex: 1; line-height: 1.7; margin: 0;
}
.hp-service-card__link {
	display: inline-flex; align-items: center; gap: 6px;
	margin-top: 20px; color: var(--color-brand); font-weight: 700;
	font-size: 14px; text-decoration: none;
	transition: gap var(--transition);
}
.hp-service-card__link:hover { gap: 12px; color: var(--color-brand-dark); }

@media (max-width: 768px) {
	.hp-services__grid { grid-template-columns: 1fr; }
}


/* =============================================================================
   STATS COUNTER
   ============================================================================= */

.hp-stats {
	background: var(--color-brand);
	padding-block: 0;
}
.hp-stats__grid {
	max-width: var(--container-max);
	margin-inline: auto;
	padding-inline: var(--container-pad);
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: var(--space-lg);
	text-align: center;
}
.hp-stat { display: flex; flex-direction: column; align-items: center; gap: 0.5rem; }
.hp-stat__value {
	display: flex;
	align-items: baseline;
	justify-content: center;
	gap: 2px;
}
.hp-stat__number {
	font-family: var(--font-heading);
	font-size: clamp(2.5rem, 5vw, 3.5rem);
	font-weight: 800;
	color: var(--color-white);
	line-height: 1;
}
.hp-stat__suffix {
	font-family: var(--font-heading);
	font-size: clamp(1.5rem, 3vw, 2rem);
	font-weight: 700;
	color: rgba(255,255,255,.85);
	line-height: 1;
}
.hp-stat__label {
	font-size: 0.9375rem;
	font-weight: 500;
	color: rgba(255,255,255,.8);
	letter-spacing: 0.02em;
}

@media (max-width: 768px) {
	.hp-stats__grid { grid-template-columns: repeat(2, 1fr); gap: var(--space-xl); }
}
@media (max-width: 480px) {
	.hp-stats__grid { grid-template-columns: 1fr; }
}


/* =============================================================================
   CONTACT SECTION
   ============================================================================= */

.hp-contact__grid {
	display: grid;
	grid-template-columns: repeat(5, 1fr);
	gap: var(--space-lg);
}
.hp-contact-card {
	background: var(--color-white);
	border-radius: var(--radius-lg);
	padding: var(--space-xl) var(--space-md);
	text-align: center;
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: var(--space-sm);
	box-shadow: var(--shadow-sm);
	transition: box-shadow var(--transition), transform var(--transition);
}
.hp-contact-card:hover {
	box-shadow: var(--shadow-md);
	transform: translateY(-3px);
}
.hp-contact-card__icon {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 60px;
	height: 60px;
	border-radius: 50%;
	background: var(--color-brand-bg);
	color: var(--color-brand);
	margin-bottom: var(--space-xs);
}
.hp-contact-card h3 {
	font-family: var(--font-heading);
	font-size: 1rem;
	font-weight: 700;
	color: var(--color-heading);
	margin: 0;
}
.hp-contact-card a,
.hp-contact-card span {
	font-size: 0.9rem;
	color: var(--color-text-muted);
	text-decoration: none;
	line-height: 1.5;
	transition: color var(--transition);
}
.hp-contact-card a:hover { color: var(--color-brand); }

@media (max-width: 1024px) {
	.hp-contact__grid { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 768px) {
	.hp-contact__grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 480px) {
	.hp-contact__grid { grid-template-columns: 1fr; }
}


/* =============================================================================
   WHATSAPP FLOATING BUTTON
   ============================================================================= */

.wa-float {
	position: fixed;
	bottom: 28px;
	right: 28px;
	z-index: 9999;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 58px;
	height: 58px;
	border-radius: 50%;
	background: #25d366;
	color: var(--color-white);
	box-shadow: 0 4px 16px rgba(37,211,102,.45);
	text-decoration: none;
	transition: background var(--transition), transform var(--transition), box-shadow var(--transition);
}
.wa-float:hover {
	background: #1db954;
	transform: translateY(-3px) scale(1.07);
	box-shadow: 0 8px 24px rgba(37,211,102,.55);
}
.wa-float::before {
	content: '';
	position: absolute;
	inset: -4px;
	border-radius: 50%;
	border: 2px solid rgba(37,211,102,.35);
	animation: wa-pulse 2.5s ease-in-out infinite;
}
@keyframes wa-pulse {
	0%   { transform: scale(1); opacity: 1; }
	70%  { transform: scale(1.4); opacity: 0; }
	100% { transform: scale(1.4); opacity: 0; }
}


/* =============================================================================
   FOOTER NEWSLETTER
   ============================================================================= */

.footer-newsletter {
	background: var(--color-brand);
}
.footer-newsletter__inner {
	max-width: var(--container-max);
	margin-inline: auto;
	padding: var(--space-xl) var(--container-pad);
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: var(--space-2xl);
}
.footer-newsletter__text h3 {
	font-family: var(--font-heading);
	font-size: 1.375rem;
	font-weight: 700;
	color: var(--color-white);
	margin: 0 0 0.25rem;
}
.footer-newsletter__text p {
	font-size: 0.9375rem;
	color: rgba(255,255,255,.85);
	margin: 0;
}
.footer-newsletter__form {
	display: flex;
	gap: 0.5rem;
	flex-shrink: 0;
	min-width: 380px;
}
.footer-newsletter__form input[type="email"] {
	flex: 1;
	padding: 0.75rem 1rem;
	border: none;
	border-radius: var(--radius);
	font-size: 0.9375rem;
	font-family: var(--font-sans);
	outline: none;
	background: rgba(255,255,255,.15);
	color: var(--color-white);
}
.footer-newsletter__form input[type="email"]::placeholder { color: rgba(255,255,255,.6); }
.footer-newsletter__form input[type="email"]:focus { background: rgba(255,255,255,.25); }
.footer-newsletter__form button {
	padding: 0.75rem 1.5rem;
	background: var(--color-white);
	color: var(--color-brand-dark);
	border: none;
	border-radius: var(--radius);
	font-size: 0.9375rem;
	font-weight: 700;
	font-family: var(--font-heading);
	cursor: pointer;
	white-space: nowrap;
	transition: background var(--transition), color var(--transition);
}
.footer-newsletter__form button:hover {
	background: var(--color-off-white);
}

@media (max-width: 768px) {
	.footer-newsletter__inner {
		flex-direction: column;
		text-align: center;
		gap: var(--space-lg);
	}
	.footer-newsletter__form {
		min-width: 0;
		width: 100%;
		max-width: 420px;
	}
}
@media (max-width: 480px) {
	.footer-newsletter__form { flex-direction: column; }
	.footer-newsletter__form button { width: 100%; }
}


/* =============================================================================
   WHY US
   ============================================================================= */

.hp-why { background: var(--color-white); }
.hp-why__grid { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
.hp-why__img-wrap { position: relative; }
.hp-why__img-main { width: 100%; border-radius: 20px; object-fit: cover; height: 520px; display: block; }
.hp-why__float {
	position: absolute; bottom: 24px; right: -24px;
	background: var(--color-navy); color: white;
	border-radius: 16px; padding: 20px 24px; text-align: center;
	box-shadow: 0 10px 40px rgba(11,43,92,.3);
}
.hp-why__float-num { font-family: var(--font-heading); font-size: 48px; font-weight: 800; color: var(--color-brand); line-height: 1; display: block; }
.hp-why__float-label { font-size: 13px; color: rgba(255,255,255,.75); margin-top: 4px; font-weight: 500; }
.hp-why__list { list-style: none; display: flex; flex-direction: column; gap: 16px; margin-top: 32px; }
.hp-why__list li { display: flex; align-items: flex-start; gap: 14px; font-size: 16px; color: var(--color-text); font-weight: 500; }
.hp-why__check { width: 28px; height: 28px; background: rgba(240,124,0,.12); border-radius: 50%; display: flex; align-items: center; justify-content: center; color: var(--color-brand); font-size: 14px; flex-shrink: 0; margin-top: 1px; font-weight: 700; }

@media (max-width: 900px) {
	.hp-why__grid { grid-template-columns: 1fr; gap: var(--space-2xl); }
	.hp-why__img-wrap { display: none; }
}


/* =============================================================================
   HOW IT WORKS — navy background
   ============================================================================= */

.hp-how { background: var(--color-navy); }
.hp-how .hp-section-header h2 { color: var(--color-white); }
.hp-how .hp-section-sub { color: rgba(255,255,255,.65); }
.hp-how .hp-rule { background: var(--color-brand); }

.hp-how__grid {
	display: grid; grid-template-columns: repeat(3, 1fr);
	position: relative;
}
.hp-how__grid::before {
	content: ''; position: absolute; top: 52px;
	left: calc(100%/6); right: calc(100%/6);
	height: 2px; background: rgba(240,124,0,.3); z-index: 0;
}
.hp-how__step { text-align: center; padding: 0 40px; position: relative; z-index: 1; }
.hp-how__num-wrap { width: 100px; height: 100px; margin: 0 auto 28px; }
.hp-how__num-bg { width: 100%; height: 100%; background: rgba(255,255,255,.06); border: 2px solid rgba(240,124,0,.3); border-radius: 50%; display: flex; align-items: center; justify-content: center; }
.hp-how__circle { width: 72px; height: 72px; background: var(--color-brand); border-radius: 50%; display: flex; align-items: center; justify-content: center; font-family: var(--font-heading); font-size: 36px; font-weight: 800; color: white; box-shadow: 0 8px 24px rgba(240,124,0,.4); }
.hp-how__step h3 { font-size: 1.25rem; font-weight: 800; color: white; margin-bottom: 12px; }
.hp-how__step p { font-size: 0.9375rem; color: rgba(255,255,255,.65); line-height: 1.75; }
.hp-how__emoji { font-size: 28px; margin-bottom: 10px; display: block; }
.hp-how__cta { text-align: center; margin-top: var(--space-3xl); }
.hp-how__cta .btn--primary { box-shadow: 0 4px 20px rgba(240,124,0,.4); }

@media (max-width: 900px) {
	.hp-how__grid { grid-template-columns: 1fr; gap: 32px; }
	.hp-how__grid::before { display: none; }
	.hp-how__step { padding: 0; }
}


/* =============================================================================
   TESTIMONIALS — 3-col card grid
   ============================================================================= */

.hp-testi { background: var(--color-off-white); }
.hp-testi__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: var(--space-lg); }
.hp-testi-card {
	background: white; border-radius: var(--radius-lg); padding: 30px;
	box-shadow: 0 4px 24px rgba(11,43,92,.06);
	transition: transform var(--transition), box-shadow var(--transition);
}
.hp-testi-card:hover { transform: translateY(-4px); box-shadow: 0 16px 50px rgba(11,43,92,.12); }
.hp-testi-card__quote { font-size: 48px; color: var(--color-brand); font-family: Georgia,serif; line-height: .6; margin-bottom: 20px; opacity: .6; }
.hp-testi-card__text { font-size: 0.9375rem; color: var(--color-text-muted); line-height: 1.75; margin-bottom: 24px; font-style: italic; }
.hp-testi-card__stars { color: #FFB800; font-size: 1rem; margin-bottom: 16px; letter-spacing: 2px; }
.hp-testi-card__author { display: flex; align-items: center; gap: 14px; }
.hp-testi-card__avatar { width: 48px; height: 48px; border-radius: 50%; object-fit: cover; flex-shrink: 0; }
.hp-testi-card__name { font-weight: 800; font-size: 15px; color: var(--color-navy); display: block; }
.hp-testi-card__role { font-size: 13px; color: var(--color-text-muted); }

@media (max-width: 900px) { .hp-testi__grid { grid-template-columns: 1fr; } }


/* =============================================================================
   FAQ — simple open/close
   ============================================================================= */

.hp-faq-simple { background: var(--color-white); }
.hp-faq-simple__wrap { max-width: 820px; margin: 0 auto; }
.hp-faq-item {
	border: 1.5px solid var(--color-border); border-radius: var(--radius);
	margin-bottom: 14px; overflow: hidden; transition: border-color var(--transition);
}
.hp-faq-item.is-open { border-color: var(--color-brand); }
.hp-faq-item__q {
	width: 100%; background: none; border: none; padding: 22px 24px;
	display: flex; justify-content: space-between; align-items: center;
	cursor: pointer; font-size: 1.0625rem; font-weight: 700; color: var(--color-navy);
	text-align: left; gap: 16px; transition: background var(--transition);
	font-family: var(--font-sans);
}
.hp-faq-item.is-open .hp-faq-item__q { background: rgba(240,124,0,.04); }
.hp-faq-item__q:hover { background: var(--color-off-white); }
.hp-faq-item__icon {
	width: 32px; height: 32px; border-radius: 50%; background: var(--color-off-white);
	display: flex; align-items: center; justify-content: center; font-size: 20px;
	color: var(--color-navy); flex-shrink: 0; transition: all var(--transition);
}
.hp-faq-item.is-open .hp-faq-item__icon { background: var(--color-brand); color: white; transform: rotate(45deg); }
.hp-faq-item__a { max-height: 0; overflow: hidden; transition: max-height .4s ease, padding .3s ease; padding: 0 24px; }
.hp-faq-item.is-open .hp-faq-item__a { max-height: 300px; padding: 0 24px 22px; }
.hp-faq-item__a p { font-size: 0.9375rem; color: var(--color-text-muted); line-height: 1.8; }


/* =============================================================================
   CTA BANNER
   ============================================================================= */

.hp-cta-banner {
	background: var(--color-brand); padding: 80px 0;
	position: relative; overflow: hidden;
}
.hp-cta-banner::before {
	content: ''; position: absolute; top: -60px; right: -60px;
	width: 300px; height: 300px; background: rgba(255,255,255,.08); border-radius: 50%;
}
.hp-cta-banner__inner {
	position: relative; z-index: 1;
	display: flex; align-items: center; justify-content: space-between; gap: 40px; flex-wrap: wrap;
}
.hp-cta-banner__text h2 { font-family: var(--font-heading); font-size: clamp(1.75rem, 4vw, 2.75rem); font-weight: 800; color: white; line-height: 1.1; margin-bottom: 10px; }
.hp-cta-banner__text p { font-size: 1.0625rem; color: rgba(255,255,255,.85); }
.btn--white-solid {
	background: white; color: var(--color-brand); font-weight: 800;
	font-size: 1rem; padding: 16px 36px; border-radius: var(--radius);
	text-decoration: none; display: inline-flex; align-items: center; gap: 8px;
	flex-shrink: 0; transition: all var(--transition); box-shadow: 0 4px 20px rgba(0,0,0,.15);
	white-space: nowrap;
}
.btn--white-solid:hover { transform: translateY(-2px); box-shadow: 0 8px 32px rgba(0,0,0,.2); color: var(--color-brand-dark); }

@media (max-width: 768px) {
	.hp-cta-banner__inner { flex-direction: column; text-align: center; }
}


/* =============================================================================
   CONTACT FORM SECTION
   ============================================================================= */

.hp-contact-form { background: var(--color-off-white); }
.hp-contact-form__box {
	max-width: 680px; margin: 0 auto; background: white;
	border-radius: 20px; padding: 48px;
	box-shadow: 0 8px 40px rgba(11,43,92,.1);
}
.hp-form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; margin-bottom: 20px; }
.hp-f-label {
	font-size: 13px; font-weight: 700; color: var(--color-navy); display: block;
	margin-bottom: 6px; text-transform: uppercase; letter-spacing: .5px;
}
.hp-f-input {
	width: 100%; padding: 12px 16px; border: 1.5px solid var(--color-border);
	border-radius: 8px; font-size: 0.9375rem; font-family: inherit; outline: none;
	transition: border-color var(--transition); background: white; color: var(--color-text);
}
.hp-f-input:focus { border-color: var(--color-brand); }
.hp-f-notice { text-align: center; font-size: 13px; color: var(--color-text-muted); margin-top: 14px; }
.hp-f-btn {
	width: 100%; background: var(--color-navy); color: white; font-family: inherit;
	font-size: 1.0625rem; font-weight: 700; padding: 16px; border: none;
	border-radius: 10px; cursor: pointer; transition: background var(--transition);
}
.hp-f-btn:hover { background: var(--color-brand); }

@media (max-width: 600px) {
	.hp-form-grid { grid-template-columns: 1fr; }
	.hp-contact-form__box { padding: var(--space-xl); }
}


/* =============================================================================
   RTL (RIGHT-TO-LEFT) LAYOUT MIRRORING
   dir="rtl" is set on <html> by js/rtl.js when the user switches direction.
   The CSS `direction` property cascades from <html> and handles text direction
   automatically. These rules override the flex/grid/position elements that
   don't auto-mirror.
   ============================================================================= */

/* ── Typography ── */
[dir="rtl"] body,
[dir="rtl"] button,
[dir="rtl"] input,
[dir="rtl"] select,
[dir="rtl"] textarea {
	font-family: 'Cairo', 'Barlow', system-ui, sans-serif;
}
[dir="rtl"] h1,
[dir="rtl"] h2,
[dir="rtl"] h3,
[dir="rtl"] h4,
[dir="rtl"] .hp-hero__headline,
[dir="rtl"] .hp-section-header h2,
[dir="rtl"] .hp-how__circle,
[dir="rtl"] .stat-number {
	font-family: 'Cairo', system-ui, sans-serif;
	line-height: 1.3;
}

/* ── Topbar ── */
[dir="rtl"] .topbar-inner   { flex-direction: row-reverse; }
[dir="rtl"] .topbar-contact { flex-direction: row-reverse; }
[dir="rtl"] .topbar-link    { flex-direction: row-reverse; }
[dir="rtl"] .topbar-hours   { flex-direction: row-reverse; }
[dir="rtl"] .topbar-social  { flex-direction: row-reverse; }

/* ── Header ── */
[dir="rtl"] .header-inner { flex-direction: row-reverse; }
[dir="rtl"] .header-cta   { flex-direction: row-reverse; gap: var(--space-sm); }

/* ── Navigation menu ── */
[dir="rtl"] .nav-menu              { flex-direction: row-reverse; }
[dir="rtl"] .nav-menu > li > a::after {
	left: auto;
	right: 0;
	width: 0;
}
[dir="rtl"] .nav-menu > li > a:hover::after { width: 100%; }

/* Mobile nav in RTL */
@media (max-width: 768px) {
	[dir="rtl"] .header-nav .nav-menu { align-items: flex-end; }
	[dir="rtl"] .header-nav .nav-menu a { text-align: right; }
	[dir="rtl"] .lang-switch-btn--nav { display: inline-flex; }
}

/* ── Hero ── */
[dir="rtl"] .hp-hero__inner       { direction: rtl; }
[dir="rtl"] .hp-hero__content     { text-align: right; }
[dir="rtl"] .hp-hero__actions     { flex-direction: row-reverse; }
[dir="rtl"] .hp-hero__badges      { flex-direction: row-reverse; flex-wrap: wrap; }
[dir="rtl"] .hp-hero__badge       { flex-direction: row-reverse; }
[dir="rtl"] .hp-hero__trust-badge { flex-direction: row-reverse; }

/* ── Section headers ── */
[dir="rtl"] .hp-section-header                    { text-align: right; }
[dir="rtl"] .hp-section-header--center            { text-align: center; }
[dir="rtl"] .hp-section-header--center .hp-section-sub { text-align: center; }

/* ── Services ── */
[dir="rtl"] .hp-services__grid { direction: rtl; }
[dir="rtl"] .hp-service-card   { text-align: right; align-items: flex-end; }

/* ── Stats ── */
[dir="rtl"] .hp-stats__grid { direction: rtl; }
[dir="rtl"] .hp-stat__value { flex-direction: row-reverse; }

/* ── Process ── */
[dir="rtl"] .hp-process__grid { direction: rtl; }
[dir="rtl"] .hp-process__step { text-align: right; }

/* ── Alternating (Benefits / Features) ──
   CSS Grid auto-places items RTL when direction:rtl is inherited,
   so .hp-alt--img-left (img first child) becomes img-on-right visually,
   and .hp-alt--img-right (text first child) becomes text-on-right (reading start). ── */
[dir="rtl"] .hp-alt          { direction: rtl; }
[dir="rtl"] .hp-alt__text    { text-align: right; }

/* ── Included ── */
[dir="rtl"] .hp-included__inner { direction: rtl; }
[dir="rtl"] .hp-included__text  { text-align: right; }
[dir="rtl"] .hp-checklist li    { flex-direction: row-reverse; }

/* ── Social proof / Testimonials ── */
[dir="rtl"] .hp-testimonial__author { flex-direction: row-reverse; }
[dir="rtl"] .hp-testimonial__quote  { text-align: right; }
[dir="rtl"] .hp-rating              { flex-direction: row-reverse; }
[dir="rtl"] .hp-features__bar       { flex-direction: row-reverse; }
[dir="rtl"] .hp-proof__bar          { flex-direction: row-reverse; }

/* ── Carousels ──
   Flip the SVG arrows so they point in the correct visual direction for RTL
   (the previous slide is now on the right, next is on the left). ── */
[dir="rtl"] .hp-carousel__prev svg,
[dir="rtl"] .hp-carousel__next svg { transform: scaleX(-1); }

/* ── Comparison ── */
[dir="rtl"] .hp-comparison__inner { direction: rtl; }
[dir="rtl"] .hp-compare-table     { direction: rtl; text-align: right; }
[dir="rtl"] .hp-compare-table th,
[dir="rtl"] .hp-compare-table td  { text-align: right; }

/* ── FAQ ── */
[dir="rtl"] .hp-faq__inner          { direction: rtl; }
[dir="rtl"] .hp-faq__left           { text-align: right; }
[dir="rtl"] .hp-accordion__trigger  { flex-direction: row-reverse; text-align: right; }

/* ── CTA / Multi-step form ── */
[dir="rtl"] .hp-cta-final__content   { direction: rtl; }
[dir="rtl"] .hp-cta-final__headline  { text-align: right; }
[dir="rtl"] .hp-form__steps-indicator { flex-direction: row-reverse; }
[dir="rtl"] .hp-form__nav             { flex-direction: row-reverse; }
[dir="rtl"] .hp-form__option-card     { text-align: right; }
[dir="rtl"] input,
[dir="rtl"] textarea,
[dir="rtl"] select                     { text-align: right; direction: rtl; }

/* ── Contact section ── */
[dir="rtl"] .hp-contact__grid { direction: rtl; }
[dir="rtl"] .hp-contact-card  { direction: rtl; }

/* ── Footer ── */
[dir="rtl"] .footer-top               { text-align: right; }
[dir="rtl"] .footer-newsletter__inner { flex-direction: row-reverse; }
[dir="rtl"] .footer-newsletter__text  { text-align: right; }
[dir="rtl"] .footer-newsletter__form  { flex-direction: row-reverse; }
[dir="rtl"] .footer-columns           { direction: rtl; }
[dir="rtl"] .footer-col               { text-align: right; }
[dir="rtl"] .footer-nav-list li a     { flex-direction: row-reverse; }
[dir="rtl"] .footer-contact-list      { direction: rtl; }
[dir="rtl"] .footer-contact-list li   { flex-direction: row-reverse; }
[dir="rtl"] .footer-social            { flex-direction: row-reverse; }
[dir="rtl"] .footer-bottom-inner      { flex-direction: row-reverse; }
[dir="rtl"] .footer-bottom-links      { flex-direction: row-reverse; }

/* Footer nav list chevron flips for RTL */
[dir="rtl"] .footer-nav-list a::before { content: '‹'; }

/* ── Why Us ── */
[dir="rtl"] .hp-why__grid { direction: rtl; }
[dir="rtl"] .hp-why__float { right: auto; left: -24px; }
[dir="rtl"] .hp-why__list li { flex-direction: row-reverse; }

/* ── How It Works ── */
[dir="rtl"] .hp-how__grid { direction: rtl; }
[dir="rtl"] .hp-how__step { direction: rtl; }

/* ── Testimonials ── */
[dir="rtl"] .hp-testi__grid { direction: rtl; }
[dir="rtl"] .hp-testi-card { text-align: right; }
[dir="rtl"] .hp-testi-card__text { font-style: normal; }
[dir="rtl"] .hp-testi-card__author { flex-direction: row-reverse; }

/* ── FAQ simple ── */
[dir="rtl"] .hp-faq-item__q { flex-direction: row-reverse; text-align: right; }

/* ── CTA Banner ── */
[dir="rtl"] .hp-cta-banner__inner { flex-direction: row-reverse; }
[dir="rtl"] .hp-cta-banner__text { text-align: right; }

/* ── Contact form ── */
[dir="rtl"] .hp-f-label { text-align: right; letter-spacing: 0; font-size: 14px; }
[dir="rtl"] .hp-f-input { text-align: right; direction: rtl; }

/* ── Service card badges RTL ── */
[dir="rtl"] .hp-service-card__badge { left: auto; right: 14px; letter-spacing: 0; text-transform: none; }

/* ── Hero float cards ── */
[dir="rtl"] .hp-hero__float-card--1 { left: auto; right: -20px; }
[dir="rtl"] .hp-hero__float-card--2 { right: auto; left: -20px; }

/* ── WhatsApp floating button — move to left side in RTL ── */
[dir="rtl"] .wa-float { right: auto; left: 28px; }

/* ── Responsive RTL adjustments ── */
@media (max-width: 768px) {
	[dir="rtl"] .footer-newsletter__inner { flex-direction: column; text-align: center; }
	[dir="rtl"] .footer-newsletter__text  { text-align: center; }
	[dir="rtl"] .hp-hero__actions { flex-direction: column; align-items: flex-end; }
}
@media (max-width: 480px) {
	[dir="rtl"] .footer-newsletter__form { flex-direction: column; }
}

/* ═══════════════════════════════════════════════════════════════════════════
   Scroll-to-top button
   ═══════════════════════════════════════════════════════════════════════════ */
.scroll-top-btn {
	position: fixed;
	bottom: 90px;        /* sit above the WhatsApp float */
	right: 28px;
	z-index: 900;
	width: 46px;
	height: 46px;
	background: var(--color-navy);
	color: #fff;
	border: none;
	border-radius: 50%;
	cursor: pointer;
	display: flex;
	align-items: center;
	justify-content: center;
	box-shadow: 0 4px 16px rgba(0,0,0,.25);
	opacity: 0;
	transform: translateY(12px);
	pointer-events: none;
	transition: opacity .25s, transform .25s, background .2s;
}
.scroll-top-btn.is-visible {
	opacity: 1;
	transform: translateY(0);
	pointer-events: auto;
}
.scroll-top-btn:hover { background: var(--color-brand); }

[dir="rtl"] .scroll-top-btn { right: auto; left: 28px; }

/* ═══════════════════════════════════════════════════════════════════════════
   Active nav highlight
   ═══════════════════════════════════════════════════════════════════════════ */
.nav-menu a.is-active {
	color: var(--color-brand) !important;
	font-weight: 700;
}

/* ═══════════════════════════════════════════════════════════════════════════
   Tracking section
   ═══════════════════════════════════════════════════════════════════════════ */
.hp-tracking {
	background: var(--color-bg, #f4f6f9);
	padding: 80px 0;
	text-align: center;
}
.hp-tracking__inner {
	max-width: 680px;
	margin: 0 auto;
	padding: 0 24px;
}
.hp-tracking__eyebrow {
	display: inline-block;
	background: var(--color-brand);
	color: #fff;
	font-size: 11px;
	font-weight: 700;
	letter-spacing: .1em;
	text-transform: uppercase;
	padding: 4px 14px;
	border-radius: 20px;
	margin-bottom: 16px;
}
.hp-tracking__title {
	font-size: clamp(24px, 4vw, 36px);
	font-weight: 800;
	color: var(--color-navy);
	margin: 0 0 12px;
}
.hp-tracking__desc {
	color: var(--color-text-muted, #6b7280);
	font-size: 16px;
	margin: 0 0 36px;
}
.hp-tracking__form {
	display: flex;
	gap: 10px;
	background: #fff;
	border: 2px solid #e5e7eb;
	border-radius: 12px;
	padding: 8px;
	box-shadow: 0 4px 20px rgba(0,0,0,.06);
}
.hp-tracking__input {
	flex: 1;
	border: none;
	outline: none;
	font-size: 15px;
	padding: 10px 14px;
	background: transparent;
	color: var(--color-navy);
}
.hp-tracking__input::placeholder { color: #9ca3af; }
.hp-tracking__btn {
	background: var(--color-navy);
	color: #fff;
	border: none;
	border-radius: 8px;
	padding: 12px 24px;
	font-size: 14px;
	font-weight: 700;
	cursor: pointer;
	white-space: nowrap;
	transition: background .2s, transform .15s;
}
.hp-tracking__btn:hover { background: var(--color-brand); transform: translateY(-1px); }
.hp-tracking__hint {
	margin-top: 12px;
	font-size: 12px;
	color: #9ca3af;
}

@media (max-width: 520px) {
	.hp-tracking__form { flex-direction: column; }
	.hp-tracking__btn  { width: 100%; }
}

/* ── Tracking modal (display toggled via JS style.display) ── */
.hp-tracking-modal {
	position: fixed;
	inset: 0;
	z-index: 9999;
	background: rgba(0,0,0,.55);
	align-items: center;
	justify-content: center;
	padding: 16px;
}
.hp-tracking-modal__inner {
	background: #fff;
	border-radius: 16px;
	width: 100%;
	max-width: 900px;
	max-height: 90vh;
	display: flex;
	flex-direction: column;
	overflow: hidden;
	box-shadow: 0 24px 60px rgba(0,0,0,.25);
}
.hp-tracking-modal__header {
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding: 16px 20px;
	border-bottom: 1px solid #e5e7eb;
}
.hp-tracking-modal__title {
	font-size: 15px;
	font-weight: 700;
	color: var(--color-navy);
}
.hp-tracking-modal__close {
	background: none;
	border: none;
	cursor: pointer;
	color: #6b7280;
	font-size: 22px;
	line-height: 1;
	padding: 4px 8px;
	border-radius: 6px;
	transition: background .15s, color .15s;
}
.hp-tracking-modal__close:hover { background: #f3f4f6; color: var(--color-navy); }
.hp-tracking-modal__frame {
	flex: 1;
	border: none;
	width: 100%;
	min-height: 520px;
}

/* ═══════════════════════════════════════════════════════════════════════════
   Contact form status message
   ═══════════════════════════════════════════════════════════════════════════ */
.hp-f-status {
	margin-top: 14px;
	padding: 14px 18px;
	border-radius: 8px;
	font-size: 14px;
	font-weight: 600;
	text-align: center;
}
.hp-f-status--success {
	background: #ecfdf5;
	color: #065f46;
	border: 1px solid #6ee7b7;
}
.hp-f-status--error {
	background: #fef2f2;
	color: #991b1b;
	border: 1px solid #fca5a5;
}

/* ── Submit button loader text ── */
.hp-f-btn-loader {
	display: none;
	opacity: .85;
}

/* ── RTL: tracking ── */
[dir="rtl"] .hp-tracking__input { text-align: right; direction: rtl; }
[dir="rtl"] .hp-tracking-modal__header { flex-direction: row-reverse; }
