/* ==========================================================================
   D For Trust Hospitality - Main Stylesheet
   Color Palette: Blue #2D6F9E | Green #2E8B57 | Light Brown #D8C3A0
                  Cream #F6F1E7 | Dark Brown #4A3B2E
   ========================================================================== */

:root {
  --chambray: #2D6F9E;
  --chambray-dark: #1F4E73;
  --terracotta: #2E8B57;
  --terracotta-dark: #21643F;
  --sandstone: #D8C3A0;
  --muslin: #F6F1E7;
  --clove: #4A3B2E;

  --text-main: #3a322e;
  --text-light: #6f6660;
  --white: #ffffff;

  --font-heading: 'Poppins', sans-serif;
  --font-body: 'Lato', sans-serif;

  --radius: 14px;
  --shadow-sm: 0 4px 16px rgba(74, 59, 46, 0.08);
  --shadow-md: 0 10px 30px rgba(74, 59, 46, 0.12);
  --shadow-lg: 0 20px 50px rgba(74, 59, 46, 0.18);

  --transition: all 0.35s ease;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  color: var(--text-main);
  background-color: var(--white);
  line-height: 1.7;
  overflow-x: hidden;
}

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

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

ul { list-style: none; }

h1, h2, h3, h4, h5 {
  font-family: var(--font-heading);
  font-weight: 700;
  color: var(--clove);
  line-height: 1.25;
}

p { color: var(--text-light); }

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

section { padding: 80px 0; }

@media (max-width: 768px) {
  section { padding: 56px 0; }
}

/* ---------- Section headings ---------- */
.section-tag {
  display: inline-block;
  text-transform: uppercase;
  letter-spacing: 3px;
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--terracotta);
  margin-bottom: 12px;
}

.section-title {
  font-size: clamp(1.8rem, 4vw, 2.6rem);
  margin-bottom: 16px;
}

.section-sub {
  max-width: 680px;
  color: var(--text-light);
  font-size: 1.05rem;
}

.center { text-align: center; margin-left: auto; margin-right: auto; }

.underline-bar {
  height: 4px;
  width: 64px;
  background: linear-gradient(90deg, var(--terracotta), var(--chambray));
  border-radius: 4px;
  margin: 14px 0 22px;
}
.center .underline-bar { margin-left: auto; margin-right: auto; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 32px;
  border-radius: 50px;
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 0.95rem;
  letter-spacing: 0.4px;
  border: 2px solid transparent;
  cursor: pointer;
  transition: var(--transition);
  white-space: nowrap;
}

.btn-primary {
  background: var(--terracotta);
  color: var(--white);
  box-shadow: var(--shadow-sm);
}
.btn-primary:hover {
  background: var(--terracotta-dark);
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}

.btn-outline {
  background: transparent;
  border-color: var(--white);
  color: var(--white);
}
.btn-outline:hover {
  background: var(--white);
  color: var(--clove);
  transform: translateY(-3px);
}

.btn-secondary {
  background: var(--chambray);
  color: var(--white);
}
.btn-secondary:hover {
  background: var(--chambray-dark);
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}

.btn-dark-outline {
  background: transparent;
  border-color: var(--clove);
  color: var(--clove);
}
.btn-dark-outline:hover {
  background: var(--clove);
  color: var(--white);
  transform: translateY(-3px);
}

/* ==========================================================================
   HEADER / NAVIGATION
   ========================================================================== */
.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(10px);
  box-shadow: 0 2px 16px rgba(74, 59, 46, 0.06);
  transition: var(--transition);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 84px;
}

.logo img {
  height: 58px;
  width: auto;
  transition: var(--transition);
}

.header.scrolled .header-inner { height: 70px; }
.header.scrolled .logo img { height: 48px; }

.nav-list {
  display: flex;
  align-items: center;
  gap: 36px;
}

.nav-list > li > a {
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 0.96rem;
  color: var(--clove);
  position: relative;
  padding: 8px 2px;
  display: flex;
  align-items: center;
  gap: 6px;
  transition: var(--transition);
}

.nav-list > li > a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--terracotta);
  transition: width 0.3s ease;
}

.nav-list > li > a:hover,
.nav-list > li.active > a {
  color: var(--terracotta);
}
.nav-list > li > a:hover::after,
.nav-list > li.active > a::after {
  width: 100%;
}

.arrow {
  width: 9px;
  height: 9px;
  border-right: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  transform: rotate(45deg);
  margin-top: -4px;
  transition: transform 0.3s ease;
}

.dropdown { position: relative; }

.dropdown-menu {
  position: absolute;
  top: calc(100% + 18px);
  left: -20px;
  background: var(--white);
  min-width: 250px;
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
  padding: 10px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: var(--transition);
}

.dropdown:hover .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.dropdown:hover .arrow { transform: rotate(225deg); margin-top: 4px; }

.dropdown-menu li a {
  display: block;
  padding: 12px 16px;
  border-radius: 8px;
  font-family: var(--font-heading);
  font-weight: 500;
  font-size: 0.92rem;
  color: var(--clove);
  transition: var(--transition);
}

.dropdown-menu li a:hover {
  background: var(--muslin);
  color: var(--terracotta);
  padding-left: 22px;
}

.dropdown-menu li + li { margin-top: 4px; }

.nav-cta {
  margin-left: 8px;
}

/* Attractive animated "Get a Quote" button */
.nav-cta .btn-primary {
  position: relative;
  overflow: hidden;
  color: var(--white);
  animation: ctaPulse 2.4s ease-in-out infinite;
}
.nav-cta .btn-primary::before {
  content: '';
  position: absolute;
  top: 0;
  left: -75%;
  width: 50%;
  height: 100%;
  background: linear-gradient(120deg, transparent, rgba(255,255,255,0.5), transparent);
  transform: skewX(-20deg);
  animation: ctaShine 3.2s ease-in-out infinite;
}
.nav-cta .btn-primary:hover {
  animation-play-state: paused;
}
@keyframes ctaPulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(46,139,87,0.45), var(--shadow-sm); }
  50% { box-shadow: 0 0 0 9px rgba(46,139,87,0), var(--shadow-sm); }
}
@keyframes ctaShine {
  0% { left: -75%; }
  45% { left: 130%; }
  100% { left: 130%; }
}

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 36px;
  height: 36px;
  background: none;
  border: none;
  cursor: pointer;
  z-index: 1100;
}
.hamburger span {
  display: block;
  height: 2px;
  width: 100%;
  background: var(--clove);
  border-radius: 2px;
  transition: var(--transition);
}
.hamburger.active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.active span:nth-child(2) { opacity: 0; }
.hamburger.active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ==========================================================================
   HERO SECTIONS
   ========================================================================== */
.hero {
  position: relative;
  min-height: 92vh;
  display: flex;
  align-items: center;
  background: linear-gradient(135deg, var(--clove) 0%, var(--chambray) 60%, var(--terracotta) 130%);
  overflow: hidden;
  padding-top: 84px;
}

.hero::after {
  content: '';
  position: absolute;
  width: 600px;
  height: 600px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(45,111,158,0.35), transparent 70%);
  top: -200px;
  right: -200px;
  z-index: 1;
}

/* ---------- Hero slider ---------- */
.hero-slide {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  opacity: 0;
  transition: opacity 1.4s ease;
  z-index: 0;
}
.hero-slide.active { opacity: 1; z-index: 1; }

.hero-overlay { position: absolute; inset: 0; }
.overlay-cleaning { background: linear-gradient(120deg, rgba(74,59,46,0.92) 10%, rgba(46,139,87,0.55) 100%); }
.overlay-hospitality { background: linear-gradient(120deg, rgba(74,59,46,0.92) 10%, rgba(45,111,158,0.55) 100%); }
.overlay-maid { background: linear-gradient(120deg, rgba(74,59,46,0.92) 10%, rgba(216,195,160,0.45) 100%); }

.hero-inner {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 50px;
  width: 100%;
}

.hero-content {
  max-width: 620px;
  flex: 1 1 auto;
}

.hero-content .section-tag { color: var(--sandstone); }

.hero-content h1 {
  font-size: clamp(2.2rem, 5.5vw, 3.6rem);
  color: var(--white);
  margin-bottom: 20px;
}

.hero-content h1 span { color: var(--sandstone); }

.hero-content p {
  color: rgba(255,255,255,0.85);
  font-size: 1.1rem;
  max-width: 560px;
  margin-bottom: 32px;
}

.hero-buttons {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
}

/* Per-slide text panels */
.hero-text { display: none; }
.hero-text.active { display: block; animation: fadeInUp 0.8s ease; }

/* Slide dots */
.hero-dots {
  display: flex;
  gap: 10px;
  margin-top: 40px;
}
.hero-dots .dot {
  width: 36px;
  height: 5px;
  border-radius: 4px;
  background: rgba(255,255,255,0.3);
  border: none;
  cursor: pointer;
  padding: 0;
  transition: var(--transition);
}
.hero-dots .dot.active { background: var(--terracotta); width: 52px; }
.hero-dots .dot:hover { background: rgba(255,255,255,0.55); }

.hero-stats {
  position: relative;
  z-index: 2;
  display: flex;
  gap: 40px;
  margin-top: 50px;
  flex-wrap: wrap;
}

.hero-stats .stat-num {
  font-family: var(--font-heading);
  font-size: 2.2rem;
  font-weight: 700;
  color: var(--sandstone);
}
.hero-stats .stat-label {
  color: rgba(255,255,255,0.75);
  font-size: 0.88rem;
  letter-spacing: 1px;
  text-transform: uppercase;
}

/* ---------- Hero quick inquiry form ---------- */
.hero-form-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 32px;
  box-shadow: var(--shadow-lg);
  width: 100%;
  max-width: 360px;
  flex-shrink: 0;
}
.hero-form-card h3 { font-size: 1.3rem; margin-bottom: 6px; }
.hero-form-card > p { font-size: 0.9rem; margin-bottom: 22px; color: var(--text-light); }
.hero-form-card .form-group { margin-bottom: 14px; }
.hero-form-card input,
.hero-form-card select {
  width: 100%;
  padding: 13px 14px;
  border: 1.5px solid var(--sandstone);
  border-radius: 10px;
  font-family: var(--font-body);
  font-size: 0.92rem;
  background: var(--muslin);
  color: var(--text-main);
  transition: var(--transition);
}
.hero-form-card input:focus,
.hero-form-card select:focus {
  outline: none;
  border-color: var(--chambray);
  background: var(--white);
  box-shadow: 0 0 0 4px rgba(45,111,158,0.15);
}
.hero-form-card .btn {
  width: 100%;
  justify-content: center;
  margin-top: 4px;
}

@media (max-width: 1100px) {
  .hero-inner { flex-direction: column; align-items: stretch; }
  .hero-content { max-width: 100%; }
  .hero-form-card { max-width: 440px; }
}
@media (max-width: 768px) {
  .hero { min-height: auto; padding-bottom: 60px; }
  .hero-inner { padding-top: 50px; padding-bottom: 10px; }
  .hero-form-card { max-width: 100%; padding: 26px; }
}

/* Page Hero (smaller, for inner pages) */
.page-hero {
  position: relative;
  min-height: 46vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  background: linear-gradient(135deg, var(--clove) 0%, var(--chambray) 60%, var(--terracotta) 130%);
  padding-top: 84px;
  overflow: hidden;
}

.page-hero::after {
  content: '';
  position: absolute;
  width: 500px;
  height: 500px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(45,111,158,0.3), transparent 70%);
  bottom: -250px;
  left: -150px;
  z-index: 1;
}

.page-hero-content { position: relative; z-index: 2; }

.page-hero h1 {
  color: var(--white);
  font-size: clamp(2rem, 5vw, 3.2rem);
  margin-bottom: 14px;
}

.breadcrumb {
  display: flex;
  justify-content: center;
  gap: 10px;
  color: var(--sandstone);
  font-family: var(--font-heading);
  font-weight: 500;
  font-size: 0.95rem;
}
.breadcrumb a { color: rgba(255,255,255,0.75); transition: var(--transition); }
.breadcrumb a:hover { color: var(--sandstone); }

/* ---------- Legal Content (Privacy Policy / Terms) ---------- */
.legal-content {
  max-width: 820px;
  margin: 0 auto;
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
  padding: 48px;
}
@media (max-width: 768px) {
  .legal-content { padding: 28px 22px; }
}
.legal-content .updated-date {
  display: inline-block;
  background: var(--muslin);
  color: var(--terracotta);
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 0.85rem;
  padding: 6px 16px;
  border-radius: 50px;
  margin-bottom: 28px;
}
.legal-content h2 {
  font-size: 1.4rem;
  margin: 34px 0 14px;
  padding-top: 8px;
  border-top: 1px solid var(--sandstone);
}
.legal-content h2:first-of-type {
  margin-top: 0;
  padding-top: 0;
  border-top: none;
}
.legal-content p { margin-bottom: 14px; }
.legal-content ul {
  margin: 0 0 14px 0;
  padding-left: 0;
  display: grid;
  gap: 8px;
}
.legal-content ul li {
  position: relative;
  padding-left: 26px;
  color: var(--text-light);
}
.legal-content ul li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 10px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--terracotta);
}
.legal-content a { color: var(--chambray-dark); text-decoration: underline; }
.legal-content a:hover { color: var(--terracotta); }
.legal-content strong { color: var(--clove); }

/* ==========================================================================
   CARDS / GRIDS
   ========================================================================== */
.grid {
  display: grid;
  gap: 30px;
}
.grid-2 { grid-template-columns: repeat(2, 1fr); }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-4 { grid-template-columns: repeat(4, 1fr); }

@media (max-width: 992px) {
  .grid-3, .grid-4 { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 640px) {
  .grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr; }
}

.card {
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
}
.card:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-lg);
}

/* Service Card */
.service-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 36px 28px;
  text-align: left;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  border-bottom: 4px solid transparent;
  height: 100%;
}
.service-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-md);
  border-bottom-color: var(--terracotta);
}
.service-card .icon {
  width: 62px;
  height: 62px;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--muslin);
  margin-bottom: 22px;
  font-size: 1.8rem;
  color: var(--terracotta);
}
.service-card h3 {
  font-size: 1.2rem;
  margin-bottom: 10px;
}
.service-card p { font-size: 0.95rem; margin-bottom: 14px; }
.service-card .card-link {
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--chambray-dark);
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.service-card .card-link::after { content: '\2192'; transition: transform 0.3s ease; }
.service-card:hover .card-link::after { transform: translateX(5px); }

/* Blog-style article cards: "Explore Other Services" */
.blog-card {
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  display: flex;
  flex-direction: column;
}
.blog-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-md); }
.blog-card-img {
  display: block;
  position: relative;
  aspect-ratio: 16 / 10;
  overflow: hidden;
}
.blog-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}
.blog-card:hover .blog-card-img img { transform: scale(1.08); }
.blog-card-tag {
  position: absolute;
  top: 18px;
  left: 18px;
  background: var(--terracotta);
  color: var(--white);
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.72rem;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 6px 16px;
  border-radius: 50px;
}
.blog-card-body {
  padding: 28px;
  flex: 1;
  display: flex;
  flex-direction: column;
}
.blog-card-body h3 { font-size: 1.25rem; margin-bottom: 10px; }
.blog-card-body h3 a { color: var(--clove); transition: var(--transition); }
.blog-card-body h3 a:hover { color: var(--terracotta); }
.blog-card-body p { font-size: 0.95rem; margin-bottom: 20px; flex: 1; }
.blog-card-link {
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 0.92rem;
  color: var(--chambray-dark);
  display: inline-flex;
  align-items: center;
  gap: 8px;
  align-self: flex-start;
  transition: var(--transition);
}
.blog-card-link span { display: inline-block; transition: transform 0.3s ease; }
.blog-card-link:hover { color: var(--terracotta); }
.blog-card:hover .blog-card-link span { transform: translateX(5px); }

/* ==========================================================================
   ABOUT SECTIONS
   ========================================================================== */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
@media (max-width: 900px) { .about-grid { grid-template-columns: 1fr; gap: 36px; } }

.about-image-wrap {
  position: relative;
}
.about-image-wrap img {
  border-radius: var(--radius);
  box-shadow: var(--shadow-md);
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}
.about-image-wrap .badge {
  position: absolute;
  bottom: -28px;
  right: -28px;
  background: var(--terracotta);
  color: var(--white);
  padding: 24px 30px;
  border-radius: var(--radius);
  text-align: center;
  box-shadow: var(--shadow-lg);
}
.about-image-wrap .badge .num {
  font-family: var(--font-heading);
  font-size: 2rem;
  font-weight: 700;
  line-height: 1;
}
.about-image-wrap .badge .lbl {
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 1px;
}

@media (max-width: 640px) {
  .about-image-wrap .badge { padding: 16px 20px; bottom: -18px; right: -12px; }
  .about-image-wrap .badge .num { font-size: 1.4rem; }
}

.values-list { display: grid; gap: 16px; margin-top: 24px; }
.values-list li {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  font-family: var(--font-heading);
  font-weight: 600;
  color: var(--clove);
}
.values-list .dot {
  flex-shrink: 0;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--chambray), var(--terracotta));
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 0.85rem;
  margin-top: 2px;
}

.alt-bg { background: var(--sandstone); }
.dark-bg { background: var(--clove); color: var(--white); }
.dark-bg h2, .dark-bg h3 { color: var(--white); }
.dark-bg p { color: rgba(255,255,255,0.78); }

/* MD / Leadership */
.leader-card {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 44px;
  background: var(--white);
  border-radius: var(--radius);
  padding: 40px;
  box-shadow: var(--shadow-md);
  align-items: center;
}
@media (max-width: 768px) {
  .leader-card { grid-template-columns: 1fr; text-align: center; padding: 30px; }
  .leader-card .leader-img { margin: 0 auto; }
}
.leader-card .leader-img {
  width: 100%;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  aspect-ratio: 1/1;
}
.leader-card .leader-img img { width: 100%; height: 100%; object-fit: cover; }
.leader-card h3 { font-size: 1.5rem; margin-bottom: 4px; }
.leader-card .role {
  color: var(--terracotta);
  font-family: var(--font-heading);
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  font-size: 0.85rem;
  margin-bottom: 18px;
  display: block;
}

/* Stats bar */
.stats-bar {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
  text-align: center;
}
@media (max-width: 768px) { .stats-bar { grid-template-columns: repeat(2, 1fr); } }
.stats-bar .stat .stat-num {
  font-family: var(--font-heading);
  font-size: 2.6rem;
  font-weight: 700;
  color: var(--terracotta);
}
.stats-bar .stat .stat-label {
  font-family: var(--font-heading);
  font-weight: 600;
  color: var(--clove);
  letter-spacing: 0.5px;
  font-size: 0.92rem;
  margin-top: 4px;
}

/* ==========================================================================
   SERVICE DETAIL BLOCKS (category pages)
   ========================================================================== */
.service-block {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: center;
  padding: 60px 0;
  border-bottom: 1px solid rgba(74,59,46,0.08);
}
.service-block:last-child { border-bottom: none; }
.service-block.reverse .service-text { order: 2; }
.service-block.reverse .service-media { order: 1; }

@media (max-width: 900px) {
  .service-block, .service-block.reverse .service-text, .service-block.reverse .service-media {
    grid-template-columns: 1fr;
    order: initial;
  }
  .service-block { grid-template-columns: 1fr; gap: 28px; padding: 40px 0; }
}

.service-media {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-md);
}
.service-media img { width: 100%; height: 100%; aspect-ratio: 4 / 3; object-fit: cover; min-height: 280px; }

.service-media.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  box-shadow: none;
}
.service-media.split img { width: 100%; height: 100%; aspect-ratio: 1 / 1; object-fit: cover; border-radius: var(--radius); box-shadow: var(--shadow-sm); min-height: 200px; }

.service-text .tag-label {
  display: inline-block;
  background: var(--muslin);
  color: var(--terracotta);
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.75rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 6px 16px;
  border-radius: 50px;
  margin-bottom: 14px;
}
.service-text h2 { font-size: clamp(1.5rem, 3.2vw, 2.1rem); margin-bottom: 14px; }

.checklist { display: grid; gap: 12px; margin-top: 18px; }
.checklist li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-weight: 500;
  color: var(--text-main);
}
.checklist li::before {
  content: '\2713';
  flex-shrink: 0;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: var(--chambray);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
  font-weight: 700;
  margin-top: 1px;
}

.subservice-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  margin-top: 10px;
}
@media (max-width: 900px) { .subservice-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 600px) { .subservice-grid { grid-template-columns: 1fr; } }

.subservice-card {
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
}
.subservice-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); }
.subservice-card img { width: 100%; height: 170px; object-fit: cover; }
.subservice-card .content { padding: 20px 22px; }
.subservice-card h4 { font-size: 1.05rem; margin-bottom: 8px; }
.subservice-card p { font-size: 0.9rem; margin: 0; }

/* Category intro banner on category pages */
.category-nav {
  display: flex;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
  margin-top: 30px;
}
.category-nav a {
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 0.9rem;
  padding: 10px 22px;
  border-radius: 50px;
  background: rgba(255,255,255,0.12);
  color: var(--white);
  border: 1px solid rgba(255,255,255,0.3);
  transition: var(--transition);
}
.category-nav a:hover, .category-nav a.active {
  background: var(--terracotta);
  border-color: var(--terracotta);
}

/* ==========================================================================
   CONTACT PAGE
   ========================================================================== */
.contact-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 50px;
}
@media (max-width: 900px) { .contact-grid { grid-template-columns: 1fr; } }

.contact-info-card {
  background: var(--clove);
  color: var(--white);
  border-radius: var(--radius);
  padding: 44px 36px;
}
.contact-info-card h3 { color: var(--white); margin-bottom: 8px; }
.contact-info-card p.lead { color: var(--sandstone); margin-bottom: 30px; }

.info-item {
  display: flex;
  gap: 18px;
  align-items: flex-start;
  margin-bottom: 26px;
}
.info-item .ic {
  width: 46px;
  height: 46px;
  border-radius: 12px;
  background: rgba(255,255,255,0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--sandstone);
  font-size: 1.2rem;
}
.info-item h4 { color: var(--white); font-size: 1rem; margin-bottom: 4px; }
.info-item p, .info-item a { color: rgba(255,255,255,0.78); font-size: 0.95rem; }
.info-item a:hover { color: var(--sandstone); }

.social-row { display: flex; gap: 12px; margin-top: 30px; }
.social-row a {
  width: 42px; height: 42px;
  border-radius: 50%;
  background: rgba(255,255,255,0.1);
  display: flex; align-items: center; justify-content: center;
  color: var(--white);
  transition: var(--transition);
}
.social-row a:hover { background: var(--terracotta); transform: translateY(-3px); }

.contact-form-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 44px 36px;
  box-shadow: var(--shadow-md);
}

.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
@media (max-width: 600px) { .form-row { grid-template-columns: 1fr; } }

.form-group { margin-bottom: 20px; }
.form-group label {
  display: block;
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--clove);
  margin-bottom: 8px;
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 14px 16px;
  border: 1.5px solid var(--sandstone);
  border-radius: 10px;
  font-family: var(--font-body);
  font-size: 0.95rem;
  background: var(--muslin);
  color: var(--text-main);
  transition: var(--transition);
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--chambray);
  background: var(--white);
  box-shadow: 0 0 0 4px rgba(45,111,158,0.15);
}
.form-group textarea { min-height: 130px; resize: vertical; }

.file-upload {
  border: 1.5px dashed var(--sandstone);
  border-radius: 10px;
  padding: 18px;
  text-align: center;
  background: var(--muslin);
  cursor: pointer;
  transition: var(--transition);
  font-size: 0.9rem;
  color: var(--text-light);
}
.file-upload:hover { border-color: var(--chambray); }
.file-upload input { display: none; }

.radio-group {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
}
.radio-group label {
  display: flex;
  align-items: center;
  gap: 8px;
  font-weight: 500;
  font-family: var(--font-body);
  color: var(--text-main);
  cursor: pointer;
}
.radio-group input { width: auto; accent-color: var(--terracotta); }

.resume-fields {
  display: none;
  border-top: 1px dashed var(--sandstone);
  padding-top: 20px;
  margin-top: 6px;
}
.resume-fields.show { display: block; animation: fadeInUp 0.4s ease; }

/* Map */
.map-wrap {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  margin-top: 50px;
}
.map-wrap iframe { width: 100%; height: 380px; border: 0; display: block; }

/* ==========================================================================
   CTA BANNER
   ========================================================================== */
.cta-banner {
  background: linear-gradient(120deg, var(--chambray) 0%, var(--terracotta) 100%);
  border-radius: var(--radius);
  padding: 60px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  flex-wrap: wrap;
  color: var(--white);
}
.cta-banner h2 { color: var(--white); margin-bottom: 8px; }
.cta-banner p { color: rgba(255,255,255,0.85); margin: 0; }
@media (max-width: 768px) { .cta-banner { padding: 36px; text-align: center; justify-content: center; } }

/* ==========================================================================
   WHY CHOOSE US (icons row)
   ========================================================================== */
.feature-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 26px;
}
@media (max-width: 992px) { .feature-row { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .feature-row { grid-template-columns: 1fr; } }

.feature-item {
  text-align: center;
  padding: 36px 22px;
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
}
.feature-item:hover { transform: translateY(-8px); box-shadow: var(--shadow-md); }
.feature-item .icon {
  width: 68px; height: 68px;
  border-radius: 50%;
  background: var(--muslin);
  color: var(--terracotta);
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 18px;
  font-size: 1.8rem;
}
.feature-item h4 { font-size: 1.05rem; margin-bottom: 8px; }
.feature-item p { font-size: 0.9rem; margin: 0; }

/* ==========================================================================
   FOOTER
   ========================================================================== */
.footer {
  background: var(--clove);
  color: rgba(255,255,255,0.75);
  padding-top: 70px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1.2fr;
  gap: 40px;
  padding-bottom: 50px;
}
@media (max-width: 992px) { .footer-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 600px) { .footer-grid { grid-template-columns: 1fr; } }

.footer-logo { height: 64px; margin-bottom: 18px; filter: brightness(0) invert(1); }
.footer-col h4 {
  color: var(--white);
  font-size: 1.05rem;
  margin-bottom: 22px;
  position: relative;
  padding-bottom: 10px;
}
.footer-col h4::after {
  content: '';
  position: absolute;
  left: 0; bottom: 0;
  width: 36px; height: 3px;
  background: var(--terracotta);
  border-radius: 3px;
}
.footer-col p { color: rgba(255,255,255,0.65); font-size: 0.92rem; }
.footer-links { display: grid; gap: 12px; margin-top: 4px; }
.footer-links a {
  color: rgba(255,255,255,0.65);
  font-size: 0.92rem;
  transition: var(--transition);
}
.footer-links a:hover { color: var(--sandstone); padding-left: 6px; }

.footer-contact-item {
  display: flex;
  gap: 12px;
  margin-bottom: 16px;
  font-size: 0.92rem;
  color: rgba(255,255,255,0.65);
  align-items: flex-start;
}
.footer-contact-item .ic { color: var(--sandstone); margin-top: 2px; }
.footer-contact-item a { color: rgba(255,255,255,0.65); }
.footer-contact-item a:hover { color: var(--sandstone); }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding: 24px 0;
  text-align: center;
  font-size: 0.88rem;
  color: rgba(255,255,255,0.55);
}
.footer-bottom a { color: var(--sandstone); font-weight: 600; transition: var(--transition); }
.footer-bottom a:hover { color: var(--terracotta); }

/* ==========================================================================
   FLOATING BUTTONS (WhatsApp / Call)
   ========================================================================== */
.floating-buttons {
  position: fixed;
  bottom: 26px;
  right: 26px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  z-index: 999;
}
.float-btn {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 1.5rem;
  box-shadow: var(--shadow-md);
  transition: var(--transition);
}
.float-btn:hover { transform: scale(1.1); }
.whatsapp-btn { background: #25D366; }
.call-btn { background: var(--chambray); }

.whatsapp-btn::before {
  content: '';
  position: absolute;
  width: 56px; height: 56px;
  border-radius: 50%;
  background: #25D366;
  opacity: 0.5;
  animation: pulse 2.2s infinite;
  z-index: -1;
}

@keyframes pulse {
  0% { transform: scale(1); opacity: 0.5; }
  70% { transform: scale(1.6); opacity: 0; }
  100% { transform: scale(1.6); opacity: 0; }
}

@media (max-width: 600px) {
  .floating-buttons { bottom: 16px; right: 16px; }
  .float-btn { width: 50px; height: 50px; font-size: 1.3rem; }
}

/* ==========================================================================
   SCROLL ANIMATIONS
   ========================================================================== */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}
.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }

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

/* Back to top */
.back-to-top {
  position: fixed;
  bottom: 26px;
  left: 26px;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: var(--clove);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  box-shadow: var(--shadow-md);
  z-index: 999;
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: var(--transition);
}
.back-to-top.show { opacity: 1; visibility: visible; transform: translateY(0); }
.back-to-top:hover { background: var(--terracotta); }

/* ==========================================================================
   MOBILE NAV
   ========================================================================== */
@media (max-width: 992px) {
  .hamburger { display: flex; }

  .nav-list {
    position: fixed;
    top: 0;
    right: -100%;
    height: 100vh;
    width: min(320px, 80%);
    background: var(--white);
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    padding: 110px 32px 40px;
    gap: 14px;
    box-shadow: var(--shadow-lg);
    transition: right 0.4s ease;
    overflow-y: auto;
  }
  .nav-list.active { right: 0; }

  .nav-list > li { width: 100%; }
  .nav-list > li > a { padding: 12px 0; width: 100%; justify-content: space-between; }

  .dropdown-menu {
    position: static;
    opacity: 1;
    visibility: visible;
    transform: none;
    box-shadow: none;
    display: none;
    width: 100%;
    padding: 0 0 0 14px;
    margin-top: 6px;
  }
  .dropdown.open .dropdown-menu { display: block; }
  .dropdown.open .arrow { transform: rotate(225deg); margin-top: 4px; }

  .nav-cta { margin-left: 0; margin-top: 10px; width: 100%; }
  .nav-cta .btn { width: 100%; justify-content: center; }

  .nav-overlay {
    position: fixed;
    inset: 0;
    background: rgba(58, 50, 46, 0.5);
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
    z-index: 999;
  }
  .nav-overlay.active { opacity: 1; visibility: visible; }
}
