
/* ===============================
   UNIFIED PAGE HEADINGS (Premium)
================================= */

.page-title, h1 {
    font-family: 'Playfair Display', serif;
    font-size: 44px;
    font-weight: 600;
    letter-spacing: 0.5px;
    color: #1c1c1c;
    margin-bottom: 15px;
    text-align: center;
}

.page-subtitle {
    font-family: 'Roboto', sans-serif;
    font-size: 16px;
    color: #666;
    text-align: center;
    margin-bottom: 40px;
}



/* ===== Premium Typography ===== */
html, body {
    font-family: 'Roboto', sans-serif;
    font-weight: 400;
    letter-spacing: 0.2px;
}

h1, h2, h3, h4 {
    font-family: 'Playfair Display', serif;
    font-weight: 700;
    letter-spacing: 0.5px;
}

.hero h2 {
    font-size: clamp(32px, 4vw, 48px);
}

section h2 {
    font-size: clamp(26px, 3vw, 34px);
}



/* ===== Logo Styling ===== */
.site-logo {
    height: 55px;
    width: auto;
    display: block;
}

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
}


/* ===== Luxury Beige Background ===== */
body {
    background: linear-gradient(180deg, #f5efe6 0%, #ece2d3 100%);
    color: #1a1a1a;
}

/* Luxury container styling */
.container {
    backdrop-filter: blur(0px);
}

/* Slightly warmer card tone */
.services .container,
.pricing .container,
.areas .container,
.contact .container,
.quote-form .container,
.google-reviews .container {
    background: rgba(255, 255, 255, 0.92);
}

/* Luxury buttons */
.btn-primary {
    background: linear-gradient(135deg, #b08d57, #c6a969);
    box-shadow: 0 10px 25px rgba(176, 141, 87, 0.25);
}

.btn-primary:hover {
    filter: brightness(1.05);
}

.btn-secondary {
    border: 1px solid rgba(176, 141, 87, 0.4);
}


/* Reset and Base Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}



.container {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Top Banner */
.top-banner {
  background: #2c3e50;
  color: white;
  padding: 10px 0;
  font-size: 14px;
}

.top-banner a {
  color: white;
  text-decoration: none;
  margin-left: 5px;
}

.top-banner i {
  margin-right: 5px;
}

/* Navigation */
.navbar {
  background: white;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  padding: 15px 0;
  position: sticky;
  top: 0;
  z-index: 1000;
}

.navbar .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo h1 {
  color: #2c3e50;
  font-size: 24px;
}

.logo p {
  color: #7f8c8d;
  font-size: 14px;
}

.nav-links {
  display: flex;
  list-style: none;
}

.nav-links li {
  margin-left: 30px;
}

.nav-links a {
  text-decoration: none;
  color: #2c3e50;
  font-weight: 500;
  transition: color 0.3s;
}

.nav-links a:hover {
  color: #3498db;
}

.call-btn {
  background: #e74c3c;
  color: white;
  padding: 10px 20px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: bold;
  transition: background 0.3s;
}

.call-btn:hover {
  background: #c0392b;
}

/* Hero Section */
.hero {
  background: linear-gradient(rgba(44, 62, 80, 0.9), rgba(44, 62, 80, 0.9)),
    url("https://images.unsplash.com/photo-1623298317882-8e6a6c176821?ixlib=rb-4.0.3");
  background-size: cover;
  background-position: center;
  color: white;
  text-align: center;
  padding: 100px 0;
}

.hero h2 {
  font-size: 48px;
  margin-bottom: 20px;
}

.hero p {
  font-size: 20px;
  margin-bottom: 40px;
  opacity: 0.9;
}

.hero-buttons {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}

.btn-primary {
  background: #3498db;
  color: white;
  padding: 15px 30px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: bold;
  font-size: 18px;
  transition: background 0.3s;
}

.btn-primary:hover {
  background: #2980b9;
}

.btn-secondary {
  background: transparent;
  color: white;
  padding: 15px 30px;
  border: 2px solid white;
  border-radius: 5px;
  text-decoration: none;
  font-weight: bold;
  font-size: 18px;
  transition: all 0.3s;
}

.btn-secondary:hover {
  background: white;
  color: #2c3e50;
}

/* Pricing Section */
.pricing {
  padding: 80px 0;
  background: #f8f9fa;
}

.pricing h2 {
  text-align: center;
  margin-bottom: 50px;
  color: #2c3e50;
  font-size: 36px;
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
  margin-bottom: 30px;
}

.price-card {
  background: white;
  border-radius: 10px;
  padding: 30px;
  text-align: center;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s;
}

.price-card:hover {
  transform: translateY(-10px);
}

.price-card h3 {
  color: #2c3e50;
  margin-bottom: 10px;
}

.price-card p {
  color: #7f8c8d;
  margin-bottom: 20px;
}

.price-card .price {
  font-size: 36px;
  font-weight: bold;
  color: #e74c3c;
  margin-bottom: 20px;
}

.price-card ul {
  list-style: none;
  text-align: left;
}

.price-card ul li {
  padding: 5px 0;
  color: #555;
}

.price-card ul li:before {
  content: "✓ ";
  color: #27ae60;
  font-weight: bold;
}

.note {
  text-align: center;
  color: #7f8c8d;
  font-style: italic;
}

/* Services */
.services {
  padding: 80px 0;
}

.services h2 {
  text-align: center;
  margin-bottom: 50px;
  color: #2c3e50;
  font-size: 36px;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 30px;
}

.service-item {
  text-align: center;
  padding: 30px;
}

.service-item i {
  font-size: 48px;
  color: #3498db;
  margin-bottom: 20px;
}

.service-item h3 {
  color: #2c3e50;
  margin-bottom: 10px;
}

/* Areas */
.areas {
  padding: 80px 0;
  background: #f8f9fa;
}

.areas h2 {
  text-align: center;
  margin-bottom: 20px;
  color: #2c3e50;
  font-size: 36px;
}

.areas > p {
  text-align: center;
  margin-bottom: 40px;
  color: #7f8c8d;
}

.areas-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 20px;
  max-width: 800px;
  margin: 0 auto;
}

.area-item {
  background: white;
  padding: 20px;
  text-align: center;
  border-radius: 5px;
  font-weight: bold;
  color: #2c3e50;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
}

/* Long Distance CTA */
.long-distance {
  padding: 80px 0;
  text-align: center;
  background: linear-gradient(rgba(231, 76, 60, 0.9), rgba(231, 76, 60, 0.9));
  color: white;
}

.long-distance h2 {
  font-size: 36px;
  margin-bottom: 20px;
}

.long-distance p {
  font-size: 20px;
  margin-bottom: 30px;
  opacity: 0.9;
}

.btn-large {
  background: white;
  color: #e74c3c;
  padding: 20px 40px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: bold;
  font-size: 20px;
  display: inline-block;
  transition: transform 0.3s;
}

.btn-large:hover {
  transform: scale(1.05);
}

/* Quote Form */
.quote-form {
  padding: 80px 0;
  background: #f8f9fa;
}

.quote-form h2 {
  text-align: center;
  margin-bottom: 50px;
  color: #2c3e50;
  font-size: 36px;
}

#quoteForm {
  max-width: 600px;
  margin: 0 auto;
  background: white;
  padding: 40px;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.form-group {
  margin-bottom: 20px;
}

.form-group select,
.form-group input,
.form-group textarea {
  width: 100%;
  padding: 15px;
  border: 1px solid #ddd;
  border-radius: 5px;
  font-size: 16px;
  font-family: inherit;
}

.form-group textarea {
  resize: vertical;
}

/* Contact */
.contact {
  padding: 80px 0;
}

.contact h2 {
  text-align: center;
  margin-bottom: 50px;
  color: #2c3e50;
  font-size: 36px;
}

.contact-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
  max-width: 800px;
  margin: 0 auto;
}

.contact-item {
  text-align: center;
  padding: 30px;
  background: white;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.contact-item i {
  font-size: 48px;
  color: #3498db;
  margin-bottom: 20px;
}

.contact-item h3 {
  color: #2c3e50;
  margin-bottom: 10px;
}

.contact-item a {
  color: #3498db;
  text-decoration: none;
}

/* Footer */
footer {
  background: #2c3e50;
  color: white;
  text-align: center;
  padding: 40px 0;
}

footer p {
  margin-bottom: 10px;
}

footer a {
  color: #3498db;
  text-decoration: none;
}

/* Sticky Call Button */
.sticky-call {
  position: fixed;
  bottom: 20px;
  right: 20px;
  background: #27ae60;
  color: white;
  padding: 15px 20px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: bold;
  display: none;
  z-index: 1000;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.sticky-call i {
  margin-right: 5px;
}

/* Responsive Design */
@media (max-width: 768px) {
  .nav-links {
    display: none;
  }

  .hero h2 {
    font-size: 32px;
  }

  .hero p {
    font-size: 18px;
  }

  .hero-buttons {
    flex-direction: column;
    align-items: center;
  }

  .sticky-call {
    display: flex;
    align-items: center;
  }
}

/* Active nav link */
.nav-links a.active { color: #3498db; }




/* ===== Premium UI Layer (Modern / Minimal) ===== */
:root{
  --bg: #0b1220;
  --surface: rgba(255,255,255,0.96);
  --surface-2: rgba(255,255,255,0.9);
  --text: #0b1220;
  --muted: #516173;
  --brand: #2563eb;
  --brand-2: #0ea5e9;
  --ring: rgba(37,99,235,0.25);
  --radius: 18px;
  --shadow: 0 10px 30px rgba(2,6,23,0.10);
  --shadow-2: 0 14px 44px rgba(2,6,23,0.14);
}

html{ scroll-behavior:smooth; }


/* Subtle photo background overlay (replace images/background.jpg with a real one) */
body::before{
  content:"";
  position: fixed;
  inset: 0;
  background-image: url("images/background.jpg");
  background-repeat: repeat;
  background-size: 520px;
  opacity: 0.06;
  pointer-events: none;
  z-index: -1;
}

.container{
  max-width: 1120px;
}

/* Top banner polish */
.top-banner{
  background: #0b1220;
  color: rgba(255,255,255,0.92);
}
.top-banner a{ color: rgba(255,255,255,0.95); text-decoration: none; border-bottom: 1px solid rgba(255,255,255,0.25); }
.top-banner a:hover{ border-bottom-color: rgba(255,255,255,0.55); }

/* Navbar */
.navbar{
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255,255,255,0.75);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(2,6,23,0.06);
}
.logo h1{ letter-spacing: -0.02em; }
.logo p{ color: var(--muted); }

.nav-links a{
  padding: 10px 12px;
  border-radius: 999px;
  transition: background 180ms ease, color 180ms ease, transform 180ms ease;
}
.nav-links a:hover{
  background: rgba(37,99,235,0.08);
  transform: translateY(-1px);
}
.nav-links a.active{
  background: rgba(37,99,235,0.12);
  color: var(--brand);
}

/* Buttons */
.btn-primary, .btn-secondary, .btn-large, .call-btn{
  border-radius: 999px;
  box-shadow: 0 10px 24px rgba(37,99,235,0.12);
}
.btn-primary{
  background: linear-gradient(135deg, var(--brand), var(--brand-2));
  border: none;
}
.btn-primary:hover{
  filter: brightness(1.03);
  transform: translateY(-1px);
}
.btn-secondary{
  background: rgba(2,6,23,0.05);
  color: var(--text);
  border: 1px solid rgba(2,6,23,0.08);
  box-shadow: none;
}
.btn-secondary:hover{
  background: rgba(2,6,23,0.07);
}

/* Hero */
.hero{
  padding: 90px 0 70px;
  background: transparent;
}
.hero .container{
  background: var(--surface);
  border: 1px solid rgba(2,6,23,0.06);
  border-radius: calc(var(--radius) + 8px);
  box-shadow: var(--shadow-2);
  padding: 56px 28px;
}
.hero h2{ font-size: clamp(28px, 3.2vw, 44px); letter-spacing: -0.03em; }
.hero p{ color: var(--muted); font-size: 1.05rem; }

/* Section surfaces */
.services, .pricing, .areas, .contact, .quote-form, .long-distance{
  background: transparent;
  padding: 70px 0;
}
.services .container, .pricing .container, .areas .container, .contact .container, .quote-form .container, .long-distance .container{
  background: var(--surface);
  border: 1px solid rgba(2,6,23,0.06);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 46px 24px;
}

/* Cards */
.service-item, .price-card, .contact-item, .area-item{
  border-radius: 16px;
  border: 1px solid rgba(2,6,23,0.06);
  box-shadow: none;
  transition: transform 160ms ease, box-shadow 160ms ease, border-color 160ms ease;
}
.service-item:hover, .price-card:hover, .contact-item:hover{
  transform: translateY(-4px);
  box-shadow: var(--shadow);
  border-color: rgba(37,99,235,0.22);
}
.service-item i, .contact-item i{
  color: var(--brand);
}

/* Forms */
form{
  background: rgba(2,6,23,0.02);
  border: 1px solid rgba(2,6,23,0.06);
  border-radius: 16px;
  padding: 18px;
}
.form-group input, .form-group select, .form-group textarea{
  border-radius: 14px;
  border: 1px solid rgba(2,6,23,0.10);
  outline: none;
  transition: box-shadow 150ms ease, border-color 150ms ease;
}
.form-group input:focus, .form-group select:focus, .form-group textarea:focus{
  border-color: rgba(37,99,235,0.5);
  box-shadow: 0 0 0 6px var(--ring);
}

/* Footer */
footer{
  background: #0b1220;
  color: rgba(255,255,255,0.86);
}
footer a{ color: rgba(255,255,255,0.92); }

/* Mobile sticky call button */
.sticky-call{
  border-radius: 999px;
  box-shadow: 0 12px 28px rgba(2,6,23,0.25);
}




/* ===== WhatsApp Floating Button (Pulse + Mobile Label) ===== */
.whatsapp-float {
    position: fixed;
    bottom: 90px;
    right: 20px;
    background-color: #25D366;
    color: #fff;
    height: 60px;
    width: 60px;
    border-radius: 999px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    font-size: 28px;
    box-shadow: 0 8px 20px rgba(0,0,0,0.25);
    z-index: 1000;
    text-decoration: none;
    overflow: visible;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

/* Pulse ring */
.whatsapp-float::after {
    content: "";
    position: absolute;
    inset: -8px;
    border-radius: 999px;
    border: 2px solid rgba(37, 211, 102, 0.55);
    animation: whatsappPulse 1.6s ease-out infinite;
}

@keyframes whatsappPulse {
    0%   { transform: scale(0.86); opacity: 0.85; }
    70%  { transform: scale(1.15); opacity: 0.15; }
    100% { transform: scale(1.2); opacity: 0; }
}

.whatsapp-float:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 28px rgba(0,0,0,0.35);
}

/* Label hidden by default */
.whatsapp-label {
    display: none;
    font-size: 14px;
    font-weight: 600;
    line-height: 1;
    white-space: nowrap;
    padding-right: 14px;
}

/* On mobile: turn into pill with label */
@media (max-width: 768px) {
    .whatsapp-float {
        width: auto;
        padding: 0 14px 0 16px;
    }
    .whatsapp-label {
        display: inline-block;
    }
}


/* ===== Home page spacing tweaks ===== */
body.home .hero { padding: 55px 0 35px; }
body.home .hero .container { padding: 42px 22px; }

body.home .services,
body.home .pricing,
body.home .areas,
body.home .contact,
body.home .quote-form,
body.home .long-distance { padding: 42px 0; }

body.home .services .container,
body.home .pricing .container,
body.home .areas .container,
body.home .contact .container,
body.home .quote-form .container,
body.home .long-distance .container { padding: 34px 20px; }

/* Reduce extra vertical gaps inside grids on home */
body.home .services-grid { gap: 18px; }
body.home h2 { margin-bottom: 18px; }


/* ===== Enhanced Hero Styling ===== */
.hero-sub {
    margin-top: 15px;
    font-size: 1.05rem;
    color: #516173;
}

.hero-points {
    list-style: none;
    padding: 0;
    margin: 25px 0 30px 0;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 12px;
    font-weight: 500;
    color: #0b1220;
}

.hero-points li {
    background: rgba(37,99,235,0.06);
    padding: 10px 14px;
    border-radius: 10px;
}


/* ===== Hero Image Layout ===== */
.hero .container {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    align-items: center;
    gap: 40px;
}

.hero-image img {
    width: 100%;
    border-radius: 20px;
    box-shadow: 0 15px 40px rgba(0,0,0,0.15);
}

/* ===== Home Gallery ===== */
.home-gallery {
    padding: 60px 0;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 30px;
}

.gallery-grid img {
    width: 100%;
    border-radius: 20px;
    box-shadow: 0 15px 40px rgba(0,0,0,0.12);
}

/* Mobile adjustments */
@media (max-width: 768px) {
    .hero .container {
        grid-template-columns: 1fr;
    }
}


/* ===== Option B: Full-width Hero Background ===== */
.hero-full{
  position: relative;
  padding: 0;
  min-height: 520px;
  display: flex;
  align-items: center;
  background-size: cover;
  background-position: center;
  border-radius: 0;
}
.hero-full .container{
  background: transparent;
  border: none;
  box-shadow: none;
  padding: 0 18px;
}
.hero-overlay{
  position:absolute;
  inset:0;
  background: linear-gradient(90deg, rgba(11,18,32,0.78), rgba(11,18,32,0.45), rgba(11,18,32,0.25));
}
.hero-content{
  position: relative;
  max-width: 1120px;
  width: 100%;
  color: rgba(255,255,255,0.96);
  padding: 80px 18px;
}
.hero-full h2{ color:#fff; text-shadow: 0 8px 24px rgba(0,0,0,0.35); }
.hero-full .hero-sub{ color: rgba(255,255,255,0.88); }
.hero-mini{ margin-top: 14px; color: rgba(255,255,255,0.78); }

.hero-badge{
  display:inline-flex;
  align-items:center;
  gap:10px;
  padding: 10px 14px;
  border-radius: 999px;
  background: rgba(255,255,255,0.14);
  border: 1px solid rgba(255,255,255,0.22);
  backdrop-filter: blur(6px);
  margin-bottom: 16px;
  font-weight: 700;
}
.hero-full .hero-points li{
  background: rgba(255,255,255,0.12);
  color: rgba(255,255,255,0.95);
  border: 1px solid rgba(255,255,255,0.14);
}

/* Buttons on dark hero */
.hero-full .btn-secondary{
  background: rgba(255,255,255,0.14);
  color: rgba(255,255,255,0.95);
  border: 1px solid rgba(255,255,255,0.22);
}
.hero-full .btn-secondary:hover{ background: rgba(255,255,255,0.18); }

/* ===== Premium Gallery Feature ===== */
.gallery-feature{
  display:grid;
  grid-template-columns: 1.35fr 0.85fr;
  gap: 26px;
  margin-top: 28px;
}
.gallery-main img, .gallery-side img{
  width:100%;
  border-radius: 20px;
  box-shadow: 0 16px 44px rgba(2,6,23,0.16);
}
.gallery-side{
  display:flex;
  flex-direction: column;
  gap: 16px;
}
.gallery-note{
  background: rgba(2,6,23,0.03);
  border: 1px solid rgba(2,6,23,0.06);
  border-radius: 16px;
  padding: 16px 16px;
}
.gallery-note h3{ margin: 0 0 6px; }
.gallery-note p{ margin: 0; color:#516173; }

@media (max-width: 900px){
  .hero-full{ min-height: 520px; }
  .gallery-feature{ grid-template-columns: 1fr; }
}

/* ===== Reveal on scroll animation ===== */
.reveal{
  opacity: 0;
  transform: translateY(14px);
  transition: opacity 650ms ease, transform 650ms ease;
}
.reveal.is-visible{
  opacity: 1;
  transform: translateY(0);
}


/* Hero background image (WebP with JPEG fallback) */
.hero-full{
  background-image: url('images/moving-boxes.jpg');
  background-image: image-set(
    url('images/moving-boxes.webp') type('image/webp'),
    url('images/moving-boxes.jpg') type('image/jpeg')
  );
}




/* ===== Google Reviews Section ===== */
.google-reviews {
  padding: 70px 0;
  background: radial-gradient(900px 500px at 20% 10%, #dfdad166, transparent 60%),
              radial-gradient(900px 500px at 80% 20%, #eaeae366, transparent 55%),
              linear-gradient(180deg, #eaeae355, rgba(255,255,255,0.0));
}

.google-reviews .container {
  background: rgba(255,255,255,0.78);
  border: 1px solid rgba(2,6,23,0.06);
  border-radius: 18px;
  box-shadow: 0 10px 30px rgba(2,6,23,0.08);
  padding: 46px 24px;
}

.reviews-header {
  text-align: center;
  margin-bottom: 34px;
}

.reviews-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 22px;
}

.review-card {
  background: rgba(255,255,255,0.92);
  border-radius: 16px;
  padding: 22px;
  border: 1px solid rgba(2,6,23,0.06);
  box-shadow: 0 10px 26px rgba(2,6,23,0.06);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.review-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 14px 34px rgba(2,6,23,0.10);
}

.stars {
  color: #f5b301;
  font-size: 18px;
  margin-bottom: 10px;
}

.reviews-cta {
  text-align: center;
  margin-top: 26px;
}

/* Live reviews embed container */
#googleReviewsEmbed {
  margin-top: 22px;
}




/* ===== Premium Partnership Footer ===== */
.footer-partner {
    text-align: center;
    margin-top: 35px;
    padding-top: 25px;
    border-top: 1px solid rgba(255,255,255,0.15);
}

.partner-label {
    font-size: 14px;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: rgba(255,255,255,0.7);
    margin-bottom: 12px;
}

.footer-logo {
    max-width: 160px;
    width: 100%;
    height: auto;
    opacity: 0.85;
    transition: opacity 0.3s ease, transform 0.3s ease;
}

.footer-logo:hover {
    opacity: 1;
    transform: scale(1.03);
}


/* ===== Comment Section ===== */
.comment-section{
  padding: 70px 0;
}
.comment-form{
  margin-top: 26px;
}
.comment-grid{
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}
@media (max-width: 768px){
  .comment-grid{ grid-template-columns: 1fr; }
}


/* ===== Ultra Luxury Enhancements ===== */

/* Gold underline for section headings */
section h2 {
    position: relative;
    display: inline-block;
    padding-bottom: 14px;
}

section h2::after {
    content: "";
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    bottom: 0;
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, #b08d57, #d4af37);
    border-radius: 2px;
}

/* Refined spacing */
section {
    padding-top: 80px;
    padding-bottom: 80px;
}

.hero-content {
    max-width: 900px;
}

/* Slightly softer paragraph tone */
p {
    line-height: 1.7;
}

/* Elegant divider line in footer */
footer {
    border-top: 1px solid rgba(212, 175, 55, 0.25);
}


/* ===== Pricing Page: Match Mockup ===== */
.pricing-page .pricing-head.compact{
  margin-bottom: 26px;
}
.pricing-page .pricing-subtitle{
  text-align:center;
  font-size: clamp(22px, 2.6vw, 34px);
  margin: 0;
}
.pricing-page .pricing-note{
  text-align:center;
  max-width: 920px;
  margin: 10px auto 0;
  color:#516173;
}
.pricing-grid{
  margin-top: 20px;
}
.price-card .card-top{
  font-weight: 700;
}
.price-card .card-ill{
  font-size: 44px;
}
.price-card .card-body{
  padding-top: 16px;
}
.price-card .card-list{
  margin-top: 16px;
}
.price-card .card-list li{
  display:flex;
  align-items:flex-start;
  gap: 10px;
}
.price-card .card-list li::before{
  content:"✓";
  color:#16a34a;
  font-weight: 900;
  margin-right: 0;
}
.small-disclaimer{
  margin-top: 14px;
  font-size: 12.5px;
  color:#6b7280;
  font-style: italic;
  text-align:center;
}
.pricing-tip{
  margin-top: 18px;
}


/* ===== Pricing Page (V3) — Full Match ===== */
.pricing-v3{
  padding: 48px 0 70px;
}
.pricing-v3__head{
  text-align:center;
  margin-bottom: 22px;
}
.pricing-v3__title{
  font-family: 'Playfair Display', serif;
  font-size: clamp(22px, 2.8vw, 34px);
  margin: 0;
  color:#0b1220;
}
.pricing-v3__title strong{ font-weight: 800; }
.pricing-v3__title span{
  font-weight: 500;
  opacity: .7;
}
.pricing-v3__note{
  margin: 10px auto 0;
  max-width: 900px;
  color:#516173;
  font-size: 13px;
}
.pricing-v3__grid{
  margin-top: 22px;
  display:grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}
.pricing-v3__card{
  background: rgba(255,255,255,0.92);
  border: 1px solid rgba(2,6,23,0.08);
  border-radius: 14px;
  box-shadow: 0 14px 34px rgba(2,6,23,0.10);
  overflow:hidden;
}
.pricing-v3__cap{
  background: rgba(176,141,87,0.18);
  padding: 12px 14px;
  text-align:center;
  font-weight: 700;
  font-size: 13px;
}
.pricing-v3__body{
  padding: 16px 18px 18px;
}
.pricing-v3__icon{
  text-align:center;
  font-size: 42px;
  line-height: 1;
  margin-top: 2px;
  margin-bottom: 8px;
}
.pricing-v3__meta{
  text-align:center;
  color:#6b7280;
  margin-top: 2px;
  margin-bottom: 6px;
  font-size: 13px;
}
.pricing-v3__price{
  text-align:center;
  margin-top: 6px;
  margin-bottom: 6px;
  line-height: 1.1;
}
.pricing-v3__from{
  font-weight: 700;
  color:#0b1220;
  margin-right: 6px;
}
.pricing-v3__amount{
  font-weight: 900;
  font-size: 34px;
  color:#d14b3a;
}
.pricing-v3__unit{
  font-size: 14px;
  color:#6b7280;
  margin-left: 2px;
  font-weight: 600;
}
.pricing-v3__sub{
  text-align:center;
  color:#6b7280;
  font-size: 12.5px;
  margin-bottom: 10px;
}
.pricing-v3__price--single .pricing-v3__amount{
  color:#d14b3a;
}
.pricing-v3__list{
  margin: 14px 0 0;
  padding: 0;
  list-style: none;
  display:flex;
  flex-direction: column;
  gap: 10px;
  color:#374151;
  font-size: 13px;
}
.pricing-v3__list li{
  display:flex;
  gap: 10px;
  align-items:flex-start;
}
.pricing-v3__list li::before{
  content:"✓";
  color:#16a34a;
  font-weight: 900;
  margin-top: 1px;
}
.pricing-v3__fineprint{
  margin: 12px 0 0;
  text-align:center;
  color:#6b7280;
  font-size: 11.5px;
  font-style: italic;
}
.pricing-v3__tip{
  text-align:center;
  margin-top: 18px;
  color:#6b7280;
  font-size: 12.5px;
  font-style: italic;
}

/* highlight first card slightly */
.pricing-v3__card--highlight{
  border-color: rgba(176,141,87,0.35);
  box-shadow: 0 18px 44px rgba(176,141,87,0.16);
}
.pricing-v3__card--highlight .pricing-v3__cap{
  background: linear-gradient(135deg, rgba(176,141,87,0.30), rgba(212,175,55,0.18));
}

/* Bottom row spacing feel */
@media (max-width: 980px){
  .pricing-v3__grid{ grid-template-columns: repeat(2, minmax(0,1fr)); }
}
@media (max-width: 620px){
  .pricing-v3{ padding-top: 30px; }
  .pricing-v3__grid{ grid-template-columns: 1fr; }
}


/* ===== Contact Page (Pro) ===== */
.contact-pro{ padding: 54px 0 90px; }
.contact-pro__head{ text-align:center; margin-bottom: 18px; }
.contact-pro__head h1{
  font-family: 'Playfair Display', serif;
  font-size: clamp(30px, 4vw, 54px);
  margin: 0 0 8px;
  color:#0b1220;
}
.contact-pro__head p{ margin:0; color:#516173; }

.contact-pro__quick{
  margin-top: 22px;
  display:grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}
.contact-pro__card{
  display:flex;
  gap: 14px;
  align-items:flex-start;
  text-decoration:none;
  color: inherit;
  background: rgba(255,255,255,0.92);
  border: 1px solid rgba(2,6,23,0.08);
  border-radius: 18px;
  padding: 16px;
  box-shadow: 0 14px 34px rgba(2,6,23,0.10);
  transition: transform .2s ease, box-shadow .2s ease;
}
.contact-pro__card:hover{ transform: translateY(-4px); box-shadow: 0 18px 44px rgba(176,141,87,0.16); }
.contact-pro__icon{
  width: 44px; height: 44px;
  border-radius: 12px;
  display:flex; align-items:center; justify-content:center;
  font-size: 22px;
  background: linear-gradient(135deg, rgba(176,141,87,0.22), rgba(212,175,55,0.18));
  border: 1px solid rgba(176,141,87,0.22);
  flex: 0 0 auto;
}
.contact-pro__label{ font-size: 12px; color:#6b7280; font-weight: 700; letter-spacing: .02em; }
.contact-pro__value{ font-weight: 800; color:#0b1220; margin-top: 2px; }
.contact-pro__hint{ font-size: 12.5px; color:#6b7280; margin-top: 4px; }

.contact-pro__grid{
  margin-top: 18px;
  display:grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 18px;
  align-items: start;
}
.contact-pro__formwrap{
  background: rgba(255,255,255,0.92);
  border: 1px solid rgba(2,6,23,0.08);
  border-radius: 22px;
  padding: 20px;
  box-shadow: 0 16px 40px rgba(2,6,23,0.10);
}
.contact-pro__muted{ color:#6b7280; }
.contact-pro__small{ font-size: 13px; }
.contact-pro__form .contact-pro__row{
  display:grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}
.contact-pro__field{ margin-top: 12px; }
.contact-pro__field label{
  display:block;
  font-size: 13px;
  color:#516173;
  margin-bottom: 6px;
}
.contact-pro__field input,
.contact-pro__field select,
.contact-pro__field textarea{
  width: 100%;
  border-radius: 14px;
  border: 1px solid rgba(2,6,23,0.10);
  padding: 12px 14px;
  background: rgba(255,255,255,0.98);
}
.contact-pro__btn{ width: 100%; margin-top: 14px; }
.contact-pro__fine{
  margin-top: 10px;
  font-size: 12.5px;
  color:#6b7280;
  text-align:center;
}
.contact-pro__success{
  display:none;
  margin-top: 12px;
  padding: 12px 14px;
  border-radius: 14px;
  background: rgba(22,163,74,0.10);
  border: 1px solid rgba(22,163,74,0.18);
  color: #166534;
  font-weight: 700;
}

.contact-pro__side .contact-pro__panel{
  background: rgba(255,255,255,0.92);
  border: 1px solid rgba(2,6,23,0.08);
  border-radius: 22px;
  padding: 18px;
  box-shadow: 0 14px 34px rgba(2,6,23,0.10);
  margin-bottom: 14px;
}
.contact-pro__ticks{
  list-style:none;
  padding:0;
  margin: 12px 0 0;
  display:flex;
  flex-direction:column;
  gap: 10px;
}
.contact-pro__ticks li{
  display:flex;
  gap: 10px;
  align-items:flex-start;
}
.contact-pro__ticks li::before{
  content:"✓";
  color:#16a34a;
  font-weight: 900;
  margin-top: 1px;
}
.contact-pro__hours{
  display:flex;
  flex-direction:column;
  gap: 10px;
  margin-top: 12px;
}
.contact-pro__hours div{
  display:flex;
  justify-content: space-between;
  border-bottom: 1px dashed rgba(2,6,23,0.10);
  padding-bottom: 10px;
}
.contact-pro__hours div:last-child{ border-bottom: 0; padding-bottom: 0; }

@media (max-width: 980px){
  .contact-pro__quick{ grid-template-columns: 1fr; }
  .contact-pro__grid{ grid-template-columns: 1fr; }
  .contact-pro__form .contact-pro__row{ grid-template-columns: 1fr; }
}


/* ===== Nationwide Section ===== */
.nationwide {
  padding: 80px 20px;
  text-align: center;
}

.nationwide h2 {
  font-size: 36px;
  margin-bottom: 15px;
}

.nationwide-sub {
  max-width: 800px;
  margin: 0 auto 30px;
  color: #555;
}

.nationwide-list {
  list-style: none;
  padding: 0;
  margin-bottom: 30px;
}

.nationwide-list li {
  margin: 8px 0;
  font-weight: 500;
}

.nationwide-btn {
  padding: 12px 30px;
  font-size: 16px;
}


/* ===== Nationwide Premium (Under Hero) ===== */
.nationwide-premium {
  padding: 70px 20px;
  text-align: center;
}

.nationwide-premium__badge {
  display: inline-block;
  background: linear-gradient(135deg, rgba(176,141,87,0.25), rgba(212,175,55,0.2));
  padding: 6px 16px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 14px;
  margin-bottom: 15px;
}

.nationwide-premium h2 {
  font-size: 32px;
  margin-bottom: 12px;
}

.nationwide-premium p {
  max-width: 750px;
  margin: 0 auto 25px;
  color: #555;
}

.nationwide-premium__features {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 15px;
  font-weight: 500;
}

.nationwide-premium__features span {
  background: rgba(255,255,255,0.9);
  padding: 8px 14px;
  border-radius: 30px;
  border: 1px solid rgba(0,0,0,0.05);
  box-shadow: 0 8px 20px rgba(0,0,0,0.05);
}


/* ===== ELITE BRAND FINISH ===== */

.hero-elite-sub{
  font-size: 18px;
  margin-top: 10px;
  color: #555;
  font-weight: 500;
}

.footer-elite{
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  padding-top: 20px;
}

.footer-elite-left{
  font-size: 14px;
}

.footer-elite-right{
  display: flex;
  align-items: center;
}

.footer-partnership{
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
  font-weight: 600;
}

.footer-partnership img{
  height: 40px;
  object-fit: contain;
}

@media (max-width: 768px){
  .footer-elite{
    flex-direction: column;
    gap: 15px;
    text-align: center;
  }
}


/* ===== Footer (Match Reference) ===== */
.footer-photo{
  background: #0b1324;
  color: rgba(255,255,255,0.88);
  padding: 44px 0 56px;
  border-top: 1px solid rgba(255,255,255,0.08);
}
.footer-photo__inner{
  text-align: center;
  max-width: 980px;
}
.footer-photo__line{
  margin: 10px 0;
  font-size: 15px;
  letter-spacing: 0.2px;
}
.footer-photo__copy{
  font-weight: 700;
  color: rgba(255,255,255,0.92);
}
.footer-photo a{
  color: rgba(255,255,255,0.92);
  text-decoration: none;
}
.footer-photo a:hover{
  text-decoration: underline;
}
.footer-photo__divider{
  height: 1px;
  background: rgba(255,255,255,0.14);
  margin: 24px auto 22px;
  max-width: 820px;
}
.footer-photo__partner-title{
  margin: 0 0 14px;
  font-size: 12px;
  letter-spacing: 0.18em;
  color: rgba(255,255,255,0.70);
}
.footer-photo__partner-logo{
  display: block;
  margin: 0 auto;
  width: min(230px, 70vw);
  height: auto;
  border-radius: 8px;
  box-shadow: 0 16px 36px rgba(0,0,0,0.35);
}



/* ================================
   PRICING PAGE MAIN HEADING FIX
================================ */

.pricing-main-title {
    font-family: 'Playfair Display', serif;
    font-size: 46px;
    font-weight: 600;
    letter-spacing: 0.5px;
    color: #1c1c1c;
    text-align: center;
    margin-bottom: 15px;
}

.pricing-main-title span {
    font-weight: 400;
    font-size: 38px;
    color: #555;
}


/* Services Intro Paragraph */
.services-intro {
    max-width: 900px;
    margin: 0 auto 50px auto;
    text-align: center;
}

.services-intro p {
    font-size: 17px;
    line-height: 1.8;
    color: #444;
}
