/* ==========================================================================
   CITY APPLIANCES SERVICES — Global Stylesheet
   ========================================================================== */

/* ---------- Design tokens ---------- */
:root {
  --primary: #4338ca;
  --primary-dark: #312881;
  --primary-light: #ecebfb;
  --secondary: #fb7185;
  --secondary-dark: #f43f5e;
  --accent: #38bdf8;
  --success: #17a673;
  --dark: #1e1b3a;
  --text: #43405e;
  --text-light: #6b6690;
  --light-bg: #f5f4fc;
  --border: #e4e1f5;
  --white: #ffffff;
  --star: #ffb400;

  --radius-sm: 8px;
  --radius: 14px;
  --radius-lg: 22px;
  --shadow-sm: 0 2px 8px rgba(30, 27, 58, 0.06);
  --shadow: 0 8px 24px rgba(30, 27, 58, 0.09);
  --shadow-lg: 0 20px 48px rgba(30, 27, 58, 0.16);
  --container: 1360px;
  --header-h: 94px;
}

/* ---------- Reset ---------- */
* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  color: var(--text);
  background: var(--white);
  line-height: 1.65;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
h1, h2, h3, h4, h5, h6 {
  font-family: 'Poppins', 'Inter', sans-serif;
  color: var(--dark);
  line-height: 1.25;
  font-weight: 600;
}
img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }
input, select, textarea { font-family: inherit; font-size: 1rem; }
:focus-visible { outline: 3px solid var(--accent); outline-offset: 2px; }
.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
}
section { padding: 60px 0; }
.section-light { background: var(--light-bg); }
.no-scroll { overflow: hidden; }

/* ---------- Section heading ---------- */
.section-head { text-align: center; max-width: 680px; margin: 0 auto 36px; }
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--secondary);
  font-weight: 700;
  font-size: 0.82rem;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  margin-bottom: 14px;
}
.eyebrow::before { content: ''; width: 26px; height: 2px; background: var(--secondary); border-radius: 2px; }
.section-head h2 { font-size: clamp(1.7rem, 3vw, 2.5rem); margin-bottom: 14px; }
.section-head p { color: var(--text-light); font-size: 1.05rem; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 0.98rem;
  transition: all 0.25s ease;
  white-space: nowrap;
  border: 2px solid transparent;
}
.btn-primary { background: var(--primary); color: var(--white); box-shadow: 0 10px 24px rgba(67, 56, 202, 0.32); }
.btn-primary:hover { background: var(--primary-dark); transform: translateY(-2px); box-shadow: 0 14px 28px rgba(67, 56, 202, 0.4); }
.btn-outline { background: transparent; color: var(--white); border-color: rgba(255,255,255,0.55); }
.btn-outline:hover { background: rgba(255,255,255,0.15); border-color: var(--white); transform: translateY(-2px); }
.btn-outline-dark { background: transparent; color: var(--primary); border-color: var(--primary); }
.btn-outline-dark:hover { background: var(--primary); color: var(--white); transform: translateY(-2px); }
.btn-light { background: var(--white); color: var(--primary); }
.btn-light:hover { background: var(--primary-light); transform: translateY(-2px); }
.btn-block { width: 100%; }
.btn-sm { padding: 10px 20px; font-size: 0.88rem; }

/* ==========================================================================
   HEADER
   ========================================================================== */
.top-bar {
  background: var(--dark);
  color: rgba(255,255,255,0.85);
  font-size: 0.85rem;
}
.top-bar .container { display: flex; align-items: center; justify-content: space-between; padding-top: 8px; padding-bottom: 8px; }
.top-bar-left { display: flex; gap: 22px; flex-wrap: wrap; }
.top-bar a { display: inline-flex; align-items: center; gap: 6px; color: inherit; }
.top-bar a:hover { color: var(--secondary); }
.top-bar-social { display: flex; gap: 10px; }
.top-bar-social a {
  width: 32px; height: 32px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  background: var(--white);
  color: var(--text-light);
  font-size: 0.85rem;
  transition: all 0.25s ease;
}
.top-bar-social a:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 14px rgba(0,0,0,0.25);
}
.top-bar-social a.social-fb { color: #1877F2; }
.top-bar-social a.social-ig { color: #E4405F; }
.top-bar-social a.social-x { color: #000000; }
.top-bar-social a.social-yt { color: #FF0000; }
.top-bar-social a.social-li { color: #0A66C2; }
.top-bar-social a.social-pin { color: #E60023; }

.site-header {
  position: sticky; top: 0; z-index: 1060;
  background: var(--white);
  box-shadow: var(--shadow-sm);
  height: var(--header-h);
}
.site-header .container { height: 100%; display: flex; align-items: center; justify-content: space-between; gap: 20px; }

.logo { display: flex; align-items: center; gap: 12px; }
.logo-mark {
  width: 46px; height: 46px; border-radius: 12px;
  background: linear-gradient(135deg, var(--primary), var(--accent));
  display: flex; align-items: center; justify-content: center;
  color: var(--white); font-size: 1.3rem; flex-shrink: 0;
  box-shadow: var(--shadow-sm);
}
.logo-text { display: flex; flex-direction: column; line-height: 1.15; white-space: nowrap; }
.logo-text strong { font-family: 'Poppins', sans-serif; font-size: 1.1rem; color: var(--dark); font-weight: 700; white-space: nowrap; }
.logo-text span { font-size: 0.66rem; color: var(--secondary); font-weight: 600; letter-spacing: 0.4px; white-space: nowrap; }
.logo-img { height: 78px; width: auto; display: block; }
.footer-logo-img { height: 64px; }

.main-nav { display: flex; }
.main-nav ul { display: flex; gap: 28px; align-items: center; }
.main-nav .nav-book { display: none; }
.main-nav a {
  font-weight: 500; color: var(--text); font-size: 0.98rem; position: relative; padding: 6px 0;
}
.main-nav a::after {
  content: ''; position: absolute; left: 0; bottom: -2px; width: 0; height: 2px;
  background: var(--secondary); transition: width 0.25s ease;
}
.main-nav a:hover, .main-nav a.active { color: var(--primary); }
.main-nav a:hover::after, .main-nav a.active::after { width: 100%; }

.nav-has-dropdown { position: relative; }
.nav-has-dropdown > a { display: inline-flex; align-items: center; gap: 6px; }
.nav-caret { font-size: 0.68rem; transition: transform 0.25s ease; }
.nav-has-dropdown:hover .nav-caret { transform: rotate(180deg); }
.nav-dropdown {
  position: absolute; top: 100%; left: 50%;
  transform: translateX(-50%);
  padding-top: 18px;
  width: 300px;
  opacity: 0; visibility: hidden; pointer-events: none;
  transition: opacity 0.2s ease, visibility 0.2s ease;
  z-index: 950;
}
.nav-has-dropdown:hover .nav-dropdown,
.nav-has-dropdown:focus-within .nav-dropdown {
  opacity: 1; visibility: visible; pointer-events: auto;
}
.nav-dropdown-inner {
  background: var(--white); border-radius: var(--radius-lg); box-shadow: var(--shadow-lg);
  padding: 12px; display: flex; flex-direction: column; gap: 4px;
}
.nav-dropdown-item {
  display: flex; align-items: center; gap: 14px; padding: 10px 12px; border-radius: var(--radius);
  font-weight: 600; color: var(--dark); font-size: 0.95rem; transition: background 0.2s ease;
}
.nav-dropdown-item:hover { background: var(--light-bg); }
.nav-dropdown-icon {
  width: 42px; height: 42px; border-radius: 12px; background: var(--primary-light); color: var(--primary);
  display: flex; align-items: center; justify-content: center; font-size: 1.1rem; flex-shrink: 0;
}

.header-actions { display: flex; align-items: center; gap: 14px; }

.hamburger {
  display: none; flex-direction: column; gap: 5px; width: 30px; height: 24px; z-index: 1100;
}
.hamburger span { display: block; height: 3px; width: 100%; background: var(--dark); border-radius: 2px; transition: all 0.3s ease; }
.hamburger.active span:nth-child(1) { transform: translateY(8px) rotate(45deg); }
.hamburger.active span:nth-child(2) { opacity: 0; }
.hamburger.active span:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }

/* ==========================================================================
   HERO
   ========================================================================== */
.hero {
  position: relative;
  background: linear-gradient(120deg, var(--primary-dark) 0%, var(--primary) 60%, #6d5bd0 100%);
  overflow: hidden;
  padding: 100px 0 70px;
}
.hero::before {
  content: ''; position: absolute; inset: 0;
  background-image: radial-gradient(circle at 15% 20%, rgba(255,255,255,0.08) 0, transparent 40%),
    radial-gradient(circle at 85% 80%, rgba(251,113,133,0.18) 0, transparent 45%);
}
.hero .container { position: relative; display: grid; grid-template-columns: 1.05fr 0.95fr; gap: 50px; align-items: center; }
.hero-badge {
  display: inline-flex; align-items: center; gap: 8px; background: rgba(255,255,255,0.12);
  color: var(--white); padding: 8px 16px; border-radius: 50px; font-size: 0.85rem; font-weight: 600; margin-bottom: 22px;
  border: 1px solid rgba(255,255,255,0.2);
}
.hero-badge i { color: var(--secondary); }
.hero h1 { color: var(--white); font-size: clamp(2.1rem, 4.2vw, 3.4rem); margin-bottom: 18px; }
.hero h1 span { color: var(--secondary); }
.hero p { color: rgba(255,255,255,0.85); font-size: 1.1rem; max-width: 520px; margin-bottom: 32px; }
.hero-cta { display: flex; gap: 16px; flex-wrap: wrap; margin-bottom: 44px; }
.hero-stats { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; max-width: 560px; }
.hero-stats div { color: var(--white); }
.hero-stats strong { display: block; font-size: 1.5rem; font-family: 'Poppins', sans-serif; color: var(--white); }
.hero-stats span { font-size: 0.78rem; color: rgba(255,255,255,0.75); }

.hero-media { position: relative; }
.hero-media-frame {
  position: relative; border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-lg);
  border: 6px solid rgba(255,255,255,0.15);
}
.hero-media-frame img { width: 100%; height: 460px; object-fit: cover; }
.hero-float-card {
  position: absolute; background: var(--white); border-radius: var(--radius); padding: 16px 18px;
  box-shadow: var(--shadow-lg); display: flex; align-items: center; gap: 12px;
}
.hero-float-card.card-1 { top: 20px; left: -30px; }
.hero-float-card.card-2 { bottom: 24px; right: -26px; }
.hero-float-card .icon-circle { width: 44px; height: 44px; border-radius: 50%; background: var(--primary-light); color: var(--primary); display: flex; align-items: center; justify-content: center; font-size: 1.1rem; flex-shrink: 0; }
.hero-float-card.card-2 .icon-circle { background: #ffe4e8; color: var(--secondary); }
.hero-float-card strong { display: block; font-size: 0.95rem; color: var(--dark); }
.hero-float-card span { font-size: 0.78rem; color: var(--text-light); }

/* ---------- Page hero (inner pages) ---------- */
.page-hero {
  background: linear-gradient(120deg, var(--primary-dark), var(--primary));
  padding: 46px 0 40px; position: relative; overflow: hidden;
}
.page-hero::before {
  content:''; position:absolute; inset:0;
  background-image: radial-gradient(circle at 90% 10%, rgba(251,113,133,0.2) 0, transparent 40%);
}
.page-hero.page-hero-photo {
  background: linear-gradient(120deg, rgba(49,28,129,0.9) 0%, rgba(67,56,202,0.85) 55%, rgba(109,91,208,0.65) 100%), var(--hero-photo) center/cover no-repeat;
  padding: 68px 0 62px;
}
.page-hero .container { position: relative; text-align: center; }
.page-hero h1 { color: var(--white); font-size: clamp(1.8rem, 3.6vw, 2.7rem); margin-bottom: 12px; }
.page-hero p { color: rgba(255,255,255,0.85); max-width: 620px; margin: 0 auto 18px; }
.breadcrumb { display: inline-flex; gap: 8px; align-items: center; color: rgba(255,255,255,0.75); font-size: 0.9rem; }
.breadcrumb a { color: var(--white); font-weight: 600; }
.breadcrumb i { font-size: 0.7rem; }

/* ==========================================================================
   TRUST / BENEFITS STRIP
   ========================================================================== */
.trust-strip { padding: 46px 0; background: linear-gradient(180deg, var(--light-bg), var(--white)); border-bottom: 1px solid var(--border); }
.trust-strip .container { max-width: 1600px; }
.trust-grid { display: grid; grid-template-columns: repeat(6, 1fr); gap: 22px; }
.trust-item { text-align: center; padding: 18px 10px; }
.trust-item .icon-circle {
  width: 62px; height: 62px; border-radius: 50%; margin: 0 auto 14px;
  background: var(--primary-light); color: var(--primary);
  display: flex; align-items: center; justify-content: center; font-size: 1.5rem;
  transition: transform 0.25s ease;
}
.trust-item:hover .icon-circle { transform: translateY(-4px) scale(1.05); background: var(--primary); color: var(--white); }
.trust-item h3 { font-size: 1rem; margin-bottom: 6px; }
.trust-item p { font-size: 0.85rem; color: var(--text-light); }

.trust-strip .trust-item {
  background: var(--white); border: 1px solid var(--border); border-radius: var(--radius-lg);
  padding: 30px 18px; box-shadow: var(--shadow-sm);
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}
.trust-strip .trust-item:hover { transform: translateY(-7px); box-shadow: var(--shadow); border-color: transparent; }
.trust-strip .trust-item .icon-circle {
  background: linear-gradient(135deg, var(--primary), var(--accent)); color: var(--white);
  box-shadow: 0 10px 22px rgba(67, 56, 202, 0.28); transition: transform 0.3s ease;
}
.trust-strip .trust-item:hover .icon-circle {
  background: linear-gradient(135deg, var(--primary), var(--accent)); color: var(--white);
  transform: translateY(-4px) scale(1.08) rotate(-4deg);
}
.trust-strip .trust-item h3 { font-size: 1.02rem; }
.trust-strip .trust-item p { font-size: 0.84rem; line-height: 1.5; max-width: 220px; margin: 0 auto; }
@media (max-width: 560px) {
  .trust-strip .container { padding: 0 10px; }
  .trust-strip .trust-grid { gap: 14px; }
  .trust-strip .trust-item { padding: 16px 18px; }
  .trust-strip .trust-item .icon-circle { width: 50px; height: 50px; margin-bottom: 10px; font-size: 1.25rem; }
  .trust-strip .trust-item h3 { margin-bottom: 3px; }
  .trust-strip .trust-item p { max-width: none; }
}

/* ==========================================================================
   ABOUT
   ========================================================================== */
.about-grid { display: grid; grid-template-columns: 0.95fr 1.05fr; gap: 60px; align-items: center; }
.about-media { position: relative; }
.about-media img { border-radius: var(--radius-lg); box-shadow: var(--shadow); width: 100%; height: 460px; object-fit: cover; }
.about-badge {
  position: absolute; bottom: -26px; left: -26px; background: var(--primary);
  color: var(--white); padding: 20px 24px; border-radius: var(--radius); box-shadow: var(--shadow-lg);
  text-align: center;
}
.about-badge strong { display: block; font-size: 2rem; font-family: 'Poppins', sans-serif; }
.about-badge span { font-size: 0.78rem; opacity: 0.9; }
.about-list { display: grid; grid-template-columns: repeat(2, 1fr); gap: 14px; margin: 26px 0 30px; }
.about-list li { display: flex; align-items: flex-start; gap: 10px; font-size: 0.95rem; }
.about-list i { color: var(--success); margin-top: 4px; }

.expertise-list { display: grid; gap: 22px; margin-top: 28px; }
.expertise-item { display: flex; align-items: flex-start; gap: 16px; }
.expertise-item .icon-circle {
  width: 48px; height: 48px; border-radius: 12px; background: var(--primary-light); color: var(--primary);
  display: flex; align-items: center; justify-content: center; font-size: 1.15rem; flex-shrink: 0;
}
.expertise-item h4 { font-size: 1rem; margin-bottom: 4px; }
.expertise-item p { font-size: 0.88rem; color: var(--text-light); line-height: 1.55; }

.trust-grid.cols-4 { grid-template-columns: repeat(4, 1fr); }

/* ==========================================================================
   SERVICES
   ========================================================================== */
.services-grid-main { display: grid; grid-template-columns: repeat(2, 1fr); gap: 32px; }
.service-main-card {
  background: var(--white); border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow);
  border: 1px solid var(--border); transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.service-main-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-lg); }
.service-main-media { position: relative; height: 240px; }
.service-main-media img { width: 100%; height: 100%; object-fit: cover; }
.service-main-media::after { content:''; position:absolute; inset:0; background: linear-gradient(180deg, rgba(30,27,58,0) 40%, rgba(30,27,58,0.75) 100%); }
.service-main-tag {
  position: absolute; top: 18px; left: 18px; background: var(--secondary); color: var(--white);
  padding: 6px 16px; border-radius: 50px; font-size: 0.78rem; font-weight: 700; z-index: 2;
}
.service-main-title { position: absolute; bottom: 18px; left: 22px; color: var(--white); font-size: 1.5rem; z-index: 2; }
.service-main-body { padding: 26px 28px 30px; }
.service-tags { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 22px; }
.service-tags span { background: var(--light-bg); color: var(--text); font-size: 0.8rem; padding: 6px 12px; border-radius: 50px; border: 1px solid var(--border); }
.service-main-actions { display: flex; gap: 12px; flex-wrap: wrap; }

/* ---------- Category cards (minimal, icon-led) ---------- */
.category-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 28px; }
.category-card {
  background: var(--white); border: 1px solid var(--border); border-radius: var(--radius-lg);
  padding: 34px 32px; box-shadow: var(--shadow-sm); transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}
.category-card:hover { transform: translateY(-6px); box-shadow: var(--shadow); border-color: var(--primary); }
.category-card-head { display: flex; align-items: center; gap: 18px; margin-bottom: 18px; }
.category-card .icon-circle {
  width: 58px; height: 58px; border-radius: 16px; flex-shrink: 0;
  background: linear-gradient(135deg, var(--primary), var(--accent)); color: var(--white);
  display: flex; align-items: center; justify-content: center; font-size: 1.4rem;
}
.category-badge { display: block; font-size: 0.76rem; color: var(--secondary); font-weight: 700; text-transform: uppercase; letter-spacing: 0.5px; margin-bottom: 2px; }
.category-card h3 { font-size: 1.3rem; }
.category-card > p { color: var(--text-light); margin-bottom: 20px; }

/* ---------- Service coverage areas ---------- */
.coverage-grid { display: flex; flex-wrap: wrap; justify-content: center; gap: 16px; }
.coverage-chip {
  display: inline-flex; align-items: center; gap: 10px;
  background: var(--white); border: 1px solid var(--border); border-radius: var(--radius);
  padding: 16px 24px; box-shadow: var(--shadow-sm); transition: all 0.25s ease;
}
.coverage-chip:hover { border-color: var(--primary); transform: translateY(-3px); box-shadow: var(--shadow); }
.coverage-chip i { color: var(--primary); font-size: 1.05rem; }
.coverage-chip span { font-weight: 600; color: var(--dark); font-size: 0.96rem; }
.coverage-note { text-align: center; color: var(--text-light); font-size: 0.9rem; margin-top: 26px; }

/* ---------- Diagnostic CTA card ---------- */
.diagnostic-card {
  display: flex; align-items: center; gap: 28px; flex-wrap: wrap;
  background: var(--white); border: 2px dashed var(--border); border-radius: var(--radius-lg);
  padding: 40px 44px;
}
.diagnostic-card-icon {
  width: 64px; height: 64px; border-radius: 50%; flex-shrink: 0;
  background: var(--primary-light); color: var(--primary);
  display: flex; align-items: center; justify-content: center; font-size: 1.6rem;
}
.diagnostic-card-text { flex: 1; min-width: 240px; }
.diagnostic-card-text h2 { font-size: 1.4rem; margin-bottom: 6px; }
.diagnostic-card-text p { color: var(--text-light); }
.diagnostic-card-actions { display: flex; gap: 12px; flex-wrap: wrap; }

/* ---------- Generic small service/problem cards ---------- */
.cards-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.cards-grid.cols-3 { grid-template-columns: repeat(3, 1fr); }
.problem-card {
  background: var(--white); border: 1px solid var(--border); border-radius: var(--radius); padding: 28px 24px;
  text-align: left; transition: all 0.25s ease; box-shadow: var(--shadow-sm);
}
.problem-card:hover { border-color: var(--primary); box-shadow: var(--shadow); transform: translateY(-5px); }
.problem-card .icon-circle {
  width: 54px; height: 54px; border-radius: 14px; background: var(--primary-light); color: var(--primary);
  display: flex; align-items: center; justify-content: center; font-size: 1.35rem; margin-bottom: 18px;
}
.problem-card h3 { font-size: 1.05rem; margin-bottom: 8px; }
.problem-card p { font-size: 0.88rem; color: var(--text-light); margin-bottom: 16px; }
.problem-card .card-link {
  color: var(--white); background: var(--primary); font-weight: 600; font-size: 0.85rem;
  display: inline-flex; align-items: center; gap: 8px;
  padding: 10px 18px; border-radius: 50px; transition: all 0.25s ease;
}
.problem-card .card-link:hover { background: var(--primary-dark); transform: translateY(-2px); box-shadow: var(--shadow-sm); }

/* ---------- Brand strip (auto-scrolling marquee) ---------- */
.brand-marquee {
  overflow: hidden;
  position: relative;
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 6%, #000 94%, transparent);
  mask-image: linear-gradient(90deg, transparent, #000 6%, #000 94%, transparent);
}
.brand-marquee + .brand-marquee { margin-top: 18px; }
.brand-track {
  display: flex; align-items: center; gap: 18px; width: max-content;
  animation: brandScroll 32s linear infinite;
}
.brand-marquee.reverse .brand-track { animation-name: brandScrollReverse; animation-duration: 36s; }
.brand-marquee:hover .brand-track { animation-play-state: paused; }
.brand-chip {
  flex: 0 0 auto; white-space: nowrap;
  background: var(--white); border: 1px solid var(--border); border-radius: var(--radius); padding: 20px 30px;
  text-align: center; font-weight: 700; color: var(--dark); font-size: 1.02rem; box-shadow: var(--shadow-sm);
  transition: all 0.25s ease;
}
.brand-chip:hover { color: var(--primary); border-color: var(--primary); transform: translateY(-3px); }
.brand-note { text-align: center; color: var(--text-light); font-size: 0.85rem; margin-top: 26px; }
@keyframes brandScroll {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}
@keyframes brandScrollReverse {
  from { transform: translateX(-50%); }
  to { transform: translateX(0); }
}
@media (prefers-reduced-motion: reduce) {
  .brand-track { animation: none; }
}

/* ---------- Type strip (front load / top load etc.) ---------- */
.type-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 22px; }
.type-card { background: var(--white); border-radius: var(--radius); padding: 30px 22px; text-align: center; box-shadow: var(--shadow-sm); border: 1px solid var(--border); }
.type-card .icon-circle { width: 60px; height: 60px; border-radius: 50%; background: var(--light-bg); color: var(--accent); display: flex; align-items: center; justify-content: center; font-size: 1.6rem; margin: 0 auto 16px; }
.type-card h3 { font-size: 1rem; }

/* ==========================================================================
   HOW IT WORKS
   ========================================================================== */
.steps-row { display: grid; grid-template-columns: repeat(4, 1fr); gap: 22px; position: relative; }
.step-item { position: relative; }
.step {
  position: relative; text-align: center; height: 100%; padding: 36px 22px 30px; background: var(--white);
  border-radius: var(--radius-lg); border: 1px solid var(--border); box-shadow: var(--shadow-sm);
  transition: transform 0.35s ease, box-shadow 0.35s ease, border-color 0.35s ease;
}
.step:hover { transform: translateY(-8px); box-shadow: var(--shadow); border-color: transparent; }
.step-icon-wrap { position: relative; width: 80px; height: 80px; margin: 0 auto 22px; }
.step-icon {
  width: 100%; height: 100%; border-radius: 50%; display: flex; align-items: center; justify-content: center;
  font-size: 1.6rem; color: var(--white); background: linear-gradient(135deg, var(--primary), var(--accent));
  box-shadow: 0 10px 22px rgba(67, 56, 202, 0.3); transition: transform 0.35s ease;
}
.step:hover .step-icon { transform: scale(1.08) rotate(-4deg); }
.step-num {
  position: absolute; top: -4px; right: -4px; width: 28px; height: 28px; border-radius: 50%;
  background: var(--white); border: 2px solid var(--primary); color: var(--primary);
  display: flex; align-items: center; justify-content: center; font-size: 0.7rem;
  font-family: 'Poppins', sans-serif; font-weight: 700; box-shadow: var(--shadow-sm);
}
.step h3 { font-size: 1.05rem; margin-bottom: 10px; }
.step p { font-size: 0.88rem; color: var(--text-light); margin-bottom: 0; }
.step-arrow {
  position: absolute; top: 76px; right: -25px; transform: translateY(-50%); width: 32px; height: 32px;
  border-radius: 50%; background: var(--white); border: 2px solid var(--border); color: var(--primary);
  display: flex; align-items: center; justify-content: center; font-size: 0.8rem; box-shadow: var(--shadow-sm);
  z-index: 3;
}

/* ==========================================================================
   WHY CHOOSE US
   ========================================================================== */
.why-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px; }
.why-card {
  background: var(--white); border-radius: var(--radius); padding: 32px 26px; box-shadow: var(--shadow-sm);
  border: 1px solid var(--border); transition: all 0.3s ease;
}
.why-card:hover { transform: translateY(-6px); box-shadow: var(--shadow); border-color: transparent; }
.why-card .icon-circle {
  width: 58px; height: 58px; border-radius: 16px; margin-bottom: 18px;
  background: linear-gradient(135deg, var(--primary), var(--accent)); color: var(--white);
  display: flex; align-items: center; justify-content: center; font-size: 1.4rem;
}
.why-card h3 { font-size: 1.1rem; margin-bottom: 8px; }
.why-card p { font-size: 0.9rem; color: var(--text-light); }

/* ==========================================================================
   COUNTERS
   ========================================================================== */
.counters {
  background: linear-gradient(120deg, var(--primary-dark), var(--primary));
  padding: 40px 0;
}
.counters-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; text-align: center; }
.counter strong { display: block; font-size: 2.6rem; font-family: 'Poppins', sans-serif; color: var(--white); }
.counter span { color: rgba(255,255,255,0.8); font-size: 0.9rem; }

/* ==========================================================================
   GALLERY
   ========================================================================== */
.gallery-filters { display: flex; justify-content: center; gap: 10px; flex-wrap: wrap; margin-bottom: 40px; }
.filter-btn {
  padding: 10px 20px; border-radius: 50px; border: 1px solid var(--border); background: var(--white);
  color: var(--text); font-weight: 600; font-size: 0.88rem; transition: all 0.25s ease;
}
.filter-btn:hover { border-color: var(--primary); color: var(--primary); }
.filter-btn.active { background: var(--primary); border-color: var(--primary); color: var(--white); }
.gallery-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.gallery-grid.cols-3 { grid-template-columns: repeat(3, 1fr); }
.gallery-item {
  position: relative; border-radius: var(--radius); overflow: hidden; cursor: pointer; box-shadow: var(--shadow-sm);
  aspect-ratio: 4/3;
}
.gallery-item img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.4s ease; }
.gallery-item:hover img { transform: scale(1.08); }
.gallery-overlay {
  position: absolute; inset: 0; background: linear-gradient(180deg, rgba(30,27,58,0) 45%, rgba(30,27,58,0.85) 100%);
  display: flex; align-items: flex-end; padding: 18px; opacity: 0; transition: opacity 0.3s ease;
}
.gallery-item:hover .gallery-overlay { opacity: 1; }
.gallery-overlay div { color: var(--white); }
.gallery-overlay span { font-size: 0.75rem; color: var(--secondary); font-weight: 700; text-transform: uppercase; letter-spacing: 0.5px; }
.gallery-overlay strong { display: block; font-size: 0.95rem; margin-top: 4px; }
.gallery-item.hide { display: none; }

.lightbox {
  position: fixed; inset: 0; background: rgba(30,27,58,0.94); z-index: 2000;
  display: none; align-items: center; justify-content: center; padding: 40px;
}
.lightbox.open { display: flex; }
.lightbox img { max-width: 90vw; max-height: 82vh; border-radius: var(--radius); box-shadow: var(--shadow-lg); }
.lightbox-caption { position: absolute; bottom: 28px; left: 0; right: 0; text-align: center; color: var(--white); font-size: 0.95rem; }

/* ==========================================================================
   HERO BANNER SLIDER
   ========================================================================== */
.hero-slider {
  position: relative;
  width: 100%;
  aspect-ratio: 2560 / 853;
  overflow: hidden;
  background: var(--dark);
}

.hero-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.8s ease;
}
.hero-slide.active { opacity: 1; visibility: visible; z-index: 2; }
.hero-slide a { display: block; width: 100%; height: 100%; }
.hero-slide img { width: 100%; height: 100%; object-fit: cover; object-position: center; display: block; }
@media (max-width: 600px) {
  .hero-slider { aspect-ratio: 2.6 / 1; }
  .hero-slide img { object-fit: contain; }
}

.hero-slider-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: none;
  background: rgba(255,255,255,0.85);
  color: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  z-index: 5;
  opacity: 0;
  transition: opacity 0.25s ease, background 0.25s ease;
}
.hero-slider:hover .hero-slider-arrow, .hero-slider-arrow:focus-visible { opacity: 1; }
.hero-slider-arrow:hover { background: var(--primary); color: var(--white); }
.hero-slider-prev { left: 18px; }
.hero-slider-next { right: 18px; }

.hero-slider-dots {
  position: absolute;
  left: 50%;
  bottom: 16px;
  transform: translateX(-50%);
  display: flex;
  gap: 8px;
  z-index: 5;
}
.hero-slider-dot {
  width: 28px;
  height: 6px;
  padding: 0;
  border: none;
  border-radius: 4px;
  background: rgba(255,255,255,0.45);
  cursor: pointer;
  transition: background 0.25s ease;
}
.hero-slider-dot.active { background: rgba(255,255,255,0.95); }

@media (prefers-reduced-motion: reduce) {
  .hero-slide { transition: none !important; }
}

/* ==========================================================================
   STACK CAROUSEL (HOME GALLERY)
   ========================================================================== */
.gallery-preview { padding: 34px 0; }
.gallery-preview .container { max-width: 1440px; }
.gallery-preview .section-head { margin-bottom: 18px; }
.gallery-preview-cta { text-align: center; margin-top: 12px; }

.stack-carousel {
  position: relative;
  width: 100%;
  height: 440px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  outline: none;
}
@media (min-width: 640px) { .stack-carousel { height: 600px; } }
@media (min-width: 1024px) { .stack-carousel { height: 700px; } }

.stack-carousel-drag {
  position: absolute;
  inset: 0;
  z-index: 50;
  cursor: grab;
  touch-action: none;
  -webkit-user-select: none;
  user-select: none;
}
.stack-carousel.dragging .stack-carousel-drag { cursor: grabbing; }

.stack-card {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 260px;
  height: 332px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--light-bg);
  box-shadow: var(--shadow);
  pointer-events: none;
  will-change: transform, opacity;
}
@media (min-width: 640px) { .stack-card { width: 330px; height: 452px; } }
@media (min-width: 1024px) { .stack-card { width: 390px; height: 560px; } }

.stack-card img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.stack-card-dim { position: absolute; inset: 0; background: #000; opacity: 0; }
.stack-card-gradient {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(30,27,58,0) 40%, rgba(30,27,58,0.85) 100%);
}
.stack-card-badge {
  position: absolute;
  top: 12px;
  right: 12px;
  padding: 4px 10px;
  border-radius: 999px;
  background: rgba(255,255,255,0.95);
  backdrop-filter: blur(6px);
  font-size: 0.65rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--dark);
}
@media (min-width: 640px) { .stack-card-badge { top: 20px; right: 20px; padding: 5px 12px; font-size: 0.72rem; } }

.stack-card-text {
  position: absolute;
  left: 12px;
  right: 12px;
  bottom: 16px;
  color: var(--white);
  text-align: center;
}
@media (min-width: 640px) {
  .stack-card-text { left: 20px; right: 20px; bottom: 32px; text-align: left; }
}
.stack-card-title {
  font-family: 'Poppins', sans-serif;
  font-size: 0.85rem;
  font-weight: 700;
  line-height: 1.25;
  margin-bottom: 2px;
  text-shadow: 0 2px 6px rgba(0,0,0,0.35);
}
@media (min-width: 640px) { .stack-card-title { font-size: 1.05rem; } }
@media (min-width: 1024px) { .stack-card-title { font-size: 1.15rem; } }
.stack-card-desc {
  display: none;
  font-size: 0.75rem;
  color: rgba(255,255,255,0.75);
  font-style: italic;
  line-height: 1.4;
}
@media (min-width: 640px) {
  .stack-card-desc {
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
  }
}

.stack-carousel-controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  margin-top: 10px;
}
.stack-carousel-arrow {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid var(--border);
  background: var(--white);
  color: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.9rem;
  transition: all 0.25s ease;
}
.stack-carousel-arrow:hover { background: var(--primary); color: var(--white); border-color: var(--primary); }
.stack-carousel-dots { display: flex; align-items: center; gap: 8px; }
.stack-carousel-dot {
  width: 8px;
  height: 8px;
  padding: 0;
  border: none;
  border-radius: 50%;
  background: var(--border);
  transition: all 0.25s ease;
  cursor: pointer;
}
.stack-carousel-dot.active { width: 22px; border-radius: 4px; background: var(--primary); }

@media (prefers-reduced-motion: reduce) {
  .stack-card { transition: none !important; }
}
.lightbox-close, .lightbox-prev, .lightbox-next {
  position: absolute; background: rgba(255,255,255,0.1); color: var(--white); width: 48px; height: 48px;
  border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 1.2rem;
  transition: all 0.25s ease;
}
.lightbox-close:hover, .lightbox-prev:hover, .lightbox-next:hover { background: var(--secondary); }
.lightbox-close { top: 24px; right: 24px; }
.lightbox-prev { left: 24px; top: 50%; transform: translateY(-50%); }
.lightbox-next { right: 24px; top: 50%; transform: translateY(-50%); }

/* ==========================================================================
   CASCADING CARD GRID (testimonials, why-choose-us)
   ========================================================================== */
.cascade-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 48px 28px; margin-top: 8px; }
.cascade-card {
  position: relative;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 34px 30px 26px;
  display: flex; flex-direction: column; justify-content: space-between; gap: 22px;
  box-shadow: var(--shadow-sm);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.cascade-card.cascade-simple { justify-content: flex-start; gap: 16px; }
.cascade-card:hover { box-shadow: var(--shadow); transform: translateY(-4px); }
.cascade-card[data-row-pos="1"] { transform: translateY(2.25rem); }
.cascade-card[data-row-pos="1"]:hover { transform: translateY(2.25rem) translateY(-4px); }
.cascade-card[data-row-pos="2"] { transform: translateY(4.5rem); }
.cascade-card[data-row-pos="2"]:hover { transform: translateY(4.5rem) translateY(-4px); }
.cascade-plus {
  position: absolute; top: -9px; left: -9px; width: 18px; height: 18px;
  color: var(--border); background: var(--white); border-radius: 50%;
}
.cascade-icon {
  width: 54px; height: 54px; border-radius: 16px;
  background: linear-gradient(135deg, var(--primary), var(--accent)); color: var(--white);
  display: flex; align-items: center; justify-content: center; font-size: 1.3rem; flex-shrink: 0;
}

/* ==========================================================================
   TESTIMONIALS (auto-scrolling marquee)
   ========================================================================== */
.testi-marquee {
  overflow: hidden;
  position: relative;
  width: 100vw;
  margin-left: calc(50% - 50vw);
  margin-top: 20px;
  padding: 0 24px;
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 4%, #000 96%, transparent);
  mask-image: linear-gradient(90deg, transparent, #000 4%, #000 96%, transparent);
}
.testi-track {
  display: flex; gap: 20px; width: max-content;
  animation: testiScroll 46s linear infinite;
}
.testi-marquee:hover .testi-track { animation-play-state: paused; }
.testi-card {
  position: relative;
  flex: 0 0 auto; width: 340px;
  background: var(--white); border: 1px solid var(--border); border-radius: var(--radius-lg);
  padding: 28px 26px 26px; box-shadow: var(--shadow-sm);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.testi-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.testi-card::after {
  content: '\f10e';
  font-family: 'Font Awesome 6 Free'; font-weight: 900;
  position: absolute; top: 18px; right: 22px;
  font-size: 2.2rem; color: var(--primary-light); z-index: 0; line-height: 1;
}
.testi-stars { position: relative; z-index: 1; color: var(--star); font-size: 0.78rem; letter-spacing: 2px; margin-bottom: 14px; }
.testi-card p { position: relative; z-index: 1; font-size: 0.9rem; font-style: italic; color: var(--text-light); line-height: 1.65; margin-bottom: 20px; }
.testi-person { position: relative; z-index: 1; display: flex; align-items: center; gap: 12px; }
.testi-avatar {
  width: 42px; height: 42px; border-radius: 50%; background: var(--primary-light); color: var(--primary);
  display: flex; align-items: center; justify-content: center; font-weight: 700; font-family: 'Poppins', sans-serif;
  font-size: 0.82rem; flex-shrink: 0;
}
.testi-person cite { display: block; font-size: 0.88rem; font-weight: 600; color: var(--dark); font-style: normal; }
.testi-person span.testi-role { font-size: 0.76rem; color: var(--text-light); }
@keyframes testiScroll { from { transform: translateX(0); } to { transform: translateX(-50%); } }
@media (prefers-reduced-motion: reduce) {
  .testi-track { animation: none; }
}
@media (max-width: 560px) {
  .testi-card { width: 280px; padding: 20px 22px; }
}
.cascade-card.cascade-simple h3 { font-size: 1.08rem; }
.cascade-card.cascade-simple p { font-size: 0.9rem; color: var(--text-light); }

/* ==========================================================================
   BLOG
   ========================================================================== */
.blog-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 30px; }
.blog-card {
  background: var(--white); border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-sm);
  border: 1px solid var(--border); transition: all 0.3s ease;
}
.blog-card:hover { transform: translateY(-6px); box-shadow: var(--shadow); }
.blog-media { position: relative; height: 200px; }
.blog-media img { width: 100%; height: 100%; object-fit: cover; }
.blog-category {
  position: absolute; top: 16px; left: 16px; background: var(--white); color: var(--primary);
  font-size: 0.72rem; font-weight: 700; padding: 6px 14px; border-radius: 50px; text-transform: uppercase; letter-spacing: 0.5px;
}
.blog-body { padding: 24px 26px 28px; }
.blog-date { font-size: 0.8rem; color: var(--text-light); margin-bottom: 10px; display: flex; align-items: center; gap: 6px; }
.blog-body h3 { font-size: 1.12rem; margin-bottom: 10px; }
.blog-body p { font-size: 0.9rem; color: var(--text-light); margin-bottom: 18px; }
.blog-read { color: var(--primary); font-weight: 600; font-size: 0.88rem; display: inline-flex; align-items: center; gap: 6px; }
.blog-read:hover { color: var(--secondary); }

/* ---------- Single blog post ---------- */
.post-wrap { max-width: 780px; margin: 0 auto; }
.post-back { display: inline-flex; align-items: center; gap: 8px; color: var(--primary); font-weight: 600; font-size: 0.92rem; margin-bottom: 22px; }
.post-back:hover { color: var(--secondary); }
.post-meta { display: flex; flex-wrap: wrap; gap: 18px; align-items: center; margin-bottom: 14px; }
.post-meta span { display: inline-flex; align-items: center; gap: 6px; font-size: 0.88rem; color: var(--text-light); }
.post-meta .post-category { color: var(--primary); font-weight: 700; }
.post-wrap h1 { font-size: clamp(1.5rem, 3vw, 2.1rem); margin-bottom: 22px; }
.post-image { width: 100%; height: 360px; object-fit: cover; border-radius: var(--radius-lg); box-shadow: var(--shadow); display: block; }
.post-image-caption { text-align: center; font-size: 0.85rem; color: var(--text-light); margin-top: 10px; }
.post-article { margin-top: 32px; }
.post-article h2 { font-size: 1.3rem; margin: 30px 0 12px; }
.post-article p { margin-bottom: 16px; font-size: 1.02rem; line-height: 1.8; color: var(--text); }
.post-article ul { margin: 0 0 22px; display: flex; flex-direction: column; gap: 12px; }
.post-article ul li { display: flex; gap: 12px; align-items: flex-start; font-size: 1rem; color: var(--text); }
.post-article ul li i { color: var(--success); margin-top: 5px; flex-shrink: 0; }
.post-share { display: flex; align-items: center; gap: 12px; margin-top: 36px; padding-top: 24px; border-top: 1px solid var(--border); flex-wrap: wrap; }
.post-share span { font-weight: 600; color: var(--dark); font-size: 0.92rem; }
.post-share a {
  width: 38px; height: 38px; border-radius: 50%; background: var(--light-bg); color: var(--text-light);
  display: flex; align-items: center; justify-content: center; transition: all 0.2s ease;
}
.post-share a:hover { background: var(--primary); color: var(--white); }
@media (max-width: 560px) {
  .post-image { height: 220px; }
}

/* ==========================================================================
   FAQ
   ========================================================================== */
.faq-list { max-width: 800px; margin: 0 auto; }
.faq-item { background: var(--white); border: 1px solid var(--border); border-radius: var(--radius); margin-bottom: 14px; overflow: hidden; }
.faq-question {
  width: 100%; display: flex; align-items: center; justify-content: space-between; gap: 16px;
  padding: 22px 26px; text-align: left; font-weight: 600; color: var(--dark); font-size: 1rem;
}
.faq-question i { color: var(--primary); transition: transform 0.3s ease; flex-shrink: 0; }
.faq-item.active .faq-question i { transform: rotate(45deg); }
.faq-item.active .faq-question { color: var(--primary); }
.faq-answer { max-height: 0; overflow: hidden; transition: max-height 0.35s ease; }
.faq-answer p { padding: 0 26px 22px; color: var(--text-light); font-size: 0.92rem; }

/* ==========================================================================
   CTA BANNER
   ========================================================================== */
.cta-banner {
  background: linear-gradient(120deg, var(--primary-dark), var(--primary) 60%, var(--accent));
  border-radius: var(--radius-lg); padding: 38px 46px; display: flex; align-items: center;
  justify-content: space-between; gap: 30px; flex-wrap: wrap; position: relative; overflow: hidden;
}
.cta-banner::before { content:''; position:absolute; inset:0; background-image: radial-gradient(circle at 90% 20%, rgba(251,113,133,0.25) 0, transparent 45%); }
.cta-banner-text { position: relative; max-width: 560px; }
.cta-banner h2 { color: var(--white); font-size: clamp(1.4rem, 2.6vw, 1.9rem); margin-bottom: 10px; }
.cta-banner p { color: rgba(255,255,255,0.85); }
.cta-banner-actions { position: relative; display: flex; gap: 14px; flex-wrap: wrap; }

/* ==========================================================================
   BOOKING MODAL
   ========================================================================== */
.modal-overlay {
  position: fixed; inset: 0; background: rgba(30,27,58,0.6); z-index: 2100; display: none;
  align-items: flex-start; justify-content: center; padding: 60px 20px; overflow-y: auto;
  backdrop-filter: blur(2px);
}
.modal-overlay.open { display: flex; }
.modal-box {
  background: var(--white); border-radius: var(--radius-lg); width: 100%; max-width: 560px;
  box-shadow: var(--shadow-lg); animation: modalIn 0.3s ease; overflow: hidden;
}
@keyframes modalIn { from { opacity: 0; transform: translateY(20px);} to { opacity: 1; transform: translateY(0);} }
.modal-head {
  display: flex; align-items: center; gap: 16px; padding: 24px 28px;
  background: linear-gradient(135deg, var(--primary), var(--primary-dark)); color: var(--white);
}
.modal-head-icon {
  width: 46px; height: 46px; border-radius: 50%; background: rgba(255,255,255,0.16); flex-shrink: 0;
  display: flex; align-items: center; justify-content: center; font-size: 1.2rem; color: var(--white);
}
.modal-head > div:nth-child(2) { flex: 1; }
.modal-head h3 { font-size: 1.2rem; color: var(--white); }
.modal-head p { font-size: 0.82rem; color: rgba(255,255,255,0.78); margin-top: 3px; }
.modal-close {
  width: 34px; height: 34px; border-radius: 50%; background: rgba(255,255,255,0.16); display: flex;
  align-items: center; justify-content: center; color: var(--white); font-size: 1rem; flex-shrink: 0; transition: background 0.2s ease;
}
.modal-close:hover { background: rgba(255,255,255,0.3); }
.modal-body { padding: 24px 28px 28px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; margin-bottom: 14px; }
.form-group { margin-bottom: 14px; position: relative; }
.form-group label { display: block; font-size: 0.82rem; font-weight: 600; color: var(--dark); margin-bottom: 6px; }
.form-group .req { color: var(--secondary); }
.form-group input, .form-group select, .form-group textarea {
  width: 100%; padding: 12px 14px; border: 1.5px solid var(--border); border-radius: var(--radius-sm);
  color: var(--text); transition: border-color 0.2s ease, box-shadow 0.2s ease; background: var(--white); font-size: 0.92rem;
}
.form-group input:focus, .form-group select:focus, .form-group textarea:focus {
  border-color: var(--primary); outline: none; box-shadow: 0 0 0 4px rgba(67, 56, 202, 0.12);
}
.form-group textarea { resize: vertical; min-height: 70px; }
.form-group-icon .form-icon {
  position: absolute; left: 14px; top: 39px; color: var(--text-light); font-size: 0.85rem; pointer-events: none;
}
.form-group-icon input { padding-left: 38px; }
.form-error { color: #e0392b; font-size: 0.78rem; margin-top: 6px; display: none; }
.form-group.invalid input, .form-group.invalid select, .form-group.invalid textarea { border-color: #e0392b; }
.form-group.invalid .form-error { display: block; }
.form-success {
  display: none; background: #eafaf3; border: 1px solid var(--success); color: var(--success);
  padding: 14px 18px; border-radius: var(--radius-sm); font-size: 0.9rem; margin-bottom: 18px; align-items: center; gap: 10px;
}
.form-success.show { display: flex; }
.form-success.is-error { background: #fdecea; border-color: #e0392b; color: #c62828; }
#bookingForm .btn-block { display: flex; align-items: center; justify-content: center; gap: 8px; }
#bookingForm .btn-block:disabled, #contactForm .btn-block:disabled { opacity: 0.7; cursor: not-allowed; }

/* ---------- Thank you popup ---------- */
.thank-you-box { text-align: center; padding: 44px 36px 36px; position: relative; max-width: 420px; }
.thank-you-box .modal-close {
  position: absolute; top: 16px; right: 16px; background: var(--light-bg); color: var(--text);
}
.thank-you-box .modal-close:hover { background: var(--secondary); color: var(--white); }
.thank-you-icon {
  width: 78px; height: 78px; border-radius: 50%; margin: 0 auto 22px;
  background: #eafaf3; color: var(--success); display: flex; align-items: center; justify-content: center;
  font-size: 2.4rem; animation: thankYouPop 0.4s ease;
}
@keyframes thankYouPop { from { transform: scale(0.5); opacity: 0; } to { transform: scale(1); opacity: 1; } }
.thank-you-box h3 { font-size: 1.4rem; margin-bottom: 10px; }
.thank-you-box p { color: var(--text-light); font-size: 0.95rem; margin-bottom: 26px; line-height: 1.6; }
.thank-you-box .btn { min-width: 160px; }

/* ==========================================================================
   CONTACT PAGE
   ========================================================================== */
.contact-grid { display: grid; grid-template-columns: 0.85fr 1.15fr; gap: 40px; }
.contact-info-card {
  background: var(--white); border: 1px solid var(--border); border-radius: var(--radius); padding: 28px;
  display: flex; gap: 18px; align-items: flex-start; margin-bottom: 20px; box-shadow: var(--shadow-sm);
}
.contact-info-card .icon-circle { width: 58px; height: 58px; border-radius: 16px; background: var(--primary-light); color: var(--primary); display: flex; align-items: center; justify-content: center; font-size: 1.4rem; flex-shrink: 0; }
.contact-info-card h3 { font-size: 1.15rem; margin-bottom: 6px; }
.contact-info-card p, .contact-info-card a { font-size: 1rem; color: var(--text-light); display: block; }
.contact-info-card a:hover { color: var(--primary); }
.contact-form-card { background: var(--white); border: 1px solid var(--border); border-radius: var(--radius-lg); padding: 44px; box-shadow: var(--shadow-sm); }
.contact-form-card h3 { font-size: 1.5rem; margin-bottom: 8px; }
.contact-form-card > p { font-size: 1rem; color: var(--text-light); margin-bottom: 24px; }
.contact-form-card .form-row { gap: 20px; margin-bottom: 20px; }
.contact-form-card .form-group { margin-bottom: 20px; }
.contact-form-card .form-group label { font-size: 0.92rem; margin-bottom: 8px; }
.contact-form-card .form-group input,
.contact-form-card .form-group select,
.contact-form-card .form-group textarea { padding: 15px 18px; font-size: 1.02rem; }
.contact-form-card .form-group textarea { min-height: 130px; }
.contact-form-card .btn-block { padding: 17px 28px; font-size: 1.05rem; }
.map-wrap { border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-sm); margin-top: 60px; border: 1px solid var(--border); }
.map-wrap iframe { width: 100%; height: 380px; border: 0; display: block; }

/* ==========================================================================
   FOOTER
   ========================================================================== */
.site-footer { background: var(--dark); color: rgba(255,255,255,0.75); padding-top: 70px; }
.footer-grid { display: grid; grid-template-columns: 1.3fr 1fr 1fr 1.1fr; gap: 40px; padding-bottom: 50px; border-bottom: 1px solid rgba(255,255,255,0.1); }
.footer-logo { display: inline-flex; align-items: center; gap: 12px; margin-bottom: 18px; background: var(--white); padding: 10px 16px; border-radius: var(--radius); }
.footer-logo .logo-text strong { color: var(--white); }
.site-footer p { font-size: 0.9rem; line-height: 1.7; margin-bottom: 20px; }
.footer-social { display: flex; gap: 10px; }
.footer-social a {
  width: 38px; height: 38px; border-radius: 50%; background: var(--white);
  color: var(--text-light);
  display: flex; align-items: center; justify-content: center; transition: all 0.25s ease;
}
.footer-social a:hover { transform: translateY(-3px); box-shadow: 0 6px 14px rgba(0,0,0,0.25); }
.footer-social a.social-fb { color: #1877F2; }
.footer-social a.social-ig { color: #E4405F; }
.footer-social a.social-x { color: #000000; }
.footer-social a.social-yt { color: #FF0000; }
.footer-social a.social-li { color: #0A66C2; }
.footer-social a.social-pin { color: #E60023; }
.site-footer h4 { color: var(--white); font-size: 1.02rem; margin-bottom: 22px; }
.footer-links li { margin-bottom: 13px; }
.footer-links a:hover { color: var(--secondary); padding-left: 4px; }
.footer-links a { transition: all 0.2s ease; font-size: 0.92rem; }
.footer-contact li { display: flex; gap: 12px; margin-bottom: 16px; font-size: 0.9rem; align-items: flex-start; }
.footer-contact i { color: var(--secondary); margin-top: 4px; }
.footer-bottom { display: flex; justify-content: space-between; align-items: center; padding: 24px 0; font-size: 0.85rem; flex-wrap: wrap; gap: 10px; }
.footer-bottom-links { display: flex; gap: 20px; }
.footer-bottom-links a:hover { color: var(--secondary); }

/* ==========================================================================
   MISC
   ========================================================================== */
.back-to-top {
  position: fixed; right: 22px; bottom: 92px; width: 46px; height: 46px; border-radius: 50%;
  background: var(--primary); color: var(--white); display: none; align-items: center; justify-content: center;
  box-shadow: var(--shadow); z-index: 900; opacity: 0; transition: opacity 0.3s ease;
}
.back-to-top.show { display: flex; opacity: 1; }

.floating-actions, .fab-left {
  position: fixed; bottom: 24px; z-index: 950; display: flex; flex-direction: column; gap: 14px;
}
.floating-actions { right: 22px; }
.fab-left { left: 22px; }
.fab-btn {
  width: 54px; height: 54px; border-radius: 50%; display: flex; align-items: center; justify-content: center;
  font-size: 1.4rem; color: var(--white); box-shadow: 0 0 0 4px var(--white), var(--shadow-lg);
  transition: transform 0.25s ease, box-shadow 0.25s ease; position: relative;
}
.fab-btn:hover { transform: translateY(-4px) scale(1.05); }
.fab-tooltip {
  position: absolute; right: calc(100% + 14px); top: 50%; transform: translateY(-50%) translateX(6px);
  background: var(--dark); color: var(--white); font-size: 0.82rem; font-weight: 600;
  padding: 8px 14px; border-radius: 8px; white-space: nowrap;
  opacity: 0; pointer-events: none; transition: opacity 0.2s ease, transform 0.2s ease; box-shadow: var(--shadow-sm);
}
.fab-tooltip::after {
  content: ''; position: absolute; left: 100%; top: 50%; transform: translateY(-50%);
  border: 6px solid transparent; border-left-color: var(--dark);
}
.fab-tooltip-right { right: auto; left: calc(100% + 14px); transform: translateY(-50%) translateX(-6px); }
.fab-tooltip-right::after { left: auto; right: 100%; border-left-color: transparent; border-right-color: var(--dark); }
.fab-btn:hover .fab-tooltip, .fab-btn:focus-visible .fab-tooltip,
.back-to-top:hover .fab-tooltip, .back-to-top:focus-visible .fab-tooltip {
  opacity: 1; transform: translateY(-50%) translateX(0);
}
.fab-btn::before {
  content: ''; position: absolute; inset: 0; border-radius: 50%; z-index: -1;
  animation: fabPulse 2.2s ease-out infinite;
}
.fab-whatsapp { background: #25d366; }
.fab-whatsapp::before { background: #25d366; }
.fab-call { background: var(--primary); }
.fab-call::before { background: var(--primary); animation-delay: 1.1s; }
@keyframes fabPulse {
  0% { transform: scale(1); opacity: 0.55; }
  100% { transform: scale(1.9); opacity: 0; }
}
@media (prefers-reduced-motion: reduce) {
  .fab-btn::before { animation: none; }
}
@media (max-width: 560px) {
  .floating-actions, .fab-left { bottom: 16px; gap: 12px; }
  .floating-actions { right: 14px; }
  .fab-left { left: 14px; }
  .fab-btn { width: 54px; height: 54px; font-size: 1.3rem; box-shadow: 0 0 0 3px var(--white), var(--shadow-lg); }
  .back-to-top { right: 14px; bottom: 82px; width: 42px; height: 42px; }
  .fab-tooltip { display: none; }
}
[data-aos] { opacity: 0; transform: translateY(24px); transition: opacity 0.6s ease, transform 0.6s ease; }
[data-aos].aos-in { opacity: 1; transform: translateY(0); }

/* ==========================================================================
   RESPONSIVE
   ========================================================================== */
@media (max-width: 1200px) {
  .trust-grid { grid-template-columns: repeat(3, 1fr); }
  .cards-grid { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 1024px) {
  :root { --header-h: 80px; }
  .logo-img { height: 62px; }
  .hero .container { grid-template-columns: 1fr; }
  .hero-media { order: -1; }
  .hero-media-frame img { height: 320px; }
  .about-grid { grid-template-columns: 1fr; }
  .about-media img { height: 340px; }
  .services-grid-main { grid-template-columns: 1fr; }
  .category-grid { grid-template-columns: 1fr; }
  .why-grid { grid-template-columns: repeat(2, 1fr); }
  .type-grid { grid-template-columns: repeat(2, 1fr); }
  .gallery-grid { grid-template-columns: repeat(3, 1fr); }
  .blog-grid { grid-template-columns: repeat(2, 1fr); }
  .cascade-grid { grid-template-columns: 1fr; gap: 24px; }
  .cascade-card, .cascade-card[data-row-pos="1"], .cascade-card[data-row-pos="2"] { transform: none; }
  .cascade-card:hover, .cascade-card[data-row-pos="1"]:hover, .cascade-card[data-row-pos="2"]:hover { transform: translateY(-4px); }
  .counters-grid { grid-template-columns: repeat(2, 1fr); gap: 30px; }
  .contact-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 36px 24px; }
  .top-bar-left span:last-child { display: none; }
}
@media (max-width: 900px) {
  .main-nav, .top-bar { display: none; }
  .header-actions .btn { padding: 9px 16px; font-size: 0.85rem; gap: 6px; }
  .hamburger { display: flex; }
  section { padding: 46px 0; }
  .steps-row { grid-template-columns: repeat(2, 1fr); gap: 22px; }
  .step-arrow { display: none; }
  .steps-row::before { display: none; }
  .cards-grid { grid-template-columns: repeat(2, 1fr); }
  .cards-grid.cols-3 { grid-template-columns: repeat(2, 1fr); }
  .trust-grid { grid-template-columns: repeat(2, 1fr); }
  .trust-grid.cols-4 { grid-template-columns: repeat(2, 1fr); }

  .main-nav {
    display: block; position: fixed; top: 0; right: -100%; width: min(320px, 86%); height: 100vh; height: 100dvh;
    background: var(--white); box-shadow: var(--shadow-lg); padding: 100px 30px 40px; transition: right 0.35s ease;
    z-index: 1050; overflow-y: auto;
  }
  .main-nav.open { right: 0; }
  .main-nav ul { flex-direction: column; align-items: flex-start; gap: 6px; }
  .main-nav ul li { width: 100%; }
  .main-nav a { display: block; padding: 14px 4px; font-size: 1.05rem; border-bottom: 1px solid var(--border); }
  .main-nav .nav-book { display: block; margin-top: 18px; }
  .main-nav .nav-book .btn { width: 100%; color: var(--white); border-bottom: none; padding: 13px 20px; font-size: 0.95rem; }
  .nav-overlay { position: fixed; inset: 0; background: rgba(30,27,58,0.5); z-index: 1040; display: none; }
  .nav-overlay.show { display: block; }

  .nav-has-dropdown > a { justify-content: space-between; width: 100%; }
  .nav-dropdown {
    position: static; width: auto; padding-top: 0; opacity: 1; visibility: visible; pointer-events: auto;
    transform: none; top: auto; left: auto; z-index: auto;
    max-height: 0; overflow: hidden; transition: max-height 0.3s ease;
  }
  .nav-has-dropdown.open .nav-dropdown { max-height: 200px; }
  .nav-has-dropdown:hover .nav-caret { transform: none; }
  .nav-has-dropdown.open .nav-caret { transform: rotate(180deg); }
  .nav-dropdown-inner { box-shadow: none; padding: 4px 0 8px 14px; }
  .nav-dropdown-item { padding: 10px 8px; border-bottom: none; }
}
@media (max-width: 768px) {
  .hero { padding: 40px 0 50px; }
  .hero-stats { grid-template-columns: repeat(2, 1fr); }
  .hero-float-card { display: none; }
  .about-list { grid-template-columns: 1fr; }
  .why-grid, .type-grid, .gallery-grid, .gallery-grid.cols-3, .blog-grid { grid-template-columns: 1fr 1fr; }
  .cards-grid, .cards-grid.cols-3 { grid-template-columns: 1fr; }
  .services-grid-main { gap: 24px; }
  .form-row { grid-template-columns: 1fr; }
  .cta-banner { flex-direction: column; text-align: center; padding: 40px 26px; }
  .cta-banner-text { max-width: 100%; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .counters-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 560px) {
  .container { padding: 0 18px; }
  section { padding: 38px 0; }
  :root { --header-h: 66px; }
  .logo-img { height: 50px; }
  .header-actions { gap: 10px; }
  .header-actions .btn { padding: 8px 12px; font-size: 0.8rem; }
  .hero-stats { grid-template-columns: repeat(2, 1fr); gap: 14px; }
  .hero-cta { flex-direction: column; align-items: stretch; }
  .hero-cta .btn { width: 100%; }
  .trust-grid, .trust-grid.cols-4, .why-grid, .type-grid, .gallery-grid, .gallery-grid.cols-3, .blog-grid, .steps-row { grid-template-columns: 1fr; }
  .trust-grid, .trust-grid.cols-4 { gap: 4px; }
  .trust-item { padding: 10px 10px; }
  .trust-item .icon-circle { width: 46px; height: 46px; font-size: 1.1rem; margin: 0 auto 8px; }
  .trust-item h3 { font-size: 0.92rem; margin-bottom: 3px; }
  .trust-item p { font-size: 0.8rem; }
  .brand-chip { padding: 16px 22px; font-size: 0.92rem; }
  .service-main-body { padding: 22px; }
  .category-card { padding: 26px 24px; }
  .diagnostic-card { padding: 30px 26px; flex-direction: column; text-align: center; }
  .diagnostic-card-actions { width: 100%; flex-direction: column; }
  .diagnostic-card-actions .btn { width: 100%; }
  .about-badge { position: static; margin-top: 18px; display: inline-block; }
  .modal-body { padding: 20px; }
  .modal-head { padding: 20px; }
  .counters-grid { grid-template-columns: 1fr 1fr; }
  .cta-banner-actions { width: 100%; flex-direction: column; }
  .cta-banner-actions .btn { width: 100%; }

  .contact-grid { gap: 22px; }
  .contact-info-card { padding: 16px; gap: 12px; margin-bottom: 12px; border-radius: var(--radius-sm); }
  .contact-info-card .icon-circle { width: 42px; height: 42px; border-radius: 12px; font-size: 1.1rem; }
  .contact-info-card h3 { font-size: 0.95rem; margin-bottom: 3px; }
  .contact-info-card p, .contact-info-card a { font-size: 0.86rem; }
  .contact-form-card { padding: 18px; }
  .contact-form-card h3 { font-size: 1.15rem; margin-bottom: 4px; }
  .contact-form-card > p { font-size: 0.88rem; margin-bottom: 16px; }
  .contact-form-card .form-row { gap: 10px; margin-bottom: 10px; }
  .contact-form-card .form-group { margin-bottom: 10px; }
  .contact-form-card .form-group label { font-size: 0.85rem; margin-bottom: 5px; }
  .contact-form-card .form-group input,
  .contact-form-card .form-group select,
  .contact-form-card .form-group textarea { padding: 10px 12px; font-size: 0.9rem; }
  .contact-form-card .form-group textarea { min-height: 90px; }
  .contact-form-card .btn-block { padding: 13px 22px; font-size: 0.95rem; }
}
