/* ================================================
   Aircon4Home – Faithful Recreation
   Matches original WordPress theme styling
   ================================================ */

@import url('https://fonts.googleapis.com/css2?family=Open+Sans:wght@300;400;600;700&family=Oswald:wght@400;500;600;700&display=swap');

/* ── Reset & Base ──────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Open Sans', Arial, sans-serif;
  font-size: 14px;
  color: #444;
  background: #fff;
  line-height: 1.6;
}
img { max-width: 100%; height: auto; display: block; }
a { color: #0073aa; text-decoration: none; }
a:hover { text-decoration: underline; color: #005177; }
ul { list-style: none; padding: 0; margin: 0; }
h1, h2, h3, h4 {
  font-family: 'Oswald', 'Open Sans', sans-serif;
  color: #333;
  line-height: 1.3;
}
p { margin-bottom: 1em; }

/* ── Layout ────────────────────────────────────── */
.container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 20px;
}
.container-wide {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 20px;
}

/* ── TOP BAR ───────────────────────────────────── */
.top-bar {
  background: #f5c400;
  padding: 0;
  text-align: right;
  display: none; /* quote/phone now in header on yellow bar */
}
.top-bar-inner {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 20px;
}
.top-bar a.quote-btn {
  background: #e8000d;
  color: #fff;
  padding: 8px 22px;
  font-size: 13px;
  font-weight: 700;
  text-transform: none;
  letter-spacing: 0.3px;
  border-radius: 30px;
  text-decoration: none;
}
.top-bar a.quote-btn:hover { background: #c0000a; text-decoration: none; }
.top-bar .phone-link {
  color: #1a3a8c;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.3px;
  background: #1a3a8c;
  color: #fff;
  padding: 8px 18px;
  border-radius: 30px;
}
.top-bar .phone-link:hover { opacity: 0.9; text-decoration: none; }

/* ── HEADER ────────────────────────────────────── */
.site-header {
  background: #f5c400;
  border-bottom: none;
  padding: 10px 0;
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}
.logo-wrap img {
  max-height: 70px;
  width: auto;
}
/* Fallback text logo if image not found */
.logo-fallback {
  font-family: 'Oswald', sans-serif;
  font-size: 28px;
  font-weight: 700;
  color: #1a1a1a;
  line-height: 1.1;
}
.logo-fallback span { color: #e8000d; }
.logo-fallback small {
  display: block;
  font-size: 11px;
  font-weight: 400;
  color: #666;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

/* ── NAVIGATION ────────────────────────────────── */
.site-nav {
  display: flex;
  align-items: center;
}
.site-nav > ul {
  display: flex;
  gap: 0;
  align-items: center;
}
.site-nav > ul > li {
  position: relative;
}
.site-nav > ul > li > a {
  display: block;
  padding: 10px 14px;
  font-family: 'Oswald', sans-serif;
  font-size: 14px;
  font-weight: 700;
  color: #1a3a8c;
  text-transform: uppercase;
  letter-spacing: 0.3px;
  text-decoration: none;
  transition: color 0.15s, background 0.15s;
}
.site-nav > ul > li > a:hover,
.site-nav > ul > li > a.active {
  color: #e8000d;
  text-decoration: none;
}
/* Dropdown */
.site-nav .dropdown {
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 220px;
  background: #fff;
  border-top: 3px solid #e8000d;
  box-shadow: 0 4px 12px rgba(0,0,0,0.12);
  z-index: 500;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-4px);
  transition: opacity 0.18s, transform 0.18s, visibility 0.18s;
}
.site-nav > ul > li:hover .dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.site-nav .dropdown li a {
  display: block;
  padding: 9px 16px;
  font-family: 'Open Sans', sans-serif;
  font-size: 12px;
  font-weight: 600;
  color: #333;
  text-transform: uppercase;
  letter-spacing: 0.3px;
  border-bottom: 1px solid #f0f0f0;
  text-decoration: none;
}
.site-nav .dropdown li:last-child a { border-bottom: none; }
.site-nav .dropdown li a:hover { background: #f5f5f5; color: #e8000d; text-decoration: none; }

/* Mobile hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 6px;
}
.hamburger span {
  width: 26px; height: 2px;
  background: #333;
  display: block;
  border-radius: 2px;
  transition: all 0.2s;
}
/* Mobile nav */
.mobile-nav {
  display: none;
  background: #1a1a1a;
  padding: 10px 0;
}
.mobile-nav.open { display: block; }
.mobile-nav a {
  display: block;
  padding: 10px 20px;
  color: #ddd;
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
  border-bottom: 1px solid #2a2a2a;
  text-decoration: none;
}
.mobile-nav a.sub {
  padding-left: 36px;
  font-size: 12px;
  color: #aaa;
  background: #111;
}
.mobile-nav a:hover { color: #fff; background: #e8000d; text-decoration: none; }

/* ── HERO BANNER ───────────────────────────────── */
.hero-banner {
  width: 100%;
  overflow: hidden;
  line-height: 0;
}
.hero-banner a { display: block; }
.hero-banner img {
  width: 100%;
  height: auto;
  display: block;
  max-height: 420px;
  object-fit: cover;
  object-position: center;
}

/* ── ROOM ICONS SECTION ────────────────────────── */
.room-icons-section {
  background: #f5f5f5;
  padding: 40px 0 30px;
  text-align: center;
}
.room-icons-section h2 {
  font-size: 26px;
  font-weight: 600;
  margin-bottom: 30px;
  color: #333;
}
.room-icons-grid {
  display: flex;
  justify-content: center;
  gap: 30px;
  flex-wrap: wrap;
}
.room-icon-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-decoration: none;
  width: 160px;
}
.room-icon-item img {
  width: 100px;
  height: 100px;
  object-fit: contain;
  margin-bottom: 12px;
  transition: transform 0.2s;
}
.room-icon-item:hover img { transform: scale(1.05); text-decoration: none; }
.room-icon-item h3 {
  font-family: 'Oswald', sans-serif;
  font-size: 15px;
  font-weight: 600;
  color: #333;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.room-icon-item:hover h3 { color: #e8000d; }

/* ── ABOUT SECTION ─────────────────────────────── */
.about-section {
  padding: 50px 0;
  background: #fff;
}
.about-section h2 {
  font-size: 22px;
  font-weight: 600;
  margin-bottom: 20px;
  color: #333;
}
.about-section p {
  font-size: 14px;
  color: #555;
  line-height: 1.75;
  margin-bottom: 16px;
}
.btn-main {
  display: inline-block;
  background: #e8000d;
  color: #fff;
  padding: 11px 28px;
  font-family: 'Oswald', sans-serif;
  font-size: 14px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  border-radius: 2px;
  text-decoration: none;
  margin-top: 8px;
  transition: background 0.15s;
  border: none;
  cursor: pointer;
}
.btn-main:hover { background: #c0000a; text-decoration: none; color: #fff; }

/* ── LOCAL SERVICES + CALLBACK FORM ───────────── */
.local-section {
  background: #f9f9f9;
  padding: 50px 0;
  border-top: 1px solid #eee;
}
.local-section h2 {
  font-size: 22px;
  margin-bottom: 16px;
  color: #333;
}
.local-section p {
  font-size: 14px;
  color: #555;
  line-height: 1.75;
  max-width: 800px;
}
.callback-wrap {
  margin-top: 36px;
  background: #fff;
  border: 1px solid #ddd;
  border-top: 3px solid #e8000d;
  padding: 28px 32px;
  max-width: 600px;
}
.callback-wrap h3 {
  font-size: 17px;
  margin-bottom: 20px;
  color: #333;
}
.form-field {
  margin-bottom: 14px;
}
.form-field label {
  display: block;
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.3px;
  color: #555;
  margin-bottom: 5px;
}
.form-field input,
.form-field textarea,
.form-field select {
  width: 100%;
  padding: 9px 12px;
  border: 1px solid #ccc;
  border-radius: 2px;
  font-family: 'Open Sans', sans-serif;
  font-size: 13px;
  color: #333;
  background: #fff;
  transition: border-color 0.15s;
}
.form-field input:focus,
.form-field textarea:focus,
.form-field select:focus {
  outline: none;
  border-color: #e8000d;
  box-shadow: 0 0 0 2px rgba(232,0,13,0.08);
}
.form-field textarea { min-height: 100px; resize: vertical; }

/* ── FACEBOOK SECTION ──────────────────────────── */
.facebook-section {
  background: #fff;
  padding: 40px 0;
  border-top: 1px solid #eee;
}
.facebook-section h2 {
  font-size: 22px;
  margin-bottom: 10px;
}
.facebook-section > .container > p {
  margin-bottom: 20px;
}
.facebook-section > .container > p a {
  color: #e8000d;
  font-weight: 600;
}
.fb-embed-wrap {
  margin-top: 20px;
}

/* ── INSTALLATION PHOTOS ───────────────────────── */
.installs-section {
  background: #f5f5f5;
  padding: 30px 0;
  border-top: 1px solid #eee;
}
.installs-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.installs-grid img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  border-radius: 2px;
}

/* ── TESTIMONIALS ──────────────────────────────── */
.testimonials-section {
  background: #1a1a1a;
  padding: 40px 0;
  color: #fff;
}
.testimonials-section h3 {
  font-size: 22px;
  color: #fff;
  margin-bottom: 24px;
  text-align: center;
}
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.testimonial-item {
  background: #2a2a2a;
  border-left: 3px solid #e8000d;
  padding: 20px;
  font-size: 13px;
  color: #ccc;
  line-height: 1.65;
  font-style: italic;
}

/* ── FOOTER BANNER ─────────────────────────────── */
.footer-banner {
  background: #fff;
  padding: 30px 0;
  text-align: center;
}
.footer-banner img {
  max-width: 600px;
  width: 80%;
  height: auto;
  display: inline-block;
}

/* ── FOOTER ────────────────────────────────────── */
.site-footer {
  background: #1a1a1a;
  padding: 40px 0 0;
  color: #aaa;
}
.footer-inner {
  display: grid;
  grid-template-columns: 2fr 1.5fr 1fr;
  gap: 40px;
  padding-bottom: 30px;
  border-bottom: 1px solid #333;
}
.footer-brand img.footer-logo {
  max-width: 200px;
  height: auto;
  margin-bottom: 16px;
  filter: brightness(0) invert(1);
  opacity: 0.8;
}
.footer-brand p {
  font-size: 12px;
  color: #888;
  line-height: 1.65;
  margin-bottom: 16px;
}
.footer-social {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-bottom: 16px;
}
.footer-social a {
  font-size: 12px;
  color: #aaa;
  font-weight: 600;
}
.footer-social a:hover { color: #fff; }
img.yell-logo {
  max-width: 100px;
  height: auto;
  margin-top: 12px;
}
.footer-col h4 {
  font-family: 'Oswald', sans-serif;
  font-size: 14px;
  font-weight: 600;
  color: #fff;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 16px;
  padding-bottom: 8px;
  border-bottom: 1px solid #333;
}
.footer-col ul li {
  margin-bottom: 7px;
}
.footer-col ul li a {
  font-size: 12px;
  color: #888;
  font-weight: 600;
  text-decoration: none;
}
.footer-col ul li a:hover { color: #e8000d; text-decoration: none; }
.footer-bottom {
  padding: 14px 0;
  text-align: center;
  font-size: 11px;
  color: #555;
}
.footer-bottom a { color: #666; }
.footer-bottom a:hover { color: #aaa; }

/* ── PAGE HERO (interior pages) ─────────────────── */
.page-hero {
  background: #2a2a2a;
  padding: 40px 0;
  border-bottom: 3px solid #e8000d;
}
.page-hero h1 {
  font-size: 32px;
  color: #fff;
  margin-bottom: 8px;
}
.page-hero p {
  color: #bbb;
  font-size: 14px;
}
.breadcrumb {
  font-size: 12px;
  color: #888;
  margin-top: 12px;
}
.breadcrumb a { color: #aaa; }
.breadcrumb a:hover { color: #e8000d; }
.breadcrumb span { color: #555; margin: 0 5px; }

/* ── CONTENT + SIDEBAR ─────────────────────────── */
.content-wrap {
  padding: 40px 0 50px;
  background: #fff;
}
.content-grid {
  display: grid;
  grid-template-columns: 1fr 280px;
  gap: 40px;
  align-items: start;
}
.page-content h2 {
  font-size: 20px;
  margin: 28px 0 12px;
  color: #333;
}
.page-content h2:first-child { margin-top: 0; }
.page-content p {
  font-size: 14px;
  color: #555;
  line-height: 1.75;
}
.page-content ul {
  list-style: disc;
  padding-left: 20px;
  margin: 12px 0 20px;
}
.page-content ul li {
  font-size: 14px;
  color: #555;
  padding: 4px 0;
  line-height: 1.6;
}
.page-content img {
  border-radius: 2px;
  margin: 20px 0;
  max-width: 100%;
}
.sidebar-box {
  background: #f5f5f5;
  border-top: 3px solid #e8000d;
  padding: 22px;
  margin-bottom: 22px;
}
.sidebar-box h3 {
  font-size: 15px;
  text-transform: uppercase;
  margin-bottom: 14px;
  color: #333;
}
.sidebar-box ul li {
  padding: 7px 0;
  border-bottom: 1px solid #e0e0e0;
}
.sidebar-box ul li:last-child { border: none; }
.sidebar-box ul li a {
  font-size: 12px;
  font-weight: 700;
  color: #333;
  text-transform: uppercase;
}
.sidebar-box ul li a:hover { color: #e8000d; }
.sidebar-cta {
  background: #e8000d;
  padding: 22px;
  text-align: center;
  margin-bottom: 22px;
}
.sidebar-cta h3 { font-size: 17px; color: #fff; margin-bottom: 8px; }
.sidebar-cta p { font-size: 12px; color: rgba(255,255,255,0.85); margin-bottom: 16px; }
.sidebar-cta .btn-white {
  background: #fff;
  color: #e8000d;
  padding: 9px 20px;
  font-family: 'Oswald', sans-serif;
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  display: inline-block;
  border-radius: 2px;
  text-decoration: none;
}
.sidebar-cta .btn-white:hover { background: #1a1a1a; color: #fff; text-decoration: none; }
.sidebar-cta .phone {
  display: block;
  color: #fff;
  font-family: 'Oswald', sans-serif;
  font-size: 20px;
  font-weight: 700;
  margin-top: 12px;
  text-decoration: none;
}
.sidebar-cta .phone:hover { text-decoration: underline; }

/* ── ENQUIRY PAGE ──────────────────────────────── */
.enquiry-section {
  padding: 50px 0;
  background: #fff;
}
.enquiry-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: start;
}
.enquiry-info h2 { font-size: 22px; margin-bottom: 16px; }
.enquiry-info p { font-size: 14px; color: #555; margin-bottom: 12px; line-height: 1.75; }
.contact-detail {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 12px;
  font-size: 14px;
  color: #555;
}
.contact-detail strong { color: #333; }
.enquiry-form-box {
  background: #f9f9f9;
  border: 1px solid #ddd;
  border-top: 3px solid #e8000d;
  padding: 28px;
}
.enquiry-form-box h3 { font-size: 17px; margin-bottom: 20px; color: #333; }

/* ── LOCATIONS ─────────────────────────────────── */
.locations-section {
  padding: 50px 0;
  background: #f5f5f5;
}
.locations-section h2 { font-size: 24px; margin-bottom: 10px; }
.locations-section p { font-size: 14px; color: #555; margin-bottom: 30px; }
.county-block { margin-bottom: 32px; }
.county-block h3 {
  font-size: 16px;
  text-transform: uppercase;
  color: #e8000d;
  margin-bottom: 12px;
  padding-bottom: 8px;
  border-bottom: 1px solid #ddd;
}
.town-list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.town-list a {
  background: #fff;
  border: 1px solid #ddd;
  padding: 6px 14px;
  font-size: 12px;
  font-weight: 600;
  color: #333;
  text-decoration: none;
  border-radius: 2px;
  transition: all 0.15s;
}
.town-list a:hover { background: #e8000d; color: #fff; border-color: #e8000d; text-decoration: none; }

/* ── GALLERY / CASE STUDIES ────────────────────── */
.gallery-section {
  padding: 50px 0;
  background: #fff;
}
.gallery-section h2 { font-size: 24px; margin-bottom: 24px; }
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.gallery-item {
  position: relative;
  overflow: hidden;
  background: #1a1a1a;
}
.gallery-item img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  transition: transform 0.3s;
  opacity: 0.9;
}
.gallery-item:hover img { transform: scale(1.04); opacity: 1; }
.gallery-caption {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  background: rgba(232,0,13,0.85);
  color: #fff;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  padding: 7px 12px;
}

/* ── THANK YOU ─────────────────────────────────── */
.thankyou-section {
  padding: 80px 0;
  text-align: center;
}
.thankyou-section h1 { font-size: 40px; margin-bottom: 16px; }
.thankyou-section p { font-size: 16px; color: #555; margin-bottom: 28px; max-width: 520px; margin-left: auto; margin-right: auto; }

/* ── RESPONSIVE ────────────────────────────────── */
@media (max-width: 960px) {
  .site-nav { display: none; }
  .hamburger { display: flex; }
  .enquiry-grid, .content-grid, .footer-inner { grid-template-columns: 1fr; }
  .testimonials-grid, .installs-grid, .gallery-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 640px) {
  .room-icons-grid { gap: 20px; }
  .room-icon-item { width: 130px; }
  .testimonials-grid, .installs-grid, .gallery-grid { grid-template-columns: 1fr; }
  .hero-banner img { max-height: 200px; }
}

/* ── NEW HOMEPAGE SECTIONS ──────────────────────── */
.hero-text-section {
  background: rgba(0,0,0,0.5);
  margin-top: -4px;
}
.hero-text-inner {
  padding: 40px 0;
  color: #fff;
}
.hero-text-inner h1 {
  font-size: 36px;
  color: #fff;
  margin-bottom: 10px;
}
.hero-text-inner h2 {
  font-size: 18px;
  color: rgba(255,255,255,0.85);
  font-weight: 400;
  margin-bottom: 20px;
}
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: center;
}
.about-sub {
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: #e8000d;
  font-weight: 700;
  margin-bottom: 8px;
}
.about-img img {
  width: 100%;
  border-radius: 4px;
  box-shadow: 0 8px 30px rgba(0,0,0,0.12);
}
.section-sub {
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: #e8000d;
  font-weight: 700;
  margin-bottom: 8px;
  text-align: center;
}
.features-strip {
  background: #f5f5f5;
  padding: 50px 0;
  border-top: 1px solid #eee;
}
.features-strip h2 {
  font-size: 24px;
  text-align: center;
  margin-bottom: 12px;
}
.features-strip > .container > p {
  text-align: center;
  color: #666;
  max-width: 700px;
  margin: 0 auto 30px;
}
.features-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 20px;
}
.feature-item {
  text-align: center;
  padding: 20px 10px;
  background: #fff;
  border-radius: 4px;
  border-top: 3px solid #e8000d;
}
.feature-item span {
  font-size: 24px;
  display: block;
  margin-bottom: 10px;
}
.feature-item p {
  font-size: 12px;
  color: #555;
  margin: 0;
  line-height: 1.5;
}
.banner-strip-section {
  background: #fff;
  padding: 30px 0;
  text-align: center;
  border-top: 1px solid #eee;
  border-bottom: 1px solid #eee;
}
.banner-strip-section img {
  max-width: 700px;
  width: 90%;
  height: auto;
  display: inline-block;
}
.about2-section {
  background: #f9f9f9;
  padding: 60px 0;
  border-top: 1px solid #eee;
}
.cta-section {
  background: #e8000d;
  padding: 50px 0;
  text-align: center;
  color: #fff;
}
.cta-section h2 { color: #fff; font-size: 28px; margin-bottom: 10px; }
.cta-section p { color: rgba(255,255,255,0.9); margin-bottom: 20px; }
.cta-section .btn-main {
  background: #fff;
  color: #e8000d;
  display: inline-block;
  margin-bottom: 20px;
}
.cta-section .btn-main:hover { background: #1a1a1a; color: #fff; }
.cta-details {
  display: flex;
  justify-content: center;
  gap: 40px;
  margin-top: 16px;
  flex-wrap: wrap;
}
.cta-details div { font-size: 13px; color: rgba(255,255,255,0.9); }
.cta-details a { color: #fff; font-weight: 700; }

/* Room cards grid (your-home page) */
.room-cards-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 24px;
}
.room-card {
  display: block;
  text-decoration: none;
  border-radius: 4px;
  overflow: hidden;
  border: 1px solid #eee;
  transition: box-shadow 0.2s;
}
.room-card:hover { box-shadow: 0 6px 20px rgba(0,0,0,0.12); text-decoration: none; }
.room-card img { width: 100%; height: 180px; object-fit: cover; display: block; }
.room-card h3 {
  padding: 12px 16px;
  font-size: 14px;
  color: #333;
  margin: 0;
  border-top: 3px solid #e8000d;
}
.room-card:hover h3 { color: #e8000d; }

/* Room intro grid (interior pages) */
.room-intro-grid {
  display: grid;
  grid-template-columns: 1fr 300px;
  gap: 36px;
  align-items: start;
  margin-bottom: 24px;
}
.room-intro-img img {
  width: 100%;
  border-radius: 4px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.1);
}

/* Footer social icons */
.footer-social a {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  color: #aaa;
  font-weight: 600;
  margin-bottom: 8px;
}
.footer-social a img { width: 20px; height: 20px; }
.footer-social a:hover { color: #fff; }

@media (max-width: 960px) {
  .features-grid { grid-template-columns: repeat(3, 1fr); }
  .about-grid { grid-template-columns: 1fr; }
  .room-intro-grid { grid-template-columns: 1fr; }
  .room-cards-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 640px) {
  .features-grid { grid-template-columns: repeat(2, 1fr); }
  .room-cards-grid { grid-template-columns: 1fr; }
  .cta-details { flex-direction: column; gap: 10px; }
}


/* ── YELLOW HEADER OVERRIDES ──────────────────── */
.header-inner .quote-btn-header {
  background: #e8000d;
  color: #fff !important;
  padding: 9px 22px;
  font-size: 13px;
  font-weight: 700;
  border-radius: 30px;
  text-decoration: none;
  white-space: nowrap;
}
.header-inner .quote-btn-header:hover { background: #c0000a; text-decoration: none; }
.header-inner .phone-btn-header {
  background: #1a3a8c;
  color: #fff !important;
  padding: 9px 18px;
  font-size: 13px;
  font-weight: 700;
  border-radius: 30px;
  text-decoration: none;
  white-space: nowrap;
}
.header-inner .phone-btn-header:hover { opacity: 0.9; text-decoration: none; }
.header-right {
  display: flex;
  align-items: center;
  gap: 12px;
}

/* ── PARALLAX CTA SECTION ─────────────────────── */
.parallax-cta {
  position: relative;
  background-image: url('https://static.wixstatic.com/media/11062b_b2a140dc68e9423baddd1af429e4f311~mv2.jpg/v1/fill/w_787,h_512,al_c,q_85,usm_0.66_1.00_0.01,enc_avif,quality_auto/11062b_b2a140dc68e9423baddd1af429e4f311~mv2.jpg');
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  padding: 80px 0;
}
.parallax-cta::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.45);
}
.parallax-cta-inner {
  position: relative;
  z-index: 1;
  max-width: 560px;
}
.parallax-cta h2 {
  font-size: 32px;
  color: #fff;
  margin-bottom: 12px;
}
.parallax-cta p {
  color: rgba(255,255,255,0.9);
  margin-bottom: 24px;
  font-size: 15px;
}
.parallax-cta .btn-cta {
  display: inline-block;
  background: transparent;
  color: #fff;
  border: 2px solid #fff;
  padding: 12px 28px;
  font-family: 'Oswald', sans-serif;
  font-size: 14px;
  font-weight: 600;
  text-transform: uppercase;
  border-radius: 4px;
  text-decoration: none;
  margin-bottom: 30px;
  transition: background 0.15s, color 0.15s;
}
.parallax-cta .btn-cta:hover { background: #fff; color: #333; text-decoration: none; }
.parallax-cta-contact {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-top: 10px;
}
.parallax-cta-contact h4 {
  font-size: 13px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.7);
  margin-bottom: 4px;
}
.parallax-cta-contact p {
  font-size: 15px;
  color: #fff;
  font-weight: 600;
  margin: 0;
}

/* ── DARK BLUE FOOTER ─────────────────────────── */
.site-footer {
  background: #1e3777 !important;
  padding: 50px 0 0 !important;
}
.footer-inner {
  display: grid;
  grid-template-columns: 2fr 1.5fr 1fr;
  gap: 40px;
  padding-bottom: 30px;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}
.footer-brand img.footer-logo {
  max-width: 220px;
  height: auto;
  margin-bottom: 16px;
  filter: none !important;
  opacity: 1 !important;
}
.footer-brand p { color: rgba(255,255,255,0.7); }
.footer-col h4 {
  color: #fff;
  border-bottom: 1px solid rgba(255,255,255,0.15);
}
.footer-col ul li a { color: rgba(255,255,255,0.65); }
.footer-col ul li a:hover { color: #f5c400; }
.footer-bottom {
  padding: 20px 0;
  text-align: center;
  font-size: 12px;
  color: rgba(255,255,255,0.4);
  background: rgba(0,0,0,0.15);
  margin: 0 -20px;
  padding-left: 20px;
  padding-right: 20px;
}
.footer-bottom a { color: rgba(255,255,255,0.5); }
.footer-social a { color: rgba(255,255,255,0.7) !important; }
.footer-social a:hover { color: #f5c400 !important; }
