/* ===========================
   DOMOWAY – Global Styles
   =========================== */

@import url('https://fonts.googleapis.com/css2?family=Bricolage+Grotesque:wght@500;600;700;800&family=Manrope:wght@400;500;600;700&display=swap');

:root {
  --dark: #070c18;
  --dark-2: #0d1526;
  --dark-3: #121d35;
  --blue-deep: #0f2554;
  --blue: #1a4fcf;
  --blue-light: #3b72ff;
  --cyan: #00c6ff;
  --gold: #c9933a;
  --gold-light: #e8b860;
  --gold-pale: #f5d98a;
  --white: #ffffff;
  --off-white: #e8edf8;
  --muted: #7a8aaa;
  --glass: rgba(255, 255, 255, 0.04);
  --glass-border: rgba(255, 255, 255, 0.08);
  --shadow-blue: 0 0 60px rgba(59, 114, 255, 0.15);
  --shadow-gold: 0 0 60px rgba(201, 147, 58, 0.2);
  --radius: 12px;
  --radius-lg: 20px;
  --transition: 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  --font-heading: 'Bricolage Grotesque', 'Segoe UI', sans-serif;
  --font-body: 'Manrope', 'Segoe UI', sans-serif;
}

*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

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

body {
  font-family: var(--font-body);
  background: var(--dark);
  color: var(--off-white);
  overflow-x: hidden;
  line-height: 1.6;
}

h1,
h2,
h3,
h4,
h5 {
  font-family: var(--font-heading);
  line-height: 1.2;
  letter-spacing: -0.01em;
}

a {
  color: inherit;
  text-decoration: none;
}

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

ul {
  list-style: none;
}

/* ── Scrollbar ────────────────────── */
::-webkit-scrollbar {
  width: 6px;
}

::-webkit-scrollbar-track {
  background: var(--dark);
}

::-webkit-scrollbar-thumb {
  background: var(--blue);
  border-radius: 3px;
}

/* ── Selection ────────────────────── */
::selection {
  background: var(--blue);
  color: #fff;
}

/* ===========================
   NAV
   =========================== */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 0 48px;
  height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: rgba(7, 12, 24, 0.55);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  transition: background var(--transition), backdrop-filter var(--transition), box-shadow var(--transition);
}

.nav.scrolled {
  background: rgba(7, 12, 24, 0.94);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  box-shadow: 0 1px 0 var(--glass-border);
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 14px;
}

.nav-logo-icon {
  width: 38px;
  height: 38px;
  background: linear-gradient(135deg, var(--blue), var(--cyan));
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-family: 'Playfair Display', serif;
  font-size: 18px;
  color: #fff;
  box-shadow: 0 0 20px rgba(59, 114, 255, 0.4);
}

.brand-logo-mark {
  width: 46px;
  height: 46px;
  border-radius: 12px;
  overflow: hidden;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--blue), var(--cyan));
  box-shadow: 0 0 28px rgba(59, 114, 255, 0.35);
  flex-shrink: 0;
}

.brand-logo-mark.is-gold {
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  box-shadow: 0 0 20px rgba(201, 147, 58, 0.35);
}

.brand-logo-img {
  width: 80%;
  height: 80%;
  object-fit: contain;
  display: block;
}

.brand-logo-fallback {
  display: none;
  width: 100%;
  height: 100%;
  align-items: center;
  justify-content: center;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 18px;
  color: #fff;
}

.nav-logo-text {
  font-size: 24px;
  font-weight: 700;
  letter-spacing: 0.5px;
  font-family: var(--font-heading);
}

.nav-logo-text span {
  color: var(--blue-light);
}

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

.nav-links a {
  font-size: 14px;
  font-weight: 500;
  color: var(--muted);
  letter-spacing: 0.5px;
  transition: color 0.25s;
  position: relative;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  right: 0;
  height: 1px;
  background: var(--blue-light);
  transform: scaleX(0);
  transition: transform 0.3s;
}

.nav-links a:hover {
  color: var(--white);
}

.nav-links a:hover::after {
  transform: scaleX(1);
}

.nav-links a.active {
  color: var(--white);
  background: rgba(59, 114, 255, 0.13);
  padding: 5px 13px;
  border-radius: 20px;
  border: 1px solid rgba(59, 114, 255, 0.22);
}

.nav-links a.active::after {
  display: none;
}

.nav-cta {
  padding: 10px 22px;
  background: linear-gradient(135deg, var(--blue), var(--blue-light));
  color: #fff !important;
  border-radius: 8px;
  font-size: 13px !important;
  font-weight: 600 !important;
  letter-spacing: 0.5px;
  box-shadow: 0 0 20px rgba(59, 114, 255, 0.3);
  transition: box-shadow var(--transition), transform var(--transition) !important;
}

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

.nav-cta:hover {
  box-shadow: 0 0 35px rgba(59, 114, 255, 0.5) !important;
  transform: translateY(-1px);
  color: #fff !important;
}

/* ── Language toggle ── */
.lang-toggle {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 5px 11px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 100px;
  cursor: pointer;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1px;
  color: var(--muted);
  transition: border-color 0.25s, color 0.25s;
  text-transform: uppercase;
  font-family: var(--font-body);
  margin-left: 6px;
  flex-shrink: 0;
}

.lang-toggle:hover {
  border-color: rgba(59, 114, 255, 0.35);
  color: var(--off-white);
}

.lang-toggle .lang-active {
  color: var(--blue-light);
}

.lang-toggle .lang-sep {
  opacity: 0.3;
  font-weight: 300;
  font-size: 10px;
}

.nav-mobile-menu .lang-toggle {
  margin: 12px 0 0;
  align-self: flex-start;
  font-size: 13px;
  padding: 7px 16px;
}

.nav-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 4px;
}

.nav-hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--off-white);
  border-radius: 2px;
  transition: all 0.3s;
}

/* ===========================
   HERO SHARED
   =========================== */
.hero {
  min-height: clamp(640px, 86vh, 860px);
  position: relative;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  background-image: url('/hero-smart-home.jpg');
  filter: brightness(0.25);
  transform: scale(1.05);
  transition: transform 8s ease-out;
}

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

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg,
      rgba(7, 12, 24, 0.95) 0%,
      rgba(15, 37, 84, 0.6) 50%,
      rgba(7, 12, 24, 0.95) 100%);
}

.hero-grid-lines {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(59, 114, 255, 0.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(59, 114, 255, 0.06) 1px, transparent 1px);
  background-size: 60px 60px;
  mask-image: radial-gradient(ellipse 80% 80% at 50% 50%, black 40%, transparent 100%);
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 1200px;
  margin: 0 auto;
  padding: 112px 48px 62px;
  width: 100%;
}

.hero-brand-lockup {
  display: inline-flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 24px;
}

.hero-brand-lockup img {
  width: clamp(240px, 30vw, 360px);
  max-width: 88vw;
  filter: drop-shadow(0 10px 30px rgba(7, 12, 24, 0.45));
}

.hero-brand-lockup small {
  font-size: 12px;
  color: var(--muted);
  letter-spacing: 1.6px;
  text-transform: uppercase;
  font-weight: 700;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 14px;
  background: rgba(59, 114, 255, 0.12);
  border: 1px solid rgba(59, 114, 255, 0.25);
  border-radius: 100px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--cyan);
  margin-bottom: 28px;
}

.hero-badge-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--cyan);
  animation: pulse-dot 2s infinite;
}

@keyframes pulse-dot {

  0%,
  100% {
    opacity: 1;
    transform: scale(1);
  }

  50% {
    opacity: 0.5;
    transform: scale(0.7);
  }
}

.hero-title {
  font-size: clamp(40px, 7vw, 82px);
  font-weight: 700;
  color: var(--white);
  max-width: 760px;
  margin-bottom: 24px;
}

.hero-title .accent {
  color: var(--blue-light);
}

.hero-title .accent-gold {
  color: var(--gold-light);
}

.hero-subtitle {
  font-size: clamp(16px, 2.5vw, 20px);
  color: var(--muted);
  max-width: 560px;
  line-height: 1.7;
  margin-bottom: 44px;
  font-family: var(--font-body);
  font-weight: 500;
}

.hero-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  align-items: center;
}

.btn-primary {
  padding: 16px 36px;
  background: linear-gradient(135deg, var(--blue), var(--blue-light));
  color: #fff;
  border-radius: 10px;
  font-size: 15px;
  font-weight: 600;
  letter-spacing: 0.3px;
  transition: all var(--transition);
  box-shadow: 0 4px 30px rgba(59, 114, 255, 0.35);
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border: none;
  cursor: pointer;
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 40px rgba(59, 114, 255, 0.5);
}

.btn-secondary {
  padding: 15px 32px;
  background: transparent;
  color: var(--off-white);
  border-radius: 10px;
  font-size: 15px;
  font-weight: 500;
  border: 1px solid var(--glass-border);
  transition: all var(--transition);
  display: inline-flex;
  align-items: center;
  gap: 8px;
  cursor: pointer;
}

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

.btn-gold {
  padding: 16px 36px;
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  color: #1a0d00;
  border-radius: 10px;
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 0.3px;
  transition: all var(--transition);
  box-shadow: 0 4px 30px rgba(201, 147, 58, 0.35);
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border: none;
  cursor: pointer;
}

.btn-gold:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 40px rgba(201, 147, 58, 0.5);
}

/* ===========================
   SECTION SHARED
   =========================== */
.section {
  padding: 100px 48px;
  max-width: 1200px;
  margin: 0 auto;
}

.section-full {
  padding: 100px 48px;
}

.section-center {
  text-align: center;
}

.section-label {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--blue-light);
  margin-bottom: 16px;
}

.section-label.gold {
  color: var(--gold);
}

.section-title {
  font-size: clamp(28px, 4.5vw, 48px);
  font-weight: 700;
  color: var(--white);
  margin-bottom: 20px;
}

.section-title .accent {
  color: var(--blue-light);
}

.section-title .accent-gold {
  color: var(--gold-light);
}

.section-desc {
  font-size: 17px;
  color: var(--muted);
  max-width: 600px;
  line-height: 1.75;
  font-weight: 300;
}

.section-center .section-desc {
  margin: 0 auto;
}

.section-head {
  margin-bottom: 38px;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
}

.brand-showcase {
  max-width: 1200px;
  margin: 0 auto;
  padding: 8px 48px 86px;
}

.brand-showcase-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 20px;
  margin-bottom: 22px;
}

.brand-showcase-card {
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.03), rgba(59, 114, 255, 0.06));
  border: 1px solid var(--glass-border);
  border-radius: 18px;
  padding: 20px;
}

.brand-showcase-card.gold {
  background: linear-gradient(135deg, rgba(201, 147, 58, 0.11), rgba(255, 255, 255, 0.02));
  border-color: rgba(201, 147, 58, 0.28);
}

.brand-showcase-card small {
  display: block;
  color: var(--muted);
  font-size: 11px;
  letter-spacing: 1.4px;
  text-transform: uppercase;
  margin-bottom: 10px;
  font-weight: 700;
}

.brand-showcase-card img {
  width: min(100%, 430px);
  height: auto;
}

.partners-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
}

.partner-logo-item {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--glass-border);
  border-radius: 14px;
  padding: 12px;
  min-height: 88px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform var(--transition), border-color var(--transition), background var(--transition);
}

.partner-logo-item:hover {
  transform: translateY(-2px);
  border-color: rgba(59, 114, 255, 0.3);
  background: rgba(59, 114, 255, 0.08);
}

.partner-logo-item img {
  width: 100%;
  max-width: 188px;
  height: auto;
}

/* ===========================
   DIVIDER
   =========================== */
.divider {
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--glass-border), transparent);
  margin: 0;
}

/* ===========================
   CARDS
   =========================== */
.card {
  background: var(--glass);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-lg);
  padding: 36px;
  transition: all var(--transition);
  position: relative;
  overflow: hidden;
}

.card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(59, 114, 255, 0.3), transparent);
  opacity: 0;
  transition: opacity var(--transition);
}

.card:hover {
  border-color: rgba(59, 114, 255, 0.2);
  transform: translateY(-4px);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4), 0 0 0 1px rgba(59, 114, 255, 0.1);
}

.card:hover::before {
  opacity: 1;
}

.card-gold {
  background: linear-gradient(135deg, rgba(201, 147, 58, 0.06), rgba(232, 184, 96, 0.03));
  border-color: rgba(201, 147, 58, 0.15);
}

.card-gold:hover {
  border-color: rgba(201, 147, 58, 0.3);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4), 0 0 0 1px rgba(201, 147, 58, 0.15);
}

.card-gold::before {
  background: linear-gradient(90deg, transparent, rgba(201, 147, 58, 0.4), transparent);
}

.card-icon {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  background: linear-gradient(135deg, rgba(59, 114, 255, 0.15), rgba(0, 198, 255, 0.1));
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
  font-size: 24px;
}

.card-icon.gold {
  background: linear-gradient(135deg, rgba(201, 147, 58, 0.15), rgba(232, 184, 96, 0.1));
}

.card h3 {
  font-size: 20px;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 12px;
}

.card p {
  font-size: 15px;
  color: var(--muted);
  line-height: 1.7;
}

/* ===========================
   GRID LAYOUTS
   =========================== */
.grid-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}

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

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

.grid-auto {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 24px;
}

/* ===========================
   STAT NUMBERS
   =========================== */
.stats-bar {
  background: var(--dark-2);
  border-top: 1px solid var(--glass-border);
  border-bottom: 1px solid var(--glass-border);
  padding: 48px;
}

.stats-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  text-align: center;
}

.stat-item {}

.stat-number {
  font-family: 'Playfair Display', serif;
  font-size: 48px;
  font-weight: 700;
  color: var(--white);
  line-height: 1;
  margin-bottom: 8px;
  background: linear-gradient(135deg, var(--white), var(--blue-light));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.stat-label {
  font-size: 14px;
  color: var(--muted);
  font-weight: 500;
}

/* ===========================
   CERTIFICATION BADGES
   =========================== */
.cert-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 16px;
  margin-top: 48px;
}

.cert-badge {
  background: var(--glass);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius);
  padding: 20px 24px;
  display: flex;
  align-items: center;
  gap: 14px;
  transition: all var(--transition);
}

.cert-badge:hover {
  border-color: rgba(59, 114, 255, 0.25);
  background: rgba(59, 114, 255, 0.05);
  transform: translateY(-2px);
}

.cert-badge-icon {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: linear-gradient(135deg, var(--blue), var(--cyan));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  flex-shrink: 0;
}

.cert-badge-text {
  font-size: 13px;
  font-weight: 600;
  color: var(--off-white);
  line-height: 1.4;
}

/* ===========================
   SERVICE CARDS
   =========================== */
.service-card {
  background: var(--glass);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: all var(--transition);
  cursor: pointer;
  padding: 26px;
  min-height: 220px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 10px;
}

.service-card:hover {
  border-color: rgba(59, 114, 255, 0.25);
  transform: translateY(-6px);
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.45);
}

.service-card .service-icon {
  font-size: 22px;
  line-height: 1;
}

.service-card h3 {
  font-size: 29px;
  margin: 2px 0 2px;
}

.service-card p {
  font-size: 17px;
  color: var(--off-white);
  opacity: 0.95;
  line-height: 1.55;
  max-width: 34ch;
}

.service-card-img {
  height: 200px;
  background-size: cover;
  background-position: center;
  position: relative;
  overflow: hidden;
}

.service-card-img::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 40%, rgba(7, 12, 24, 0.95) 100%);
}

.service-card-img-icon {
  position: absolute;
  bottom: 16px;
  left: 20px;
  z-index: 2;
  font-size: 32px;
}

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

.service-card-body h3 {
  font-size: 20px;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 10px;
}

.service-card-body p {
  font-size: 14px;
  color: var(--muted);
  line-height: 1.7;
}

.service-card-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-top: 16px;
}

.tag {
  padding: 4px 10px;
  background: rgba(59, 114, 255, 0.1);
  border: 1px solid rgba(59, 114, 255, 0.15);
  border-radius: 100px;
  font-size: 11px;
  color: var(--cyan);
  font-weight: 600;
  letter-spacing: 0.5px;
}

/* ===========================
   PRIME LIVING
   =========================== */
.prime-hero {
  background: linear-gradient(135deg, #0a0c12 0%, #1a1000 50%, #0a0c12 100%);
}

.prime-hero .hero-overlay {
  background: linear-gradient(135deg,
      rgba(7, 12, 24, 0.96) 0%,
      rgba(30, 18, 0, 0.6) 50%,
      rgba(7, 12, 24, 0.96) 100%);
}

.prime-hero .hero-badge {
  background: rgba(201, 147, 58, 0.12);
  border-color: rgba(201, 147, 58, 0.25);
  color: var(--gold-light);
}

.prime-hero .hero-badge-dot {
  background: var(--gold-light);
}

.prime-feature {
  position: relative;
  padding: 120px 48px;
  overflow: hidden;
}

.prime-feature-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  filter: brightness(0.15);
}

.prime-feature-content {
  position: relative;
  z-index: 2;
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

/* ===========================
   PORTFOLIO
   =========================== */
.portfolio-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-auto-rows: 280px;
  gap: 16px;
}

.portfolio-item {
  border-radius: var(--radius);
  overflow: hidden;
  position: relative;
  cursor: pointer;
}

.portfolio-item.wide {
  grid-column: span 2;
}

.portfolio-item.tall {
  grid-row: span 2;
}

.portfolio-item img,
.portfolio-item-bg {
  width: 100%;
  height: 100%;
  object-fit: cover;
  background-size: cover;
  background-position: center;
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.portfolio-item:hover .portfolio-item-bg {
  transform: scale(1.05);
}

.portfolio-item-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 40%, rgba(7, 12, 24, 0.92) 100%);
  display: flex;
  align-items: flex-end;
  padding: 24px;
  opacity: 0;
  transition: opacity 0.4s;
}

.portfolio-item:hover .portfolio-item-overlay {
  opacity: 1;
}

.portfolio-item-label {
  font-size: 15px;
  font-weight: 600;
  color: var(--white);
}

/* ===========================
   CONTACT
   =========================== */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 60px;
  align-items: start;
}

.contact-info-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  margin-bottom: 32px;
}

.contact-info-icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: rgba(59, 114, 255, 0.1);
  border: 1px solid rgba(59, 114, 255, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  flex-shrink: 0;
}

.contact-info-label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 4px;
}

.contact-info-value {
  font-size: 16px;
  font-weight: 500;
  color: var(--off-white);
}

.contact-info-value a {
  transition: color 0.25s;
}

.contact-info-value a:hover {
  color: var(--blue-light);
}

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

.form-label {
  display: block;
  font-size: 13px;
  font-weight: 600;
  color: var(--muted);
  letter-spacing: 0.5px;
  margin-bottom: 8px;
}

.form-input,
.form-textarea,
.form-select {
  width: 100%;
  padding: 14px 18px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius);
  color: var(--off-white);
  font-size: 15px;
  font-family: 'Inter', sans-serif;
  transition: border-color 0.3s, box-shadow 0.3s;
  outline: none;
  -webkit-appearance: none;
}

.form-input:focus,
.form-textarea:focus,
.form-select:focus {
  border-color: rgba(59, 114, 255, 0.4);
  box-shadow: 0 0 0 3px rgba(59, 114, 255, 0.1);
}

.form-input::placeholder,
.form-textarea::placeholder {
  color: rgba(122, 138, 170, 0.6);
}

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

.form-select option {
  background: var(--dark-3);
  color: var(--off-white);
}

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

/* ===========================
   FOOTER
   =========================== */
.footer {
  background: var(--dark-2);
  border-top: 1px solid var(--glass-border);
  padding: 64px 48px 32px;
}

.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 48px;
  border-bottom: 1px solid var(--glass-border);
  margin-bottom: 32px;
}

.footer-brand {}

.footer-brand-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 16px;
}

.footer-brand p {
  font-size: 14px;
  color: var(--muted);
  line-height: 1.7;
  margin-bottom: 20px;
}

.footer-socials {
  display: flex;
  gap: 10px;
}

.social-link {
  width: 36px;
  height: 36px;
  border-radius: 8px;
  background: var(--glass);
  border: 1px solid var(--glass-border);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  transition: all var(--transition);
}

.social-link:hover {
  background: rgba(59, 114, 255, 0.1);
  border-color: rgba(59, 114, 255, 0.25);
  transform: translateY(-2px);
}

.footer-col h4 {
  font-size: 14px;
  font-weight: 700;
  color: var(--white);
  letter-spacing: 0.5px;
  margin-bottom: 20px;
}

.footer-col ul li {
  margin-bottom: 10px;
}

.footer-col ul li a {
  font-size: 14px;
  color: var(--muted);
  transition: color 0.25s;
}

.footer-col ul li a:hover {
  color: var(--off-white);
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 13px;
  color: var(--muted);
}

.cta-section {
  max-width: 1200px;
  margin: 0 auto;
}

.cta-card {
  background: linear-gradient(135deg, rgba(26, 79, 207, 0.14), rgba(59, 114, 255, 0.06));
  border: 1px solid rgba(59, 114, 255, 0.22);
  border-radius: 18px;
  padding: 34px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.cta-card h3 {
  font-size: clamp(28px, 3.3vw, 40px);
  margin-bottom: 6px;
}

.cta-card p {
  color: var(--off-white);
  opacity: 0.92;
  font-size: 20px;
  line-height: 1.5;
  max-width: 52ch;
}

.footer-links {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}

.footer-copy {
  max-width: 52ch;
  color: var(--muted);
}

/* ===========================
   ANIMATIONS
   =========================== */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s cubic-bezier(0.16, 1, 0.3, 1), transform 0.7s cubic-bezier(0.16, 1, 0.3, 1);
}

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

.reveal-left {
  opacity: 0;
  transform: translateX(-40px);
  transition: opacity 0.7s cubic-bezier(0.16, 1, 0.3, 1), transform 0.7s cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal-left.visible {
  opacity: 1;
  transform: translateX(0);
}

.reveal-right {
  opacity: 0;
  transform: translateX(40px);
  transition: opacity 0.7s cubic-bezier(0.16, 1, 0.3, 1), transform 0.7s cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal-right.visible {
  opacity: 1;
  transform: translateX(0);
}

.delay-1 {
  transition-delay: 0.1s !important;
}

.delay-2 {
  transition-delay: 0.2s !important;
}

.delay-3 {
  transition-delay: 0.3s !important;
}

.delay-4 {
  transition-delay: 0.4s !important;
}

.delay-5 {
  transition-delay: 0.5s !important;
}

.delay-6 {
  transition-delay: 0.6s !important;
}

/* ===========================
   GLOW ORBS
   =========================== */
.glow-orb {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  filter: blur(80px);
  opacity: 0.35;
}

.glow-orb-blue {
  background: radial-gradient(circle, rgba(59, 114, 255, 0.8), transparent 70%);
}

.glow-orb-cyan {
  background: radial-gradient(circle, rgba(0, 198, 255, 0.6), transparent 70%);
}

.glow-orb-gold {
  background: radial-gradient(circle, rgba(201, 147, 58, 0.8), transparent 70%);
}

/* ===========================
   PAGE TRANSITIONS
   =========================== */
.page-wrap {
  animation: pageFade 0.5s ease-out;
}

@keyframes pageFade {
  from {
    opacity: 0;
    transform: translateY(16px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ===========================
   ACTIVE NAV
   =========================== */
.nav-links a[data-page].active {
  color: var(--white);
}

/* ===========================
   MOBILE NAV OVERLAY
   =========================== */
.nav-mobile-menu {
  position: fixed;
  inset: 0;
  background: rgba(7, 12, 24, 0.98);
  z-index: 999;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 36px;
  transform: translateY(-100%);
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.nav-mobile-menu.open {
  transform: translateY(0);
}

.nav-mobile-menu a {
  font-family: var(--font-heading);
  font-size: 32px;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--off-white);
  transition: color 0.25s;
}

.nav-mobile-menu a:hover {
  color: var(--blue-light);
}

.nav-mobile-close {
  position: absolute;
  top: 24px;
  right: 24px;
  font-size: 28px;
  cursor: pointer;
  color: var(--muted);
  background: none;
  border: none;
  transition: color 0.25s;
}

.nav-mobile-close:hover {
  color: var(--white);
}

/* ===========================
   HERO SCROLL INDICATOR
   =========================== */
.hero-scroll {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: var(--muted);
  font-size: 11px;
  letter-spacing: 2px;
  text-transform: uppercase;
  animation: bounceY 2.5s ease-in-out infinite;
  z-index: 2;
}

.hero-scroll span {
  font-size: 20px;
}

@media (max-width: 1024px) {
  .services-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .service-card h3 {
    font-size: 25px;
  }

  .service-card p {
    font-size: 16px;
  }

  .cta-card {
    flex-direction: column;
    align-items: flex-start;
  }

  .brand-showcase-grid {
    grid-template-columns: 1fr;
  }

  .partners-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (max-width: 768px) {
  .nav {
    padding: 0 20px;
    height: 64px;
  }

  .brand-logo-mark {
    width: 38px;
    height: 38px;
    border-radius: 10px;
  }

  .nav-logo-text {
    font-size: 20px;
  }

  .nav-links {
    display: none;
  }

  .nav-hamburger {
    display: flex;
  }

  .hero-content,
  .section,
  .section-full,
  .footer {
    padding-left: 20px;
    padding-right: 20px;
  }

  .brand-showcase {
    padding: 8px 20px 60px;
  }

  .hero-title {
    font-size: clamp(32px, 10vw, 52px);
  }

  .hero-subtitle {
    font-size: 15px;
  }

  .hero-content {
    padding: 100px 20px 56px;
  }

  .section-title {
    font-size: clamp(26px, 7vw, 40px);
  }

  .section-head {
    margin-bottom: 24px;
  }

  .services-grid {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .partners-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
  }

  .partner-logo-item {
    min-height: 72px;
    padding: 10px;
  }

  .service-card {
    min-height: 0;
    padding: 20px;
  }

  .service-card h3 {
    font-size: 20px;
  }

  .service-card p {
    font-size: 14px;
  }

  .cta-card {
    padding: 22px 20px;
    gap: 20px;
  }

  .cta-card h3 {
    font-size: 20px;
  }

  .cta-card p {
    font-size: 14px;
  }

  .footer-bottom {
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
    font-size: 12px;
  }

  .section-label {
    font-size: 10px;
  }
}

@media (max-width: 480px) {
  .nav {
    padding: 0 16px;
  }

  .hero-title {
    font-size: clamp(28px, 9vw, 44px);
  }

  .hero-content {
    padding: 90px 16px 48px;
  }

  .section,
  .section-full,
  .footer {
    padding-left: 16px;
    padding-right: 16px;
  }

  .brand-showcase {
    padding: 8px 16px 50px;
  }

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

  .hero-badge {
    font-size: 10px;
    padding: 5px 12px;
  }

  .btn-primary,
  .btn-secondary,
  .btn-gold {
    font-size: 14px;
    padding: 13px 22px;
  }

  .hero-actions {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
  }
}

@keyframes bounceY {

  0%,
  100% {
    transform: translateX(-50%) translateY(0);
  }

  50% {
    transform: translateX(-50%) translateY(8px);
  }
}

/* ===========================
   MAP PLACEHOLDER
   =========================== */
.map-wrap {
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--glass-border);
  height: 300px;
  margin-top: 40px;
}

.map-wrap iframe {
  width: 100%;
  height: 100%;
  border: none;
  filter: invert(90%) hue-rotate(180deg);
}

/* ===========================
   FEATURE STRIP
   =========================== */
.feature-strip {
  padding: 48px;
  background: var(--dark-2);
  border-top: 1px solid var(--glass-border);
  border-bottom: 1px solid var(--glass-border);
}

.feature-strip-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  gap: 48px;
  justify-content: space-between;
  flex-wrap: wrap;
}

.feature-item {
  display: flex;
  align-items: center;
  gap: 14px;
}

.feature-icon {
  font-size: 28px;
}

.feature-text strong {
  display: block;
  font-size: 15px;
  font-weight: 600;
  color: var(--white);
}

.feature-text span {
  font-size: 13px;
  color: var(--muted);
}

/* ===========================
   BRAND SECTION
   =========================== */
.brand-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin-top: 60px;
}

.brand-card {
  border-radius: var(--radius-lg);
  padding: 48px;
  position: relative;
  overflow: hidden;
  min-height: 280px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  cursor: pointer;
  transition: transform var(--transition), box-shadow var(--transition);
}

.brand-card:hover {
  transform: translateY(-4px);
}

.brand-card-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.brand-card:hover .brand-card-bg {
  transform: scale(1.04);
}

.brand-card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 0%, rgba(7, 12, 24, 0.85) 70%, rgba(7, 12, 24, 0.95) 100%);
}

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

.brand-card-badge {
  display: inline-block;
  padding: 4px 12px;
  border-radius: 100px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  margin-bottom: 12px;
}

.brand-card-badge.blue {
  background: rgba(59, 114, 255, 0.2);
  color: var(--cyan);
  border: 1px solid rgba(59, 114, 255, 0.3);
}

.brand-card-badge.gold {
  background: rgba(201, 147, 58, 0.2);
  color: var(--gold-light);
  border: 1px solid rgba(201, 147, 58, 0.3);
}

.brand-card h3 {
  font-size: 28px;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 8px;
}

.brand-card p {
  font-size: 14px;
  color: rgba(232, 237, 248, 0.7);
  margin-bottom: 20px;
}

.brand-card-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.5px;
  transition: gap 0.3s;
}

.brand-card-link.blue {
  color: var(--cyan);
}

.brand-card-link.gold {
  color: var(--gold-light);
}

.brand-card:hover .brand-card-link {
  gap: 10px;
}

/* ===========================
   FORM SUCCESS
   =========================== */
.form-success {
  display: none;
  text-align: center;
  padding: 48px;
  background: rgba(59, 114, 255, 0.05);
  border: 1px solid rgba(59, 114, 255, 0.15);
  border-radius: var(--radius-lg);
}

.form-success.show {
  display: block;
}

.form-success-icon {
  font-size: 52px;
  margin-bottom: 20px;
}

.form-success h3 {
  font-size: 24px;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 12px;
}

.form-success p {
  color: var(--muted);
  font-size: 15px;
}

/* ===========================
   PRIME LIVING GALLERY
   =========================== */
.luxury-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: repeat(2, 300px);
  gap: 16px;
  margin-top: 60px;
}

.luxury-item {
  border-radius: var(--radius);
  overflow: hidden;
  position: relative;
}

.luxury-item.span2 {
  grid-column: span 2;
}

.luxury-item-bg {
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.luxury-item:hover .luxury-item-bg {
  transform: scale(1.05);
}

.luxury-item-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 50%, rgba(7, 12, 24, 0.8) 100%);
}

/* ===========================
   PREMIUM BRANDS ROW
   =========================== */
.brands-row {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 32px;
}

.brand-tag {
  padding: 8px 16px;
  background: rgba(201, 147, 58, 0.07);
  border: 1px solid rgba(201, 147, 58, 0.15);
  border-radius: 8px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1px;
  color: var(--gold-light);
  text-transform: uppercase;
}

/* ===========================
   RESPONSIVE
   =========================== */
@media (max-width: 1024px) {
  .grid-4 {
    grid-template-columns: repeat(2, 1fr);
  }

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

  .portfolio-item.wide {
    grid-column: span 1;
  }

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

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

  .prime-feature-content {
    grid-template-columns: 1fr;
    gap: 40px;
  }

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

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

  .luxury-grid {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto;
  }

  .luxury-item.span2 {
    grid-column: span 1;
  }
}

@media (max-width: 768px) {
  .nav {
    padding: 0 24px;
  }

  .nav-links {
    display: none;
  }

  .nav-hamburger {
    display: flex;
  }

  .section,
  .section-full {
    padding: 70px 24px;
  }

  .hero-content {
    padding: 100px 24px 60px;
  }

  .grid-2,
  .grid-3 {
    grid-template-columns: 1fr;
  }

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

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

  .footer {
    padding: 48px 24px 24px;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .form-row {
    grid-template-columns: 1fr;
  }

  .feature-strip {
    padding: 32px 24px;
  }

  .feature-strip-inner {
    flex-direction: column;
    gap: 24px;
  }

  .prime-feature {
    padding: 70px 24px;
  }

  .stats-bar {
    padding: 32px 24px;
  }

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

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