/* ----------------------------------------------------
   Google Font Imports (Merged)
---------------------------------------------------- */
@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700&family=Montserrat:wght@300;400;500;600;700&display=swap");

/* ----------------------------------------------------
   Universal Reset
---------------------------------------------------- */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* === Infinity View Window Washing Color Scheme === */

/* Primary Background (dark theme base) */
:root {
  --color-midnight-blue: #1F2937;
  /* Deep navy background */
  --color-sky-blue: #3B82F6;
  /* Accent: CTA buttons, links */
  --color-cloud-white: #F9FAFB;
  /* Main text on dark bg */
  --color-cool-gray: #9CA3AF;
  /* Secondary text, borders */
  --color-infinity-black: #111827;
  /* Deep accent, text on light bg */
}

/* ----------------------------------------------------
   Body (Merged Properties)
---------------------------------------------------- */
body {
  padding-top: 96px;
  /* matches resized header height */
  font-family: 'Inter', 'Montserrat', 'Poppins', -apple-system, BlinkMacSystemFont, sans-serif;
  font-size: 1.075rem;
  line-height: 1.75;
  color: #1f2933;
  background-color: #ffffff;
  overflow-x: hidden;
}

/* ----------------------------------------------------
   Header
---------------------------------------------------- */
header {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  background-color: rgba(255, 255, 255, 0.96);
  padding: 22px 48px;
  border-bottom: 1px solid rgba(15, 23, 42, 0.08);
  box-shadow: 0 12px 30px rgba(15, 23, 42, 0.08);
  position: fixed;
  top: 0;
  left: 0;
  z-index: 99;
  transition: transform 0.3s ease-in-out;
  transform: translateY(-100%);
  backdrop-filter: blur(8px);
}

header.show {
  transform: translateY(0);
}


/* Logo */
.header-logo img {
  height: 118px;
  cursor: pointer;
}

/* ----------------------------------------------------
   Navigation (Desktop)
---------------------------------------------------- */
.header-nav ul {
  list-style: none;
  display: flex;
  gap: 28px;
}

.header-nav a {
  text-decoration: none;
  color: #0f172a;
  font-weight: 600;
  font-size: 1.25rem;
  letter-spacing: 0.02em;
  position: relative;
}

@media (min-width: 769px) {
  .header-logo {
    margin-right: auto;
  }

  .header-nav {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    width: max-content;
    z-index: 2;
  }
}

/* Hover underline effect */
.header-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -2px;
  width: 0;
  height: 3px;
  background: var(--color-sky-blue);
  transition: width 0.3s ease;
}

.header-nav a:hover::after {
  width: 100%;
}

/* ----------------------------------------------------
   Hamburger Toggle (Mobile)
---------------------------------------------------- */
.menu-toggle-checkbox {
  display: none;
}

.hamburger-lines {
  display: none;
  height: 24px;
  width: 32px;
  position: relative;
  cursor: pointer;
}

.line {
  display: block;
  height: 4px;
  width: 100%;
  background: #333;
  margin: 4px 0;
  border-radius: 2px;
  transition: transform 0.4s ease-in-out;
}

.line1 {
  transform-origin: 0% 0%;
}

.line3 {
  transform-origin: 0% 100%;
}

/* ----------------------------------------------------
   Responsive Nav
---------------------------------------------------- */
@media (max-width: 768px) {
  header {
    padding: 18px 24px;
    justify-content: space-between;
  }

  .header-logo img {
    height: 96px;
  }

  .hamburger-lines {
    display: block;
  }

  .header-nav {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: #f8f8f8;
    border-top: 1px solid #ccc;
    flex-direction: column;
    overflow: hidden;
    max-height: 0;
    transition: max-height 0.4s ease-in-out;
    transform: none;
  }

  .header-nav ul {
    flex-direction: column;
    gap: 0;
  }

  .header-nav li {
    margin: 10px 0;
    text-align: center;
  }

  .header-nav a {
    font-size: 1.25rem;
    padding: 14px 0;
  }

  .menu-toggle-checkbox:checked~.hamburger-lines .line1 {
    transform: rotate(45deg);
  }

  .menu-toggle-checkbox:checked~.hamburger-lines .line2 {
    transform: scaleY(0);
  }

  .menu-toggle-checkbox:checked~.hamburger-lines .line3 {
    transform: rotate(-45deg);
  }

  .menu-toggle-checkbox:checked~.header-nav {
    max-height: 300px;
  }
}


/* ----------------------------------------------------
   Phone number (desktop only)
---------------------------------------------------- */
.header-phone {
  display: block;
  /* show by default (desktop) */
  font-weight: 700;
  margin-left: 20px;
  /* spacing from nav */
}

.header-phone a {
  color: #0f172a;
  text-decoration: none;
  font-size: 1.2rem;
  font-weight: 700;
}

.header-phone a:hover {
  text-decoration: underline;
}

/* hide on mobile */
@media (max-width: 768px) {
  .header-phone {
    display: none;
  }
}

/* ---------------------
   styles/hero.css
   --------------------- */

/* Base hero styles */
.hero-section {
  position: relative;
  width: 100%;
  height: 100vh;
  background-image: url('../images/window-clean.webp');
  background-size: cover;
  background-position: center;
  overflow: hidden;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.4);
}

.hero-content {
  position: relative;
  z-index: 10;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 0 1rem;
  color: #fff;
  max-width: 800px;
  margin: 0 auto;
  height: 100%;
}

.hero-logo {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 1.2rem 1.8rem;
  margin-bottom: 1.5rem;
  border-radius: 26px;
  background: linear-gradient(135deg,
      rgba(255, 255, 255, 0.32),
      rgba(59, 130, 246, 0.18));
  box-shadow: 0 24px 40px rgba(15, 23, 42, 0.46),
    0 10px 22px rgba(15, 23, 42, 0.28);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  isolation: isolate;
}

.hero-logo::before {
  content: "";
  position: absolute;
  inset: -18%;
  border-radius: inherit;
  background: radial-gradient(circle at 30% 15%,
      rgba(255, 255, 255, 0.55) 0%,
      rgba(59, 130, 246, 0.3) 35%,
      rgba(59, 130, 246, 0) 72%);
  filter: blur(18px);
  z-index: -2;
  opacity: 0.9;
}

.hero-logo::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  border: 1px solid rgba(255, 255, 255, 0.38);
  box-shadow: inset 0 1px 4px rgba(255, 255, 255, 0.35);
  opacity: 0.85;
  z-index: -1;
}

.hero-logo img {
  position: relative;
  max-width: 240px;
  width: 70vw;
  height: auto;
  filter: drop-shadow(0 18px 36px rgba(15, 23, 42, 0.45));
}

.hero-content h1 {
  font-size: 3rem;
  font-weight: 700;
  margin-bottom: 1rem;
}

.hero-content p {
  font-size: 1.125rem;
  line-height: 1.6;
}

/* Responsive tweaks */
@media (max-width: 768px) {
  .hero-section {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 80vh;
    background-position: center top;
  }

  .hero-content {
    padding: 2rem 1rem;
    max-width: 100%;
    height: auto;
  }

  .hero-logo {
    padding: 1rem 1.4rem;
    margin-bottom: 1.25rem;
  }

  .hero-logo img {
    max-width: 200px;
  }

  .hero-content h1 {
    font-size: 2.25rem;
    margin-bottom: 0.75rem;
  }

  .hero-content p {
    font-size: 1rem;
    line-height: 1.4;
  }
}

@media (max-width: 480px) {
  .hero-section {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 60vh;
  }

  .hero-content {
    padding: 1.5rem 0.75rem;
  }

  .hero-content h1 {
    font-size: 1.75rem;
  }

  .hero-content p {
    font-size: 0.9rem;
    line-height: 1.3;
  }
}



/* ----------------------------------------------------
   Services Section – Elevated Tiles
---------------------------------------------------- */
.service-section {
  position: relative;
  padding: 6rem 0 5.5rem;
  overflow: hidden;
  background: linear-gradient(180deg, #eef5ff 0%, #ffffff 40%, #e7f4ff 100%);
  width: 100%;
}

.service-section::before,
.service-section::after {
  content: '';
  position: absolute;
  width: 420px;
  height: 420px;
  border-radius: 50%;
  filter: blur(85px);
  opacity: 0.15;
  z-index: 1;
}

.service-section::before {
  top: -220px;
  right: -180px;
  background: rgba(59, 130, 246, 0.28);
}

.service-section::after {
  bottom: -200px;
  left: -140px;
  background: rgba(6, 182, 212, 0.22);
}

.service-section .container {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: none;
  margin: 0;
  padding: 0;
}

.service-text {
  text-align: center;
  max-width: 760px;
  margin: 0 auto;
  padding: 0 clamp(1.5rem, 6vw, 3rem);
}

.service-text h2 {
  margin-bottom: 1rem;
}

.service-text p {
  margin: 0 auto;
  max-width: 640px;
  line-height: 1.7;
}


/* Customer Reviews – full-width background */
.reviews-section {
  background-color: var(--color-cloud-white);
  width: 100vw;
  margin: 0 calc(50% - 50vw);
  padding: 60px 20px;
  text-align: center;
}



.reviews-section h2 {
  font-size: 2.5rem;
  color: var(--color-sky-blue);
  margin-bottom: 1rem;
}

.review {
  display: inline-block;
  max-width: 700px;
  background-color: #fff;
  border-left: 5px solid var(--color-sky-blue);
  padding: 20px 30px;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
  font-style: italic;
  color: #111827;
}

.review footer {
  margin-top: 0.5rem;
  text-align: right;
  font-weight: 600;
  color: var(--color-infinity-black);
}



/* Container centering + max width */
.our-work-section .container {
  width: 100%;
  max-width: none;
  margin: 0;
  padding: 0;
}

/* Section wrapper */
.our-work-section {
  background-color: var(--color-cloud-white);
  width: 100vw;
  margin: 0 calc(50% - 50vw);
  padding: 60px 20px;
  text-align: center;
}

/* Section title */
.our-work-section h2 {
  font-size: 2.75rem;
  color: var(--color-sky-blue);
  margin-bottom: 0.5rem;
  font-weight: 700;
  text-transform: uppercase;
}

/* Subtitle */
.subtitle {
  font-size: 1.25rem;
  color: var(--color-infinity-black);
  margin-bottom: 3rem;
  font-weight: 500;
  letter-spacing: 0.05em;
}

/* Grid of work items */
.work-gallery {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 32px;
  padding: 0 clamp(1.5rem, 6vw, 5rem);
  margin-top: 3.5rem;
}

/* Each item */
.work-item {
  background: #fff;
  padding: 24px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.work-item:hover {
  transform: translateY(-4px);
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.1);
}

/* Item heading */
.work-item h3 {
  font-size: 1.5rem;
  color: var(--color-infinity-black);
  margin-bottom: 1.5rem;
  font-weight: 600;
  letter-spacing: 0.02em;
}

/* Image grid inside each item */
.images {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}

/* Figure reset + fixed aspect ratio box */
.images figure {
  position: relative;
  width: 100%;
  padding-top: 120%;
  /* 16:9 ratio */
  margin: 0;
  overflow: hidden;
  background: #f5f5f5;
}

/* Image fill + object-fit to avoid stretch */
.images img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 0;
  /* sharp corners */
  box-shadow: none;
  transition: transform 0.3s ease;
}

/* Subtle zoom on hover */
.images img:hover {
  transform: scale(1.05);
}

/* Caption (if you add captions later) */
.images figcaption {
  margin-top: 0.5rem;
  font-weight: 600;
  color: var(--color-infinity-black);
  font-size: 0.9rem;
  text-align: left;
}


/* ----------------------------------------------------
   Buttons (Mind-Blowing)
---------------------------------------------------- */
a.mind-blowing-button,
a.mind-blowing-button:link,
a.mind-blowing-button:visited,
a.mind-blowing-button:hover,
a.mind-blowing-button:active {
  color: var(--color-cloud-white) !important;
  text-decoration: none !important;
}

.mind-blowing-button {
  width: 220px;
  height: 60px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  font-weight: bold;
  /* Primary accent: Sky Blue */
  background: var(--color-sky-blue);
  border: none;
  border-radius: 8px;
  /* Neon glow uses RGBA of sky-blue (59,130,246) */
  box-shadow: 0 0 10px rgba(59, 130, 246, 0.5),
    0 0 20px rgba(59, 130, 246, 0.3);
  cursor: pointer;
  position: relative;
  overflow: hidden;
  transition: transform 0.2s ease;
}

/* Slower shimmer animation */
.mind-blowing-button::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.15) 0%, transparent 70%);
  transform: rotate(45deg);
  animation: shimmer 6s infinite;
}

@keyframes shimmer {
  0% {
    transform: translate(-50%, -50%) rotate(45deg);
  }

  50% {
    transform: translate(50%, 50%) rotate(45deg);
  }

  100% {
    transform: translate(-50%, -50%) rotate(45deg);
  }
}

/* Neon glow on hover, darker sky-blue hover BG */
.mind-blowing-button::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: 8px;
  box-shadow: 0 0 10px rgba(59, 130, 246, 0.6),
    0 0 20px rgba(59, 130, 246, 0.4),
    0 0 30px rgba(59, 130, 246, 0.2);
  opacity: 0;
  transition: opacity 0.3s ease;
  z-index: -1;
}

.mind-blowing-button:hover::after {
  opacity: 1;
}

/* Hover background uses a darker shade of sky-blue and slight scale */
.mind-blowing-button:hover {
  background: #2563EB;
  /* blue-600 */
  transform: scale(1.05);
}


/* ----------------------------------------------------
   Footer Section
---------------------------------------------------- */
.footer-section {
  width: 100vw;
  margin: 0 calc(50% - 50vw);
  background-color: var(--color-midnight-blue);
  padding: 40px 20px;
  color: var(--color-cloud-white);
  text-align: center;
}

.footer-container {
  display: flex;
  flex-direction: column;
  gap: 20px;
  max-width: 1200px;
  margin: 0 auto;
}

@media (min-width: 768px) {
  .footer-container {
    flex-direction: row;
    justify-content: center;
    /* Change from space-between to center */
    align-items: flex-start;
  }
}

.footer-contact {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.footer-contact h3,
.footer-contact p,
.footer-contact a {
  color: #ffffff;
}

.footer-contact a {
  text-decoration: none;
  transition: color 0.3s ease;
  align-self: center;
  text-align: center;
}

.footer-contact a:hover {
  color: #93c5fd;
}

.footer-contact h3 {
  margin-bottom: 0.75rem;
  font-size: 1.45rem;
}

.footer-contact p {
  margin: 0.35rem 0;
  font-size: 1.05rem;
}

.footer-nav ul {
  list-style: none;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin: 0;
}

@media (min-width: 768px) {
  .footer-nav ul {
    flex-direction: row;
    gap: 20px;
  }
}

.footer-nav a {
  color: var(--color-cloud-white);
  text-decoration: none;
  font-weight: 500;
}

.footer-nav a:hover {
  color: var(--color-sky-blue);
  text-decoration: underline;
}

.footer-divider {
  border: 0;
  height: 1px;
  background-color: var(--color-cool-gray);
  margin: 20px auto;
  width: 90%;
}

/* make both links match the footer-copy text style */
.footer-copy .footer-link {
  color: #ffffff;
  font-size: 1rem;
}

/* add a little horizontal breathing room before the second link */
.footer-copy .footer-link + .footer-link {
  margin-left: 0.25rem;
}


.footer-copy {
  margin-top: 24px;
  font-size: 1.05rem;
  color: #ffffff;
}


.footer-link {
  color: var(--color-cloud-white);
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-link:hover {
  color: var(--color-sky-blue);
  text-decoration: underline;
}


/* ---------------------------------
   Contact Page Styles
---------------------------------- */

.contact-section {
  padding: 60px 20px;
  background-color: #fff;
}

.contact-section h1 {
  margin-bottom: 2rem;
  font-size: 2.5rem;
  color: var(--color-infinity-black);
  text-align: center;
}

.contact-form-wrapper {
  max-width: 550px;
  margin: 0 auto;
  background-color: var(--color-cloud-white);
  padding: 30px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
  border-radius: 8px;
}

.form-group {
  margin-bottom: 1.5rem;
}

.form-row {
  display: flex;
  gap: 20px;
}

.form-row .form-group {
  flex: 1;
}

.form-label {
  display: block;
  margin-bottom: 0.5rem;
  color: #0f172a;
  font-weight: 600;
  font-size: 1.05rem;
}

.form-input,
.form-textarea {
  width: 100%;
  padding: 12px 16px;
  border: 1px solid var(--color-cool-gray);
  border-radius: 5px;
  font-size: 1.05rem;
  color: #0f172a;
  background-color: var(--color-cloud-white);
  outline: none;
}

.form-input::placeholder,
.form-textarea::placeholder {
  color: #64748b;
}

.form-input:focus,
.form-textarea:focus {
  border-color: var(--color-sky-blue);
  box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.2);
}

.submit-btn {
  width: 100%;
  padding: 14px;
  background-color: var(--color-sky-blue);
  color: var(--color-cloud-white);
  border: none;
  border-radius: 5px;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.submit-btn:hover {
  background-color: #2563EB;
  /* darker sky-blue */
}

@media (max-width: 600px) {
  .form-row {
    flex-direction: column;
  }
}


/* ----------------------------------------------------
   Privacy Policy
---------------------------------------------------- */

/* ----------------------------------------------------
   Terms & Conditions Overrides
---------------------------------------------------- */

.terms-container {
  /* match site padding for sections */
  padding: 80px 20px;
  max-width: 800px;
  margin: 0 auto;
  text-align: left;
  /* paragraphs left-aligned */
  color: var(--color-infinity-black);
  /* dark text on white bg */
  font-family: 'Montserrat', 'Poppins';
  /* brand fonts */
  line-height: 1.8;
}

.terms-title {
  font-size: 2.75rem;
  /* same scale as .our-work-section h2 */
  color: var(--color-sky-blue);
  /* accent heading color */
  text-align: center;
  margin-bottom: 1.5rem;
}

.terms-section-title {
  font-size: 1.5rem;
  color: var(--color-infinity-black);
  margin-top: 2.5rem;
  margin-bottom: 0.75rem;
  font-weight: 600;
}

/* body text paragraphs */
.terms-text {
  margin-bottom: 1.25rem;
}

/* Remove native bullets and use pseudo-elements for colored dots */
.terms-list {
  list-style: none;
  margin-left: 1.5rem;
  margin-bottom: 1.5rem;
  counter-reset: list-counter;
  /* for ordered lists */
}

.terms-list-item {
  position: relative;
  padding-left: 1.5em;
  margin-bottom: 0.75em;
}

.terms-list-item::before {
  content: "•";
  /* bullet */
  position: absolute;
  left: 0;
  top: 0;
  font-size: 1.2em;
  line-height: 1;
  color: var(--color-sky-blue);
}

/* ordered lists */
.terms-list.ordered {
  counter-reset: list-counter;
}

.terms-list.ordered .terms-list-item {
  counter-increment: list-counter;
}

.terms-list.ordered .terms-list-item::before {
  content: counter(list-counter) ".";
  font-weight: 600;
}

/* links in the terms copy */
.terms-link {
  color: var(--color-sky-blue);
  text-decoration: underline;
}

.terms-link:hover {
  color: var(--color-midnight-blue);
  text-decoration: none;
}

/* ----------------------------------------------------
   About Us Page Styles
---------------------------------------------------- */

/* Hero Banner (edge-to-edge photo) */
.about-hero {
  width: 100vw;
  margin: 0 calc(50% - 50vw);
  background-image: url('../images/window-washing.webp');
  background-size: cover;
  background-position: center;
  color: #fff;
  text-align: center;
  padding: 80px 1rem;
}

.about-hero .about-title {
  font-size: 3rem;
  text-transform: uppercase;
  margin-bottom: 1rem;
}

.about-hero .about-subtitle {
  font-size: 1.125rem;
  opacity: 0.9;
}

/* Mission section */
.about-mission {
  width: 100vw;
  margin: 0 calc(50% - 50vw);
  max-width: 100vw;
  padding: 48px 1rem;
  text-align: center;
  background: #f9f9f9;
  box-sizing: border-box;
}

.mission-title {
  font-size: 2rem;
  color: #3B82F6;
  margin-bottom: 1rem;
}

.mission-copy {
  font-size: 1rem;
  color: #222222;
  max-width: 800px;
  margin: 0 auto;
}

/* Team section */
.about-team {
  width: 100vw;
  margin: 0 calc(50% - 50vw);
  background: #f9f9f9;
  padding: 48px 1rem;
  box-sizing: border-box;
}

.team-content {
  max-width: 1200px;
  margin: 0 auto;
}

.team-title {
  text-align: center;
  font-size: 2rem;
  color: #3B82F6;
  margin-bottom: 24px;
}

.team-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 2rem;
}

/* Team member card with proper image display */
.member-panel {
  max-width: 600px;
  width: 100%;
  margin: 0 auto;
  border-radius: 12px;
  box-shadow: 0 8px 25px rgba(0,0,0,0.15);
  overflow: hidden;
  background: #fff;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.member-panel:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 35px rgba(0,0,0,0.2);
}

/* Image container with proper aspect ratio - made longer */
.member-image {
  width: 100%;
  height: 500px;
  overflow: hidden;
  position: relative;
}

.member-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  transition: transform 0.3s ease;
}

.member-panel:hover .member-image img {
  transform: scale(1.05);
}

/* Content area with better spacing - centered text */
.member-info {
  padding: 2rem;
  text-align: center;
  background: #fff;
}

.member-name {
  margin: 0 0 0.5rem;
  font-size: 1.75rem;
  font-weight: 600;
  color: #222222;
}

.member-role {
  margin: 0 0 1rem;
  font-size: 1.1rem;
  font-style: italic;
  color: #3B82F6;
  font-weight: 500;
}

.member-bio {
  margin: 0;
  font-size: 1rem;
  line-height: 1.6;
  color: #555555;
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .member-panel {
    margin: 0 1rem;
  }
  
  .member-image {
    height: 450px;
  }
  
  .member-info {
    padding: 1.5rem;
  }
  
  .member-name {
    font-size: 1.5rem;
  }
}

/* =====================================================================
   MODERN FEATURES & ANIMATIONS
   Spectacular website transformation with cutting-edge design
===================================================================== */

/* Updated Color Scheme with Florida Vibes */
:root {
  --color-midnight-blue: #1F2937;
  --color-sky-blue: #3B82F6;
  --color-turquoise: #06B6D4;
  --color-emerald: #10B981;
  --color-cloud-white: #F9FAFB;
  --color-cool-gray: #9CA3AF;
  --color-infinity-black: #111827;

  /* Gradients */
  --gradient-primary: linear-gradient(135deg, var(--color-sky-blue) 0%, var(--color-turquoise) 100%);
  --gradient-secondary: linear-gradient(135deg, var(--color-turquoise) 0%, var(--color-emerald) 100%);
  --gradient-hero: linear-gradient(135deg, rgba(59, 130, 246, 0.8) 0%, rgba(6, 182, 212, 0.8) 100%);

  /* Shadows */
  --shadow-soft: 0 4px 20px rgba(0, 0, 0, 0.08);
  --shadow-medium: 0 8px 30px rgba(0, 0, 0, 0.12);
  --shadow-strong: 0 20px 40px rgba(0, 0, 0, 0.15);
  --shadow-glow: 0 0 30px rgba(59, 130, 246, 0.3);
}

/* Modern Typography */
body {
  font-family: 'Inter', 'Montserrat', 'Poppins', -apple-system, BlinkMacSystemFont, sans-serif;
  font-optical-sizing: auto;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.section-title {
  font-size: clamp(2.85rem, 4.6vw, 3.85rem);
  font-weight: 700;
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-align: center;
  margin-bottom: 1rem;
  line-height: 1.15;
}

.section-subtitle {
  font-size: clamp(1.25rem, 2.4vw, 1.55rem);
  color: #27364a;
  text-align: center;
  max-width: 600px;
  margin: 0 auto 3rem;
  line-height: 1.75;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1rem;
}

/* Modern Hero Section */
.hero-section {
  position: relative;
  height: 100vh;
  min-height: 600px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-slider {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}

.slide-bg {
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  animation: kenBurns 8s ease-out infinite alternate;
}

@keyframes kenBurns {
  0% { transform: scale(1); }
  100% { transform: scale(1.1); }
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--gradient-hero);
  z-index: 2;
}

.hero-content {
  position: relative;
  z-index: 10;
  text-align: center;
  color: white;
  max-width: 900px;
  padding: 2rem;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  padding: 0.5rem 1rem;
  border-radius: 50px;
  font-weight: 500;
  margin-bottom: 1.5rem;
  animation: float 3s ease-in-out infinite;
}

@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}

.hero-title {
  font-size: clamp(3.25rem, 6vw, 4.5rem);
  font-weight: 800;
  line-height: 1.1;
  margin-bottom: 1.5rem;
  text-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.gradient-text {
  background: linear-gradient(135deg, #FFD700 0%, #FFA500 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.typing-text {
  position: relative;
  animation: typing 4s steps(30) infinite;
}

.hero-subtitle {
  font-size: clamp(1.35rem, 2.6vw, 1.65rem);
  color: rgba(255, 255, 255, 0.96);
  margin-bottom: 2.35rem;
  max-width: 640px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.9;
}

.hero-stats {
  display: flex;
  justify-content: center;
  gap: 2rem;
  margin: 2rem 0;
}

.stat {
  text-align: center;
}

.stat-number {
  display: block;
  font-size: 2.5rem;
  font-weight: 800;
  color: #FFD700;
  text-shadow: 0 2px 10px rgba(255, 215, 0, 0.3);
}

.stat-label {
  font-size: 1.05rem;
  opacity: 0.98;
  margin-top: 0.35rem;
}

.hero-cta {
  display: flex;
  gap: 1rem;
  justify-content: center;
  margin: 2rem 0;
  flex-wrap: wrap;
}

.trust-indicators {
  display: flex;
  justify-content: center;
  gap: 2rem;
  margin-top: 2rem;
  flex-wrap: wrap;
}

.trust-badge {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  padding: 0.5rem 1rem;
  border-radius: 25px;
  font-size: 1.05rem;
  transition: all 0.3s ease;
}

.trust-badge:hover {
  background: rgba(255, 255, 255, 0.2);
  transform: translateY(-2px);
}

.hero-particles {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 3;
  pointer-events: none;
}

.particle {
  position: absolute;
  width: 4px;
  height: 4px;
  background: rgba(255, 255, 255, 0.6);
  border-radius: 50%;
  animation: floatParticles 6s linear infinite;
}

.particle:nth-child(1) { left: 10%; animation-delay: 0s; }
.particle:nth-child(2) { left: 30%; animation-delay: 1s; }
.particle:nth-child(3) { left: 50%; animation-delay: 2s; }
.particle:nth-child(4) { left: 70%; animation-delay: 3s; }
.particle:nth-child(5) { left: 90%; animation-delay: 4s; }

@keyframes floatParticles {
  0% {
    transform: translateY(100vh) rotate(0deg);
    opacity: 0;
  }
  10% { opacity: 1; }
  90% { opacity: 1; }
  100% {
    transform: translateY(-20px) rotate(360deg);
    opacity: 0;
  }
}

/* Improved Text Readability */
body {
  color: #1f2933;
  background-color: #ffffff;
}

h1, h2, h3, h4, h5, h6 {
  color: var(--color-infinity-black);
  line-height: 1.3;
  letter-spacing: -0.01em;
}

p, li {
  color: #334155;
  font-size: 1.05rem;
  line-height: 1.8;
}

/* Better contrast for links */
a {
  color: #0f4fb8;
}

a:hover {
  color: #0b9acb;
}

/* Quote Request Section */
.quote-section {
  padding: 6rem 0;
  background: linear-gradient(135deg, rgba(6, 182, 212, 0.1) 0%, rgba(248, 250, 252, 1) 50%, rgba(16, 185, 129, 0.08) 100%);
  position: relative;
  overflow: hidden;
}

.quote-section::before,
.quote-section::after {
  content: '';
  position: absolute;
  border-radius: 999px;
  filter: blur(60px);
  opacity: 0.35;
}

.quote-section::before {
  width: 420px;
  height: 420px;
  top: -120px;
  left: -180px;
  background: var(--gradient-primary);
}

.quote-section::after {
  width: 360px;
  height: 360px;
  right: -160px;
  bottom: -120px;
  background: var(--gradient-secondary);
}

.quote-section .container {
  text-align: left;
}

.quote-wrapper {
  position: relative;
  z-index: 5;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 0.95fr);
  gap: 3rem;
  align-items: stretch;
}

.quote-info {
  background: rgba(17, 24, 39, 0.85);
  color: white;
  padding: 3.5rem;
  border-radius: 32px;
  box-shadow: 0 40px 80px rgba(17, 24, 39, 0.35);
  position: relative;
  overflow: hidden;
  text-align: left;
}

.quote-info::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at top right, rgba(59, 130, 246, 0.35), transparent 55%);
  pointer-events: none;
}

.quote-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.35rem 0.85rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.12);
  color: rgba(255, 255, 255, 0.85);
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.quote-eyebrow::before {
  content: '';
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #fbbf24;
  box-shadow: 0 0 12px rgba(251, 191, 36, 0.45);
}

.quote-heading {
  font-size: 2.75rem;
  font-weight: 700;
  margin: 1.5rem 0 1rem;
  line-height: 1.2;
  color: white;
}

.quote-subheading {
  color: rgba(255, 255, 255, 0.82);
  font-size: 1.05rem;
  line-height: 1.7;
  margin-bottom: 2rem;
}

.quote-highlights {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.quote-highlights li {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  font-size: 1.08rem;
  color: rgba(255, 255, 255, 0.95);
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 18px;
  padding: 1.15rem 1.4rem;
}

.quote-highlights i {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border-radius: 14px;
  background: linear-gradient(135deg, rgba(59, 130, 246, 0.35), rgba(6, 182, 212, 0.35));
  color: white;
  font-size: 1.2rem;
  margin-top: -0.05rem;
}

.quote-meta {
  margin-top: 2.5rem;
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
}

.meta-item {
  display: flex;
  gap: 0.85rem;
  align-items: center;
}

.meta-item i {
  width: 40px;
  height: 40px;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.18);
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 1.1rem;
}

.meta-label {
  display: block;
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: rgba(255, 255, 255, 0.6);
}

.quote-meta a {
  color: white;
  font-weight: 600;
  text-decoration: none;
}

.quote-meta span {
  color: rgba(255, 255, 255, 0.85);
  font-weight: 600;
}

.quote-meta a:hover {
  color: #fbbf24;
}

.quote-form-card {
  background: rgba(255, 255, 255, 0.96);
  padding: 3.25rem;
  border-radius: 32px;
  box-shadow: 0 35px 70px rgba(15, 118, 110, 0.18);
  position: relative;
  overflow: hidden;
  text-align: left;
}

.quote-form-card::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at top left, rgba(59, 130, 246, 0.12), transparent 60%);
  pointer-events: none;
}

.quote-form {
  background: transparent;
  padding: 0;
  border-radius: 0;
  box-shadow: none;
  max-width: none;
  margin: 0;
}

.quote-form .form-group {
  margin-bottom: 2rem;
}

.quote-form label {
  display: block;
  font-weight: 600;
  color: var(--color-infinity-black);
  margin-bottom: 0.5rem;
  font-size: 1rem;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  margin-bottom: 2rem;
}

.quote-form input,
.quote-form select,
.quote-form textarea,
.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  padding: 1rem;
  border: 2px solid #e5e7eb;
  border-radius: 10px;
  font-size: 1rem;
  color: var(--color-infinity-black);
  background-color: white;
  outline: none;
  transition: all 0.3s ease;
}

.quote-form input:focus,
.quote-form select:focus,
.quote-form textarea:focus,
.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  border-color: var(--color-sky-blue);
  box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.1);
}

.submit-group {
  text-align: center;
}

.submit-button {
  background: var(--gradient-primary);
  color: white;
  padding: 1.25rem 3rem;
  border: none;
  border-radius: 50px;
  font-size: 1.1rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  box-shadow: var(--shadow-glow);
}

.submit-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(59, 130, 246, 0.3);
}

.form-note {
  margin-top: 1rem;
  font-size: 0.9rem;
  color: var(--color-cool-gray);
}

.radio-group, .checkbox-group {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  align-items: flex-start;
}

.radio-option, .checkbox-option {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0;
  border: none;
  border-radius: 0;
  cursor: pointer;
  transition: color 0.3s ease, transform 0.3s ease;
  background: transparent;
  color: var(--color-infinity-black);
  font-weight: 500;
}

.radio-option i,
.checkbox-option i {
  color: var(--color-sky-blue);
  font-size: 1rem;
}

.radio-option:hover, .checkbox-option:hover {
  color: var(--color-sky-blue);
  transform: translateY(-2px);
}

.radio-custom, .checkbox-custom {
  width: 20px;
  height: 20px;
  border: 2px solid #d1d5db;
  border-radius: 50%;
  position: relative;
  transition: all 0.3s ease;
}

.checkbox-custom {
  border-radius: 4px;
}

input[type="radio"]:checked + .radio-custom,
input[type="checkbox"]:checked + .checkbox-custom {
  border-color: var(--color-sky-blue);
  background: var(--color-sky-blue);
}

input[type="radio"]:checked + .radio-custom::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: white;
}

input[type="checkbox"]:checked + .checkbox-custom::after {
  content: '✓';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: white;
  font-weight: bold;
  font-size: 12px;
}

.slider-container {
  position: relative;
  margin: 1rem 0;
}

.slider {
  width: 100%;
  height: 8px;
  border-radius: 4px;
  background: #e5e7eb;
  outline: none;
  appearance: none;
}

.slider::-webkit-slider-thumb {
  appearance: none;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: var(--color-sky-blue);
  cursor: pointer;
  box-shadow: 0 2px 10px rgba(59, 130, 246, 0.3);
  transition: all 0.3s ease;
}

.slider::-webkit-slider-thumb:hover {
  transform: scale(1.2);
  box-shadow: 0 4px 20px rgba(59, 130, 246, 0.4);
}

.slider-value {
  position: absolute;
  right: 0;
  top: -10px;
  background: var(--color-sky-blue);
  color: white;
  padding: 0.25rem 0.75rem;
  border-radius: 20px;
  font-weight: 600;
  font-size: 0.9rem;
}

.quote-result {
  display: flex;
  flex-direction: column;
  justify-content: center;
  text-align: center;
}

.price-display {
  background: var(--gradient-primary);
  color: white;
  padding: 2rem;
  border-radius: 15px;
  margin-bottom: 2rem;
}

.price-label {
  font-size: 1.1rem;
  opacity: 0.9;
  margin-bottom: 0.5rem;
}

.price-amount {
  font-size: 3rem;
  font-weight: 800;
  margin-bottom: 0.5rem;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.price-note {
  font-size: 0.85rem;
  opacity: 0.8;
}

.quote-actions {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

/* Modern Service Grid */
.service-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2.75rem;
  margin: 3.75rem 0;
  padding: 0 clamp(1.5rem, 6vw, 4rem);
  width: 100%;
  align-items: stretch;
}

.service-card {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.98) 0%, rgba(245, 249, 255, 0.98) 100%);
  padding: 2.85rem 2.65rem;
  border-radius: 32px;
  border: 1px solid rgba(59, 130, 246, 0.12);
  box-shadow: 0 24px 60px rgba(59, 130, 246, 0.14);
  text-align: left;
  position: relative;
  overflow: hidden;
  transition: transform 0.45s cubic-bezier(0.23, 1, 0.32, 1), box-shadow 0.45s ease, border-color 0.45s ease;
}

.service-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(59, 130, 246, 0.1), rgba(6, 182, 212, 0.08));
  opacity: 0;
  transition: opacity 0.5s ease;
}


.service-card::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(140deg, rgba(59, 130, 246, 0.08), rgba(59, 130, 246, 0));
  opacity: 0;
  transition: opacity 0.45s ease;
  pointer-events: none;
}

.service-card:hover {
  transform: translateY(-14px);
  box-shadow: 0 32px 90px rgba(15, 23, 42, 0.18);
  border-color: rgba(59, 130, 246, 0.28);
}

.service-card:hover::after {
  opacity: 1;
}

.service-card:hover::before {
  opacity: 1;
}

.service-icon-wrapper {
  width: 88px;
  height: 88px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 26px;
  background: linear-gradient(135deg, rgba(59, 130, 246, 0.25), rgba(6, 182, 212, 0.22));
  margin-bottom: 2.1rem;
  position: relative;
  transition: transform 0.5s ease;
}

.service-card:hover .service-icon-wrapper {
  transform: translateY(-8px) rotate(-3deg);
}

.service-icon {
  font-size: 2.2rem;
  color: var(--color-sky-blue);
}

.service-card h3 {
  font-size: 1.75rem;
  font-weight: 700;
  color: #0f172a;
  margin-bottom: 1rem;
  letter-spacing: -0.01em;
}

.service-card p {
  color: #1f2a44;
  font-size: 1.05rem;
  line-height: 1.85;
  margin-bottom: 2rem;
}

.service-features {
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
  margin-bottom: 2.15rem;
}

.feature {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 1.02rem;
  color: #1c2a44;
  font-weight: 600;
}

.feature i {
  color: var(--color-emerald);
  font-size: 1rem;
}

.service-cta {
  text-align: center;
  margin-top: auto;
}

.service-button {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.875rem 2rem;
  background: var(--gradient-primary);
  color: white;
  text-decoration: none;
  border-radius: 50px;
  font-weight: 600;
  font-size: 0.95rem;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(59, 130, 246, 0.2);
}

.service-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 25px rgba(59, 130, 246, 0.3);
  color: white;
}

.service-guarantee {
  text-align: center;
  margin-top: 4.25rem;
  padding: 0 clamp(1.5rem, 6vw, 4rem);
}

.guarantee-content {
  max-width: 800px;
  margin: 0 auto;
}

.guarantee-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.85rem;
  background: linear-gradient(135deg, rgba(59, 130, 246, 0.96), rgba(14, 165, 233, 0.96));
  color: white;
  padding: 1.35rem 2.85rem;
  border-radius: 60px;
  font-weight: 700;
  font-size: 1.1rem;
  box-shadow: 0 20px 45px rgba(59, 130, 246, 0.28);
  margin-bottom: 2rem;
}

.service-benefits {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 1.5rem;
  margin-top: 2rem;
}

.benefit-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 1rem;
  background: rgba(59, 130, 246, 0.08);
  border-radius: 15px;
  border: 1px solid rgba(59, 130, 246, 0.2);
  transition: all 0.3s ease;
}

.benefit-item:hover {
  transform: translateY(-3px);
  background: rgba(59, 130, 246, 0.12);
  box-shadow: 0 5px 15px rgba(59, 130, 246, 0.1);
}

.benefit-item i {
  color: var(--color-emerald);
  font-size: 1.2rem;
  flex-shrink: 0;
}

.benefit-item span {
  color: var(--color-infinity-black);
  font-weight: 600;
  font-size: 0.95rem;
}

/* Enhanced Button Styles */
.mind-blowing-button {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 1rem 2rem;
  border-radius: 50px;
  font-weight: 600;
  text-decoration: none;
  border: none;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  position: relative;
  overflow: hidden;
  font-size: 1rem;
}

.mind-blowing-button.primary {
  background: var(--gradient-primary);
  color: white;
  box-shadow: var(--shadow-glow);
}

.mind-blowing-button.secondary {
  background: rgba(255, 255, 255, 0.1);
  color: white;
  border: 2px solid rgba(255, 255, 255, 0.3);
  backdrop-filter: blur(10px);
}

.mind-blowing-button:hover {
  transform: translateY(-3px) scale(1.05);
  box-shadow: 0 10px 30px rgba(59, 130, 246, 0.4);
}

/* Reviews Section */
.simple-reviews {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin-top: 2rem;
}

.review-card {
  background: white;
  padding: 2rem;
  border-radius: 20px;
  box-shadow: var(--shadow-soft);
  border-left: 4px solid var(--color-sky-blue);
  height: 100%;
  display: flex;
  flex-direction: column;
}

.review-stars {
  color: #FFD700;
  margin-bottom: 1.2rem;
  font-size: 1.25rem;
}

.review-card p {
  flex-grow: 1;
  font-size: 1.08rem;
  line-height: 1.85;
  color: #1f2937;
  font-style: italic;
  margin-bottom: 1.75rem;
}

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

.reviewer-info strong {
  display: block;
  color: var(--color-infinity-black);
  font-weight: 600;
}

.reviewer-info span {
  color: var(--color-cool-gray);
  font-size: 0.9rem;
}

.reviews-swiper {
  padding: 0.5rem 0 3rem;
}

.reviews-swiper .swiper-slide {
  height: auto;
}

.reviews-pagination .swiper-pagination-bullet {
  background: rgba(15, 23, 42, 0.25);
  opacity: 1;
}

.reviews-pagination .swiper-pagination-bullet-active {
  background: var(--color-sky-blue);
}

/* Premium Contact Section */
.contact-section {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.contact-background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at 20% 20%, rgba(59, 130, 246, 0.65), transparent 55%),
              radial-gradient(circle at 80% 0%, rgba(6, 182, 212, 0.6), transparent 45%),
              linear-gradient(135deg, #0f5bbd 0%, #0582cf 40%, #0db9c1 100%);
  background-size: cover;
  z-index: 0;
}

.contact-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(180deg, rgba(7, 28, 63, 0.25) 0%, rgba(7, 28, 63, 0.4) 100%);
  backdrop-filter: blur(2px);
  z-index: 1;
}

.contact-content {
  position: relative;
  z-index: 10;
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 4rem 2rem;
  text-align: center;
  color: rgba(255, 255, 255, 0.92);
}

.contact-section .container {
  position: relative;
  z-index: 5;
}

.contact-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 3rem;
  margin-top: 2.5rem;
}

.contact-details {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  text-align: left;
  color: rgba(255, 255, 255, 0.9);
  max-width: 520px;
}

.contact-heading {
  font-size: 2rem;
  font-weight: 700;
  color: white;
  margin-top: 1.75rem;
}

.contact-subheading {
  margin-top: 1rem;
  color: rgba(255, 255, 255, 0.92);
  font-size: 1.15rem;
  line-height: 1.85;
  max-width: 560px;
}

.contact-highlights {
  margin: 2rem 0 2.25rem;
  gap: 1.15rem;
}

.contact-highlights li {
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(255, 255, 255, 0.18);
}

.contact-highlights i {
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.28), rgba(255, 255, 255, 0.15));
  color: #0b4f91;
}

.contact-detail {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  padding-bottom: 1.85rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

.contact-detail:last-of-type {
  border-bottom: none;
  padding-bottom: 0;
}

.detail-label {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  font-size: 0.95rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.85);
}

.detail-label i {
  font-size: 1rem;
  color: #FFD700;
}

.detail-primary,
.detail-secondary {
  color: white;
  text-decoration: none;
  font-weight: 600;
  transition: color 0.3s ease, transform 0.3s ease;
}

.detail-primary {
  font-size: 1.5rem;
}

.detail-secondary {
  font-size: 1.15rem;
  color: rgba(255, 255, 255, 0.88);
}

.detail-note {
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.86);
}

.detail-primary:hover,
.detail-secondary:hover {
  color: #FFD700;
  transform: translateY(-2px);
}

.detail-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  margin: 0;
  padding: 0;
  list-style: none;
}

.detail-tags li {
  padding: 0.45rem 1.05rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.18);
  border: 1px solid rgba(255, 255, 255, 0.25);
  font-size: 0.9rem;
  font-weight: 500;
  color: white;
  transition: transform 0.3s ease, background 0.3s ease;
}

.detail-tags li:hover {
  background: rgba(255, 215, 0, 0.25);
  transform: translateY(-3px);
}

.contact-form-card {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.97) 0%, rgba(235, 248, 255, 0.97) 100%);
  border-radius: 36px;
  padding: 3.3rem 3.4rem;
  box-shadow: 0 34px 80px rgba(7, 43, 94, 0.28);
  text-align: left;
  border: 1px solid rgba(255, 255, 255, 0.35);
  color: #0f172a;
}

.contact-form .form-group {
  margin-bottom: 1.75rem;
}

.contact-form .checkbox-group {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1.1rem;
  width: 100%;
}

.contact-form .checkbox-option {
  position: relative;
  display: flex;
  align-items: center;
  gap: 0.95rem;
  width: 100%;
  padding: 1.2rem 1.5rem;
  border-radius: 18px;
  border: 1px solid rgba(59, 130, 246, 0.18);
  background: rgba(59, 130, 246, 0.06);
  color: var(--color-infinity-black);
  font-weight: 600;
  box-shadow: 0 14px 35px rgba(15, 23, 42, 0.08);
  transition: transform 0.3s ease, border-color 0.3s ease, background 0.3s ease, box-shadow 0.3s ease;
}

.contact-form .checkbox-option input[type="checkbox"] {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  pointer-events: none;
}

.contact-form .checkbox-option .checkbox-custom {
  width: 24px;
  height: 24px;
  border-radius: 8px;
  border: 2px solid rgba(59, 130, 246, 0.25);
  background: white;
  flex-shrink: 0;
  transition: all 0.3s ease;
}

.contact-form input[type="checkbox"]:checked + .checkbox-custom {
  background: var(--color-sky-blue);
  border-color: var(--color-sky-blue);
  box-shadow: 0 0 0 4px rgba(59, 130, 246, 0.25);
}

.contact-form input[type="checkbox"]:checked + .checkbox-custom::after {
  font-size: 1rem;
}

.contact-form .checkbox-option i {
  font-size: 1.1rem;
  color: var(--color-sky-blue);
  transition: color 0.3s ease;
}

.contact-form input[type="checkbox"]:checked + .checkbox-custom + i {
  color: var(--color-infinity-black);
}

.contact-form .checkbox-option:hover {
  transform: translateY(-4px);
  border-color: rgba(59, 130, 246, 0.35);
  background: rgba(59, 130, 246, 0.12);
  box-shadow: 0 20px 45px rgba(15, 23, 42, 0.12);
}

.contact-form .checkbox-option:focus-within {
  box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.25), 0 18px 40px rgba(15, 23, 42, 0.12);
}

.contact-form .submit-group {
  margin-top: 1.5rem;
}

.contact-header {
  margin-bottom: 4rem;
}

.white-text {
  color: white !important;
}

.section-title.white-text {
  background: none;
  -webkit-text-fill-color: white;
  text-shadow: 0 2px 20px rgba(0, 0, 0, 0.2);
}

.contact-methods {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 3rem;
  margin-bottom: 4rem;
}

.contact-method {
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 25px;
  padding: 3rem 2rem;
  text-align: center;
  transition: all 0.3s ease;
}

.contact-method:hover {
  transform: translateY(-10px);
  background: rgba(255, 255, 255, 0.25);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.method-icon {
  width: 80px;
  height: 80px;
  margin: 0 auto 2rem;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  color: white;
  border: 2px solid rgba(255, 255, 255, 0.3);
}

.method-info h3 {
  color: white;
  font-size: 1.4rem;
  font-weight: 700;
  margin-bottom: 1rem;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.phone-numbers {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.phone-primary {
  font-size: 1.5rem;
  font-weight: 700;
  color: white;
  text-decoration: none;
  transition: all 0.3s ease;
}

.phone-secondary {
  font-size: 1.1rem;
  color: rgba(255, 255, 255, 0.8);
  text-decoration: none;
  transition: all 0.3s ease;
}

.phone-primary:hover,
.phone-secondary:hover {
  color: #FFD700;
  text-shadow: 0 0 10px rgba(255, 215, 0, 0.3);
  transform: scale(1.05);
}

.email-link {
  color: white;
  text-decoration: none;
  font-size: 1.1rem;
  transition: all 0.3s ease;
  display: inline-block;
}

.email-link:hover {
  color: #FFD700;
  transform: scale(1.05);
}

.service-areas {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  justify-content: center;
}

.area {
  background: rgba(255, 255, 255, 0.2);
  color: white;
  padding: 0.5rem 1rem;
  border-radius: 20px;
  font-size: 0.9rem;
  font-weight: 500;
  border: 1px solid rgba(255, 255, 255, 0.3);
  transition: all 0.3s ease;
}

.area:hover {
  background: rgba(255, 215, 0, 0.2);
  border-color: #FFD700;
  transform: translateY(-2px);
}

.contact-actions {
  margin-top: 3rem;
}

.action-buttons {
  display: flex;
  gap: 2rem;
  justify-content: center;
  margin-bottom: 2rem;
  flex-wrap: wrap;
}

.contact-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  padding: 1.25rem 3rem;
  border-radius: 50px;
  font-weight: 700;
  font-size: 1.1rem;
  text-decoration: none;
  transition: all 0.3s ease;
  border: 2px solid transparent;
}

.contact-btn.primary {
  background: white;
  color: var(--color-sky-blue);
  box-shadow: 0 8px 25px rgba(255, 255, 255, 0.2);
}

.contact-btn.secondary {
  background: rgba(255, 255, 255, 0.15);
  color: white;
  border-color: rgba(255, 255, 255, 0.3);
  backdrop-filter: blur(10px);
}

.contact-btn:hover {
  transform: translateY(-3px) scale(1.05);
}

.contact-btn.primary:hover {
  background: #FFD700;
  color: var(--color-infinity-black);
  box-shadow: 0 10px 35px rgba(255, 215, 0, 0.3);
}

.contact-btn.secondary:hover {
  background: rgba(255, 255, 255, 0.25);
  border-color: white;
  box-shadow: 0 10px 30px rgba(255, 255, 255, 0.2);
}

.availability {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  color: rgba(255, 255, 255, 0.9);
  font-size: 0.95rem;
  font-weight: 500;
}

.availability i {
  color: #FFD700;
  font-size: 1.1rem;
}

/* Before/After Interactive Slider */
.before-after-showcase {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
  margin-bottom: 4rem;
  width: 100%;
  padding: 0 clamp(1.5rem, 6vw, 5rem);
}

.before-after-slider {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: var(--shadow-strong);
  width: 100%;
}

.slider-container {
  position: relative;
  width: 100%;
  height: clamp(320px, 45vw, 520px);
  overflow: hidden;
}

.before-image, .after-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.after-image {
  clip-path: inset(0 0 0 50%);
}

.before-image img, .after-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.image-label {
  position: absolute;
  top: 20px;
  left: 20px;
  background: rgba(0, 0, 0, 0.8);
  color: white;
  padding: 0.5rem 1rem;
  border-radius: 20px;
  font-weight: 600;
  font-size: 0.9rem;
}

.after-image .image-label {
  right: 20px;
  left: auto;
}

.slider-handle {
  position: absolute;
  top: 0;
  left: 50%;
  width: 4px;
  height: 100%;
  background: white;
  cursor: ew-resize;
  z-index: 10;
  transform: translateX(-50%);
}

.slider-button {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 40px;
  height: 40px;
  background: var(--color-sky-blue);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 1rem;
  box-shadow: var(--shadow-medium);
}

.work-details {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 1rem;
  max-width: 520px;
  margin: 0 auto;
  color: #1f2933;
}

.work-details h3 {
  font-size: 2.25rem;
  font-weight: 700;
  color: #0f172a;
  margin-bottom: 1.25rem;
}

.work-stats {
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
  margin-bottom: 1.85rem;
}

.work-stat {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  color: #27364a;
  font-size: 1.05rem;
}

.work-stat i {
  color: var(--color-sky-blue);
  font-size: 1.1rem;
}

.customer-info {
  margin-top: 1.25rem;
  font-style: italic;
  font-size: 1.05rem;
}

.customer-info strong {
  color: #0f172a;
  font-weight: 600;
}

.customer-info span {
  color: #334155;
  display: block;
  margin-top: 0.35rem;
}

.work-gallery {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 2.5rem;
  margin: 3.5rem 0 0;
  padding: 0 clamp(1.5rem, 6vw, 5rem);
}

.gallery-item {
  position: relative;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: var(--shadow-soft);
  transition: all 0.3s ease;
}

.before-after-grid {
  margin-top: clamp(3rem, 6vw, 5rem);
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: clamp(1.75rem, 5vw, 3rem);
  padding: 0 clamp(1.5rem, 6vw, 5rem);
}

.before-after-card {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.95) 0%, rgba(234, 248, 255, 0.95) 100%);
  border-radius: 28px;
  padding: clamp(1.75rem, 3vw, 2.5rem);
  box-shadow: 0 32px 70px rgba(15, 23, 42, 0.18);
  border: 1px solid rgba(59, 130, 246, 0.14);
  display: flex;
  flex-direction: column;
  gap: clamp(1.5rem, 2.5vw, 2.25rem);
  transition: transform 0.35s ease, box-shadow 0.35s ease, border-color 0.35s ease;
}

.before-after-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 42px 90px rgba(15, 23, 42, 0.22);
  border-color: rgba(59, 130, 246, 0.28);
}

.before-after-card .before-after-slider {
  border-radius: 24px;
  overflow: hidden;
  box-shadow: inset 0 0 0 1px rgba(15, 23, 42, 0.08);
}

.before-after-card .slider-container {
  height: clamp(220px, 30vw, 360px);
}

.before-after-card .before-image img,
.before-after-card .after-image img {
  transition: transform 0.4s ease;
}

.before-after-card:hover .before-image img,
.before-after-card:hover .after-image img {
  transform: scale(1.04);
}

.before-after-card .slider-handle {
  width: 4px;
}

.before-after-card .slider-button {
  width: 38px;
  height: 38px;
  font-size: 0.95rem;
}

.before-after-caption h4 {
  font-size: 1.35rem;
  font-weight: 700;
  color: #0f172a;
  margin-bottom: 0.65rem;
}

.before-after-caption p {
  color: #334155;
  font-size: 1.02rem;
  line-height: 1.65;
}

.gallery-item:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-medium);
}

.gallery-item img {
  width: 100%;
  height: 280px;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.gallery-item:hover img {
  transform: scale(1.1);
}

.gallery-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(transparent, rgba(0, 0, 0, 0.8));
  color: white;
  padding: 2rem 1.5rem 1.5rem;
  transform: translateY(100%);
  transition: transform 0.3s ease;
}

.gallery-item:hover .gallery-overlay {
  transform: translateY(0);
}

.gallery-overlay h4 {
  font-size: 1.2rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.work-cta {
  text-align: center;
  margin-top: 4rem;
}

.work-cta h3 {
  font-size: 2rem;
  font-weight: 700;
  color: var(--color-infinity-black);
  margin-bottom: 1.5rem;
}

/* Floating Action Button */
.floating-buttons {
  position: fixed;
  bottom: 20px;
  right: 20px;
  z-index: 1000;
}

.fab-container {
  position: relative;
}

.fab {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  color: white;
  box-shadow: var(--shadow-strong);
  transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  border: none;
  cursor: pointer;
  font-size: 1.5rem;
}

.main-fab {
  background: var(--gradient-primary);
  position: relative;
  z-index: 10;
}

.main-fab i:last-child {
  position: absolute;
  opacity: 0;
  transform: rotate(-45deg);
}

.fab-container.open .main-fab i:first-child {
  opacity: 0;
  transform: rotate(45deg);
}

.fab-container.open .main-fab i:last-child {
  opacity: 1;
  transform: rotate(0deg);
}

.fab-options {
  position: absolute;
  bottom: 70px;
  right: 0;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  opacity: 0;
  transform: scale(0);
  transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.fab-container.open .fab-options {
  opacity: 1;
  transform: scale(1);
}

.option-fab {
  width: 50px;
  height: 50px;
  font-size: 1.2rem;
  position: relative;
}

.option-fab:nth-child(1) { background: var(--color-emerald); }
.option-fab:nth-child(2) { background: var(--color-turquoise); }
.option-fab:nth-child(3) { background: #25D366; }
.option-fab:nth-child(4) { background: var(--color-sky-blue); }

.option-fab:hover {
  transform: scale(1.1);
}

.option-fab::before {
  content: attr(data-tooltip);
  position: absolute;
  right: 60px;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(0, 0, 0, 0.8);
  color: white;
  padding: 0.5rem 1rem;
  border-radius: 20px;
  font-size: 0.8rem;
  white-space: nowrap;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}

.option-fab:hover::before {
  opacity: 1;
}

/* Enhanced Section Transitions */
.service-section {
  position: relative;
  background: linear-gradient(180deg,
    rgba(248, 250, 252, 0) 0%,
    rgba(248, 250, 252, 1) 10%,
    rgba(248, 250, 252, 1) 90%,
    rgba(59, 130, 246, 0.05) 100%);
}

.about-section {
  position: relative;
  padding: clamp(5rem, 9vw, 7rem) 0;
  background: linear-gradient(135deg,
    rgba(15, 23, 42, 0.04) 0%,
    rgba(59, 130, 246, 0.08) 45%,
    rgba(125, 211, 252, 0.08) 100%);
}


.about-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: clamp(2.5rem, 6vw, 4rem);
}

.about-text {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.75rem;
  color: #233044;
  text-align: center;
  max-width: 780px;
  margin: 0 auto;
}

.about-text p {
  font-size: 1.05rem;
  line-height: 1.9;
  color: #27364a;
}

.about-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.35rem 0.85rem;
  border-radius: 999px;
  background: rgba(59, 130, 246, 0.12);
  color: rgba(15, 23, 42, 0.72);
  font-size: 0.85rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-weight: 600;
}

.about-points {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: clamp(1.25rem, 3vw, 1.75rem);
  width: 100%;
  max-width: 1020px;
  margin: 0 auto;
}

.about-point {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  padding: 1.2rem 1.4rem;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.75);
  box-shadow: 0 24px 50px rgba(15, 23, 42, 0.08);
  border: 1px solid rgba(59, 130, 246, 0.12);
  text-align: left;
  height: 100%;
}

.about-point i {
  font-size: 1.25rem;
  color: var(--color-sky-blue);
  margin-top: 0.15rem;
}

.about-point h4 {
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 0.35rem;
  color: #162034;
}

.about-point p {
  font-size: 0.98rem;
  color: #3b4a63;
  margin: 0;
}

.about-point.about-membership {
  align-items: flex-start;
  background: rgba(59, 130, 246, 0.1);
  border-color: rgba(59, 130, 246, 0.25);
}

.about-membership-logo {
  width: 70px;
  height: 70px;
  object-fit: contain;
  border-radius: 16px;
  background: white;
  padding: 0.35rem;
  box-shadow: 0 12px 25px rgba(15, 23, 42, 0.18);
}

.about-point.about-membership h4 {
  margin-bottom: 0.4rem;
}

.reviews-section {
  position: relative;
  background: linear-gradient(180deg,
    rgba(59, 130, 246, 0.05) 0%,
    var(--color-cloud-white) 10%,
    var(--color-cloud-white) 90%,
    rgba(59, 130, 246, 0.05) 100%);
}

.our-work-section {
  position: relative;
  background: linear-gradient(180deg,
    rgba(59, 130, 246, 0.05) 0%,
    var(--color-cloud-white) 10%,
    var(--color-cloud-white) 90%,
    rgba(6, 182, 212, 0.1) 100%);
}

.quote-section {
  position: relative;
  background: linear-gradient(135deg,
    rgba(6, 182, 212, 0.1) 0%,
    rgba(248, 250, 252, 1) 50%,
    rgba(16, 185, 129, 0.08) 100%);
}

/* Premium Service Cards Enhancement */
.service-card {
  position: relative;
  overflow: hidden;
}

.service-card::after {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(59, 130, 246, 0.1) 0%, transparent 70%);
  opacity: 0;
  transition: opacity 0.3s ease;
  pointer-events: none;
}

.service-card:hover::after {
  opacity: 1;
}

/* Enhanced Button Styles */
.mind-blowing-button {
  position: relative;
  overflow: hidden;
}

.mind-blowing-button::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
  transition: left 0.5s ease;
}

.mind-blowing-button:hover::before {
  left: 100%;
}

/* Mobile Responsive Updates */
@media (max-width: 768px) {
  .form-row {
    grid-template-columns: 1fr;
    gap: 1rem;
  }

  .contact-grid {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

  .contact-form-card {
    padding: 2.25rem;
  }

  .detail-primary {
    font-size: 1.3rem;
  }

  .action-buttons {
    flex-direction: column;
    align-items: center;
    gap: 1rem;
  }

  .contact-btn {
    width: 100%;
    max-width: 300px;
    justify-content: center;
  }

  .service-grid {
    gap: 1.75rem;
  }

  .service-card {
    padding: 2.25rem 2rem;
  }

  .service-card h3 {
    font-size: 1.4rem;
  }

  .service-icon-wrapper {
    width: 80px;
    height: 80px;
    margin-bottom: 1.5rem;
  }

  .phone-primary {
    font-size: 1.3rem;
  }

  .availability {
    flex-direction: column;
    gap: 0.5rem;
    text-align: center;
  }
}

@media (max-width: 1080px) {
  .quote-wrapper {
    grid-template-columns: 1fr;
  }

  .quote-info,
  .quote-form-card {
    padding: 3rem;
  }

  .quote-meta {
    gap: 1rem;
  }
}

@media (max-width: 640px) {
  .quote-info,
  .quote-form-card {
    padding: 2.25rem;
  }

  .quote-heading {
    font-size: 2.2rem;
  }

  .quote-meta {
    flex-direction: column;
    align-items: flex-start;
  }

  .quote-highlights li {
    font-size: 0.95rem;
  }
}

/* Animations */
@keyframes pulse {
  0%, 100% {
    transform: scale(1);
    box-shadow: 0 0 0 0 rgba(59, 130, 246, 0.4);
  }
  50% {
    transform: scale(1.05);
    box-shadow: 0 0 0 10px rgba(59, 130, 246, 0);
  }
}

@keyframes typing {
  from { width: 0; }
  to { width: 100%; }
}

/* Responsive Design */
@media (max-width: 1024px) {
  .section-title {
    font-size: 3rem;
  }

  .hero-title {
    font-size: 3rem;
  }

  .contact-grid {
    grid-template-columns: 1fr;
  }

  .before-after-showcase {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .before-after-grid {
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 2rem;
  }

  .before-after-card .slider-container {
    height: clamp(220px, 42vw, 320px);
  }

  .about-container {
    grid-template-columns: 1fr;
  }

  .hero-stats {
    gap: 1rem;
  }

  .stat-number {
    font-size: 2rem;
  }
}

@media (max-width: 768px) {
  .section-title {
    font-size: 2.5rem;
  }

  .hero-title {
    font-size: 2.5rem;
  }

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

  .trust-indicators {
    gap: 1rem;
  }

  .trust-badge {
    font-size: 0.8rem;
    padding: 0.4rem 0.8rem;
  }

  .service-grid {
    grid-template-columns: 1fr;
  }

  .reviews-stats {
    flex-direction: column;
    gap: 2rem;
  }

  .work-gallery {
    grid-template-columns: 1fr;
  }

  .before-after-card {
    padding: 1.75rem;
  }

  .about-points {
    grid-template-columns: 1fr;
  }

  .about-point.about-membership {
    flex-direction: column;
    align-items: flex-start;
  }

  .about-membership-logo {
    width: 58px;
    height: 58px;
  }

  .weather-widget {
    right: 10px;
    font-size: 0.8rem;
    padding: 0.75rem;
  }

  .floating-buttons {
    bottom: 10px;
    right: 10px;
  }

  .hero-stats {
    flex-direction: column;
    gap: 1.5rem;
  }
}

@media (max-width: 480px) {
  .section-title {
    font-size: 2rem;
  }

  .hero-title {
    font-size: 2rem;
  }

  .hero-content {
    padding: 1rem;
  }

  .service-card {
    padding: 2rem;
  }

  .mind-blowing-button {
    padding: 0.75rem 1.5rem;
    font-size: 0.9rem;
  }
}

/* Print Styles */
@media print {
  .floating-buttons,
  .weather-widget,
  .live-notification,
  .hero-particles {
    display: none !important;
  }
}

@media (min-width: 1024px) {
  .about-point.about-membership {
    flex-direction: row;
    align-items: center;
  }

  .about-membership-logo {
    width: 66px;
    height: 66px;
  }
}
