/* =========================
   ROOT VARIABLES
========================= */
:root {
  --black: #0a0a0a;
  --black-soft: #121212;
  --gold: #d4af37;
  --text: #f2f2f2;
  --muted: #b8b8b8;
  --border-gold: rgba(212,175,55,0.35);
}

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

/* =========================
   GLOBAL
========================= */
body {
  font-family: 'Inter', sans-serif;
  background: var(--black);
  color: var(--text);
  line-height: 1.6;
}

h1, h2, h3 {
  font-family: 'Playfair Display', serif;
  font-weight: 600;
}

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

/* =========================
   NAVBAR (STATIC, LONG)
========================= */
.nav-static {
  position: sticky;
  top: 0;
  width: 100%;
  background: rgba(10,10,10,0.9);
  z-index: 100;
}

.nav-inner {
  max-width: 1300px;
  margin: auto;
  padding: 16px 28px;
  display: flex;
  align-items: center;
}

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

.logo {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  border: 2px solid var(--gold);
  overflow: hidden;
}

.logo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.brand-name {
  font-weight: 600;
  letter-spacing: 0.3px;
}

/* =========================
   HERO
========================= */
.hero {
  height: 100vh;
  position: relative;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background: url("ACC.jpg") center/cover no-repeat;
}

.hero-bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.75);
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 720px;
  height: 100%;
  padding: 0 28px;
  margin-left: clamp(24px, 10vw, 140px);
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.hero h1 {
  font-size: clamp(2.4rem, 5vw, 3.6rem);
  line-height: 1.1;
}

.hero p {
  margin-top: 22px;
  color: var(--muted);
  max-width: 520px;
}
/* NAV BUTTON */
.nav-btn {
  margin-left: auto;
  padding: 8px 18px;
  border-radius: 999px;
  border: 1px solid var(--gold);
  color: var(--gold);
  font-weight: 500;
  font-size: 0.9rem;
  transition: all 0.35s cubic-bezier(.2,.8,.2,1);
}

.nav-btn:hover {
  background: var(--gold);
  color: #000;
  transform: translateY(-1px);
}

/* =========================
   ABOUT SECTION
========================= */
.about-section {
  background: #0c0c0c;
  padding: 140px 24px;
}

.about-inner {
  max-width: 900px;
  margin: auto;
}

.about-section h2 {
  font-size: 2.2rem;
  margin-bottom: 32px;
}

.about-section p {
  color: var(--muted);
  font-size: 1.05rem;
  line-height: 1.8;
  margin-bottom: 24px;
}


/* =========================
   HERO CTA BUTTON
========================= */
.cta-btn {
  display: inline-block;
  margin-top: 36px;
  padding: 14px 34px;
  border-radius: 999px;
  border: 1px solid var(--gold);
  color: var(--gold);
  font-weight: 500;
  letter-spacing: 0.5px;
  transition: all 0.45s cubic-bezier(.2,.8,.2,1);
}

.cta-btn:hover {
  background: var(--gold);
  color: #000;
  transform: translateY(-3px);
}

/* =========================
   SECTIONS
========================= */
.section {
  max-width: 1200px;
  margin: auto;
  padding: 140px 28px;
}

.section h2 {
  font-size: 2.1rem;
  margin-bottom: 60px;
}

/* =========================
   PACKAGE CARDS
========================= */
.cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 36px;
}

.card {
  background: linear-gradient(180deg, #141414, #0d0d0d);
  border-radius: 26px;
  padding: 42px 36px;
  box-shadow: 0 30px 70px rgba(0,0,0,0.7);
  transition:
    transform 0.6s cubic-bezier(.2,.8,.2,1),
    box-shadow 0.6s cubic-bezier(.2,.8,.2,1);
}

.card:hover {
  transform: translateY(-18px) scale(1.02);
  box-shadow: 0 60px 120px rgba(212,175,55,0.35);
}

.card h3 {
  font-size: 1.3rem;
}

.card p {
  margin: 18px 0 28px;
  color: var(--muted);
}

/* =========================
   CARD BUTTON
========================= */
.card-btn {
  display: inline-block;
  padding: 10px 22px;
  border-radius: 10px;
  border: 1px solid var(--gold);
  color: var(--gold);
  font-weight: 500;
  transition: all 0.35s ease;
}

.card-btn:hover {
  background: var(--gold);
  color: #000;
}

/* =========================
   FORMS (QUOTE PAGE)
========================= */
.quote-form {
  max-width: 520px;
  display: grid;
  gap: 16px;
}

.quote-form input,
.quote-form textarea {
  background: #111;
  border: 1px solid #333;
  border-radius: 8px;
  padding: 14px;
  color: #fff;
  font-family: inherit;
}

.quote-form button {
  margin-top: 10px;
  background: transparent;
  border: 1px solid var(--gold);
  color: var(--gold);
  padding: 14px;
  border-radius: 8px;
  font-weight: 500;
  transition: all 0.35s ease;
}

.quote-form button:hover {
  background: var(--gold);
  color: #000;
}

/* =========================
   SUCCESS PAGE
========================= */
.success {
  text-align: center;
}

.btn {
  display: inline-block;
  margin-top: 24px;
  padding: 12px 22px;
  border: 1px solid var(--gold);
  border-radius: 8px;
  color: var(--gold);
}

.btn:hover {
  background: var(--gold);
  color: #000;
}

/* =========================
   FOOTER
========================= */
footer {
  text-align: center;
  padding: 60px 24px;
  color: #777;
}

/* =========================
   FADE ANIMATION
========================= */
.fade {
  opacity: 0;
  transform: translateY(28px);
  transition: all 1s cubic-bezier(.2,.8,.2,1);
}

.fade.show {
  opacity: 1;
  transform: none;
}

/* =========================
   MOBILE RESPONSIVENESS
========================= */
@media (max-width: 768px) {
  .hero-content {
    margin-left: 0;
  }

  .cta-btn {
    width: 100%;
    text-align: center;
  }

  .section {
    padding: 100px 20px;
  }

  .nav-inner {
    padding: 14px 20px;
  }
}
/* =========================
   QUOTE PAGE – CLEAN HEADER
========================= */
.quote-header {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 48px 20px 24px;
  border-bottom: 1px solid rgba(212,175,55,0.25);
}

.quote-logo {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  border: 2px solid var(--gold);
  object-fit: cover;
}

.quote-brand {
  margin-top: 12px;
  font-weight: 600;
  letter-spacing: 0.4px;
}

/* =========================
   QUOTE FORM SECTION
========================= */
.quote-section {
  max-width: 560px;
  margin: auto;
  padding: 80px 24px 120px;
  text-align: center;
}

.quote-section h1 {
  font-family: 'Playfair Display', serif;
  font-size: 2.2rem;
}

.quote-subtitle {
  margin-top: 14px;
  color: var(--gold);
  font-weight: 500;
}

/* FORM POLISH */
.quote-form {
  margin-top: 48px;
  text-align: left;
}

.quote-form input,
.quote-form textarea {
  background: #111;
  border: 1px solid #2a2a2a;
  border-radius: 10px;
  padding: 15px;
  font-size: 0.95rem;
}

.quote-form textarea {
  min-height: 110px;
}

.quote-form button {
  margin-top: 18px;
  width: 100%;
  font-size: 0.95rem;
}

/* MOBILE TUNING */
@media (max-width: 600px) {
  .quote-section {
    padding-top: 60px;
  }

  .quote-logo {
    width: 48px;
    height: 48px;
  }
}
/* =========================
   NAVBAR ANIMATION
========================= */
.nav-static {
  transform: translateY(-20px);
  opacity: 0;
  transition:
    transform 0.6s cubic-bezier(.2,.8,.2,1),
    opacity 0.6s cubic-bezier(.2,.8,.2,1),
    padding 0.3s ease,
    background 0.3s ease;
}

/* When page loads */
.nav-static.nav-show {
  transform: translateY(0);
  opacity: 1;
}

/* When scrolling down */
.nav-static.nav-scrolled {
  padding-top: 10px;
  padding-bottom: 10px;
  background: rgba(10,10,10,0.95);
}
.gold-list {
  list-style: none;
  padding-left: 0;
  margin: 15px 0;
}

.gold-list li {
  position: relative;
  padding-left: 22px;
  margin-bottom: 8px;
  font-size: 0.95rem;
  color: #b6b3b3;        /* text */
}

.gold-list li::before {
  content: "•";
  position: absolute;
  left: 0;
  color: #d4af37;        /* LUXURY GOLD bullet */
  font-size: 1.5rem;
  line-height: 1;
}
/* =========================
   ADD-ON SERVICES SECTION
========================= */
.addons-section {
  background: linear-gradient(180deg, #0a0a0a, #0e0e0e);
  padding: 140px 24px;
}

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

.addons-intro {
  margin-top: 12px;
  margin-bottom: 60px;
  color: var(--muted);
  max-width: 520px;
}

/* ADD-ON CARDS */
.addons-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 32px;
}

.addon-card {
  background: #121212;
  border-radius: 22px;
  padding: 36px 30px;
  box-shadow: 0 22px 50px rgba(0,0,0,0.65);
  transition:
    transform 0.55s cubic-bezier(.2,.8,.2,1),
    box-shadow 0.55s cubic-bezier(.2,.8,.2,1);
}

.addon-card:hover {
  transform: translateY(-14px);
  box-shadow: 0 50px 100px rgba(212,175,55,0.28);
}

.addon-card h3 {
  font-size: 1.2rem;
}

.addon-card p {
  margin-top: 14px;
  color: var(--muted);
  line-height: 1.7;
}
/* =========================
   WHY CHOOSE US SECTION
========================= */
.why-section {
  background: #0b0b0b;
  padding: 140px 24px;
}

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

.why-section h2 {
  font-size: 2.2rem;
  margin-bottom: 70px;
}

/* GRID */
.why-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 36px;
}

/* =========================
   LUXURY CARD STYLE
========================= */
.why-card-alt {
  position: relative;
  background: radial-gradient(
    circle at top,
    #161616,
    #0c0c0c
  );
  border-radius: 28px;
  padding: 46px 40px;
  box-shadow: 0 26px 65px rgba(0,0,0,0.75);
  overflow: hidden;
  transition:
    transform 0.7s cubic-bezier(.2,.8,.2,1),
    box-shadow 0.7s cubic-bezier(.2,.8,.2,1);
}

/* GOLD ACCENT LINE */
.why-card-alt .gold-line {
  position: absolute;
  top: 32px;
  left: 40px;
  width: 44px;
  height: 2px;
  background: var(--gold);
  transition: width 0.6s cubic-bezier(.2,.8,.2,1);
}

/* HOVER EFFECT */
.why-card-alt:hover {
  transform: translateY(-18px);
  box-shadow: 0 60px 120px rgba(212,175,55,0.35);
}

.why-card-alt:hover .gold-line {
  width: 100px;
}

/* TYPOGRAPHY */
.why-card-alt h3 {
  margin-top: 26px;
  font-size: 1.3rem;
}

.why-card-alt p {
  margin-top: 18px;
  color: var(--muted);
  line-height: 1.8;
}

/* MOBILE TUNING */
@media (max-width: 600px) {
  .why-card-alt {
    padding: 38px 30px;
  }

  .why-card-alt .gold-line {
    left: 30px;
  }
}


