/* Verbatrust Pro — front-end styles
   CSS variables --verba-primary/secondary/button/radius/font are printed
   inline in wp_head from Theme Settings (see inc/enqueue.php). */

:root {
	--verba-primary: #0b4f6c;
	--verba-secondary: #01baef;
	--verba-button: #0b4f6c;
	--verba-radius: 8px;
	--verba-font: 'Inter', sans-serif;
	--verba-dark: #101820;
	--verba-text: #3c4652;
	--verba-muted: #6b7684;
	--verba-border: #e6e9ed;
	--verba-bg-alt: #f6f8fa;
	--verba-white: #ffffff;
	--verba-shadow: 0 10px 30px rgba(16, 24, 32, 0.08);
	--verba-container: 1240px;
}

/* ---------- Reset & base ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
	margin: 0;
	font-family: var(--verba-font);
	color: var(--verba-text);
	font-size: 16px;
	line-height: 1.7;
	background: var(--verba-white);
	overflow-x: hidden;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; transition: color 0.2s ease; }
h1, h2, h3, h4, h5, h6 { color: var(--verba-dark); font-weight: 700; line-height: 1.25; margin: 0 0 16px; }
h1 { font-size: clamp(32px, 5vw, 56px); }
h2 { font-size: clamp(26px, 3.5vw, 40px); }
h3 { font-size: 20px; }
p { margin: 0 0 16px; }
ul { margin: 0; padding: 0; list-style: none; }
button { font-family: inherit; cursor: pointer; }
.screen-reader-text {
	position: absolute !important;
	width: 1px; height: 1px;
	overflow: hidden;
	clip: rect(1px, 1px, 1px, 1px);
	white-space: nowrap;
}
.verba-skip-link {
	position: fixed; top: -100px; left: 10px; z-index: 10000;
	background: var(--verba-primary); color: #fff; padding: 10px 16px; border-radius: var(--verba-radius);
	transition: top 0.2s ease;
}
.verba-skip-link:focus { top: 10px; }

.verba-container { max-width: var(--verba-container); margin: 0 auto; padding: 0 24px; }
.verba-container-narrow { max-width: 820px; }
.verba-section { padding: 90px 0; }
.verba-section-heading { text-align: center; max-width: 680px; margin: 0 auto 50px; }
.verba-section-heading p { color: var(--verba-muted); }
.verba-eyebrow {
	display: inline-block; color: var(--verba-primary); font-weight: 700; text-transform: uppercase;
	letter-spacing: 0.08em; font-size: 13px; margin-bottom: 12px;
}
.verba-section-cta { text-align: center; margin-top: 44px; }

/* ---------- Buttons ---------- */
.verba-btn {
	display: inline-flex; align-items: center; justify-content: center; gap: 8px;
	padding: 14px 30px; border-radius: var(--verba-radius); font-weight: 600; font-size: 15px;
	border: 2px solid transparent; transition: all 0.25s ease; white-space: nowrap;
}
.verba-btn-primary { background: linear-gradient(135deg, var(--verba-button), var(--verba-secondary)); color: #fff; background-size: 160% 160%; background-position: 0% 0%; transition: all 0.35s ease; }
.verba-btn-primary:hover { background-position: 100% 100%; color: #fff; transform: translateY(-2px); box-shadow: 0 10px 24px rgba(1, 186, 239, 0.3); }
.verba-btn-outline { background: transparent; border-color: currentColor; color: inherit; }
.verba-btn-outline:hover { background: rgba(255, 255, 255, 0.15); transform: translateY(-2px); }
.verba-card-link { display: inline-flex; align-items: center; gap: 6px; font-weight: 600; color: var(--verba-primary); }
.verba-card-link .dashicons { font-size: 16px; width: 16px; height: 16px; transition: transform 0.2s ease; }
.verba-card-link:hover .dashicons { transform: translateX(4px); }

/* ---------- Loader ---------- */
.verba-loader {
	position: fixed; inset: 0; z-index: 100000; background: var(--verba-white);
	display: flex; align-items: center; justify-content: center;
	transition: opacity 0.4s ease, visibility 0.4s ease;
}
.verba-loader.is-hidden { opacity: 0; visibility: hidden; pointer-events: none; }
.verba-loader-spinner {
	width: 46px; height: 46px; border-radius: 50%;
	border: 4px solid var(--verba-border); border-top-color: var(--verba-primary);
	animation: verba-spin 0.8s linear infinite;
}
@keyframes verba-spin { to { transform: rotate(360deg); } }

/* ---------- Header ---------- */
.verba-site-header { position: relative; z-index: 500; background: var(--verba-white); }
body.verba-sticky-header .verba-main-header { position: sticky; top: 0; z-index: 500; box-shadow: 0 2px 16px rgba(0,0,0,0.06); }
body.verba-is-scrolled .verba-main-header { box-shadow: 0 2px 16px rgba(0,0,0,0.08); }

.verba-topbar { background: linear-gradient(90deg, var(--verba-primary), var(--verba-dark) 130%); color: rgba(255,255,255,0.85); font-size: 13px; }
.verba-topbar-inner { display: flex; align-items: center; justify-content: space-between; padding: 8px 24px; gap: 20px; flex-wrap: wrap; }
.verba-topbar-info { display: flex; align-items: center; gap: 22px; flex-wrap: wrap; }
.verba-topbar-item { display: inline-flex; align-items: center; gap: 6px; }
.verba-topbar-item .dashicons { font-size: 15px; width: 15px; height: 15px; }
.verba-topbar-item:hover { color: var(--verba-secondary); }
.verba-topbar-social .verba-social-icons { display: flex; gap: 12px; }
.verba-topbar-social .verba-social-icons a { color: rgba(255,255,255,0.85); }
.verba-topbar-social .verba-social-icons a:hover { color: var(--verba-secondary); }

.verba-main-header {
	background: linear-gradient(180deg, #a3b9d7, #f4f9fb);
	border-bottom: 3px solid transparent;
	border-image: linear-gradient(90deg, var(--verba-primary), var(--verba-secondary)) 1;
}
.verba-main-header-inner { display: flex; align-items: center; justify-content: space-between; padding: 16px 24px; gap: 24px; }
.verba-site-logo img { max-height: 48px; }
.verba-logo-mobile { display: none; }
.verba-logo-text { font-size: 22px; font-weight: 800; color: var(--verba-primary); }

.verba-primary-nav { flex: 1; display: flex; justify-content: center; }
.verba-menu { display: flex; align-items: center; gap: 8px; }
.verba-menu > li { position: relative; }
.verba-menu > li > a { display: block; padding: 12px 16px; font-weight: 600; color: var(--verba-dark); border-radius: var(--verba-radius); }
.verba-menu > li > a:hover, .verba-menu > li.current-menu-item > a { color: var(--verba-primary); background: var(--verba-bg-alt); }
.verba-menu .sub-menu {
	position: absolute; top: 100%; left: 0; min-width: 220px; background: #fff; border-radius: var(--verba-radius);
	box-shadow: var(--verba-shadow); padding: 8px; opacity: 0; visibility: hidden; transform: translateY(8px);
	transition: all 0.2s ease; z-index: 100;
}
.verba-menu li:hover > .sub-menu { opacity: 1; visibility: visible; transform: translateY(0); }
.verba-menu .sub-menu li a { padding: 10px 14px; display: block; border-radius: 6px; font-weight: 500; }
.verba-menu .sub-menu li a:hover { background: var(--verba-bg-alt); color: var(--verba-primary); }
.verba-menu .sub-menu .sub-menu { top: 0; left: 100%; }
.verba-menu li.menu-item-has-children > a::after {
	content: "\f347"; font-family: dashicons; font-size: 14px; margin-left: 4px; vertical-align: middle;
}

.verba-header-actions { display: flex; align-items: center; gap: 14px; }
.verba-mobile-toggle { display: none; flex-direction: column; justify-content: center; gap: 5px; width: 34px; height: 34px; background: none; border: none; }
.verba-mobile-toggle span { display: block; width: 100%; height: 2px; background: var(--verba-dark); transition: all 0.25s ease; }
.verba-mobile-toggle.is-active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.verba-mobile-toggle.is-active span:nth-child(2) { opacity: 0; }
.verba-mobile-toggle.is-active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.verba-mobile-menu {
	position: fixed; top: 0; right: -100%; width: min(340px, 86vw); height: 100vh; background: #fff;
	box-shadow: -10px 0 30px rgba(0,0,0,0.15); z-index: 900; transition: right 0.3s ease; overflow-y: auto;
}
.verba-mobile-menu.is-open { right: 0; }
.verba-mobile-menu-inner { padding: 90px 26px 40px; }
.verba-mobile-menu-list > li { border-bottom: 1px solid var(--verba-border); }
.verba-mobile-menu-list li a { display: block; padding: 14px 4px; font-weight: 600; color: var(--verba-dark); text-align: center; }
.verba-mobile-menu-list li a:active,
.verba-mobile-menu-list li a:hover { color: var(--verba-primary); }

/* Parent items with a dropdown: link + toggle button share one row, the
   submenu spans the full width below and is collapsed until toggled. */
.verba-mobile-menu-list .menu-item-has-children { display: flex; flex-wrap: wrap; align-items: center; }
.verba-mobile-menu-list .menu-item-has-children > a { flex: 1; }
.verba-mobile-menu .menu-item-has-children > a::after { display: none; }
.verba-submenu-toggle {
	width: 32px; height: 32px; flex-shrink: 0; border: 1px solid var(--verba-border);
	border-radius: 6px; background: var(--verba-bg-alt); color: var(--verba-primary);
	font-size: 20px; font-weight: 600; line-height: 1;
	display: flex; align-items: center; justify-content: center;
}
.verba-mobile-menu-list .sub-menu { display: none; width: 100%; padding-left: 14px; border-top: 1px solid var(--verba-border); }
.verba-mobile-menu-list li.is-open > .sub-menu { display: block; }
.verba-mobile-menu-list .sub-menu li a { font-weight: 500; font-size: 14px; padding: 11px 4px; color: var(--verba-text); }
.verba-mobile-quote-btn { display: block; text-align: center; margin: 20px 0; }
.verba-mobile-menu .verba-social-icons { display: flex; gap: 14px; margin-top: 10px; justify-content: center; }
.verba-mobile-legal-links { margin-top: 24px; padding-top: 16px; border-top: 1px solid var(--verba-border); display: flex; flex-direction: column; gap: 8px; align-items: center; text-align: center; }
.verba-mobile-legal-links a { font-size: 13px; color: var(--verba-muted); }
.verba-mobile-legal-links a:hover { color: var(--verba-primary); }
/* Must stay BELOW the site header's stacking context (z-index 500):
   the slide-out menu lives inside the header, so a backdrop above 500
   would cover the menu itself — dimming it and swallowing every tap. */
.verba-mobile-backdrop {
	position: fixed; inset: 0; background: rgba(0,0,0,0.4); z-index: 450; opacity: 0; visibility: hidden; transition: all 0.3s ease;
}
.verba-mobile-backdrop.is-open { opacity: 1; visibility: visible; }

/* ---------- News bar ---------- */
.verba-news-bar { background: var(--verba-primary); color: #fff; overflow: hidden; }
.verba-news-bar-inner { display: flex; align-items: center; }
.verba-news-label {
	flex-shrink: 0; background: rgba(0,0,0,0.15); padding: 10px 20px; font-weight: 700; font-size: 13px;
	text-transform: uppercase; letter-spacing: 0.05em;
}
.verba-news-track { flex: 1; overflow: hidden; display: flex; }
.verba-news-track-content { display: flex; flex-shrink: 0; align-items: center; animation: verba-ticker 30s linear infinite; }
.verba-news-bar[data-pause-hover="1"] .verba-news-track:hover .verba-news-track-content { animation-play-state: paused; }
.verba-news-item { display: inline-flex; align-items: center; gap: 8px; padding: 10px 30px; font-size: 14px; white-space: nowrap; color: #fff; }
.verba-news-item .dashicons { font-size: 15px; width: 15px; height: 15px; }
.verba-news-item:hover { color: var(--verba-secondary); }
@keyframes verba-ticker { from { transform: translateX(0); } to { transform: translateX(-100%); } }

/* ---------- Hero ---------- */
.verba-hero { position: relative; height: 640px; max-height: 88vh; overflow: hidden; }
.verba-hero-slides { position: relative; height: 100%; }
.verba-hero-slide {
	position: absolute; inset: 0; opacity: 0; visibility: hidden; transition: opacity 0.7s ease;
}
.verba-hero-slide.is-active { opacity: 1; visibility: visible; z-index: 2; }
.verba-hero-media { position: absolute; inset: 0; }
.verba-hero-bg { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.verba-hero-bg-mobile { display: none; }
.verba-hero-overlay { position: absolute; inset: 0; }
.verba-hero-content { position: relative; height: 100%; display: flex; align-items: center; z-index: 3; }
.verba-hero-text { max-width: 680px; color: #fff; }
.verba-hero-text .verba-eyebrow { color: var(--verba-secondary); }
.verba-hero-text h1 { color: #fff; }
.verba-hero-text p { color: rgba(255,255,255,0.9); font-size: 18px; }
.verba-hero-buttons { display: flex; gap: 16px; margin-top: 10px; flex-wrap: wrap; }
/* Text Alignment on a slide positions the whole text block against the
   actual screen edges, not the centered page container: the hero's
   inner container goes full-bleed so "left" hugs the left of the
   viewport (with a small inset) and "right" hugs the right, at any
   screen size. Block width itself stays capped at 680px. */
.verba-hero-content .verba-container { max-width: none; width: 100%; }
.verba-align-left .verba-hero-text { margin-right: auto; margin-left: 12vw; text-align: left; }
.verba-align-left .verba-hero-buttons { justify-content: flex-start; }
.verba-align-center .verba-hero-text { margin: 0 auto; text-align: center; }
.verba-align-center .verba-hero-buttons { justify-content: center; }
.verba-align-right .verba-hero-text { margin-left: auto; margin-right: 12vw; text-align: right; }
.verba-align-right .verba-hero-buttons { justify-content: flex-end; }

/* On phones the slide is too narrow for left/right placement to mean
   anything — force every slide to centered, middle alignment. */
@media (max-width: 780px) {
	.verba-hero-slide .verba-hero-text { margin: 0 auto; text-align: center; }
	.verba-hero-slide .verba-hero-buttons { justify-content: center; }
}

.verba-hero-arrows { position: absolute; inset: 0; display: flex; align-items: center; justify-content: space-between; padding: 0 24px; z-index: 4; pointer-events: none; }
.verba-hero-prev, .verba-hero-next {
	pointer-events: all; width: 46px; height: 46px; border-radius: 50%; background: rgba(255,255,255,0.2);
	border: 1px solid rgba(255,255,255,0.5); color: #fff; display: flex; align-items: center; justify-content: center;
	backdrop-filter: blur(4px); transition: background 0.2s ease;
}
.verba-hero-prev:hover, .verba-hero-next:hover { background: rgba(255,255,255,0.35); }
.verba-hero-dots { position: absolute; bottom: 24px; left: 50%; transform: translateX(-50%); display: flex; gap: 10px; z-index: 4; }
.verba-hero-dot { width: 10px; height: 10px; border-radius: 50%; background: rgba(255,255,255,0.5); border: none; }
.verba-hero-dot.is-active { background: #fff; width: 26px; border-radius: 6px; }

/* ---------- Categories ---------- */
.verba-categories { background: var(--verba-bg-alt); }
.verba-categories-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 30px; }
.verba-category-card {
	background: #fff; border-radius: var(--verba-radius); overflow: hidden; box-shadow: var(--verba-shadow);
	transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.verba-category-card:hover { transform: translateY(-6px); box-shadow: 0 20px 40px rgba(16,24,32,0.12); }
.verba-category-image img { width: 100%; height: 190px; object-fit: cover; }
.verba-category-body { padding: 26px; }
.verba-category-icon { font-size: 34px; width: 34px; height: 34px; color: var(--verba-primary); margin-bottom: 14px; }

/* ---------- About ---------- */
.verba-about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
.verba-about-media { position: relative; }
.verba-about-image-main img { border-radius: var(--verba-radius); width: 100%; }
.verba-about-image-secondary { position: absolute; bottom: -30px; right: -30px; width: 45%; border: 6px solid #fff; border-radius: var(--verba-radius); box-shadow: var(--verba-shadow); }
.verba-about-experience {
	position: absolute; top: 24px; left: 24px; background: var(--verba-primary); color: #fff; padding: 20px 26px;
	border-radius: var(--verba-radius); text-align: center; box-shadow: var(--verba-shadow);
}
.verba-about-experience strong { display: block; font-size: 34px; line-height: 1; }
.verba-about-experience span { font-size: 13px; opacity: 0.85; }
.verba-about-features { display: grid; gap: 12px; margin: 24px 0; }
.verba-about-features li { display: flex; align-items: flex-start; gap: 10px; font-weight: 600; color: var(--verba-dark); }
.verba-about-features .dashicons { color: var(--verba-primary); flex-shrink: 0; margin-top: 2px; }

/* ---------- Services ---------- */
.verba-services-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 30px; }
.verba-service-card { background: linear-gradient(180deg, #d4f2fd, #ffffff); border: 1px solid var(--verba-border); border-radius: var(--verba-radius); overflow: hidden; transition: all 0.25s ease; }
.verba-service-card:hover { box-shadow: var(--verba-shadow); transform: translateY(-6px); border-color: transparent; }
.verba-service-card-image img { width: 100%; height: 200px; object-fit: cover; }
.verba-service-card-body { padding: 26px; }
.verba-service-icon { font-size: 32px; width: 32px; height: 32px; color: var(--verba-primary); margin-bottom: 12px; }

/* ---------- Why choose us ---------- */
.verba-wcu-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 30px; }
.verba-wcu-item { text-align: center; padding: 34px 24px; border-radius: var(--verba-radius); background: var(--verba-bg-alt); transition: transform 0.25s ease; }
.verba-wcu-item:hover { transform: translateY(-6px); }
.verba-wcu-icon { font-size: 40px; width: 40px; height: 40px; color: var(--verba-primary); margin-bottom: 16px; }

/* ---------- Statistics ---------- */
.verba-statistics { background: linear-gradient(120deg, var(--verba-primary), var(--verba-dark) 85%); color: #fff; }
.verba-stats-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(180px, 1fr)); gap: 30px; text-align: center; }
.verba-stat-icon { font-size: 34px; width: 34px; height: 34px; color: var(--verba-secondary); margin-bottom: 10px; }
.verba-counter { display: block; font-size: 44px; font-weight: 800; line-height: 1; }
.verba-stat-item { opacity: 0.85; font-size: 20px; }

/* ---------- Testimonials ---------- */
.verba-testimonial-slider { max-width: 780px; margin: 0 auto; text-align: center; position: relative; }
.verba-testimonial-track { position: relative; min-height: 220px; }
.verba-testimonial-slide { display: none; }
.verba-testimonial-slide.is-active { display: block; animation: verba-fade-in 0.5s ease; }
@keyframes verba-fade-in { from { opacity: 0; transform: translateY(10px); } to { opacity: 1; transform: translateY(0); } }
.verba-testimonial-rating { margin-bottom: 16px; }
.verba-testimonial-rating .dashicons { color: var(--verba-border); font-size: 20px; width: 20px; height: 20px; }
.verba-testimonial-rating .is-filled { color: #f5a623; }
.verba-testimonial-review { font-size: 20px; font-style: italic; color: var(--verba-dark); }
.verba-testimonial-author { display: flex; align-items: center; justify-content: center; gap: 14px; margin-top: 20px; }
.verba-testimonial-photo img { width: 56px; height: 56px; border-radius: 50%; object-fit: cover; }
.verba-testimonial-author div { text-align: left; }
.verba-testimonial-author strong { display: block; }
.verba-testimonial-author span { color: var(--verba-muted); font-size: 14px; }
.verba-testimonial-dots { display: flex; justify-content: center; gap: 10px; margin-top: 30px; }
.verba-testimonial-dot { width: 10px; height: 10px; border-radius: 50%; background: var(--verba-border); border: none; }
.verba-testimonial-dot.is-active { background: var(--verba-primary); width: 26px; border-radius: 6px; }

/* ---------- FAQ ---------- */
.verba-faq-list { display: grid; gap: 14px; }
.verba-faq-item { border: 1px solid transparent; border-radius: var(--verba-radius); overflow: hidden; box-shadow: var(--verba-shadow); }
.verba-faq-question {
	width: 100%; text-align: left; border: none; padding: 20px 24px; font-weight: 700; font-size: 16px;
	display: flex; align-items: center; justify-content: space-between; color: #fff;
	background: linear-gradient(135deg, var(--verba-button), var(--verba-secondary));
	background-size: 160% 160%; background-position: 0% 0%; transition: background-position 0.35s ease;
}
.verba-faq-question:hover { background-position: 100% 100%; }
.verba-faq-question .dashicons { transition: transform 0.25s ease; color: #fff; flex-shrink: 0; margin-left: 16px; }
.verba-faq-item.is-open .verba-faq-question .dashicons { transform: rotate(45deg); }
.verba-faq-answer { max-height: 0; overflow: hidden; transition: max-height 0.3s ease; }
.verba-faq-item.is-open .verba-faq-answer { max-height: 400px; }
.verba-faq-answer p { padding: 20px 24px; color: var(--verba-muted); margin: 0; }

/* Legal accordion (Terms of Service / Privacy Policy) — sections can run
   much longer than a typical FAQ answer, so allow far more room to open. */
.verba-legal-intro { margin-bottom: 30px; color: var(--verba-muted); }
.verba-legal-accordion .verba-legal-answer { max-height: 0; }
.verba-legal-accordion .verba-faq-item.is-open .verba-legal-answer { max-height: 3000px; }
/* Padding only when open — bottom padding on a closed item would leave a
   visible strip (overflow clips at the padding edge, not the content edge),
   letting the first line of the body peek through. */
.verba-legal-answer { padding: 0 24px; color: var(--verba-muted); transition: padding 0.3s ease; }
.verba-legal-accordion .verba-faq-item.is-open .verba-legal-answer { padding: 20px 24px 22px; }
.verba-legal-answer p { margin: 0 0 14px; padding: 0; }
.verba-legal-answer p:last-child { margin-bottom: 0; }
.verba-legal-answer ul { margin: 0 0 14px; padding-left: 20px; list-style: disc; }
.verba-legal-answer li { margin-bottom: 6px; }
.verba-legal-answer a { color: var(--verba-primary); text-decoration: underline; }
.verba-legal-answer em { color: var(--verba-dark); }

/* ---------- CTA ---------- */
.verba-cta {
	position: relative; background: var(--verba-primary) center/cover no-repeat; color: #fff; text-align: center;
}
.verba-cta-overlay { position: absolute; inset: 0; background: linear-gradient(120deg, rgba(11, 79, 108, 0.82), rgba(10, 20, 30, 0.7)); }
.verba-cta-content { position: relative; z-index: 2; max-width: 700px; margin: 0 auto; }
.verba-cta-content h2 { color: #fff; }
.verba-cta-content p { color: rgba(255,255,255,0.9); font-size: 18px; }

/* ---------- Footer ---------- */
.verba-site-footer { background: var(--verba-dark); color: rgba(255,255,255,0.75); padding-top: 70px; }
.verba-footer-grid { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1.2fr; gap: 40px; padding-bottom: 50px; }
.verba-footer-logo { max-height: 42px; margin-bottom: 16px; }
.verba-footer-brand .verba-logo-text { color: #fff; }
.verba-footer-col h4 { color: #fff; margin-bottom: 20px; font-size: 16px; }
.verba-footer-links li, .verba-footer-contact li { margin-bottom: 12px; }
.verba-footer-contact li { display: flex; align-items: flex-start; gap: 8px; }
.verba-footer-contact .dashicons { color: var(--verba-secondary); flex-shrink: 0; margin-top: 2px; }
.verba-footer-links a:hover, .verba-footer-contact a:hover { color: var(--verba-secondary); }
.verba-footer-brand .verba-social-icons { display: flex; gap: 12px; margin-top: 18px; }
.verba-footer-brand .verba-social-icons a {
	display: flex; align-items: center; justify-content: center; width: 38px; height: 38px;
	border-radius: 50%; background: rgba(255,255,255,0.08); transition: background 0.2s ease;
}
.verba-footer-brand .verba-social-icons a:hover { background: var(--verba-primary); }
.verba-footer-bottom { border-top: 1px solid rgba(255,255,255,0.1); padding: 22px 0; font-size: 14px; }
.verba-footer-bottom-inner { display: flex; align-items: center; justify-content: space-between; gap: 20px; flex-wrap: wrap; }
.verba-footer-bottom-inner p { margin: 0; }
.verba-legal-links { display: flex; gap: 20px; }
.verba-legal-links a:hover { color: var(--verba-secondary); }

/* ---------- Back to top ---------- */
.verba-back-to-top {
	position: fixed; right: 24px; bottom: 24px; width: 48px; height: 48px; border-radius: 50%;
	background: linear-gradient(135deg, var(--verba-primary), var(--verba-secondary)); color: #fff; border: none; display: flex; align-items: center; justify-content: center;
	box-shadow: var(--verba-shadow); opacity: 0; visibility: hidden; transform: translateY(12px);
	transition: all 0.3s ease; z-index: 400;
}
.verba-back-to-top.is-visible { opacity: 1; visibility: visible; transform: translateY(0); }
.verba-back-to-top:hover { filter: brightness(1.15); }

/* ---------- Blog / page fallback ---------- */
.verba-blog-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 30px; }
.verba-blog-card { border: 1px solid var(--verba-border); border-radius: var(--verba-radius); overflow: hidden; }
.verba-blog-card-image img { width: 100%; height: 200px; object-fit: cover; }
.verba-blog-card-body { padding: 22px; }
.verba-pagination { margin-top: 40px; text-align: center; }
.verba-404 { text-align: center; }
.verba-404 h1 { font-size: 100px; color: var(--verba-primary); margin-bottom: 0; }

/* ---------- Responsive ---------- */
@media (max-width: 1024px) {
	.verba-about-grid { grid-template-columns: 1fr; }
	.verba-footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 900px) {
	.verba-primary-nav { display: none; }
	.verba-mobile-toggle { display: flex; }
	.verba-logo-desktop { display: none; }
	.verba-logo-mobile { display: block; }
	.verba-topbar-info { gap: 12px; }
}

@media (max-width: 780px) {
	.verba-section { padding: 60px 0; }
	.verba-topbar-text { display: none; }
	.verba-hero { height: 520px; }
	.verba-hero-bg-desktop { display: none; }
	.verba-hero-bg-mobile { display: block; }
	.verba-about-image-secondary { display: none; }
	.verba-footer-grid { grid-template-columns: 1fr; }
	.verba-testimonial-review { font-size: 17px; }
}

@media (max-width: 560px) {
	.verba-topbar-inner { justify-content: center; text-align: center; }
	.verba-quote-btn { display: none; }
	.verba-hero-buttons { flex-direction: column; }
	.verba-hero-arrows { display: none; }
}

/* ---------- Contact form ---------- */
.verba-contact-form { max-width: 720px; }
.verba-honeypot { position: absolute !important; left: -9999px !important; width: 1px; height: 1px; overflow: hidden; }
.verba-form-row { margin-bottom: 18px; }
.verba-form-cols-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; margin-bottom: 0; }
.verba-form-cols-2 .verba-form-field { margin-bottom: 18px; }
.verba-form-field label { display: block; font-weight: 600; margin-bottom: 6px; color: var(--verba-dark); font-size: 14px; }
.verba-required { color: #d33; }
.verba-form-field input[type="text"],
.verba-form-field input[type="email"],
.verba-form-field input[type="tel"],
.verba-form-field input[type="file"],
.verba-form-field select,
.verba-form-field textarea {
	width: 100%; padding: 13px 16px; border: 1px solid var(--verba-border); border-radius: var(--verba-radius);
	font-family: inherit; font-size: 15px; background: #fff; transition: border-color 0.2s ease;
}
.verba-form-field input:focus, .verba-form-field select:focus, .verba-form-field textarea:focus {
	outline: none; border-color: var(--verba-primary);
}
.verba-form-field.has-error input, .verba-form-field.has-error textarea { border-color: #d33; }
.verba-field-error { display: block; color: #d33; font-size: 13px; margin-top: 4px; }
.verba-form-messages { font-weight: 600; padding: 0; }
.verba-form-messages.is-success { color: #1e7e34; padding: 12px 0; }
.verba-form-messages.is-error { color: #d33; padding: 12px 0; }
.verba-form-submit.is-loading { opacity: 0.7; pointer-events: none; }

/* ---------- Page hero (Services, Contact, FAQ, About, legal pages) ---------- */
.verba-page-hero {
	position: relative; padding: 110px 0 80px; text-align: center; color: #fff;
	background: linear-gradient(120deg, var(--verba-primary), var(--verba-dark) 130%) center/cover no-repeat;
	background-size: cover; background-position: center;
}
.verba-page-hero-overlay { position: absolute; inset: 0; background: linear-gradient(120deg, rgba(11,79,108,0.82), rgba(10,20,30,0.72)); opacity: 0; transition: opacity 0.2s ease; }
.verba-page-hero.has-image .verba-page-hero-overlay { opacity: 1; }
.verba-page-hero-content { position: relative; z-index: 2; max-width: 720px; margin: 0 auto; }
.verba-page-hero-content h1 { color: #fff; margin-bottom: 10px; }
.verba-page-hero-content p { color: rgba(255,255,255,0.9); font-size: 17px; margin: 0; }

/* ---------- Services page ---------- */
.verba-page-heading { padding: 50px 0 10px; text-align: center; }
.verba-services-layout { display: grid; grid-template-columns: 300px 1fr; gap: 40px; padding: 40px 0 90px; align-items: start; }
.verba-services-layout > * { min-width: 0; }
.verba-service-body { overflow-wrap: break-word; }
.verba-services-tabs ul { position: sticky; top: 100px; display: grid; gap: 6px; }
.verba-tab-btn {
	display: flex; align-items: center; gap: 12px; width: 100%; text-align: left; padding: 16px 18px;
	background: var(--verba-bg-alt); border: none; border-radius: var(--verba-radius); font-weight: 600; color: var(--verba-dark);
	transition: all 0.2s ease;
}
.verba-tab-btn .dashicons { color: var(--verba-primary); flex-shrink: 0; }
.verba-tab-btn:hover { background: #eef1f4; }
.verba-tab-btn.is-active { background: var(--verba-primary); color: #fff; }
.verba-tab-btn.is-active .dashicons { color: #fff; }
.verba-service-panel { display: none; }
.verba-service-panel.is-active { display: block; animation: verba-fade-in 0.4s ease; }

.verba-service-banner {
	position: relative; height: 320px; background-size: cover; background-position: center;
	display: flex; align-items: center; color: #fff; border-radius: var(--verba-radius); overflow: hidden; margin-bottom: 30px;
}
.verba-service-banner-overlay { position: absolute; inset: 0; background: rgba(11, 79, 108, 0.65); }
.verba-service-banner .verba-container { position: relative; z-index: 2; }
.verba-service-banner h1 { color: #fff; margin: 10px 0 0; }
.verba-service-banner .dashicons { font-size: 36px; width: 36px; height: 36px; }
.verba-service-heading-plain { margin-bottom: 24px; }
.verba-service-heading-plain .dashicons { font-size: 30px; width: 30px; height: 30px; color: var(--verba-primary); margin-right: 10px; vertical-align: middle; }
.verba-service-lead { font-size: 18px; color: var(--verba-muted); }
.verba-service-block { margin: 36px 0; }
.verba-tick-list { display: grid; gap: 10px; }
.verba-tick-list li { display: flex; align-items: flex-start; gap: 10px; }
.verba-tick-list .dashicons { color: var(--verba-primary); flex-shrink: 0; margin-top: 2px; }
.verba-process-steps { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 24px; }
.verba-process-step { background: var(--verba-bg-alt); padding: 24px; border-radius: var(--verba-radius); position: relative; }
.verba-process-number {
	display: inline-flex; align-items: center; justify-content: center; width: 32px; height: 32px; border-radius: 50%;
	background: var(--verba-primary); color: #fff; font-weight: 700; margin-bottom: 12px;
}
.verba-service-tags { display: grid; grid-template-columns: 1fr 1fr; gap: 30px; }
.verba-tag-list { display: flex; flex-wrap: wrap; gap: 10px; }
.verba-tag-list li { background: var(--verba-bg-alt); padding: 8px 16px; border-radius: 20px; font-size: 14px; font-weight: 600; color: var(--verba-primary); }
.verba-service-gallery { display: grid; grid-template-columns: repeat(auto-fit, minmax(180px, 1fr)); gap: 16px; }
.verba-gallery-item img { border-radius: var(--verba-radius); width: 100%; height: 160px; object-fit: cover; transition: transform 0.25s ease, filter 0.25s ease; }
.verba-gallery-link { display: block; cursor: zoom-in; }
.verba-gallery-link:hover img { transform: scale(1.03); filter: brightness(1.05); }

/* Gallery lightbox modal */
.verba-lightbox {
	position: fixed; inset: 0; z-index: 100001; display: none;
	align-items: center; justify-content: center;
}
.verba-lightbox.is-open { display: flex; }
.verba-lightbox-backdrop { position: absolute; inset: 0; background: rgba(10, 16, 22, 0.92); }
.verba-lightbox-image {
	position: relative; z-index: 2; max-width: 88vw; max-height: 84vh;
	border-radius: var(--verba-radius); box-shadow: 0 20px 60px rgba(0,0,0,0.5);
}
.verba-lightbox-close,
.verba-lightbox-prev,
.verba-lightbox-next {
	position: absolute; z-index: 3; border: none; color: #fff; background: rgba(255,255,255,0.12);
	width: 48px; height: 48px; border-radius: 50%; font-size: 22px; line-height: 1;
	display: flex; align-items: center; justify-content: center; transition: background 0.2s ease;
}
.verba-lightbox-close:hover,
.verba-lightbox-prev:hover,
.verba-lightbox-next:hover { background: rgba(255,255,255,0.28); }
.verba-lightbox-close { top: 20px; right: 20px; font-size: 30px; }
.verba-lightbox-prev { left: 20px; top: 50%; transform: translateY(-50%); }
.verba-lightbox-next { right: 20px; top: 50%; transform: translateY(-50%); }
.verba-lightbox-counter {
	position: absolute; z-index: 3; bottom: 20px; left: 50%; transform: translateX(-50%);
	color: rgba(255,255,255,0.85); font-size: 14px; letter-spacing: 0.05em;
}
@media (max-width: 560px) {
	.verba-lightbox-prev { left: 8px; }
	.verba-lightbox-next { right: 8px; }
	.verba-lightbox-prev, .verba-lightbox-next { width: 40px; height: 40px; font-size: 18px; }
	.verba-lightbox-image { max-width: 94vw; }
}
.verba-service-cta { margin-top: 40px; }
.verba-service-contact { border-top: 1px solid var(--verba-border); padding-top: 40px; }

/* ---------- Contact page ---------- */
/* Contact info cards — full-width rectangles stacked in the side column,
   below the Follow Us block. */
/* Gradient panel wrapping the info cards + Follow Us card — same
   gradient as the header navbar so the page reads as one design. The
   panel stretches to match the form column height; the cards inside
   keep their natural size. */
.verba-contact-info-heading { margin: 28px 0 14px; font-size: 24px; }
.verba-contact-cards-panel {
	padding: 18px; border-radius: var(--verba-radius);
	background: linear-gradient(180deg, #a3b9d7, #f4f9fb);
	flex: 1;
}
.verba-contact-cards-stack { display: grid; gap: 12px; }
.verba-contact-card-row {
	display: flex; align-items: flex-start; gap: 12px; text-align: left;
	background: #fff; border-radius: var(--verba-radius); box-shadow: var(--verba-shadow); padding: 16px 18px;
}
.verba-contact-card-row .dashicons { font-size: 22px; width: 22px; height: 22px; color: var(--verba-primary); flex-shrink: 0; margin-top: 2px; }
.verba-contact-card-row h3 { font-size: 14px; margin-bottom: 3px; }
.verba-contact-card-row p { margin: 0; color: var(--verba-muted); font-size: 14px; }
.verba-contact-card-row a:hover { color: var(--verba-primary); }
/* Columns stretch to equal height; the side column is a flex stack whose
   last card (Follow Us) grows to fill any leftover space, so its bottom
   edge lines up with the bottom of the contact form on the left. */
.verba-contact-main-grid { display: grid; grid-template-columns: 1.4fr 1fr; gap: 50px; align-items: stretch; }
.verba-contact-side-col { display: flex; flex-direction: column; }
.verba-contact-map iframe { width: 100%; height: 280px; border: 0; border-radius: var(--verba-radius); }
.verba-contact-social-card {
	margin-top: 12px; background: #fff; border-radius: var(--verba-radius);
	box-shadow: var(--verba-shadow); padding: 16px 18px;
}
.verba-contact-social-card h3 { font-size: 14px; margin-bottom: 4px; }
.verba-contact-social .verba-social-icons { display: flex; gap: 12px; margin-top: 12px; }
.verba-contact-social .verba-social-icons a {
	display: flex; align-items: center; justify-content: center; width: 42px; height: 42px; border-radius: 50%;
	background: var(--verba-bg-alt); color: var(--verba-primary);
}
.verba-contact-social .verba-social-icons a:hover { background: var(--verba-primary); color: #fff; }

/* Medium devices: narrower tab rail so the content column keeps
   comfortable breathing room. */
@media (max-width: 1100px) and (min-width: 901px) {
	.verba-services-layout { grid-template-columns: 230px 1fr; gap: 28px; }
	.verba-tab-btn { padding: 13px 14px; font-size: 14px; }
}

@media (max-width: 900px) {
	.verba-services-layout { grid-template-columns: 1fr; gap: 24px; padding: 24px 0 60px; }

	/* Tabs wrap onto as many rows as needed — every service is visible
	   at once, no horizontal slider or scrollbar. Compact pills so as
	   many as possible share each row. */
	.verba-services-tabs ul {
		position: static; display: flex; flex-wrap: wrap; justify-content: center;
		gap: 6px; padding: 4px 0;
	}
	.verba-tab-btn { width: auto; padding: 7px 12px; font-size: 11px; gap: 6px; border-radius: 30px; text-align: center; }
	.verba-tab-btn .dashicons { font-size: 13px; width: 13px; height: 13px; }

	.verba-service-banner { height: 220px; border-radius: var(--verba-radius); text-align: center; }
	.verba-service-banner h1 { font-size: 26px; }
	.verba-service-banner .dashicons { font-size: 26px; width: 26px; height: 26px; }

	/* Center-aligned, breathable service content on small screens. */
	.verba-service-body { padding: 0 6px; }
	.verba-service-heading-plain { text-align: center; }
	.verba-service-lead { font-size: 16px; text-align: center; }
	.verba-service-description { text-align: center; }
	.verba-service-block { margin: 34px 0; }
	.verba-service-block > h3 { text-align: center; margin-bottom: 18px; }

	/* Lists read better left-aligned, but the block itself is centered. */
	.verba-tick-list { width: fit-content; max-width: 100%; margin: 0 auto; text-align: left; }

	.verba-process-steps { grid-template-columns: 1fr; }
	.verba-process-step { text-align: center; }
	.verba-process-step .verba-process-number { margin-left: auto; margin-right: auto; }

	.verba-service-tags { grid-template-columns: 1fr; text-align: center; }
	.verba-tag-list { justify-content: center; }

	.verba-service-gallery { grid-template-columns: repeat(2, 1fr); }
	.verba-faq-item { text-align: left; }
	.verba-service-cta { text-align: center; }

	.verba-contact-main-grid { grid-template-columns: 1fr; }
	.verba-form-cols-2 { grid-template-columns: 1fr; }
}

@media (max-width: 560px) {
	.verba-page-hero { padding: 70px 0 50px; }
	.verba-service-banner { height: 180px; }
	.verba-service-banner h1 { font-size: 22px; }
	.verba-service-gallery { grid-template-columns: 1fr; }
	.verba-faq-question { padding: 16px 18px; font-size: 15px; }
	.verba-faq-answer p { padding: 16px 18px; }
	.verba-legal-answer { padding: 0 18px; }
	.verba-legal-accordion .verba-faq-item.is-open .verba-legal-answer { padding: 20px 18px 20px; }
	.verba-tag-list li { padding: 6px 12px; font-size: 13px; }
	.verba-service-cta .verba-btn { width: 100%; }
}
