/* =============================================
   MARINA BROKER · ROSE WORTHY
   Ultra-Modern, Geometric Redesign
   ============================================= */

@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;500;600;700&family=Plus+Jakarta+Sans:wght@400;500;600&display=swap');

:root {
  /* Premium Maritime & Real Estate Palette */
  --primary-dark: #071324;
  --primary: #112240;
  --primary-light: #1A365D;
  --accent: #B89150;
  --accent-glow: rgba(184, 145, 80, 0.4);
  --accent-hover: #9A773D;
  --bg-main: #F8FAFC;
  --bg-card: #FFFFFF;
  --text-dark: #1E293B;
  --text-main: #475569;
  --text-muted: #94A3B8;
  --border-light: #E2E8F0;
  
  --radius-sm: 8px;
  --radius-md: 16px;
  --radius-lg: 24px;
  --radius-pill: 100px;
  
  --shadow-sm: 0 4px 6px -1px rgba(10, 25, 47, 0.05);
  --shadow-md: 0 10px 15px -3px rgba(10, 25, 47, 0.08);
  --shadow-lg: 0 20px 40px -5px rgba(10, 25, 47, 0.1);
  --shadow-float: 0 30px 60px -10px rgba(10, 25, 47, 0.15);
}

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

html { scroll-behavior: smooth; }

body {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 400;
  background: var(--bg-main);
  color: var(--text-main);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; transition: 0.3s; }

/* ---------- TYPOGRAPHY ---------- */
h1, h2, h3, h4, .display {
  font-family: 'Outfit', sans-serif;
  font-weight: 700;
  color: var(--text-dark);
  line-height: 1.1;
  letter-spacing: -0.02em;
}

h1 { font-size: clamp(3rem, 5vw, 5.5rem); }
h2 { font-size: clamp(2.2rem, 5vw, 3.5rem); }
h3 { font-size: clamp(1.4rem, 2.5vw, 2rem); }
h4 { font-size: clamp(1.1rem, 1.8vw, 1.4rem); }

.highlight {
  color: var(--accent);
}

.eyebrow {
  font-family: 'Outfit', sans-serif;
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--accent);
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1rem;
}
.eyebrow::before {
  content: '';
  width: 30px;
  height: 2px;
  background: var(--accent);
  border-radius: 2px;
}
.eyebrow.center::after {
  content: '';
  width: 30px;
  height: 2px;
  background: var(--accent);
  border-radius: 2px;
}

/* ---------- LAYOUT UTILS ---------- */
.section { padding: 6rem 0; position: relative; }
.section-lg { padding: 8rem 0; }
.container-narrow { max-width: 860px; margin: 0 auto; padding: 0 1.5rem; }

/* ---------- FLOATING NAVIGATION ---------- */
.nav {
  position: fixed;
  top: 1.5rem; left: 0; right: 0;
  z-index: 1000;
  padding: 0 1.5rem;
  display: flex;
  justify-content: center;
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}
.nav-inner {
  width: 100%;
  max-width: 1140px; /* roughly half width of a standard 1920 monitor, enough to fit links */
  margin: 0;
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(255,255,255,0.4);
  border-radius: var(--radius-pill);
  padding: 0.75rem 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  box-shadow: var(--shadow-md);
}

.brand {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-family: 'Outfit', sans-serif;
  font-weight: 700;
  font-size: 1.25rem;
  color: var(--primary-dark);
}
.brand-mark {
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.brand-mark svg { width: 100%; height: 100%; }
.brand-text { display: flex; flex-direction: column; line-height: 1.1; }
.brand-text small {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  color: var(--accent);
  text-transform: uppercase;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 2rem;
  list-style: none;
  margin: 0;
  padding: 0;
}
.nav-links a {
  font-size: 0.9rem;
  font-weight: 600;
  color: #333;
  position: relative;
  padding: 0.5rem 0;
  text-transform: uppercase;
}
.nav-links a:hover, .nav-links a.active { color: var(--accent); }
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: 0; left: 50%;
  width: 0; height: 2px;
  background: var(--accent);
  transition: all 0.3s;
  transform: translateX(-50%);
  border-radius: 2px;
}
.nav-links a:hover::after, .nav-links a.active::after { width: 100%; }

.nav-cta {
  font-family: 'Outfit', sans-serif;
  font-size: 0.9rem;
  font-weight: 600;
  padding: 0.75rem 1.5rem;
  background: var(--primary-dark);
  color: #fff !important;
  border-radius: var(--radius-pill);
  transition: 0.3s;
  box-shadow: 0 4px 10px rgba(10, 25, 47, 0.2);
  text-transform: uppercase;
}
.nav-cta:hover {
  background: var(--accent);
  box-shadow: 0 6px 15px var(--accent-glow);
  transform: translateY(-2px);
}

.nav-toggle {
  display: none;
  background: var(--primary-dark);
  border: none;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 4px;
  cursor: pointer;
  color: #fff;
}
.nav-toggle span {
  width: 18px;
  height: 2px;
  background: #fff;
  border-radius: 2px;
  transition: 0.3s;
}

/* ---------- HERO ---------- */
/* ---------- HERO PREMIUM (EDITORIAL & ELEGANT) ---------- */
.hero-premium {
  position: relative;
  height: 100vh;
  min-height: 800px;
  display: flex;
  flex-direction: column;
  background: var(--primary-dark);
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 30%;
  animation: subtleZoom 20s ease-out forwards;
}
@keyframes subtleZoom {
  from { transform: scale(1.05); }
  to { transform: scale(1); }
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(7, 19, 36, 0.5) 0%,
    rgba(7, 19, 36, 0.4) 30%,
    rgba(7, 19, 36, 0.8) 60%,
    rgba(7, 19, 36, 0.98) 100%
  );
}

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

.eyebrow-premium {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 1.5rem;
  display: flex;
  align-items: center;
  gap: 1rem;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
}
.eyebrow-premium::before {
  content: '';
  width: 40px;
  height: 1px;
  background: var(--accent);
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
}

.hero-coordinates-elegant {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.85);
  background: rgba(255, 255, 255, 0.06);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  padding: 0.5rem 1.25rem;
  border-radius: var(--radius-pill);
  border: 1px solid rgba(255, 255, 255, 0.15);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  width: fit-content;
}
.hero-coordinates-elegant .coord-divider {
  width: 1px;
  height: 12px;
  background: rgba(255, 255, 255, 0.3);
}
.text-accent {
  color: var(--accent) !important;
}

.hero-title-elegant {
  font-size: clamp(3.5rem, 7vw, 6.5rem);
  font-weight: 400; /* Increased weight for legibility */
  line-height: 1.1;
  letter-spacing: -0.02em;
  margin-bottom: 2rem;
  color: #fff;
  text-shadow: 0 4px 15px rgba(0,0,0,0.8), 0 10px 40px rgba(0,0,0,0.5);
}
.hero-title-elegant .text-accent {
  color: var(--accent);
  font-weight: 500;
  font-style: italic;
  font-family: 'Plus Jakarta Sans', serif; /* Or keep Outfit, just styled differently */
}

.hero-lead-elegant {
  font-size: 1.25rem;
  font-weight: 300;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.85);
  max-width: 500px;
  margin-bottom: 2rem;
}

.hero-actions {
  display: flex;
  gap: .5rem;
  align-items: center;
}

.btn-elegant {
  background: var(--accent);
  color: #fff !important;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 500;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  font-size: 0.85rem;
  padding: 1.25rem 2rem;
  border-radius: 0;
  transition: all 0.4s;
  border: 1px solid var(--accent);
}
.btn-elegant:hover {
  background: transparent;
  color: var(--accent) !important;
}

.btn-elegant-outline {
  background: transparent;
  color: #fff !important;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 500;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  font-size: 0.85rem;
  padding: 1.25rem 2.5rem;
  border-radius: 0;
  transition: all 0.4s;
  border: 1px solid rgba(255, 255, 255, 0.3);
}
.btn-elegant-outline:hover {
  background: #fff;
  color: var(--primary-dark) !important;
  border-color: #fff;
}

.hero-stats-row {
  display: flex;
  justify-content: space-between;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  padding-top: 2rem;
}
.stat-item {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.stat-num {
  font-family: 'Outfit', sans-serif;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--accent);
}
.stat-text {
  font-size: 0.7rem;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.4;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

/* ---------- HERO INNER PAGE ---------- */
.hero-inner-page {
  position: relative;
  min-height: 45vh;
  display: flex;
  flex-direction: column;
  background: var(--primary-dark);
  padding-top: 150px;
  padding-bottom: 4rem;
  overflow: hidden;
}

.hero-inner-content {
  position: relative;
  z-index: 2;
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  color: #fff;
}


.hero-inner-premium {
  position: relative;
  z-index: 2;
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  color: #fff;
  padding-top: 3rem;
}

/* Top: Coordinates */
.hero-coordinates-minimal {
  display: inline-flex;
  align-items: center;
  gap: 1rem;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: #fff;
  background: rgba(255, 255, 255, 0.1);
  padding: 0.6rem 1.25rem;
  border-radius: var(--radius-pill);
  border: 1px solid rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
}
.hero-coordinates-minimal i {
  color: var(--accent);
}
.coord-divider {
  width: 20px;
  height: 1px;
  background: rgba(255,255,255,0.3);
}
.coord-text {
  color: rgba(255,255,255,0.9);
}

/* Middle: Typography */
.hero-title-massive {
  font-size: clamp(3.5rem, 8vw, 7.5rem);
  line-height: 1.05;
  color: #fff;
  text-shadow: 0 10px 30px rgba(0,0,0,0.5);
  margin-bottom: 1.5rem;
}
.title-indent {
  padding-left: clamp(2rem, 10vw, 8rem);
  color: rgba(255,255,255,0.95);
}
.highlight-glow {
  color: transparent;
  -webkit-text-stroke: 2px var(--accent);
  position: relative;
  display: inline-block;
}
.highlight-glow::after {
  content: attr(data-text);
  position: absolute;
  left: 0;
  top: 0;
  color: var(--accent);
  filter: blur(25px);
  opacity: 0.6;
  z-index: -1;
}

/* Bottom: Subtitle & Stats */
.hero-lead {
  font-size: 1.25rem;
  font-weight: 300;
  line-height: 1.7;
  color: rgba(255,255,255,0.85);
  border-left: 3px solid var(--accent);
  padding-left: 1.5rem;
  max-width: 600px;
  text-shadow: 0 2px 4px rgba(0,0,0,0.5);
}

.hero-stats-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  background: rgba(10, 25, 47, 0.4);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.15);
  padding: 2rem;
  border-radius: var(--radius-lg);
  box-shadow: 0 20px 40px rgba(0,0,0,0.3);
  position: relative;
  overflow: hidden;
}
.hero-stats-grid::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.5), transparent);
}
.hero-stat-mini {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  padding: 1rem;
  background: rgba(255, 255, 255, 0.03);
  border-radius: var(--radius-md);
  border: 1px solid rgba(255, 255, 255, 0.05);
  transition: all 0.3s ease;
}
.hero-stat-mini:hover {
  background: rgba(255, 255, 255, 0.08);
  transform: translateY(-2px);
  border-color: rgba(0, 180, 216, 0.3);
  box-shadow: 0 10px 20px rgba(0,0,0,0.2);
}
.hero-stat-mini .stat-label {
  font-family: 'Outfit';
  font-size: 0.8rem;
  color: var(--accent);
  letter-spacing: 0.1em;
  font-weight: 600;
}
.hero-stat-mini strong {
  font-size: 1.1rem;
  font-weight: 500;
  color: #fff;
}

/* ---------- BUTTONS ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  font-family: 'Outfit', sans-serif;
  font-weight: 600;
  padding: 1rem 2rem;
  border-radius: var(--radius-pill);
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  border: none;
  cursor: pointer;
  text-align: center;
}
.btn-primary {
  background: var(--accent);
  color: #fff !important;
}
.btn-primary:hover {
  background: var(--accent-hover);
  transform: translateY(-3px);
}
.btn-outline {
  background: transparent;
  color: #fff !important;
  border: 2px solid rgba(255,255,255,0.3);
}
.btn-outline:hover {
  background: rgba(255,255,255,0.1);
  border-color: #fff;
  transform: translateY(-3px);
}
.btn-dark {
  background: var(--primary-dark);
  color: #fff !important;
}
.btn-dark:hover {
  background: var(--accent);
  transform: translateY(-3px);
  box-shadow: 0 10px 20px var(--accent-glow);
}

/* ---------- SECTION HEADERS ---------- */
.section-header { margin-bottom: 4rem; }
.section-header p { font-size: 1.1rem; max-width: 600px; margin-top: 1rem; }
.section-header.text-center p { margin-left: auto; margin-right: auto; }

/* ---------- INTRO CARDS ---------- */
.intro-section { padding: 6rem 0; background: var(--bg-card); position: relative; z-index: 10; }
.intro-content { padding-right: 2rem; }
.intro-content h2 { margin-bottom: 1.5rem; }
.intro-content p { font-size: 1.1rem; color: var(--text-main); margin-bottom: 1.5rem; }

.modern-stat-card {
  background: var(--bg-main);
  padding: 2.5rem;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border-light);
  box-shadow: var(--shadow-sm);
}
.modern-stat-card h3 { color: var(--accent); font-size: 3rem; margin-bottom: 0.5rem; }
.modern-stat-card p { font-weight: 600; color: var(--text-dark); margin: 0; }

/* ---------- SERVICES / WATERS ---------- */
.waters-section { background: var(--bg-main); padding: 8rem 0; }
.water-card {
  background: var(--bg-card);
  padding: 2.5rem;
  border-radius: var(--radius-lg);
  height: 100%;
  border: 1px solid var(--border-light);
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  box-shadow: var(--shadow-sm);
  position: relative;
  overflow: hidden;
  z-index: 1;
}
.water-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background: linear-gradient(135deg, rgba(0,180,216,0.05) 0%, rgba(255,255,255,0) 100%);
  z-index: -1;
  opacity: 0;
  transition: 0.4s;
}
.water-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
  border-color: var(--accent);
}
.water-card:hover::before { opacity: 1; }
.water-card .icon-box {
  width: 60px;
  height: 60px;
  background: var(--bg-main);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  color: var(--accent);
  margin-bottom: 1.5rem;
  transition: 0.3s;
}
.water-card:hover .icon-box { background: var(--accent); color: #fff; }
.water-card h3 { margin-bottom: 1rem; font-size: 1.4rem; }
.water-card p { color: var(--text-main); font-size: 0.95rem; }

/* ---------- FEATURED LISTING ---------- */
.feature-section { padding: 8rem 0; background: var(--bg-card); }
.feature-image-wrapper {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  aspect-ratio: 4/5;
}
.feature-image-wrapper img { width: 100%; height: 100%; object-fit: cover; }
.status-badge {
  position: absolute;
  top: 1.5rem; right: 1.5rem;
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(5px);
  color: var(--primary-dark);
  font-weight: 700;
  font-size: 0.8rem;
  padding: 0.5rem 1rem;
  border-radius: var(--radius-pill);
  display: flex;
  align-items: center;
  gap: 0.5rem;
  box-shadow: var(--shadow-sm);
}
.status-badge.sold { background: var(--primary-dark); color: #fff; }

.feature-info h2 { margin-bottom: 0.5rem; }
.feature-info .location {
  color: var(--accent);
  font-weight: 600;
  font-size: 0.9rem;
  display: flex; align-items: center; gap: 0.5rem;
  margin-bottom: 1.5rem;
}
.feature-info p { font-size: 1.05rem; margin-bottom: 2rem; }

.spec-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  margin-bottom: 2.5rem;
}
.spec-item {
  background: var(--bg-card);
  padding: 1.5rem;
  border-radius: var(--radius-md);
  border: 1px solid var(--border-light);
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  transition: 0.3s;
  box-shadow: var(--shadow-sm);
}
.spec-item:hover {
  border-color: var(--accent);
  box-shadow: var(--shadow-md);
  transform: translateY(-2px);
}
.spec-item i { color: var(--accent); font-size: 1.5rem; margin-bottom: 0.25rem; }
.spec-item strong { display: block; font-family: 'Outfit'; font-size: 1.2rem; color: var(--primary-dark); line-height: 1.3; }
.spec-item span { font-size: 0.75rem; color: var(--text-muted); font-weight: 600; text-transform: uppercase; letter-spacing: 0.1em; }

/* ---------- GALLERY ---------- */
.gallery-section { padding: 4rem 0 8rem; padding-bottom: 2rem; background: var(--bg-card); }
.gallery-img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-md);
  transition: 0.4s;
  cursor: pointer;
  margin-bottom: 30px;
}
.gallery-img:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
}

/* ---------- CREDENTIALS ---------- */
.creds-section {
  background: var(--bg-main);
  padding: 4rem 0 4rem;
}
.creds-wrapper {
  background: var(--bg-card);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  overflow: hidden;
  border: 1px solid var(--border-light);
}
.cred-box {
  text-align: center;
  padding: 3.5rem 2rem;
  position: relative;
}
.cred-box:not(:last-child)::after {
  content: '';
  position: absolute;
  top: 20%; bottom: 20%; right: 0;
  width: 1px;
  background: var(--border-light);
}
.cred-icon {
  width: 50px;
  height: 50px;
  margin: 0 auto 1.5rem;
  background: rgba(0, 180, 216, 0.1);
  color: var(--accent);
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  font-size: 1.25rem;
  transition: 0.3s;
}
.cred-box:hover .cred-icon {
  background: var(--accent);
  color: #fff;
  transform: translateY(-5px);
}
.cred-box .num {
  font-family: 'Outfit';
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--primary-dark);
  line-height: 1;
  margin-bottom: 0.5rem;
}
.cred-box p {
  color: var(--text-main);
  font-size: 0.9rem;
  font-weight: 500;
  margin: 0;
  max-width: 180px;
  margin-left: auto;
  margin-right: auto;
}
@media (max-width: 767px) {
  .cred-box:not(:last-child)::after { display: none; }
  .cred-box { padding: 2rem; border-bottom: 1px solid var(--border-light); }
  .cred-box:last-child { border-bottom: none; }
}

/* ---------- CTA SECTION ---------- */
.cta-section {
  background: url(../images/cta-bg.jpg);
  background-size: cover;
  padding: 8rem 0;
  text-align: center;
  color: #fff;
  position: relative;
  overflow: hidden;
}
.cta-section::after {
  content: '';
  position: absolute;
  top: -50%; right: -10%;
  width: 500px; height: 500px;
  background: var(--accent);
  filter: blur(150px);
  opacity: 0.2;
  border-radius: 50%;
}
.cta-section h2 { color: #fff; margin-bottom: 1.5rem; }
.cta-section p { font-size: 1.1rem; color: rgba(255,255,255,0.8); margin-bottom: 2.5rem; max-width: 700px; margin-left: auto; margin-right: auto; }
.cta-contact-info {
  margin-top: 3rem;
  font-family: 'Outfit', sans-serif;
  font-size: 1.1rem;
  font-weight: 500;
  letter-spacing: 0.05em;
  color: rgba(255,255,255,0.9);
}
.cta-contact-info a {
  transition: 0.3s;
}
.cta-contact-info a:hover {
  color: var(--accent);
}
.relative { position: relative; }
.z-1 { z-index: 1; }

/* ---------- FOOTER ---------- */
.footer {
  background: url('../images/footer-bg.jpg') center/cover no-repeat;
  padding: 5rem 0 2rem;
  position: relative;
  color: #fff;
  margin-top: -2px;
}
.footer::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(10, 25, 47, 0.9);
  z-index: 0;
}
.footer .container {
  position: relative;
  z-index: 1;
}
.footer-logo {
  font-family: 'Outfit';
  font-size: 1.5rem;
  font-weight: 700;
  color: #fff;
  display: flex; align-items: center; gap: 0.5rem;
  margin-bottom: 1rem;
}
.footer-logo svg { width: 28px; height: 28px; }
.footer p { color: rgba(255,255,255,0.8); font-size: 0.95rem; margin-bottom: 1.5rem; }
.footer h4 { font-size: 1.1rem; margin-bottom: 1.5rem; color: #fff; }
.footer ul { list-style: none; padding: 0; }
.footer ul li { margin-bottom: 0.75rem; }
.footer ul a { color: rgba(255,255,255,0.8); font-weight: 500; }
.footer ul a:hover { color: var(--accent); padding-left: 5px; }
.footer-bottom {
  margin-top: 4rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(255,255,255,0.1);
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.85rem;
  color: rgba(255,255,255,0.6);
  font-weight: 500;
}

/* ---------- ABOUT PAGE overrides ---------- */
.about-hero {
  padding: 12rem 0 6rem;
  background: var(--bg-main);
}
.about-image {
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  overflow: hidden;
}
.glass-panel {
  background: rgba(255, 255, 255, 0.6);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.8);
  border-radius: var(--radius-lg);
  padding: 3rem;
  box-shadow: var(--shadow-md);
}

/* ---------- FAQ PAGE overrides ---------- */
.faq-hero { padding: 12rem 0 3rem; text-align: center; background: var(--bg-card); }
.faq-tabs {
  display: inline-flex;
  background: var(--bg-main);
  padding: 0.5rem;
  border-radius: var(--radius-pill);
  gap: 0.5rem;
  margin: 3rem 0;
}
.faq-tab {
  padding: 0.8rem 2rem;
  border-radius: var(--radius-pill);
  font-family: 'Outfit';
  font-weight: 600;
  border: none;
  background: transparent;
  color: var(--text-main);
  cursor: pointer;
  transition: 0.3s;
}
.faq-tab.active { background: #fff; color: var(--primary-dark); box-shadow: var(--shadow-sm); }
.faq-item {
  background: #fff;
  border: 1px solid var(--border-light);
  border-radius: var(--radius-md);
  margin-bottom: 1rem;
  overflow: hidden;
  transition: 0.3s;
}
.faq-item:hover { border-color: var(--accent); box-shadow: var(--shadow-sm); }
.faq-question {
  width: 100%;
  padding: 1.5rem 2rem;
  background: none; border: none;
  display: flex; justify-content: space-between; align-items: center;
  font-family: 'Outfit';
  font-weight: 600;
  font-size: 1.1rem;
  color: var(--text-dark);
  cursor: pointer;
  text-align: left;
}
.faq-toggle {
  width: 32px; height: 32px;
  background: var(--bg-main);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: var(--accent);
  transition: 0.3s;
}
.faq-item.open .faq-toggle { transform: rotate(180deg); background: var(--accent); color: #fff; }
.faq-answer { max-height: 0; overflow: hidden; transition: 0.4s; }
.faq-item.open .faq-answer { max-height: 500px; }
.faq-answer-inner { padding: 0 2rem 1.5rem; color: var(--text-main); }

/* ---------- BACK TO TOP ---------- */
.back-to-top {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  width: 50px;
  height: 50px;
  background: rgba(10, 25, 47, 0.8);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  color: var(--accent);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  cursor: pointer;
  z-index: 999;
  opacity: 0;
  visibility: hidden;
  transform: translateY(20px);
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  box-shadow: var(--shadow-lg);
}
.back-to-top.visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.back-to-top:hover {
  background: var(--accent);
  color: #fff;
  transform: translateY(-5px);
}

/* ---------- RESPONSIVE ---------- */
@media (max-width: 991px) {
  .nav-inner { border-radius: var(--radius-md); padding: 0.5rem 1rem; }
  .nav-links { display: none; position: absolute; top: 100%; left: 0; right: 0; background: #fff; padding: 2rem; border-radius: var(--radius-md); box-shadow: var(--shadow-lg); flex-direction: column; gap: 1rem; border: 1px solid var(--border-light); margin-top: 1rem; }
  .nav-links.open { display: flex; }
  .nav-toggle { display: flex; }
  .nav-cta { display: none; }
  
  .hero-stats-bar { position: static; padding: 2rem 1.5rem; }
  .hero-stat { margin-bottom: 1.5rem; }
  
  .spec-grid { grid-template-columns: 1fr; }
  .cta-block { padding: 3rem 2rem; border-radius: 0; }
  .footer-bottom { flex-direction: column; gap: 1rem; text-align: center; }
}

@media (max-width: 767.98px) {
  h1 { font-size: 2.5rem; }
  .section { padding: 4rem 0; }
  .hero { padding-top: 6rem; }
  .feature-image-wrapper { margin-bottom: 2rem; }
  .hero-premium {
  position: relative;
  height: auto;
  min-height: auto;
  display: flex;
  flex-direction: column;
  background: var(--primary-dark);
  overflow: hidden;
  padding-top: 150px;
}
}

/* Animations */
.fade-up { animation: fadeUp 0.8s cubic-bezier(0.16, 1, 0.3, 1) forwards; opacity: 0; transform: translateY(30px); }
.delay-1 { animation-delay: 0.1s; }
.delay-2 { animation-delay: 0.2s; }
.delay-3 { animation-delay: 0.3s; }
@keyframes fadeUp { to { opacity: 1; transform: translateY(0); } }
@media (max-width: 500.98px) {
  .hero-actions .btn-elegant
  {width: 100%; text-align: center;}
  .cta-contact-info
  {display: flex; flex-direction: column;}
}

/* Footer Profile Badges */
.footer-badges {
  display: flex;
  gap: 0.75rem;
  align-items: center;
  margin-top: 1.5rem;
}
.footer-badge-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--primary-dark);
  padding: 0.5rem 0.85rem;
  border-radius: 8px;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  background: var(--primary-dark);
}
.footer-badge-link:hover {
  background: var(--accent);
  border-color: var(--accent);
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.25);
}
.footer-badge-img {
  height: 30px;
  width: auto;
  object-fit: contain;
  transition: opacity 0.3s ease;
  filter: brightness(0) invert(1); /* make logo white/grayscale for premium look */
}
