/* ============================================================
   RK REALTORS & PROPERTY CONSULTANTS
   Custom CSS — Navy Blue & Gold Premium Real Estate Theme
   ============================================================ */

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

/* ── TOKENS ────────────────────────────────────────────────── */
:root {
  --navy:      #0d1f3c;
  --navy-mid:  #152b52;
  --gold:      #b8912a;
  --gold-light:#d4a93c;
  --offwhite:  #f8f6f2;
  --white:     #ffffff;
  --text:      #1a1a2e;
  --muted:     #6b7280;
  --border:    #e5e1d8;

  --font-display: 'Playfair Display', Georgia, serif;
  --font-body:    'Poppins', sans-serif;

  --transition: 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  --radius:     4px;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  color: var(--text);
  background: var(--white);
  font-size: 15px;
  line-height: 1.75;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; height: auto; display: block; }
a  { text-decoration: none; color: inherit; }
ul { list-style: none; }

/* ── UTILITY ───────────────────────────────────────────────── */
.section-pad  { padding: 90px 0; }
.section-pad-sm { padding: 60px 0; }
.text-gold    { color: var(--gold); }
.text-navy    { color: var(--navy); }
.text-muted   { color: var(--muted); }
.bg-offwhite  { background: var(--offwhite); }
.bg-navy      { background: var(--navy); }

.section-label {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  display: block;
  margin-bottom: 14px;
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(26px, 3.5vw, 44px);
  font-weight: 600;
  color: var(--navy);
  line-height: 1.2;
}

.section-title-white {
  font-family: var(--font-display);
  font-size: clamp(26px, 3.5vw, 44px);
  font-weight: 600;
  color: var(--white);
  line-height: 1.2;
}

.rule-gold {
  width: 52px;
  height: 3px;
  background: var(--gold);
  margin: 18px 0 28px;
}

.rule-gold-center {
  width: 52px;
  height: 3px;
  background: var(--gold);
  margin: 18px auto 28px;
}

/* ── BUTTONS ───────────────────────────────────────────────── */
.btn-primary-rk {
  display: inline-block;
  padding: 13px 36px;
  background: var(--gold);
  color: var(--white);
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  border: none;
  border-radius: var(--radius);
  cursor: pointer;
  transition: background var(--transition), transform var(--transition);
}
.btn-primary-rk:hover {
  background: var(--gold-light);
  color: var(--white);
  transform: translateY(-2px);
}

.btn-outline-rk {
  display: inline-block;
  padding: 12px 34px;
  background: transparent;
  color: var(--gold);
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  border: 2px solid var(--gold);
  border-radius: var(--radius);
  cursor: pointer;
  transition: all var(--transition);
}
.btn-outline-rk:hover {
  background: var(--gold);
  color: var(--white);
  transform: translateY(-2px);
}

/* ── HEADER / NAV ──────────────────────────────────────────── */
#site-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  background: var(--white);
  border-bottom: 1px solid var(--border);
  transition: box-shadow var(--transition);
}

#site-header.scrolled {
  box-shadow: 0 4px 30px rgba(13, 31, 60, 0.08);
}

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

.logo-wrap {
  display: flex;
  align-items: center;
  gap: 12px;
}

.logo-icon {
  width: 52px;
  height: 52px;
}

.logo-text {
  line-height: 1.2;
}

.logo-text .brand-name {
  font-family: var(--font-display);
  font-size: 17px;
  font-weight: 700;
  color: var(--navy);
  display: block;
}

.logo-text .brand-sub {
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
}

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

.main-nav a {
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--navy);
  position: relative;
  padding-bottom: 4px;
  transition: color var(--transition);
}

.main-nav a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--gold);
  transition: width var(--transition);
}

.main-nav a:hover,
.main-nav a.active {
  color: var(--gold);
}

.main-nav a:hover::after,
.main-nav a.active::after {
  width: 100%;
}

/* Hamburger */
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}

.nav-toggle span {
  display: block;
  width: 26px;
  height: 2px;
  background: var(--navy);
  transition: all var(--transition);
}

/* Mobile nav */
.mobile-nav {
  display: none;
  position: fixed;
  top: 76px;
  left: 0;
  width: 100%;
  background: var(--white);
  border-top: 1px solid var(--border);
  padding: 24px 20px;
  z-index: 999;
  flex-direction: column;
  gap: 18px;
  box-shadow: 0 8px 32px rgba(13,31,60,0.12);
}

.mobile-nav.open { display: flex; }

.mobile-nav a {
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--navy);
  padding-bottom: 12px;
  border-bottom: 1px solid var(--border);
}

.mobile-nav a:last-child { border-bottom: none; }

/* ── HERO ──────────────────────────────────────────────────── */
.hero {
  position: relative;
  min-height: 92vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  margin-top: 76px;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background-image: url('https://images.unsplash.com/photo-1600596542815-ffad4c1539a9?w=1600&q=85&auto=format&fit=crop');
  background-size: cover;
  background-position: center;
  transform: scale(1.04);
  transition: transform 8s ease;
}

.hero.loaded .hero-bg { transform: scale(1); }

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to right,
    rgba(13, 31, 60, 0.82) 0%,
    rgba(13, 31, 60, 0.45) 55%,
    rgba(13, 31, 60, 0.15) 100%
  );
}

.hero-content {
  position: relative;
  z-index: 2;
  padding: 20px 0 20px;
  max-width: 640px;
}

.hero-eyebrow {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--gold-light);
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  gap: 14px;
  opacity: 0;
  transform: translateY(20px);
  animation: fadeUp 0.8s 0.3s ease forwards;
}

.hero-eyebrow::before {
  content: '';
  width: 36px;
  height: 1px;
  background: var(--gold-light);
}

.hero-heading {
  font-family: var(--font-display);
  font-size: clamp(34px, 5vw, 64px);
  font-weight: 700;
  color: var(--white);
  line-height: 1.12;
  margin-bottom: 22px;
  opacity: 0;
  transform: translateY(20px);
  animation: fadeUp 0.8s 0.55s ease forwards;
}

.hero-heading em {
  font-style: normal;
  color: var(--gold-light);
}

.hero-sub {
  font-size: 15px;
  color: rgba(255,255,255,0.82);
  margin-bottom: 36px;
  max-width: 480px;
  opacity: 0;
  transform: translateY(20px);
  animation: fadeUp 0.8s 0.75s ease forwards;
}

.hero-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  opacity: 0;
  transform: translateY(20px);
  animation: fadeUp 0.8s 0.95s ease forwards;
}

.hero-scroll {
  position: absolute;
  bottom: 32px;
  right: 40px;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: rgba(255,255,255,0.6);
  font-size: 10px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.hero-scroll-line {
  width: 1px;
  height: 48px;
  background: rgba(255,255,255,0.35);
  position: relative;
  overflow: hidden;
}

.hero-scroll-line::after {
  content: '';
  position: absolute;
  top: -100%;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--gold);
  animation: scrollLine 1.8s 1.4s ease-in-out infinite;
}

/* ── WELCOME SECTION ───────────────────────────────────────── */
.welcome-section {
  padding: 100px 0;
}

.welcome-img-wrap {
  position: relative;
}

.welcome-img-wrap img {
  width: 100%;
  height: 460px;
  object-fit: cover;
  border-radius: var(--radius);
}

.welcome-img-accent {
  position: absolute;
  bottom: -20px;
  right: -20px;
  width: 120px;
  height: 120px;
  border: 3px solid var(--gold);
  border-radius: var(--radius);
  z-index: -1;
}

.welcome-img-tag {
  position: absolute;
  bottom: 28px;
  left: -24px;
  background: var(--navy);
  color: var(--white);
  padding: 16px 22px;
  border-radius: var(--radius);
}

.welcome-img-tag .tag-num {
  font-family: var(--font-display);
  font-size: 30px;
  font-weight: 700;
  color: var(--gold);
  line-height: 1;
}

.welcome-img-tag .tag-text {
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.7);
  margin-top: 4px;
}

.welcome-body p {
  color: var(--muted);
  margin-bottom: 18px;
  line-height: 1.85;
}

.welcome-body p:last-of-type { margin-bottom: 30px; }

/* ── STATS STRIP ───────────────────────────────────────────── */
.stats-strip {
  background: var(--navy);
  padding: 50px 0;
}

.stat-item {
  text-align: center;
  padding: 0 20px;
  border-right: 1px solid rgba(255,255,255,0.1);
}

.stat-item:last-child { border-right: none; }

.stat-number {
  font-family: var(--font-display);
  font-size: 42px;
  font-weight: 700;
  color: var(--gold);
  line-height: 1;
}

.stat-label {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.65);
  margin-top: 8px;
}

/* ── TESTIMONIALS ──────────────────────────────────────────── */
.testimonials-section {
  background: var(--offwhite);
  padding: 90px 0;
}

.testimonial-card {
  background: var(--white);
  border-left: 3px solid var(--gold);
  padding: 40px 38px;
  border-radius: var(--radius);
  position: relative;
}

.testimonial-card .quote-mark {
  font-family: var(--font-display);
  font-size: 80px;
  line-height: 0.5;
  color: var(--gold);
  opacity: 0.18;
  position: absolute;
  top: 32px;
  left: 28px;
}

.testimonial-text {
  font-size: 15px;
  color: var(--text);
  line-height: 1.8;
  font-style: italic;
  position: relative;
  z-index: 1;
  margin-bottom: 28px;
}

.testimonial-author {
  font-size: 14px;
  font-weight: 600;
  color: var(--navy);
}

.testimonial-role {
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold);
  margin-top: 2px;
}

/* ── PAGE HERO (inner pages) ───────────────────────────────── */
.page-hero {
  background: var(--navy);
  padding: 110px 0 60px;
  margin-top: 76px;
  position: relative;
  overflow: hidden;
}

.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url('https://images.unsplash.com/photo-1560518883-ce09059eeffa?w=1200&q=60&auto=format&fit=crop');
  background-size: cover;
  background-position: center;
  opacity: 0.12;
}

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

.page-hero h1 {
  font-family: var(--font-display);
  font-size: clamp(30px, 4vw, 52px);
  color: var(--white);
  font-weight: 700;
  margin-bottom: 10px;
}

.breadcrumb-rk {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.55);
}

.breadcrumb-rk a { color: var(--gold); }
.breadcrumb-rk .sep { color: rgba(255,255,255,0.3); }

/* ── ABOUT PAGE ────────────────────────────────────────────── */
.about-body p {
  color: var(--muted);
  margin-bottom: 18px;
  line-height: 1.85;
}

.about-bullets {
  margin: 24px 0;
}

.about-bullets li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 14px;
  font-size: 14px;
  color: var(--text);
}

.about-bullets li::before {
  content: '';
  width: 8px;
  height: 8px;
  min-width: 8px;
  border-radius: 50%;
  background: var(--gold);
  margin-top: 7px;
}

.about-img-wrap img {
  width: 100%;
  height: 520px;
  object-fit: cover;
  border-radius: var(--radius);
}

.quote-block {
  background: var(--navy);
  padding: 36px 40px;
  border-radius: var(--radius);
  margin-top: 32px;
}

.quote-block p {
  font-family: var(--font-display);
  font-style: italic;
  color: rgba(255,255,255,0.88);
  font-size: 16px;
  line-height: 1.7;
  margin: 0;
}

.quote-block p span {
  color: var(--gold-light);
}

/* ── SERVICES PAGE ─────────────────────────────────────────── */
.service-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  margin-bottom: 80px;
}

.service-tile {
  position: relative;
  overflow: hidden;
  cursor: pointer;
  aspect-ratio: 4/3;
  background: var(--navy-mid);
}

.service-tile img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
  opacity: 0.88;
}

.service-tile:hover img {
  transform: scale(1.06);
  opacity: 0.7;
}

.service-tile-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 28px 24px;
  background: linear-gradient(to top, rgba(13,31,60,0.9) 0%, transparent 100%);
}

.service-tile-name {
  font-family: var(--font-display);
  font-size: 20px;
  color: var(--white);
  font-weight: 600;
}

.service-tile-sub {
  font-size: 11px;
  letter-spacing: 0.12em;
  color: var(--gold-light);
  text-transform: uppercase;
  margin-top: 4px;
}

.service-tile-line {
  width: 32px;
  height: 2px;
  background: var(--gold);
  margin-top: 10px;
  transition: width var(--transition);
}

.service-tile:hover .service-tile-line { width: 56px; }

.services-copy {
  padding: 70px 0;
  background: var(--offwhite);
}

.services-copy .qa-block {
  margin-bottom: 36px;
}

.services-copy .qa-question {
  font-family: var(--font-display);
  font-size: 19px;
  color: var(--navy);
  font-weight: 600;
  margin-bottom: 12px;
}

.services-copy .qa-answer {
  color: var(--muted);
  line-height: 1.85;
}

.services-copy-img img {
  width: 100%;
  height: 480px;
  object-fit: cover;
  border-radius: var(--radius);
}

.service-intro-text {
  color: var(--muted);
  line-height: 1.85;
  margin-bottom: 50px;
  max-width: 760px;
}

/* ── ENQUIRY PAGE ──────────────────────────────────────────── */
.enquiry-wrap {
  padding: 90px 0;
}

.enquiry-form-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 56px 52px;
}

.form-label-rk {
  display: block;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--navy);
  margin-bottom: 8px;
}

.form-control-rk {
  width: 100%;
  padding: 13px 16px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  font-family: var(--font-body);
  font-size: 14px;
  color: var(--text);
  background: var(--white);
  transition: border-color var(--transition), box-shadow var(--transition);
  outline: none;
}

.form-control-rk:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(184,145,42,0.12);
}

.form-group-rk { margin-bottom: 28px; }

textarea.form-control-rk {
  min-height: 140px;
  resize: vertical;
}

.enquiry-info-side {
  padding-left: 40px;
}

.enquiry-info-title {
  font-family: var(--font-display);
  font-size: 28px;
  color: var(--navy);
  margin-bottom: 16px;
  line-height: 1.3;
}

.enquiry-info-text {
  color: var(--muted);
  line-height: 1.85;
  margin-bottom: 32px;
}

.enquiry-detail-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  margin-bottom: 22px;
}

.enquiry-detail-icon {
  width: 40px;
  height: 40px;
  min-width: 40px;
  border-radius: 50%;
  background: var(--navy);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 2px;
}

.enquiry-detail-icon svg {
  width: 16px;
  height: 16px;
  fill: var(--gold);
}

.enquiry-detail-label {
  font-size: 10px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 600;
  margin-bottom: 2px;
}

.enquiry-detail-value {
  font-size: 14px;
  color: var(--navy);
  font-weight: 500;
}

/* ── CONTACT PAGE ──────────────────────────────────────────── */
.contact-section {
  padding: 90px 0;
}

.contact-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 42px 38px;
  margin-bottom: 24px;
  display: flex;
  align-items: flex-start;
  gap: 22px;
  transition: box-shadow var(--transition), border-color var(--transition);
}

.contact-card:hover {
  border-color: var(--gold);
  box-shadow: 0 4px 24px rgba(184,145,42,0.08);
}

.contact-card-icon {
  width: 48px;
  height: 48px;
  min-width: 48px;
  border-radius: 50%;
  background: var(--navy);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 2px;
}

.contact-card-icon svg {
  width: 18px;
  height: 18px;
  fill: var(--gold);
}

.contact-card-label {
  font-size: 10px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 700;
  margin-bottom: 8px;
}

.contact-card-value {
  font-size: 14px;
  color: var(--text);
  line-height: 1.7;
}

.contact-side-img img {
  width: 100%;
  height: 100%;
  min-height: 420px;
  object-fit: cover;
  border-radius: var(--radius);
}

/* ── FOOTER ────────────────────────────────────────────────── */
.site-footer {
  background: var(--navy);
  padding: 60px 0 0;
}

.footer-brand img {
  background: #ffffff;
  padding: 6px 12px;
  border-radius: 4px;
  filter: none !important;
}

.footer-brand .brand-name {
  font-family: var(--font-display);
  font-size: 20px;
  color: var(--white);
  font-weight: 700;
  display: block;
  margin-bottom: 4px;
}

.footer-brand .brand-sub {
  font-size: 10px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold);
}

.footer-brand p {
  margin-top: 18px;
  font-size: 13px;
  color: rgba(255,255,255,0.55);
  line-height: 1.8;
  max-width: 300px;
}

.footer-col-title {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 20px;
  padding-bottom: 12px;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}

.footer-links { display: flex; flex-direction: column; gap: 10px; }

.footer-links a {
  font-size: 13px;
  color: rgba(255,255,255,0.65);
  transition: color var(--transition);
  display: flex;
  align-items: center;
  gap: 8px;
}

.footer-links a::before {
  content: '›';
  color: var(--gold);
  font-size: 16px;
}

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

.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 16px;
  font-size: 13px;
  color: rgba(255,255,255,0.65);
  line-height: 1.7;
}

.footer-contact-item strong {
  color: rgba(255,255,255,0.9);
  display: block;
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 2px;
  color: var(--gold);
}

.footer-bottom {
  margin-top: 48px;
  padding: 20px 0;
  border-top: 1px solid rgba(255,255,255,0.08);
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.footer-bottom p {
  font-size: 12px;
  color: rgba(255,255,255,0.4);
}

.footer-social {
  display: flex;
  gap: 14px;
}

.footer-social a {
  width: 34px;
  height: 34px;
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.55);
  font-size: 13px;
  transition: all var(--transition);
}

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

/* ── WHATSAPP FLOAT ────────────────────────────────────────── */
.whatsapp-float {
  position: fixed;
  bottom: 28px;
  right: 28px;
  z-index: 900;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: #25d366;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(37,211,102,0.35);
  transition: transform var(--transition);
}

.whatsapp-float:hover { transform: scale(1.1); }

.whatsapp-float svg {
  width: 26px;
  height: 26px;
  fill: white;
}

/* ── ANIMATIONS ────────────────────────────────────────────── */
@keyframes fadeUp {
  to { opacity: 1; transform: translateY(0); }
}

@keyframes scrollLine {
  0%   { top: -100%; }
  100% { top: 200%; }
}

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

/* ── RESPONSIVE ────────────────────────────────────────────── */
@media (max-width: 991px) {
  .main-nav { display: none; }
  .nav-toggle { display: flex; }

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

  .welcome-img-wrap { margin-bottom: 48px; }
  .welcome-img-tag { left: 0; }

  .enquiry-info-side { padding-left: 0; margin-top: 48px; }

  .footer-bottom { flex-direction: column; gap: 14px; text-align: center; }
}

@media (max-width: 767px) {
  .section-pad { padding: 60px 0; }
  .hero { min-height: 80vh; }
  .hero-heading { font-size: clamp(28px, 8vw, 42px); }
  .hero-actions { flex-direction: column; }

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

  .stat-item { border-right: none; border-bottom: 1px solid rgba(255,255,255,0.1); padding: 24px 0; }
  .stat-item:last-child { border-bottom: none; }

  .enquiry-form-card { padding: 32px 24px; }

  .hero-scroll { display: none; }

  .welcome-img-wrap img { height: 300px; }
  .about-img-wrap img { height: 320px; }
}

@media (max-width: 480px) {
  .logo-text .brand-name { font-size: 14px; }
  .hero-content { padding: 60px 0 70px; }
  .contact-card { flex-direction: column; }
  .footer-bottom { text-align: center; }
}

/* ── REAL LOGO ─────────────────────────────────────────────── */
.real-logo {
  height: 95px;
  width: auto;
  display: block;
}

/* ── HERO SLIDER ───────────────────────────────────────────── */
.hero-slider {
  position: absolute;
  inset: 0;
}

.hero-slide {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transition: opacity 1.2s ease;
}

.hero-slide.active {
  opacity: 1;
}

.hero-dots {
  position: absolute;
  bottom: 28px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 10px;
  z-index: 10;
}

.hero-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(255,255,255,0.4);
  border: none;
  cursor: pointer;
  padding: 0;
  transition: all 0.3s ease;
}

.hero-dot.active {
  background: var(--gold);
  width: 28px;
  border-radius: 5px;
}
