/* 
   RPPROPERTY CR LTD - Premium Corporate Real Estate Stylesheet
   Designed for luxury, elegance, and high-performance.
   Inspired by: Knight Frank, Savills, JLL, CBRE
*/

/* -----------------------------------------
   Google Fonts
----------------------------------------- */
@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&display=swap');

/* -----------------------------------------
   CSS Variables
----------------------------------------- */
:root {
  /* Colors */
  --primary: #0F172A;        /* Slate 900 - Deep, elegant primary */
  --primary-light: #1E293B;  /* Slate 800 - Secondary darks */
  --secondary: #D4AF37;      /* Metallic Gold - Luxury, premium accent */
  --secondary-hover: #BFA02C;/* Darker Gold for hover states */
  --secondary-light: #F7E7B4;/* Soft light gold accent */
  --accent: #2563EB;         /* Royal Blue - Trust, corporate stability */
  --accent-light: #EFF6FF;   /* Soft blue background tint */
  --background: #F8FAFC;     /* Slate 50 - Very clean canvas */
  --surface: #FFFFFF;        /* Pure white for containers */
  --text: #111827;           /* Gray 900 - Main reading text */
  --text-muted: #64748B;     /* Slate 500 - Secondary text */
  --text-light: #94A3B8;     /* Slate 400 - Muted footer/meta text */
  --border: #E2E8F0;         /* Slate 200 - Clean, subtle borders */
  --border-light: #F1F5F9;   /* Slate 100 - Ultra soft borders */
  
  /* Fonts */
  --font-sans: 'Poppins', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  
  /* Layout Options */
  --header-height: 80px;
  --header-scroll-height: 70px;
  --max-width: 1280px;
  
  /* Radii & Shadows */
  --radius-xs: 4px;
  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 20px;
  --radius-full: 9999px;
  
  --shadow-sm: 0 1px 3px rgba(15, 23, 42, 0.05);
  --shadow-md: 0 4px 6px -1px rgba(15, 23, 42, 0.05), 0 2px 4px -1px rgba(15, 23, 42, 0.03);
  --shadow-lg: 0 10px 15px -3px rgba(15, 23, 42, 0.04), 0 4px 6px -2px rgba(15, 23, 42, 0.02);
  --shadow-xl: 0 20px 25px -5px rgba(15, 23, 42, 0.06), 0 10px 10px -5px rgba(15, 23, 42, 0.03);
  --shadow-gold: 0 10px 20px -3px rgba(212, 175, 55, 0.12);
  --shadow-inner: inset 0 2px 4px 0 rgba(0, 0, 0, 0.06);
  
  /* Transitions */
  --transition-fast: all 0.15s cubic-bezier(0.16, 1, 0.3, 1);
  --transition-normal: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  --transition-slow: all 0.6s cubic-bezier(0.16, 1, 0.3, 1);
  --transition-bounce: all 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
}

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--font-sans);
  background-color: var(--background);
  color: var(--text);
  line-height: 1.6;
  font-weight: 400;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

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

ul, ol {
  list-style: none;
}

a {
  text-decoration: none;
  color: inherit;
  transition: var(--transition-normal);
}

button, input, textarea, select {
  font-family: inherit;
  font-size: inherit;
  color: inherit;
  background: none;
  border: none;
  outline: none;
}

button {
  cursor: pointer;
}

/* -----------------------------------------
   Typography System
----------------------------------------- */
h1, h2, h3, h4, h5, h6 {
  font-weight: 600;
  line-height: 1.25;
  color: var(--primary);
  letter-spacing: -0.02em;
}

h1 { font-size: 2.75rem; }
h2 { font-size: 2.25rem; }
h3 { font-size: 1.5rem; }
h4 { font-size: 1.25rem; }

p {
  color: var(--text-muted);
  margin-bottom: 1rem;
}

.text-gold {
  color: var(--secondary);
}

.bg-dark {
  background-color: var(--primary) !important;
  color: var(--surface) !important;
}

/* -----------------------------------------
   Utility Classes
----------------------------------------- */
.container {
  width: 100%;
  max-width: var(--max-width);
  margin-left: auto;
  margin-right: auto;
  padding-left: 1.5rem;
  padding-right: 1.5rem;
}

.section-padding {
  padding-top: 6.5rem;
  padding-bottom: 6.5rem;
}

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

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

.gap-1 { gap: 0.5rem; }
.gap-2 { gap: 1rem; }
.gap-3 { gap: 1.5rem; }
.gap-4 { gap: 2rem; }
.gap-6 { gap: 3rem; }

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

/* -----------------------------------------
   Button System
----------------------------------------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 500;
  padding: 0.85rem 1.85rem;
  border-radius: var(--radius-sm);
  transition: var(--transition-normal);
  font-size: 0.95rem;
  letter-spacing: 0.01em;
  gap: 0.5rem;
}

.btn-primary {
  background-color: var(--secondary);
  color: var(--primary);
  border: 1px solid var(--secondary);
}

.btn-primary:hover {
  background-color: var(--secondary-hover);
  border-color: var(--secondary-hover);
  box-shadow: var(--shadow-gold);
  transform: translateY(-2px);
}

.btn-secondary {
  background-color: transparent;
  color: var(--surface);
  border: 1px solid rgba(255, 255, 255, 0.3);
}

.btn-secondary:hover {
  background-color: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.6);
  transform: translateY(-2px);
}

.btn-outline {
  background-color: transparent;
  color: var(--primary);
  border: 1px solid var(--primary);
}

.btn-outline:hover {
  background-color: var(--primary);
  color: var(--surface);
  transform: translateY(-2px);
}

.btn-accent {
  background-color: var(--primary);
  color: var(--surface);
  border: 1px solid var(--primary);
}

.btn-accent:hover {
  background-color: var(--primary-light);
  border-color: var(--primary-light);
  transform: translateY(-2px);
}

.btn-link {
  padding: 0;
  background: none;
  color: var(--secondary);
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
}

.btn-link::after {
  content: '→';
  transition: var(--transition-normal);
}

.btn-link:hover::after {
  transform: translateX(4px);
}

/* -----------------------------------------
   Header & Navigation
----------------------------------------- */
header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: var(--header-height);
  z-index: 1000;
  transition: var(--transition-normal);
  display: flex;
  align-items: center;
  background-color: transparent;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

header.scrolled {
  height: var(--header-scroll-height);
  background-color: rgba(15, 23, 42, 0.95);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: var(--shadow-lg);
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

header.scrolled.nav-light-bg {
  background-color: rgba(255, 255, 255, 0.95);
  border-bottom: 1px solid var(--border);
}

header.nav-light-bg {
  border-bottom: 1px solid var(--border);
}

.nav-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
}

.logo {
  font-size: 1.25rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--surface);
}

header.nav-light-bg .logo {
  color: var(--primary);
}

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

.nav-menu {
  display: flex;
  align-items: center;
  gap: 2rem;
  margin-left: auto;
}

.nav-link {
  font-size: 0.9rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.8);
  letter-spacing: 0.02em;
  position: relative;
  padding: 0.25rem 0;
}

header.nav-light-bg .nav-link {
  color: var(--primary-light);
}

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

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

header.nav-light-bg .nav-link:hover {
  color: var(--secondary);
}

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

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

header.nav-light-bg .nav-link.active {
  color: var(--secondary);
}

.nav-cta {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  margin-left: 2rem;
}

/* Mobile Menu Toggle */
.mobile-nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 24px;
  height: 18px;
  background: transparent;
  border: none;
  cursor: pointer;
  z-index: 1100;
}

.mobile-nav-toggle span {
  width: 100%;
  height: 2px;
  background-color: var(--surface);
  transition: var(--transition-normal);
  border-radius: 2px;
}

header.nav-light-bg .mobile-nav-toggle span {
  background-color: var(--primary);
}

.mobile-nav-toggle.open span:nth-child(1) {
  transform: translateY(8px) rotate(45deg);
}

.mobile-nav-toggle.open span:nth-child(2) {
  opacity: 0;
}

.mobile-nav-toggle.open span:nth-child(3) {
  transform: translateY(-8px) rotate(-45deg);
}

/* -----------------------------------------
   Hero Sections
----------------------------------------- */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: flex-start;
  background-color: var(--primary);
  color: var(--surface);
  overflow: hidden;
  padding-top: calc(var(--header-height) + 30px);
  padding-bottom: 30px;
}

.hero-slider-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}

.hero-slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transform: scale(1.05);
  transition: opacity 1.5s ease-in-out, transform 1.5s ease-in-out;
  z-index: 1;
}

.hero-slide.active {
  opacity: 0.4; /* Soft dark opacity */
  transform: scale(1);
  z-index: 2;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(15, 23, 42, 0.9) 0%, rgba(15, 23, 42, 0.4) 60%, rgba(15, 23, 42, 0.7) 100%);
  z-index: 3;
}

.hero .container {
  position: relative;
  z-index: 4;
}

.hero-content {
  max-width: 700px;
}

.hero-label {
  display: inline-block;
  font-size: 0.85rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--secondary);
  margin-bottom: 1.5rem;
  transform: translateY(20px);
  opacity: 0;
  animation: slideUpFade 0.8s 0.2s forwards cubic-bezier(0.16, 1, 0.3, 1);
}

.hero-title {
  font-size: 3.5rem;
  line-height: 1.15;
  font-weight: 700;
  color: var(--surface);
  margin-bottom: 1.5rem;
  transform: translateY(30px);
  opacity: 0;
  animation: slideUpFade 0.8s 0.4s forwards cubic-bezier(0.16, 1, 0.3, 1);
}

.hero-subtitle {
  font-size: 1.15rem;
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 2.5rem;
  font-weight: 300;
  transform: translateY(40px);
  opacity: 0;
  animation: slideUpFade 0.8s 0.6s forwards cubic-bezier(0.16, 1, 0.3, 1);
}

.hero-actions {
  display: flex;
  gap: 1rem;
  transform: translateY(50px);
  opacity: 0;
  animation: slideUpFade 0.8s 0.8s forwards cubic-bezier(0.16, 1, 0.3, 1);
}

/* Page Hero Banner */
.page-hero {
  position: relative;
  padding-top: calc(var(--header-height) + 30px);
  padding-bottom: 4rem;
  background-color: var(--primary);
  background-image: linear-gradient(180deg, rgba(15, 23, 42, 0.95) 0%, rgba(15, 23, 42, 0.85) 100%), url('https://images.unsplash.com/photo-1486406146926-c627a92ad1ab?auto=format&fit=crop&w=1920&q=80');
  background-size: cover;
  background-position: center;
  color: var(--surface);
  text-align: center;
}

.page-hero-title {
  font-size: 3rem;
  color: var(--surface);
  margin-bottom: 1rem;
}

.page-hero-subtitle {
  font-size: 1.1rem;
  color: rgba(255, 255, 255, 0.7);
  max-width: 600px;
  margin: 0 auto;
  font-weight: 300;
}

/* -----------------------------------------
   Sections & Header Components
----------------------------------------- */
.section-header {
  max-width: 650px;
  margin-bottom: 4.5rem;
}

.section-label {
  display: inline-block;
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--secondary);
  margin-bottom: 0.75rem;
}

.section-title {
  margin-bottom: 1rem;
}

.section-desc {
  font-size: 1.05rem;
  color: var(--text-muted);
}

/* -----------------------------------------
   Feature & Service Cards
----------------------------------------- */
.card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 2.5rem;
}

.premium-card {
  background-color: var(--surface);
  border-radius: var(--radius-md);
  border: 1px solid var(--border);
  padding: 2.5rem;
  transition: var(--transition-normal);
  display: flex;
  flex-direction: column;
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}

.premium-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background-color: var(--secondary);
  transform: scaleX(0);
  transform-origin: left;
  transition: var(--transition-normal);
}

.premium-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-xl);
  border-color: transparent;
}

.premium-card:hover::before {
  transform: scaleX(1);
}

.card-icon-box {
  width: 56px;
  height: 56px;
  background-color: var(--accent-light);
  color: var(--accent);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 2rem;
  transition: var(--transition-normal);
}

.premium-card:hover .card-icon-box {
  background-color: var(--secondary);
  color: var(--primary);
  transform: rotateY(180deg);
}

.card-title {
  font-size: 1.35rem;
  margin-bottom: 1rem;
  font-weight: 600;
}

.card-text {
  font-size: 0.95rem;
  color: var(--text-muted);
  flex-grow: 1;
  margin-bottom: 2rem;
}

.card-list {
  margin-bottom: 2rem;
}

.card-list li {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.9rem;
  color: var(--text-muted);
  margin-bottom: 0.5rem;
}

.card-list li svg {
  color: var(--secondary);
}

/* Glassmorphism Cards */
.glass-card {
  background: rgba(255, 255, 255, 0.03);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-md);
  padding: 2rem;
  transition: var(--transition-normal);
}

.glass-card:hover {
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(212, 175, 55, 0.3);
  transform: translateY(-5px);
}

/* -----------------------------------------
   Stats Section
----------------------------------------- */
.stats-section {
  background-color: var(--primary);
  color: var(--surface);
  position: relative;
  overflow: hidden;
  padding: 6rem 0;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  position: relative;
  z-index: 2;
}

.stat-item {
  text-align: center;
}

.stat-number {
  font-size: 3.5rem;
  font-weight: 700;
  color: var(--secondary);
  line-height: 1;
  margin-bottom: 0.5rem;
  font-variant-numeric: tabular-nums;
}

.stat-label {
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.7);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-weight: 500;
}

/* -----------------------------------------
   Split Content Sections
----------------------------------------- */
.split-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}

.split-image-wrapper {
  position: relative;
}

.split-image-wrapper img {
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-xl);
  width: 100%;
  object-fit: cover;
}

.split-badge {
  position: absolute;
  bottom: -2rem;
  right: -2rem;
  background-color: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 1.5rem 2rem;
  box-shadow: var(--shadow-xl);
  display: flex;
  align-items: center;
  gap: 1rem;
}

.split-badge-icon {
  width: 48px;
  height: 48px;
  background-color: var(--accent-light);
  color: var(--accent);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
}

.split-badge-num {
  font-size: 1.75rem;
  font-weight: 700;
  line-height: 1;
  color: var(--primary);
}

.split-badge-txt {
  font-size: 0.85rem;
  color: var(--text-muted);
}

.check-list {
  margin: 2rem 0;
}

.check-list-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  margin-bottom: 1.25rem;
}

.check-icon {
  flex-shrink: 0;
  width: 24px;
  height: 24px;
  background-color: var(--accent-light);
  color: var(--accent);
  border-radius: var(--radius-full);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
  margin-top: 0.15rem;
}

.check-text h4 {
  font-size: 1.1rem;
  margin-bottom: 0.25rem;
}

.check-text p {
  margin-bottom: 0;
  font-size: 0.95rem;
}

/* -----------------------------------------
   Why Choose Us Section
----------------------------------------- */
.why-choose-us {
  background-color: var(--primary-light);
  color: var(--surface);
}

.why-choose-us h2, .why-choose-us h3, .why-choose-us h4 {
  color: var(--surface);
}

.why-choose-us .section-desc {
  color: rgba(255, 255, 255, 0.7);
}

.benefits-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2.5rem;
}

.benefit-card {
  background-color: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: var(--radius-md);
  padding: 2.5rem;
  transition: var(--transition-normal);
}

.benefit-card:hover {
  background-color: rgba(255, 255, 255, 0.04);
  border-color: rgba(212, 175, 55, 0.2);
  transform: translateY(-5px);
}

.benefit-icon {
  color: var(--secondary);
  margin-bottom: 1.5rem;
}

.benefit-title {
  font-size: 1.25rem;
  margin-bottom: 1rem;
}

.benefit-desc {
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.95rem;
  margin-bottom: 0;
}

/* -----------------------------------------
   CTA Banner Section
----------------------------------------- */
.cta-banner {
  position: relative;
  background-color: var(--primary);
  background-image: linear-gradient(135deg, rgba(15, 23, 42, 0.95) 0%, rgba(37, 99, 235, 0.15) 100%), url('https://images.unsplash.com/photo-1582407947304-fd86f028f716?auto=format&fit=crop&w=1920&q=80');
  background-size: cover;
  background-position: center;
  color: var(--surface);
  text-align: center;
  border-radius: var(--radius-lg);
  padding: 5rem 2rem;
  box-shadow: var(--shadow-xl);
  overflow: hidden;
}

.cta-banner-content {
  max-width: 650px;
  margin: 0 auto;
}

.cta-banner h2 {
  color: var(--surface);
  font-size: 2.5rem;
  margin-bottom: 1.5rem;
}

.cta-banner p {
  color: rgba(255, 255, 255, 0.8);
  font-size: 1.1rem;
  margin-bottom: 2.5rem;
  font-weight: 300;
}

/* -----------------------------------------
   Contact Section & Forms
----------------------------------------- */
.contact-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 4rem;
}

.contact-card-box {
  background-color: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 3rem;
  box-shadow: var(--shadow-sm);
}

.contact-title {
  font-size: 1.75rem;
  margin-bottom: 1rem;
}

.contact-subtitle {
  font-size: 1rem;
  color: var(--text-muted);
  margin-bottom: 2.5rem;
}

.form-group-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  margin-bottom: 1.5rem;
}

.form-group {
  margin-bottom: 1.5rem;
  position: relative;
}

.form-label {
  display: block;
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--primary);
  margin-bottom: 0.5rem;
}

.form-control {
  width: 100%;
  padding: 0.85rem 1rem;
  background-color: var(--background);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  color: var(--text);
  font-size: 0.95rem;
  transition: var(--transition-normal);
}

.form-control:focus {
  border-color: var(--accent);
  background-color: var(--surface);
  box-shadow: 0 0 0 4px rgba(37, 99, 235, 0.1);
}

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

.contact-info-panel {
  display: flex;
  flex-direction: column;
  gap: 2.5rem;
}

.info-item {
  display: flex;
  gap: 1.25rem;
}

.info-icon {
  width: 48px;
  height: 48px;
  background-color: var(--accent-light);
  color: var(--accent);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.info-text h4 {
  font-size: 1.1rem;
  margin-bottom: 0.35rem;
}

.info-text p {
  margin-bottom: 0;
  font-size: 0.95rem;
}

.business-hours {
  background-color: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 2rem;
  box-shadow: var(--shadow-sm);
}

.business-hours h3 {
  margin-bottom: 1.5rem;
  font-size: 1.25rem;
}

.hours-row {
  display: flex;
  justify-content: space-between;
  padding: 0.75rem 0;
  border-bottom: 1px solid var(--border-light);
  font-size: 0.95rem;
}

.hours-row:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.hours-day {
  font-weight: 500;
  color: var(--primary);
}

.hours-time {
  color: var(--text-muted);
}

.map-placeholder {
  height: 400px;
  background-color: var(--border-light);
  border-radius: var(--radius-md);
  overflow: hidden;
  border: 1px solid var(--border);
  position: relative;
  box-shadow: var(--shadow-sm);
}

.map-placeholder iframe {
  width: 100%;
  height: 100%;
  border: none;
}

/* Form success message */
.form-response-alert {
  padding: 1rem 1.25rem;
  border-radius: var(--radius-sm);
  margin-bottom: 1.5rem;
  font-size: 0.95rem;
  display: none;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  line-height: 1.5;
  transition: all 0.3s ease;
}

.form-response-alert.success {
  background-color: #DEF7EC;
  color: #03543F;
  border: 1px solid #BCF0DA;
  display: flex;
}

.form-response-alert .alert-content strong {
  color: #03543F;
  font-weight: 600;
}

.form-response-alert .alert-dismiss {
  background: transparent;
  border: none;
  color: #03543F;
  font-size: 1.5rem;
  cursor: pointer;
  padding: 0 0.25rem;
  line-height: 1;
  opacity: 0.7;
  transition: opacity 0.2s ease;
}

.form-response-alert .alert-dismiss:hover {
  opacity: 1;
}

/* -----------------------------------------
   Legal & Corporate Pages
----------------------------------------- */
.legal-layout {
  display: grid;
  grid-template-columns: 3fr 1fr;
  gap: 5rem;
}

.legal-content h2 {
  font-size: 1.75rem;
  margin: 2.5rem 0 1rem 0;
}

.legal-content h2:first-of-type {
  margin-top: 0;
}

.legal-content h3 {
  font-size: 1.25rem;
  margin: 1.5rem 0 0.75rem 0;
}

.legal-content p, .legal-content li {
  font-size: 0.98rem;
  color: var(--text-muted);
  margin-bottom: 1.25rem;
}

.legal-content ul {
  list-style-type: disc;
  padding-left: 1.5rem;
  margin-bottom: 1.5rem;
}

.legal-sidebar-box {
  background-color: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 2rem;
  box-shadow: var(--shadow-sm);
  position: sticky;
  top: 100px;
}

.legal-sidebar-box h3 {
  font-size: 1.2rem;
  margin-bottom: 1.5rem;
  padding-bottom: 0.75rem;
  border-bottom: 1px solid var(--border);
}

.corporate-info-list {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.corp-info-item {
  font-size: 0.9rem;
}

.corp-info-label {
  font-weight: 600;
  color: var(--primary);
  margin-bottom: 0.25rem;
}

.corp-info-val {
  color: var(--text-muted);
}

/* -----------------------------------------
   Footer
----------------------------------------- */
footer {
  background-color: var(--primary);
  color: var(--surface);
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  padding-top: 5rem;
  padding-bottom: 2.5rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr 0.8fr 1.2fr;
  gap: 4rem;
  margin-bottom: 4rem;
}

.footer-logo {
  font-size: 1.35rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  color: var(--surface);
  margin-bottom: 1.5rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.footer-logo span {
  color: var(--secondary);
}

.footer-desc {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.6);
  margin-bottom: 1.5rem;
  line-height: 1.6;
}

.footer-registration {
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.45);
  line-height: 1.5;
}

.footer-title {
  font-size: 1rem;
  font-weight: 600;
  color: var(--surface);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 1.75rem;
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
}

.footer-link {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.6);
  transition: var(--transition-normal);
}

.footer-link:hover {
  color: var(--secondary);
  transform: translateX(4px);
}

.footer-contact-info {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.6);
}

.footer-contact-item svg {
  color: var(--secondary);
  flex-shrink: 0;
  margin-top: 0.2rem;
}

.footer-contact-item svg {
  color: var(--secondary);
  flex-shrink: 0;
  margin-top: 0.2rem;
}

.footer-social-links {
  display: flex;
  gap: 1rem;
  margin-top: 1.5rem;
}

.social-icon-btn {
  width: 36px;
  height: 36px;
  border-radius: var(--radius-sm);
  background-color: rgba(255, 255, 255, 0.05);
  color: var(--surface);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition-normal);
}

.social-icon-btn:hover {
  background-color: var(--secondary);
  color: var(--primary);
  transform: translateY(-3px);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  padding-top: 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.45);
}

.footer-bottom-links {
  display: flex;
  gap: 1.5rem;
}

.footer-bottom-link {
  color: rgba(255, 255, 255, 0.45);
  transition: var(--transition-normal);
}

.footer-bottom-link:hover {
  color: var(--secondary);
}

/* -----------------------------------------
   Animation Classes
----------------------------------------- */
@keyframes slideUpFade {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1), transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal.active {
  opacity: 1;
  transform: translateY(0);
}

.fade-in {
  opacity: 0;
  transition: opacity 1.2s cubic-bezier(0.16, 1, 0.3, 1);
}

.fade-in.active {
  opacity: 1;
}

/* Delay modifiers */
.delay-1 { transition-delay: 0.15s; }
.delay-2 { transition-delay: 0.3s; }
.delay-3 { transition-delay: 0.45s; }
.delay-4 { transition-delay: 0.6s; }

/* -----------------------------------------
   Mobile Menu Overlay
----------------------------------------- */
.mobile-nav-overlay {
  display: none;
}

/* -----------------------------------------
   About Page Specific Styles
----------------------------------------- */
.about-section-header {
  max-width: 600px;
  margin-bottom: 5rem;
}

.about-mission-grid {
  grid-template-columns: 1fr 1fr;
  margin-bottom: 5rem;
}

.about-mission-vision-card {
  background-color: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.about-mission-vision-title {
  font-size: 1.5rem;
}

.about-mission-vision-desc {
  font-size: 1.05rem;
  line-height: 1.7;
}

.about-values-header {
  margin-bottom: 3.5rem;
}

.about-values-title {
  font-size: 1.75rem;
  color: var(--surface);
}

.about-split-section {
  grid-template-columns: 0.9fr 1.1fr;
}

.about-registry-card {
  background-color: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 3rem;
  box-shadow: var(--shadow-sm);
}

.about-registry-card-title {
  margin-bottom: 1.5rem;
  border-bottom: 1px solid var(--border);
  padding-bottom: 1rem;
  font-size: 1.35rem;
}

.about-why-content {
  padding-left: 2rem;
}

/* -----------------------------------------
   Responsive Breakpoints
----------------------------------------- */

/* Laptop / Desktop Small (1024px) */
@media (max-width: 1024px) {
  h1 { font-size: 2.5rem; }
  h2 { font-size: 2rem; }
  
  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 3rem;
  }
  
  .split-section {
    gap: 3rem;
  }
}

/* Tablet (768px) */
@media (max-width: 768px) {
  :root {
    --header-height: 70px;
  }
  
  /* Mobile Typography Sizes & Readability Reset */
  h1, .hero-title, .page-hero-title {
    font-size: 34px !important;
    line-height: 1.25 !important;
  }
  h2, .section-title {
    font-size: 28px !important;
    line-height: 1.3 !important;
  }
  h3, .card-title, .benefit-title {
    font-size: 22px !important;
    line-height: 1.35 !important;
  }
  body, p, .hero-subtitle, .page-hero-subtitle, .card-text, .benefit-desc, .check-text p {
    font-size: 16px !important;
    line-height: 1.6 !important;
  }
  
  .section-padding {
    padding-top: 4.5rem;
    padding-bottom: 4.5rem;
  }
  
  /* ==========================================================================
     MOBILE HEADER & NAVIGATION SYSTEM (320px - 768px)
     ========================================================================== */
  :root {
    --header-height: 70px;
    --header-scroll-height: 70px;
  }

  header, 
  header.scrolled {
    height: 70px;
    background-color: rgba(15, 23, 42, 0.95);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    box-shadow: var(--shadow-lg);
    display: flex;
    align-items: center;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
  }

  .nav-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    height: 100%;
    padding: 0 1.5rem;
  }

  .logo {
    display: flex;
    align-items: center;
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--surface);
    flex-shrink: 0;
    z-index: 1100;
  }

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

  .nav-cta {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    margin-left: 0;
    padding: 0;
    flex-shrink: 0;
    z-index: 1100;
  }

  .nav-cta .btn {
    display: none !important;
  }

  .mobile-nav-toggle {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 6px;
    width: 44px;
    height: 44px;
    padding: 0;
    background: transparent;
    border: none;
    cursor: pointer;
    z-index: 1100;
    flex-shrink: 0;
    overflow: visible;
  }

  .mobile-nav-toggle span {
    display: block;
    width: 24px;
    height: 2px;
    background-color: var(--surface);
    border-radius: 2px;
    transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    flex-shrink: 0;
    transform-origin: center;
  }

  /* Hamburger Active Animation */
  .mobile-nav-toggle.open span:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
  }

  .mobile-nav-toggle.open span:nth-child(2) {
    opacity: 0;
  }

  .mobile-nav-toggle.open span:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
  }

  /* Full Screen Mobile Overlay */
  .mobile-nav-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background-color: var(--primary);
    z-index: 1050;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    padding: 90px 2rem 2rem 2rem;
    box-sizing: border-box;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity 0.3s cubic-bezier(0.16, 1, 0.3, 1), visibility 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    overflow-y: auto;
  }

  .mobile-nav-overlay.open {
    opacity: 0.98;
    visibility: visible;
    pointer-events: auto;
  }

  .mobile-menu-links {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2rem;
    margin-bottom: 2.5rem;
    width: 100%;
  }

  .mobile-menu-link {
    font-size: 1.5rem;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.8);
    letter-spacing: 0.05em;
    text-decoration: none;
    padding: 0.75rem 2rem;
    display: block;
    width: 100%;
    text-align: center;
    transition: color 0.2s ease;
  }

  .mobile-menu-link:hover,
  .mobile-menu-link.active {
    color: var(--secondary);
  }

  /* Body lock when menu is active */
  body.menu-open {
    overflow: hidden !important;
    position: fixed !important;
    width: 100% !important;
    height: 100% !important;
  }
  
  /* Hero section adjustments */
  .hero {
    min-height: 70vh;
    align-items: center;
    padding-top: calc(var(--header-height) + 40px);
    padding-bottom: 3rem;
  }

  .hero-content {
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .page-hero {
    text-align: center;
    padding-bottom: 3rem;
  }

  /* Grid Conversions & Sidebar Layout Flow */
  .split-section {
    grid-template-columns: 1fr;
    gap: 4rem;
  }
  
  .split-image-wrapper {
    order: -1;
    max-width: 500px;
    margin: 0 auto;
  }
  
  .split-badge {
    right: 0;
    bottom: -1.5rem;
    padding: 1rem 1.5rem;
  }
  
  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 2.5rem;
  }
  
  .benefits-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
  
  .legal-layout {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
  
  .legal-sidebar-box {
    position: static;
    width: 100% !important;
    padding: 2rem 1.5rem !important;
  }

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

  /* Cards Styling Uniformity */
  .premium-card, .benefit-card {
    width: 100% !important;
    margin-bottom: 1.5rem;
    padding: 2rem 1.5rem !important;
  }
  
  .form-group-row {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  /* Form & Button Sizing & Tap Targets */
  .contact-form input, .contact-form textarea, .contact-form select, .contact-form button {
    width: 100% !important;
  }

  .btn, button:not(.mobile-nav-toggle) {
    min-height: 44px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    white-space: nowrap;
    padding: 0.75rem 1.5rem !important;
  }

  /* Image Responsiveness & Overflow Prevention */
  img {
    max-width: 100% !important;
    height: auto !important;
  }

  /* Footer Layout Flow Centering */
  .footer-grid {
    grid-template-columns: 1fr !important;
    text-align: center;
    gap: 2.5rem;
  }

  .footer-grid > div {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .footer-contact-item {
    justify-content: center;
  }

  /* About Page Responsive Overrides */
  .about-section-header {
    margin-bottom: 3.5rem;
  }

  .about-mission-grid {
    grid-template-columns: 1fr;
    margin-bottom: 3.5rem;
  }

  .about-mission-vision-card {
    width: 100% !important;
    margin-bottom: 1.5rem;
    padding: 2rem 1.5rem !important;
  }

  .about-mission-vision-title {
    font-size: 22px !important;
    line-height: 1.35 !important;
  }

  .about-mission-vision-desc {
    font-size: 16px !important;
    line-height: 1.6 !important;
  }

  .about-values-header {
    margin-bottom: 2.5rem;
  }

  .about-values-title {
    font-size: 22px !important;
    line-height: 1.35 !important;
  }

  .about-split-section {
    grid-template-columns: 1fr;
  }

  .about-registry-card {
    width: 100% !important;
    padding: 2rem 1.5rem !important;
    margin-bottom: 1.5rem;
  }

  .about-registry-card-title {
    font-size: 22px !important;
    line-height: 1.35 !important;
    margin-bottom: 1.25rem;
    padding-bottom: 0.75rem;
  }

  .about-why-content {
    padding-left: 0;
  }

  /* Contact Page Responsive Overrides */
  .contact-card-box {
    width: 100% !important;
    padding: 2rem 1.5rem !important;
    margin-bottom: 1.5rem;
  }

  .business-hours {
    width: 100% !important;
    padding: 2rem 1.5rem !important;
  }

  .contact-form button {
    white-space: normal !important;
  }
}

/* Mobile (480px) */
@media (max-width: 480px) {
  /* Container Padding & Sections Whitespace Reductions */
  .container {
    padding: 0 1rem;
  }

  .logo, .footer-logo {
    font-size: 1.1rem !important;
  }

  .section-padding {
    padding-top: 3rem !important;
    padding-bottom: 3rem !important;
  }

  .hero-title {
    font-size: 32px !important;
  }
  
  .hero-actions {
    flex-direction: column;
    width: 100%;
  }
  
  .hero-actions .btn {
    width: 100%;
  }
  
  .stats-grid {
    grid-template-columns: 1fr;
  }
  
  .footer-bottom {
    flex-direction: column;
    gap: 1.5rem;
    text-align: center;
  }
  
  .footer-bottom-links {
    flex-wrap: wrap;
    justify-content: center;
    gap: 1rem;
  }
  
  .contact-card-box {
    padding: 1.5rem;
  }

  .split-badge {
    position: static;
    margin-top: 1rem;
    width: 100%;
    justify-content: center;
  }

  /* About Page Mobile Overrides */
  .about-section-header {
    margin-bottom: 2.5rem;
  }

  .about-mission-grid {
    margin-bottom: 2.5rem;
  }

  .about-values-header {
    margin-bottom: 2rem;
  }

  /* Contact & Legal Page Mobile Overrides */
  .contact-card-box, .business-hours, .legal-sidebar-box {
    padding: 1.5rem !important;
  }
}
