/* =========================================================
   HANSAF VENTURES — design tokens
   Back to the original bright palette: green (primary), orange,
   amber, on a light gray page background. Dark sections use a deep
   forest green — not navy or black, per your earlier note. Blue/red
   are kept only for nav item accent variety. Single Poppins
   typeface, sharp-radius cards with soft shadows.
   ========================================================= */
:root {
	--green:     #35BC7A;
	--green-d:   #2B9A64;
	--green-l:   #5FCB90;
	--orange:    #F86924;
	--orange-d:  #CB561E;
	--amber:     #FF9F00;
	--amber-d:   #D18200;
	--blue:      #1C75BC;
	--blue-d:    #145A93;
	--blue-l:    #3B93DA;
	--red:       #E4342A;
	--red-d:     #C22219;
	--yellow:    #FFEB00;
	--teal:      #0e7490;
	--dark:      #1B4332;
	--dark2:     #235441;
	--white:     #ffffff;
	--light:     #F0F0F0;
	--light2:    #e2e8f0;
	--text:      #374151;
	--gray:      #6b7280;
	--border:    #e5e7eb;

	/* RGB triplets, so these colors can be used inside rgba() for
	   translucent tints/shadows without hardcoding a separate hex. */
	--green-rgb:  53,188,122;
	--orange-rgb: 248,105,36;
	--amber-rgb:  255,159,0;
	--blue-rgb:   28,117,188;
	--red-rgb:    228,52,42;
	--dark-rgb:   27,67,50;

	--radius:    6px;
	--radius-lg: 12px;
	--shadow:    0 4px 24px rgba(0,0,0,.09);
	--shadow-lg: 0 12px 48px rgba(0,0,0,.14);

	--font-display: 'Poppins', 'Segoe UI', Arial, sans-serif;
	--font-body:    'Poppins', 'Segoe UI', Arial, sans-serif;
	--font-mono:    'Poppins', 'Segoe UI', Arial, sans-serif;

	--wrap: 1220px;
}

@media (prefers-reduced-motion: reduce) {
	*, *::before, *::after { animation-duration: 0.001ms !important; animation-iteration-count: 1 !important; transition-duration: 0.001ms !important; }
}

/* =========================================================
   Reset & base
   ========================================================= */
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
	margin: 0;
	background: var(--white);
	color: var(--text);
	font-family: var(--font-body);
	font-size: 16px;
	line-height: 1.72;
	-webkit-font-smoothing: antialiased;
	overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; transition: all 0.25s ease; }
ul { margin: 0; padding: 0; list-style: none; }
h1, h2, h3, h4 { font-family: var(--font-display); font-weight: 800; line-height: 1.2; margin: 0 0 0.5em; color: var(--dark); }
p { margin: 0 0 1em; }
:focus-visible { outline: 2px solid var(--green); outline-offset: 2px; }

.wrap { max-width: var(--wrap); margin: 0 auto; padding: 0 28px; }

.sec-label {
	display: inline-flex; align-items: center; gap: 9px;
	color: var(--green); font-size: 12.5px; font-weight: 700;
	letter-spacing: 0.16em; text-transform: uppercase; margin-bottom: 12px;
}
.sec-label::before { content: ''; width: 26px; height: 2px; background: var(--green); flex-shrink: 0; }
.sec-label--center { justify-content: center; }
.sec-title { font-size: clamp(26px, 3.6vw, 40px); font-weight: 800; color: var(--dark); }
.sec-title span, .sec-title .accent { color: var(--green); }
.sec-title--white { color: var(--white); }
.divider-blue { width: 48px; height: 3px; background: var(--green); margin-bottom: 22px; }
.divider-blue--center { margin-left: auto; margin-right: auto; }
.divider-blue--blue   { background: var(--blue); }
.divider-blue--orange { background: var(--orange); }
.divider-blue--green  { background: var(--green); }
.divider-blue--amber  { background: var(--amber); }
.divider-blue--red    { background: var(--red); }
.section-lede { color: var(--gray); font-size: 15.5px; max-width: 560px; }

/* Back-compat alias: templates that still use .eyebrow render the same as sec-label */
.eyebrow { display: inline-flex; align-items: center; gap: 9px; color: var(--green); font-size: 12.5px; font-weight: 700; letter-spacing: 0.16em; text-transform: uppercase; margin-bottom: 12px; }
.eyebrow::before { content: ''; width: 26px; height: 2px; background: var(--green); flex-shrink: 0; }
.eyebrow-dash { display: inline-flex; align-items: center; gap: 9px; color: var(--green); font-size: 12.5px; font-weight: 700; letter-spacing: 0.16em; text-transform: uppercase; margin-bottom: 12px; }
.eyebrow-dash::before { content: ''; width: 26px; height: 2px; background: var(--green); flex-shrink: 0; }
.eyebrow-dash--center, .eyebrow--center { justify-content: center; }

/* =========================================================
   Buttons
   ========================================================= */
.button {
	display: inline-flex; align-items: center; gap: 8px;
	font-family: var(--font-body);
	font-weight: 700;
	font-size: 13px;
	letter-spacing: 0.06em;
	text-transform: uppercase;
	padding: 13px 28px;
	background: var(--green);
	color: var(--white);
	border: 2px solid var(--green);
	border-radius: var(--radius);
	cursor: pointer;
	transition: background 0.25s ease, color 0.25s ease, transform 0.15s ease, box-shadow 0.25s ease;
	box-shadow: 0 6px 20px rgba(var(--green-rgb),0.3);
}
.button:hover { background: var(--green-d); border-color: var(--green-d); transform: translateY(-2px); }
.button--ghost { background: transparent; color: var(--green); box-shadow: none; }
.button--ghost:hover { background: var(--green); color: var(--white); }
.button--small { padding: 9px 18px; font-size: 11.5px; }
.button--white { background: var(--white); color: var(--green); border-color: var(--white); box-shadow: none; }
.button--white:hover { background: var(--light); color: var(--green-d); }

/* =========================================================
   Topbar
   ========================================================= */
.topbar { background: var(--dark); padding: 9px 0; font-size: 12.5px; color: rgba(255,255,255,0.68); border-bottom: 2px solid var(--green); }
.topbar-inner { display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 8px; }
.tb-info { display: none; align-items: center; flex-wrap: wrap; gap: 20px; }
.tb-info span { display: inline-flex; align-items: center; gap: 6px; }
.tb-info svg { color: var(--green-l); flex-shrink: 0; }
.tb-info a { color: rgba(255,255,255,0.68); }
.tb-info a:hover { color: var(--green-l); }
.tb-right { display: flex; align-items: center; gap: 8px; margin-left: auto; }
.tb-social {
	display: inline-flex; align-items: center; justify-content: center;
	width: 27px; height: 27px; border-radius: 50%;
	background: rgba(255,255,255,0.08); color: rgba(255,255,255,0.65); font-size: 12px;
}
.tb-social svg { width: 13px; height: 13px; }
.tb-social:hover { background: var(--green); color: var(--white); }
.tb-map-btn { background: var(--green); color: var(--white); font-size: 11.5px; font-weight: 700; letter-spacing: 0.05em; padding: 5px 14px; border-radius: 3px; display: inline-flex; align-items: center; gap: 6px; }
.tb-map-btn:hover { background: var(--green-d); }
@media (min-width: 768px) { .tb-info { display: flex; } }

/* =========================================================
   Header / nav
   ========================================================= */
.site-header {
	background: var(--white);
	box-shadow: 0 2px 20px rgba(0,0,0,0.08);
	position: sticky; top: 0; z-index: 200;
}
.site-header-inner { display: flex; align-items: center; justify-content: space-between; padding: 0 28px; position: relative; }
.site-brand { display: flex; align-items: center; gap: 10px; color: var(--dark); padding: 16px 0; }
.site-brand-mark { color: var(--green); display: inline-flex; }
.site-brand-text { display: flex; flex-direction: column; line-height: 1.1; }
.site-brand-name { font-family: var(--font-display); font-weight: 800; font-size: 19px; letter-spacing: -0.01em; }
.site-brand-tag { font-family: var(--font-body); font-size: 10.5px; letter-spacing: 0.1em; text-transform: uppercase; color: var(--gray); }

.nav-toggle-checkbox { display: none; }
.nav-toggle { display: none; flex-direction: column; gap: 5px; cursor: pointer; padding: 6px; }
.nav-toggle span { width: 22px; height: 2px; background: var(--dark); display: block; }

.site-nav { display: flex; align-items: center; gap: 4px; }
.nav-menu { display: flex; align-items: center; gap: 2px; font-size: 12.5px; }
.nav-menu > li > a {
	display: block; position: relative; padding: 26px 13px;
	font-weight: 600; letter-spacing: 0.05em; text-transform: uppercase; color: var(--dark);
}
.nav-menu > li > a::after {
	content: ''; position: absolute; bottom: 18px; left: 13px; right: 13px; height: 2px;
	background: var(--green); transform: scaleX(0); transition: transform 0.25s ease;
}
.nav-menu > li > a:hover, .nav-menu > li.is-open > a { color: var(--green); }
.nav-menu > li > a:hover::after { transform: scaleX(1); }
.nav-menu .has-dropdown { position: relative; }
.nav-menu .caret { font-size: 9px; margin-left: 3px; }
.nav-menu .dropdown {
	position: absolute; top: 100%; left: 0; min-width: 230px;
	background: var(--white); border-radius: var(--radius);
	box-shadow: 0 8px 32px rgba(0,0,0,0.14); padding: 8px 0; display: none; z-index: 50;
}
.nav-menu .has-dropdown:hover .dropdown, .nav-menu .has-dropdown.is-open .dropdown { display: block; }
.nav-menu .dropdown li { display: block; }
.nav-menu .dropdown a {
	display: block; padding: 10px 20px; font-size: 12.5px; font-weight: 600;
	color: var(--dark); text-transform: uppercase; letter-spacing: 0.03em;
}
.nav-menu .dropdown a:hover { background: rgba(var(--green-rgb),0.07); color: var(--green); padding-left: 24px; }

.nav-cta-group { display: flex; align-items: center; gap: 10px; margin-left: 14px; }
.nav-cta { white-space: nowrap; border-radius: var(--radius); margin: 0; }
.nav-phone { display: none; }

@media (max-width: 960px) {
	.nav-toggle { display: flex; }
	.site-nav {
		position: absolute; top: 100%; left: 0; right: 0;
		background: var(--white); box-shadow: 0 8px 24px rgba(0,0,0,0.1);
		flex-direction: column; align-items: flex-start; gap: 0;
		padding: 10px 28px 22px; display: none;
	}
	.nav-toggle-checkbox:checked ~ .site-nav { display: flex; }
	.nav-menu { flex-direction: column; align-items: flex-start; gap: 0; width: 100%; }
	.nav-menu > li { width: 100%; border-bottom: 1px solid var(--border); }
	.nav-menu > li > a { padding: 12px 0; }
	.nav-menu > li > a::after { display: none; }
	.nav-menu .dropdown { position: static; box-shadow: none; padding: 0 0 8px 14px; display: none; background: var(--light); }
	.nav-menu .has-dropdown.is-open .dropdown { display: block; }
	.nav-cta-group { flex-direction: column; align-items: flex-start; gap: 10px; margin: 14px 0 0; width: 100%; }
	.lang-switcher { width: 100%; }
	.nav-cta { width: 100%; text-align: center; justify-content: center; }
}

/* =========================================================
   Language switcher
   ========================================================= */
.lang-switcher { position: relative; }
.lang-switcher-toggle {
	display: flex; align-items: center; gap: 6px;
	background: transparent; border: 1px solid var(--border); border-radius: var(--radius);
	padding: 8px 12px; cursor: pointer; color: var(--dark); font-weight: 600; font-size: 12px;
	font-family: var(--font-body); text-transform: uppercase; letter-spacing: 0.04em;
}
.lang-switcher-toggle:hover { border-color: var(--green); color: var(--green); }
.lang-switcher-menu {
	position: absolute; top: calc(100% + 8px); right: 0; z-index: 60;
	background: var(--white); border-radius: var(--radius);
	box-shadow: 0 8px 32px rgba(0,0,0,0.14);
	min-width: 140px; padding: 6px; display: none;
}
.lang-switcher.is-open .lang-switcher-menu { display: block; }
.lang-switcher-menu button {
	display: block; width: 100%; text-align: left; background: none; border: none;
	padding: 9px 10px; border-radius: 4px; font-size: 13.5px; color: var(--dark); cursor: pointer;
	font-family: var(--font-body);
}
.lang-switcher-menu button:hover { background: var(--light); color: var(--green); }

/* =========================================================
   Hero (full-bleed slider)
   ========================================================= */
.hero-banner { position: relative; overflow: hidden; }
.hero-slides { position: relative; height: 580px; }
.hero-slide {
	position: absolute; inset: 0;
	background-size: cover; background-position: center;
	opacity: 0; visibility: hidden; transition: opacity 1s ease;
	display: flex; align-items: center;
}
.hero-slide.is-active { opacity: 1; visibility: visible; }
.hero-slide-overlay { position: absolute; inset: 0; background: linear-gradient(to right, rgba(var(--dark-rgb),0.9) 45%, rgba(var(--dark-rgb),0.35) 80%); }
.hero-slide-inner { position: relative; z-index: 2; color: var(--white); max-width: 640px; padding: 0 8%; }
.hero-slide-inner .sec-label, .hero-slide-inner .eyebrow { color: var(--green-l); }
.hero-slide-inner .sec-label::before, .hero-slide-inner .eyebrow::before { background: var(--green-l); }
.hero-slide-inner h1 { color: var(--white); font-size: clamp(30px, 4.6vw, 50px); font-weight: 800; letter-spacing: -0.01em; }
.hero-slide-inner h1 .accent { color: var(--green-l); }
.hero-slide-inner .hero-lede { font-size: 15.5px; color: rgba(255,255,255,0.8); max-width: 480px; }
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; margin-top: 22px; }

.hero-nav-btn {
	position: absolute; top: 50%; transform: translateY(-50%); z-index: 4;
	width: 44px; height: 44px; border-radius: 50%; background: var(--green); color: var(--white);
	display: flex; align-items: center; justify-content: center; border: none; cursor: pointer;
}
.hero-nav-btn:hover { background: var(--green-d); }
.hero-nav-btn--prev { left: 20px; }
.hero-nav-btn--next { right: 20px; }
.hero-dots { position: absolute; left: 8%; bottom: 22px; z-index: 4; display: flex; gap: 8px; }
.hero-dot { width: 9px; height: 9px; border-radius: 50%; border: none; background: rgba(255,255,255,0.4); cursor: pointer; padding: 0; }
.hero-dot.is-active { background: var(--green-l); }

@media (max-width: 700px) {
	.hero-slides { height: 420px; }
	.hero-slide-inner .hero-lede { display: none; }
	.hero-nav-btn { display: none; }
}

/* =========================================================
   News ticker
   ========================================================= */
.news-ticker { background: var(--green); padding: 10px 0; overflow: hidden; }
.news-ticker-inner { display: flex; align-items: center; gap: 14px; }
.ticker-lbl {
	background: var(--dark); color: var(--white); font-size: 11px; font-weight: 700;
	letter-spacing: 0.1em; text-transform: uppercase; padding: 4px 13px; border-radius: 3px;
	flex-shrink: 0; white-space: nowrap;
}
.ticker-track-wrap { flex: 1; overflow: hidden; }
.ticker-track { display: inline-flex; white-space: nowrap; animation: tickerScroll 26s linear infinite; }
.ticker-track span { font-size: 13px; color: rgba(255,255,255,0.92); padding-right: 40px; }
@keyframes tickerScroll { from { transform: translateX(0); } to { transform: translateX(-50%); } }

/* =========================================================
   Stats band
   ========================================================= */
.stats-band { background: var(--white); padding: 56px 0; border-bottom: 1px solid var(--border); }
.stats-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; text-align: center; }
.stat-item .stat-num { font-size: clamp(30px, 4vw, 44px); font-weight: 800; line-height: 1; }
.stat-item .stat-lbl { font-size: 12px; font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase; color: var(--gray); margin-top: 8px; }
.stat-item--blue .stat-num   { color: var(--blue); }
.stat-item--green .stat-num  { color: var(--green); }
.stat-item--orange .stat-num { color: var(--orange); }
.stat-item--amber .stat-num  { color: var(--amber); }
@media (max-width: 700px) { .stats-grid { grid-template-columns: repeat(2, 1fr); } }

/* =========================================================
   Trusted-by / clients marquee
   ========================================================= */
.trusted-strip { padding: 46px 0; border-bottom: 1px solid var(--border); overflow: hidden; }
.trusted-label { display: block; text-align: center; font-size: 13px; color: var(--gray); letter-spacing: 0.04em; margin-bottom: 24px; }
.trusted-track-wrap { overflow: hidden; }
.trusted-track { display: inline-flex; align-items: center; width: max-content; animation: tickerScroll 24s linear infinite; }
.trusted-track img { height: 56px; width: auto; object-fit: contain; margin: 0 34px; filter: grayscale(1); opacity: 0.55; }
.trusted-track img:hover { filter: none; opacity: 1; }

/* =========================================================
   Services grid (light card, rotating color-accent icon)
   ========================================================= */
.services-section { padding: 90px 0; }
.services-section-head { text-align: center; max-width: 620px; margin: 0 auto 48px; }
.services-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.service-card {
	background: var(--white); border-radius: var(--radius-lg); padding: 32px 26px;
	text-align: center; box-shadow: var(--shadow); border-top: 4px solid transparent;
	display: flex; flex-direction: column; transition: all 0.25s ease;
}
.service-card-icon {
	width: 68px; height: 68px; border-radius: 50%;
	display: flex; align-items: center; justify-content: center; margin: 0 auto 18px;
	transition: all 0.25s ease;
}
.service-card-icon .icon { width: 28px; height: 28px; }
.service-card h3 { font-size: 16px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.03em; margin-bottom: 10px; }
.service-card p { color: var(--gray); font-size: 13.5px; flex-grow: 1; }
.service-card-link { font-weight: 700; font-size: 12px; letter-spacing: 0.05em; text-transform: uppercase; margin-top: 14px; }

.service-card--blue .service-card-icon   { background: rgba(var(--blue-rgb),0.1); color: var(--blue); }
.service-card--green .service-card-icon  { background: rgba(var(--green-rgb),0.1); color: var(--green); }
.service-card--orange .service-card-icon { background: rgba(var(--orange-rgb),0.1); color: var(--orange); }
.service-card--amber .service-card-icon  { background: rgba(var(--amber-rgb),0.1); color: var(--amber); }
.service-card--red .service-card-icon    { background: rgba(var(--red-rgb),0.1); color: var(--red); }

.service-card--blue:hover   { border-top-color: var(--blue); }
.service-card--green:hover  { border-top-color: var(--green); }
.service-card--orange:hover { border-top-color: var(--orange); }
.service-card--amber:hover  { border-top-color: var(--amber); }
.service-card--red:hover    { border-top-color: var(--red); }
.service-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.service-card--blue:hover .service-card-icon   { background: var(--blue); color: var(--white); }
.service-card--green:hover .service-card-icon  { background: var(--green); color: var(--white); }
.service-card--orange:hover .service-card-icon { background: var(--orange); color: var(--white); }
.service-card--amber:hover .service-card-icon  { background: var(--amber); color: var(--white); }
.service-card--red:hover .service-card-icon    { background: var(--red); color: var(--white); }
.service-card--blue .service-card-link   { color: var(--blue); }
.service-card--green .service-card-link  { color: var(--green); }
.service-card--orange .service-card-link { color: var(--orange); }
.service-card--amber .service-card-link  { color: var(--amber); }
.service-card--red .service-card-link    { color: var(--red); }

@media (max-width: 980px) { .services-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 640px) { .services-grid { grid-template-columns: 1fr; } }

/* =========================================================
   About preview (image + badge, checklist)
   ========================================================= */
.about-preview { background: var(--light); padding: 90px 0; }
.about-preview-inner { display: grid; grid-template-columns: 0.9fr 1.1fr; gap: 56px; align-items: center; }
.about-preview-collage { position: relative; }
.about-preview-collage img { width: 100%; height: 420px; object-fit: cover; border-radius: var(--radius-lg); }
.about-preview-back, .about-preview-front { display: none; }
.about-badge {
	position: absolute; bottom: 24px; left: -18px; background: var(--green); color: var(--white);
	padding: 18px 22px; border-radius: var(--radius-lg); text-align: center; box-shadow: var(--shadow-lg);
	min-width: 118px;
}
.about-badge .ab-num { font-size: 34px; font-weight: 800; line-height: 1; }
.about-badge .ab-txt { font-size: 11px; font-weight: 600; letter-spacing: 0.06em; text-transform: uppercase; margin-top: 4px; }

.about-preview-copy p { color: var(--text); max-width: 560px; }
.check-list { display: grid; grid-template-columns: 1fr 1fr; gap: 10px 20px; margin: 20px 0 28px; }
.check-list li { position: relative; padding-left: 24px; font-weight: 600; color: var(--dark); font-size: 14px; }
.check-list li::before { content: '\2713'; position: absolute; left: 0; top: 0; color: var(--green); font-weight: 800; }
.about-preview-actions { display: flex; align-items: center; gap: 24px; flex-wrap: wrap; }
.experience-badge { display: none; }

@media (max-width: 860px) {
	.about-preview-inner { grid-template-columns: 1fr; }
	.about-preview-collage { margin-bottom: 40px; }
	.check-list { grid-template-columns: 1fr; }
}

/* =========================================================
   CTA strip (dark, centered)
   ========================================================= */
.cta-strip {
	background: linear-gradient(135deg, var(--dark) 0%, var(--dark2) 100%);
	padding: 70px 0; text-align: center; color: var(--white); position: relative; overflow: hidden;
}
.cta-strip::before { content: ''; position: absolute; top: -80px; right: -80px; width: 280px; height: 280px; background: rgba(var(--green-rgb),0.12); border-radius: 50%; }
.cta-strip-inner { position: relative; z-index: 2; }
.cta-strip h2 { color: var(--white); font-size: clamp(24px, 3.2vw, 36px); margin-bottom: 12px; }
.cta-strip p { color: rgba(255,255,255,0.7); margin-bottom: 26px; font-size: 15px; max-width: 520px; margin-left: auto; margin-right: auto; }

/* =========================================================
   Page banner + breadcrumb (inner pages)
   ========================================================= */
.page-banner { position: relative; height: 280px; display: flex; align-items: center; justify-content: center; overflow: hidden; }
.page-banner::after { content: ''; position: absolute; inset: 0; background: linear-gradient(135deg, rgba(var(--green-rgb),0.88), rgba(var(--dark-rgb),0.92)); }
.page-banner img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.page-banner-inner { position: relative; z-index: 2; text-align: center; color: var(--white); }
.page-banner-inner h1 { color: var(--white); font-size: clamp(26px, 4vw, 38px); margin-bottom: 12px; }
.breadcrumb-trail { display: flex; align-items: center; justify-content: center; gap: 8px; font-size: 13px; color: rgba(255,255,255,0.7); }
.breadcrumb-trail a { color: rgba(255,255,255,0.7); }
.breadcrumb-trail a:hover { color: var(--white); }
.breadcrumb-trail .sep { color: rgba(255,255,255,0.4); }
.breadcrumb-trail .current { color: var(--white); }

@media (max-width: 700px) { .page-banner { height: 200px; } }

/* =========================================================
   Service page body
   ========================================================= */
.service-body { padding: 80px 0; }
.service-body-inner { display: grid; grid-template-columns: 1fr 320px; gap: 56px; }
.service-content { font-size: 15.5px; color: var(--text); max-width: 640px; }
.service-content h2, .service-content h3 { color: var(--dark); margin-top: 1.4em; }
.service-content p { margin-bottom: 1.1em; }

.service-sidebar { align-self: start; }
.sidebar-block { background: var(--white); border-radius: var(--radius-lg); box-shadow: var(--shadow); padding: 26px; margin-bottom: 20px; border-top: 4px solid var(--green); }
.sidebar-block h3 { font-size: 14px; font-weight: 700; letter-spacing: 0.06em; text-transform: uppercase; margin-bottom: 16px; color: var(--dark); }
.checklist li { position: relative; padding-left: 24px; margin-bottom: 12px; font-size: 14px; color: var(--text); }
.checklist li::before { content: '\2713'; position: absolute; left: 0; top: 0; color: var(--green); font-weight: 800; }
.stat-list div { display: flex; justify-content: space-between; align-items: baseline; padding: 9px 0; border-bottom: 1px dashed var(--border); }
.stat-list div:last-child { border-bottom: none; }
.stat-list dt { font-family: var(--font-display); font-weight: 800; color: var(--green); font-size: 18px; margin: 0; }
.stat-list dd { margin: 0; font-size: 12.5px; color: var(--gray); text-align: right; }

.sidebar-block--blue   { border-top-color: var(--blue); }
.sidebar-block--orange { border-top-color: var(--orange); }
.sidebar-block--green  { border-top-color: var(--green); }
.sidebar-block--amber  { border-top-color: var(--amber); }
.sidebar-block--red    { border-top-color: var(--red); }
.sidebar-block--blue .checklist li::before,   .sidebar-block--blue .stat-list dt   { color: var(--blue); }
.sidebar-block--orange .checklist li::before, .sidebar-block--orange .stat-list dt { color: var(--orange); }
.sidebar-block--green .checklist li::before,  .sidebar-block--green .stat-list dt  { color: var(--green); }
.sidebar-block--amber .checklist li::before,  .sidebar-block--amber .stat-list dt  { color: var(--amber); }
.sidebar-block--red .checklist li::before,    .sidebar-block--red .stat-list dt    { color: var(--red); }

.service-hero-photo { width: 100%; border-radius: var(--radius-lg); overflow: hidden; margin-top: 26px; box-shadow: var(--shadow); }
.service-hero-photo img { width: 100%; height: 320px; object-fit: cover; display: block; }
.service-content img { width: 100%; border-radius: var(--radius-lg); margin: 24px 0; }
.service-gallery { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin: 28px 0; }
.service-gallery img { width: 100%; height: 200px; object-fit: cover; border-radius: var(--radius-lg); margin: 0; }

@media (max-width: 900px) { .service-body-inner { grid-template-columns: 1fr; } }
@media (max-width: 600px) { .service-gallery { grid-template-columns: 1fr; } }

.other-routes { padding: 20px 0 70px; }
.other-routes-list { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 18px; }
.other-route {
	font-size: 13px; font-weight: 600; padding: 10px 18px;
	background: var(--white); border-radius: var(--radius); box-shadow: var(--shadow);
	border-bottom: 3px solid transparent;
}
.other-route:hover { color: var(--green); }
.other-route--blue:hover   { color: var(--blue); border-bottom-color: var(--blue); }
.other-route--orange:hover { color: var(--orange); border-bottom-color: var(--orange); }
.other-route--green:hover  { color: var(--green); border-bottom-color: var(--green); }
.other-route--amber:hover  { color: var(--amber); border-bottom-color: var(--amber); }
.other-route--red:hover    { color: var(--red); border-bottom-color: var(--red); }

/* =========================================================
   Generic page
   ========================================================= */
.generic-page { padding: 0 0 90px; }
.generic-page-inner { max-width: 720px; padding-top: 70px; }
.generic-page-content { font-size: 15.5px; color: var(--text); }

/* =========================================================
   Contact block (shared partial)
   ========================================================= */
#contact.contact-block {
	display: grid; grid-template-columns: 1fr 1.1fr; gap: 50px;
	max-width: var(--wrap); margin: 0 auto; padding: 90px 28px; align-items: start;
}
.contact-block-copy h2 { font-size: clamp(24px, 3.2vw, 34px); max-width: 420px; }
.contact-details { margin-top: 22px; display: flex; flex-direction: column; gap: 14px; font-size: 14.5px; }
.contact-details li { display: flex; align-items: flex-start; gap: 12px; }
.contact-details .icon {
	width: 40px; height: 40px; border-radius: 50%; background: rgba(var(--green-rgb),0.08); color: var(--green);
	display: flex; align-items: center; justify-content: center; flex-shrink: 0; padding: 10px;
}

.contact-block-form { background: var(--white); border-radius: var(--radius-lg); box-shadow: var(--shadow); padding: 34px; }
.contact-form label { display: block; font-size: 12px; font-weight: 700; letter-spacing: 0.04em; text-transform: uppercase; margin-bottom: 7px; color: var(--dark); }
.contact-form input, .contact-form textarea {
	width: 100%; font-family: var(--font-body); font-size: 14.5px; padding: 11px 14px;
	border: 1px solid var(--border); border-radius: var(--radius); background: var(--light);
	margin-bottom: 16px; color: var(--dark);
}
.contact-form input:focus, .contact-form textarea:focus { border-color: var(--green); box-shadow: 0 0 0 3px rgba(var(--green-rgb),0.12); background: var(--white); outline: none; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-notice { padding: 12px 14px; border-radius: var(--radius); font-size: 13.5px; margin-bottom: 18px; }
.form-notice--success { background: rgba(16,163,74,0.1); color: #0f9d4e; border: 1px solid #0f9d4e; }
.form-notice--error { background: rgba(239,68,68,0.08); color: #ef4444; border: 1px solid #ef4444; }

@media (max-width: 860px) {
	#contact.contact-block { grid-template-columns: 1fr; }
	.form-row { grid-template-columns: 1fr; }
}

/* =========================================================
   About / Clients / Downloads / Contact page components
   ========================================================= */
.about-body { padding: 80px 0; }
.about-body-grid { display: grid; grid-template-columns: 1.1fr 0.9fr; gap: 48px; align-items: center; }
.about-body-copy p { color: var(--text); font-size: 15.5px; }
.about-body-img img { width: 100%; border-radius: var(--radius-lg); box-shadow: var(--shadow); }
@media (max-width: 900px) { .about-body-grid { grid-template-columns: 1fr; } }

.value-card, .sidebar-block, .contact-info-card, .download-item, .testimonial-card, .logo-tile {
	background: var(--white); border-radius: var(--radius-lg); box-shadow: var(--shadow);
}
.value-card { padding: 26px; }
.value-card .icon { color: var(--green); width: 28px; height: 28px; margin-bottom: 12px; }
.value-card h3 { font-size: 16px; margin-bottom: 6px; }
.value-card p { font-size: 13.5px; color: var(--gray); margin: 0; }
.value-card--blue .icon   { color: var(--blue); }
.value-card--orange .icon { color: var(--orange); }
.value-card--green .icon  { color: var(--green); }
.value-card--amber .icon  { color: var(--amber); }
.value-card--red .icon    { color: var(--red); }
.values-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; margin-top: 20px; }

.team-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; margin-top: 24px; }
.team-card { text-align: center; }
.team-card img { width: 100%; aspect-ratio: 1; object-fit: cover; border-radius: 50%; margin-bottom: 14px; box-shadow: var(--shadow); }
.team-card h4 { font-size: 15px; margin-bottom: 2px; }
.team-card span { font-size: 12px; color: var(--green); font-weight: 700; text-transform: uppercase; letter-spacing: 0.04em; }
.team-card-meta { font-size: 12px; color: var(--gray); margin: 6px 0 0; }

.download-item { display: flex; align-items: center; gap: 18px; padding: 20px 24px; margin-bottom: 16px; }
.download-icon { width: 46px; height: 46px; border-radius: var(--radius); background: var(--green); color: var(--white); display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.download-icon--blue   { background: var(--blue); }
.download-icon--orange { background: var(--orange); }
.download-icon--green  { background: var(--green); }
.download-icon--amber  { background: var(--amber); }
.download-icon--red    { background: var(--red); }
.download-info { flex-grow: 1; }
.download-info h3 { font-size: 15.5px; margin: 0 0 2px; }
.download-info span { font-size: 12px; color: var(--gray); }
.downloads-hero, .clients-hero, .contact-hero { padding: 60px 0 40px; }
.downloads-list { padding: 40px 0 80px; }

.logo-grid { display: grid; grid-template-columns: repeat(5, 1fr); gap: 20px; align-items: center; }
.logo-tile { padding: 14px; display: flex; align-items: center; justify-content: center; height: 80px; overflow: hidden; }
.logo-tile img { width: 100%; height: 100%; object-fit: contain; }
.logo-strip { padding: 50px 0; }

.testimonial-section { padding: 20px 0 84px; }
.testimonial-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; margin-top: 28px; }
.testimonial-card { padding: 26px; }
.testimonial-card p { color: var(--text); font-size: 14.5px; }
.testimonial-person { display: flex; align-items: center; gap: 12px; margin-top: 16px; }
.testimonial-person img { width: 44px; height: 44px; border-radius: 50%; object-fit: cover; }
.testimonial-person h4 { font-size: 14px; margin: 0; }
.testimonial-person span { font-size: 11.5px; color: var(--green); font-weight: 700; text-transform: uppercase; }

.contact-page-grid { display: grid; grid-template-columns: 1fr 1fr; }
.contact-map { min-height: 380px; }
.contact-map iframe { width: 100%; height: 100%; border: 0; display: block; }
.contact-info-panel { padding: 56px 40px; background: var(--dark); color: var(--white); }
.contact-info-panel .sec-label, .contact-info-panel .eyebrow { color: var(--green-l); }
.contact-info-panel .sec-label::before, .contact-info-panel .eyebrow::before { background: var(--green-l); }
.contact-info-panel h2 { color: var(--white); }
.contact-info-panel .contact-details a { color: var(--green-l); }
.contact-info-panel .contact-details .icon { background: rgba(255,255,255,0.1); color: var(--green-l); }

@media (max-width: 980px) { .logo-grid { grid-template-columns: repeat(3, 1fr); } .testimonial-grid { grid-template-columns: 1fr; } .values-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 900px) { .contact-page-grid { grid-template-columns: 1fr; } .contact-map { min-height: 300px; } }
@media (max-width: 640px) { .logo-grid { grid-template-columns: repeat(2, 1fr); } .team-grid { grid-template-columns: 1fr 1fr; } .values-grid { grid-template-columns: 1fr; } }

/* =========================================================
   Footer
   ========================================================= */
.site-footer { background: var(--dark); color: rgba(255,255,255,0.65); }
.footer-grid { display: grid; grid-template-columns: 1.4fr 1fr 1.1fr 1.1fr; gap: 32px; padding: 68px 28px 44px; max-width: var(--wrap); margin: 0 auto; }
.footer-col h4 {
	color: var(--white); font-size: 12.5px; font-weight: 700; letter-spacing: 0.14em; text-transform: uppercase;
	margin-bottom: 18px; padding-bottom: 9px; border-bottom: 2px solid var(--green); display: inline-block;
}
.footer-col p { font-size: 13px; color: rgba(255,255,255,0.5); margin: 0 0 16px; line-height: 1.85; }
.footer-col ul { display: flex; flex-direction: column; gap: 9px; font-size: 13px; }
.footer-col ul a { color: rgba(255,255,255,0.5); display: flex; align-items: center; gap: 6px; }
.footer-col ul a::before { content: '\203A'; color: var(--green); font-weight: 700; }
.footer-col ul a:hover { color: var(--green-l); padding-left: 3px; }
.footer-brand-name { font-size: 20px; font-weight: 800; font-family: var(--font-display); display: block; margin-bottom: 12px; color: var(--white); }

.footer-social { display: flex; gap: 8px; }
.footer-social a {
	width: 33px; height: 33px; border-radius: 50%; border: 1px solid rgba(255,255,255,0.14);
	display: flex; align-items: center; justify-content: center; color: rgba(255,255,255,0.55);
}
.footer-social a svg { width: 14px; height: 14px; }
.footer-social a:hover { background: var(--green); border-color: var(--green); color: var(--white); }

.footer-newsletter { display: flex; margin-bottom: 20px; max-width: 280px; }
.footer-newsletter input { flex-grow: 1; border: 1px solid rgba(255,255,255,0.2); background: rgba(255,255,255,0.06); color: var(--white); padding: 11px 14px; border-radius: var(--radius) 0 0 var(--radius); font-size: 13px; }
.footer-newsletter input::placeholder { color: rgba(255,255,255,0.5); }
.footer-newsletter button { background: var(--green); border: none; color: var(--white); padding: 0 16px; border-radius: 0 var(--radius) var(--radius) 0; cursor: pointer; display: flex; align-items: center; }

.footer-contact-list li { display: flex; align-items: flex-start; gap: 11px; color: rgba(255,255,255,0.5); font-size: 13px; margin-bottom: 13px; }
.footer-contact-list .icon { color: var(--green-l); flex-shrink: 0; margin-top: 2px; width: 16px; height: 16px; }
.footer-contact-list a { color: rgba(255,255,255,0.5); }
.footer-contact-list a:hover { color: var(--green-l); }

.footer-bottom {
	display: flex; justify-content: space-between; flex-wrap: wrap; gap: 10px;
	padding: 17px 28px; max-width: var(--wrap); margin: 0 auto;
	font-size: 12.5px; color: rgba(255,255,255,0.36); border-top: 1px solid rgba(255,255,255,0.07);
}
.footer-bottom .credit-link {
	background: none; background-color: transparent; border: none; box-shadow: none;
	-webkit-appearance: none; appearance: none;
	padding: 0; margin: 0; font: inherit; line-height: inherit; text-align: left; display: inline; cursor: pointer;
	color: var(--green-l); font-weight: 600; text-decoration: none;
}
.footer-bottom .credit-link:hover, .footer-bottom .credit-link:focus, .footer-bottom .credit-link:active {
	background: none; background-color: transparent; color: var(--green-l); text-decoration: underline;
}

@media (max-width: 860px) { .footer-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 560px) { .footer-grid { grid-template-columns: 1fr; } }

/* =========================================================
   Credit modal
   ========================================================= */
.credit-modal { position: fixed; inset: 0; z-index: 300; display: none; align-items: center; justify-content: center; padding: 20px; }
.credit-modal.is-open { display: flex; }
.credit-modal-backdrop { position: absolute; inset: 0; background: rgba(var(--dark-rgb),0.65); }
.credit-modal-box { position: relative; background: var(--white); border-radius: var(--radius-lg); max-width: 460px; width: 100%; padding: 30px 26px 26px; z-index: 1; }
.credit-modal-close { position: absolute; top: 14px; right: 14px; width: 30px; height: 30px; border-radius: 50%; border: none; background: var(--light); color: var(--dark); cursor: pointer; font-size: 18px; line-height: 1; }
.credit-modal-close:hover { background: var(--green); color: var(--white); }
.credit-modal-box h3 { font-size: 18px; margin-bottom: 4px; }
.credit-modal-sub { font-size: 13px; color: var(--gray); margin-bottom: 20px; }
.credit-cards { display: flex; flex-direction: column; gap: 12px; }
.credit-card { display: flex; align-items: center; gap: 14px; padding: 14px 16px; border-radius: var(--radius); color: #fff; }
.credit-card:hover { transform: translateY(-2px); }
.credit-card-icon { flex-shrink: 0; display: flex; align-items: center; justify-content: center; width: 38px; height: 38px; border-radius: 50%; background: rgba(255,255,255,0.18); }
.credit-card-text { display: flex; flex-direction: column; }
.credit-card-title { font-weight: 700; font-size: 14px; }
.credit-card-sub { font-size: 12px; opacity: 0.85; }
.credit-card--whatsapp { background: #25D366; }
.credit-card--company { background: var(--teal); }
.credit-card--creator { background: var(--blue); }

/* =========================================================
   WhatsApp panel (bottom-left)
   ========================================================= */
.wa-float-wrap { position: fixed; bottom: 24px; left: 20px; z-index: 250; display: flex; flex-direction: column; align-items: flex-start; }
.wa-toggle {
	width: 54px; height: 54px; background: #25D366; color: var(--white); border: none; border-radius: 50%;
	cursor: pointer; box-shadow: 0 4px 18px rgba(37,211,102,0.45); display: flex; align-items: center; justify-content: center;
}
.wa-toggle:hover { background: #1EBE57; transform: scale(1.06); }
.wa-panel {
	position: absolute; bottom: 64px; left: 0; background: var(--white); border-radius: var(--radius-lg);
	box-shadow: 0 8px 36px rgba(0,0,0,0.2); width: 250px; overflow: hidden;
	opacity: 0; pointer-events: none; transform: translateY(10px); transition: all 0.25s ease;
}
.wa-panel.is-open { opacity: 1; pointer-events: all; transform: translateY(0); }
.wa-panel-head { background: var(--dark); padding: 13px 16px; display: flex; align-items: center; gap: 10px; }
.wa-panel-head span { color: var(--white); font-size: 13px; font-weight: 600; }
.wa-btn { display: flex; align-items: center; gap: 12px; padding: 14px 16px; border-bottom: 1px solid var(--border); }
.wa-btn:last-child { border-bottom: none; }
.wa-btn:hover { background: #F0FDF4; }
.wa-btn-icon { font-size: 20px; flex-shrink: 0; color: #25D366; display: flex; }
.wa-btn strong { display: block; font-size: 13px; font-weight: 700; color: var(--dark); }
.wa-btn small { font-size: 11.5px; color: var(--gray); }

/* =========================================================
   Scroll to top
   ========================================================= */
.scroll-top-btn {
	position: fixed; bottom: 24px; right: 24px; width: 44px; height: 44px;
	background: var(--green); color: var(--white); border: none; border-radius: 50%;
	cursor: pointer; opacity: 0; visibility: hidden; transition: all 0.25s ease; z-index: 240;
	box-shadow: 0 4px 16px rgba(var(--green-rgb),0.4); display: flex; align-items: center; justify-content: center;
}
.scroll-top-btn.show { opacity: 1; visibility: visible; }
.scroll-top-btn:hover { background: var(--green-d); transform: translateY(-2px); }

/* =========================================================
   Brand identity: split-color logo + yellow tagline highlight
   ========================================================= */
.brand-han { color: var(--green); }
.brand-saf { color: var(--red); }
.site-brand-tag {
	display: inline-block; background: var(--yellow); color: var(--dark);
	padding: 1px 7px; border-radius: 3px; font-weight: 700;
}

/* =========================================================
   Colored nav items (each link its own accent, like the brand)
   ========================================================= */
.nav-menu > li.nav-c-blue > a   { color: var(--blue); }
.nav-menu > li.nav-c-orange > a { color: var(--orange); }
.nav-menu > li.nav-c-green > a  { color: var(--green); }
.nav-menu > li.nav-c-amber > a  { color: var(--amber); }
.nav-menu > li.nav-c-red > a    { color: var(--red); }
.nav-menu > li.nav-c-blue > a::after   { background: var(--blue); }
.nav-menu > li.nav-c-orange > a::after { background: var(--orange); }
.nav-menu > li.nav-c-green > a::after  { background: var(--green); }
.nav-menu > li.nav-c-amber > a::after  { background: var(--amber); }
.nav-menu > li.nav-c-red > a::after    { background: var(--red); }
.nav-menu > li.nav-c-blue > a::after   { transform: scaleX(1); }

/* =========================================================
   Profile / Vision / Mission colored cards
   ========================================================= */
.profile-strip { padding: 50px 0 20px; }
.profile-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.profile-card {
	padding: 30px 28px 46px; border-radius: var(--radius-lg); color: var(--white);
	position: relative; box-shadow: var(--shadow-lg); min-height: 190px;
}
.profile-card h3 { color: var(--white); font-size: 20px; margin-bottom: 12px; }
.profile-card p { color: rgba(255,255,255,0.92); font-size: 14px; margin: 0; }
.profile-card--green { background: var(--green); }
.profile-card--orange { background: var(--orange); }
.profile-card--amber { background: var(--amber); }
.profile-card-arrow {
	position: absolute; bottom: 18px; right: 20px; width: 30px; height: 30px;
	border: 2px solid rgba(255,255,255,0.7); border-radius: 50%;
	display: flex; align-items: center; justify-content: center; color: var(--white);
}

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

/* =========================================================
   Gallery / Portfolio page
   ========================================================= */
.gallery-section { padding: 70px 0 90px; }

.gallery-filters { display: flex; justify-content: center; gap: 10px; margin: 0 0 40px; flex-wrap: wrap; }
.gallery-filter {
	background: var(--white); border: 1px solid var(--border); border-radius: 50px;
	padding: 9px 22px; font-family: var(--font-body); font-weight: 600; font-size: 12.5px;
	letter-spacing: 0.04em; text-transform: uppercase; color: var(--text); cursor: pointer;
}
.gallery-filter:hover { border-color: var(--green); color: var(--green); }
.gallery-filter.is-active { background: var(--green); border-color: var(--green); color: var(--white); }

.gallery-sections { display: flex; justify-content: center; gap: 10px; margin: 34px 0 20px; flex-wrap: wrap; }
.gallery-section-pill {
	background: var(--light); border: 1px solid transparent; border-radius: 50px;
	padding: 10px 20px; font-family: var(--font-display); font-weight: 600; font-size: 13.5px;
	color: var(--dark); cursor: pointer; transition: all 0.2s ease;
}
.gallery-section-pill:hover { background: rgba(var(--green-rgb),0.12); color: var(--green-d); }
.gallery-section-pill.is-active { background: var(--green); color: var(--white); box-shadow: 0 6px 16px rgba(var(--green-rgb),0.35); }

.gallery-section-pill--blue:hover   { background: rgba(var(--blue-rgb),0.12); color: var(--blue-d); }
.gallery-section-pill--orange:hover { background: rgba(var(--orange-rgb),0.12); color: var(--orange-d); }
.gallery-section-pill--green:hover  { background: rgba(var(--green-rgb),0.12); color: var(--green-d); }
.gallery-section-pill--amber:hover  { background: rgba(var(--amber-rgb),0.12); color: var(--amber-d); }
.gallery-section-pill--red:hover    { background: rgba(var(--red-rgb),0.12); color: var(--red-d); }
.gallery-section-pill--blue.is-active   { background: var(--blue); box-shadow: 0 6px 16px rgba(var(--blue-rgb),0.35); }
.gallery-section-pill--orange.is-active { background: var(--orange); box-shadow: 0 6px 16px rgba(var(--orange-rgb),0.35); }
.gallery-section-pill--green.is-active  { background: var(--green); box-shadow: 0 6px 16px rgba(var(--green-rgb),0.35); }
.gallery-section-pill--amber.is-active  { background: var(--amber); box-shadow: 0 6px 16px rgba(var(--amber-rgb),0.35); }
.gallery-section-pill--red.is-active    { background: var(--red); box-shadow: 0 6px 16px rgba(var(--red-rgb),0.35); }

.gallery-no-match { text-align: center; color: var(--gray); padding: 40px 0 10px; }

.gallery-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.gallery-card { border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow); }
.gallery-card-trigger {
	position: relative; display: block; width: 100%; padding: 0; border: none; background: none; cursor: pointer;
	aspect-ratio: 4/3; overflow: hidden;
}
.gallery-card-trigger img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.35s ease; }
.gallery-card-trigger:hover img { transform: scale(1.06); }

.gallery-play-badge {
	position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%);
	width: 54px; height: 54px; border-radius: 50%; background: rgba(var(--dark-rgb),0.55);
	border: 2px solid rgba(255,255,255,0.8); display: flex; align-items: center; justify-content: center;
}

.gallery-card-overlay {
	position: absolute; inset: auto 0 0 0; padding: 30px 18px 14px;
	background: linear-gradient(to top, rgba(var(--dark-rgb),0.88), rgba(var(--dark-rgb),0));
	display: flex; flex-direction: column; gap: 3px; text-align: left;
}
.gallery-card-title { color: var(--white); font-weight: 700; font-size: 14.5px; }
.gallery-card-meta { color: rgba(255,255,255,0.8); font-size: 12px; }

.gallery-empty {
	text-align: center; padding: 60px 20px; color: var(--gray);
	background: var(--light); border-radius: var(--radius-lg); margin-top: 30px;
}
.gallery-empty svg { color: var(--green); margin-bottom: 14px; }
.gallery-empty h3 { color: var(--dark); margin-bottom: 8px; }
.gallery-empty p { max-width: 420px; margin: 0 auto; font-size: 14px; }
.gallery-empty a { color: var(--green); font-weight: 700; }

@media (max-width: 980px) { .gallery-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 600px) { .gallery-grid { grid-template-columns: 1fr; } }

/* Gallery lightbox */
.gallery-modal { position: fixed; inset: 0; z-index: 320; display: none; align-items: center; justify-content: center; padding: 20px; }
.gallery-modal.is-open { display: flex; }
.gallery-modal-backdrop { position: absolute; inset: 0; background: rgba(var(--dark-rgb),0.82); }
.gallery-modal-box {
	position: relative; z-index: 1; background: var(--white); border-radius: var(--radius-lg);
	max-width: 780px; width: 100%; max-height: 90vh; overflow-y: auto;
}
.gallery-modal-close {
	position: absolute; top: 12px; right: 12px; width: 34px; height: 34px; border-radius: 50%;
	border: none; background: rgba(0,0,0,0.5); color: var(--white); cursor: pointer; font-size: 20px; line-height: 1;
	z-index: 3;
}
.gallery-modal-close:hover { background: var(--green); }
.gallery-modal-media { width: 100%; aspect-ratio: 16/9; background: var(--dark); }
.gallery-modal-media img { width: 100%; height: 100%; object-fit: contain; }
.gallery-modal-media iframe, .gallery-modal-media video { width: 100%; height: 100%; border: none; display: block; }
.gallery-modal-info { padding: 20px 26px 26px; }
.gallery-modal-info h3 { font-size: 18px; margin-bottom: 6px; }
.gallery-modal-meta { color: var(--gray); font-size: 13.5px; margin: 0; }

/* =========================================================
   Service packages
   ========================================================= */
.packages-section { padding: 70px 0 90px; background: var(--light); }
.packages-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin-top: 44px; }
.package-card {
	background: var(--white); border-radius: var(--radius-lg); overflow: hidden;
	box-shadow: var(--shadow); display: flex; flex-direction: column; transition: all 0.25s ease;
}
.package-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-lg); }
.package-card-img { position: relative; aspect-ratio: 4/3; overflow: hidden; }
.package-card-img img { width: 100%; height: 100%; object-fit: cover; }
.package-price-badge {
	position: absolute; top: 14px; right: 14px; background: var(--green); color: var(--white);
	font-weight: 700; font-size: 13.5px; padding: 6px 14px; border-radius: 50px; box-shadow: var(--shadow);
}
.package-price-badge--blue   { background: var(--blue); }
.package-price-badge--orange { background: var(--orange); }
.package-price-badge--green  { background: var(--green); }
.package-price-badge--amber  { background: var(--amber); }
.package-price-badge--red    { background: var(--red); }
.package-card-body { padding: 22px; display: flex; flex-direction: column; flex-grow: 1; }
.package-card-body h3 { font-size: 17px; margin-bottom: 8px; }
.package-card-body p { color: var(--gray); font-size: 13.5px; flex-grow: 1; margin-bottom: 18px; }
.package-card-actions { display: flex; flex-direction: column; gap: 8px; }
.package-checkout-btn { width: 100%; justify-content: center; background: #25D366; border-color: #25D366; box-shadow: none; }
.package-checkout-btn:hover { background: #1EBE57; border-color: #1EBE57; }
.package-share-btn {
	display: flex; align-items: center; justify-content: center; gap: 7px;
	width: 100%; padding: 10px; border-radius: var(--radius); border: 1px solid var(--border);
	font-size: 12.5px; font-weight: 600; color: var(--text); background: var(--white);
}
.package-share-btn:hover { border-color: var(--green); color: var(--green); }

@media (max-width: 980px) { .packages-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 600px) { .packages-grid { grid-template-columns: 1fr; } }
