/* ============================================
   OV Property Services - Main Stylesheet
   ============================================ */

/* --- Google Fonts --- */
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@400;600;700&family=Inter:wght@300;400;500;600;700&display=swap');

/* --- CSS Variables --- */
:root {
  --navy: #1a3a4a;
  --teal: #3d8a8a;
  --teal-light: #4fa8a8;
  --teal-bg: #4a8f8f;
  --teal-dark: #2d6e6e;
  --white: #ffffff;
  --light-gray: #f7f8f9;
  --mid-gray: #e8eaec;
  --dark-gray: #555;
  --text-dark: #1a2a3a;
  --footer-bg: #111820;
  --accent: #3d8a8a;
  --shadow: 0 4px 20px rgba(0,0,0,0.10);
  --shadow-hover: 0 8px 32px rgba(0,0,0,0.18);
  --radius: 8px;
  --transition: all 0.3s ease;
}

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

html { scroll-behavior: smooth; font-size: 16px; }

body {
  font-family: 'Inter', sans-serif;
  color: var(--text-dark);
  background: var(--white);
  line-height: 1.7;
  overflow-x: hidden;
}

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

/* --- Typography --- */
h1, h2, h3, h4 {
  font-family: 'Playfair Display', serif;
  line-height: 1.25;
  color: var(--text-dark);
}

h1 { font-size: clamp(2rem, 4vw, 3.2rem); font-weight: 700; }
h2 { font-size: clamp(1.6rem, 3vw, 2.4rem); font-weight: 700; }
h3 { font-size: clamp(1.2rem, 2vw, 1.6rem); font-weight: 600; }
h4 { font-size: 1.1rem; font-weight: 600; }

p { font-size: 1rem; color: var(--dark-gray); line-height: 1.8; }

/* --- Utility --- */
.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }

/* Screen reader only - hidden visually but accessible for SEO/accessibility */
.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;
}

/* Uniform image containers */
.img-uniform {
  aspect-ratio: 4/3;
  overflow: hidden;
  border-radius: 12px;
}

.img-uniform img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.img-uniform-square {
  aspect-ratio: 1/1;
  overflow: hidden;
  border-radius: 12px;
}

.img-uniform-square img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.img-uniform-wide {
  aspect-ratio: 16/9;
  overflow: hidden;
  border-radius: 12px;
}

.img-uniform-wide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.section-pad { padding: 80px 0; }
.section-pad-sm { padding: 50px 0; }
.text-center { text-align: center; }
.text-teal { color: var(--teal); }
.text-white { color: var(--white); }
.divider { width: 60px; height: 3px; background: var(--teal); margin: 16px auto 32px; border-radius: 2px; }
.divider-left { margin-left: 0; }

/* --- Buttons --- */
.btn {
  display: inline-block;
  padding: 14px 32px;
  border-radius: 50px;
  font-family: 'Inter', sans-serif;
  font-weight: 600;
  font-size: 0.9rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  cursor: pointer;
  transition: var(--transition);
  border: 2px solid transparent;
  text-align: center;
}

.btn-primary {
  background: var(--navy);
  color: var(--white);
  border-color: var(--navy);
}
.btn-primary:hover {
  background: var(--teal-dark);
  border-color: var(--teal-dark);
  transform: translateY(-2px);
  box-shadow: var(--shadow-hover);
}

.btn-outline {
  background: transparent;
  color: var(--white);
  border-color: var(--white);
}
.btn-outline:hover {
  background: var(--white);
  color: var(--navy);
  transform: translateY(-2px);
  box-shadow: var(--shadow-hover);
}

.btn-teal {
  background: var(--teal);
  color: var(--white);
  border-color: var(--teal);
}
.btn-teal:hover {
  background: var(--teal-dark);
  border-color: var(--teal-dark);
  transform: translateY(-2px);
  box-shadow: var(--shadow-hover);
}

.btn-dark {
  background: var(--navy);
  color: var(--white);
  border-color: var(--navy);
  padding: 12px 28px;
  border-radius: 50px;
}
.btn-dark:hover {
  background: var(--teal-dark);
  border-color: var(--teal-dark);
  transform: translateY(-2px);
}

/* ============================================
   NAVIGATION
   ============================================ */
.navbar {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: var(--white);
  box-shadow: 0 2px 12px rgba(0,0,0,0.08);
  padding: 0;
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 68px;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

.nav-logo {
  font-family: 'Playfair Display', serif;
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--navy);
  display: flex;
  align-items: center;
  gap: 10px;
}

.nav-logo span { color: var(--teal); }

.nav-links {
  display: flex;
  align-items: center;
  gap: 8px;
}

.nav-links a {
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-dark);
  padding: 8px 14px;
  border-radius: 4px;
  transition: var(--transition);
}

.nav-links a:hover { color: var(--teal); background: rgba(61,138,138,0.07); }

.nav-dropdown { position: relative; }
.nav-dropdown > a::after { content: ' ▾'; font-size: 0.7rem; }

.dropdown-menu {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow-hover);
  min-width: 200px;
  padding: 8px 0;
  z-index: 100;
}

.dropdown-menu a {
  display: block;
  padding: 10px 20px;
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 0.03em;
  text-transform: none;
  color: var(--text-dark);
}

.dropdown-menu a:hover { background: var(--light-gray); color: var(--teal); }
.nav-dropdown:hover .dropdown-menu { display: block; }

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

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 4px;
}
.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--navy);
  border-radius: 2px;
  transition: var(--transition);
}

/* ============================================
   HERO BANNER
   ============================================ */
.hero-banner {
  background: var(--navy);
  position: relative;
  overflow: hidden;
}

.hero-banner-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 520px;
  align-items: stretch;
}

.hero-left {
  background: var(--navy);
  padding: 48px 40px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.hero-logo-area {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 28px;
}

.hero-logo-box {
  background: var(--white);
  border-radius: 10px;
  padding: 10px 16px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.hero-logo-ov {
  font-family: 'Playfair Display', serif;
  font-size: 2rem;
  font-weight: 700;
  color: var(--teal);
  line-height: 1;
}

.hero-logo-text {
  font-family: 'Inter', sans-serif;
  font-size: 1rem;
  font-weight: 700;
  color: var(--navy);
  line-height: 1.2;
}

.hero-contact-badge {
  background: var(--teal-bg);
  border-radius: 8px;
  padding: 10px 16px;
  color: var(--white);
  font-size: 0.95rem;
  font-weight: 600;
}

.hero-contact-badge a { color: var(--white); }
.hero-contact-badge a:hover { text-decoration: underline; }

.hero-headline {
  font-family: 'Inter', sans-serif;
  font-size: clamp(1rem, 1.5vw, 1.15rem);
  font-weight: 700;
  color: var(--white);
  text-transform: uppercase;
  letter-spacing: 0.02em;
  line-height: 1.5;
  margin-bottom: 20px;
}

.hero-services-list {
  margin-bottom: 24px;
}

.hero-services-list p {
  color: rgba(255,255,255,0.75);
  font-size: 0.88rem;
  font-weight: 600;
  margin-bottom: 6px;
}

.hero-services-list ul {
  columns: 1;
  gap: 0;
}

.hero-services-list li {
  color: rgba(255,255,255,0.85);
  font-size: 0.83rem;
  padding: 2px 0 2px 14px;
  position: relative;
}

.hero-services-list li::before {
  content: '•';
  position: absolute;
  left: 0;
  color: var(--teal-light);
}

.hero-badges {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  margin-top: 20px;
  padding-top: 20px;
  border-top: 1px solid rgba(255,255,255,0.15);
}

.hero-badge-item {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--white);
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.hero-badge-icon {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 2px solid rgba(255,255,255,0.5);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
}

.hero-right {
  position: relative;
  overflow: hidden;
  background: var(--teal-bg);
  aspect-ratio: 4/5;
}

.hero-right-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  border-radius: 0 !important;
}

.hero-placeholder {
  width: 100%;
  height: 100%;
  min-height: 520px;
  background: linear-gradient(135deg, var(--teal-bg) 0%, var(--teal-dark) 100%);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.6);
  font-size: 0.9rem;
  text-align: center;
  padding: 20px;
}

.hero-placeholder .placeholder-icon { font-size: 3rem; margin-bottom: 12px; opacity: 0.5; }

/* ============================================
   HERO TAGLINE STRIP
   ============================================ */
.hero-strip {
  background: var(--navy);
  padding: 40px 24px;
  text-align: center;
}

.hero-strip h1 {
  color: var(--white);
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  margin-bottom: 8px;
}

.hero-strip .phone-link {
  color: var(--teal-light);
  font-size: 1.3rem;
  font-weight: 600;
  font-family: 'Inter', sans-serif;
  transition: var(--transition);
}

.hero-strip .phone-link:hover { color: var(--white); }

/* ============================================
   MISSION SECTION
   ============================================ */
.mission-section {
  background: var(--teal-bg);
  padding: 80px 0;
}

.mission-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.mission-image {
  border-radius: 12px;
  overflow: hidden;
  box-shadow: var(--shadow-hover);
  aspect-ratio: 4/3;
}

.mission-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 12px;
}

.img-placeholder {
  background: rgba(0,0,0,0.15);
  border-radius: 12px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.5);
  font-size: 0.85rem;
  text-align: center;
  padding: 20px;
  min-height: 300px;
}

.img-placeholder .ph-icon { font-size: 2.5rem; margin-bottom: 8px; opacity: 0.4; }

.mission-content h4 {
  color: var(--white);
  font-family: 'Playfair Display', serif;
  font-size: 1.5rem;
  margin-bottom: 16px;
}

.mission-content p {
  color: rgba(255,255,255,0.88);
  font-size: 1.05rem;
  line-height: 1.8;
}

/* ============================================
   PHOTO GALLERY
   ============================================ */
.gallery-section { padding: 0; }

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
}

.gallery-item {
  position: relative;
  overflow: hidden;
  aspect-ratio: 1/1;
  cursor: pointer;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.gallery-item:hover img { transform: scale(1.06); }

.gallery-item .gallery-ph {
  width: 100%;
  height: 100%;
  background: var(--mid-gray);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: #aaa;
  font-size: 0.8rem;
  text-align: center;
  padding: 10px;
}

.gallery-item .gallery-ph .ph-icon { font-size: 2rem; margin-bottom: 6px; opacity: 0.4; }

/* ============================================
   TRANSFORMING YOUR SPACE
   ============================================ */
.transform-section {
  background: var(--white);
  padding: 80px 0;
}

.transform-section h2 {
  text-align: center;
  margin-bottom: 12px;
}

.transform-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  margin-top: 50px;
}

.transform-video {
  border-radius: 12px;
  overflow: hidden;
  box-shadow: var(--shadow);
  background: #000;
  aspect-ratio: 16/9;
}

.transform-video iframe {
  width: 100%;
  height: 100%;
  border: none;
}

.transform-video-ph {
  width: 100%;
  aspect-ratio: 16/9;
  background: #1a1a1a;
  border-radius: 12px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.4);
  font-size: 0.85rem;
  text-align: center;
}

.transform-video-ph .ph-icon { font-size: 2.5rem; margin-bottom: 8px; }

/* Video Player */
.video-player-wrap {
  border-radius: 12px;
  overflow: hidden;
  box-shadow: var(--shadow);
  background: #000;
}

.video-tabs {
  display: flex;
  gap: 0;
  background: var(--navy);
}

.video-tab {
  flex: 1;
  padding: 12px 20px;
  background: var(--navy);
  color: rgba(255,255,255,0.7);
  border: none;
  font-family: 'Inter', sans-serif;
  font-size: 0.85rem;
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition);
}

.video-tab:hover {
  background: var(--teal-dark);
  color: var(--white);
}

.video-tab.active {
  background: var(--teal);
  color: var(--white);
}

.property-video {
  width: 100%;
  display: block;
  aspect-ratio: 16/9;
  background: #000;
}

.transform-content h3 { color: var(--teal); margin-bottom: 12px; }
.transform-content p { margin-bottom: 24px; }

.transform-content-2 { }
.transform-content-2 h3 { color: var(--teal); margin-bottom: 12px; }

/* ============================================
   SERVICE AREA MAP
   ============================================ */
.service-area {
  background: var(--teal-bg);
  padding: 80px 0;
}

.service-area-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.map-container {
  background: rgba(255,255,255,0.12);
  border-radius: 16px;
  padding: 32px;
  text-align: center;
}

.map-svg-wrapper {
  position: relative;
  display: inline-block;
  width: 100%;
  max-width: 340px;
}

.map-cities {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 20px;
  justify-content: center;
}

.map-city-tag {
  background: rgba(255,255,255,0.2);
  color: var(--white);
  padding: 6px 16px;
  border-radius: 50px;
  font-size: 0.85rem;
  font-weight: 600;
  font-family: 'Inter', sans-serif;
  letter-spacing: 0.04em;
  transition: var(--transition);
}

.map-city-tag:hover { background: rgba(255,255,255,0.35); }

.service-area-content { color: var(--white); }
.service-area-content h2 { color: var(--white); margin-bottom: 12px; }
.service-area-content .divider { background: rgba(255,255,255,0.5); }
.service-area-content h3 { color: rgba(255,255,255,0.9); margin-bottom: 10px; }
.service-area-content p { color: rgba(255,255,255,0.8); font-size: 1.05rem; margin-bottom: 20px; }

.service-area-list { margin-top: 16px; }
.service-area-list li {
  color: rgba(255,255,255,0.85);
  padding: 6px 0 6px 20px;
  position: relative;
  font-size: 0.95rem;
}
.service-area-list li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--teal-light);
  font-weight: 700;
}

/* ============================================
   SERVICE CALL / BOOKING
   ============================================ */
.booking-section {
  background: var(--light-gray);
  padding: 80px 0;
}

.booking-section h2 { text-align: center; margin-bottom: 12px; }
.booking-section .divider { margin: 0 auto 16px; }
.booking-section .section-sub {
  text-align: center;
  color: var(--dark-gray);
  font-size: 1rem;
  margin-bottom: 48px;
}

.booking-cards {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
  max-width: 700px;
  margin: 0 auto;
}

.booking-card {
  background: var(--white);
  border-radius: 16px;
  padding: 40px 32px;
  text-align: center;
  box-shadow: var(--shadow);
  border: 2px solid transparent;
  transition: var(--transition);
}

.booking-card:hover {
  border-color: var(--teal);
  box-shadow: var(--shadow-hover);
  transform: translateY(-4px);
}

.booking-card .card-icon {
  font-size: 2.5rem;
  margin-bottom: 16px;
}

.booking-card h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.3rem;
  margin-bottom: 8px;
  color: var(--navy);
}

.booking-card .card-duration {
  color: var(--dark-gray);
  font-size: 0.9rem;
  margin-bottom: 8px;
}

.booking-card .card-price {
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--teal);
  font-family: 'Inter', sans-serif;
  margin-bottom: 24px;
}

.booking-card .card-price a {
  color: var(--teal);
  text-decoration: none;
  transition: var(--transition);
}

.booking-card .card-price a:hover {
  color: var(--teal-dark);
}

.booking-card .btn { width: 100%; }

/* ============================================
   CONTACT SECTION
   ============================================ */
.contact-section {
  background: var(--white);
  padding: 80px 0;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
}

.contact-info h2 { margin-bottom: 12px; }
.contact-info .divider { margin-left: 0; }

.contact-tagline {
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--teal);
  margin-bottom: 12px;
  font-family: 'Playfair Display', serif;
}

.contact-info p {
  color: var(--dark-gray);
  margin-bottom: 24px;
  font-size: 1rem;
}

.contact-details { margin-bottom: 32px; }

.contact-detail-item {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 12px;
}

.contact-detail-item .detail-icon {
  width: 40px;
  height: 40px;
  background: var(--teal-bg);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 1rem;
  flex-shrink: 0;
}

.contact-detail-item .detail-text {
  font-size: 1rem;
  color: var(--text-dark);
  font-weight: 500;
}

.contact-detail-item .detail-text a {
  color: var(--teal);
  font-weight: 600;
  transition: var(--transition);
}

.contact-detail-item .detail-text a:hover { color: var(--teal-dark); }

.contact-image {
  border-radius: 12px;
  overflow: hidden;
  box-shadow: var(--shadow);
  margin-top: 32px;
  aspect-ratio: 4/3;
  display: block;
  width: 100%;
  object-fit: cover;
}

.contact-image img { 
  width: 100%; 
  height: 100%; 
  object-fit: cover; 
}

/* Contact Form */
.contact-form-wrap {
  background: var(--light-gray);
  border-radius: 16px;
  padding: 40px;
}

.contact-form-wrap h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.4rem;
  margin-bottom: 8px;
  color: var(--navy);
}

.contact-form-wrap p {
  color: var(--dark-gray);
  font-size: 0.9rem;
  margin-bottom: 28px;
}

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

.form-group label {
  display: block;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 6px;
  letter-spacing: 0.03em;
}

.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 12px 16px;
  border: 2px solid var(--mid-gray);
  border-radius: var(--radius);
  font-family: 'Inter', sans-serif;
  font-size: 0.95rem;
  color: var(--text-dark);
  background: var(--white);
  transition: var(--transition);
  outline: none;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  border-color: var(--teal);
  box-shadow: 0 0 0 3px rgba(61,138,138,0.12);
}

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

.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }

.form-check {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 20px;
}

.form-check input[type="checkbox"] {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
  margin-top: 2px;
  accent-color: var(--teal);
}

.form-check label {
  font-size: 0.85rem;
  color: var(--dark-gray);
  line-height: 1.5;
}

.form-submit { width: 100%; }

.form-success {
  display: none;
  background: #d4edda;
  color: #155724;
  padding: 16px;
  border-radius: var(--radius);
  text-align: center;
  font-weight: 600;
  margin-top: 16px;
}

/* ============================================
   CONNECT / SOCIAL
   ============================================ */
.social-section {
  background: var(--light-gray);
  padding: 60px 0;
  text-align: center;
}

.social-section h2 { margin-bottom: 12px; }
.social-section .divider { margin: 0 auto 32px; }

.social-links {
  display: flex;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
}

.social-link {
  display: flex;
  align-items: center;
  gap: 10px;
  background: var(--white);
  border: 2px solid var(--mid-gray);
  border-radius: 50px;
  padding: 12px 24px;
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--text-dark);
  transition: var(--transition);
  box-shadow: var(--shadow);
}

.social-link:hover {
  border-color: var(--teal);
  color: var(--teal);
  transform: translateY(-2px);
  box-shadow: var(--shadow-hover);
}

.social-link .social-icon { font-size: 1.2rem; }

/* ============================================
   DISCOUNT / EMAIL SIGNUP
   ============================================ */
.discount-section {
  background: var(--teal-bg);
  padding: 60px 0;
}

.discount-inner {
  max-width: 600px;
  margin: 0 auto;
  text-align: center;
}

.discount-inner h2 {
  color: var(--white);
  margin-bottom: 8px;
}

.discount-inner p {
  color: rgba(255,255,255,0.85);
  margin-bottom: 28px;
  font-size: 1rem;
}

.discount-form {
  display: flex;
  gap: 0;
  max-width: 460px;
  margin: 0 auto;
  border-radius: 50px;
  overflow: hidden;
  box-shadow: var(--shadow-hover);
}

.discount-form input {
  flex: 1;
  padding: 14px 24px;
  border: none;
  font-family: 'Inter', sans-serif;
  font-size: 0.95rem;
  outline: none;
  color: var(--text-dark);
}

.discount-form button {
  padding: 14px 28px;
  background: var(--navy);
  color: var(--white);
  border: none;
  font-family: 'Inter', sans-serif;
  font-weight: 700;
  font-size: 0.85rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  cursor: pointer;
  transition: var(--transition);
}

.discount-form button:hover { background: var(--teal-dark); }

/* ============================================
   FOOTER
   ============================================ */
.footer {
  background: var(--footer-bg);
  padding: 60px 0 32px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 48px;
}

.footer-brand .footer-logo {
  font-family: 'Playfair Display', serif;
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 12px;
}

.footer-brand .footer-logo span { color: var(--teal-light); }

.footer-brand p {
  color: rgba(255,255,255,0.55);
  font-size: 0.9rem;
  line-height: 1.7;
  margin-bottom: 20px;
}

.footer-phone {
  color: var(--teal-light);
  font-size: 1.1rem;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 8px;
}

.footer-phone a { color: var(--teal-light); transition: var(--transition); }
.footer-phone a:hover { color: var(--white); }

.footer-email {
  color: rgba(255,255,255,0.6);
  font-size: 0.9rem;
  display: flex;
  align-items: center;
  gap: 8px;
}

.footer-email a { color: rgba(255,255,255,0.6); transition: var(--transition); }
.footer-email a:hover { color: var(--white); }

.footer-col h4 {
  color: var(--white);
  font-family: 'Inter', sans-serif;
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 20px;
}

.footer-col ul li { margin-bottom: 10px; }
.footer-col ul li a {
  color: rgba(255,255,255,0.55);
  font-size: 0.9rem;
  transition: var(--transition);
}
.footer-col ul li a:hover { color: var(--teal-light); }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding-top: 28px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
}

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

.footer-bottom-links {
  display: flex;
  gap: 24px;
}

.footer-bottom-links a {
  color: rgba(255,255,255,0.4);
  font-size: 0.82rem;
  transition: var(--transition);
}

.footer-bottom-links a:hover { color: var(--teal-light); }

/* ============================================
   REAL ESTATE PROFESSIONALS PAGE
   ============================================ */
.page-hero {
  background: var(--navy);
  padding: 100px 24px 80px;
  text-align: center;
}

.page-hero h1 { color: var(--white); margin-bottom: 16px; }
.page-hero p {
  color: rgba(255,255,255,0.8);
  font-size: 1.1rem;
  max-width: 600px;
  margin: 0 auto 32px;
}

.services-section {
  background: var(--white);
  padding: 80px 0;
}

.services-section h2 { text-align: center; margin-bottom: 12px; }

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  margin-top: 50px;
}

.service-card {
  background: var(--white);
  border-radius: 16px;
  overflow: hidden;
  box-shadow: var(--shadow);
  border: 1px solid var(--mid-gray);
  transition: var(--transition);
}

.service-card:hover {
  box-shadow: var(--shadow-hover);
  transform: translateY(-4px);
  border-color: var(--teal);
}

.service-card-img {
  width: 100%;
  aspect-ratio: 16/9;
  object-fit: cover;
}

.service-card-img-ph {
  width: 100%;
  aspect-ratio: 16/9;
  background: var(--mid-gray);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: #aaa;
  font-size: 0.8rem;
}

.service-card-img-ph .ph-icon { font-size: 2rem; margin-bottom: 6px; opacity: 0.4; }

.service-card-body { padding: 28px; }

.service-card-body h3 {
  color: var(--teal);
  font-size: 1.15rem;
  margin-bottom: 12px;
}

.service-card-body p {
  color: var(--dark-gray);
  font-size: 0.9rem;
  margin-bottom: 16px;
}

.service-card-list li {
  color: var(--dark-gray);
  font-size: 0.88rem;
  padding: 4px 0 4px 18px;
  position: relative;
}

.service-card-list li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--teal);
  font-weight: 700;
  font-size: 0.8rem;
}

.why-section {
  background: var(--light-gray);
  padding: 80px 0;
}

.why-section h2 { text-align: center; margin-bottom: 12px; }

.why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  margin-top: 50px;
}

.why-card {
  background: var(--white);
  border-radius: 16px;
  padding: 36px 28px;
  text-align: center;
  box-shadow: var(--shadow);
  transition: var(--transition);
}

.why-card:hover {
  box-shadow: var(--shadow-hover);
  transform: translateY(-4px);
}

.why-card .why-icon {
  font-size: 2.5rem;
  margin-bottom: 16px;
}

.why-card h3 {
  color: var(--navy);
  font-size: 1.15rem;
  margin-bottom: 12px;
}

.why-card p { color: var(--dark-gray); font-size: 0.92rem; }

.testimonial-section {
  background: var(--navy);
  padding: 80px 0;
  text-align: center;
}

.testimonial-quote {
  max-width: 700px;
  margin: 0 auto;
}

.testimonial-quote blockquote {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.3rem, 2.5vw, 1.8rem);
  color: var(--white);
  line-height: 1.5;
  margin-bottom: 24px;
  font-style: italic;
}

.testimonial-quote blockquote::before { content: '\201C'; font-size: 3rem; color: var(--teal-light); line-height: 0; vertical-align: -0.5em; margin-right: 4px; }
.testimonial-quote blockquote::after { content: '\201D'; font-size: 3rem; color: var(--teal-light); line-height: 0; vertical-align: -0.5em; margin-left: 4px; }

.testimonial-source {
  color: rgba(255,255,255,0.6);
  font-size: 0.9rem;
  font-style: italic;
}

.cta-section {
  background: var(--light-gray);
  padding: 80px 0;
  text-align: center;
}

.cta-section h2 { margin-bottom: 12px; }
.cta-section p { color: var(--dark-gray); max-width: 500px; margin: 0 auto 32px; }

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 900px) {
  .hero-banner-inner { grid-template-columns: 1fr; }
  .hero-right { min-height: 300px; }
  .hero-placeholder { min-height: 300px; }
  .mission-grid,
  .transform-grid,
  .service-area-grid,
  .contact-grid { grid-template-columns: 1fr; gap: 40px; }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .services-grid,
  .why-grid { grid-template-columns: 1fr 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .booking-cards { grid-template-columns: 1fr 1fr; }
  .video-tabs { flex-wrap: wrap; gap: 8px; }
  .video-tab { padding: 8px 16px; font-size: 0.8rem; }
}

@media (max-width: 640px) {
  html { font-size: 15px; }
  .container { padding: 0 16px; }
  
  .nav-links { display: none; }
  .hamburger { display: flex; }
  .nav-links.open {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 68px;
    left: 0;
    right: 0;
    background: var(--white);
    padding: 16px;
    box-shadow: var(--shadow);
    z-index: 999;
    gap: 4px;
  }
  .nav-cta { display: none; }
  
  /* Hero mobile */
  .hero-left { padding: 32px 20px; }
  .hero-headline { font-size: 0.95rem; }
  .hero-logo-area { flex-direction: column; align-items: flex-start; gap: 12px; }
  .hero-services-list li { font-size: 0.8rem; }
  .hero-badges { flex-direction: column; gap: 12px; }
  .hero-badge-item { font-size: 0.75rem; }
  .hero-right { min-height: 250px; }
  .hero-right img { height: 250px; object-fit: cover; }
  
  /* Hero strip */
  .hero-strip { padding: 28px 16px; }
  .hero-strip h1 { font-size: 1.5rem; }
  .hero-strip .phone-link { font-size: 1.1rem; }
  
  /* Mission */
  .mission-section { padding: 50px 0; }
  .mission-content { text-align: center; }
  .mission-content .divider { margin-left: auto; }
  
  /* Gallery */
  .gallery-grid { grid-template-columns: 1fr 1fr; }
  .gallery-item { aspect-ratio: 1/1; }
  
  /* Transform / Videos */
  .transform-section { padding: 50px 0; }
  .transform-grid { gap: 30px; }
  .video-tabs { flex-direction: column; gap: 8px; }
  .video-tab { width: 100%; text-align: center; }
  .property-video { border-radius: 8px; }
  
  /* Service area */
  .service-area { padding: 50px 0; }
  .service-area-content { text-align: center; }
  .service-area-content .divider { margin-left: auto; margin-right: auto; }
  .map-container { padding: 20px; }
  
  /* Booking */
  .booking-section { padding: 50px 0; }
  .booking-cards { grid-template-columns: 1fr; gap: 20px; }
  .booking-card { padding: 28px 20px; }
  .booking-card .card-price { font-size: 1.5rem; }
  .booking-card .card-price a { color: var(--teal); text-decoration: none; }
  
  /* Contact */
  .contact-section { padding: 50px 0; }
  .contact-form-wrap { padding: 28px 20px; }
  
  /* Services grid */
  .services-grid,
  .why-grid { grid-template-columns: 1fr; }
  
  /* Footer */
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .footer { padding: 40px 0 24px; }
  
  /* Forms */
  .form-row { grid-template-columns: 1fr; }
  .discount-form { flex-direction: column; border-radius: var(--radius); }
  .discount-form input,
  .discount-form button { border-radius: var(--radius); }
  
  /* Social */
  .social-section { padding: 40px 0; }
  .social-links { flex-direction: column; align-items: center; }
  .social-link { width: 100%; max-width: 280px; justify-content: center; }
  
  /* Discount */
  .discount-section { padding: 40px 0; }
  
  /* Page hero */
  .page-hero { padding: 80px 16px 50px; }
  .page-hero h1 { font-size: 1.6rem; }
  .page-hero p { font-size: 1rem; }
  
  /* Testimonial */
  .testimonial-section { padding: 50px 0; }
  .testimonial-quote blockquote { font-size: 1.2rem; }
  
  /* CTA */
  .cta-section { padding: 50px 0; }
  .cta-section > div { flex-direction: column; }
}

/* Extra small devices */
@media (max-width: 400px) {
  html { font-size: 14px; }
  .hero-logo-box { padding: 8px 12px; }
  .hero-logo-ov { font-size: 1.6rem; }
  .hero-contact-badge { padding: 8px 12px; font-size: 0.85rem; }
  .btn { padding: 12px 24px; font-size: 0.85rem; }
  .booking-card h3 { font-size: 1.1rem; }
  .gallery-grid { grid-template-columns: 1fr; }
}

/* ============================================
   ANIMATIONS
   ============================================ */
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(24px); }
  to { opacity: 1; transform: translateY(0); }
}

.fade-in-up { animation: fadeInUp 0.6s ease both; }
.delay-1 { animation-delay: 0.1s; }
.delay-2 { animation-delay: 0.2s; }
.delay-3 { animation-delay: 0.3s; }
