/* ============================================================
   PROTOTYPE STYLESHEET — HakeemYaqoob Website Redesign
   All content is placeholder — replace before production.
   ============================================================ */

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  color: #1A1A1A;
  background: #FBF7F0;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* --- Visual system variables --- */
:root {
  --color-emerald:       #0A5C4E;
  --color-emerald-dark:  #073D33;
  --color-emerald-light: #E8F2EF;
  --color-ivory:         #FBF7F0;
  --color-gold:          #C9A96E;
  --color-gold-light:    #E8D5A8;
  --color-white:         #FFFFFF;
  --color-dark:          #0F1A18;
  --color-charcoal:      #1A1A1A;
  --color-muted:         #6B7280;

  --font-heading: 'Cormorant Garamond', Georgia, serif;
  --font-body:    'Inter', -apple-system, BlinkMacSystemFont, sans-serif;

  --header-height: 72px;
  --max-width: 1200px;
}

/* --- Dark theme overrides --- */
[data-theme="dark"] {
  --color-emerald:       #0D6B5A;
  --color-emerald-dark:  #0A5C4E;
  --color-emerald-light: #1A3D35;
  --color-ivory:         #1A1A1A;
  --color-gold:          #D4B87A;
  --color-gold-light:    #B89E5E;
  --color-white:         #E8E8E8;
  --color-dark:          #0A0A0A;
  --color-charcoal:      #E0E0E0;
  --color-muted:         #9CA3AF;
}

[data-theme="dark"] body {
  background: #121212;
  color: #E0E0E0;
}

[data-theme="dark"] .card,
[data-theme="dark"] .service-card,
[data-theme="dark"] .preview-card,
[data-theme="dark"] .testimonial-card,
[data-theme="dark"] .appointment-form {
  background: #1E1E1E;
  box-shadow: 0 2px 16px rgba(0, 0, 0, 0.3);
}

[data-theme="dark"] .section--ivory {
  background: #161616;
}

[data-theme="dark"] .placeholder-notice {
  background: #2D2D2D;
  color: #D4B87A;
}

[data-theme="dark"] .form-input,
[data-theme="dark"] .form-textarea {
  background: #2A2A2A;
  border-color: #3A3A3A;
  color: #E0E0E0;
}

[data-theme="dark"] .form-note {
  background: #1A3D35;
  color: #9CA3AF;
}

[data-theme="dark"] .about-image,
[data-theme="dark"] .gallery-item,
[data-theme="dark"] .content-split__image,
[data-theme="dark"] .blog-post__image,
[data-theme="dark"] .contact-map {
  background: #1E1E1E;
}

[data-theme="dark"] .card__image {
  background: #1E1E1E;
}

[data-theme="dark"] .blog-post__body p {
  color: #D0D0D0;
}

/* --- RTL / Urdu language --- */
body.lang-ur {
  font-family: 'Noto Naskh Arabic', 'Traditional Arabic', serif;
}

body.lang-ur .site-logo,
body.lang-ur .nav-link,
body.lang-ur .hero-badge,
body.lang-ur .hero-subtext,
body.lang-ur .btn,
body.lang-ur .trust-item,
body.lang-ur .section-title,
body.lang-ur .section-subtitle,
body.lang-ur .card__title,
body.lang-ur .card__text,
body.lang-ur .service-card__title,
body.lang-ur .service-card__text,
body.lang-ur .about-text__title,
body.lang-ur .about-text__body,
body.lang-ur .testimonial-card__quote,
body.lang-ur .form-label,
body.lang-ur .form-input,
body.lang-ur .form-textarea,
body.lang-ur .contact-info__label,
body.lang-ur .contact-info__value,
body.lang-ur .footer-brand__name,
body.lang-ur .footer-brand__desc,
body.lang-ur .footer-heading,
body.lang-ur .footer-links a,
body.lang-ur .blog-post__title,
body.lang-ur .blog-post__meta,
body.lang-ur .blog-post__body p,
body.lang-ur .page-banner__title,
body.lang-ur .page-banner__subtitle,
body.lang-ur .cta-banner__title,
body.lang-ur .cta-banner__text,
body.lang-ur .content-split__title,
body.lang-ur .content-split__text,
body.lang-ur .preview-card__title,
body.lang-ur .preview-card__text,
body.lang-ur .hero-search__input,
body.lang-ur .hero-search__btn,
body.lang-ur .hero-whatsapp-link,
body.lang-ur .whatsapp-text,
body.lang-ur .whatsapp-sub {
  font-family: 'Noto Naskh Arabic', 'Traditional Arabic', serif;
}

body.lang-ur .hero-quick-contact {
  right: auto;
  left: 24px;
}

/* --- Accessibility: focus --- */
a:focus-visible,
button:focus-visible,
input:focus-visible,
textarea:focus-visible,
select:focus-visible {
  outline: 2px solid var(--color-gold);
  outline-offset: 2px;
  border-radius: 4px;
}

/* --- Utility --- */
a {
  text-decoration: none;
  color: inherit;
}

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

.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
}

.section {
  padding: 80px 0;
}

.section--ivory {
  background: var(--color-ivory);
}

.section--emerald {
  background: var(--color-emerald);
  color: var(--color-white);
}

.section--dark {
  background: var(--color-dark);
  color: var(--color-white);
}

.section-title {
  font-family: var(--font-heading);
  font-size: clamp(28px, 3.5vw, 42px);
  font-weight: 700;
  text-align: center;
  margin-bottom: 12px;
  color: var(--color-charcoal);
}

.section-title--light {
  color: var(--color-white);
}

.section-subtitle {
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  color: var(--color-muted);
  text-align: center;
  max-width: 600px;
  margin: 0 auto 48px;
}

.section-subtitle--light {
  color: rgba(255, 255, 255, 0.7);
}

/* --- Header --- */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  padding: 0 32px;
  height: var(--header-height);
  display: flex;
  align-items: center;
  transition: background 0.3s ease;
}

.site-header--solid {
  background: var(--color-dark);
}

.header-inner {
  max-width: var(--max-width);
  width: 100%;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 16px;
}

.site-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--color-white);
  font-family: var(--font-heading);
  font-size: 22px;
  font-weight: 700;
  letter-spacing: 0.5px;
  flex-shrink: 0;
}

.logo-mark {
  font-size: 28px;
  color: var(--color-gold);
}

/* --- Toggle buttons (theme + language) --- */
.header-controls {
  display: flex;
  align-items: center;
  gap: 4px;
  margin-left: auto;
}

.theme-toggle,
.lang-toggle {
  background: none;
  border: 1px solid rgba(255, 255, 255, 0.25);
  color: rgba(255, 255, 255, 0.8);
  font-size: 16px;
  line-height: 1;
  cursor: pointer;
  padding: 6px 10px;
  border-radius: 6px;
  transition: all 0.2s ease;
  font-family: var(--font-body);
  font-weight: 600;
  letter-spacing: 0.5px;
  min-width: 38px;
  text-align: center;
}

.theme-toggle:hover,
.lang-toggle:hover {
  border-color: var(--color-gold);
  color: var(--color-gold);
}

.lang-toggle__text {
  font-size: 12px;
  letter-spacing: 0.5px;
}

/* --- Site navigation --- */
.site-nav {
  display: flex;
  gap: 20px;
  margin-left: 0;
}

.nav-link {
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.8);
  letter-spacing: 0.3px;
  transition: color 0.2s ease;
  position: relative;
  padding: 4px 0;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 1.5px;
  background: var(--color-gold);
  transition: width 0.25s ease;
}

.nav-link:hover {
  color: var(--color-white);
}

.nav-link:hover::after {
  width: 100%;
}

.nav-link--active {
  color: var(--color-gold-light);
}

.nav-link--active::after {
  width: 100%;
  background: var(--color-gold-light);
}

/* --- Menu toggle (mobile) --- */
.menu-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  margin-left: auto;
  color: var(--color-white);
  z-index: 110;
}

.menu-toggle__icon {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--color-white);
  position: relative;
  transition: background 0.2s ease;
}

.menu-toggle__icon::before,
.menu-toggle__icon::after {
  content: '';
  position: absolute;
  left: 0;
  width: 100%;
  height: 2px;
  background: var(--color-white);
  transition: transform 0.25s ease;
}

.menu-toggle__icon::before {
  top: -7px;
}

.menu-toggle__icon::after {
  top: 7px;
}

.menu-open .menu-toggle__icon {
  background: transparent;
}

.menu-open .menu-toggle__icon::before {
  transform: translateY(7px) rotate(45deg);
}

.menu-open .menu-toggle__icon::after {
  transform: translateY(-7px) rotate(-45deg);
}

/* --- Buttons --- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  border-radius: 6px;
  transition: all 0.25s ease;
  cursor: pointer;
  white-space: nowrap;
  border: 1.5px solid transparent;
  text-decoration: none;
}

.btn-primary {
  background: var(--color-emerald);
  color: var(--color-white);
  padding: 10px 24px;
  border-color: var(--color-emerald);
}

.btn-primary:hover {
  background: var(--color-gold);
  border-color: var(--color-gold);
  color: var(--color-dark);
}

.btn-outline {
  background: transparent;
  color: var(--color-white);
  padding: 10px 24px;
  border-color: rgba(255, 255, 255, 0.4);
}

.btn-outline:hover {
  border-color: var(--color-gold);
  color: var(--color-gold);
}

.btn-outline-dark {
  background: transparent;
  color: var(--color-emerald);
  padding: 10px 24px;
  border-color: var(--color-emerald);
}

.btn-outline-dark:hover {
  background: var(--color-emerald);
  color: var(--color-white);
}

.btn-gold {
  background: var(--color-gold);
  color: var(--color-dark);
  padding: 10px 24px;
  border-color: var(--color-gold);
}

.btn-gold:hover {
  background: var(--color-emerald);
  border-color: var(--color-emerald);
  color: var(--color-white);
}

.btn-lg {
  padding: 14px 36px;
  font-size: 13px;
}

.btn-sm {
  padding: 8px 18px;
  font-size: 12px;
}

/* === HERO (homepage only) === */
.hero {
  position: relative;
  width: 100%;
  min-height: 100vh;
  min-height: 100dvh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background: #080808;
}

.hero-canvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  display: block;
  pointer-events: none;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    160deg,
    rgba(0, 0, 0, 0.72) 0%,
    rgba(8, 8, 10, 0.30) 50%,
    rgba(0, 0, 0, 0.82) 100%
  );
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 10;
  max-width: 780px;
  width: 100%;
  padding: 80px 24px 0;
  text-align: center;
}

.hero-badge {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--color-gold-light);
  border: 1px solid rgba(201, 169, 110, 0.3);
  padding: 6px 18px;
  border-radius: 50px;
  margin-bottom: 28px;
}

.hero-heading {
  font-family: var(--font-heading);
  font-size: clamp(32px, 6vw, 64px);
  font-weight: 700;
  line-height: 1.15;
  color: var(--color-white);
  margin-bottom: 20px;
}

.heading-line {
  display: block;
}

.heading-line--accent {
  color: var(--color-gold);
  font-style: italic;
  font-weight: 400;
}

.hero-subtext {
  font-family: var(--font-body);
  font-size: clamp(15px, 1.4vw, 18px);
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.8);
  max-width: 580px;
  margin: 0 auto 36px;
}

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

/* --- Hero quick-contact group (search + WhatsApp) --- */
.hero-quick-contact {
  position: absolute;
  top: 88px;
  right: 24px;
  z-index: 15;
  display: flex;
  flex-direction: column;
  gap: 8px;
  width: 200px;
  max-width: 200px;
  direction: ltr;
}

.hero-search {
  display: flex;
  align-items: center;
  gap: 0;
  background: rgba(15, 26, 24, 0.75);
  border: 1px solid rgba(255, 255, 255, 0.10);
  border-radius: 8px;
  overflow: hidden;
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
  direction: ltr;
}

.hero-search:focus-within {
  border-color: rgba(212, 175, 55, 0.5);
  box-shadow: 0 0 0 2px rgba(212, 175, 55, 0.15);
}

.hero-search__input {
  background: transparent;
  border: none;
  outline: none;
  padding: 8px 12px;
  font-family: var(--font-body);
  font-size: 13px;
  color: rgba(255, 255, 255, 0.9);
  min-width: 0;
  width: 1px;
  flex: 1 1 auto;
}

.hero-search__input::placeholder {
  color: rgba(255, 255, 255, 0.35);
}

.hero-search__btn {
  background: transparent;
  border: none;
  cursor: default;
  padding: 8px 12px 8px 8px;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.35);
  line-height: 1;
}

/* --- Hero WhatsApp link (inside quick-contact) --- */
.hero-whatsapp-link {
  display: flex;
  align-items: center;
  gap: 8px;
  direction: ltr;
  background: rgba(15, 26, 24, 0.75);
  border: 1px solid rgba(255, 255, 255, 0.10);
  border-radius: 8px;
  padding: 8px 12px;
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  transition: border-color 0.2s ease, background 0.2s ease;
  font-family: var(--font-body);
  font-size: 13px;
  color: rgba(255, 255, 255, 0.8);
  text-decoration: none;
  line-height: 1.2;
}

.hero-whatsapp-link:hover {
  border-color: rgba(212, 175, 55, 0.4);
  background: rgba(15, 26, 24, 0.9);
}

.whatsapp-icon {
  font-size: 18px;
  flex-shrink: 0;
}

.whatsapp-text {
  display: flex;
  flex-direction: column;
}

.whatsapp-sub {
  font-size: 11px;
  color: rgba(255, 255, 255, 0.45);
}

[data-theme="dark"] .hero-search,
[data-theme="dark"] .hero-whatsapp-link {
  background: rgba(0, 0, 0, 0.55);
}

[data-theme="dark"] .hero-search__input {
  color: rgba(255, 255, 255, 0.85);
}

/* --- Screen-reader only --- */
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

/* --- Trust bar --- */
.trust-bar {
  position: relative;
  z-index: 10;
  display: flex;
  flex-wrap: wrap;
  gap: 12px 32px;
  justify-content: center;
  padding: 24px 24px 32px;
  margin-top: auto;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 8px;
  color: rgba(255, 255, 255, 0.7);
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.3px;
}

.trust-icon {
  font-size: 10px;
  color: var(--color-gold);
  opacity: 0.7;
}

/* === PAGE BANNER (interior pages) === */
.page-banner {
  position: relative;
  padding: 120px 24px 60px;
  background: var(--color-dark);
  text-align: center;
  overflow: hidden;
}

.page-banner__bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    160deg,
    rgba(15, 26, 24, 0.85) 0%,
    rgba(10, 92, 78, 0.5) 50%,
    rgba(15, 26, 24, 0.85) 100%
  );
  pointer-events: none;
}

.page-banner__inner {
  position: relative;
  z-index: 2;
  max-width: 700px;
  margin: 0 auto;
}

.page-banner__title {
  font-family: var(--font-heading);
  font-size: clamp(30px, 4vw, 48px);
  font-weight: 700;
  color: var(--color-white);
  margin-bottom: 12px;
}

.page-banner__subtitle {
  font-family: var(--font-body);
  font-size: 16px;
  color: rgba(255, 255, 255, 0.7);
}

/* === CARDS (generic) === */
.card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 28px;
}

.card {
  background: var(--color-white);
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 2px 16px rgba(10, 92, 78, 0.06);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 32px rgba(10, 92, 78, 0.1);
}

.card__image {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  background: var(--color-emerald-light);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-emerald);
  font-family: var(--font-body);
  font-size: 13px;
}

.card__body {
  padding: 24px;
}

.card__title {
  font-family: var(--font-heading);
  font-size: 20px;
  font-weight: 700;
  color: var(--color-charcoal);
  margin-bottom: 8px;
}

.card__text {
  font-family: var(--font-body);
  font-size: 14px;
  line-height: 1.6;
  color: var(--color-muted);
  margin-bottom: 16px;
}

.card__footer {
  padding: 0 24px 24px;
}

/* === SERVICE CARD === */
.service-card {
  text-align: center;
  padding: 40px 28px;
  background: var(--color-white);
  border-radius: 10px;
  box-shadow: 0 2px 16px rgba(10, 92, 78, 0.06);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.service-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 32px rgba(10, 92, 78, 0.1);
}

.service-card__icon {
  font-size: 36px;
  margin-bottom: 16px;
  display: block;
  color: var(--color-emerald);
}

.service-card__title {
  font-family: var(--font-heading);
  font-size: 22px;
  font-weight: 700;
  color: var(--color-charcoal);
  margin-bottom: 10px;
}

.service-card__text {
  font-family: var(--font-body);
  font-size: 14px;
  line-height: 1.7;
  color: var(--color-muted);
  margin-bottom: 16px;
}

/* === TESTIMONIAL CARD === */
.testimonial-card {
  background: var(--color-white);
  border-radius: 10px;
  padding: 32px;
  box-shadow: 0 2px 16px rgba(10, 92, 78, 0.06);
  text-align: center;
}

.testimonial-card__quote {
  font-family: var(--font-heading);
  font-size: 18px;
  font-style: italic;
  line-height: 1.6;
  color: var(--color-charcoal);
  margin-bottom: 16px;
}

.testimonial-card__author {
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 600;
  color: var(--color-emerald);
}

.testimonial-card__note {
  font-family: var(--font-body);
  font-size: 11px;
  color: var(--color-muted);
  margin-top: 8px;
  font-style: normal;
}

/* === ABOUT PAGE === */
.about-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}

.about-layout--reverse {
  direction: rtl;
}

.about-layout--reverse > * {
  direction: ltr;
}

.about-image {
  width: 100%;
  aspect-ratio: 4 / 5;
  background: var(--color-emerald-light);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-muted);
  font-family: var(--font-body);
  font-size: 14px;
  text-align: center;
  padding: 24px;
}

.about-text__title {
  font-family: var(--font-heading);
  font-size: clamp(26px, 3vw, 36px);
  font-weight: 700;
  color: var(--color-charcoal);
  margin-bottom: 16px;
}

.about-text__body {
  font-family: var(--font-body);
  font-size: 15px;
  line-height: 1.7;
  color: var(--color-muted);
  margin-bottom: 16px;
}

/* === GALLERY GRID === */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 16px;
}

.gallery-item {
  border-radius: 8px;
  overflow: hidden;
  aspect-ratio: 1;
  background: var(--color-emerald-light);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-muted);
  font-family: var(--font-body);
  font-size: 13px;
  text-align: center;
  padding: 16px;
}

.gallery-item__caption {
  font-size: 11px;
  color: var(--color-muted);
  text-align: center;
  padding: 6px 0;
}

/* === BLOG POST === */
.blog-post__header {
  margin-bottom: 32px;
}

.blog-post__title {
  font-family: var(--font-heading);
  font-size: clamp(28px, 3.5vw, 40px);
  font-weight: 700;
  color: var(--color-charcoal);
  margin-bottom: 8px;
}

.blog-post__meta {
  font-family: var(--font-body);
  font-size: 13px;
  color: var(--color-muted);
}

.blog-post__image {
  width: 100%;
  aspect-ratio: 16 / 9;
  background: var(--color-emerald-light);
  border-radius: 10px;
  margin-bottom: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-muted);
  font-family: var(--font-body);
  font-size: 14px;
}

.blog-post__body {
  max-width: 720px;
  margin: 0 auto;
}

.blog-post__body p {
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.8;
  color: var(--color-charcoal);
  margin-bottom: 20px;
}

.blog-post__back {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 500;
  color: var(--color-emerald);
  margin-bottom: 24px;
  transition: color 0.2s ease;
}

.blog-post__back:hover {
  color: var(--color-gold);
}

/* === APPOINTMENT FORM === */
.appointment-form {
  max-width: 640px;
  margin: 0 auto;
  background: var(--color-white);
  padding: 40px;
  border-radius: 10px;
  box-shadow: 0 2px 16px rgba(10, 92, 78, 0.06);
}

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

.form-label {
  display: block;
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 600;
  color: var(--color-charcoal);
  margin-bottom: 6px;
}

.form-input,
.form-textarea {
  width: 100%;
  padding: 12px 14px;
  font-family: var(--font-body);
  font-size: 14px;
  color: var(--color-charcoal);
  background: var(--color-ivory);
  border: 1.5px solid #D1D5DB;
  border-radius: 6px;
  transition: border-color 0.2s ease;
}

.form-input:focus,
.form-textarea:focus {
  border-color: var(--color-emerald);
  outline: none;
  box-shadow: 0 0 0 3px rgba(10, 92, 78, 0.1);
}

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

.form-note {
  font-family: var(--font-body);
  font-size: 12px;
  color: var(--color-muted);
  text-align: center;
  margin-top: 16px;
  padding: 12px;
  background: var(--color-emerald-light);
  border-radius: 6px;
}

/* === CONTACT PAGE === */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
}

.contact-info__item {
  display: flex;
  gap: 16px;
  margin-bottom: 24px;
}

.contact-info__icon {
  font-size: 20px;
  color: var(--color-gold);
  flex-shrink: 0;
  width: 24px;
  text-align: center;
}

.contact-info__label {
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 600;
  color: var(--color-charcoal);
  margin-bottom: 2px;
}

.contact-info__value {
  font-family: var(--font-body);
  font-size: 14px;
  color: var(--color-muted);
  line-height: 1.5;
}

.contact-map {
  width: 100%;
  aspect-ratio: 16 / 9;
  background: var(--color-emerald-light);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-muted);
  font-family: var(--font-body);
  font-size: 14px;
  text-align: center;
  padding: 24px;
}

/* === HOMEPAGE PREVIEW SECTIONS === */
.preview-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 24px;
}

.preview-card {
  background: var(--color-white);
  border-radius: 10px;
  padding: 28px;
  box-shadow: 0 2px 16px rgba(10, 92, 78, 0.06);
  text-align: center;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.preview-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 32px rgba(10, 92, 78, 0.1);
}

.preview-card__icon {
  font-size: 32px;
  margin-bottom: 12px;
  display: block;
  color: var(--color-emerald);
}

.preview-card__title {
  font-family: var(--font-heading);
  font-size: 20px;
  font-weight: 700;
  color: var(--color-charcoal);
  margin-bottom: 8px;
}

.preview-card__text {
  font-family: var(--font-body);
  font-size: 14px;
  line-height: 1.6;
  color: var(--color-muted);
  margin-bottom: 16px;
}

/* CTA banner */
.cta-banner {
  text-align: center;
  padding: 80px 24px;
}

.cta-banner__title {
  font-family: var(--font-heading);
  font-size: clamp(26px, 3.5vw, 40px);
  font-weight: 700;
  margin-bottom: 12px;
}

.cta-banner__text {
  font-family: var(--font-body);
  font-size: 16px;
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 28px;
  max-width: 500px;
  margin-left: auto;
  margin-right: auto;
}

/* Two-column content split */
.content-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}

.content-split__image {
  width: 100%;
  aspect-ratio: 4 / 3;
  background: var(--color-emerald-light);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-muted);
  font-family: var(--font-body);
  font-size: 14px;
  text-align: center;
  padding: 24px;
}

.content-split__title {
  font-family: var(--font-heading);
  font-size: clamp(24px, 2.8vw, 34px);
  font-weight: 700;
  color: var(--color-charcoal);
  margin-bottom: 12px;
}

.content-split__text {
  font-family: var(--font-body);
  font-size: 15px;
  line-height: 1.7;
  color: var(--color-muted);
  margin-bottom: 20px;
}

/* --- Placeholder notice --- */
.placeholder-notice {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 600;
  color: #B45309;
  background: #FEF3C7;
  padding: 4px 12px;
  border-radius: 4px;
  margin-bottom: 12px;
  letter-spacing: 0.3px;
  text-transform: uppercase;
}

/* --- Prototype footer --- */
.prototype-footer {
  padding: 20px 24px;
  background: var(--color-dark);
  text-align: center;
  font-family: var(--font-body);
  font-size: 12px;
  color: rgba(255, 255, 255, 0.4);
  line-height: 1.6;
}

.prototype-footer strong {
  color: rgba(255, 255, 255, 0.6);
}

/* === SITE FOOTER === */
.site-footer {
  background: var(--color-dark);
  color: rgba(255, 255, 255, 0.7);
  padding: 48px 24px 24px;
}

.footer-grid {
  max-width: var(--max-width);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 32px;
}

.footer-brand__name {
  font-family: var(--font-heading);
  font-size: 20px;
  font-weight: 700;
  color: var(--color-white);
  margin-bottom: 8px;
}

.footer-brand__desc {
  font-family: var(--font-body);
  font-size: 13px;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.5);
}

.footer-heading {
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 600;
  color: var(--color-white);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 12px;
}

.footer-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.footer-links a {
  font-family: var(--font-body);
  font-size: 13px;
  color: rgba(255, 255, 255, 0.5);
  transition: color 0.2s ease;
}

.footer-links a:hover {
  color: var(--color-gold);
}

.footer-bottom {
  max-width: var(--max-width);
  margin: 0 auto;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  text-align: center;
  font-family: var(--font-body);
  font-size: 12px;
  color: rgba(255, 255, 255, 0.35);
}

/* === RESPONSIVE === */

/* Tablet */
@media (max-width: 900px) {
  .site-header {
    padding: 0 20px;
  }

  .site-nav {
    display: none;
  }

  .site-nav--open {
    display: flex;
    flex-direction: column;
    position: fixed;
    inset: 0;
    background: rgba(15, 26, 24, 0.98);
    align-items: center;
    justify-content: center;
    gap: 24px;
    z-index: 105;
  }

  .site-nav--open .nav-link {
    font-size: 18px;
    color: var(--color-white);
  }

  .menu-toggle {
    display: block;
  }

  .header-inner .btn-primary {
    margin-left: auto;
  }

  .hero-content {
    margin-top: 0;
  }

  .about-layout {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .about-layout--reverse {
    direction: ltr;
  }

  .contact-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .content-split {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 32px;
  }
}

/* Mobile */
@media (max-width: 768px) {
  .site-header {
    height: 60px;
    padding: 0 16px;
    background: var(--color-dark);
  }

  .site-logo {
    font-size: 18px;
  }

  .header-inner .btn-primary {
    padding: 8px 16px;
    font-size: 12px;
  }

  .header-controls {
    gap: 2px;
  }

  .theme-toggle,
  .lang-toggle {
    padding: 4px 8px;
    min-width: 32px;
    font-size: 14px;
  }

  .hero {
    min-height: 60vh;
    min-height: 60dvh;
    background: #040404;
  }

  .hero-quick-contact {
    top: 68px;
    right: 16px;
    width: 160px;
    max-width: 160px;
  }

  body.lang-ur .hero-quick-contact {
    right: auto;
    left: 16px;
  }

  .hero-content {
    padding-top: 60px !important;
    padding-left: 16px !important;
    padding-right: 16px !important;
  }

  .hero-badge {
    font-size: 10px;
    letter-spacing: 1.5px;
    margin-bottom: 20px;
  }

  .hero-subtext {
    font-size: 14px;
    margin-bottom: 28px;
  }

  .btn-lg {
    padding: 12px 28px;
    font-size: 12px;
  }

  .trust-bar {
    padding: 16px 16px 24px;
    gap: 8px 20px;
  }

  .trust-item {
    font-size: 12px;
  }

  .section {
    padding: 48px 0;
  }

  .section-subtitle {
    margin-bottom: 32px;
  }

  .page-banner {
    padding: 100px 16px 40px;
  }

  .card-grid {
    grid-template-columns: 1fr;
  }

  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .appointment-form {
    padding: 24px;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .preview-grid {
    grid-template-columns: 1fr;
  }
}

/* Small mobile */
@media (max-width: 480px) {
  .hero-heading {
    font-size: 28px;
  }

  .hero-quick-contact {
    top: 64px;
    right: 12px;
    min-width: 140px;
  }

  .hero-search__input {
    padding: 6px 10px;
    font-size: 12px;
  }

  .hero-search__btn {
    padding: 6px 10px 6px 6px;
    font-size: 12px;
  }

  .hero-whatsapp-link {
    padding: 6px 10px;
    font-size: 12px;
  }

  .whatsapp-icon {
    font-size: 16px;
  }

  body.lang-ur .hero-quick-contact {
    right: auto;
    left: 12px;
  }

  .hero-actions {
    flex-direction: column;
    align-items: center;
  }

  .hero-actions .btn {
    width: 100%;
    max-width: 280px;
  }

  .trust-bar {
    flex-direction: column;
    align-items: center;
    gap: 6px;
  }

  .gallery-grid {
    grid-template-columns: 1fr;
  }
}

/* --- Reduced motion --- */
@media (prefers-reduced-motion: reduce) {
  .hero-overlay,
  .page-banner__bg {
    background: linear-gradient(
      160deg,
      rgba(15, 26, 24, 0.80) 0%,
      rgba(10, 92, 78, 0.35) 50%,
      rgba(15, 26, 24, 0.85) 100%
    );
  }

  .card,
  .service-card,
  .preview-card {
    transition: none;
  }

  .card:hover,
  .service-card:hover,
  .preview-card:hover {
    transform: none;
  }

  html {
    scroll-behavior: auto;
  }
}
