/* ─── RESET & BASE ─────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --navy:       #0d1b2a;
  --gold:       #c8972a;
  --white:      #ffffff;
  --offwhite:   #f4f1ec;
  --red-accent: #c0392b;
  --font-display: 'Barlow Condensed', sans-serif;
  --font-serif:   'Playfair Display', serif;
  --font-body:    'Barlow', sans-serif;
}

html, body {
  height: 100%;
  font-family: var(--font-body);
  background: var(--navy);
  color: var(--white);
  overflow-x: hidden;
}

/* ─── NAVBAR ───────────────────────────────────────── */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 40px;
  background: rgba(13, 27, 42, 0.7);  /* ← change this line */
  backdrop-filter: blur(10px);         /* ← add this line */
  transition: background 0.4s ease;
}

.navbar.scrolled {
  background: rgba(13, 27, 42, 0.95);
  backdrop-filter: blur(8px);
}

/* ─── LOGO ─────────────────────────────────────────── */
.logo {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}

.logo-img {
  width: 50px;
  height: 50px;
  object-fit: contain;
}

.logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}

.logo-main {
  font-family: var(--font-serif);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--white);
  letter-spacing: 0.02em;
}

.logo-sub {
  font-family: var(--font-body);
  font-size: 0.6rem;
  font-weight: 500;
  color: var(--gold);
  letter-spacing: 0.25em;
  text-transform: uppercase;
}

/* ─── NAV BUTTONS ──────────────────────────────────── */
.nav-actions {
  display: flex;
  align-items: center;
  gap: 6px;
  flex-wrap: nowrap;
}

.nav-btn {
  font-family: var(--font-body);
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  text-decoration: none;
  padding: 8px 14px;
  border: 2px solid var(--white);
  color: var(--white);
  background: transparent;
  cursor: pointer;
  transition: all 0.25s ease;
  white-space: nowrap;
}

.nav-btn:hover {
  background: var(--white);
  color: var(--navy);
}

.nav-btn.filled {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--white);
}

.nav-btn.filled:hover {
  background: transparent;
  color: var(--gold);
}

.nav-btn.portal {
  background: var(--navy);
  border-color: var(--gold);
  color: var(--gold);
}

.nav-btn.portal:hover {
  background: var(--gold);
  color: var(--white);
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 5px;
}

.hamburger span {
  width: 26px;
  height: 2px;
  background: var(--white);
  display: block;
  transition: all 0.3s ease;
}

/* ─── MOBILE MENU ──────────────────────────────────── */
.mobile-menu {
  display: none;
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background: var(--navy);
  z-index: 200;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 14px;
  overflow-y: auto;
  padding: 80px 20px 40px;
}

.mobile-menu.open { display: flex; }

.mobile-menu .nav-btn {
  font-size: 0.9rem;
  padding: 12px 40px;
  width: 240px;
  text-align: center;
}

.mobile-close {
  position: absolute;
  top: 24px; right: 30px;
  font-size: 2rem;
  color: var(--white);
  cursor: pointer;
  background: none;
  border: none;
  z-index: 201;
}

/* ─── HERO ─────────────────────────────────────────── */
.hero {
  position: relative;
  width: 100%;
  height: 110vh;
  min-height: 600px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding-top: 90px;
  padding-bottom: 100px;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background-image: url('https://images.unsplash.com/photo-1523050854058-8df90110c9f1?w=1600&q=80');
  background-size: cover;
  background-position: center top;
  transform: scale(1.05);
  animation: zoomOut 8s ease forwards;
}

@keyframes zoomOut {
  from { transform: scale(1.05); }
  to   { transform: scale(1.0); }
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(13,27,42,0.35) 0%,
    rgba(13,27,42,0.15) 40%,
    rgba(13,27,42,0.55) 100%
  );
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 40px 20px 0;
  animation: fadeUp 1s 0.4s ease both;
}

@keyframes fadeUp {
  from { opacity: 0; transform: translateY(30px); }
  to   { opacity: 1; transform: translateY(0); }
}

.hero-eyebrow {
  font-family: var(--font-body);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 14px;
}

.hero-title {
  font-family: var(--font-display);
  font-size: clamp(3rem, 9vw, 8rem);
  font-weight: 800;
  line-height: 0.95;
  text-transform: uppercase;
  color: var(--white);
  text-shadow: 0 4px 30px rgba(0,0,0,0.4);
  margin-bottom: 16px;
}

.hero-divider {
  width: 60px;
  height: 4px;
  background: var(--red-accent);
  margin: 0 auto 20px;
  animation: expandLine 0.8s 1s ease both;
}

@keyframes expandLine {
  from { width: 0; }
  to   { width: 60px; }
}

.hero-subtitle {
  font-family: var(--font-display);
  font-size: clamp(1.2rem, 3.5vw, 2.8rem);
  font-weight: 700;
  text-transform: uppercase;
  color: var(--white);
  text-shadow: 0 2px 20px rgba(0,0,0,0.4);
  letter-spacing: 0.05em;
  margin-bottom: 36px;
}

.hero-cta-group {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
}

.cta-btn {
  font-family: var(--font-body);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  text-decoration: none;
  padding: 14px 32px;
  transition: all 0.3s ease;
  display: inline-block;
}

.cta-primary {
  background: var(--gold);
  color: var(--white);
  border: 2px solid var(--gold);
}

.cta-primary:hover {
  background: transparent;
  color: var(--gold);
}

.cta-secondary {
  background: transparent;
  color: var(--white);
  border: 2px solid var(--white);
}

.cta-secondary:hover {
  background: var(--white);
  color: var(--navy);
}

/* ─── SOCIAL SIDEBAR ───────────────────────────────── */
.social-sidebar {
  position: fixed;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  z-index: 50;
  display: flex;
  flex-direction: column;
  background: var(--navy);
}

.social-sidebar a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 46px;
  height: 46px;
  color: var(--white);
  text-decoration: none;
  transition: background 0.25s;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}

.social-sidebar a:hover { background: var(--gold); }

.social-sidebar svg { width: 18px; height: 18px; fill: currentColor; }

/* ─── WHATSAPP FAB ─────────────────────────────────── */
.whatsapp-fab {
  position: fixed;
  bottom: 80px;
  right: 10px;      /* ← small gap from edge */
  z-index: 50;
  background: #25D366;
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;       /* ← smaller */
  height: 40px;      /* ← smaller */
  border-radius: 50%; /* ← makes it round */
  transition: background 0.25s;
  text-decoration: none;
  box-shadow: 0 4px 12px rgba(0,0,0,0.3);
}

.whatsapp-fab:hover {
  background: #128C7E;
}

.whatsapp-fab svg {
  width: 20px;       /* ← smaller icon */
  height: 20px;
  fill: #ffffff;
}

/* ─── CONTACT FAB ──────────────────────────────────── */
.contact-fab {
  position: fixed;
  bottom: 30px; right: 0;
  z-index: 50;
  background: var(--navy);
  color: var(--white);
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 14px 20px;
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transition: background 0.25s;
}

.contact-fab:hover { background: var(--gold); }

.contact-fab svg { width: 16px; height: 16px; fill: currentColor; }



/* ─── SCROLL INDICATOR ─────────────────────────────── */
.scroll-indicator {
  position: absolute;
  bottom: 10px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 10;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  opacity: 0.7;
}

.scroll-indicator span {
  font-size: 0.65rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--white);
}

.scroll-line {
  width: 1px;
  height: 40px;
  background: var(--white);
  animation: scrollPulse 1.5s infinite;
}

@keyframes scrollPulse {
  0%   { transform: scaleY(0); transform-origin: top; }
  50%  { transform: scaleY(1); transform-origin: top; }
  51%  { transform: scaleY(1); transform-origin: bottom; }
  100% { transform: scaleY(0); transform-origin: bottom; }
}

/* ─── INFO STRIP ───────────────────────────────────── */
.info-strip {
  background: var(--gold);
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0;
}

.info-item {
  padding: 18px 40px;
  display: flex;
  align-items: center;
  gap: 12px;
  border-right: 1px solid rgba(255,255,255,0.3);
  flex: 1;
  min-width: 200px;
  justify-content: center;
}

.info-item:last-child { border-right: none; }

.info-item svg { width: 22px; height: 22px; fill: var(--white); flex-shrink: 0; }

.info-text { display: flex; flex-direction: column; }

.info-label {
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.8);
}

.info-value {
  font-family: var(--font-body);
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--white);
}

/* ─── IMAGE SLIDER ─────────────────────────────────── */
.slider-section {
  background: var(--navy);
  padding: 60px 0;
  overflow: hidden;
}

.slider-header {
  text-align: center;
  margin-bottom: 36px;
  padding: 0 20px;
}

.slider-header .section-eyebrow {
  color: var(--gold);
  margin-bottom: 10px;
}

.slider-header h2 {
  font-family: var(--font-serif);
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  font-weight: 700;
  color: var(--white);
  line-height: 1.2;
}

.slider-wrapper {
  position: relative;
  width: 100%;
  overflow: hidden;
}

.slider-track {
  display: flex;
  transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.slide {
  min-width: 33.333%;
  padding: 0 10px;
  flex-shrink: 0;
}

.slide img {
  width: 100%;
  height: 260px;
  object-fit: cover;
  display: block;
  border-bottom: 3px solid var(--gold);
}

.slide-caption {
  background: rgba(13, 27, 42, 0.9);
  padding: 12px 16px;
  font-size: 0.8rem;
  color: rgba(255,255,255,0.75);
  letter-spacing: 0.05em;
  text-align: center;
}

.slider-dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 24px;
}

.slider-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(255,255,255,0.3);
  border: none;
  cursor: pointer;
  transition: background 0.3s, transform 0.3s;
  padding: 0;
}

.slider-dot.active {
  background: var(--gold);
  transform: scale(1.3);
}

.slider-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(13,27,42,0.8);
  border: 2px solid var(--gold);
  color: var(--gold);
  width: 42px;
  height: 42px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 10;
  transition: background 0.25s;
  font-size: 1.1rem;
}

.slider-arrow:hover { background: var(--gold); color: var(--white); }
.slider-arrow.prev { left: 16px; }
.slider-arrow.next { right: 16px; }

/* ─── ABOUT SECTION ────────────────────────────────── */
.about-section {
  background: var(--offwhite);
  color: var(--navy);
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 520px;
}

.about-image {
  background-size: cover;
  background-position: center;
  min-height: 350px;
}

.about-text {
  padding: 70px 60px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.section-eyebrow {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 12px;
}

.section-title {
  font-family: var(--font-serif);
  font-size: clamp(1.8rem, 3vw, 2.8rem);
  font-weight: 700;
  line-height: 1.2;
  color: var(--navy);
  margin-bottom: 20px;
}

.section-body {
  font-size: 0.95rem;
  line-height: 1.8;
  color: #444;
  margin-bottom: 30px;
  max-width: 480px;
}

.section-divider {
  width: 50px;
  height: 3px;
  background: var(--red-accent);
  margin-bottom: 20px;
}

/* ─── STATS ROW ────────────────────────────────────── */
.stats-row {
  background: var(--navy);
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
}

.stat-item {
  padding: 50px 60px;
  text-align: center;
  border-right: 1px solid rgba(255,255,255,0.1);
  flex: 1;
  min-width: 150px;
}

.stat-item:last-child { border-right: none; }

.stat-number {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 800;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 8px;
}

.stat-label {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.6);
}

/* ─── FOOTER ───────────────────────────────────────── */
.footer {
  background: var(--offwhite);
  color: var(--navy);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  padding: 60px 80px;
}

.footer-heading {
  font-family: var(--font-serif);
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 14px;
}

.footer-heading-line {
  width: 50px;
  height: 3px;
  background: var(--gold);
  margin-bottom: 30px;
}

.footer-contact-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.footer-contact-list li {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  font-size: 0.95rem;
  color: #333;
  line-height: 1.5;
}

.footer-icon {
  width: 42px;
  height: 42px;
  min-width: 42px;
  border: 1px solid #ccc;
  display: flex;
  align-items: center;
  justify-content: center;
}

.footer-icon svg {
  width: 18px;
  height: 18px;
  fill: none;
  stroke: var(--navy);
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.footer-links-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0 20px;
}

.footer-links-grid ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.footer-links-grid a {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.95rem;
  color: #333;
  text-decoration: none;
  transition: color 0.2s;
}

.footer-links-grid a:hover { color: var(--gold); }

.footer-links-grid a span {
  color: var(--gold);
  font-size: 0.75rem;
}

.footer-bottom {
  background: var(--navy);
  padding: 20px 80px;
  font-size: 0.8rem;
  color: rgba(255,255,255,0.6);
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

/* ─── RESPONSIVE ───────────────────────────────────── */

/* Tablet: up to 1024px */
@media (max-width: 1024px) {
  .navbar { padding: 16px 24px; }
  .nav-actions .nav-btn:nth-child(6),
  .nav-actions .nav-btn:nth-child(7) { display: none; }
  .logo-main { font-size: 1.2rem; }
  .logo-img { width: 40px; height: 40px; }
  .about-section { grid-template-columns: 1fr; }
  .about-image { min-height: 280px; }
  .about-text { padding: 50px 40px; }
  .stat-item { padding: 40px 30px; }
  .info-item { padding: 16px 24px; min-width: 160px; }
  .footer { grid-template-columns: 1fr 1fr; padding: 40px 40px; gap: 40px; }
  .footer-bottom { padding: 18px 40px; }
  .slide { min-width: 50%; }
}

/* Mobile: up to 767px */
@media (max-width: 767px) {
  .navbar { padding: 14px 20px; }
  .nav-actions { display: none; }
  .hamburger { display: flex; }
  .logo-main { font-size: 1.1rem; }
  .logo-img { width: 36px; height: 36px; }
  .logo { gap: 8px; }
  .hero { padding: 80px 0 60px; }
  .hero-content { padding: 0 16px; }
  .hero-title { line-height: 1; }
  .hero-cta-group { gap: 10px; }
  .cta-btn { padding: 12px 22px; font-size: 0.72rem; }
  .social-sidebar { display: none; }
  .info-strip { flex-direction: column; }
  .info-item {
    border-right: none;
    border-bottom: 1px solid rgba(255,255,255,0.2);
    min-width: 100%;
    justify-content: flex-start;
    padding: 14px 24px;
  }
  .info-item:last-child { border-bottom: none; }
  .about-text { padding: 36px 24px; }
  .stats-row { flex-direction: column; }
  .stat-item {
    border-right: none;
    border-bottom: 1px solid rgba(255,255,255,0.1);
    padding: 30px 24px;
    min-width: 100%;
  }
  .stat-item:last-child { border-bottom: none; }
  .contact-fab { bottom: 16px; padding: 12px 16px; }
  .scroll-indicator { display: none; }
  .footer { grid-template-columns: 1fr; padding: 36px 24px; gap: 36px; }
  .footer-bottom { padding: 16px 24px; }
  .slide { min-width: 100%; }
  .slide img { height: 200px; }
  .slider-section { padding: 40px 0; }
}

/* Small phones: up to 380px */
@media (max-width: 380px) {
  .hero-title { font-size: 2.8rem; }
  .hero-subtitle { font-size: 1.1rem; }
  .logo-main { font-size: 0.95rem; }
  .logo-img { width: 30px; height: 30px; }
}