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

/* ===================== CUSTOM PROPERTIES ===================== */
:root {
  --color-bg: #FFFFFF;
  --color-bg-alt: #F4F6FA;
  --color-bg-dark: #0B1C3D;
  --color-navy: #0D2B5E;
  --color-navy-mid: #163A7A;
  --color-accent: #1A4BA0;
  --color-accent-light: #2E63C4;
  --color-gold: #C8A96E;
  --color-gold-dark: #a88850;
  --color-text: #1A1A2E;
  --color-text-muted: #1E2A3A;
  --color-border: #DDE3EF;
  --color-white: #FFFFFF;

  --font-heading: 'Cormorant Garamond', Georgia, serif;
  --font-body: 'Nunito Sans', system-ui, sans-serif;

  --space-xs: 8px;
  --space-sm: 16px;
  --space-md: 24px;
  --space-lg: 40px;
  --space-xl: 64px;
  --space-2xl: 96px;

  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 16px;
  --radius-xl: 20px;

  --shadow-card: 0 2px 20px rgba(13, 43, 94, 0.08);
  --shadow-card-hover: 0 8px 40px rgba(13, 43, 94, 0.16);
  --shadow-navy: 0 16px 48px rgba(13, 43, 94, 0.35);

  --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ===================== RESET & BASE ===================== */
*, *::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-body);
  font-weight: 400;
  color: var(--color-text);
  background: var(--color-bg);
  line-height: 1.6;
  overflow-x: hidden;
}

img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; }
address { font-style: normal; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }
ul, ol { list-style: none; }

/* ===================== LAYOUT ===================== */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 var(--space-sm);
}

@media (min-width: 768px) {
  .container { padding: 0 var(--space-md); }
}
@media (min-width: 1024px) {
  .container { padding: 0 var(--space-lg); }
}

/* ===================== TYPOGRAPHY ===================== */
.overline {
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--color-gold);
  margin-bottom: var(--space-xs);
}

.section-title {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 4vw, 2.8rem);
  font-weight: 700;
  color: var(--color-navy);
  line-height: 1.2;
  text-align: center;
  margin-bottom: var(--space-sm);
}

.section-title--left { text-align: left; }

.section-header {
  text-align: center;
  margin-bottom: var(--space-xl);
}

.section-sub {
  font-size: 1rem;
  color: #1E2A3A;
  max-width: 600px;
  margin: 0 auto;
  margin-top: var(--space-xs);
  line-height: 1.7;
  font-weight: 400;
}

/* ===================== BUTTONS ===================== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 32px;
  border-radius: 6px;
  font-family: var(--font-body);
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 0.5px;
  transition: all var(--transition);
  white-space: nowrap;
}

.btn--gold {
  background: var(--color-gold);
  color: var(--color-navy);
}
.btn--gold:hover {
  background: var(--color-gold-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(200, 169, 110, 0.4);
}

.btn--navy {
  background: var(--color-navy);
  color: var(--color-white);
}
.btn--navy:hover {
  background: var(--color-navy-mid);
  transform: translateY(-2px);
}

.btn--outline-white {
  background: transparent;
  color: var(--color-white);
  border: 1.5px solid rgba(255,255,255,0.7);
}
.btn--outline-white:hover {
  background: rgba(255,255,255,0.1);
  border-color: var(--color-white);
  transform: translateY(-2px);
}

/* ===================== SCROLL REVEAL ===================== */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.65s ease, transform 0.65s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ===================== NAVBAR ===================== */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: transparent;
  transition: background var(--transition), box-shadow var(--transition), backdrop-filter var(--transition);
}

.navbar.scrolled {
  background: var(--color-white);
  box-shadow: 0 2px 20px rgba(13, 43, 94, 0.1);
}

.navbar__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
  padding: 0 var(--space-md);
  max-width: 1280px;
  margin: 0 auto;
}

.navbar__brand {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}

.navbar__logo {
  height: 44px;
  width: auto;
  object-fit: contain;
}

.navbar__name {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--color-white);
  transition: color var(--transition);
  white-space: nowrap;
}

.navbar.scrolled .navbar__name { color: var(--color-navy); }

.navbar__nav {
  display: none;
  align-items: center;
  gap: var(--space-sm);
}

@media (min-width: 1024px) {
  .navbar__nav { display: flex; }
}

.navbar__link {
  font-size: 0.9rem;
  font-weight: 600;
  color: rgba(255,255,255,0.9);
  padding: 6px 4px;
  position: relative;
  transition: color var(--transition);
}

.navbar__link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 1.5px;
  background: var(--color-gold);
  transition: width var(--transition);
}

.navbar__link:hover::after,
.navbar__link.active::after { width: 100%; }

.navbar.scrolled .navbar__link { color: var(--color-text); }
.navbar__link:hover { color: var(--color-gold); }
.navbar.scrolled .navbar__link:hover { color: var(--color-accent); }

.navbar__cta {
  background: var(--color-navy);
  color: var(--color-white);
  padding: 10px 22px;
  border-radius: 6px;
  font-size: 0.875rem;
  font-weight: 600;
  margin-left: var(--space-xs);
  transition: all var(--transition);
}

.navbar.scrolled .navbar__cta {
  background: var(--color-navy);
}

.navbar__cta:hover {
  background: var(--color-gold);
  color: var(--color-navy);
  transform: translateY(-1px);
}

/* Hamburger */
.navbar__hamburger {
  display: flex;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
  background: none;
  border: none;
  cursor: pointer;
}

@media (min-width: 1024px) {
  .navbar__hamburger { display: none; }
}

.navbar__hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--color-white);
  border-radius: 2px;
  transition: all 0.3s ease;
  transform-origin: center;
}

.navbar.scrolled .navbar__hamburger span { background: var(--color-navy); }

.navbar__hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.navbar__hamburger.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.navbar__hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile Menu */
.navbar__mobile {
  display: none;
  flex-direction: column;
  background: var(--color-white);
  border-top: 1px solid var(--color-border);
  box-shadow: 0 8px 24px rgba(13, 43, 94, 0.12);
  padding: var(--space-sm) var(--space-md) var(--space-md);
  gap: 4px;
}

.navbar__mobile.open {
  display: flex;
}

@media (min-width: 1024px) {
  .navbar__mobile { display: none !important; }
}

.navbar__mobile-link {
  display: block;
  padding: 12px var(--space-sm);
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--color-text);
  border-radius: var(--radius-sm);
  transition: all var(--transition);
}

.navbar__mobile-link:hover {
  color: var(--color-accent);
  background: var(--color-bg-alt);
  padding-left: var(--space-md);
}

.navbar__mobile-cta {
  display: block;
  margin-top: var(--space-sm);
  padding: 14px var(--space-sm);
  background: var(--color-navy);
  color: var(--color-white);
  border-radius: 6px;
  font-weight: 600;
  text-align: center;
  transition: all var(--transition);
}

.navbar__mobile-cta:hover { background: var(--color-gold); color: var(--color-navy); }

/* ===================== HERO ===================== */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.hero__bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  background-color: var(--color-bg-dark);
  transform: scale(1.05);
  transition: transform 8s ease;
}

.hero:hover .hero__bg { transform: scale(1); }

.hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(11, 28, 61, 0.75) 0%,
    rgba(13, 43, 94, 0.60) 50%,
    rgba(11, 28, 61, 0.70) 100%
  );
}

.hero__content {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 120px var(--space-md) var(--space-xl);
  max-width: 900px;
  animation: heroFadeUp 1.1s ease forwards;
}

@keyframes heroFadeUp {
  from { opacity: 0; transform: translateY(40px); }
  to { opacity: 1; transform: translateY(0); }
}

.hero__overline {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--color-gold);
  margin-bottom: var(--space-md);
  opacity: 0.9;
}

.hero__title {
  font-family: var(--font-heading);
  font-size: clamp(2.4rem, 6vw, 4.5rem);
  font-weight: 700;
  color: var(--color-white);
  line-height: 1.1;
  margin-bottom: var(--space-md);
  text-shadow: 0 2px 20px rgba(0,0,0,0.3);
}

.hero__sub {
  font-size: clamp(1rem, 2vw, 1.125rem);
  color: rgba(255,255,255,0.9);
  margin-bottom: var(--space-lg);
  line-height: 1.7;
  font-weight: 400;
}

.hero__btns {
  display: flex;
  gap: var(--space-sm);
  justify-content: center;
  flex-wrap: wrap;
}

.hero__scroll {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  color: rgba(255,255,255,0.6);
  animation: scrollBounce 2.5s ease-in-out infinite;
  transition: color var(--transition);
}

.hero__scroll:hover { color: var(--color-gold); }

@keyframes scrollBounce {
  0%, 100% { transform: translateX(-50%) translateY(0); opacity: 0.6; }
  50% { transform: translateX(-50%) translateY(8px); opacity: 1; }
}

/* ===================== STATS ===================== */
.stats {
  background: var(--color-navy);
  padding: var(--space-xl) 0;
}

.stats__inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 var(--space-md);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-lg) var(--space-md);
  align-items: center;
}

@media (min-width: 768px) {
  .stats__inner {
    grid-template-columns: 1fr auto 1fr auto 1fr auto 1fr;
    gap: 0;
  }
}

.stats__item {
  text-align: center;
  padding: var(--space-sm);
}

.stats__divider {
  display: none;
}

@media (min-width: 768px) {
  .stats__divider {
    display: block;
    width: 1px;
    height: 56px;
    background: rgba(255,255,255,0.15);
  }
}

.stats__num {
  display: block;
  font-family: var(--font-heading);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  color: var(--color-gold);
  line-height: 1;
  margin-bottom: 6px;
}

.stats__num--text {
  font-size: clamp(1.1rem, 2.5vw, 1.5rem);
  line-height: 1.2;
}

.stats__label {
  font-size: 0.8rem;
  font-weight: 600;
  color: rgba(255,255,255,0.82);
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* ===================== SERVICES ===================== */
.services {
  background: var(--color-bg-alt);
  padding: var(--space-2xl) 0;
}

.services__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-md);
}

@media (min-width: 640px) {
  .services__grid { grid-template-columns: 1fr 1fr; }
}

@media (min-width: 1024px) {
  .services__grid { grid-template-columns: repeat(4, 1fr); }
}

.service-card {
  background: var(--color-white);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: 28px;
  transition: all var(--transition);
  position: relative;
  overflow: hidden;
}

.service-card::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 3px;
  background: var(--color-gold);
  transform: scaleY(0);
  transition: transform var(--transition);
  transform-origin: bottom;
}

.service-card:hover {
  box-shadow: var(--shadow-card-hover);
  transform: translateY(-4px);
}

.service-card:hover::before { transform: scaleY(1); }

.service-card__icon {
  width: 48px;
  height: 48px;
  margin-bottom: var(--space-md);
  color: var(--color-navy);
}

.service-card__icon svg {
  width: 100%;
  height: 100%;
}

.service-card__title {
  font-family: var(--font-heading);
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--color-navy);
  margin-bottom: 10px;
  line-height: 1.3;
}

.service-card__desc {
  font-size: 0.9rem;
  color: #1E2A3A;
  line-height: 1.7;
  font-weight: 400;
}

/* ===================== GALLERY ===================== */
.gallery-section {
  background: var(--color-bg);
  padding: var(--space-2xl) 0;
}

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

.gallery-item {
  aspect-ratio: 4 / 3;
  overflow: hidden;
  border-radius: var(--radius-md);
  position: relative;
  cursor: pointer;
  background: var(--color-bg-alt);
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
  display: block;
}

.gallery-item__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(11,28,61,0.88) 0%, transparent 60%);
  display: flex;
  align-items: flex-end;
  padding: var(--space-md);
  transform: translateY(100%);
  transition: transform 0.4s ease;
}

.gallery-item:hover img { transform: scale(1.06); }
.gallery-item:hover .gallery-item__overlay { transform: translateY(0); }

.gallery-item__label {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--color-white);
  letter-spacing: 0.3px;
}

.gallery__empty {
  text-align: center;
  color: var(--color-text-muted);
  padding: var(--space-xl);
  font-style: italic;
}

/* ===================== ABOUT ===================== */
.about {
  background: var(--color-bg-alt);
  padding: var(--space-2xl) 0;
}

.about__inner {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-xl);
  align-items: center;
}

@media (min-width: 1024px) {
  .about__inner { grid-template-columns: 1fr 1fr; }
}

.about__image-wrap {
  position: relative;
  padding: 20px 20px 0 0;
}

.about__accent {
  position: absolute;
  top: 0;
  right: 0;
  width: 85%;
  height: 90%;
  background: var(--color-gold);
  border-radius: var(--radius-lg);
  opacity: 0.15;
  z-index: 0;
}

.about__image {
  position: relative;
  z-index: 1;
  width: 100%;
  height: 480px;
  object-fit: cover;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-navy);
  background: var(--color-border);
}

.about__no-image .about__image {
  background: linear-gradient(135deg, var(--color-navy) 0%, var(--color-accent) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
}

.about__text {
  color: #1A1A2E;
  line-height: 1.85;
  margin-bottom: var(--space-sm);
  font-size: 1rem;
  font-weight: 400;
}

.about__features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-sm) var(--space-md);
  margin-top: var(--space-md);
}

.about__feature {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.9rem;
  font-weight: 500;
  color: #1A1A2E;
  line-height: 1.4;
}

.about__check {
  color: var(--color-gold);
  font-size: 1rem;
  font-weight: 700;
  flex-shrink: 0;
  margin-top: 1px;
}

/* ===================== WHY US ===================== */
.why {
  background: var(--color-bg-dark);
  padding: var(--space-2xl) 0;
}

.why__title {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 4vw, 2.8rem);
  font-weight: 700;
  color: var(--color-white);
  text-align: center;
  margin-bottom: var(--space-xl);
}

.why__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-lg);
  align-items: center;
}

@media (min-width: 1024px) {
  .why__grid {
    grid-template-columns: 1fr auto 1fr auto 1fr;
    gap: 0;
  }
}

.why__divider {
  display: none;
}

@media (min-width: 1024px) {
  .why__divider {
    display: block;
    width: 1px;
    height: 120px;
    background: linear-gradient(to bottom, transparent, rgba(200,169,110,0.4), transparent);
  }
}

.why__item {
  text-align: center;
  padding: var(--space-md) var(--space-lg);
}

.why__icon {
  width: 56px;
  height: 56px;
  margin: 0 auto var(--space-md);
  color: var(--color-gold);
}

.why__icon svg {
  width: 100%;
  height: 100%;
}

.why__item-title {
  font-family: var(--font-heading);
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--color-white);
  margin-bottom: var(--space-sm);
}

.why__item-desc {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.82);
  line-height: 1.75;
  font-weight: 400;
  max-width: 280px;
  margin: 0 auto;
}

/* ===================== CONTACT ===================== */
.contact {
  background: var(--color-bg);
  padding: var(--space-2xl) 0;
}

.contact__card {
  max-width: 680px;
  margin: 0 auto;
  background: var(--color-navy);
  border-radius: var(--radius-xl);
  padding: 56px var(--space-lg);
  text-align: center;
  box-shadow: var(--shadow-navy);
}

@media (max-width: 640px) {
  .contact__card { padding: var(--space-lg) var(--space-md); }
}

.contact__logo {
  height: 56px;
  width: auto;
  object-fit: contain;
  margin: 0 auto var(--space-md);
}

.contact__name {
  font-family: var(--font-heading);
  font-size: 1.75rem;
  font-weight: 700;
  color: var(--color-white);
  margin-bottom: 8px;
}

.contact__tagline {
  font-size: 0.875rem;
  color: var(--color-gold);
  font-weight: 400;
  letter-spacing: 0.3px;
}

.contact__divider {
  width: 60px;
  height: 1px;
  background: var(--color-gold);
  margin: var(--space-md) auto;
  opacity: 0.7;
}

.contact__info {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-bottom: var(--space-lg);
}

.contact__item {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  font-size: 1rem;
  color: rgba(255,255,255,0.92);
  line-height: 1;
}

.contact__item svg { color: var(--color-gold); flex-shrink: 0; }

.contact__item a {
  color: rgba(255,255,255,0.92);
  transition: color var(--transition);
}

.contact__item a:hover { color: var(--color-gold); }

.contact__btns {
  display: flex;
  gap: var(--space-sm);
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: var(--space-md);
}

.contact__note {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.5);
  letter-spacing: 0.3px;
}

/* Contact Layout - 2 columns */
.contact__layout {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-xl);
  max-width: 1100px;
  margin: 0 auto;
}

@media (min-width: 1024px) {
  .contact__layout {
    grid-template-columns: 1fr 1fr;
    align-items: start;
  }
}

.contact__form-wrap {
  background: var(--color-white);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-xl);
  padding: 40px;
  box-shadow: var(--shadow-card);
}

@media (max-width: 640px) {
  .contact__form-wrap {
    padding: var(--space-md);
    border-radius: var(--radius-lg);
  }
}

.contact__form {
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.form-label {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--color-text);
}

.form-optional {
  font-weight: 400;
  color: var(--color-text-muted);
  font-size: 0.75rem;
}

.form-required {
  color: var(--color-gold);
}

.form-input,
.form-textarea {
  width: 100%;
  padding: 14px 16px;
  border: 1.5px solid var(--color-border);
  border-radius: var(--radius-sm);
  font-family: var(--font-body);
  font-size: 0.95rem;
  color: var(--color-text);
  background: var(--color-bg);
  transition: border-color var(--transition), box-shadow var(--transition);
}

.form-input:focus,
.form-textarea:focus {
  outline: none;
  border-color: var(--color-gold);
  box-shadow: 0 0 0 3px rgba(200, 169, 110, 0.15);
}

.form-input::placeholder,
.form-textarea::placeholder {
  color: var(--color-text-muted);
  opacity: 0.6;
}

.form-textarea {
  resize: vertical;
  min-height: 120px;
  max-height: 200px;
  line-height: 1.6;
}

.btn--full {
  width: 100%;
}

.form-status {
  margin-top: 4px;
  font-size: 0.875rem;
  line-height: 1.5;
  min-height: 24px;
}

.contact__card-wrap {
  height: 100%;
}

.contact__card-wrap .contact__card {
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

/* ===================== FOOTER ===================== */
.footer {
  background: var(--color-bg-dark);
  padding: var(--space-xl) 0 0;
}

.footer__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-lg);
  padding-bottom: var(--space-xl);
}

@media (min-width: 768px) {
  .footer__grid { grid-template-columns: 1.5fr 1fr 1fr; }
}

.footer__brand {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: var(--space-sm);
}

.footer__brand-name {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--color-white);
}

.footer__tagline {
  font-size: 0.875rem;
  color: rgba(255,255,255,0.6);
  margin-bottom: 6px;
  font-weight: 400;
}

.footer__area {
  font-size: 0.875rem;
  color: var(--color-gold);
  font-weight: 400;
}

.footer__col-title {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--color-gold);
  margin-bottom: var(--space-md);
}

.footer__link {
  display: block;
  font-size: 0.875rem;
  color: rgba(255,255,255,0.65);
  margin-bottom: 10px;
  transition: color var(--transition);
  font-weight: 400;
}

.footer__link:hover { color: var(--color-gold); }

.footer__contact p {
  font-size: 0.875rem;
  color: rgba(255,255,255,0.65);
  margin-bottom: 10px;
  font-weight: 400;
}

.footer__line {
  height: 1px;
  background: linear-gradient(to right, transparent, var(--color-gold), transparent);
  opacity: 0.3;
  margin-bottom: var(--space-md);
}

.footer__copy {
  text-align: center;
  font-size: 0.8rem;
  color: rgba(255,255,255,0.4);
  padding-bottom: var(--space-md);
  font-weight: 400;
}

/* ===================== LIGHTBOX ===================== */
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: rgba(11, 28, 61, 0.97);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.35s ease;
}

.lightbox.active {
  opacity: 1;
  pointer-events: all;
}

.lightbox__img-wrap {
  max-width: 90vw;
  max-height: 85vh;
  display: flex;
  align-items: center;
  justify-content: center;
}

.lightbox__img {
  max-width: 90vw;
  max-height: 80vh;
  object-fit: contain;
  border-radius: var(--radius-md);
  box-shadow: 0 24px 80px rgba(0,0,0,0.6);
}

.lightbox__close {
  position: absolute;
  top: 20px;
  right: 24px;
  color: rgba(255,255,255,0.7);
  padding: 8px;
  border-radius: 50%;
  transition: all var(--transition);
  background: rgba(255,255,255,0.08);
}

.lightbox__close:hover {
  color: var(--color-white);
  background: rgba(255,255,255,0.15);
  transform: rotate(90deg);
}

.lightbox__prev,
.lightbox__next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  color: rgba(255,255,255,0.7);
  padding: var(--space-sm);
  background: rgba(255,255,255,0.08);
  border-radius: 50%;
  transition: all var(--transition);
  backdrop-filter: blur(4px);
}

.lightbox__prev { left: 20px; }
.lightbox__next { right: 20px; }

.lightbox__prev:hover,
.lightbox__next:hover {
  color: var(--color-white);
  background: rgba(255,255,255,0.18);
  transform: translateY(-50%) scale(1.08);
}

.lightbox__caption {
  position: absolute;
  bottom: 24px;
  left: 50%;
  transform: translateX(-50%);
  font-size: 0.8rem;
  color: rgba(255,255,255,0.4);
  white-space: nowrap;
  letter-spacing: 0.5px;
}

/* ===================== RESPONSIVE TWEAKS ===================== */
@media (max-width: 768px) {
  .why__item { padding: var(--space-md); }
  .about__features { grid-template-columns: 1fr; }
  .contact__card { border-radius: var(--radius-lg); }
}

@media (min-width: 768px) {
  .stats__inner { grid-template-columns: 1fr auto 1fr auto 1fr auto 1fr; gap: 0; }
}