:root {
  /* Brand Colors */
  --brand-blue: #0049ac;
  --brand-blue-dark: #00337a;
  --brand-orange: #fb8d00;

  /* Neutrals */
  --bg-page: #f8f9fa;
  --bg-card: #ffffff;
  --text-dark: #0f172a;
  --text-muted: #6b7280;

  /* Radius */
  --radius-sm: 14px;
  --radius-md: 22px;
  --radius-lg: 32px;

  /* Shadows */
  --shadow-sm: 0 8px 20px rgba(0,0,0,0.08);
  --shadow-md: 0 20px 40px rgba(0,0,0,0.12);
  --shadow-lg: 0 35px 70px rgba(0,0,0,0.18);

  /* Spacing */
  --space-xs: 8px;
  --space-sm: 16px;
  --space-md: 24px;
  --space-lg: 32px;
  --space-xl: 48px;

  /* Motion */
  --ease-smooth: cubic-bezier(.22,.61,.36,1);

  --accent-orange: var(--brand-orange);
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: Inter, system-ui, sans-serif;
}


html,body {
  background: var(--bg-page);
  color: var(--text-dark);
  line-height: 1.7;
  width: 100%;
}

section {
  padding: clamp(80px, 8vw, 120px) 0;
}

.container {
  max-width: 1200px;
  padding: 0 var(--space-md);
}

/* HERO */
.hero {
  position: relative; /* This is the anchor for everything inside */
  width: 100%;
  min-height: 100vh; /* Takes up full screen height */
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden; /* Crops the video if it spills over */

}

.hero-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
}

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


.hero h1 {
  font-size: clamp(3rem, 6vw, 5rem);
  font-family: sans-serif;
  color:#00337a

}

.hero span {
  color: #fb8d00;
}

.hero p {
  font-size: 1.2rem;
  opacity: 0.9;
}

/* MAIN */
.main {
  margin-top: 40px;
  padding-bottom: 120px;
}

.grid {
  max-width: 1200px;
  margin: auto;
  padding: 0 24px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
}

/* LEFT */
.card {
  background: white;
  padding: 32px;
  border-radius: 24px;
  box-shadow: 0 20px 40px rgba(0,0,0,0.1);
}

.royal h2 {
  color: #0049ac;
}

.feature {
  display: flex;
  gap: 16px;
  margin-top: 24px;
}

.icon {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
}

.icon.blue {
  background: rgba(0,73,172,0.1);
  color: #0049ac;
}

.icon.orange {
  background: rgba(251,141,0,0.15);
  color: #fb8d00;
}

/* QUOTE */
.quote-card {
  margin-top: 32px;
  background: #0049ac;
  color: white;
  padding: 32px;
  border-radius: 24px;
  text-align: center;
}

.quote-card cite {
  color: #fb8d00;
  font-weight: bold;
}

/* FORM */
.form-card {
  background: white;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 30px 60px rgba(0,0,0,0.15);
}

.form-header {
  background: #0049ac;
  color: white;
  text-align: center;
  padding: 24px;
  letter-spacing: 4px;
  text-transform: uppercase;
}

form {
  padding: 32px;
}

label {
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: #0049ac;
}

input, textarea {
  width: 100%;
  border: none;
  border-bottom: 1px solid rgba(0,73,172,0.3);
  padding: 8px 0;
  margin-bottom: 24px;
  font-size: 16px;
  background: transparent;
}

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

button {
  width: 100%;
  height: 56px;
  border: none;
  background: linear-gradient(to right, #0049ac, #00337a);
  color: white;
  font-size: 16px;
  letter-spacing: 4px;
  cursor: pointer;
  transition: 0.4s;
}

button:hover {
  background: linear-gradient(to right, #fb8d00, #e07d00);
}

.privacy {
  text-align: center;
  font-size: 12px;
  opacity: 0.6;
}

/* RESPONSIVE */
@media (max-width: 900px) {
  .grid {
    grid-template-columns: 1fr;
  }
}

h1, h2, h3 {
  font-family: Verdana, sans-serif;
  font-weight: 500;
}

p, label, input, textarea, button {
  font-family: "Inter", sans-serif;
}

.footer {
  background: linear-gradient(180deg, #0b1220, #020617);
  color: #cbd5e1;
  padding-top: 80px;
}

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

/* BRAND */
.footer-brand h3 {
  color: #fff;
  font-size: 20px;
  font-weight: 600;
}

.brand-row {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 20px;
}

.brand-icon {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--accent-orange);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
}

.brand-desc {
  max-width: 360px;
  line-height: 1.7;
  margin-bottom: 24px;
}

/* SOCIAL ICONS */
.social-links {
  display: flex;
  gap: 14px;
}

.social-links a {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255,255,255,0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #cbd5e1;
  font-size: 18px;
  text-decoration: none;
  transition: all 0.25s ease;
}

.social-links a:hover {
  background: var(--accent-orange);
  color: #fff;
}

/* COLUMNS */
.footer-col h4 {
  color: #fff;
  margin-bottom: 24px;
  font-size: 16px;
  font-weight: 600;
}

.footer-col a,
.footer-col p {
  font-size: 14px;
  color: #cbd5e1;
  margin-bottom: 14px;
  text-decoration: none;
}

.footer-col a:hover {
  color: var(--accent-orange);
}

/* CONTACT */
.contact-item {
  display: flex;
  gap: 12px;
  margin-bottom: 16px;
}

.contact-item span {
  color: var(--accent-orange);
}

/* BOTTOM BAR */
.footer-bottom {
  margin-top: 60px;
  padding: 24px 0;
  text-align: center;
  font-size: 13px;
  color: #94a3b8;
  border-top: 1px solid rgba(255,255,255,0.08);
}

/* RESPONSIVE */
@media (max-width: 900px) {
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 600px) {
  .footer-grid {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .brand-row {
    justify-content: center;
  }

  .social-links {
    justify-content: center;
  }

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

/* =========================
 PROPERTY CARD
========================= */

.property-card {
  display: block;
  background: #fff;
  border-radius: 26px;
  overflow: hidden;
  box-shadow: 0 15px 40px rgba(0,0,0,0.1);
  text-decoration: none;
  color: inherit;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.property-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 25px 60px rgba(0,0,0,0.15);
}

.property-card img {
  width: 100%;
  height: 220px;
  object-fit: cover;
}

/* INFO */
.property-info {
  padding: 20px;
}

.property-info h4 {
  font-size: 18px;
  font-weight: 600;
  color: var(--accent-orange);
  margin-bottom: 6px;
}

.property-info p {
  font-size: 14px;
  color: var(--text-light);
  margin-bottom: 10px;
}

/* META */
.property-meta {
  font-size: 14px;
  color: #475569;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

/* BADGE */
.property-badge {
  display: inline-block;
  padding: 6px 12px;
  border-radius: 999px;
  background: #f1f5f9;
  font-size: 12px;
  font-weight: 500;
}

/* =========================
   CONCIERGE TRANSITION
========================= */

.concierge-transition {
  position: fixed;
  inset: 0;
  z-index: 1000;
  background: #0049ac;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  opacity: 0;
  transition: opacity 0.5s ease;
}

.concierge-transition.active {
  opacity: 1;
}

.concierge-transition.hidden {
  pointer-events: none;
}

/* Radial glow */
.concierge-radial {
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at center, rgba(251,141,0,0.15), transparent 70%);
}

/* Content */
.concierge-content {
  position: relative;
  z-index: 2;
  text-align: center;
  color: #fff;
  padding: 40px;
}

/* Diamond */
.diamond {
  width: 64px;
  height: 64px;
  border: 2px solid #fb8d00;
  transform: rotate(45deg);
  margin: 0 auto 32px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.diamond-inner {
  width: 40px;
  height: 40px;
  background: #fb8d00;
}

/* Text */
.concierge-title {
  font-size: clamp(2rem, 5vw, 3.2rem);
  letter-spacing: 0.25em;
  text-transform: uppercase;
  margin-bottom: 12px;
}

.concierge-subtitle {
  font-size: 1.4rem;
  color: #fb8d00;
  border-bottom: 1px solid rgba(251,141,0,0.4);
  display: inline-block;
  padding-bottom: 10px;
  margin-bottom: 24px;
}

.concierge-status {
  font-size: 0.75rem;
  letter-spacing: 0.3em;
  opacity: 0.7;
  text-transform: uppercase;
}

/* Particles */
.particles span {
  position: absolute;
  width: 4px;
  height: 4px;
  background: #fb8d00;
  border-radius: 50%;
  opacity: 0;
  animation: floatUp linear infinite;
}

@keyframes floatUp {
  0% {
    transform: translateY(0);
    opacity: 0;
  }
  30% {
    opacity: 1;
  }
  100% {
    transform: translateY(-120vh);
    opacity: 0;
  }
}
