/* ============================================
   CLEAR SHINE SERVICES MANAGEMENT - STYLES
   ============================================ */

/* Base Styles & Variables */
:root {
  --primary-sky-blue: #7DD3F0;
  --dark-navy: #1a1a3e;
  --light-blue: #E8F7FC;
  --white: #FFFFFF;
  --text-dark: #333;
  --text-gray: #666;
  --gold: #FFD700;
  --shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  --shadow-lg: 0 4px 12px rgba(0, 0, 0, 0.15);
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Open Sans', sans-serif;
  color: var(--text-dark);
  line-height: 1.6;
  background-color: var(--white);
}

/* ============================================
   ANIMATIONS
   ============================================ */

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

@keyframes slideDown {
  from {
    opacity: 0;
    transform: translateY(-10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.reveal {
  opacity: 1;
  transform: none;
}

/* Reduced motion preference */
@media (prefers-reduced-motion: reduce) {
  * {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}

/* ============================================
   ANNOUNCEMENT BAR
   ============================================ */

.announcement-bar {
  background-color: var(--dark-navy);
  padding: 2px 0;
  text-align: center;
  position: relative;
  width: 100%;
  z-index: 1000;
}

.announcement-content {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 0 20px;
}

.announcement-text {
  color: var(--white);
  font-weight: 600;
  font-size: 0.8rem;
}

.announcement-close {
  background: none;
  border: none;
  color: var(--white);
  cursor: pointer;
  font-size: 1.2rem;
  padding: 0 10px;
  transition: opacity 0.3s ease;
}

.announcement-close:hover {
  opacity: 0.8;
}

/* ============================================
   HEADER & NAVIGATION
   ============================================ */

.main-header {
  background-color: var(--primary-sky-blue);
  position: sticky;
  top: 0;
  z-index: 999;
  transition: box-shadow 0.3s ease, background-color 0.3s ease;
  width: 100%;
}

.main-header.sticky-header {
  top: 0;
}

.main-header.scrolled {
  box-shadow: var(--shadow-lg);
}

.header-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
  padding: 4px 20px;
}

.logo-section {
  display: flex;
  align-items: center;
}

.logo {
  display: flex;
  flex-direction: column;
  text-decoration: none;
  align-items: flex-start;
}

.logo-text {
  font-family: 'Montserrat', sans-serif;
  font-weight: 800;
  color: var(--dark-navy);
  font-size: 1.5rem;
  line-height: 1.2;
}

.logo-sparkle {
  display: inline-block;
  font-size: 1.2rem;
  margin-left: 4px;
}

.logo-subtitle {
  font-family: 'Montserrat', sans-serif;
  color: var(--dark-navy);
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.logo-img {
  max-width: 120px;
  height: auto;
  display: block;
}

.mobile-menu-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  flex-direction: column;
  gap: 5px;
  z-index: 1001;
}

.mobile-menu-toggle .hamburger {
  width: 24px;
  height: 2px;
  background-color: var(--dark-navy);
  display: block;
  transition: all 0.3s ease;
}

.mobile-menu-toggle.active .hamburger:nth-child(1) {
  transform: rotate(45deg) translate(8px, 8px);
}

.mobile-menu-toggle.active .hamburger:nth-child(2) {
  opacity: 0;
}

.mobile-menu-toggle.active .hamburger:nth-child(3) {
  transform: rotate(-45deg) translate(7px, -7px);
}

.main-nav {
  display: flex;
  align-items: center;
}

.main-nav.mobile-open {
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  background-color: var(--primary-sky-blue);
  flex-direction: column;
  padding: 20px;
  gap: 10px;
  box-shadow: var(--shadow);
  display: flex;
}

.nav-list {
  display: flex;
  gap: 30px;
  list-style: none;
  padding: 0;
  margin: 0;
  align-items: center;
}

.main-nav.mobile-open .nav-list {
  flex-direction: column;
  gap: 15px;
  width: 100%;
}

.nav-link {
  color: var(--dark-navy);
  text-decoration: none;
  font-weight: 600;
  font-size: 0.85rem;
  letter-spacing: 0.02em;
  transition: border-bottom 0.3s ease;
  border-bottom: 2px solid transparent;
  padding-bottom: 2px;
}

.nav-link:hover {
  border-bottom-color: var(--dark-navy);
}

.header-right {
  display: flex;
  align-items: center;
  gap: 20px;
}

.phone-link {
  display: flex;
  align-items: center;
  gap: 6px;
  text-decoration: none;
  color: var(--dark-navy);
  font-weight: 600;
  font-size: 0.85rem;
  transition: color 0.3s ease;
}

.phone-link:hover {
  color: var(--text-dark);
}

.phone-icon,
.phone-number {
  display: inline-flex;
  align-items: center;
}

/* ============================================
   BUTTONS
   ============================================ */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
  text-decoration: none;
  font-size: 0.95rem;
  border-radius: 50px;
}

.btn-primary {
  background-color: var(--dark-navy);
  color: var(--white);
  padding: 12px 28px;
}

.btn-primary:hover {
  background-color: #2d2d5f;
}

.btn-light {
  background-color: var(--white);
  color: var(--dark-navy);
  padding: 12px 28px;
  border: 2px solid var(--dark-navy);
}

.btn-light:hover {
  background-color: var(--light-blue);
}

.btn-sm {
  padding: 6px 14px;
  font-size: 0.8rem;
}

.btn-lg {
  padding: 16px 40px;
  font-size: 1.05rem;
}

/* ============================================
   HERO SECTION
   ============================================ */

.hero {
  background: url('../images/20240817_141032.jpg') center/cover no-repeat;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  color: var(--white);
  padding: 48px 20px;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 700px;
  padding: 0 20px;
  animation: fadeInUp 1s ease;
}

.hero-logo {
  max-width: 480px;
  width: 100%;
  height: auto;
  margin: 0 auto 16px;
  display: block;
  filter: brightness(0) invert(1);
}

.hero-title {
  color: var(--white);
  font-size: 2.2rem;
  font-family: 'Montserrat', sans-serif;
  font-weight: 800;
  margin-bottom: 8px;
  line-height: 1.15;
}

.hero-subtitle {
  color: rgba(255, 255, 255, 0.95);
  font-size: 1.05rem;
  margin-bottom: 14px;
  line-height: 1.5;
}

.hero-features {
  list-style: none;
  padding: 0;
  margin: 0 0 16px;
  color: var(--white);
  text-align: left;
  display: inline-block;
  font-size: 0.95rem;
}

.hero-features li {
  margin-bottom: 4px;
  padding-left: 28px;
  position: relative;
}

.hero-features li:before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--primary-sky-blue);
  font-weight: bold;
  font-size: 1.2rem;
}

/* ============================================
   TRUST BAR
   ============================================ */

.trust-bar {
  background-color: var(--light-blue);
  padding: 20px;
}

.trust-container {
  display: flex;
  justify-content: space-around;
  flex-wrap: wrap;
  max-width: 1200px;
  margin: 0 auto;
  gap: 30px;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 15px;
}

.trust-icon {
  width: 24px;
  height: 24px;
  color: var(--dark-navy);
  flex-shrink: 0;
}

.trust-text {
  color: var(--dark-navy);
  font-weight: 600;
  font-size: 0.95rem;
}

/* ============================================
   SERVICES SECTION
   ============================================ */

.services-section {
  padding: 48px 0;
  background-color: var(--white);
}

.services-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  text-align: center;
}

.section-subheading {
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--primary-sky-blue);
  font-weight: 600;
  font-size: 0.85rem;
  margin-bottom: 12px;
}

.section-heading {
  color: var(--dark-navy);
  font-size: 2.25rem;
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  margin-bottom: 16px;
  line-height: 1.3;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 20px;
}

.service-card {
  background-color: var(--white);
  border-radius: 12px;
  padding: 30px;
  box-shadow: var(--shadow);
  border-top: 4px solid var(--primary-sky-blue);
  text-align: left;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  opacity: 0;
  transform: translateY(20px);
  animation: fadeInUp 0.6s ease forwards;
}

.service-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
}

.service-card.reveal {
  opacity: 1;
  transform: translateY(0);
}

.service-icon {
  width: 60px;
  height: 60px;
  background-color: var(--light-blue);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}

.service-icon svg {
  width: 30px;
  height: 30px;
  color: var(--dark-navy);
}

.service-icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  border-radius: 8px;
}

.service-title {
  color: var(--dark-navy);
  font-size: 1.3rem;
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  margin-bottom: 10px;
}

.service-description {
  color: var(--text-gray);
  line-height: 1.7;
  font-size: 0.95rem;
}

/* ============================================
   GUARANTEE SECTION
   ============================================ */

.guarantee-section {
  background-color: var(--dark-navy);
  padding: 48px 0;
  color: var(--white);
  text-align: center;
}

.guarantee-container {
  max-width: 800px;
  margin: 0 auto;
  padding: 0 20px;
}

.guarantee-title {
  color: var(--white);
  font-size: 2rem;
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  margin-bottom: 24px;
}

.guarantee-text {
  color: rgba(255, 255, 255, 0.9);
  line-height: 1.8;
  font-size: 1rem;
  margin-bottom: 30px;
}

.guarantee-note {
  font-size: 0.85rem;
  font-style: italic;
  color: rgba(255, 255, 255, 0.7);
  margin-top: 20px;
}

/* ============================================
   GALLERY SECTION
   ============================================ */

.gallery-section {
  padding: 48px 0;
  background-color: var(--white);
}

.gallery-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  text-align: center;
}

.gallery-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
  margin-top: 20px;
}

.gallery-pair {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  max-width: 900px;
  margin: 0 auto;
}

.gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: 8px;
  opacity: 0;
  transform: translateY(20px);
  animation: fadeInUp 0.6s ease forwards;
}

.gallery-img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border-radius: 8px;
  display: block;
}

.gallery-label {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: rgba(0, 0, 0, 0.7);
  color: var(--white);
  padding: 10px 15px;
  font-size: 0.85rem;
  font-weight: 600;
  text-align: center;
  z-index: 1;
}

/* ============================================
   TESTIMONIALS SECTION
   ============================================ */

.testimonials-section {
  background-color: var(--light-blue);
  padding: 48px 0;
}

.testimonials-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  text-align: center;
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 20px;
}

.testimonial-card {
  background-color: var(--white);
  padding: 30px;
  border-radius: 12px;
  box-shadow: var(--shadow);
  text-align: left;
  opacity: 0;
  transform: translateY(20px);
  animation: fadeInUp 0.6s ease forwards;
}

.testimonial-card.reveal {
  opacity: 1;
  transform: translateY(0);
}

.testimonial-stars {
  margin-bottom: 15px;
  display: flex;
  gap: 4px;
}

.star {
  color: var(--gold);
  font-size: 1.2rem;
}

.testimonial-text {
  font-style: italic;
  color: var(--text-gray);
  line-height: 1.7;
  margin-bottom: 15px;
  position: relative;
  padding-left: 20px;
}

.testimonial-text:before {
  content: '"';
  font-size: 3rem;
  color: var(--primary-sky-blue);
  opacity: 0.3;
  position: absolute;
  left: 0;
  top: -10px;
  line-height: 1;
}

.testimonial-author {
  font-weight: 600;
  color: var(--dark-navy);
  font-size: 0.95rem;
}

/* ============================================
   FAQ SECTION
   ============================================ */

.faq-section {
  padding: 48px 0;
  background-color: var(--white);
}

.faq-container {
  max-width: 800px;
  margin: 0 auto;
  padding: 0 20px;
}

.faq-container .section-heading {
  text-align: center;
  margin-bottom: 20px;
}

.faq-list {
  text-align: left;
}

.faq-item {
  border-bottom: 1px solid #e0e0e0;
  margin-bottom: 0;
}

.faq-question {
  font-weight: 600;
  padding: 20px 0;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: var(--dark-navy);
  font-size: 1.1rem;
  background: none;
  border: none;
  width: 100%;
  text-align: left;
  font-family: inherit;
  transition: color 0.3s ease;
}

.faq-question:hover {
  color: var(--primary-sky-blue);
}

.faq-question::-webkit-details-marker {
  display: none;
}

.faq-icon {
  width: 24px;
  height: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: transform 0.3s ease;
  font-size: 1.2rem;
}

details[open] .faq-icon {
  transform: rotate(45deg);
}

.faq-answer {
  padding-bottom: 20px;
  color: var(--text-gray);
  line-height: 1.7;
  font-size: 0.95rem;
}

/* ============================================
   ABOUT SECTION
   ============================================ */

.about-section {
  padding: 48px 0;
  background-color: #F8F9FA;
}

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

.about-content {
  display: grid;
  grid-template-columns: 2fr 3fr;
  gap: 30px;
  align-items: start;
  margin-top: 20px;
}

.about-photo {
  border-radius: 12px;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.about-img {
  width: 100%;
  display: block;
  border-radius: 12px;
}

.about-info {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.about-text {
  color: var(--text-gray);
  line-height: 1.8;
  font-size: 0.95rem;
}

.about-text p {
  margin-bottom: 20px;
}

.about-highlights {
  background-color: var(--white);
  padding: 30px;
  border-radius: 12px;
  box-shadow: var(--shadow);
  border-left: 4px solid var(--primary-sky-blue);
}

.about-highlights h3 {
  color: var(--dark-navy);
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  margin-bottom: 15px;
  font-size: 1.1rem;
}

.about-highlights ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.about-highlights li {
  padding: 8px 0;
  padding-left: 25px;
  position: relative;
  color: var(--text-gray);
  font-size: 0.95rem;
}

.about-highlights li:before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--primary-sky-blue);
  font-weight: bold;
  font-size: 1rem;
}

/* ============================================
   CTA BANNER
   ============================================ */

.cta-banner {
  background-color: var(--primary-sky-blue);
  padding: 60px 0;
  text-align: center;
}

.cta-content {
  max-width: 800px;
  margin: 0 auto;
  padding: 0 20px;
}

.cta-content h2 {
  color: var(--dark-navy);
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 2rem;
  margin-bottom: 16px;
}

.cta-content p {
  color: var(--dark-navy);
  font-size: 1rem;
  margin-bottom: 32px;
}

.cta-buttons {
  display: flex;
  justify-content: center;
  gap: 15px;
  flex-wrap: wrap;
}

/* ============================================
   FOOTER
   ============================================ */

.footer {
  background-color: var(--dark-navy);
  padding: 60px 0 24px;
  color: var(--white);
}

.footer-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 30px;
  margin-bottom: 24px;
}

.footer-section {
  display: flex;
  flex-direction: column;
}

.footer-logo {
  max-width: 180px;
  height: auto;
  margin-bottom: 15px;
}

.footer-heading {
  color: var(--white);
  font-size: 1.1rem;
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  margin-bottom: 15px;
}

.footer-company-info {
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.6;
  font-size: 0.9rem;
}

.footer-copyright {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.85rem;
  margin-top: 10px;
}

.footer-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-list li {
  margin-bottom: 8px;
}

.footer-link {
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
  font-size: 0.9rem;
  transition: color 0.3s ease;
}

.footer-link:hover {
  color: var(--white);
}

.footer-contact {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.9rem;
  line-height: 1.6;
}

.footer-social {
  display: flex;
  gap: 15px;
  margin-top: 15px;
}

.social-link {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  text-decoration: none;
  transition: background-color 0.3s ease;
  font-size: 1rem;
}

.social-link:hover {
  background-color: var(--primary-sky-blue);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  margin-top: 24px;
  padding-top: 16px;
  text-align: center;
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.85rem;
}

/* ============================================
   BACK TO TOP BUTTON
   ============================================ */

.back-to-top {
  position: fixed;
  bottom: 30px;
  right: 30px;
  background-color: var(--dark-navy);
  color: var(--white);
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: none;
  cursor: pointer;
  font-size: 1.2rem;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background-color 0.3s ease;
  opacity: 0;
  visibility: hidden;
  transform: translateY(20px);
}

.back-to-top.visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.back-to-top:hover {
  background-color: var(--primary-sky-blue);
}

/* ============================================
   PAGE HEADER (Quote/Terms Pages)
   ============================================ */

.page-header {
  background-color: var(--primary-sky-blue);
  padding: 48px 0 32px;
  text-align: center;
}

.page-header h1 {
  color: var(--dark-navy);
  font-family: 'Montserrat', sans-serif;
  font-weight: 800;
  font-size: 2.5rem;
  margin-bottom: 15px;
}

.page-header p,
.subtitle {
  color: var(--dark-navy);
  opacity: 0.8;
  font-size: 1rem;
}

/* ============================================
   QUOTE PAGE SPECIFIC
   ============================================ */

.quote-section {
  padding: 40px 0;
}

.quote-wrapper {
  display: grid;
  grid-template-columns: 1fr 340px;
  gap: 30px;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.quote-form-column {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  width: 100%;
}

.quote-form-column > div {
  width: 100%;
}

.quote-form-column iframe {
  width: 100% !important;
}

.contact-info-column {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.contact-card {
  background-color: var(--white);
  padding: 24px;
  border-radius: 12px;
  box-shadow: var(--shadow);
  border-top: 4px solid var(--primary-sky-blue);
}

.contact-item {
  margin-bottom: 20px;
}

.contact-item:last-child {
  margin-bottom: 0;
}

.contact-item h3 {
  color: var(--dark-navy);
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 1.1rem;
  margin-bottom: 10px;
}

.service-areas {
  list-style: none;
  padding: 0;
  margin: 0;
}

.service-areas li {
  padding: 4px 0;
  color: var(--text-gray);
  font-size: 0.95rem;
}

.trust-badges,
.badges {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-top: 10px;
}

.badge {
  display: flex;
  align-items: center;
  gap: 5px;
  padding: 8px 12px;
  background-color: var(--light-blue);
  border-radius: 6px;
  font-size: 0.85rem;
  color: var(--dark-navy);
  font-weight: 600;
}

.badge-icon {
  width: 16px;
  height: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary-sky-blue);
}

/* ============================================
   LEGAL / TERMS PAGE
   ============================================ */

.legal-content {
  padding: 60px 0;
}

.container--narrow {
  max-width: 800px;
  margin: 0 auto;
  padding: 0 20px;
}

.legal-content h2 {
  color: var(--dark-navy);
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 1.4rem;
  margin-top: 30px;
  margin-bottom: 15px;
}

.legal-content h2:first-child {
  margin-top: 0;
}

.legal-content p {
  color: var(--text-gray);
  line-height: 1.8;
  margin-bottom: 15px;
  font-size: 0.95rem;
}

.legal-content ul {
  margin-left: 20px;
  margin-bottom: 20px;
  color: var(--text-gray);
}

.legal-content ul li {
  margin-bottom: 8px;
  line-height: 1.7;
  font-size: 0.95rem;
}

/* ============================================
   SCREEN READER ONLY
   ============================================ */

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border-width: 0;
}

/* Generic container */
.container {
  max-width: 900px;
  margin: 0 auto;
  padding: 0 20px;
}

/* ============================================
   SERVICE AREA PAGES
   ============================================ */

.city-intro-section {
  padding: 48px 0;
  background-color: var(--white);
}

.city-intro-container {
  max-width: 900px;
  margin: 0 auto;
  padding: 0 20px;
}

.city-intro-container p {
  color: var(--text-gray);
  line-height: 1.8;
  font-size: 0.95rem;
  margin-bottom: 20px;
}

.city-intro-container p:last-child {
  margin-bottom: 0;
}

.nearby-areas-section {
  padding: 40px 0;
  background-color: #F8F9FA;
  text-align: center;
}

.nearby-areas-container {
  max-width: 800px;
  margin: 0 auto;
  padding: 0 20px;
}

.nearby-areas-list {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 20px;
  list-style: none;
  padding: 0;
}

.nearby-areas-list a {
  display: inline-block;
  padding: 10px 20px;
  background-color: var(--white);
  color: var(--dark-navy);
  text-decoration: none;
  border-radius: 50px;
  font-weight: 600;
  font-size: 0.9rem;
  border: 2px solid var(--primary-sky-blue);
  transition: all 0.3s ease;
}

.nearby-areas-list a:hover {
  background-color: var(--primary-sky-blue);
  color: var(--white);
}

/* ============================================
   RESPONSIVE DESIGN
   ============================================ */

/* Tablet: 768px - 1023px */
@media (max-width: 1023px) {
  .hero-title {
    font-size: 2rem;
  }

  .section-heading {
    font-size: 1.8rem;
  }

  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .testimonials-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .footer-container {
    grid-template-columns: repeat(2, 1fr);
  }

  .about-content {
    grid-template-columns: 1fr 1fr;
    gap: 24px;
  }

  .quote-wrapper {
    grid-template-columns: 1fr;
  }
}

/* Mobile: < 768px */
@media (max-width: 767px) {
  /* --- Header --- */
  .mobile-menu-toggle {
    display: flex;
  }

  .main-nav {
    display: none;
  }

  .header-container {
    padding: 8px 16px;
  }

  .header-right {
    gap: 10px;
  }

  .phone-number {
    display: none;
  }

  .phone-icon {
    font-size: 1.2rem;
  }

  .btn-sm {
    padding: 6px 12px;
    font-size: 0.75rem;
  }

  .logo-img {
    max-width: 100px;
  }

  .logo-text {
    font-size: 1.2rem;
  }

  /* --- Mobile Nav Menu --- */
  .main-nav.mobile-open .nav-link {
    padding: 12px 0;
    display: block;
    font-size: 1rem;
  }

  .nav-list {
    gap: 0;
  }

  /* --- Hero --- */
  .hero {
    padding: 28px 16px;
  }

  .hero-logo {
    max-width: 280px;
  }

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

  .hero-subtitle {
    font-size: 0.9rem;
    margin-bottom: 10px;
  }

  .hero-features li {
    font-size: 0.85rem;
    margin-bottom: 2px;
  }

  .btn-lg {
    padding: 14px 28px;
    font-size: 0.95rem;
  }

  /* --- Trust Bar --- */
  .trust-container {
    flex-direction: column;
    gap: 10px;
    padding: 0 16px;
  }

  .trust-text {
    font-size: 0.85rem;
  }

  /* --- Sections --- */
  .section-heading {
    font-size: 1.5rem;
  }

  .services-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .service-card {
    padding: 20px;
  }

  .testimonials-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  /* --- Gallery: stack vertically --- */
  .gallery-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .gallery-pair {
    grid-template-columns: 1fr;
    gap: 8px;
  }

  /* --- About --- */
  .about-content {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .about-img {
    aspect-ratio: auto;
    height: auto;
  }

  /* --- CTA Banner --- */
  .cta-content h2 {
    font-size: 1.4rem;
  }

  .cta-buttons {
    flex-direction: column;
    align-items: center;
    gap: 10px;
  }

  .cta-buttons .btn {
    width: 100%;
    max-width: 300px;
  }

  /* --- Footer --- */
  .footer-container {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  /* --- Page Header (Quote/Terms) --- */
  .page-header {
    padding: 32px 0 24px;
  }

  .page-header h1 {
    font-size: 1.6rem;
  }

  /* --- Quote Page --- */
  .quote-wrapper {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  /* --- Back to Top --- */
  .back-to-top {
    width: 40px;
    height: 40px;
    bottom: 20px;
    right: 20px;
    font-size: 1rem;
  }

  /* --- Service Area Pages --- */
  .nearby-areas-list {
    flex-direction: column;
    align-items: center;
  }

  .city-intro-section {
    padding: 32px 0;
  }
}

/* Large Desktop: > 1200px */
@media (min-width: 1201px) {
  .services-container,
  .about-container,
  .testimonials-container,
  .gallery-container,
  .footer-container {
    padding: 0 40px;
  }
}

/* ============================================
   GOOGLE REVIEWS & TESTIMONIALS EXTRAS
   ============================================ */
.google-rating-header {
  text-align: center;
  margin-bottom: 10px;
}

.google-review-count {
  font-size: 1.05rem;
  color: var(--text-gray);
  margin-top: 8px;
}

.review-source {
  font-size: 0.85rem;
  color: var(--text-gray);
}

.testimonials-cta {
  text-align: center;
  margin-top: 40px;
}

.btn-outline {
  display: inline-block;
  padding: 12px 28px;
  border: 2px solid var(--primary-sky-blue);
  color: var(--dark-navy);
  background: transparent;
  border-radius: 50px;
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  font-size: 0.95rem;
  text-decoration: none;
  transition: all 0.3s ease;
  cursor: pointer;
}

.btn-outline:hover {
  background: var(--primary-sky-blue);
  color: var(--white);
  text-decoration: none;
}

/* ============================================
   PRINT STYLES
   ============================================ */

@media print {
  .main-header,
  .announcement-bar,
  .back-to-top,
  .footer {
    display: none;
  }

  body {
    line-height: 1.6;
    color: #000;
  }

  .section-heading {
    page-break-after: avoid;
  }

  .service-card,
  .testimonial-card {
    page-break-inside: avoid;
  }
}
