/* 
 * SMILE PROPERTY AGENT — HIGH-FIDELITY DESIGN SYSTEM & STYLESHEET
 * Optimized for cPanel and derived directly from original Duda CMS Brand Spec.
 */

@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@400;600;700;800&family=Open+Sans:wght@300;400;600;700&family=Source+Sans+Pro:wght@300;400;600;700&display=swap');

:root {
  --primary: #00B4D8;
  --secondary: #68CCD1;
  --accent: #FA4616;
  --bg-light: #EEEEEE;
  --bg-dark: #232122;
  --bg-white: #ffffff;
  --text-dark: #111111;
  --text-muted: #555555;
  --text-light: #ffffff;
  
  --font-heading: 'Montserrat', sans-serif;
  --font-body: 'Open Sans', sans-serif;
  --font-alt: 'Source Sans Pro', sans-serif;
  
  --container-width: 1200px;
  --transition-smooth: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
  --border-radius: 4px;
  --shadow-premium: 0 10px 30px rgba(0, 0, 0, 0.05);
  --shadow-active: 0 15px 40px rgba(0, 0, 0, 0.15);
}

/* ==========================================================================
   1. GLOBAL RESET & BASE STYLES
   ========================================================================== */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
  background-color: var(--bg-light);
}

body {
  font-family: var(--font-body);
  font-size: 18px;
  line-height: 1.6;
  color: var(--text-dark);
  background-color: var(--bg-white);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  font-weight: 700;
  line-height: 1.25;
  color: var(--text-dark);
}

h1 {
  font-size: 3.5rem;
  letter-spacing: -0.02em;
}

h2 {
  font-size: 2.25rem;
  letter-spacing: -0.01em;
}

h3 {
  font-size: 1.5rem;
}

a {
  color: var(--accent);
  text-decoration: none;
  transition: var(--transition-smooth);
}

a:hover {
  opacity: 0.9;
}

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

ul {
  list-style: none;
}

/* ==========================================================================
   2. REUSABLE UTILITIES & LAYOUTS
   ========================================================================== */
.container {
  max-width: var(--container-width);
  margin: 0 auto;
  padding: 0 24px;
  width: 100%;
}

.section-padding {
  padding: 80px 0;
}

.text-center { text-align: center; }
.text-left { text-align: left; }
.text-right { text-align: right; }

.accent-color { color: var(--accent); }
.primary-color { color: var(--primary); }
.white-color { color: var(--bg-white); }

.flex { display: flex; }
.grid { display: grid; }

.grid-2 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 48px;
  align-items: center;
}

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

/* Premium Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 16px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  padding: 16px 36px;
  border-radius: var(--border-radius);
  transition: var(--transition-smooth);
  cursor: pointer;
  border: none;
}

.btn-primary {
  background-color: var(--accent);
  color: var(--text-light);
  box-shadow: 0 4px 15px rgba(250, 70, 22, 0.3);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(250, 70, 22, 0.45);
  background-color: #e0390f;
  color: var(--text-light);
}

.btn-secondary {
  background-color: var(--primary);
  color: var(--text-light);
  box-shadow: 0 4px 15px rgba(0, 180, 216, 0.3);
}

.btn-secondary:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0, 180, 216, 0.45);
  background-color: #009cb9;
  color: var(--text-light);
}

.btn-outline-white {
  background-color: transparent;
  color: var(--text-light);
  border: 2px solid var(--text-light);
}

.btn-outline-white:hover {
  background-color: var(--text-light);
  color: var(--bg-dark);
  transform: translateY(-2px);
}

/* Spacer */
.spacer {
  height: 24px;
}

/* ==========================================================================
   3. HEADER & NAVIGATION
   ========================================================================== */
.header-wrapper {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 100;
  transition: var(--transition-smooth);
  background-color: transparent;
}

.header-wrapper.sticky {
  position: fixed;
  background-color: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.05);
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.header-wrapper.sticky .logo img {
  filter: none; /* Keep color logo visible on sticky white background */
}

.header-wrapper.sticky .nav-link {
  color: var(--text-dark);
}

.header-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 90px;
}

.logo img {
  height: 78px;
  width: auto;
  transition: var(--transition-smooth);
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 32px;
}

.nav-link {
  display: none !important;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: -6px;
  left: 0;
  width: 0;
  height: 2px;
  background-color: var(--accent);
  transition: var(--transition-smooth);
}

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

.hamburger-btn {
  display: block;
  background: none;
  border: none;
  cursor: pointer;
  z-index: 110;
}

.hamburger-btn span {
  display: block;
  width: 25px;
  height: 3px;
  background-color: var(--text-dark);
  margin-bottom: 5px;
  transition: var(--transition-smooth);
}

.header-wrapper.sticky .hamburger-btn span {
  background-color: var(--text-dark);
}

/* Mobile Navigation Drawer */
.mobile-nav-drawer {
  position: fixed;
  top: 0;
  right: -100%;
  width: 320px;
  height: 100vh;
  background-color: var(--bg-dark);
  z-index: 105;
  box-shadow: -10px 0 30px rgba(0,0,0,0.25);
  transition: var(--transition-smooth);
  padding: 100px 32px 40px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.mobile-drawer-close {
  position: absolute;
  top: 24px;
  right: 24px;
  background: none;
  border: none;
  font-size: 36px;
  color: var(--text-light);
  cursor: pointer;
  z-index: 120;
  line-height: 1;
  padding: 4px;
  transition: var(--transition-smooth);
}

.mobile-drawer-close:hover {
  color: var(--primary);
  transform: rotate(90deg);
}

.mobile-nav-drawer.open {
  right: 0;
}

.mobile-nav-menu {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.mobile-nav-link {
  font-family: var(--font-heading);
  font-size: 20px;
  font-weight: 700;
  color: var(--text-light);
}

.mobile-drawer-contact {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding-top: 24px;
}

.mobile-drawer-contact h4 {
  color: var(--primary);
  margin-bottom: 12px;
}

.mobile-drawer-contact p {
  color: rgba(255,255,255,0.7);
  font-size: 16px;
  margin-bottom: 8px;
}

.mobile-drawer-contact a {
  color: var(--text-light);
}

.drawer-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0,0,0,0.5);
  z-index: 102;
  opacity: 0;
  pointer-events: none;
  transition: var(--transition-smooth);
}

.drawer-overlay.visible {
  opacity: 1;
  pointer-events: auto;
}

/* ==========================================================================
   4. HERO SECTIONS
   ========================================================================== */
.hero-section {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 140px 0 100px;
  background-color: var(--bg-dark);
  background-size: cover;
  background-position: center;
  color: var(--text-light);
}

/* Home Hero Custom Split Layer */
.home-hero {
  background-image: linear-gradient(135deg, rgba(35, 33, 34, 0.9) 0%, rgba(35, 33, 34, 0.7) 100%), url('../assets/images/photo-1526948128573-703ee1aeb6fa-2880w.jpg');
}

.hero-content {
  max-width: 800px;
  margin: 0 auto;
}

.hero-subtitle {
  font-family: var(--font-heading);
  font-size: 2.5rem;
  font-weight: 300;
  margin-top: 16px;
  margin-bottom: 40px;
  text-transform: none;
}

/* Inner Page Banners */
.inner-hero {
  min-height: 50vh;
  background-image: linear-gradient(to right, rgba(35, 33, 34, 0.95), rgba(35, 33, 34, 0.8)), url('../assets/images/pexels-photo-3184287-1388h.jpeg');
  padding: 180px 0 80px;
}

.inner-hero .hero-subtitle {
  font-size: 1.5rem;
  margin-bottom: 0;
  color: var(--primary);
  font-weight: 600;
}

/* ==========================================================================
   5. TWO-COLUMN SPLIT GRID SECTIONS (Original design replicas)
   ========================================================================== */
.split-section {
  background-color: var(--bg-dark);
  color: var(--text-light);
  border-bottom: 1px solid rgba(255,255,255,0.05);
}

.split-section h2 {
  color: var(--text-light);
  margin-bottom: 24px;
}

.split-section p {
  color: rgba(255, 255, 255, 0.85);
  margin-bottom: 20px;
}

/* Split Column Items Grid */
.feature-list {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
}

.feature-item {
  display: flex;
  gap: 24px;
  align-items: flex-start;
}

.feature-icon-wrapper {
  background-color: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  padding: 16px;
  border-radius: var(--border-radius);
  color: var(--accent);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition-smooth);
}

.feature-item:hover .feature-icon-wrapper {
  color: var(--text-light);
  background-color: var(--accent);
  border-color: var(--accent);
}

.feature-icon-wrapper svg {
  width: 32px;
  height: 32px;
  fill: currentColor;
}

.feature-text h4 {
  color: var(--text-light);
  font-size: 20px;
  margin-bottom: 8px;
}

.feature-text p {
  font-size: 16px;
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 0;
}

/* Arrow Separator Custom Element */
.custom-arrow-svg {
  margin: 32px 0;
  color: var(--primary);
}

.custom-arrow-svg svg {
  width: 70px;
  height: 40px;
  fill: currentColor;
}

/* ==========================================================================
   6. STAT GRID (Transparent Separator Design)
   ========================================================================== */
.stat-section {
  background-color: var(--bg-dark);
  padding: 60px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.stat-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  align-items: center;
}

.stat-item {
  text-align: center;
  position: relative;
  padding: 10px 0;
}

.stat-item::after {
  content: '';
  position: absolute;
  top: 15%;
  right: 0;
  width: 1px;
  height: 70%;
  background-color: rgba(255, 255, 255, 0.1);
}

.stat-item:last-child::after {
  display: none;
}

.stat-number {
  font-family: var(--font-heading);
  font-size: 4rem;
  font-weight: 800;
  color: var(--primary);
  line-height: 1.1;
  margin-bottom: 4px;
}

.stat-label {
  font-family: var(--font-heading);
  font-size: 14px;
  font-weight: 700;
  color: var(--text-light);
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

/* ==========================================================================
   7. INVESTMENT INCLUDES SECTION (3x4 Grid System)
   ========================================================================== */
.benefits-section {
  background-color: #fafafa;
}

.benefits-section h2 {
  margin-bottom: 60px;
}

.benefit-card {
  background-color: var(--bg-white);
  padding: 40px 32px;
  border-radius: 16px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.02);
  border: 1px solid rgba(0, 0, 0, 0.04);
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  display: flex;
  flex-direction: column;
  height: 100%;
}

.benefit-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(250, 70, 22, 0.08);
  border-color: rgba(250, 70, 22, 0.15);
}

.benefit-card-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 64px;
  height: 64px;
  border-radius: 16px;
  background-color: rgba(250, 70, 22, 0.06);
  color: var(--accent);
  margin-bottom: 24px;
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.benefit-card-icon iconify-icon {
  font-size: 32px;
  display: block;
}

.benefit-card:hover .benefit-card-icon {
  background-color: var(--accent);
  color: var(--text-light);
  transform: scale(1.05) rotate(5deg);
}

.benefit-card h3 {
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 12px;
  line-height: 1.35;
  transition: var(--transition-smooth);
}

.benefit-card:hover h3 {
  color: var(--accent);
}

.benefit-card p {
  font-size: 15px;
  color: var(--text-muted);
  line-height: 1.6;
  flex-grow: 1;
}

.benefit-card ul {
  list-style: none;
  font-size: 16px;
  color: var(--text-muted);
  margin-top: 10px;
}

.benefit-card ul li {
  position: relative;
  padding-left: 20px;
  margin-bottom: 8px;
}

.benefit-card ul li::before {
  content: "•";
  position: absolute;
  left: 0;
  color: var(--primary);
  font-weight: bold;
}

/* Discussion note banner */
.note-banner {
  background-color: rgba(0, 180, 216, 0.05);
  border-left: 4px solid var(--primary);
  padding: 24px;
  border-radius: var(--border-radius);
  margin-top: 40px;
  text-align: left;
}

.note-banner strong {
  color: var(--primary);
}

.note-banner p {
  margin-bottom: 0;
  font-size: 16px;
}

/* ==========================================================================
   8. PROPERTY PORTALS
   ========================================================================== */
.portals-section {
  background-color: var(--bg-white);
  border-top: 1px solid rgba(0, 0, 0, 0.05);
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
  padding: 50px 0;
}

.portals-section h4 {
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-size: 15px;
  margin-bottom: 32px;
  color: var(--text-muted);
}

.portals-grid {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 60px;
  flex-wrap: wrap;
}

.portal-logo img {
  height: 55px;
  width: auto;
  opacity: 0.75;
  transition: var(--transition-smooth);
}

.portal-logo:hover img {
  opacity: 1;
  transform: scale(1.05);
}

/* ==========================================================================
   9. PROMO VIDEOS & TESTIMONIALS
   ========================================================================== */
.video-section {
  background-color: var(--bg-dark);
  color: var(--text-light);
}

.video-section h2 {
  color: var(--text-light);
  margin-bottom: 48px;
}

.video-player-container {
  max-width: 800px;
  margin: 0 auto;
  border-radius: var(--border-radius);
  overflow: hidden;
  box-shadow: 0 20px 50px rgba(0,0,0,0.3);
  position: relative;
  background-color: #000;
  aspect-ratio: 16/9;
}

.video-player-container video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* Testimonial Shapes (Beautiful speech bubble design from original Duda shapes) */
.testimonials-section {
  background-color: var(--bg-light);
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px;
  margin-top: 48px;
}

.testimonial-bubble {
  color: var(--text-light);
  padding: 40px;
  border-radius: 30px;
  position: relative;
  box-shadow: var(--shadow-premium);
  transition: var(--transition-smooth);
}

.testimonial-bubble:hover {
  transform: scale(1.02);
}

.testimonial-bubble.blue {
  background-color: var(--primary);
}

.testimonial-bubble.orange {
  background-color: var(--accent);
}

/* Custom Speech Bubble Pointer Tail using SVG */
.testimonial-bubble::after {
  content: '';
  position: absolute;
  bottom: -20px;
  left: 60px;
  width: 0;
  height: 0;
  border-style: solid;
}

.testimonial-bubble.blue::after {
  border-width: 20px 20px 0 0;
  border-color: var(--primary) transparent transparent transparent;
}

.testimonial-bubble.orange::after {
  border-width: 20px 20px 0 0;
  border-color: var(--accent) transparent transparent transparent;
}

.testimonial-text {
  font-family: var(--font-heading);
  font-size: 20px;
  font-weight: 600;
  line-height: 1.4;
  margin-bottom: 24px;
}

.testimonial-author {
  font-family: var(--font-body);
  font-size: 16px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  opacity: 0.9;
}

/* ==========================================================================
   10. CHOOSE CITY & BOOKING PAGES (STANDALONE ARCHITECTURE)
   ========================================================================== */
.booking-section {
  background-color: var(--bg-white);
  padding: 100px 0;
}

.booking-card {
  max-width: 600px;
  margin: 0 auto;
  background-color: var(--bg-white);
  border-radius: var(--border-radius);
  box-shadow: 0 15px 40px rgba(0,0,0,0.08);
  padding: 48px;
  text-align: center;
  border: 1px solid rgba(0,0,0,0.05);
}

.booking-card h2 {
  font-size: 2rem;
  margin-bottom: 12px;
}

.booking-card p {
  color: var(--text-muted);
  margin-bottom: 32px;
}

.booking-options {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.booking-option-btn {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 32px;
  border-radius: var(--border-radius);
  background-color: #f7f7f7;
  font-family: var(--font-heading);
  font-weight: 700;
  color: var(--text-dark);
  font-size: 18px;
  transition: var(--transition-smooth);
}

.booking-option-btn:hover {
  background-color: var(--accent);
  color: var(--text-light);
  transform: translateX(4px);
}

/* Dedicated Maps styling for City layouts */
.map-section {
  padding: 0;
  height: 450px;
  width: 100%;
  position: relative;
  background-color: #eaeaea;
}

.map-placeholder {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #eaeaea, #f5f5f5);
  color: var(--text-muted);
  text-align: center;
}

.map-placeholder svg {
  width: 60px;
  height: 60px;
  margin-bottom: 16px;
  color: var(--accent);
}

.map-placeholder h3 {
  margin-bottom: 8px;
}

/* ==========================================================================
   11. DYNAMIC POPUPS & CALENDLY OVERLAYS
   ========================================================================== */
.dmPopupMask {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(250, 70, 22, 0.4); /* High contrast accent tint overlay from Duda */
  z-index: 1000;
  opacity: 0;
  pointer-events: none;
  transition: var(--transition-smooth);
  backdrop-filter: blur(4px);
}

.dmPopupMask.visible {
  opacity: 1;
  pointer-events: auto;
}

.dmPopup {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -45%);
  width: 90%;
  max-width: 1000px;
  height: 80vh;
  max-height: 800px;
  background-color: var(--bg-white);
  border-radius: 8px;
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.25);
  z-index: 1001;
  opacity: 0;
  pointer-events: none;
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  display: flex;
  flex-direction: column;
  overflow: hidden;
}

.dmPopup.visible {
  opacity: 1;
  pointer-events: auto;
  transform: translate(-50%, -50%);
}

.dmPopupCloseWrapper {
  position: absolute;
  top: 16px;
  right: 16px;
  z-index: 1010;
}

.dmPopupClose {
  width: 32px;
  height: 32px;
  background-color: rgba(0,0,0,0.05);
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  font-weight: 300;
  color: var(--text-dark);
  transition: var(--transition-smooth);
}

.dmPopupClose:hover {
  background-color: var(--accent);
  color: var(--text-light);
}

.dmPopupClose::before {
  content: '×';
}

.dmPopupTitle {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 20px;
  padding: 24px 32px;
  border-bottom: 1px solid rgba(0,0,0,0.05);
  background-color: #fafafa;
}

.dmPopup .popup-content {
  flex-grow: 1;
  overflow-y: auto;
  padding: 0;
  position: relative;
}

/* Calendly Loading Spinner Placeholder */
.calendly-loading-state {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background-color: #fff;
  z-index: 1;
  transition: var(--transition-smooth);
}

.calendly-loading-state.hidden {
  opacity: 0;
  pointer-events: none;
}

.spinner {
  width: 50px;
  height: 50px;
  border: 4px solid rgba(0, 180, 216, 0.1);
  border-left-color: var(--primary);
  border-radius: 50%;
  animation: spin 1s linear infinite;
  margin-bottom: 16px;
}

@keyframes spin {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

/* Standalone Widget styling */
.calendly-inline-widget-wrapper {
  width: 100%;
  height: 100%;
  min-height: 650px;
}

/* ==========================================================================
   12. WEB3FORMS / CONTACT FORM DESIGN
   ========================================================================== */
.contact-form-wrapper {
  background-color: #fafafa;
  border-radius: var(--border-radius);
  padding: 40px;
  border: 1px solid rgba(0,0,0,0.05);
}

.contact-form {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

.form-group-full {
  grid-column: span 2;
}

.form-group label {
  display: block;
  font-family: var(--font-heading);
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 8px;
  color: var(--text-dark);
}

.form-input {
  width: 100%;
  padding: 16px 20px;
  border-radius: var(--border-radius);
  border: 1px solid rgba(0,0,0,0.15);
  font-family: var(--font-body);
  font-size: 16px;
  background-color: var(--bg-white);
  transition: var(--transition-smooth);
}

.form-input:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(0, 180, 216, 0.15);
}

.form-status {
  grid-column: span 2;
  margin-top: 16px;
  padding: 16px 24px;
  border-radius: var(--border-radius);
  font-weight: 600;
  display: none;
}

.form-status.success {
  display: block;
  background-color: #e2f9e1;
  color: #1e7e34;
  border: 1px solid #c3e6cb;
}

.form-status.error {
  display: block;
  background-color: #fce8e6;
  color: #c51f1a;
  border: 1px solid #f5c6cb;
}

/* ==========================================================================
   13. DUAL-PANEL CTA BANNER (Above Footer)
   ========================================================================== */
.footer-cta-banner {
  background-color: var(--bg-dark);
  padding: 80px 0;
  border-bottom: 1px solid rgba(255,255,255,0.05);
  position: relative;
}

.cta-banner-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
  text-align: center;
  align-items: center;
}

.cta-banner-content h3 {
  font-size: 2.25rem;
  color: var(--text-light);
  margin-bottom: 16px;
}

.cta-banner-content p {
  color: rgba(255,255,255,0.7);
  font-size: 18px;
  max-width: 700px;
  margin: 0 auto 32px;
}

/* Step list visual replica */
.step-guide-horizontal {
  display: flex;
  justify-content: space-between;
  max-width: 900px;
  margin: 0 auto 48px;
  gap: 20px;
}

.step-card {
  flex: 1;
  background-color: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.05);
  padding: 24px;
  border-radius: var(--border-radius);
  text-align: center;
  position: relative;
}

.step-number {
  width: 36px;
  height: 36px;
  background-color: var(--accent);
  color: var(--text-light);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-heading);
  font-weight: 700;
  margin: 0 auto 16px;
}

.step-card h4 {
  font-size: 16px;
  color: var(--text-light);
  font-weight: 700;
}

/* ==========================================================================
   14. FOOTER
   ========================================================================== */
.footer {
  background-color: var(--bg-dark);
  color: var(--text-light);
  padding: 80px 0 40px;
  font-family: var(--font-body);
}

.footer-top {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  padding-bottom: 50px;
  margin-bottom: 40px;
}

.footer-logo img {
  height: 90px;
  width: auto;
  margin-bottom: 24px;
}

.footer-contact {
  font-size: 18px;
  line-height: 2;
  margin-bottom: 24px;
}

.footer-contact a {
  color: var(--text-light);
  font-weight: 600;
}

.footer-contact a:hover {
  color: var(--primary);
}

.footer-ppra-disclaimer {
  font-size: 13px;
  color: rgba(255,255,255,0.5);
  max-width: 800px;
  margin: 0 auto 32px;
  line-height: 1.6;
}

.footer-ppra-disclaimer a {
  color: rgba(255,255,255,0.7);
  text-decoration: underline;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 14px;
  color: rgba(255,255,255,0.4);
}

.footer-bottom a {
  color: rgba(255,255,255,0.5);
}

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

/* ==========================================================================
   15. COOKIE CONSENT BANNER (GDPR / POPIA Compliance)
   ========================================================================== */
.cookie-consent-banner {
  position: fixed;
  bottom: 24px;
  left: 24px;
  right: 24px;
  max-width: 500px;
  background-color: var(--bg-dark);
  color: var(--text-light);
  border-radius: 8px;
  box-shadow: 0 15px 40px rgba(0,0,0,0.3);
  padding: 24px;
  z-index: 9999;
  display: flex;
  flex-direction: column;
  gap: 16px;
  border: 1px solid rgba(255,255,255,0.1);
  transform: translateY(150%);
  transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.cookie-consent-banner.show {
  transform: translateY(0);
}

.cookie-consent-text {
  font-size: 14px;
  line-height: 1.5;
  color: rgba(255,255,255,0.8);
}

.cookie-consent-text a {
  color: var(--primary);
  text-decoration: underline;
}

.cookie-consent-buttons {
  display: flex;
  gap: 12px;
}

.cookie-consent-btn {
  flex: 1;
  padding: 10px 16px;
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  border-radius: var(--border-radius);
  cursor: pointer;
  border: none;
  font-family: var(--font-heading);
}

.cookie-consent-btn.accept {
  background-color: var(--primary);
  color: var(--text-light);
}

.cookie-consent-btn.decline {
  background-color: transparent;
  color: rgba(255,255,255,0.6);
  border: 1px solid rgba(255,255,255,0.2);
}

/* ==========================================================================
   16. RESPONSIVE BREAKPOINTS
   ========================================================================== */
@media (max-width: 1024px) {
  h1 { font-size: 3rem; }
  h2 { font-size: 2rem; }
  
  .grid-2 {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  
  .grid-3 {
    grid-template-columns: repeat(2, 1fr);
    gap: 28px;
  }
  
  .stat-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
  }
  
  .stat-item::after {
    display: none;
  }
  
  .nav-menu {
    display: flex;
    gap: 16px;
  }
  
  .hamburger-btn {
    display: block;
  }
  
  .step-guide-horizontal {
    flex-direction: column;
    gap: 16px;
  }
}

@media (max-width: 768px) {
  h1 { font-size: 2.25rem; }
  .hero-subtitle { font-size: 1.5rem; }
  
  .nav-menu {
    display: none !important;
  }
  
  .section-padding {
    padding: 60px 0;
  }
  
  .grid-3 {
    grid-template-columns: 1fr;
    gap: 24px;
  }
  
  .testimonials-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  
  .contact-form {
    grid-template-columns: 1fr;
  }
  
  .form-group-full {
    grid-column: span 1;
  }
  
  .footer-bottom {
    flex-direction: column;
    gap: 16px;
    text-align: center;
  }
  
  .portals-grid {
    gap: 30px;
  }
  
  .portal-logo img {
    height: 40px;
  }
  
  /* Compact mobile header */
  .logo img {
    height: 52px;
  }
  .header-container {
    height: 70px;
  }
  .header-container .btn {
    padding: 10px 18px;
    font-size: 14px;
  }
}

/* ==========================================================================
   /* [HOME PAGE] High-Fidelity Replication Styles
   ========================================================================== */

/* 1. Hero Pill subtitle */
.hero-subtitle-pill-wrapper {
  margin-top: 24px;
  margin-bottom: 24px;
  display: flex;
  justify-content: center;
}

.hero-subtitle-pill {
  background-color: var(--accent);
  color: var(--text-light);
  font-family: var(--font-heading);
  font-size: 1.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  padding: 12px 48px;
  border-radius: 50px;
  box-shadow: 0 8px 25px rgba(250, 70, 22, 0.4);
  display: inline-block;
  animation: pulse-glow 2s infinite ease-in-out;
}

@keyframes pulse-glow {
  0%, 100% { transform: scale(1); box-shadow: 0 8px 25px rgba(250, 70, 22, 0.4); }
  50% { transform: scale(1.02); box-shadow: 0 12px 35px rgba(250, 70, 22, 0.6); }
}

/* 2. Full Width Dual Panel Section */
.dual-panel-section {
  display: flex;
  width: 100%;
  overflow: hidden;
}

.dual-panel-section .panel {
  flex: 1;
  width: 50%;
  padding: 100px 60px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
}

.dual-panel-section .panel.flex-end {
  align-items: flex-end;
  text-align: right;
}

.dual-panel-section .panel.flex-start {
  align-items: flex-start;
  text-align: left;
}

.dual-panel-section .panel-content {
  width: 100%;
  max-width: 540px; /* Aligns content to imaginary container grid */
}

/* Panel variations */
.orange-panels .panel-left {
  background-color: var(--accent);
  color: var(--text-light);
}

.orange-panels .panel-right {
  background-color: #f75528; /* Slightly lighter branding orange for visual contrast */
  color: var(--text-light);
}

.cyan-panels .panel-left {
  background-color: #00bcd4; /* Slightly lighter branding cyan for contrast */
  color: var(--text-light);
}

.cyan-panels .panel-right {
  background-color: var(--primary);
  color: var(--text-light);
}

/* Image panels */
.dual-panel-section .panel-image {
  background-size: cover;
  background-position: center;
  min-height: 550px;
}

.image-text-panels .orange-bg {
  background-color: var(--accent);
  color: var(--text-light);
}

.image-text-panels .cyan-bg {
  background-color: var(--primary);
  color: var(--text-light);
}

/* Panel inner styling adjustments */
.dual-panel-section h2 {
  font-size: 2.5rem;
  line-height: 1.25;
  margin-bottom: 24px;
  color: var(--text-light);
}

.dual-panel-section p {
  font-size: 18px;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 20px;
}

.dual-panel-section p strong {
  color: var(--text-light);
}

.dual-panel-section p.lead-text {
  font-size: 20px;
}

.panel-arrow {
  margin: 32px 0 0;
  color: var(--text-light);
  opacity: 0.85;
}

.panel-arrow svg {
  width: 70px;
  height: 40px;
  fill: currentColor;
}

.panel-cta {
  margin-top: 40px;
}

.panel-cta .btn {
  padding: 16px 48px;
}

/* Bullet list inside panel */
.panel-content .feature-list .feature-item {
  margin-bottom: 24px;
}

.panel-content .feature-list .feature-text h4 {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 4px;
  color: var(--text-light);
}

.panel-content .feature-list .feature-text p {
  font-size: 16px;
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 0;
}

.panel-content .feature-list .feature-icon-wrapper {
  background-color: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: var(--text-light);
}

.panel-content .feature-list .feature-item:hover .feature-icon-wrapper {
  background-color: var(--text-light);
  color: var(--text-dark);
}

/* White Note Banner inside Cyan Panel */
.white-note-banner {
  background-color: var(--text-light);
  color: var(--text-dark);
  padding: 28px;
  border-radius: 8px;
  border-left: 6px solid var(--primary);
  margin-top: 40px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.white-note-banner p {
  color: var(--text-dark) !important;
  font-size: 16px !important;
  line-height: 1.6 !important;
  margin-bottom: 0 !important;
}

.white-note-banner strong {
  color: var(--primary) !important;
}

.growth-list-title {
  font-size: 22px;
  font-weight: 700;
  margin: 32px 0 20px;
  color: var(--text-light);
}

.growth-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
  list-style: disc;
  padding-left: 20px;
  margin-bottom: 24px;
}

.growth-list li {
  font-size: 16px;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.9);
}

.growth-list li strong {
  color: var(--text-light);
}

/* 3. Car showcase visual banner */
.car-showcase-section {
  width: 100%;
  overflow: hidden;
  background-color: var(--bg-white);
}

.car-showcase-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  width: 100%;
}

@media (max-width: 768px) {
  .car-showcase-grid {
    grid-template-columns: 1fr;
  }
  .car-showcase-img:nth-child(2),
  .car-showcase-img:nth-child(3) {
    display: none !important;
  }
}

.car-showcase-img {
  width: 100%;
  height: auto;
  display: block;
}

/* 4. Portal banner adjustments */
.portals-section {
  background-color: var(--bg-white);
  padding: 60px 0;
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

/* 5. Promo Video styled card */
.promo-video-section {
  background-color: var(--accent);
  color: var(--text-light);
  padding: 100px 0;
}

.video-player-card {
  max-width: 900px;
  margin: 0 auto;
  background-color: var(--primary);
  padding: 16px;
  border-radius: 12px;
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.4);
}

/* 6. Mission adjustments */
.mission-section {
  background-color: var(--bg-white);
}

.mission-text-col {
  padding-right: 40px;
}

.mission-text-col p {
  font-size: 18px;
  line-height: 1.8;
  margin-bottom: 20px;
  color: var(--text-muted);
}

.mission-text-col .quote-text {
  font-family: var(--font-heading);
  font-size: 22px;
  font-style: italic;
  font-weight: 600;
  color: var(--primary);
  margin: 28px 0;
  line-height: 1.5;
}

.mission-text-col .bold-dark-text {
  font-size: 20px;
  font-weight: 700;
  color: var(--text-dark);
}

.down-arrow-indicator {
  margin-top: 32px;
  width: 50px;
  height: 50px;
  color: var(--primary);
  animation: bounce-slow 2s infinite;
}

@keyframes bounce-slow {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(10px); }
}

.mission-img-col {
  display: flex;
  justify-content: center;
  align-items: center;
}

.mission-agent-img {
  width: 100%;
  border-radius: 16px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
  object-fit: cover;
  aspect-ratio: 4/3;
}

/* 7. Start today standalone */
.start-today-section {
  background-color: var(--bg-white);
  padding: 80px 0;
  border-top: 1px solid rgba(0, 0, 0, 0.05);
}

.start-today-section h2 {
  font-size: 2.75rem;
  margin-bottom: 20px;
}

.start-subtitle {
  font-size: 18px;
  color: var(--text-muted);
  max-width: 800px;
  margin: 0 auto 28px;
}

.start-bold-text {
  font-family: var(--font-heading);
  font-size: 24px;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 40px;
}

.start-cta .btn {
  padding: 16px 56px;
}

/* 8. Steps split visual grid */
.steps-section {
  width: 100%;
  overflow: hidden;
}

.grid-2-no-gap {
  display: grid;
  grid-template-columns: 1fr 1fr;
  width: 100%;
  align-items: stretch;
}

.steps-img-col {
  background-size: cover;
  background-position: center;
  min-height: 500px;
  width: 100%;
}

.steps-content-col {
  background-color: var(--primary);
  padding: 100px 80px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 36px;
  width: 100%;
}

.step-row {
  display: flex;
  align-items: center;
  gap: 24px;
}

.step-badge {
  width: 50px;
  height: 50px;
  min-width: 50px;
  background-color: var(--bg-white);
  color: var(--primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 24px;
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.1);
}

.step-desc {
  font-family: var(--font-heading);
  font-size: 20px;
  font-weight: 700;
  color: var(--text-light);
  line-height: 1.4;
}

.step-cta {
  margin-top: 16px;
}

.step-cta .btn {
  padding: 16px 48px;
  background-color: var(--accent);
  color: var(--text-light);
}

.step-cta .btn:hover {
  background-color: #e0390f;
}

/* 9. Testimonial layout & bubbles */
.testimonials-left-col {
  padding-right: 20px;
}

.testimonials-left-col .heart-icon-wrapper {
  width: 50px;
  height: 50px;
  color: var(--primary);
  margin-bottom: 20px;
}

.testimonials-title {
  font-size: 2.5rem;
  margin-bottom: 40px;
}

.testimonials-left-col .video-player-container {
  border: 4px solid var(--bg-white);
  box-shadow: 0 15px 45px rgba(0, 0, 0, 0.08);
}

.testimonials-right-col {
  display: flex;
  flex-direction: column;
  gap: 48px;
  padding-left: 20px;
}

.speech-bubble {
  color: var(--text-light);
  padding: 36px 40px;
  border-radius: 28px;
  position: relative;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
}

.speech-bubble.cyan-bubble {
  background-color: var(--primary);
}

.speech-bubble.orange-bubble {
  background-color: var(--accent);
}

.speech-bubble p {
  font-family: var(--font-heading);
  font-size: 20px;
  font-weight: 600;
  line-height: 1.5;
  margin-bottom: 24px;
  color: var(--text-light);
}

.speech-bubble .bubble-tail {
  position: absolute;
  bottom: -20px;
  left: 60px;
  width: 0;
  height: 0;
  border-style: solid;
}

.speech-bubble.cyan-bubble .bubble-tail {
  border-width: 20px 20px 0 0;
  border-color: var(--primary) transparent transparent transparent;
}

.speech-bubble.orange-bubble .bubble-tail {
  border-width: 20px 20px 0 0;
  border-color: var(--accent) transparent transparent transparent;
}

.bubble-author {
  font-family: var(--font-body);
  font-size: 16px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  opacity: 0.95;
}

/* 10. Team Banner section (Parallax Scroll Effect) */
.team-banner-section {
  width: 100%;
  height: 400px; /* fixed viewport height for parallax scroll */
  background-image: url('../assets/images/pexels-photo-6931376-1920w.jpeg');
  background-attachment: fixed;
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
}

/* 11. Cyan Footer updates */
.cyan-footer {
  background-color: var(--primary) !important;
  color: var(--text-light) !important;
  padding: 80px 0 0;
}

.footer-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
  padding-bottom: 60px;
}

.footer-contacts {
  margin: 32px 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-contacts p {
  font-size: 20px;
  color: var(--text-light);
}

.footer-contacts p a {
  color: var(--text-light) !important;
  font-weight: 700;
  border-bottom: 2px solid rgba(255, 255, 255, 0.3);
}

.footer-contacts p a:hover {
  border-bottom-color: var(--text-light);
}

.footer-cta {
  margin-bottom: 40px;
}

.footer-cta .btn {
  padding: 16px 60px;
  background-color: var(--accent) !important;
  color: var(--text-light) !important;
  box-shadow: 0 8px 25px rgba(250, 70, 22, 0.3) !important;
}

.footer-cta .btn:hover {
  background-color: #e0390f !important;
}

.footer-ppra p {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.8);
  max-width: 800px;
  margin: 0 auto;
}

.footer-bottom-strip {
  background-color: var(--text-dark);
  padding: 24px 0;
  color: rgba(255, 255, 255, 0.5);
  font-size: 14px;
}

.flex-between {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

/* Media Query overrides for full-width panels */
@media (max-width: 991px) {
  .dual-panel-section {
    flex-direction: column;
  }
  
  .dual-panel-section .panel {
    width: 100%;
    padding: 60px 24px;
  }
  
  .dual-panel-section .panel.flex-end {
    align-items: flex-start;
    text-align: left;
  }
  
  .dual-panel-section .panel-image {
    min-height: 350px;
  }
  
  .grid-2-no-gap {
    grid-template-columns: 1fr;
  }
  
  .steps-img-col {
    min-height: 350px;
  }
  
  .steps-content-col {
    padding: 60px 24px;
  }
  
  .testimonials-right-col {
    padding-left: 0;
    margin-top: 40px;
  }
  
  .testimonials-left-col {
    padding-right: 0;
  }
  
  .flex-between {
    flex-direction: column;
    gap: 12px;
    text-align: center;
  }
}

/* ==========================================================================
   12. PRETORIA BOOKING PAGE HIGH FIDELITY STYLING
   ========================================================================== */
.inner-hero.pretoria-hero {
  min-height: 55vh;
  background-image: linear-gradient(rgba(0, 180, 216, 0.85), rgba(0, 180, 216, 0.85)), url('../assets/images/photo-1526948128573-703ee1aeb6fa-2880w.jpg');
  background-size: cover;
  background-position: center center;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 160px 0 100px;
  position: relative;
}

.pretoria-hero-title {
  font-family: var(--font-heading);
  font-size: 3.5rem;
  font-weight: 700;
  color: #ffffff !important;
  text-shadow: 0 4px 15px rgba(0,0,0,0.15);
  margin-bottom: 24px;
}

.hero-down-arrow {
  display: flex;
  justify-content: center;
  margin-top: 32px;
  animation: bounce 2s infinite;
}

.hero-down-arrow svg {
  width: 60px;
  height: 60px;
}

@keyframes bounce {
  0%, 20%, 50%, 80%, 100% {
    transform: translateY(0);
  }
  40% {
    transform: translateY(-10px);
  }
  60% {
    transform: translateY(-5px);
  }
}

.booking-section.pretoria-booking {
  background-image: linear-gradient(rgba(255, 255, 255, 0.88), rgba(255, 255, 255, 0.88)), url('../assets/images/photo-1526948128573-703ee1aeb6fa-2880w.jpg');
  background-size: cover;
  background-position: center;
  padding: 80px 0 100px;
  text-align: center;
}

.pretoria-booking-card {
  max-width: 600px;
  margin: 0 auto;
  background-color: transparent;
  padding: 24px 0;
}

.pretoria-booking-card .booking-icon {
  color: var(--text-dark);
  font-size: 56px;
  margin-bottom: 24px;
  display: inline-block;
}

.pretoria-booking-card h2 {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--accent);
  margin-bottom: 16px;
  font-family: var(--font-heading);
}

.pretoria-booking-card p.lead {
  font-size: 18px;
  color: var(--text-muted);
  margin-bottom: 40px;
  font-family: var(--font-body);
}

.pretoria-booking-card h3.option-title {
  font-size: 20px;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 12px;
  font-family: var(--font-heading);
}

.pretoria-booking-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background-color: var(--accent);
  color: #ffffff !important;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 16px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  padding: 18px 48px;
  border-radius: 50px;
  border: none;
  box-shadow: 0 4px 15px rgba(250, 70, 22, 0.3);
  transition: var(--transition-smooth);
  cursor: pointer;
  width: 100%;
  max-width: 320px;
  margin-bottom: 32px;
}

.pretoria-booking-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(250, 70, 22, 0.45);
  background-color: #e0390f;
}

/* Pretoria Map Section */
.pretoria-map-section {
  background-color: var(--accent);
  padding: 60px 0 70px;
}

.pretoria-map-section .container {
  max-width: 900px;
}

.pretoria-map-box {
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 15px 40px rgba(0,0,0,0.2);
  border: 6px solid rgba(255,255,255,0.35);
  height: 420px;
  background-color: #eaeaea;
}

/* Pretoria Footer Modifications */
.footer.pretoria-footer {
  background-color: var(--primary) !important;
  color: #ffffff;
  padding: 60px 0 0;
}

.footer.pretoria-footer .footer-logo img {
  height: 90px;
}

.footer.pretoria-footer .footer-contacts p {
  color: #ffffff;
  font-size: 18px;
  margin-bottom: 12px;
}

.footer.pretoria-footer .footer-contacts a {
  color: #ffffff;
  font-weight: 600;
}

.footer.pretoria-footer .footer-cta {
  margin: 32px 0;
}

.footer.pretoria-footer .btn-outline-white {
  border-radius: 50px;
  padding: 16px 48px;
  border: 2px solid #ffffff;
  background-color: transparent;
  color: #ffffff;
  font-weight: 700;
}

.footer.pretoria-footer .btn-outline-white:hover {
  background-color: #ffffff;
  color: var(--primary);
}

.footer.pretoria-footer .footer-ppra p {
  color: rgba(255,255,255,0.8);
  font-size: 14px;
}

.footer.pretoria-footer .footer-ppra a {
  color: #ffffff;
  text-decoration: underline;
}

.footer.pretoria-footer .footer-bottom-strip {
  background-color: #009AB8 !important;
  color: rgba(255,255,255,0.85);
  padding: 20px 0;
  font-size: 14px;
  border-top: 1px solid rgba(255,255,255,0.15);
}

.footer.pretoria-footer .footer-bottom-strip a {
  color: rgba(255,255,255,0.9);
  text-decoration: underline;
  text-underline-offset: 2px;
}

.footer.pretoria-footer .footer-bottom-strip a:hover {
  color: #ffffff;
}

@media (max-width: 768px) {
  .pretoria-hero-title {
    font-size: 2.25rem !important;
  }
  .pretoria-booking-card h2 {
    font-size: 1.8rem !important;
  }
  .pretoria-booking-btn {
    padding: 16px 36px;
    font-size: 15px;
  }
}


