/* =============================================
   Plaza Coin Laundry - Global Styles
   ============================================= */

/* --- Reset & Base --- */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Segoe UI', Arial, sans-serif;
  color: #222;
  background: #fff;
  line-height: 1.6;
}

img {
  max-width: 100%;
  display: block;
}

a {
  text-decoration: none;
  color: inherit;
}

ul {
  list-style: none;
}

/* --- Color Variables --- */
:root {
  --blue:        #1565c0;
  --blue-dark:   #0d47a1;
  --blue-light:  #e3f0ff;
  --blue-mid:    #1e88e5;
  --orange:      #f57c00;
  --orange-light:#fff3e0;
  --white:       #ffffff;
  --gray-light:  #f5f7fa;
  --gray:        #9e9e9e;
  --gray-dark:   #444;
  --text:        #212121;
  --shadow:      0 2px 12px rgba(0,0,0,0.10);
  --shadow-lg:   0 6px 32px rgba(0,0,0,0.14);
  --radius:      8px;
  --radius-lg:   14px;
}

/* =============================================
   TOP BAR
   ============================================= */
.top-bar {
  background: var(--blue-dark);
  color: #fff;
  font-size: 0.88rem;
  padding: 7px 0;
}

.top-bar .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 6px;
}

.top-bar a {
  color: #fff;
  transition: opacity 0.2s;
}
.top-bar a:hover { opacity: 0.8; }

.top-bar-left, .top-bar-right {
  display: flex;
  align-items: center;
  gap: 18px;
  flex-wrap: wrap;
}

.top-bar-item {
  display: flex;
  align-items: center;
  gap: 6px;
}

.top-bar-item svg {
  width: 15px;
  height: 15px;
  fill: #90caf9;
  flex-shrink: 0;
}

/* =============================================
   MAIN NAVIGATION
   ============================================= */
.main-nav {
  background: var(--white);
  box-shadow: 0 2px 8px rgba(0,0,0,0.10);
  position: sticky;
  top: 0;
  z-index: 100;
}

.main-nav .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 10px;
  padding-bottom: 10px;
}

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

.logo-icon {
  width: 52px;
  height: 52px;
  background: var(--blue);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.logo-icon svg {
  width: 30px;
  height: 30px;
  fill: #fff;
}

.logo-text {
  line-height: 1.15;
}

.logo-text strong {
  display: block;
  font-size: 1.25rem;
  color: var(--blue-dark);
  font-weight: 800;
  letter-spacing: -0.3px;
}

.logo-text span {
  font-size: 0.78rem;
  color: var(--gray);
  text-transform: uppercase;
  letter-spacing: 1px;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 4px;
}

.nav-links a {
  padding: 8px 14px;
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--gray-dark);
  border-radius: var(--radius);
  transition: background 0.2s, color 0.2s;
  white-space: nowrap;
}

.nav-links a:hover,
.nav-links a.active {
  background: var(--blue-light);
  color: var(--blue);
}

.nav-cta {
  background: var(--orange) !important;
  color: #fff !important;
  border-radius: var(--radius) !important;
  padding: 8px 18px !important;
  font-weight: 700 !important;
  transition: background 0.2s !important;
}
.nav-cta:hover {
  background: #e65100 !important;
}

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 4px;
}
.hamburger span {
  display: block;
  width: 26px;
  height: 3px;
  background: var(--blue-dark);
  border-radius: 2px;
  transition: all 0.3s;
}

/* =============================================
   CONTAINER
   ============================================= */
.container {
  width: 100%;
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 20px;
}

/* =============================================
   HERO / PAGE HEADER
   ============================================= */
.hero {
  position: relative;
  min-height: 520px;
  display: flex;
  align-items: center;
  background:
    linear-gradient(to right, rgba(0,0,0,0.62) 0%, rgba(0,0,0,0.40) 60%, rgba(0,0,0,0.22) 100%),
    url('../images/plaza-sign.jpg') center 55% / cover no-repeat;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: transparent;
}

.hero .container {
  position: relative;
  z-index: 2;
  padding-top: 60px;
  padding-bottom: 60px;
}

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

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  background: rgba(255,255,255,0.15);
  color: #fff;
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.8px;
  text-transform: uppercase;
  padding: 5px 14px;
  border-radius: 20px;
  margin-bottom: 18px;
  border: 1px solid rgba(255,255,255,0.25);
}

.hero-badge svg { width:14px; height:14px; fill:#fff; }

.hero h1 {
  font-size: 2.9rem;
  font-weight: 900;
  color: #fff;
  line-height: 1.1;
  margin-bottom: 18px;
}

.hero h1 span {
  color: #ffd54f;
}

.hero p {
  font-size: 1.12rem;
  color: rgba(255,255,255,0.88);
  margin-bottom: 32px;
  max-width: 480px;
}

.hero-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

.hero-info {
  display: flex;
  gap: 28px;
  margin-top: 36px;
  flex-wrap: wrap;
}

.hero-info-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.hero-info-item strong {
  color: #fff;
  font-size: 1rem;
  font-weight: 700;
}

.hero-info-item span {
  color: rgba(255,255,255,0.72);
  font-size: 0.82rem;
}

/* Page-specific hero (shorter) */
.page-hero {
  min-height: 220px;
  background:
    linear-gradient(120deg, rgba(13,71,161,0.90) 0%, rgba(21,101,192,0.85) 100%),
    url('../images/plaza-exterior.jpg') center 40% / cover no-repeat;
  display: flex;
  align-items: center;
}

.page-hero .container {
  padding-top: 40px;
  padding-bottom: 40px;
}

.page-hero h1 {
  font-size: 2.2rem;
  font-weight: 800;
  color: #fff;
  margin-bottom: 8px;
}

.page-hero p {
  color: rgba(255,255,255,0.82);
  font-size: 1.05rem;
}

/* Breadcrumb */
.breadcrumb {
  display: flex;
  align-items: center;
  gap: 7px;
  font-size: 0.85rem;
  color: rgba(255,255,255,0.7);
  margin-bottom: 12px;
}
.breadcrumb a { color: rgba(255,255,255,0.85); }
.breadcrumb a:hover { color: #fff; }
.breadcrumb svg { width:12px; height:12px; fill:rgba(255,255,255,0.5); }

/* =============================================
   BUTTONS
   ============================================= */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 26px;
  border-radius: var(--radius);
  font-weight: 700;
  font-size: 0.98rem;
  cursor: pointer;
  border: none;
  transition: all 0.2s;
  text-decoration: none;
  white-space: nowrap;
}

.btn svg { width:18px; height:18px; }

.btn-primary {
  background: var(--orange);
  color: #fff;
}
.btn-primary:hover {
  background: #e65100;
  transform: translateY(-1px);
  box-shadow: 0 4px 16px rgba(245,124,0,0.35);
}

.btn-secondary {
  background: rgba(255,255,255,0.15);
  color: #fff;
  border: 2px solid rgba(255,255,255,0.5);
  backdrop-filter: blur(4px);
}
.btn-secondary:hover {
  background: rgba(255,255,255,0.25);
  border-color: #fff;
}

.btn-outline {
  background: transparent;
  color: var(--blue);
  border: 2px solid var(--blue);
}
.btn-outline:hover {
  background: var(--blue);
  color: #fff;
}

.btn-white {
  background: #fff;
  color: var(--blue-dark);
}
.btn-white:hover {
  background: var(--blue-light);
  transform: translateY(-1px);
}

/* =============================================
   SECTION SHARED STYLES
   ============================================= */
section {
  padding: 72px 0;
}

.section-label {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--blue);
  margin-bottom: 10px;
}
.section-label svg { width:14px; height:14px; fill:var(--blue); }

.section-title {
  font-size: 2rem;
  font-weight: 800;
  color: var(--text);
  line-height: 1.2;
  margin-bottom: 14px;
}

.section-subtitle {
  font-size: 1.05rem;
  color: var(--gray-dark);
  max-width: 540px;
  margin-bottom: 48px;
}

.section-header {
  text-align: center;
  margin-bottom: 52px;
}

.section-header .section-label {
  justify-content: center;
}

.section-header .section-subtitle {
  margin-left: auto;
  margin-right: auto;
}

/* =============================================
   SERVICES CARDS
   ============================================= */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 28px;
}

.service-card {
  background: #fff;
  border-radius: var(--radius-lg);
  padding: 34px 28px;
  box-shadow: var(--shadow);
  transition: transform 0.25s, box-shadow 0.25s;
  border: 1px solid #e8edf5;
  text-decoration: none;
  color: inherit;
  display: block;
}

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

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

.service-icon svg {
  width: 30px;
  height: 30px;
  fill: var(--blue);
}

.service-card h3 {
  font-size: 1.18rem;
  font-weight: 800;
  color: var(--text);
  margin-bottom: 10px;
}

.service-card p {
  font-size: 0.94rem;
  color: var(--gray-dark);
  line-height: 1.65;
}

.service-card .learn-more {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  margin-top: 18px;
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--blue);
}

.service-card .learn-more svg {
  width: 14px;
  height: 14px;
  fill: var(--blue);
  transition: transform 0.2s;
}

.service-card:hover .learn-more svg {
  transform: translateX(4px);
}

/* =============================================
   PROCESS STEPS
   ============================================= */
.process-section {
  background: var(--gray-light);
}

.steps-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 20px;
  position: relative;
}

.step-card {
  text-align: center;
  padding: 32px 20px;
  background: #fff;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
  position: relative;
}

.step-number {
  width: 46px;
  height: 46px;
  background: var(--blue);
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 900;
  font-size: 1.2rem;
  margin: 0 auto 18px;
}

.step-icon {
  width: 52px;
  height: 52px;
  margin: 0 auto 16px;
}

.step-icon svg {
  width: 100%;
  height: 100%;
  fill: var(--orange);
}

.step-card h3 {
  font-size: 1rem;
  font-weight: 800;
  color: var(--text);
  margin-bottom: 8px;
}

.step-card p {
  font-size: 0.88rem;
  color: var(--gray-dark);
  line-height: 1.6;
}

/* =============================================
   WHY CHOOSE US / FEATURES
   ============================================= */
.features-section {
  background: var(--blue-dark);
  color: #fff;
}

.features-section .section-title {
  color: #fff;
}

.features-section .section-subtitle {
  color: rgba(255,255,255,0.75);
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 28px;
}

.feature-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}

.feature-item-icon {
  width: 48px;
  height: 48px;
  background: rgba(255,255,255,0.12);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.feature-item-icon svg {
  width: 24px;
  height: 24px;
  fill: #90caf9;
}

.feature-item-text h4 {
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 5px;
}

.feature-item-text p {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.72);
  line-height: 1.55;
}

/* =============================================
   TESTIMONIALS
   ============================================= */
.testimonials-section {
  background: var(--gray-light);
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
}

.testimonial-card {
  background: #fff;
  border-radius: var(--radius-lg);
  padding: 28px;
  box-shadow: var(--shadow);
  border-left: 4px solid var(--blue);
}

.stars {
  color: #f9a825;
  font-size: 1.1rem;
  margin-bottom: 14px;
  letter-spacing: 2px;
}

.testimonial-card p {
  font-size: 0.95rem;
  color: var(--gray-dark);
  line-height: 1.7;
  margin-bottom: 20px;
  font-style: italic;
}

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

.author-avatar {
  width: 42px;
  height: 42px;
  background: var(--blue-light);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 1rem;
  color: var(--blue);
  flex-shrink: 0;
}

.author-info strong {
  display: block;
  font-size: 0.95rem;
  color: var(--text);
}

.author-info span {
  font-size: 0.8rem;
  color: var(--gray);
}

/* =============================================
   CTA BANNER
   ============================================= */
.cta-section {
  background: linear-gradient(120deg, var(--orange) 0%, #ff8f00 100%);
  padding: 56px 0;
  text-align: center;
}

.cta-section h2 {
  font-size: 2rem;
  font-weight: 800;
  color: #fff;
  margin-bottom: 12px;
}

.cta-section p {
  font-size: 1.1rem;
  color: rgba(255,255,255,0.88);
  margin-bottom: 32px;
}

.cta-actions {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

/* =============================================
   HOURS / INFO CARDS
   ============================================= */
.info-cards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(270px, 1fr));
  gap: 28px;
}

.info-card {
  background: #fff;
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  box-shadow: var(--shadow);
  border: 1px solid #e8edf5;
}

.info-card-header {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 22px;
}

.info-card-icon {
  width: 50px;
  height: 50px;
  background: var(--blue-light);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.info-card-icon svg {
  width: 26px;
  height: 26px;
  fill: var(--blue);
}

.info-card-header h3 {
  font-size: 1.1rem;
  font-weight: 800;
  color: var(--text);
}

.hours-table {
  width: 100%;
  border-collapse: collapse;
}

.hours-table tr {
  border-bottom: 1px solid #f0f0f0;
}

.hours-table tr:last-child {
  border-bottom: none;
}

.hours-table td {
  padding: 8px 0;
  font-size: 0.94rem;
}

.hours-table td:first-child {
  color: var(--gray-dark);
}

.hours-table td:last-child {
  text-align: right;
  font-weight: 600;
  color: var(--blue-dark);
}

.hours-note {
  margin-top: 14px;
  font-size: 0.84rem;
  color: var(--gray);
  display: flex;
  align-items: center;
  gap: 5px;
}
.hours-note svg { width:14px; height:14px; fill:var(--orange); }

/* =============================================
   MAP SECTION
   ============================================= */
.map-section {
  padding: 0;
}

.map-wrapper {
  width: 100%;
  height: 400px;
  border: none;
  display: block;
}

/* =============================================
   CONTACT FORM
   ============================================= */
.contact-section {
  background: var(--gray-light);
}

.contact-layout {
  display: grid;
  grid-template-columns: 1fr 1.6fr;
  gap: 48px;
  align-items: start;
}

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

.contact-info-item {
  display: flex;
  gap: 14px;
  align-items: flex-start;
}

.contact-info-item-icon {
  width: 44px;
  height: 44px;
  background: var(--blue-light);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.contact-info-item-icon svg { width:22px; height:22px; fill:var(--blue); }

.contact-info-item h4 {
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--gray);
  text-transform: uppercase;
  letter-spacing: 0.8px;
  margin-bottom: 3px;
}

.contact-info-item p,
.contact-info-item a {
  font-size: 0.98rem;
  color: var(--text);
  font-weight: 500;
}

.contact-info-item a:hover { color: var(--blue); }

.contact-form-card {
  background: #fff;
  border-radius: var(--radius-lg);
  padding: 38px;
  box-shadow: var(--shadow);
}

.contact-form-card h3 {
  font-size: 1.3rem;
  font-weight: 800;
  margin-bottom: 24px;
  color: var(--text);
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

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

.form-group label {
  display: block;
  font-size: 0.87rem;
  font-weight: 600;
  color: var(--gray-dark);
  margin-bottom: 6px;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 11px 14px;
  border: 1.5px solid #dde3ee;
  border-radius: var(--radius);
  font-size: 0.95rem;
  color: var(--text);
  font-family: inherit;
  transition: border-color 0.2s, box-shadow 0.2s;
  background: #fafbfe;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--blue);
  box-shadow: 0 0 0 3px rgba(21,101,192,0.10);
  background: #fff;
}

.form-group textarea {
  resize: vertical;
  min-height: 110px;
}

/* =============================================
   FAQ
   ============================================= */
.faq-section {
  background: var(--white);
}

.faq-list {
  max-width: 760px;
  margin: 0 auto;
}

.faq-item {
  border: 1px solid #e4e9f5;
  border-radius: var(--radius);
  margin-bottom: 12px;
  overflow: hidden;
}

.faq-question {
  width: 100%;
  text-align: left;
  padding: 18px 22px;
  font-size: 1rem;
  font-weight: 700;
  color: var(--text);
  background: #fff;
  border: none;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  transition: background 0.2s;
}

.faq-question:hover {
  background: var(--blue-light);
}

.faq-question.open {
  background: var(--blue-light);
  color: var(--blue-dark);
}

.faq-chevron {
  width: 20px;
  height: 20px;
  fill: var(--blue);
  flex-shrink: 0;
  transition: transform 0.3s;
}

.faq-question.open .faq-chevron {
  transform: rotate(180deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease, padding 0.3s;
}

.faq-answer.open {
  max-height: 300px;
  padding: 0 22px 18px;
}

.faq-answer p {
  font-size: 0.95rem;
  color: var(--gray-dark);
  line-height: 1.7;
}

/* =============================================
   STATS BANNER
   ============================================= */
.stats-section {
  background: var(--blue);
  padding: 48px 0;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 16px;
  text-align: center;
}

.stat-item strong {
  display: block;
  font-size: 2.4rem;
  font-weight: 900;
  color: #fff;
  line-height: 1;
}

.stat-item span {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.78);
  margin-top: 6px;
  display: block;
}

/* =============================================
   FOOTER
   ============================================= */
footer {
  background: #0d1b2a;
  color: rgba(255,255,255,0.75);
}

.footer-main {
  padding: 60px 0 40px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.4fr;
  gap: 40px;
}

.footer-brand .logo-text strong {
  color: #fff;
}

.footer-brand .logo-text span {
  color: rgba(255,255,255,0.5);
}

.footer-brand > p {
  margin-top: 16px;
  font-size: 0.9rem;
  line-height: 1.7;
  color: rgba(255,255,255,0.6);
}

.footer-col h4 {
  font-size: 0.95rem;
  font-weight: 800;
  color: #fff;
  margin-bottom: 18px;
  letter-spacing: 0.5px;
}

.footer-col ul li {
  margin-bottom: 10px;
}

.footer-col ul li a {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.62);
  transition: color 0.2s;
}

.footer-col ul li a:hover {
  color: #90caf9;
}

.footer-contact-item {
  display: flex;
  gap: 10px;
  margin-bottom: 14px;
  align-items: flex-start;
}

.footer-contact-item svg {
  width: 16px;
  height: 16px;
  fill: #90caf9;
  flex-shrink: 0;
  margin-top: 2px;
}

.footer-contact-item span {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.65);
  line-height: 1.55;
}

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding: 20px 0;
}

.footer-bottom .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
}

.footer-bottom p {
  font-size: 0.84rem;
  color: rgba(255,255,255,0.42);
}

.footer-bottom a {
  color: rgba(255,255,255,0.55);
  font-size: 0.84rem;
}

.footer-bottom a:hover { color: #90caf9; }

/* =============================================
   SERVICE PAGE SPECIFIC
   ============================================= */
.service-detail-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  margin-bottom: 72px;
}

.service-detail-grid:last-child {
  margin-bottom: 0;
}

.service-detail-grid.reverse {
  direction: rtl;
}

.service-detail-grid.reverse > * {
  direction: ltr;
}

.service-detail-image {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  background: var(--blue-light);
  min-height: 360px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.service-detail-image img {
  width: 100%;
  height: 100%;
  min-height: 360px;
  object-fit: cover;
  display: block;
}

.service-detail-image .icon-placeholder {
  width: 120px;
  height: 120px;
  opacity: 0.35;
}

.service-detail-image .icon-placeholder svg {
  width: 100%;
  height: 100%;
  fill: var(--blue);
}

.service-detail-content h2 {
  font-size: 1.85rem;
  font-weight: 800;
  color: var(--text);
  margin-bottom: 16px;
}

.service-detail-content p {
  font-size: 1rem;
  color: var(--gray-dark);
  line-height: 1.75;
  margin-bottom: 22px;
}

.service-checklist {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 28px;
}

.service-checklist li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.95rem;
  color: var(--gray-dark);
}

.service-checklist li svg {
  width: 18px;
  height: 18px;
  fill: #2e7d32;
  flex-shrink: 0;
}

.pricing-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--orange-light);
  color: var(--orange);
  font-size: 0.88rem;
  font-weight: 700;
  padding: 6px 14px;
  border-radius: 20px;
  margin-bottom: 24px;
  border: 1px solid rgba(245,124,0,0.2);
}

/* =============================================
   LOCATION PAGE
   ============================================= */
.location-layout {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 48px;
  align-items: start;
}

/* =============================================
   NOTICE BANNER
   ============================================= */
.notice-banner {
  background: var(--orange-light);
  border-left: 4px solid var(--orange);
  padding: 14px 20px;
  border-radius: 0 var(--radius) var(--radius) 0;
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 20px;
}

.notice-banner svg {
  width: 20px;
  height: 20px;
  fill: var(--orange);
  flex-shrink: 0;
  margin-top: 1px;
}

.notice-banner p {
  font-size: 0.92rem;
  color: #5d3a00;
  line-height: 1.5;
}

/* =============================================
   RESPONSIVE
   ============================================= */
@media (max-width: 980px) {
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
  .service-detail-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .service-detail-grid.reverse {
    direction: ltr;
  }
  .location-layout {
    grid-template-columns: 1fr;
  }
  .contact-layout {
    grid-template-columns: 1fr;
    gap: 32px;
  }
}

@media (max-width: 768px) {
  .hamburger { display: flex; }

  .nav-links {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: #fff;
    flex-direction: column;
    padding: 16px;
    box-shadow: 0 6px 20px rgba(0,0,0,0.12);
    border-top: 1px solid #eee;
    align-items: stretch;
    gap: 2px;
  }

  .nav-links.open { display: flex; }

  .nav-links a {
    padding: 12px 16px;
    font-size: 1rem;
  }

  .main-nav .container { position: relative; }

  .hero h1 { font-size: 2rem; }
  section { padding: 50px 0; }
  .section-title { font-size: 1.65rem; }
  .form-row { grid-template-columns: 1fr; }
  .contact-form-card { padding: 24px; }

  .top-bar .container {
    flex-direction: column;
    gap: 4px;
    text-align: center;
  }
}

/* =============================================
   PAYMENT CARD BADGES
   ============================================= */
.card-badges {
  display: flex;
  align-items: center;
  gap: 6px;
  flex-wrap: wrap;
}

.card-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 5px 11px;
  border-radius: 5px;
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.3px;
  white-space: nowrap;
  line-height: 1;
}

.card-badge-visa {
  background: #1a1f71;
  color: #fff;
}

.card-badge-mc {
  background: #fff;
  color: #333;
  border: 1.5px solid #bbb;
}

.card-badge-amex {
  background: #2e77bc;
  color: #fff;
}

.payment-info-strip {
  background: var(--blue-light);
  border-radius: var(--radius);
  padding: 14px 20px;
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
  border: 1px solid rgba(21,101,192,0.15);
  margin-top: 20px;
}

.payment-info-strip svg {
  width: 22px;
  height: 22px;
  fill: var(--blue);
  flex-shrink: 0;
}

.payment-info-strip p {
  font-size: 0.9rem;
  color: var(--blue-dark);
  font-weight: 600;
  flex: 1;
}

/* Footer card badges — lighter for dark bg */
.footer-card-badges .card-badge-visa,
.footer-card-badges .card-badge-amex {
  opacity: 0.85;
}
.footer-card-badges .card-badge-mc {
  background: rgba(255,255,255,0.18);
  color: #fff;
  border-color: rgba(255,255,255,0.3);
}

/* =============================================
   PHOTO GALLERY
   ============================================= */
.gallery-section {
  background: #fff;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}

.gallery-item {
  overflow: hidden;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
  background: var(--blue-light);
  position: relative;
}

.gallery-item img {
  width: 100%;
  height: 250px;
  object-fit: cover;
  display: block;
  transition: transform 0.38s ease;
}

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

.gallery-item.featured {
  grid-column: span 2;
}

.gallery-item.featured img {
  height: 340px;
}

.gallery-caption {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(transparent, rgba(0,0,0,0.60));
  color: #fff;
  padding: 28px 16px 14px;
  font-size: 0.88rem;
  font-weight: 700;
  pointer-events: none;
}

@media (max-width: 768px) {
  .gallery-grid {
    grid-template-columns: 1fr 1fr;
  }
  .gallery-item.featured {
    grid-column: span 2;
  }
  .gallery-item img { height: 200px; }
  .gallery-item.featured img { height: 260px; }
}

@media (max-width: 480px) {
  .gallery-grid {
    grid-template-columns: 1fr;
  }
  .gallery-item.featured {
    grid-column: span 1;
  }
  .gallery-item.featured img { height: 220px; }
}

/* =============================================
   RESPONSIVE (continued)
   ============================================= */
@media (max-width: 540px) {
  .footer-grid { grid-template-columns: 1fr; }
  .hero h1 { font-size: 1.7rem; }
  .hero-actions { flex-direction: column; }
  .stats-grid { grid-template-columns: 1fr 1fr; }
}
