/* =========================================================
   Six Star General Transport — Theme Stylesheet
   ========================================================= */

:root {
	--brand-900: #2B1B0E;
	--brand-800: #3D2817;
	--brand-700: #4E3320;

	--gold-400: #FFB84D;
	--gold-500: #F6A83A;
	--gold-600: #E0952E;

	--ink: #2B1B0E;
	--ink-70: rgba(43, 27, 14, 0.7);
	--ink-60: rgba(43, 27, 14, 0.6);
	--ink-50: rgba(43, 27, 14, 0.5);

	--fog: #F7F5F2;
	--line: #E9E4DD;
	--white: #ffffff;

	--accent-green: #20C25C;
	--accent-green-hover: #1BB55C;

	--font-display: "Plus Jakarta Sans", Inter, ui-sans-serif, system-ui, sans-serif;
	--font-body: Inter, ui-sans-serif, system-ui, sans-serif;

	--shadow-card: 0 1px 2px rgba(43,27,14,0.06), 0 1px 3px rgba(43,27,14,0.08);
	--shadow-card-hover: 0 12px 30px rgba(43,27,14,0.16);
	--shadow-glow: 0 8px 24px rgba(246,168,58,0.35);

	--container-w: 1240px;
	--radius: 16px;
	--radius-lg: 24px;
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
	margin: 0;
	font-family: var(--font-body);
	color: var(--ink);
	background: var(--white);
	line-height: 1.5;
	overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; margin: 0; padding: 0; }
h1, h2, h3, h4 { font-family: var(--font-display); margin: 0; color: var(--brand-900); line-height: 1.15; overflow-wrap: break-word; word-wrap: break-word; }
p { margin: 0; overflow-wrap: break-word; word-wrap: break-word; }
html { max-width: 100%; overflow-x: hidden; }
body { max-width: 100%; }
button { font-family: inherit; cursor: pointer; }
input, textarea, select { font-family: inherit; font-size: 15px; }

.screen-reader-text {
	position: absolute !important;
	clip: rect(1px,1px,1px,1px);
	overflow: hidden;
	height: 1px; width: 1px;
	word-wrap: normal !important;
}
.skip-link:focus {
	position: fixed; top: 10px; left: 10px; z-index: 100000;
	width: auto; height: auto; padding: 12px 20px;
	background: var(--gold-500); color: var(--brand-900);
	border-radius: 8px; font-weight: 700; clip: auto;
}

.container { max-width: var(--container-w); margin: 0 auto; padding: 0 20px; }
.section-pad { padding: 72px 0; }
@media (max-width: 640px) { .section-pad { padding: 48px 0; } }

/* ---------- Buttons ---------- */
.btn {
	display: inline-flex; align-items: center; justify-content: center; gap: 8px;
	font-weight: 700; font-size: 14.5px; line-height: 1;
	padding: 14px 26px; border-radius: 999px; border: 1px solid transparent;
	transition: all 0.25s ease; white-space: nowrap;
}
.btn .icon { width: 16px; height: 16px; }
.btn-gold { background: linear-gradient(135deg, var(--gold-400), var(--gold-600)); color: var(--brand-900); box-shadow: var(--shadow-glow); }
.btn-gold:hover { transform: translateY(-2px); box-shadow: 0 14px 30px rgba(246,168,58,0.45); }
.btn-outline-light { background: rgba(255,255,255,0.06); border-color: rgba(255,255,255,0.25); color: #fff; }
.btn-outline-light:hover { background: rgba(255,255,255,0.14); }
.btn-outline-dark { background: transparent; border-color: var(--line); color: var(--brand-900); }
.btn-outline-dark:hover { border-color: var(--brand-700); }
.btn-whatsapp { background: var(--accent-green); color: #fff; }
.btn-whatsapp:hover { background: var(--accent-green-hover); }
.btn-ghost { background: transparent; color: var(--brand-900); text-decoration: underline; padding: 8px 0; }
.btn-block { width: 100%; }
.btn-primary { background: var(--brand-900); color: #fff; }
.btn-primary:hover { background: var(--brand-700); }
.btn:disabled { opacity: 0.7; cursor: not-allowed; }

/* ---------- Utility bar ---------- */
.utility-bar { background: var(--brand-900); color: rgba(255,255,255,0.7); font-size: 12px; display: none; }
@media (min-width: 992px) { .utility-bar { display: block; } }
.utility-inner { display: flex; align-items: center; justify-content: space-between; height: 36px; }
.utility-left, .utility-right { display: flex; align-items: center; gap: 16px; }
.utility-item { display: inline-flex; align-items: center; gap: 6px; }
.utility-item .icon { width: 14px; height: 14px; color: var(--gold-400); }
.utility-item:hover { color: #fff; }
.utility-divider { width: 1px; height: 14px; background: rgba(255,255,255,0.15); }
.utility-social { display: flex; align-items: center; gap: 10px; }
.utility-social a { display: inline-flex; color: rgba(255,255,255,0.6); transition: color 0.2s; }
.utility-social a:hover { color: var(--gold-400); }
.utility-social a .icon { width: 14px; height: 14px; }

/* ---------- Header ---------- */
.site-header { position: fixed; inset: 0 0 auto 0; z-index: 500; }
.main-bar {
	background: rgba(43,27,14,0.92); backdrop-filter: blur(8px);
	transition: background 0.3s ease, box-shadow 0.3s ease;
}
.site-header.scrolled .main-bar {
	background: rgba(43,27,14,0.98); box-shadow: 0 4px 24px rgba(43,27,14,0.2);
}
.header-inner { display: flex; align-items: center; justify-content: space-between; height: 64px; gap: 24px; }
.brand { display: flex; align-items: center; gap: 10px; flex-shrink: 0; }
.custom-logo-link { display: flex; align-items: center; }
.custom-logo-link img { height: 44px; width: auto; }
.brand-mark {
	display: flex; align-items: center; justify-content: center;
	width: 42px; height: 42px; border-radius: 12px; flex-shrink: 0;
	background: linear-gradient(135deg, var(--gold-400), var(--gold-600));
	box-shadow: var(--shadow-glow);
}
.brand-mark .icon { width: 20px; height: 20px; color: var(--brand-900); stroke-width: 2.5; }
.brand-text { display: flex; flex-direction: column; line-height: 1; }
.brand-name { font-family: var(--font-display); font-weight: 800; font-size: 16px; color: #fff; }
.brand-sub { font-size: 10px; font-weight: 600; letter-spacing: 0.16em; text-transform: uppercase; color: var(--gold-400); margin-top: 3px; }

.primary-nav { display: none; flex: 1; justify-content: center; }
.nav-list { display: flex; align-items: center; justify-content: center; gap: 4px; }
.nav-list li a {
	display: inline-block; padding: 8px 14px; border-radius: 8px;
	font-size: 14px; font-weight: 600; color: rgba(255,255,255,0.85);
	transition: all 0.2s ease;
}
.nav-list li a:hover { color: #fff; background: rgba(255,255,255,0.08); }

.header-actions { display: flex; align-items: center; gap: 10px; flex-shrink: 0; }
.header-actions .btn-gold { display: none; padding: 10px 20px; font-size: 13px; }
.menu-toggle {
	display: flex; align-items: center; justify-content: center;
	width: 42px; height: 42px; border-radius: 10px; border: none;
	background: rgba(255,255,255,0.08); color: #fff;
}
.menu-toggle:hover { background: rgba(255,255,255,0.16); }
.menu-toggle .icon { width: 22px; height: 22px; }

@media (min-width: 992px) {
	.primary-nav { display: flex; }
	.header-actions .btn-gold { display: inline-flex; }
	.menu-toggle { display: none; }
}

/* ---------- Mobile nav ---------- */
.mobile-nav-overlay {
	position: fixed; inset: 0; z-index: 600; background: rgba(43,27,14,0.6);
	backdrop-filter: blur(4px); opacity: 0; pointer-events: none; transition: opacity 0.3s ease;
}
.mobile-nav-overlay.is-open { opacity: 1; pointer-events: auto; }
.mobile-nav {
	position: fixed; top: 0; right: 0; z-index: 700; height: 100%; width: 88%; max-width: 380px;
	background: var(--brand-900); color: #fff; overflow-y: auto;
	transform: translateX(100%); transition: transform 0.3s ease;
	box-shadow: -12px 0 40px rgba(0,0,0,0.3);
	display: flex; flex-direction: column;
}
.mobile-nav.is-open { transform: translateX(0); }
.mobile-nav-head { display: flex; align-items: center; justify-content: space-between; padding: 20px; border-bottom: 1px solid rgba(255,255,255,0.1); }
.mobile-nav-title { font-family: var(--font-display); font-weight: 800; }
.menu-close { background: transparent; border: none; color: rgba(255,255,255,0.8); width: 36px; height: 36px; border-radius: 8px; display: flex; align-items: center; justify-content: center; }
.menu-close:hover { background: rgba(255,255,255,0.1); }
.menu-close .icon { width: 20px; height: 20px; }
.mobile-nav-list { padding: 12px; display: flex; flex-direction: column; gap: 2px; }
.mobile-nav-list li a { display: block; padding: 14px 16px; border-radius: 12px; font-weight: 600; color: rgba(255,255,255,0.9); }
.mobile-nav-list li a:hover { background: rgba(255,255,255,0.06); }
.mobile-nav-foot { margin-top: auto; padding: 20px; border-top: 1px solid rgba(255,255,255,0.1); display: flex; flex-direction: column; gap: 10px; }
.mobile-nav-meta { font-size: 12px; color: rgba(255,255,255,0.5); text-align: center; margin-top: 6px; }
body.nav-open { overflow: hidden; }

/* ---------- Hero ---------- */
.hero {
	position: relative; min-height: 70vh; display: flex; flex-direction: column;
	overflow: hidden; background: var(--brand-900);
}
.hero-bg { position: absolute; inset: 0; }
.hero-bg img { width: 100%; height: 100%; object-fit: cover; }
.hero-bg::after {
	content: ""; position: absolute; inset: 0;
	background: linear-gradient(to right, var(--brand-900) 10%, rgba(43,27,14,0.85) 45%, rgba(43,27,14,0.35) 100%);
}
.hero-bg::before {
	content: ""; position: absolute; inset: 0; z-index: 1;
	background: linear-gradient(to top, var(--brand-900) 0%, transparent 40%, rgba(43,27,14,0.5) 100%);
}
.hero-inner { position: relative; z-index: 2; padding-top: 100px; padding-bottom: 40px; min-width: 0; width: 100%; flex: 1; display: flex; align-items: center; }
.hero-content { max-width: 680px; }
.hero-badge {
	display: inline-flex; align-items: center; gap: 6px;
	padding: 8px 16px; border-radius: 999px; border: 1px solid rgba(255,255,255,0.15);
	background: rgba(255,255,255,0.05); backdrop-filter: blur(6px);
	font-size: 13px; font-weight: 600; color: rgba(255,255,255,0.85);
}
.hero-badge .icon { width: 14px; height: 14px; color: var(--gold-400); }
.hero h1 { color: #fff; font-size: 42px; font-weight: 800; margin-top: 20px; letter-spacing: -0.01em; line-height: 1.15; }
.text-gold { color: var(--gold-500); }
.hero p.lead { color: rgba(255,255,255,0.75); margin-top: 18px; font-size: 17px; max-width: 580px; line-height: 1.65; }
.hero-actions { display: flex; flex-wrap: wrap; align-items: center; gap: 12px; margin-top: 28px; }
.hero-trust-grid {
	display: grid; grid-template-columns: repeat(2, 1fr); gap: 10px; margin-top: 28px;
}
.hero-trust-badge {
	display: flex; align-items: center; gap: 8px; padding: 12px 16px;
	border-radius: 12px; border: 1px solid rgba(255,255,255,0.1);
	background: rgba(255,255,255,0.05); backdrop-filter: blur(6px);
}
.hero-trust-badge .icon { width: 20px; height: 20px; color: var(--gold-400); flex-shrink: 0; }
.hero-trust-badge span { font-size: 13px; font-weight: 600; color: rgba(255,255,255,0.85); }
@media (min-width: 640px) { .hero-trust-grid { grid-template-columns: repeat(4, 1fr); } }

.hero-strip {
	position: relative; z-index: 2; border-top: 1px solid rgba(255,255,255,0.1);
	background: rgba(43,27,14,0.8); backdrop-filter: blur(8px);
}
.hero-strip-inner { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1px; padding: 0; }
.hero-strip-item {
	display: flex; align-items: center; gap: 12px; padding: 18px 16px;
	border-right: 1px solid rgba(255,255,255,0.08);
}
.hero-strip-icon { width: 32px; height: 32px; color: var(--gold-400); flex-shrink: 0; }
.hero-strip-title { font-size: 14px; font-weight: 700; color: #fff; }
.hero-strip-range { font-size: 12px; color: rgba(255,255,255,0.6); margin-top: 2px; }
@media (min-width: 640px) { .hero-strip-inner { grid-template-columns: repeat(4, 1fr); } }
@media (min-width: 640px) { .hero h1 { font-size: 52px; } .hero p.lead { font-size: 18px; } }
@media (min-width: 1024px) { .hero h1 { font-size: 60px; } }

/* ---------- Section heading ---------- */
.section-heading { max-width: 640px; }
.section-heading.center { margin: 0 auto; text-align: center; }
.eyebrow {
	display: inline-block; font-size: 12px; font-weight: 700; text-transform: uppercase;
	letter-spacing: 0.1em; color: var(--gold-600); margin-bottom: 12px;
}
.section-heading h2 { font-size: 28px; font-weight: 800; }
.section-heading p { margin-top: 14px; color: var(--ink-70); font-size: 15.5px; line-height: 1.7; }
@media (min-width: 640px) { .section-heading h2 { font-size: 34px; } }

/* ---------- Grids & Cards ---------- */
.grid { display: grid; gap: 20px; }
.grid-3 { grid-template-columns: repeat(1, 1fr); }
.grid-2 { grid-template-columns: repeat(1, 1fr); }
@media (min-width: 640px) { .grid-3 { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .grid-3 { grid-template-columns: repeat(3, 1fr); } .grid-2 { grid-template-columns: repeat(2, 1fr); } }

.card-base {
	background: #fff; border: 1px solid var(--line); border-radius: var(--radius);
	box-shadow: var(--shadow-card); transition: all 0.3s ease; overflow: hidden;
}
.card-base:hover { box-shadow: var(--shadow-card-hover); transform: translateY(-4px); }

.industry-card {
	position: relative; border-radius: var(--radius); overflow: hidden; background: var(--brand-900);
	border: 1px solid var(--line); box-shadow: var(--shadow-card); transition: all 0.3s ease;
	min-height: 320px; display: flex; align-items: flex-end;
}
.industry-card:hover { box-shadow: var(--shadow-card-hover); transform: translateY(-4px); }
.industry-card .card-img { position: absolute; inset: 0; }
.industry-card .card-img img { width: 100%; height: 100%; object-fit: cover; opacity: 0.55; transition: opacity 0.4s ease, transform 0.5s ease; }
.industry-card:hover .card-img img { opacity: 0.45; transform: scale(1.05); }
.industry-card .card-img::after { content: ""; position: absolute; inset: 0; background: linear-gradient(to top, var(--brand-900) 10%, rgba(43,27,14,0.4) 60%, transparent); }
.industry-card .card-icon {
	position: absolute; top: 16px; left: 16px; z-index: 2;
	width: 42px; height: 42px; border-radius: 12px; display: flex; align-items: center; justify-content: center;
	background: var(--gold-500); color: var(--brand-900);
}
.industry-card .card-icon .icon { width: 20px; height: 20px; }
.industry-card .card-body { position: relative; z-index: 2; padding: 20px; }
.industry-card h3 { color: #fff; font-size: 18px; }
.industry-card p { margin-top: 8px; color: rgba(255,255,255,0.72); font-size: 13.5px; line-height: 1.6; }

.service-card { display: flex; flex-direction: column; }
.service-card .card-img { position: relative; aspect-ratio: 16/10; overflow: hidden; }
.service-card .card-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s ease; }
.service-card:hover .card-img img { transform: scale(1.06); }
.service-card .card-img::after { content:""; position:absolute; inset:0; background: linear-gradient(to top, rgba(43,27,14,0.55), transparent 60%); }
.service-card .card-category {
	position: absolute; top: 12px; left: 12px; z-index: 2; background: rgba(255,255,255,0.92);
	padding: 4px 12px; border-radius: 999px; font-size: 11.5px; font-weight: 700; color: var(--brand-900);
}
.service-card .card-icon {
	position: absolute; bottom: 12px; left: 12px; z-index: 2;
	width: 40px; height: 40px; border-radius: 12px; display: flex; align-items: center; justify-content: center;
	background: var(--gold-500); color: var(--brand-900); box-shadow: var(--shadow-glow);
}
.service-card .card-icon .icon { width: 18px; height: 18px; }
.service-card .card-body { padding: 20px; display: flex; flex-direction: column; flex: 1; }
.service-card h3 { font-size: 17px; }
.service-card p { margin-top: 8px; color: var(--ink-70); font-size: 14px; line-height: 1.6; flex: 1; }
.service-card .card-links { margin-top: 18px; display: flex; align-items: center; gap: 12px; }
.service-card .view-details { display: inline-flex; align-items: center; gap: 6px; font-size: 13.5px; font-weight: 700; color: var(--brand-900); }
.service-card .view-details:hover { color: var(--gold-600); }
.service-card .view-details .icon { width: 13px; height: 13px; }
.service-card .quick-quote {
	margin-left: auto; display: inline-flex; align-items: center; gap: 4px; white-space: nowrap;
	background: rgba(246,168,58,0.1); color: var(--gold-600); font-size: 12px; font-weight: 700;
	padding: 6px 12px; border-radius: 999px; flex-shrink: 0;
}
.service-card .card-links { flex-wrap: wrap; row-gap: 8px; }
.service-card .quick-quote:hover { background: rgba(246,168,58,0.2); }

.services-more { margin-top: 44px; display: flex; flex-direction: column; align-items: center; gap: 14px; text-align: center; }
.services-more p { color: var(--ink-60); font-size: 14.5px; }

/* ---------- About section ---------- */
.about-section { display: grid; grid-template-columns: 1fr; gap: 48px; align-items: center; }
@media (min-width: 1024px) { .about-section { grid-template-columns: 1fr 1fr; } }
.about-media { position: relative; }
.about-media img { border-radius: var(--radius-lg); box-shadow: var(--shadow-card-hover); aspect-ratio: 4/3; object-fit: cover; width: 100%; }
.about-stat {
	position: absolute; bottom: -22px; right: -8px; display: none;
	background: #fff; border: 1px solid var(--line); border-radius: var(--radius);
	padding: 18px 22px; box-shadow: var(--shadow-card-hover);
}
.about-stat .num { font-family: var(--font-display); font-size: 30px; font-weight: 800; color: var(--brand-900); }
.about-stat .label { font-size: 13px; color: var(--ink-60); }
@media (min-width: 640px) { .about-stat { display: block; } }
.about-decoration { position: absolute; top: -16px; left: -16px; width: 96px; height: 96px; border-radius: var(--radius); background: rgba(246,168,58,0.2); z-index: -1; }
.about-body h2 { font-size: 28px; margin-top: 6px; }
.about-body p { margin-top: 16px; color: var(--ink-70); line-height: 1.7; font-size: 15.5px; }
.about-features { margin-top: 30px; display: flex; flex-direction: column; gap: 16px; }
.about-feature { display: flex; align-items: flex-start; gap: 16px; }
.about-feature .feature-icon {
	width: 44px; height: 44px; flex-shrink: 0; border-radius: 12px;
	background: rgba(246,168,58,0.1); color: var(--gold-600); display: flex; align-items: center; justify-content: center;
}
.about-feature .feature-icon .icon { width: 20px; height: 20px; }
.about-feature h3 { font-size: 15.5px; }
.about-feature p { margin-top: 2px; font-size: 13.5px; color: var(--ink-60); }
.about-actions { margin-top: 30px; display: flex; flex-wrap: wrap; align-items: center; gap: 16px; }
.about-actions .link-arrow { display: inline-flex; align-items: center; gap: 6px; font-weight: 700; font-size: 14px; color: var(--gold-600); }
.about-actions .link-arrow:hover { color: var(--gold-500); }

/* ---------- Testimonials ---------- */
.testimonials-section { background: var(--brand-900); color: #fff; position: relative; overflow: hidden; }
.testimonials-section .section-heading h2, .testimonials-section .eyebrow { color: #fff; }
.testimonials-section .eyebrow { color: var(--gold-400); }
.testimonials-section .section-heading p { color: rgba(255,255,255,0.65); }
.testimonial-track { margin-top: 40px; display: grid; gap: 20px; grid-template-columns: 1fr; }
@media (min-width: 900px) { .testimonial-track { grid-template-columns: repeat(3, 1fr); } }
.testimonial-card {
	background: rgba(255,255,255,0.05); border: 1px solid rgba(255,255,255,0.1); border-radius: var(--radius-lg);
	padding: 28px; display: flex; flex-direction: column; gap: 16px;
}
.testimonial-card .quote-icon { color: var(--gold-400); width: 28px; height: 28px; opacity: 0.6; }
.testimonial-card p.quote-text { color: rgba(255,255,255,0.85); font-size: 14.5px; line-height: 1.7; }
.testimonial-stars { display: flex; gap: 3px; }
.testimonial-stars .icon { width: 14px; height: 14px; color: var(--gold-400); fill: var(--gold-400); }
.testimonial-person { display: flex; align-items: center; gap: 12px; margin-top: auto; }
.testimonial-avatar {
	width: 44px; height: 44px; border-radius: 50%; overflow: hidden; flex-shrink: 0;
	background: var(--gold-500); color: var(--brand-900); display: flex; align-items: center; justify-content: center;
	font-weight: 800; font-family: var(--font-display);
}
.testimonial-avatar img { width: 100%; height: 100%; object-fit: cover; }
.testimonial-person .name { font-weight: 700; font-size: 14px; }
.testimonial-person .role { font-size: 12.5px; color: rgba(255,255,255,0.55); }

/* ---------- FAQ ---------- */
.faq-list { max-width: 760px; margin: 40px auto 0; display: flex; flex-direction: column; gap: 12px; }
.faq-columns { display: grid; grid-template-columns: 1fr; gap: 16px; margin-top: 40px; }
@media (min-width: 768px) { .faq-columns { grid-template-columns: 1fr 1fr; } }
.faq-col { display: flex; flex-direction: column; gap: 12px; }
.faq-item { border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden; transition: border-color 0.3s ease, background 0.3s ease; background: #fff; }
.faq-item.is-open { border-color: rgba(246,168,58,0.6); background: rgba(246,168,58,0.05); }
.faq-question {
	width: 100%; display: flex; align-items: center; justify-content: space-between; gap: 16px;
	padding: 18px 20px; background: transparent; border: none; text-align: left;
	font-size: 15px; font-weight: 700; color: var(--brand-900);
}
.faq-toggle {
	flex-shrink: 0; width: 28px; height: 28px; border-radius: 50%; display: flex; align-items: center; justify-content: center;
	background: var(--fog); color: var(--ink-60); transition: all 0.3s ease;
}
.faq-item.is-open .faq-toggle { background: var(--gold-500); color: var(--brand-900); transform: rotate(180deg); }
.faq-toggle .icon { width: 15px; height: 15px; }
.faq-answer { max-height: 0; overflow: hidden; transition: max-height 0.3s ease; }
.faq-answer-inner { padding: 0 20px 20px; font-size: 14px; color: var(--ink-70); line-height: 1.7; }

/* ---------- CTA banner ---------- */
.cta-banner { position: relative; background: var(--brand-900); padding: 64px 0; overflow: hidden; text-align: center; }
.cta-banner .bg-img { position: absolute; inset: 0; }
.cta-banner .bg-img img { width: 100%; height: 100%; object-fit: cover; opacity: 0.18; }
.cta-banner .bg-img::after { content: ""; position: absolute; inset: 0; background: linear-gradient(to right, var(--brand-900), rgba(43,27,14,0.75)); }
.cta-banner .content { position: relative; z-index: 2; }
.cta-banner h2 { color: #fff; font-size: 30px; max-width: 640px; margin: 0 auto; }
.cta-banner p { color: rgba(255,255,255,0.7); margin: 16px auto 0; max-width: 520px; }
.cta-banner .actions { margin-top: 30px; display: flex; flex-wrap: wrap; justify-content: center; gap: 14px; }

/* ---------- Footer ---------- */
.site-footer { background: var(--brand-900); color: #fff; }
.footer-cta { border-bottom: 1px solid rgba(255,255,255,0.1); }
.footer-cta-inner { display: flex; flex-direction: column; align-items: center; justify-content: space-between; gap: 24px; padding-top: 40px; padding-bottom: 40px; text-align: center; }
.footer-cta-inner h2 { color: #fff; font-size: 24px; }
.footer-cta-inner p { color: rgba(255,255,255,0.6); margin-top: 8px; }
.footer-cta-actions { display: flex; flex-wrap: wrap; justify-content: center; gap: 12px; }
@media (min-width: 992px) { .footer-cta-inner { flex-direction: row; text-align: left; } }

.footer-grid { display: grid; grid-template-columns: 1fr; gap: 40px; padding: 56px 0; }
@media (min-width: 640px) { .footer-grid { grid-template-columns: 1fr 1fr; } }
@media (min-width: 1024px) { .footer-grid { grid-template-columns: 1.4fr 1fr 1fr 1fr; } }
.footer-col h3 { color: #fff; font-size: 13px; text-transform: uppercase; letter-spacing: 0.08em; font-weight: 700; }
.footer-col ul { margin-top: 16px; display: flex; flex-direction: column; gap: 10px; }
.footer-col ul li a { font-size: 14px; color: rgba(255,255,255,0.6); transition: color 0.2s ease; }
.footer-col ul li a:hover { color: var(--gold-400); }
.footer-brand p { margin-top: 16px; font-size: 14px; line-height: 1.7; color: rgba(255,255,255,0.6); }
.social-links { margin-top: 20px; display: flex; gap: 8px; }
.social-link {
	width: 36px; height: 36px; border-radius: 8px; border: 1px solid rgba(255,255,255,0.1);
	display: flex; align-items: center; justify-content: center; color: rgba(255,255,255,0.7);
}
.social-link:hover { border-color: var(--gold-400); background: rgba(246,168,58,0.1); color: var(--gold-400); }
.icon-sm { width: 16px; height: 16px; }
.footer-contact li { display: flex; align-items: flex-start; gap: 10px; font-size: 14px; color: rgba(255,255,255,0.6); }
.footer-contact li .icon-sm { margin-top: 3px; color: var(--gold-400); flex-shrink: 0; }
.footer-contact li a { display: flex; align-items: flex-start; gap: 10px; word-break: break-word; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,0.1); }
.footer-bottom-inner { display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: 8px; padding: 20px 0; font-size: 12px; color: rgba(255,255,255,0.5); }
.footer-bottom-inner p { margin: 0; }
.footer-bottom-inner .footer-credit { margin: 0; }
.footer-bottom-inner a { color: var(--gold-400); text-decoration: none; }
.footer-bottom-inner a:hover { color: var(--gold-500); }

/* ---------- Why Choose Us layout ---------- */
.why-choose-layout { display: grid; grid-template-columns: 1fr; gap: 48px; align-items: center; }
@media (min-width: 1024px) { .why-choose-layout { grid-template-columns: 1fr 1fr; } }
.why-choose-text h2 { font-size: 28px; margin-top: 8px; }
.why-choose-text > p { margin-top: 14px; color: var(--ink-70); line-height: 1.7; font-size: 15.5px; }
.why-check-grid { display: grid; grid-template-columns: 1fr; gap: 10px; margin-top: 24px; }
@media (min-width: 640px) { .why-check-grid { grid-template-columns: 1fr 1fr; } }
.why-check-item { display: flex; align-items: flex-start; gap: 10px; font-size: 14px; color: var(--ink-70); }
.why-check-icon { width: 18px; height: 18px; color: var(--accent-green); flex-shrink: 0; margin-top: 2px; }
.why-choose-media { position: relative; }
.why-choose-media img { border-radius: var(--radius-lg); box-shadow: var(--shadow-card-hover); aspect-ratio: 4/3; object-fit: cover; width: 100%; }
.why-choose-badge {
	position: absolute; bottom: -20px; right: -8px; display: flex; align-items: center; gap: 12px;
	background: #fff; border: 1px solid var(--line); border-radius: var(--radius);
	padding: 16px 20px; box-shadow: var(--shadow-card-hover);
}
.why-badge-icon { width: 40px; height: 40px; border-radius: 10px; background: rgba(246,168,58,0.1); color: var(--gold-600); display: flex; align-items: center; justify-content: center; }
.why-badge-icon .icon { width: 20px; height: 20px; }
.why-choose-badge strong { display: block; font-size: 14px; color: var(--brand-900); }
.why-choose-badge span { font-size: 12px; color: var(--ink-60); }

/* ---------- How It Works ---------- */
.section-dark { background: var(--brand-900); color: #fff; }
.section-dark .section-heading h2, .section-dark .eyebrow { color: #fff; }
.section-dark .section-heading p { color: rgba(255,255,255,0.65); }
.hiw-grid { display: grid; grid-template-columns: 1fr; gap: 16px; margin-top: 48px; }
@media (min-width: 640px) { .hiw-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .hiw-grid { grid-template-columns: repeat(4, 1fr); } }
.hiw-card {
	padding: 28px 24px; border-radius: var(--radius);
	border: 1px solid rgba(255,255,255,0.08); background: rgba(255,255,255,0.03);
	transition: border-color 0.2s ease, transform 0.2s ease;
}
.hiw-card:hover { border-color: rgba(246,168,58,0.4); transform: translateY(-4px); }
.hiw-num {
	display: inline-flex; align-items: center; justify-content: center;
	width: 44px; height: 44px; border-radius: 50%; margin-bottom: 16px;
	background: rgba(246,168,58,0.1); color: var(--gold-400);
	font-family: var(--font-display); font-weight: 800; font-size: 16px;
}
.hiw-card h3 { color: #fff; font-size: 16px; margin-bottom: 8px; }
.hiw-card p { color: rgba(255,255,255,0.6); font-size: 14px; line-height: 1.6; }

/* ---------- Long-Term & Corporate ---------- */
.corporate-layout { display: grid; grid-template-columns: 1fr; gap: 48px; align-items: center; }
@media (min-width: 1024px) { .corporate-layout { grid-template-columns: 1fr 1fr; } }
.corporate-text h2 { font-size: 28px; margin-top: 8px; }
.corporate-text > p { margin-top: 14px; font-size: 15.5px; line-height: 1.7; }
.corporate-stats { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.corporate-stat-box {
	padding: 28px 24px; border-radius: var(--radius);
	background: rgba(255,255,255,0.05); border: 1px solid rgba(255,255,255,0.08);
	text-align: center;
}
.corporate-stat-value {
	font-family: var(--font-display); font-size: 36px; font-weight: 800;
	color: var(--gold-400); line-height: 1;
}
.corporate-stat-label { margin-top: 8px; font-size: 13px; color: rgba(255,255,255,0.6); font-weight: 600; }

/* ---------- Stats bar ---------- */
.stats-bar { background: var(--gold-500); padding: 28px 0; }
.stats-bar-inner { display: grid; grid-template-columns: repeat(2, 1fr); gap: 20px; text-align: center; }
@media (min-width: 640px) { .stats-bar-inner { grid-template-columns: repeat(4, 1fr); } }
.stat-item { padding: 8px 0; }
.stat-value { font-family: var(--font-display); font-size: 32px; font-weight: 800; color: var(--brand-900); }
.stat-suffix { font-family: var(--font-display); font-size: 22px; font-weight: 800; color: var(--brand-900); }
.stat-label { margin-top: 4px; font-size: 13px; font-weight: 600; color: rgba(43,27,14,0.7); }

/* ---------- Floating actions ---------- */
.floating-actions { position: fixed; bottom: 22px; right: 22px; z-index: 400; display: flex; flex-direction: column; gap: 12px; }
.fab {
	width: 56px; height: 56px; border-radius: 50%; display: flex; align-items: center; justify-content: center;
	box-shadow: 0 8px 30px rgba(43,27,14,0.3); transition: all 0.3s ease; color: #fff;
}
.fab .icon { width: 22px; height: 22px; }
.fab-whatsapp { background: var(--accent-green); }
.fab-whatsapp:hover { background: var(--accent-green-hover); transform: translateY(-2px); }

/* ---------- Page hero (interior pages) ---------- */
.page-hero { position: relative; padding: 160px 0 64px; background: var(--brand-900); overflow: hidden; }
.page-hero .bg-img { position: absolute; inset: 0; }
.page-hero .bg-img img { width: 100%; height: 100%; object-fit: cover; opacity: 0.3; }
.page-hero .bg-img::after { content: ""; position: absolute; inset: 0; background: linear-gradient(to right, var(--brand-900) 10%, rgba(43,27,14,0.8) 60%, rgba(43,27,14,0.4) 100%); }
.page-hero .content { position: relative; z-index: 2; max-width: 900px; }
.breadcrumbs { display: flex; align-items: center; gap: 8px; font-size: 13px; color: rgba(255,255,255,0.55); margin-bottom: 16px; }
.breadcrumbs a:hover { color: var(--gold-400); }
.page-hero h1 { color: #fff; font-size: 38px; font-weight: 800; line-height: 1.15; }
.page-hero p { color: rgba(255,255,255,0.65); margin-top: 16px; font-size: 16.5px; line-height: 1.7; max-width: 720px; }
@media (min-width: 640px) { .page-hero h1 { font-size: 50px; } }

/* ---------- Forms ---------- */
.form-grid { display: grid; grid-template-columns: 1fr; gap: 20px; }
@media (min-width: 640px) { .form-grid.two-col { grid-template-columns: 1fr 1fr; } }
.form-field label { display: block; margin-bottom: 6px; font-size: 14px; font-weight: 700; color: var(--brand-900); }
.form-field label .required { color: var(--gold-600); }
.form-field input, .form-field textarea, .form-field select {
	width: 100%; padding: 13px 16px; border-radius: 12px; border: 1px solid var(--line);
	background: #fff; color: var(--ink); transition: border-color 0.2s ease;
}
.form-field input:focus, .form-field textarea:focus, .form-field select:focus {
	outline: none; border-color: var(--gold-400); box-shadow: 0 0 0 3px rgba(246,168,58,0.18);
}
.form-field.has-error input, .form-field.has-error textarea, .form-field.has-error select { border-color: #ef4444; }
.form-error { margin-top: 6px; font-size: 12.5px; color: #dc2626; }
.form-honeypot { position: absolute; left: -9999px; opacity: 0; height: 0; width: 0; }
.form-alert { display: flex; align-items: center; gap: 10px; padding: 14px 16px; border-radius: 12px; font-size: 14px; margin-bottom: 20px; }
.form-alert.error { background: #fef2f2; border: 1px solid #fca5a5; color: #b91c1c; }
.form-alert.success { background: rgba(32,194,92,0.08); border: 1px solid rgba(32,194,92,0.3); color: #15803d; text-align: center; padding: 32px; }
.form-alert.success .success-icon {
	width: 56px; height: 56px; border-radius: 50%; background: var(--accent-green); color: #fff;
	display: flex; align-items: center; justify-content: center; margin: 0 auto 16px;
}
.form-alert.success h3 { color: var(--brand-900); font-size: 20px; margin-bottom: 8px; }
.form-alert.success .icon { width: 28px; height: 28px; }

.contact-info-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 16px; margin-bottom: 40px; }
@media (min-width: 1024px) { .contact-info-grid { grid-template-columns: repeat(4, 1fr); } }
.contact-info-card { padding: 20px; }
.contact-info-card .icon-wrap { width: 44px; height: 44px; border-radius: 12px; background: var(--fog); display: flex; align-items: center; justify-content: center; color: var(--gold-600); }
.contact-info-card .icon-wrap .icon { width: 20px; height: 20px; }
.contact-info-card .label { margin-top: 14px; font-size: 11px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.06em; color: var(--ink-50); }
.contact-info-card .value { margin-top: 4px; font-size: 14px; font-weight: 700; color: var(--brand-900); word-break: break-word; }

.contact-layout { display: grid; grid-template-columns: 1fr; gap: 32px; }
@media (min-width: 1024px) { .contact-layout { grid-template-columns: 1fr 1fr; } }
.contact-form-card { padding: 32px; }
.contact-form-card h2 { font-size: 21px; }
.contact-form-card > p { margin-top: 4px; color: var(--ink-60); font-size: 14px; }
.map-card iframe { width: 100%; aspect-ratio: 4/3; border: 0; display: block; }
.map-card-foot { display: flex; align-items: center; justify-content: space-between; gap: 12px; padding: 20px; flex-wrap: wrap; }
.map-card-foot .office-label { font-weight: 700; font-size: 14px; color: var(--brand-900); }
.map-card-foot .office-addr { font-size: 13.5px; color: var(--ink-60); margin-top: 2px; }
.whatsapp-card { display: flex; flex-direction: column; align-items: center; text-align: center; gap: 14px; padding: 28px; }
.whatsapp-card .icon-circle { width: 52px; height: 52px; border-radius: 50%; background: rgba(32,194,92,0.1); color: var(--accent-green); display: flex; align-items: center; justify-content: center; }
.whatsapp-card .icon-circle .icon { width: 24px; height: 24px; }
.whatsapp-card h3 { font-size: 17px; }
.whatsapp-card p { color: var(--ink-60); font-size: 13.5px; margin-top: 4px; }

/* ---------- Fleet & Service detail pages ---------- */
.detail-layout { display: grid; grid-template-columns: 1fr; gap: 40px; }
@media (min-width: 1024px) { .detail-layout { grid-template-columns: 2fr 1fr; } }
.detail-media img { border-radius: var(--radius-lg); width: 100%; aspect-ratio: 16/9; object-fit: cover; }
.detail-body h2 { font-size: 22px; margin-top: 32px; }
.detail-body p { margin-top: 12px; color: var(--ink-70); line-height: 1.75; }
.check-list { margin-top: 16px; display: grid; grid-template-columns: 1fr; gap: 10px; }
@media (min-width: 640px) { .check-list { grid-template-columns: 1fr 1fr; } }
.check-list li { display: flex; align-items: flex-start; gap: 10px; font-size: 14.5px; color: var(--ink-70); }
.check-list li .icon { width: 16px; height: 16px; color: var(--accent-green); flex-shrink: 0; margin-top: 3px; }
.spec-table { margin-top: 16px; border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden; }
.spec-row { display: flex; justify-content: space-between; padding: 14px 18px; font-size: 14px; }
.spec-row:nth-child(odd) { background: var(--fog); }
.spec-row .spec-label { color: var(--ink-60); font-weight: 600; }
.spec-row .spec-value { color: var(--brand-900); font-weight: 700; }
.sidebar-card { padding: 24px; margin-bottom: 20px; }
.sidebar-card h3 { font-size: 16px; margin-bottom: 14px; }
.industry-tags { display: flex; flex-wrap: wrap; gap: 8px; }
.industry-tags span { background: var(--fog); color: var(--brand-900); font-size: 12.5px; font-weight: 600; padding: 6px 12px; border-radius: 999px; }

/* ---------- Animations ---------- */
@keyframes fadeUp { from { opacity: 0; transform: translateY(16px); } to { opacity: 1; transform: translateY(0); } }
.animate-fadeUp { animation: fadeUp 0.6s ease both; }
.reveal { opacity: 0; transform: translateY(24px); transition: opacity 0.6s ease, transform 0.6s ease; }
.reveal.is-visible { opacity: 1; transform: translateY(0); }

@media (prefers-reduced-motion: reduce) {
	.reveal, .animate-fadeUp { animation: none !important; transition: none !important; opacity: 1 !important; transform: none !important; }
	html { scroll-behavior: auto; }
}

/* ---------- Misc ---------- */
.text-center { text-align: center; }
.bg-fog { background: var(--fog); }
.bg-white { background: #fff; }
.not-found { min-height: 60vh; display: flex; flex-direction: column; align-items: center; justify-content: center; text-align: center; padding: 80px 20px; }
.not-found h1 { font-size: 96px; color: var(--gold-500); }
.not-found p { margin-top: 12px; color: var(--ink-60); max-width: 400px; }
.not-found .btn { margin-top: 24px; }

/* ---------- Blog ---------- */
.blog-hero {
	position: relative; padding: 160px 0 64px; background: var(--brand-900); overflow: hidden; text-align: left;
}
.blog-hero-bg { position: absolute; inset: 0; }
.blog-hero-bg img { width: 100%; height: 100%; object-fit: cover; opacity: 0.3; }
.blog-hero-bg::after { content: ""; position: absolute; inset: 0; background: linear-gradient(to right, var(--brand-900) 10%, rgba(43,27,14,0.8) 60%, rgba(43,27,14,0.4) 100%); }
.blog-hero .container { position: relative; z-index: 2; max-width: 900px; }
.blog-hero .breadcrumbs { margin-bottom: 16px; }
.blog-hero .eyebrow { color: var(--gold-400); }
.blog-hero h1 { color: #fff; font-size: 38px; font-weight: 800; margin-top: 8px; line-height: 1.15; }
.blog-hero p { color: rgba(255,255,255,0.65); margin-top: 16px; font-size: 16.5px; max-width: 720px; line-height: 1.7; }
@media (min-width: 640px) { .blog-hero h1 { font-size: 50px; } }
@media (max-width: 639px) { .blog-hero h1 { font-size: 34px; } }

/* ---------- Blog Contact CTA ---------- */
.blog-contact-cta {
	position: relative; padding: 80px 0; overflow: hidden; background: var(--brand-900);
}
.blog-contact-bg { position: absolute; inset: 0; }
.blog-contact-bg img { width: 100%; height: 100%; object-fit: cover; opacity: 0.25; }
.blog-contact-bg::after { content: ""; position: absolute; inset: 0; background: linear-gradient(to right, var(--brand-900) 20%, rgba(43,27,14,0.8) 80%); }
.blog-contact-inner { position: relative; z-index: 2; max-width: 680px; }
.blog-contact-inner .eyebrow { color: var(--gold-400); }
.blog-contact-inner .eyebrow .icon { width: 16px; height: 16px; margin-right: 4px; }
.blog-contact-inner h2 { color: #fff; font-size: 38px; font-weight: 800; margin-top: 8px; line-height: 1.15; }
.blog-contact-inner p { color: rgba(255,255,255,0.65); margin-top: 16px; font-size: 16px; line-height: 1.7; max-width: 540px; }
.blog-contact-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 28px; }
@media (min-width: 640px) { .blog-contact-inner h2 { font-size: 48px; } }

.blog-grid { display: grid; grid-template-columns: 1fr; gap: 24px; }
@media (min-width: 640px) { .blog-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .blog-grid { grid-template-columns: repeat(3, 1fr); } }

.blog-card {
	display: flex; flex-direction: column; border-radius: var(--radius); overflow: hidden;
	background: #fff; border: 1px solid var(--line); box-shadow: var(--shadow-card);
	transition: all 0.3s ease; text-decoration: none; color: inherit;
}
.blog-card:hover { box-shadow: var(--shadow-card-hover); transform: translateY(-4px); }
.blog-card-img { position: relative; aspect-ratio: 16/10; 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-card-body { padding: 20px; display: flex; flex-direction: column; flex: 1; }
.blog-card-meta { display: flex; align-items: center; gap: 12px; font-size: 12.5px; color: var(--ink-60); margin-bottom: 10px; }
.blog-card-meta .icon { width: 13px; height: 13px; }
.blog-card-meta span { display: inline-flex; align-items: center; gap: 4px; }
.blog-card-title { font-size: 17px; font-weight: 700; color: var(--brand-900); line-height: 1.35; }
.blog-card:hover .blog-card-title { color: var(--gold-600); }
.blog-card-excerpt { margin-top: 8px; color: var(--ink-70); font-size: 14px; line-height: 1.6; flex: 1; display: -webkit-box; -webkit-line-clamp: 3; -webkit-box-orient: vertical; overflow: hidden; }

.blog-pagination { margin-top: 48px; display: flex; justify-content: center; gap: 8px; }
.blog-pagination .page-numbers {
	display: inline-flex; align-items: center; justify-content: center;
	width: 40px; height: 40px; border-radius: 10px; font-size: 14px; font-weight: 600;
	background: var(--fog); color: var(--ink-70); transition: all 0.2s ease;
}
.blog-pagination .page-numbers:hover { background: var(--gold-500); color: var(--brand-900); }
.blog-pagination .page-numbers.current { background: var(--gold-500); color: var(--brand-900); }

.blog-single-meta { display: flex; align-items: center; gap: 10px; font-size: 14px; color: var(--ink-60); margin-bottom: 28px; flex-wrap: wrap; }
.blog-single-meta .icon { width: 14px; height: 14px; color: var(--gold-600); }
.blog-single-meta span { display: inline-flex; align-items: center; gap: 4px; }

.blog-single-thumb { margin-bottom: 32px; border-radius: var(--radius-lg); overflow: hidden; }
.blog-single-thumb img { width: 100%; aspect-ratio: 16/9; object-fit: cover; }

.entry-content { font-size: 16px; line-height: 1.8; color: var(--ink); }
.entry-content h2 { font-size: 24px; margin-top: 40px; margin-bottom: 16px; }
.entry-content h3 { font-size: 20px; margin-top: 32px; margin-bottom: 12px; }
.entry-content p { margin-bottom: 18px; }
.entry-content ul, .entry-content ol { margin-bottom: 18px; padding-left: 24px; }
.entry-content ul { list-style: disc; }
.entry-content ol { list-style: decimal; }
.entry-content li { margin-bottom: 8px; }
.entry-content blockquote {
	margin: 24px 0; padding: 20px 24px; border-left: 4px solid var(--gold-500);
	background: var(--fog); border-radius: 0 var(--radius) var(--radius) 0;
	font-style: italic; color: var(--ink-70);
}
.entry-content img { border-radius: var(--radius); margin: 24px 0; }
.entry-content a { color: var(--gold-600); text-decoration: underline; }
.entry-content a:hover { color: var(--gold-500); }

.blog-single-nav { margin-top: 48px; padding-top: 32px; border-top: 1px solid var(--line); display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.blog-single-prev, .blog-single-next { display: flex; flex-direction: column; gap: 4px; padding: 16px; border-radius: var(--radius); border: 1px solid var(--line); transition: all 0.2s ease; text-decoration: none; color: inherit; }
.blog-single-next { text-align: right; }
.blog-single-prev:hover, .blog-single-next:hover { border-color: var(--gold-400); background: rgba(246,168,58,0.04); }
.blog-single-nav-label { font-size: 12.5px; font-weight: 600; color: var(--ink-60); display: inline-flex; align-items: center; gap: 4px; }
.blog-single-prev .blog-single-nav-label { justify-content: flex-start; }
.blog-single-next .blog-single-nav-label { justify-content: flex-end; }
.blog-single-nav-label .icon { width: 12px; height: 12px; }
.blog-single-nav-title { font-size: 14px; font-weight: 700; color: var(--brand-900); }

/* ---------- Admin bar hidden ---------- */
body #wpadminbar { display: none !important; }
body.admin-bar { margin-top: 0 !important; padding-top: 0 !important; }
body.admin-bar .site-header { top: 0 !important; }

/* ---------- Page hero mobile ---------- */
@media (max-width: 480px) {
	.page-hero { padding: 120px 0 40px; }
	.page-hero h1 { font-size: 24px; }
	.page-hero p { font-size: 14px; }
	.breadcrumbs { font-size: 12px; gap: 6px; }
}

/* ---------- Ensure no horizontal overflow ---------- */
body, html { overflow-x: hidden; }
.container { overflow-wrap: break-word; }
.hero, .page-hero, .blog-hero, .cta-banner, .site-footer { overflow: hidden; }
