/* ============================================================
   SARA SHINE CLEANING LIMITED — main.css
   ============================================================ */

/* ── Google Fonts ── */
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,700;0,800;1,700&family=DM+Sans:wght@300;400;500;600;700&display=swap');

/* ── Design Tokens ── */
:root {
  --sky:        #3aaed8;
  --sky-dark:   #1e8ab0;
  --sky-mid:    #2899c0;
  --sky-light:  #e8f6fb;
  --sky-pale:   #f0faff;
  --gold:       #f5c842;
  --gold-dark:  #d4a800;
  --navy:       #0d2b3e;
  --navy-mid:   #163d57;
  --white:      #ffffff;
  --gray:       #6b7a8a;
  --gray-light: #b0bec9;
  --light:      #f4f9fc;
  --border:     #d8edf5;
  --text:       #1a2e3b;
  --shadow-sm:  0 2px 12px rgba(0,0,0,0.06);
  --shadow-md:  0 8px 32px rgba(0,0,0,0.10);
  --shadow-lg:  0 20px 60px rgba(0,0,0,0.14);
  --shadow-sky: 0 8px 32px rgba(58,174,216,0.25);
  --radius-sm:  10px;
  --radius-md:  18px;
  --radius-lg:  28px;
  --transition: 0.25s ease;
}

/* ── Reset ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: 'DM Sans', sans-serif;
  color: var(--text);
  background: var(--white);
  overflow-x: hidden;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
img { display: block; max-width: 100%; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }

/* ── Typography ── */
h1, h2, h3, h4 { line-height: 1.15; color: var(--navy); }
h1 { font-family: 'Playfair Display', serif; font-size: clamp(2rem, 4vw, 3.4rem); }
h2 { font-family: 'Playfair Display', serif; font-size: clamp(1.7rem, 3vw, 2.6rem); }
h3 { font-family: 'Playfair Display', serif; font-size: clamp(1.2rem, 2vw, 1.5rem); }

/* ── Utility ── */
.container   { max-width: 1200px; margin: 0 auto; padding: 0 5%; }
.text-center { text-align: center; }
.text-sky    { color: var(--sky); }
.text-navy   { color: var(--navy); }
.text-gray   { color: var(--gray); }

.section { padding: 5.5rem 5%; }
.section-label {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--sky);
  margin-bottom: 0.6rem;
}
.section-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  color: var(--navy);
  margin-bottom: 0.9rem;
  line-height: 1.2;
}
.section-sub {
  color: var(--gray);
  font-size: 1rem;
  max-width: 560px;
  line-height: 1.75;
}
.text-center .section-sub { margin: 0 auto; }

/* ── Buttons ── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 0.72rem 1.5rem;
  border-radius: 50px;
  font-family: 'DM Sans', sans-serif;
  font-weight: 600;
  font-size: 0.88rem;
  letter-spacing: 0.03em;
  cursor: pointer;
  transition: transform var(--transition), box-shadow var(--transition), background var(--transition), color var(--transition), border-color var(--transition);
  border: 2px solid transparent;
  white-space: nowrap;
}
.btn:hover { transform: translateY(-2px); }
.btn:active { transform: translateY(0); }

.btn-primary {
  background: var(--sky);
  color: var(--white);
  border-color: var(--sky);
  box-shadow: 0 4px 18px rgba(58,174,216,0.35);
}
.btn-primary:hover {
  background: var(--sky-dark);
  border-color: var(--sky-dark);
  box-shadow: 0 8px 28px rgba(58,174,216,0.45);
}
.btn-outline {
  background: transparent;
  color: var(--navy);
  border-color: var(--navy);
}
.btn-outline:hover { background: var(--navy); color: var(--white); }

.btn-outline-white {
  background: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,0.55);
}
.btn-outline-white:hover { background: rgba(255,255,255,0.15); border-color: var(--white); }

.btn-white {
  background: var(--white);
  color: var(--sky-dark);
  border-color: var(--white);
  box-shadow: 0 4px 18px rgba(0,0,0,0.12);
}
.btn-white:hover { background: var(--sky-light); box-shadow: 0 8px 28px rgba(0,0,0,0.16); }

.btn-gold {
  background: var(--gold);
  color: var(--navy);
  border-color: var(--gold);
  box-shadow: 0 4px 18px rgba(245,200,66,0.35);
}
.btn-gold:hover { background: var(--gold-dark); border-color: var(--gold-dark); }

/* ── Nav ── */
nav {
  position: sticky;
  top: 0;
  z-index: 200;
  height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 5%;
  background: rgba(255,255,255,0.96);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  box-shadow: 0 2px 24px rgba(0,0,0,0.07);
  transition: box-shadow 0.3s;
}
nav.scrolled { box-shadow: 0 4px 32px rgba(0,0,0,0.12); }

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
}
.logo-icon { font-size: 1.5rem; color: var(--gold); }
.logo-text .brand {
  font-family: 'Playfair Display', serif;
  font-size: 1.2rem;
  font-weight: 800;
  color: var(--sky);
  letter-spacing: 0.02em;
  line-height: 1;
}
.logo-text .sub {
  font-size: 0.6rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--navy);
  opacity: 0.6;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 2.2rem;
}
.nav-links a {
  font-size: 0.88rem;
  font-weight: 500;
  color: var(--navy);
  position: relative;
  transition: color var(--transition);
  padding-bottom: 2px;
}
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--sky);
  border-radius: 2px;
  transition: width var(--transition);
}
.nav-links a:hover,
.nav-links a.active { color: var(--sky); }
.nav-links a:hover::after,
.nav-links a.active::after { width: 100%; }

.nav-cta { display: flex; align-items: center; gap: 1rem; }

/* Mobile hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 6px;
  border-radius: 8px;
  transition: background 0.2s;
}
.hamburger:hover { background: var(--sky-light); }
.hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--navy);
  border-radius: 2px;
  transition: transform 0.3s, opacity 0.3s;
}
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile nav drawer */
.mobile-nav {
  display: none;
  position: fixed;
  top: 72px;
  left: 0; right: 0;
  background: var(--white);
  padding: 1.5rem 5% 2rem;
  box-shadow: 0 16px 40px rgba(0,0,0,0.12);
  z-index: 190;
  flex-direction: column;
  gap: 1rem;
  border-top: 1px solid var(--border);
}
.mobile-nav.open { display: flex; }
.mobile-nav a {
  font-size: 1rem;
  font-weight: 600;
  color: var(--navy);
  padding: 0.5rem 0;
  border-bottom: 1px solid var(--border);
  transition: color 0.2s;
}
.mobile-nav a:hover, .mobile-nav a.active { color: var(--sky); }
.mobile-nav .btn { width: 100%; justify-content: center; margin-top: 0.5rem; }

/* ── Trust Bar ── */
.trust-bar {
  background: var(--white);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 1.6rem 5%;
  display: flex;
  justify-content: space-around;
  flex-wrap: wrap;
  gap: 1.5rem;
}
.trust-item {
  display: flex;
  align-items: center;
  gap: 12px;
}
.trust-item .ti-icon {
  width: 46px; height: 46px;
  border-radius: 50%;
  background: var(--sky-light);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  flex-shrink: 0;
}
.trust-item .ti-title { font-weight: 700; font-size: 0.88rem; color: var(--navy); }
.trust-item .ti-sub   { font-size: 0.76rem; color: var(--gray); }

/* ── Page Hero / Banner ── */
.page-hero {
  background: linear-gradient(135deg, var(--sky-dark) 0%, var(--sky) 100%);
  padding: 5rem 5% 4rem;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute;
  top: -60px; right: -60px;
  width: 320px; height: 320px;
  border-radius: 50%;
  background: rgba(255,255,255,0.06);
  pointer-events: none;
}
.page-hero::after {
  content: '';
  position: absolute;
  bottom: -80px; left: -40px;
  width: 260px; height: 260px;
  border-radius: 50%;
  background: rgba(255,255,255,0.04);
  pointer-events: none;
}
.page-hero .section-label { color: rgba(255,255,255,0.75); }
.page-hero h1 { color: var(--white); margin-bottom: 0.8rem; }
.page-hero p  { color: rgba(255,255,255,0.8); max-width: 540px; margin: 0 auto; font-size: 1.05rem; }

/* Breadcrumb */
.breadcrumb {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  justify-content: center;
  margin-top: 1.2rem;
  font-size: 0.8rem;
  color: rgba(255,255,255,0.6);
}
.breadcrumb a { color: rgba(255,255,255,0.8); transition: color 0.2s; }
.breadcrumb a:hover { color: var(--white); }
.breadcrumb .sep { opacity: 0.4; }
.breadcrumb .current { color: var(--white); font-weight: 600; }

/* ── CTA Banner ── */
.cta-banner {
  background: linear-gradient(135deg, var(--sky-dark) 0%, var(--sky) 100%);
  border-radius: var(--radius-lg);
  padding: 3.5rem 4rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  flex-wrap: wrap;
  margin: 0 5% 5.5rem;
  box-shadow: 0 24px 70px rgba(30,138,176,0.32);
  position: relative;
  overflow: hidden;
}
.cta-banner::before {
  content: '✦';
  position: absolute; right: 4%; top: 50%;
  transform: translateY(-50%);
  font-size: 9rem;
  color: rgba(255,255,255,0.05);
  pointer-events: none;
}
.cta-banner .cta-icon {
  width: 64px; height: 64px;
  border-radius: 50%;
  background: rgba(255,255,255,0.18);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.6rem;
  flex-shrink: 0;
}
.cta-banner-text h2 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.3rem, 2.5vw, 1.8rem);
  color: var(--white);
  margin-bottom: 0.3rem;
}
.cta-banner-text p { color: rgba(255,255,255,0.78); font-size: 0.92rem; }
.cta-banner-actions { display: flex; gap: 1rem; flex-wrap: wrap; }

/* ── Footer ── */
footer {
  background: var(--navy);
  color: rgba(255,255,255,0.7);
}
.footer-main {
  display: grid;
  grid-template-columns: 1.8fr 1fr 1fr 1fr;
  gap: 3rem;
  padding: 4rem 5% 3rem;
}
.footer-brand .brand {
  font-family: 'Playfair Display', serif;
  font-size: 1.3rem;
  color: var(--sky);
  font-weight: 800;
}
.footer-brand .sub {
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.4);
}
.footer-brand p {
  font-size: 0.86rem;
  line-height: 1.75;
  margin-top: 1rem;
  color: rgba(255,255,255,0.55);
}
.footer-col h4 {
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 1.2rem;
  font-family: 'DM Sans', sans-serif;
}
.footer-col ul li { margin-bottom: 0.55rem; }
.footer-col ul li a {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.6);
  transition: color 0.2s;
}
.footer-col ul li a:hover { color: var(--sky); }

.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.87rem;
  margin-bottom: 0.75rem;
  color: rgba(255,255,255,0.6);
  line-height: 1.5;
}
.contact-item .ci { font-size: 0.95rem; flex-shrink: 0; margin-top: 1px; }

.social-row { display: flex; gap: 0.65rem; margin-top: 0.8rem; }
.social-btn {
  width: 38px; height: 38px;
  border-radius: var(--radius-sm);
  background: rgba(255,255,255,0.08);
  display: flex; align-items: center; justify-content: center;
  font-size: 0.85rem;
  font-weight: 700;
  color: rgba(255,255,255,0.7);
  transition: background 0.2s, color 0.2s;
}
.social-btn:hover { background: var(--sky); color: var(--white); }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding: 1.5rem 5%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.78rem;
  color: rgba(255,255,255,0.35);
  flex-wrap: wrap;
  gap: 0.5rem;
}

/* ── Why-Choose Grid ── */
.why-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.85rem;
  margin: 1.5rem 0 2rem;
}
.why-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.88rem;
  color: var(--text);
  font-weight: 500;
}
.wi-check {
  width: 20px; height: 20px;
  flex-shrink: 0;
  border-radius: 50%;
  background: var(--sky);
  color: var(--white);
  display: flex; align-items: center; justify-content: center;
  font-size: 0.6rem;
  margin-top: 1px;
}

/* ── Stat Cards ── */
.stats-row {
  display: flex;
  gap: 1.5rem;
  flex-wrap: wrap;
  margin-top: 1.5rem;
}
.stat-card {
  background: var(--sky-light);
  border-radius: var(--radius-md);
  padding: 1.2rem 1.6rem;
  text-align: center;
  flex: 1;
  min-width: 100px;
}
.stat-card .stat-num {
  font-family: 'Playfair Display', serif;
  font-size: 2rem;
  font-weight: 800;
  color: var(--sky-dark);
  line-height: 1;
}
.stat-card .stat-label {
  font-size: 0.76rem;
  color: var(--gray);
  font-weight: 500;
  margin-top: 4px;
  letter-spacing: 0.04em;
}

/* ── Image Placeholder (replace with real <img>) ── */
.img-placeholder {
  width: 100%;
  border-radius: var(--radius-lg);
  background: linear-gradient(135deg, #c8e8f4, #a0cee0);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  color: var(--sky-dark);
  font-size: 3.5rem;
  box-shadow: var(--shadow-lg);
}
.img-placeholder span { font-size: 0.8rem; font-weight: 600; opacity: 0.6; }

/* ── Animations ── */
@keyframes fadeDown {
  from { opacity: 0; transform: translateY(-22px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(22px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes fadeLeft {
  from { opacity: 0; transform: translateX(30px); }
  to   { opacity: 1; transform: translateX(0); }
}
@keyframes fadeRight {
  from { opacity: 0; transform: translateX(-30px); }
  to   { opacity: 1; transform: translateX(0); }
}
@keyframes floatY {
  0%, 100% { transform: translateY(0); }
  50%       { transform: translateY(-10px); }
}
@keyframes pulse {
  0%, 100% { opacity: 1; }
  50%       { opacity: 0.6; }
}

.animate-fadeDown  { animation: fadeDown  0.65s ease both; }
.animate-fadeUp    { animation: fadeUp    0.65s ease both; }
.animate-fadeLeft  { animation: fadeLeft  0.65s ease both; }
.animate-fadeRight { animation: fadeRight 0.65s ease both; }

.delay-1 { animation-delay: 0.1s; }
.delay-2 { animation-delay: 0.2s; }
.delay-3 { animation-delay: 0.3s; }
.delay-4 { animation-delay: 0.4s; }
.delay-5 { animation-delay: 0.5s; }

/* scroll-reveal hidden state */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.65s ease, transform 0.65s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ============================================================
   HERO (index.html specific)
   ============================================================ */
.hero {
  min-height: 88vh;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  padding: 0 5%;
  gap: 4rem;
  background: linear-gradient(140deg, var(--sky-pale) 0%, #e4f3f9 55%, #d0eaf6 100%);
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute; top: -120px; right: -120px;
  width: 550px; height: 550px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(58,174,216,0.14) 0%, transparent 70%);
  pointer-events: none;
}
.hero::after {
  content: '';
  position: absolute; bottom: -80px; left: -80px;
  width: 380px; height: 380px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(245,200,66,0.1) 0%, transparent 70%);
  pointer-events: none;
}
.hero-content { position: relative; z-index: 2; }
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(58,174,216,0.12);
  border: 1px solid rgba(58,174,216,0.28);
  color: var(--sky-dark);
  padding: 6px 14px;
  border-radius: 50px;
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  margin-bottom: 1.5rem;
}
.hero h1 { margin-bottom: 1.2rem; }
.hero h1 span { color: var(--sky); font-style: italic; }
.hero p {
  font-size: 1.05rem;
  color: var(--gray);
  line-height: 1.75;
  max-width: 440px;
  margin-bottom: 2rem;
}
.hero-cta { display: flex; gap: 1rem; flex-wrap: wrap; }
.hero-image-wrap { position: relative; z-index: 2; }
.hero-image-wrap .img-placeholder { height: 440px; }
.hero-float-card {
  position: absolute;
  bottom: -18px; left: -24px;
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 14px 20px;
  box-shadow: var(--shadow-md);
  display: flex; align-items: center; gap: 12px;
  animation: floatY 3.5s ease-in-out infinite;
}
.hero-float-card .icon { font-size: 1.8rem; }
.hero-float-card .label { font-size: 0.72rem; color: var(--gray); font-weight: 500; }
.hero-float-card .value { font-size: 0.95rem; color: var(--navy); font-weight: 700; }

/* ============================================================
   SERVICE CARDS (index + services pages)
   ============================================================ */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.8rem;
  margin-top: 3rem;
}
.service-card {
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 2.2rem;
  box-shadow: var(--shadow-sm);
  transition: transform var(--transition), box-shadow var(--transition);
  position: relative;
  overflow: hidden;
  border: 1px solid var(--border);
}
.service-card::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--sky), var(--sky-dark));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.35s ease;
}
.service-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-sky); }
.service-card:hover::before { transform: scaleX(1); }
.service-card.featured { background: linear-gradient(145deg, var(--sky-dark), var(--sky-mid)); }
.service-card.featured .sc-title,
.service-card.featured .sc-desc { color: var(--white); }
.service-card.featured .sc-link { color: var(--gold); }
.service-card.featured .sc-icon-wrap { background: rgba(255,255,255,0.15); }
.service-card.gold-accent .sc-icon-wrap { background: rgba(245,200,66,0.15); }

.sc-icon-wrap {
  width: 64px; height: 64px;
  border-radius: var(--radius-sm);
  background: var(--sky-light);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.8rem;
  margin-bottom: 1.4rem;
  transition: transform 0.25s;
}
.service-card:hover .sc-icon-wrap { transform: scale(1.08); }
.sc-title {
  font-family: 'Playfair Display', serif;
  font-size: 1.15rem;
  color: var(--navy);
  margin-bottom: 0.65rem;
  font-weight: 700;
}
.sc-desc {
  font-size: 0.88rem;
  color: var(--gray);
  line-height: 1.72;
  margin-bottom: 1.5rem;
}
.sc-link {
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--sky);
  display: inline-flex; align-items: center; gap: 6px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  transition: gap 0.2s;
}
.sc-link:hover { gap: 10px; }

/* ============================================================
   ABOUT PAGE
   ============================================================ */
.about-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}
.about-split.reverse { direction: rtl; }
.about-split.reverse > * { direction: ltr; }
.about-img-wrap { position: relative; }
.about-img-wrap .img-placeholder { height: 460px; }
.about-badge {
  position: absolute;
  top: -20px; right: -20px;
  background: var(--gold);
  color: var(--navy);
  border-radius: var(--radius-md);
  padding: 16px 20px;
  text-align: center;
  font-weight: 800;
  box-shadow: 0 8px 28px rgba(245,200,66,0.38);
}
.about-badge .big {
  font-family: 'Playfair Display', serif;
  font-size: 2.1rem;
  line-height: 1;
}
.about-badge .small {
  font-size: 0.65rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  opacity: 0.75;
}

/* Team cards */
.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}
.team-card {
  background: var(--white);
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border);
  text-align: center;
  transition: transform var(--transition), box-shadow var(--transition);
}
.team-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-sky); }
.team-avatar {
  height: 180px;
  background: linear-gradient(135deg, var(--sky-light), #b8dff0);
  display: flex; align-items: center; justify-content: center;
  font-size: 4rem;
}
.team-info { padding: 1.4rem; }
.team-info h4 { font-family: 'Playfair Display', serif; font-size: 1.05rem; color: var(--navy); margin-bottom: 0.2rem; }
.team-info .role { font-size: 0.78rem; color: var(--sky); font-weight: 600; letter-spacing: 0.06em; text-transform: uppercase; }
.team-info p { font-size: 0.82rem; color: var(--gray); line-height: 1.65; margin-top: 0.6rem; }

/* Values */
.values-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.5rem;
  margin-top: 3rem;
}
.value-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 2rem 1.8rem;
  transition: transform var(--transition), border-color var(--transition), box-shadow var(--transition);
}
.value-card:hover { transform: translateY(-4px); border-color: var(--sky); box-shadow: var(--shadow-sky); }
.value-icon {
  font-size: 2rem;
  margin-bottom: 1rem;
  display: block;
}
.value-card h4 {
  font-family: 'Playfair Display', serif;
  font-size: 1.05rem;
  color: var(--navy);
  margin-bottom: 0.5rem;
}
.value-card p { font-size: 0.85rem; color: var(--gray); line-height: 1.7; }

/* ============================================================
   SERVICES PAGE
   ============================================================ */
.services-list { background: var(--light); }

/* Detail card / feature list */
.service-detail-card {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border);
  margin-bottom: 2rem;
}
.service-detail-card.alt { direction: rtl; }
.service-detail-card.alt > * { direction: ltr; }
.sd-visual {
  height: 320px;
  background: linear-gradient(135deg, var(--sky-light), #b8dff0);
  display: flex; align-items: center; justify-content: center;
  font-size: 5rem;
}
.sd-content { padding: 2.5rem; }
.sd-content .section-label { margin-bottom: 0.4rem; }
.sd-content h3 { font-size: 1.4rem; margin-bottom: 0.8rem; }
.sd-content p { font-size: 0.88rem; color: var(--gray); line-height: 1.75; margin-bottom: 1.2rem; }
.sd-features { list-style: none; }
.sd-features li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.85rem;
  color: var(--text);
  margin-bottom: 0.5rem;
}
.sd-features li::before {
  content: '✓';
  width: 18px; height: 18px;
  background: var(--sky);
  color: var(--white);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 0.6rem;
  flex-shrink: 0;
  margin-top: 1px;
}

/* Pricing ribbon */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.8rem;
  margin-top: 3rem;
}
.pricing-card {
  background: var(--white);
  border: 2px solid var(--border);
  border-radius: var(--radius-md);
  padding: 2.4rem 2rem;
  text-align: center;
  transition: transform var(--transition), border-color var(--transition), box-shadow var(--transition);
  position: relative;
  overflow: hidden;
}
.pricing-card:hover { transform: translateY(-6px); border-color: var(--sky); box-shadow: var(--shadow-sky); }
.pricing-card.popular {
  border-color: var(--sky);
  box-shadow: var(--shadow-sky);
}
.popular-badge {
  position: absolute;
  top: 16px; right: -28px;
  background: var(--gold);
  color: var(--navy);
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 4px 36px;
  transform: rotate(45deg);
}
.pricing-icon { font-size: 2.5rem; margin-bottom: 1rem; }
.pricing-card h3 { font-size: 1.15rem; margin-bottom: 0.3rem; }
.pricing-card .price-tag {
  font-family: 'Playfair Display', serif;
  font-size: 1.05rem;
  color: var(--sky);
  font-weight: 700;
  margin: 0.5rem 0 1rem;
}
.pricing-card p { font-size: 0.84rem; color: var(--gray); line-height: 1.7; margin-bottom: 1.4rem; }
.pricing-features { list-style: none; text-align: left; margin-bottom: 1.6rem; }
.pricing-features li {
  font-size: 0.83rem;
  color: var(--text);
  padding: 0.3rem 0;
  border-bottom: 1px solid var(--border);
  display: flex; align-items: center; gap: 8px;
}
.pricing-features li::before { content: '✓'; color: var(--sky); font-weight: 700; }

/* ============================================================
   CONTACT PAGE
   ============================================================ */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 4rem;
  align-items: flex-start;
}

.contact-info-block { display: flex; flex-direction: column; gap: 1.6rem; }
.contact-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 1.8rem;
  display: flex;
  gap: 1.2rem;
  align-items: flex-start;
  transition: border-color var(--transition), box-shadow var(--transition);
}
.contact-card:hover { border-color: var(--sky); box-shadow: var(--shadow-sky); }
.cc-icon {
  width: 48px; height: 48px;
  border-radius: var(--radius-sm);
  background: var(--sky-light);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.3rem;
  flex-shrink: 0;
}
.cc-label { font-size: 0.72rem; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; color: var(--sky); margin-bottom: 3px; }
.cc-value { font-size: 0.92rem; font-weight: 600; color: var(--navy); }
.cc-sub   { font-size: 0.8rem; color: var(--gray); margin-top: 2px; }

/* Contact Form */
.contact-form-wrap {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 2.8rem;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--border);
}
.contact-form-wrap h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.5rem;
  margin-bottom: 0.4rem;
}
.contact-form-wrap .form-sub {
  font-size: 0.88rem;
  color: var(--gray);
  margin-bottom: 2rem;
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1.2rem; }
.form-group { display: flex; flex-direction: column; gap: 6px; margin-bottom: 1.2rem; }
.form-group label {
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--navy);
}
.form-group input,
.form-group select,
.form-group textarea {
  padding: 0.75rem 1rem;
  border: 1.5px solid var(--border);
  border-radius: var(--radius-sm);
  font-family: 'DM Sans', sans-serif;
  font-size: 0.9rem;
  color: var(--text);
  background: var(--white);
  transition: border-color 0.2s, box-shadow 0.2s;
  outline: none;
  width: 100%;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--sky);
  box-shadow: 0 0 0 3px rgba(58,174,216,0.12);
}
.form-group textarea { resize: vertical; min-height: 120px; }
.form-group select { appearance: none; cursor: pointer; }
.form-submit { width: 100%; justify-content: center; padding: 0.9rem 1.5rem; font-size: 0.95rem; margin-top: 0.4rem; }

/* Success state */
.form-success {
  display: none;
  text-align: center;
  padding: 2rem;
}
.form-success .success-icon { font-size: 3rem; margin-bottom: 1rem; }
.form-success h4 { font-family: 'Playfair Display', serif; color: var(--navy); margin-bottom: 0.5rem; }
.form-success p { color: var(--gray); font-size: 0.9rem; }

/* Map placeholder */
.map-wrap {
  height: 320px;
  border-radius: var(--radius-lg);
  background: linear-gradient(135deg, #c8e8f4, #9ac8df);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  font-size: 3.5rem;
  color: var(--sky-dark);
  box-shadow: var(--shadow-md);
  border: 1px solid var(--border);
  margin-top: 2rem;
}
.map-wrap p { font-size: 0.85rem; font-weight: 600; opacity: 0.65; }

/* FAQ */
.faq-list { margin-top: 2.5rem; display: flex; flex-direction: column; gap: 1rem; }
.faq-item {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: border-color 0.2s;
}
.faq-item.open { border-color: var(--sky); }
.faq-question {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.2rem 1.6rem;
  font-size: 0.92rem;
  font-weight: 600;
  color: var(--navy);
  cursor: pointer;
  background: none;
  border: none;
  font-family: 'DM Sans', sans-serif;
  text-align: left;
  transition: color 0.2s;
}
.faq-question:hover { color: var(--sky); }
.faq-arrow {
  font-size: 0.75rem;
  transition: transform 0.3s;
  color: var(--sky);
  flex-shrink: 0;
}
.faq-item.open .faq-arrow { transform: rotate(180deg); }
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.3s;
  font-size: 0.87rem;
  color: var(--gray);
  line-height: 1.75;
}
.faq-item.open .faq-answer {
  max-height: 300px;
  padding: 0 1.6rem 1.4rem;
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1024px) {
  .hero { grid-template-columns: 1fr; min-height: auto; padding: 4rem 5%; }
  .hero-image-wrap { display: none; }
  .about-split { grid-template-columns: 1fr; gap: 2.5rem; }
  .about-split .about-img-wrap { display: none; }
  .service-detail-card { grid-template-columns: 1fr; }
  .service-detail-card .sd-visual { height: 200px; }
  .contact-grid { grid-template-columns: 1fr; }
  .footer-main { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 768px) {
  .nav-links, .nav-cta .btn:not(.btn-primary) { display: none; }
  .hamburger { display: flex; }
  .hero { padding: 3rem 5%; }
  .section { padding: 4rem 5%; }
  .cta-banner { padding: 2.5rem; margin: 0 5% 4rem; }
  .form-row { grid-template-columns: 1fr; }
  .why-grid { grid-template-columns: 1fr; }
  .footer-main { grid-template-columns: 1fr; gap: 2rem; }
}
@media (max-width: 480px) {
  .trust-bar { justify-content: flex-start; }
  .stats-row { flex-direction: column; }
  .pricing-grid { grid-template-columns: 1fr; }
  .team-grid { grid-template-columns: 1fr; }
}
