/* ================================================
   GETHANDYMAN CARDIFF — site.css  (2026)
   Single optimised stylesheet — no jQuery needed
   ================================================ */

/* === Variables === */
:root {
  --brand:       #ffa800;
  --brand-dark:  #e09400;
  --dark:        #2c2218;
  --heading:     #403025;
  --text:        #555;
  --light-bg:    #f7f7f5;
  --radius:      6px;
  --shadow:      0 4px 18px rgba(0,0,0,.10);
  --tr:          all .25s ease;
}

/* === Reset / Base === */
*, *::before, *::after { box-sizing: border-box; }
html { -webkit-font-smoothing: antialiased; scroll-behavior: smooth; }
body {
  font-family: 'Roboto Slab', Georgia, serif;
  font-size: 14px;
  line-height: 1.7;
  color: var(--text);
  background: #fff;
  margin: 0;
}
h1,h2,h3,h4,h5,h6 { color: var(--heading); font-family: inherit; line-height: 1.2; margin: 0 0 14px; }
p { margin: 0 0 14px; }
a { color: var(--heading); text-decoration: none; }
a:hover { color: var(--brand); }
img { max-width: 100%; height: auto; }
ul { margin: 0; padding: 0; }
::selection { background: var(--brand); color: #fff; }

/* === Minimal Grid (Bootstrap 3-compatible class names) === */
.container { width: 100%; max-width: 1170px; margin: 0 auto; padding: 0 15px; }
.row { display: flex; flex-wrap: wrap; margin: 0 -15px; }
[class*="col-"] { padding: 0 15px; width: 100%; }

/* xs default: stack */
.col-xs-6  { width: 50%; }
.col-xs-12 { width: 100%; }

/* sm ≥576px */
@media (min-width: 576px) {
  .col-sm-3  { width: 25%; }
  .col-sm-6  { width: 50%; }
  .col-sm-12 { width: 100%; }
}
/* md ≥768px */
@media (min-width: 768px) {
  .col-md-3  { width: 25%; }
  .col-md-4  { width: 33.333%; }
  .col-md-6  { width: 50%; }
  .col-md-8  { width: 66.667%; }
  .col-md-9  { width: 75%; }
  .col-md-12 { width: 100%; }
}

/* === Utilities === */
.text-center   { text-align: center; }
.img-responsive{ max-width: 100%; height: auto; display: block; }
.clearfix::after { content:''; display:table; clear:both; }
.lead { font-size: 16px; }

/* === Responsive Visibility Helpers === */
/* Show/hide by breakpoint — mobile-first */
.d-none-md { display: block; }
@media (min-width: 992px) { .d-none-md { display: none !important; } }

.d-only-md { display: none; }
@media (min-width: 992px) { .d-only-md { display: flex !important; } }

/* Legacy Bootstrap names used in template */
.hidden-md,.hidden-lg { display: block; }
.visible-md,.visible-lg { display: none; }
@media (min-width: 992px) {
  .hidden-md,.hidden-lg  { display: none !important; }
  .visible-md,.visible-lg{ display: block; }
  .visible-xs,.visible-sm{ display: none !important; }
}

/* === Buttons === */
.btn-brand {
  background: var(--brand); color: #fff !important;
  border: 2px solid var(--brand); padding: 12px 30px;
  border-radius: var(--radius); font-weight: 700; font-size: 15px;
  text-decoration: none !important; transition: var(--tr);
  display: inline-block; cursor: pointer; font-family: inherit;
}
.btn-brand:hover { background: var(--brand-dark); border-color: var(--brand-dark); transform: translateY(-2px); box-shadow: 0 6px 18px rgba(255,168,0,.35); color: #fff !important; }

.btn-outline-white {
  background: transparent; color: #fff !important;
  border: 2px solid rgba(255,255,255,.7); padding: 12px 30px;
  border-radius: var(--radius); font-weight: 700; font-size: 15px;
  text-decoration: none !important; transition: var(--tr); display: inline-block;
}
.btn-outline-white:hover { background: #fff; color: var(--heading) !important; transform: translateY(-2px); }

.btn-outline-brand {
  background: transparent; color: var(--brand) !important;
  border: 2px solid var(--brand); padding: 10px 22px;
  border-radius: var(--radius); font-weight: 700; font-size: 13px;
  text-decoration: none !important; transition: var(--tr); display: inline-block;
}
.btn-outline-brand:hover { background: var(--brand); color: #fff !important; }

.btn-whatsapp {
  background: #25D366; color: #fff !important; border: none;
  padding: 12px 24px; border-radius: var(--radius); font-weight: 700; font-size: 15px;
  text-decoration: none !important; transition: var(--tr); display: inline-flex; align-items: center; gap: 8px;
}
.btn-whatsapp:hover { background: #1ebe5b; transform: translateY(-2px); color: #fff !important; }

/* === HEADER === */
.site-header { position: relative; z-index: 100; }

/* Top bar */
.header-top {
  background: var(--dark);
  padding: 0;
}
.header-top .container {
  display: flex; align-items: center;
  justify-content: space-between; gap: 16px;
  min-height: 64px;
}
.header-logo a { display: block; line-height: 0; }
.header-logo img { height: 46px; width: auto; }

.header-meta { display: flex; align-items: center; gap: 20px; }
.header-hours { color: rgba(255,255,255,.65); font-size: 12px; }
.header-hours strong { color: #fff; }
.header-tel {
  color: #fff; font-weight: 700; font-size: 15px;
  display: flex; align-items: center; gap: 6px; text-decoration: none; transition: var(--tr);
}
.header-tel:hover { color: var(--brand); }
.header-tel svg { width: 16px; height: 16px; fill: var(--brand); flex-shrink: 0; }

/* Desktop nav bar */
.header-nav-bar { background: #fff; box-shadow: 0 2px 8px rgba(0,0,0,.07); }
.header-nav-bar .container { display: flex; align-items: stretch; justify-content: space-between; }

/* Desktop main-nav */
.main-nav ul { list-style: none; display: flex; align-items: stretch; }
.main-nav > ul > li { position: relative; }
.main-nav > ul > li > a {
  display: flex; align-items: center; padding: 16px 15px;
  color: var(--heading); font-weight: 600; font-size: 13px;
  text-decoration: none; transition: var(--tr); white-space: nowrap;
  border-bottom: 3px solid transparent;
}
.main-nav > ul > li > a:hover,
.main-nav > ul > li.active > a { color: var(--brand); border-bottom-color: var(--brand); }

/* Dropdown */
.main-nav > ul > li > ul {
  position: absolute; top: 100%; left: 0; min-width: 200px;
  background: #fff; border-top: 2px solid var(--brand);
  box-shadow: 0 8px 24px rgba(0,0,0,.12); list-style: none;
  padding: 8px 0;
  opacity: 0; visibility: hidden; transform: translateY(-6px);
  transition: opacity .2s, transform .2s, visibility .2s; z-index: 200;
}
.main-nav > ul > li:hover > ul,
.main-nav > ul > li:focus-within > ul { opacity: 1; visibility: visible; transform: translateY(0); }
.main-nav > ul > li > ul > li > a {
  display: block; padding: 10px 18px; color: var(--text); font-size: 13px; transition: var(--tr);
}
.main-nav > ul > li > ul > li > a:hover { background: var(--light-bg); color: var(--brand); padding-left: 24px; }

.header-cta { display: flex; align-items: center; padding: 0 0 0 12px; }
.header-cta a {
  background: var(--brand); color: #fff !important; padding: 9px 18px;
  border-radius: var(--radius); font-weight: 700; font-size: 13px;
  text-decoration: none; white-space: nowrap; transition: var(--tr);
}
.header-cta a:hover { background: var(--brand-dark); }

/* Mobile hamburger */
.mob-toggle {
  display: flex; flex-direction: column; justify-content: center; gap: 5px;
  background: var(--brand); border: none; border-radius: var(--radius);
  cursor: pointer; padding: 10px; width: 44px; height: 44px;
}
.mob-toggle span { display: block; width: 22px; height: 2px; background: #fff; border-radius: 2px; transition: var(--tr); }
@media (min-width: 992px) { .mob-toggle { display: none; } }

/* Mobile nav */
.mob-nav {
  background: var(--dark);
  max-height: 0; overflow: hidden; transition: max-height .35s ease;
}
.mob-nav.open { max-height: 620px; }
.mob-nav ul { list-style: none; }
.mob-nav > ul > li { border-bottom: 1px solid rgba(255,255,255,.07); }
.mob-nav > ul > li > a,
.mob-nav > ul > li > .mob-item { display: flex; align-items: center; justify-content: space-between; }
.mob-nav > ul > li > a,
.mob-nav > ul > li > .mob-item > a {
  display: block; padding: 13px 20px; color: rgba(255,255,255,.85);
  font-size: 14px; font-weight: 600; text-decoration: none; transition: var(--tr);
}
.mob-nav > ul > li > a:hover,
.mob-nav > ul > li > .mob-item > a:hover { color: var(--brand); }
.mob-sub-btn {
  background: none; border: none; color: var(--brand); font-size: 20px;
  cursor: pointer; padding: 0 20px 0 0; line-height: 1;
}
.mob-nav .mob-sub { max-height: 0; overflow: hidden; transition: max-height .25s ease; background: rgba(0,0,0,.2); }
.mob-nav .mob-sub.open { max-height: 400px; }
.mob-nav .mob-sub a {
  display: block; padding: 10px 20px 10px 32px;
  color: rgba(255,255,255,.6); font-size: 13px; text-decoration: none; transition: var(--tr);
}
.mob-nav .mob-sub a:hover { color: var(--brand); }

/* Sticky header */
.site-header.sticky {
  position: fixed; top: 0; left: 0; right: 0;
  box-shadow: 0 2px 16px rgba(0,0,0,.15);
  animation: slideDown .3s ease;
}
.site-header.sticky .header-top { display: none; }
@keyframes slideDown { from { transform: translateY(-100%); } to { transform: translateY(0); } }

/* Back to top */
.back-to-top {
  position: fixed; bottom: 94px; right: 26px;
  width: 40px; height: 40px; background: var(--heading); color: #fff;
  border-radius: 50%; display: flex; align-items: center; justify-content: center;
  cursor: pointer; opacity: 0; visibility: hidden; transition: var(--tr);
  z-index: 9998; border: none; font-size: 18px;
}
.back-to-top.visible { opacity: 1; visibility: visible; }
.back-to-top:hover { background: var(--brand); transform: translateY(-3px); }

/* WhatsApp float */
.whatsapp-float {
  position: fixed; bottom: 26px; right: 26px;
  width: 54px; height: 54px; background: #25D366; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  z-index: 9999; box-shadow: 0 4px 18px rgba(37,211,102,.45);
  text-decoration: none; transition: var(--tr);
}
.whatsapp-float:hover { background: #1ebe5b; transform: scale(1.1); }
.whatsapp-float svg { width: 28px; height: 28px; fill: #fff; }

/* === Sections === */
.section { padding: 68px 0; }
.section-light { background: var(--light-bg); }
.section-dark { background: var(--dark); }

.section-title { text-align: center; margin-bottom: 44px; }
.section-title .label-top {
  display: block; font-size: 11px; letter-spacing: 3px;
  text-transform: uppercase; color: var(--brand); font-weight: 700; margin-bottom: 10px;
}
.section-title h2 { font-size: clamp(1.6rem, 3vw, 2.4rem); margin-bottom: 12px; }
.section-title p { max-width: 560px; margin: 0 auto; font-size: 15px; color: var(--text); }
.title-accent { display: block; width: 48px; height: 3px; background: var(--brand); border-radius: 2px; margin: 14px auto 0; }

/* === Hero === */
#hero { position: relative; height: 100vh; min-height: 500px; overflow: hidden; background: var(--dark); }
.hero-slides { height: 100%; }
.hero-slide { position: absolute; inset: 0; background-size: cover; background-position: center; opacity: 0; animation: heroFade 18s infinite; }
.hero-slide:nth-child(1) { animation-delay:  0s; background-image: url('../images/slides/slide-7.jpg'); }
.hero-slide:nth-child(2) { animation-delay:  6s; background-image: url('../images/slides/slide-4.jpg'); }
.hero-slide:nth-child(3) { animation-delay: 12s; background-image: url('../images/slides/slide-1.jpg'); }
@keyframes heroFade { 0%{opacity:0} 5%{opacity:1} 33%{opacity:1} 38%{opacity:0} 100%{opacity:0} }
.hero-overlay { position: absolute; inset: 0; background: linear-gradient(135deg,rgba(44,34,24,.72) 0%,rgba(44,34,24,.35) 100%); z-index: 1; }
.hero-content { position: absolute; inset: 0; z-index: 2; display: flex; align-items: center; justify-content: center; text-align: center; padding: 20px; }
.hero-tagline { font-size: 11px; letter-spacing: 3px; text-transform: uppercase; color: var(--brand); font-weight: 700; margin-bottom: 16px; display: block; }
.hero-content h1 { color: #fff; font-size: clamp(2rem, 5vw, 3.6rem); line-height: 1.15; margin-bottom: 20px; text-shadow: 0 2px 10px rgba(0,0,0,.4); }
.hero-content h1 span { color: var(--brand); }
.hero-content p { color: rgba(255,255,255,.85); font-size: 1.1rem; max-width: 560px; margin: 0 auto 30px; }
.hero-cta { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }

/* === Stats Bar === */
.stats-bar { background: var(--brand); padding: 30px 0; }
.stat-item { text-align: center; color: #fff; }
.stat-number { font-size: 2.3rem; font-weight: 900; line-height: 1; display: block; }
.stat-label { font-size: 12px; opacity: .88; letter-spacing: 1px; margin-top: 6px; display: block; }

/* === Service Cards === */
.service-card {
  background: #fff; border-radius: var(--radius); padding: 28px 22px;
  text-align: center; box-shadow: var(--shadow); transition: var(--tr);
  border-bottom: 3px solid transparent; height: 100%; display: flex; flex-direction: column;
}
.service-card:hover { transform: translateY(-6px); box-shadow: 0 12px 32px rgba(0,0,0,.13); border-bottom-color: var(--brand); }
.service-card .icon-wrap { width: 66px; height: 66px; background: rgba(255,168,0,.1); border-radius: 50%; display: flex; align-items: center; justify-content: center; margin: 0 auto 16px; transition: var(--tr); }
.service-card:hover .icon-wrap { background: var(--brand); }
.service-card .icon-wrap svg { width: 30px; height: 30px; fill: var(--brand); transition: var(--tr); }
.service-card:hover .icon-wrap svg { fill: #fff; }
.service-card h3 { font-size: 15px; font-weight: 700; margin-bottom: 10px; color: var(--heading); }
.service-card p { font-size: 13px; color: var(--text); line-height: 1.65; flex: 1; margin-bottom: 16px; }
.learn-more { color: var(--brand); font-weight: 700; font-size: 12px; letter-spacing: 1px; text-transform: uppercase; text-decoration: none; transition: var(--tr); margin-top: auto; }
.learn-more:hover { color: var(--brand-dark); }

/* === Feature Items === */
.feature-item { padding: 18px 0; display: flex; gap: 16px; align-items: flex-start; }
.feature-icon { width: 50px; height: 50px; background: rgba(255,168,0,.12); border-radius: 50%; flex-shrink: 0; display: flex; align-items: center; justify-content: center; }
.feature-icon svg { width: 24px; height: 24px; fill: var(--brand); }
.feature-item h4 { font-size: 15px; font-weight: 700; margin-bottom: 5px; color: var(--heading); }
.feature-item p { font-size: 13px; color: var(--text); margin: 0; }

/* === Testimonial Cards === */
.testimonial-card { background: #fff; border-radius: var(--radius); padding: 24px; box-shadow: var(--shadow); height: 100%; }
.testimonial-stars { color: var(--brand); font-size: 16px; margin-bottom: 12px; }
.testimonial-card blockquote { font-size: 13px; color: var(--text); line-height: 1.7; border: none; padding: 0; margin: 0 0 16px; font-style: italic; }
.testimonial-author { display: flex; align-items: center; gap: 12px; }
.testimonial-author img { width: 44px; height: 44px; border-radius: 50%; object-fit: cover; }
.t-avatar { width: 44px; height: 44px; border-radius: 50%; background: var(--brand); color: #fff; display: flex; align-items: center; justify-content: center; font-weight: 900; font-size: 18px; flex-shrink: 0; }
.testimonial-author .t-name { font-weight: 700; font-size: 13px; color: var(--heading); }
.testimonial-author .t-loc { font-size: 12px; color: #999; }

/* === CTA Banner === */
.cta-banner { background: var(--heading); padding: 54px 0; text-align: center; }
.cta-banner h2 { color: #fff; font-size: clamp(1.5rem, 3vw, 2.1rem); margin-bottom: 12px; }
.cta-banner p { color: rgba(255,255,255,.8); font-size: 15px; margin-bottom: 26px; }
.cta-banner .phone-big { font-size: 1.8rem; font-weight: 900; color: var(--brand); display: block; margin-bottom: 24px; text-decoration: none; }
.cta-banner .phone-big:hover { color: #fff; }

/* === Gallery Items === */
.gallery-item { margin-bottom: 26px; border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow); transition: var(--tr); }
.gallery-item:hover { transform: translateY(-4px); box-shadow: 0 12px 32px rgba(0,0,0,.15); }
.gallery-img { height: 220px; overflow: hidden; }
.gallery-img img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s ease; }
.gallery-item:hover .gallery-img img { transform: scale(1.06); }
.gallery-caption { background: #fff; padding: 14px 16px; }
.gallery-caption h4 { font-size: 14px; font-weight: 700; margin: 0 0 3px; color: var(--heading); }
.gallery-caption p { font-size: 12px; color: var(--text); margin: 0; }

.gallery-filter { margin-bottom: 30px; display: flex; flex-wrap: wrap; gap: 8px; justify-content: center; }
.gallery-filter button {
  background: transparent; border: 1.5px solid #ddd; padding: 7px 18px;
  border-radius: 30px; font-size: 13px; font-weight: 600; color: var(--text);
  cursor: pointer; transition: var(--tr); font-family: inherit;
}
.gallery-filter button.active,
.gallery-filter button:hover { background: var(--brand); border-color: var(--brand); color: #fff; }

/* === Page Banner (inner pages) === */
.page-banner { background: var(--dark); padding: 50px 0 36px; position: relative; overflow: hidden; }
.page-banner::before { content: ''; position: absolute; inset: 0; background: linear-gradient(135deg,rgba(255,168,0,.10) 0%,transparent 70%); }
.page-banner .container { position: relative; }
.page-banner h1 { color: #fff; margin-bottom: 8px; font-size: 2rem; }
.breadcrumb-nav { list-style: none; display: flex; gap: 8px; align-items: center; }
.breadcrumb-nav li { font-size: 13px; color: rgba(255,255,255,.55); }
.breadcrumb-nav li a { color: var(--brand); text-decoration: none; }
.breadcrumb-nav li + li::before { content: '/'; margin-right: 8px; }

/* === Service Detail === */
.service-detail { padding: 42px 0; border-bottom: 1px solid #eee; }
.service-detail:last-child { border-bottom: none; }
.service-detail .icon-lg { width: 72px; height: 72px; background: rgba(255,168,0,.1); border-radius: 50%; display: flex; align-items: center; justify-content: center; margin-bottom: 18px; }
.service-detail .icon-lg svg { width: 36px; height: 36px; fill: var(--brand); }
.service-detail h2 { font-size: 1.5rem; margin-bottom: 14px; }
.service-detail p { font-size: 14px; line-height: 1.8; color: var(--text); }
.service-actions { margin-top: 18px; display: flex; gap: 12px; flex-wrap: wrap; }

/* === Quote Sidebar === */
.quote-box { background: var(--brand); border-radius: var(--radius); padding: 26px 22px; text-align: center; position: sticky; top: 20px; }
.quote-box h3 { color: #fff; font-size: 1.15rem; margin-bottom: 10px; }
.quote-box p { color: rgba(255,255,255,.88); font-size: 13px; margin-bottom: 20px; }
.btn-white { background: #fff; color: var(--heading) !important; border: none; padding: 12px 22px; border-radius: var(--radius); font-weight: 700; font-size: 14px; text-decoration: none !important; transition: var(--tr); display: block; margin-bottom: 10px; }
.btn-white:hover { background: var(--heading); color: #fff !important; }
.phone-link { color: #fff; font-size: 1.05rem; font-weight: 900; text-decoration: none; display: block; margin-top: 12px; }
.phone-link:hover { color: rgba(255,255,255,.7); }

.quick-links { background: var(--light-bg); border-radius: var(--radius); padding: 20px; margin-top: 20px; }
.quick-links h4 { font-size: 14px; margin-bottom: 12px; color: var(--heading); }
.quick-links ul { list-style: none; }
.quick-links li { padding: 8px 0; border-bottom: 1px solid #e8e8e8; }
.quick-links li:last-child { border-bottom: none; }
.quick-links li a { color: var(--text); font-size: 13px; text-decoration: none; transition: var(--tr); }
.quick-links li a:hover { color: var(--brand); }
.quick-links li a::before { content: '→ '; color: var(--brand); }

/* === Contact === */
.contact-info-item { display: flex; gap: 14px; align-items: flex-start; margin-bottom: 22px; }
.contact-icon { width: 46px; height: 46px; background: rgba(255,168,0,.1); border-radius: 50%; flex-shrink: 0; display: flex; align-items: center; justify-content: center; }
.contact-icon svg { width: 22px; height: 22px; fill: var(--brand); }
.contact-info-item h4 { font-size: 14px; font-weight: 700; margin: 0 0 4px; }
.contact-info-item p, .contact-info-item a { font-size: 13px; color: var(--text); margin: 0; text-decoration: none; }
.contact-info-item a:hover { color: var(--brand); }

.contact-form-wrap { background: var(--light-bg); border-radius: 8px; padding: 30px; }
.form-group { margin-bottom: 16px; }
.form-group label { display: block; font-weight: 600; font-size: 13px; color: var(--heading); margin-bottom: 5px; }
.form-control {
  width: 100%; border: 1.5px solid #e0e0e0; border-radius: var(--radius);
  padding: 10px 14px; font-size: 14px; font-family: inherit; color: var(--text);
  background: #fff; transition: var(--tr); outline: none; -webkit-appearance: none;
}
.form-control:focus { border-color: var(--brand); box-shadow: 0 0 0 3px rgba(255,168,0,.14); }
textarea.form-control { min-height: 130px; resize: vertical; }
select.form-control { height: auto; cursor: pointer; }
.form-error-msg { color: #c33; font-size: 12px; margin-top: 3px; display: none; }
.form-control.invalid { border-color: #c33; }
.alert { padding: 14px 16px; border-radius: var(--radius); margin-bottom: 16px; font-size: 14px; display: none; }
.alert-success { background: #d4edda; color: #155724; border: 1px solid #c3e6cb; }
.alert-error   { background: #f8d7da; color: #721c24; border: 1px solid #f5c6cb; }
.faq-item { border-bottom: 1px solid #eee; padding: 16px 0; }
.faq-item:last-child { border-bottom: none; }
.faq-item strong { color: var(--heading); font-size: 14px; display: block; margin-bottom: 7px; }
.faq-item p { font-size: 13px; color: #666; margin: 0; }

/* === About Stats === */
.about-stats { display: flex; flex-wrap: wrap; border: 1px solid #eee; border-radius: var(--radius); overflow: hidden; margin: 28px 0; }
.about-stat { flex: 1; min-width: 120px; text-align: center; padding: 18px 10px; border-right: 1px solid #eee; }
.about-stat:last-child { border-right: none; }
.about-stat .num { font-size: 2rem; font-weight: 900; color: var(--brand); line-height: 1; display: block; }
.about-stat .lbl { font-size: 12px; color: #777; margin-top: 5px; display: block; }

/* === Footer === */
footer { background: #1a1208; }
.footer-main { padding: 44px 0; }
.footer-main .row { gap: 0; }
.footer-logo-col { padding: 0 15px; margin-bottom: 24px; }
.footer-logo-col img { max-height: 46px; width: auto; margin-bottom: 12px; }
.footer-logo-col p { color: rgba(255,255,255,.5); font-size: 13px; margin: 0; }
.footer-col h3 { color: #fff; font-size: 14px; margin-bottom: 16px; }
.footer-col ul { list-style: none; }
.footer-col li { margin-bottom: 9px; }
.footer-col li a, .footer-col li span { color: rgba(255,255,255,.58); font-size: 13px; text-decoration: none; transition: var(--tr); }
.footer-col li a:hover { color: var(--brand); }
.footer-bottom { background: rgba(0,0,0,.3); padding: 14px 0; }
.footer-bottom .container { display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 10px; }
.footer-copyright { color: rgba(255,255,255,.45); font-size: 12px; }
.payment-list { display: flex; gap: 6px; list-style: none; }
.payment-list img { height: 26px; width: auto; border-radius: 3px; }

/* === Responsive === */
@media (max-width: 991px) {
  .section { padding: 48px 0; }
  #hero { min-height: 460px; height: 82vh; }
  .hero-cta { flex-direction: column; align-items: center; }
  .header-meta .header-hours { display: none; }
  .header-nav-bar { display: none; }
  .quote-box { position: static; margin-top: 24px; }
}
@media (max-width: 767px) {
  .about-stat { flex: 0 0 50%; border-bottom: 1px solid #eee; }
  .contact-form-wrap { padding: 20px; }
}
@media (max-width: 480px) {
  .whatsapp-float { bottom: 18px; right: 18px; width: 48px; height: 48px; }
  .whatsapp-float svg { width: 24px; height: 24px; }
  .back-to-top { right: 18px; bottom: 78px; }
}
