/* Decorarta Home Services - Homeasy theme (navy + yellow + sky blue) */
:root {
  --yellow-bar: #FFC107;
  --yellow-primary: #FFC107;
  --yellow-hover: #FFD54F;
  --navy-primary: #0B1B3A;
  --navy-secondary: #15325B;
  --navy-dark: #061228;
  --brown-primary: #0B1B3A;
  --brown-secondary: #15325B;
  --brown-dark: #061228;
  --gold-accent: #FFC107;
  --gold-light: #FFD54F;
  --cream-bg: #EDF6FC;
  --cream-section: #D9ECFA;
  --sky-light: #F5FAFD;
  --text-dark: #0B1B3A;
  --text-muted: #5A6B7D;
  --white: #FFFFFF;
  --border: #C5DEEE;
  --check-green: #22C55E;
  --shadow: 0 4px 24px rgba(11, 27, 58, 0.08);
  --shadow-lg: 0 12px 40px rgba(11, 27, 58, 0.12);
  --radius: 16px;
  --radius-lg: 28px;
  --transition: 0.3s ease;
  --font-heading: 'Poppins', sans-serif;
  --font-body: 'Open Sans', sans-serif;
  --container: 1200px;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.7;
  color: var(--text-dark);
  background: var(--cream-bg);
}

img { max-width: 100%; height: auto; display: block; }

a { color: var(--brown-primary); text-decoration: none; transition: color var(--transition); }
a:hover { color: var(--gold-accent); }

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  font-weight: 600;
  line-height: 1.3;
  color: var(--text-dark);
}

.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 20px;
}

/* Top Yellow Bar */
.top-bar {
  background: var(--yellow-bar);
  color: var(--navy-primary);
  padding: 10px 0;
  font-size: 14px;
  font-weight: 600;
}

.top-bar .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 10px;
}

.top-bar a {
  color: var(--navy-primary);
  font-weight: 700;
  text-decoration: underline;
}

.top-bar a:hover { color: var(--navy-secondary); }

/* Header */
.site-header {
  background: var(--white);
  box-shadow: var(--shadow);
  position: sticky;
  top: 0;
  z-index: 1000;
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 15px 0;
  gap: 20px;
}

.logo-link {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
}

.logo-link img { height: 48px; width: auto; }

.logo-text {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 18px;
  color: var(--brown-primary);
  line-height: 1.2;
}

.logo-text span { display: block; font-size: 11px; font-weight: 500; color: var(--text-muted); }

.main-nav ul {
  display: flex;
  align-items: center;
  gap: 6px;
  list-style: none;
  flex-wrap: wrap;
}

.main-nav a {
  padding: 8px 12px;
  font-size: 14px;
  font-weight: 500;
  color: var(--text-dark);
  border-radius: 6px;
}

.main-nav a:hover,
.main-nav a.active {
  background: var(--cream-section);
  color: var(--brown-primary);
}

.header-cta .btn { padding: 10px 22px; font-size: 14px; }

.nav-toggle {
  display: none;
  background: none;
  border: none;
  font-size: 24px;
  color: var(--brown-primary);
  cursor: pointer;
  padding: 8px;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 28px;
  font-family: var(--font-heading);
  font-size: 15px;
  font-weight: 600;
  border-radius: 50px;
  border: 2px solid transparent;
  cursor: pointer;
  transition: all var(--transition);
  text-align: center;
}

.btn-primary {
  background: var(--brown-primary);
  color: var(--white);
  border-color: var(--brown-primary);
}

.btn-primary:hover {
  background: var(--brown-secondary);
  border-color: var(--brown-secondary);
  color: var(--white);
}

.btn-outline {
  background: transparent;
  color: var(--brown-primary);
  border-color: var(--brown-primary);
}

.btn-outline:hover {
  background: var(--brown-primary);
  color: var(--white);
}

.btn-gold {
  background: var(--yellow-primary);
  color: var(--navy-primary);
  border-color: var(--yellow-primary);
}

.btn-gold:hover {
  background: var(--yellow-hover);
  border-color: var(--yellow-hover);
  color: var(--navy-primary);
}

.btn-sm { padding: 10px 20px; font-size: 14px; }

.btn-white-outline {
  background: transparent;
  color: var(--white);
  border: 2px solid var(--white);
}

.btn-white-outline:hover {
  background: var(--white);
  color: var(--navy-primary);
  border-color: var(--white);
}

/* Section utilities */
section { padding: 80px 0; }

.section-alt { background: var(--cream-section); }

.section-dark {
  background: var(--brown-primary);
  color: var(--white);
}

.section-dark h2,
.section-dark h3,
.section-dark h4 { color: var(--white); }

.section-dark p { color: rgba(255,255,255,0.85); }

.section-label {
  display: inline-block;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--navy-primary);
  background: var(--yellow-primary);
  padding: 6px 14px;
  border-radius: 4px;
  margin-bottom: 14px;
}

.section-title {
  font-size: clamp(28px, 4vw, 40px);
  margin-bottom: 16px;
}

.section-desc {
  color: var(--text-muted);
  max-width: 600px;
  margin-bottom: 40px;
}

.text-center { text-align: center; }
.text-center .section-desc { margin-left: auto; margin-right: auto; }

/* Page Hero (inner pages) */
.page-hero {
  background: linear-gradient(135deg, var(--navy-primary) 0%, var(--navy-secondary) 100%);
  color: var(--white);
  padding: 60px 0;
  text-align: center;
}

.page-hero h1 {
  color: var(--white);
  font-size: clamp(32px, 5vw, 48px);
  margin-bottom: 12px;
}

.page-hero p {
  color: rgba(255,255,255,0.9);
  max-width: 700px;
  margin: 0 auto;
  font-size: 18px;
}

.breadcrumb {
  margin-top: 20px;
  font-size: 14px;
}

.breadcrumb a { color: var(--yellow-primary); }
.breadcrumb span { color: rgba(255,255,255,0.7); }

/* Hero Home */
.hero {
  padding: 60px 0 80px;
  background: var(--cream-bg);
  overflow: hidden;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: center;
}

.hero-badge {
  display: inline-block;
  background: var(--yellow-primary);
  color: var(--navy-primary);
  padding: 8px 16px;
  border-radius: 4px;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 20px;
}

.hero h1 {
  font-size: clamp(32px, 5vw, 48px);
  margin-bottom: 20px;
  line-height: 1.2;
}

.hero h1 span { color: var(--navy-primary); }

.hero-text {
  color: var(--text-muted);
  font-size: 17px;
  margin-bottom: 28px;
}

.hero-btns {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-bottom: 32px;
}

.hero-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  list-style: none;
}

.hero-features li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  font-weight: 500;
}

.hero-features i {
  color: var(--check-green);
  font-size: 18px;
}

.hero-image {
  position: relative;
}

.hero-image img {
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
}

.hero-image::before {
  content: '';
  position: absolute;
  top: -16px;
  right: -16px;
  width: 100%;
  height: 100%;
  background: var(--yellow-primary);
  border-radius: var(--radius-lg);
  z-index: -1;
  opacity: 0.45;
}

/* Stats */
.stats-bar {
  background: var(--sky-light);
  padding: 50px 0;
  color: var(--text-dark);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
  text-align: center;
}

.stat-item h3 {
  font-size: 42px;
  color: var(--navy-primary);
  margin-bottom: 8px;
  font-family: var(--font-heading);
}

.stat-item p {
  font-size: 14px;
  color: var(--text-muted);
}

/* Service Cards */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 28px;
}

.service-card {
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: transform var(--transition), box-shadow var(--transition);
}

.service-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}

.service-card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.service-card-body { padding: 24px; }

.service-card h3 {
  font-size: 20px;
  margin-bottom: 12px;
}

.service-card p {
  color: var(--text-muted);
  font-size: 15px;
  margin-bottom: 16px;
}

.service-card .link-arrow {
  font-weight: 600;
  font-size: 14px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--navy-primary);
}

.service-card.featured {
  background: var(--yellow-primary);
  box-shadow: var(--shadow-lg);
}

.service-card.featured .service-card-body h3,
.service-card.featured .service-card-body p,
.service-card.featured .link-arrow {
  color: var(--navy-primary);
}

.service-card.featured .btn {
  margin-top: 8px;
}

/* About block */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: center;
}

.about-image img {
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
}

.check-list {
  list-style: none;
  margin: 24px 0;
}

.check-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 14px;
  font-weight: 500;
}

.check-list i {
  color: var(--check-green);
  margin-top: 4px;
  flex-shrink: 0;
}

/* Why choose - numbered */
.why-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 28px;
}

.why-item {
  background: var(--white);
  padding: 28px;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  border: 1px solid var(--border);
  border-left: 4px solid var(--yellow-primary);
}

.why-num {
  font-size: 14px;
  font-weight: 700;
  color: var(--navy-primary);
  margin-bottom: 12px;
}

.why-item h4 {
  font-size: 18px;
  margin-bottom: 10px;
}

.why-item p {
  color: var(--text-muted);
  font-size: 15px;
}

/* Process steps */
.process-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.process-step {
  text-align: left;
  padding: 28px 24px;
  background: var(--cream-section);
  border-radius: var(--radius);
  border: 1px solid var(--border);
  box-shadow: none;
  position: relative;
}

.process-label {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--navy-primary);
  background: var(--yellow-primary);
  display: inline-block;
  padding: 4px 10px;
  border-radius: 4px;
  margin-bottom: 14px;
}

.process-step .step-num {
  width: 48px;
  height: 48px;
  background: var(--navy-primary);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  font-weight: 700;
  margin: 0 auto 20px;
}

.process-step h4 { margin-bottom: 12px; font-size: 18px; }
.process-step p { color: var(--text-muted); font-size: 15px; }

/* Pricing cards */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  align-items: stretch;
}

.pricing-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 36px 28px;
  box-shadow: var(--shadow);
  text-align: center;
  position: relative;
  border: 2px solid var(--border);
  transition: border-color var(--transition), transform var(--transition);
}

.pricing-card.featured {
  background: var(--navy-primary);
  border-color: var(--navy-primary);
  transform: scale(1.04);
  color: var(--white);
}

.pricing-card.featured h3,
.pricing-card.featured .plan-num,
.pricing-card.featured .pricing-price,
.pricing-card.featured .plan-desc,
.pricing-card.featured .pricing-ideal {
  color: var(--white);
}

.pricing-card.featured .pricing-price span {
  color: rgba(255, 255, 255, 0.75);
}

.pricing-card.featured .pricing-includes li {
  color: rgba(255, 255, 255, 0.92);
}

.pricing-card.featured .pricing-includes i {
  color: var(--yellow-primary);
}

.pricing-card.featured .btn-primary {
  background: var(--yellow-primary);
  color: var(--navy-primary);
  border-color: var(--yellow-primary);
}

.pricing-card.featured .btn-primary:hover {
  background: var(--yellow-hover);
  border-color: var(--yellow-hover);
}

.pricing-card .plan-num {
  font-size: 13px;
  font-weight: 700;
  color: var(--navy-primary);
  margin-bottom: 8px;
}

.pricing-card h3 { font-size: 22px; margin-bottom: 16px; }

.pricing-price {
  font-size: 42px;
  font-weight: 700;
  color: var(--brown-primary);
  font-family: var(--font-heading);
}

.pricing-price span {
  font-size: 16px;
  font-weight: 400;
  color: var(--text-muted);
}

.pricing-card .plan-desc {
  color: var(--text-muted);
  font-size: 14px;
  margin: 16px 0 24px;
  padding-bottom: 24px;
  border-bottom: 1px solid var(--border);
}

.pricing-includes {
  text-align: left;
  list-style: none;
  margin-bottom: 24px;
}

.pricing-includes li {
  padding: 8px 0;
  font-size: 14px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.pricing-includes i { color: var(--check-green); }

.pricing-ideal {
  font-size: 13px;
  color: var(--text-muted);
  margin-bottom: 24px;
  font-style: italic;
}

/* Testimonials */
.testimonials-slider {
  overflow: hidden;
  position: relative;
}

.testimonials-track {
  display: flex;
  gap: 24px;
  transition: transform 0.5s ease;
}

.testimonial-card {
  flex: 0 0 calc(33.333% - 16px);
  min-width: 280px;
  background: var(--white);
  padding: 28px;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.testimonial-card .quote {
  font-size: 15px;
  color: var(--text-muted);
  margin-bottom: 20px;
  font-style: italic;
}

.testimonial-card .author {
  display: flex;
  align-items: center;
  gap: 14px;
}

.testimonial-card .author img {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  object-fit: cover;
}

.testimonial-card .author-info h5 { font-size: 15px; margin-bottom: 2px; }
.testimonial-card .author-info span { font-size: 13px; color: var(--text-muted); }

.slider-controls {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-top: 30px;
}

.slider-btn {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 2px solid var(--brown-primary);
  background: var(--white);
  color: var(--brown-primary);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all var(--transition);
}

.slider-btn:hover {
  background: var(--brown-primary);
  color: var(--white);
}

/* FAQ Accordion */
.faq-list { max-width: 800px; margin: 0 auto; }

.faq-item {
  background: var(--white);
  border-radius: var(--radius);
  margin-bottom: 12px;
  box-shadow: var(--shadow);
  overflow: hidden;
}

.faq-question {
  width: 100%;
  padding: 20px 24px;
  background: none;
  border: none;
  text-align: left;
  font-family: var(--font-heading);
  font-size: 16px;
  font-weight: 600;
  color: var(--text-dark);
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
}

.faq-question i { transition: transform var(--transition); color: var(--navy-primary); }

.faq-item.active .faq-question i { transform: rotate(180deg); }

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease;
}

.faq-answer-inner {
  padding: 0 24px 20px;
  color: var(--text-muted);
  font-size: 15px;
}

.faq-item.active .faq-answer { max-height: 500px; }

/* Forms */
.form-section {
  background: var(--white);
  padding: 40px;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
}

.form-section.form-panel-navy {
  background: var(--navy-primary);
  color: var(--white);
}

.form-section.form-panel-navy label {
  color: rgba(255, 255, 255, 0.95);
}

.form-section.form-panel-navy .form-control {
  background: rgba(255, 255, 255, 0.95);
  border-color: transparent;
}

.form-section.form-panel-navy .form-control:focus {
  border-color: var(--yellow-primary);
}

.form-section.form-panel-navy .btn-primary {
  background: var(--yellow-primary);
  color: var(--navy-primary);
  border-color: var(--yellow-primary);
  width: 100%;
}

.form-section.form-panel-navy .btn-primary:hover {
  background: var(--yellow-hover);
  border-color: var(--yellow-hover);
}

.booking-section-alt {
  background: var(--cream-section);
}

.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.form-group { margin-bottom: 20px; }

.form-group.full-width { grid-column: 1 / -1; }

.form-group label {
  display: block;
  font-weight: 600;
  font-size: 14px;
  margin-bottom: 8px;
  color: var(--text-dark);
}

.form-group label .required { color: #c0392b; }

.form-control {
  width: 100%;
  padding: 12px 16px;
  border: 2px solid var(--border);
  border-radius: 8px;
  font-family: var(--font-body);
  font-size: 15px;
  transition: border-color var(--transition);
  background: var(--white);
}

.form-control:focus {
  outline: none;
  border-color: var(--brown-primary);
}

.form-control.error { border-color: #c0392b; }

.form-error {
  color: #c0392b;
  font-size: 13px;
  margin-top: 6px;
  display: none;
}

.form-error.visible { display: block; }

.form-success {
  background: #d4edda;
  color: #155724;
  padding: 16px 20px;
  border-radius: 8px;
  margin-bottom: 20px;
  display: none;
  font-weight: 500;
}

.form-success.visible { display: block; }

.checkbox-group {
  display: flex;
  align-items: flex-start;
  gap: 10px;
}

.checkbox-group input { margin-top: 4px; }

/* Team */
.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 28px;
}

.team-card {
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  text-align: center;
}

.team-card img {
  width: 100%;
  height: 280px;
  object-fit: cover;
}

.team-card-body { padding: 24px; }

.team-card h3 { font-size: 20px; margin-bottom: 6px; }

.team-card .role {
  color: var(--navy-secondary);
  font-weight: 600;
  font-size: 14px;
  margin-bottom: 16px;
}

.team-social {
  display: flex;
  justify-content: center;
  gap: 12px;
}

.team-social a {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--cream-section);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--brown-primary);
}

.team-social a:hover {
  background: var(--brown-primary);
  color: var(--white);
}

/* Blog */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 28px;
}

.blog-card {
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: transform var(--transition);
}

.blog-card:hover { transform: translateY(-4px); }

.blog-card img { height: 220px; object-fit: cover; width: 100%; }

.blog-card-body { padding: 24px; }

.blog-meta {
  font-size: 13px;
  color: var(--text-muted);
  margin-bottom: 10px;
}

.blog-card h3 { font-size: 20px; margin-bottom: 12px; }

.blog-card h3 a { color: var(--text-dark); }
.blog-card h3 a:hover { color: var(--brown-primary); }

/* CTA Band */
.cta-band {
  background: linear-gradient(135deg, var(--navy-primary) 0%, var(--navy-secondary) 55%, #1e4a7a 100%);
  padding: 70px 0;
  text-align: center;
  color: var(--white);
  position: relative;
  overflow: hidden;
}

.cta-band::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 30% 20%, rgba(255, 193, 7, 0.15), transparent 50%);
  pointer-events: none;
}

.cta-band .container {
  position: relative;
  z-index: 1;
}

.cta-band .section-label {
  background: var(--yellow-primary);
  color: var(--navy-primary);
}

.cta-band h2 { color: var(--white); margin-bottom: 16px; }

.cta-band p {
  color: rgba(255,255,255,0.9);
  max-width: 600px;
  margin: 0 auto 28px;
}

.cta-btns {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 14px;
  margin-bottom: 32px;
}

.cta-features {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 24px;
  list-style: none;
}

.cta-features li {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
}

.cta-features i { color: var(--yellow-primary); }

/* Footer */
.site-footer {
  background: var(--navy-dark);
  color: rgba(255,255,255,0.85);
  padding-top: 60px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 40px;
}

.footer-col h4 {
  color: var(--white);
  font-size: 16px;
  margin-bottom: 20px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.footer-col p { font-size: 14px; line-height: 1.8; }

.footer-links { list-style: none; }

.footer-links li { margin-bottom: 10px; }

.footer-links a {
  color: rgba(255,255,255,0.75);
  font-size: 14px;
}

.footer-links a:hover { color: var(--yellow-primary); }

.footer-social {
  display: flex;
  gap: 12px;
  margin-top: 16px;
}

.footer-social a {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255,255,255,0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
}

.footer-social a:hover {
  background: var(--yellow-primary);
  color: var(--navy-primary);
}

.footer-newsletter {
  display: flex;
  gap: 8px;
  margin-top: 12px;
}

.footer-newsletter input {
  flex: 1;
  padding: 10px 14px;
  border: none;
  border-radius: 6px;
  font-size: 14px;
}

.footer-newsletter button {
  padding: 10px 16px;
  background: var(--yellow-primary);
  border: none;
  border-radius: 6px;
  color: var(--navy-primary);
  font-weight: 600;
  cursor: pointer;
}

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.15);
  padding: 24px 0;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  font-size: 14px;
}

.footer-legal {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}

.footer-legal a {
  color: rgba(255,255,255,0.7);
}

.footer-legal a:hover { color: var(--yellow-primary); }

/* Legal content */
.legal-content {
  background: var(--white);
  padding: 50px;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  max-width: 900px;
  margin: 0 auto;
}

.legal-content h2 {
  font-size: 22px;
  margin: 32px 0 16px;
  color: var(--brown-primary);
}

.legal-content h2:first-child { margin-top: 0; }

.legal-content p,
.legal-content li {
  color: var(--text-muted);
  margin-bottom: 14px;
}

.legal-content ul {
  margin-left: 24px;
  margin-bottom: 16px;
}

/* Service detail */
.service-detail-hero {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
  margin-bottom: 50px;
}

.detail-content h2 { margin: 30px 0 16px; font-size: 24px; }

.detail-content ul {
  margin-left: 24px;
  color: var(--text-muted);
}

.detail-content ul li { margin-bottom: 8px; }

.related-services {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 20px;
}

.related-services a {
  padding: 8px 16px;
  background: var(--cream-section);
  border-radius: 50px;
  font-size: 14px;
  font-weight: 500;
}

/* Blog article */
.article-content {
  background: var(--white);
  padding: 50px;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  max-width: 800px;
  margin: 0 auto;
}

.article-content h2 { font-size: 24px; margin: 32px 0 16px; }
.article-content p { margin-bottom: 16px; color: var(--text-muted); }
.article-content ul { margin: 16px 0 16px 24px; color: var(--text-muted); }

.article-hero-img {
  border-radius: var(--radius-lg);
  margin-bottom: 40px;
  max-height: 400px;
  width: 100%;
  object-fit: cover;
}

/* Two column layout */
.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: start;
}

.booking-layout {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 50px;
  align-items: start;
}

.contact-info-card {
  background: var(--brown-primary);
  color: var(--white);
  padding: 40px;
  border-radius: var(--radius-lg);
}

.contact-info-card h3 { color: var(--white); margin-bottom: 20px; }

.contact-info-card p { margin-bottom: 16px; opacity: 0.9; }

.contact-info-card a { color: var(--yellow-primary); }

.contact-info-card i {
  color: var(--yellow-primary);
  margin-right: 10px;
  width: 20px;
}

/* Homeasy-style service icon header on cards */
.service-card-icon {
  width: 56px;
  height: 56px;
  background: var(--cream-section);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--navy-primary);
  font-size: 24px;
  margin-bottom: 16px;
}

.service-card.featured .service-card-icon {
  background: rgba(11, 27, 58, 0.12);
}
