/* ============================================
   THE LUCKY CATCH — Elegant & Modern Stylesheet
   ============================================ */

/* ---- Custom Properties ---- */
:root {
  --navy:        #1E3A5F;
  --navy-dark:   #152A47;
  --navy-mid:    #243F68;
  --gold:        #C9A84C;
  --gold-light:  #DFC06E;
  --gold-pale:   #F5EDD4;
  --cream:       #FAF8F4;
  --cream-dark:  #EDE9E0;
  --white:       #FFFFFF;
  --text:        #2D2D2D;
  --text-light:  #6B6B6B;
  --shadow:      0 4px 24px rgba(30, 58, 95, 0.09);
  --shadow-lg:   0 12px 48px rgba(30, 58, 95, 0.16);
  --radius:      12px;
  --radius-lg:   20px;
  --radius-xl:   28px;
  --transition:  0.28s ease;
  --max-w:       1180px;
}

/* ---- Reset & Base ---- */
*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

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

body {
  font-family: 'Inter', sans-serif;
  color: var(--text);
  background: var(--cream);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

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

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

button {
  font-family: inherit;
}

/* ---- Typography ---- */
h1, h2, h3, h4 {
  font-family: 'Playfair Display', serif;
  line-height: 1.2;
}

/* ---- Layout Utilities ---- */
.container {
  max-width: var(--max-w);
  margin-inline: auto;
  padding-inline: 24px;
}

.section {
  padding-block: 96px;
}

.section-label {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 10px;
}

.section-title {
  font-size: clamp(1.9rem, 3.5vw, 2.75rem);
  color: var(--navy);
  margin-bottom: 14px;
}

.section-subtitle {
  font-size: 1rem;
  color: var(--text-light);
  max-width: 580px;
  line-height: 1.75;
}

.section-header {
  text-align: center;
  margin-bottom: 60px;
}

.section-header .section-subtitle {
  margin-inline: auto;
}

/* ---- Buttons ---- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 32px;
  border-radius: 8px;
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 0.01em;
  cursor: pointer;
  transition: all var(--transition);
  border: 2px solid transparent;
  white-space: nowrap;
  line-height: 1;
}

.btn-primary {
  background: var(--gold);
  color: var(--navy-dark);
  border-color: var(--gold);
}
.btn-primary:hover {
  background: var(--gold-light);
  border-color: var(--gold-light);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(201, 168, 76, 0.38);
}

.btn-outline {
  background: transparent;
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.55);
}
.btn-outline:hover {
  background: rgba(255, 255, 255, 0.12);
  border-color: var(--white);
}

.btn-outline-pkg {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 13px 32px;
  border-radius: 8px;
  font-size: 0.9rem;
  font-weight: 600;
  cursor: pointer;
  transition: all var(--transition);
  border: 2px solid rgba(255, 255, 255, 0.3);
  color: var(--white);
  background: transparent;
  text-decoration: none;
}
.btn-outline-pkg:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.6);
}

.btn-full { width: 100%; }

/* ---- Fade-in Animation ---- */
.fade-in {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.65s ease, transform 0.65s ease;
}
.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ============================================
   NAVIGATION
   ============================================ */
.navbar {
  position: fixed;
  inset-block-start: 0;
  inset-inline: 0;
  z-index: 999;
  background: transparent;
  transition: background var(--transition), box-shadow var(--transition);
}

.navbar.scrolled {
  background: var(--white);
  box-shadow: 0 1px 20px rgba(30, 58, 95, 0.1);
}

.nav-container {
  max-width: var(--max-w);
  margin-inline: auto;
  padding-inline: 24px;
  height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

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

.logo-icon { font-size: 1.45rem; }

.logo-text {
  font-family: 'Playfair Display', serif;
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--white);
  transition: color var(--transition);
}
.navbar.scrolled .logo-text { color: var(--navy); }

.nav-links {
  display: flex;
  align-items: center;
  gap: 4px;
  list-style: none;
}

.nav-link {
  font-size: 0.88rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.82);
  text-decoration: none;
  padding: 8px 12px;
  border-radius: 6px;
  transition: color var(--transition);
}
.navbar.scrolled .nav-link { color: var(--text); }
.nav-link:hover { color: var(--gold); }

.nav-cta {
  background: var(--gold);
  color: var(--navy-dark) !important;
  padding: 10px 20px;
  border-radius: 8px;
  font-size: 0.88rem;
  font-weight: 700;
  text-decoration: none;
  transition: all var(--transition);
}
.nav-cta:hover {
  background: var(--gold-light);
  transform: translateY(-1px);
  box-shadow: 0 4px 14px rgba(201, 168, 76, 0.4);
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
  border-radius: 6px;
}
.hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: all var(--transition);
}
.navbar.scrolled .hamburger span { background: var(--navy); }
.hamburger.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.hamburger.active span:nth-child(2) { opacity: 0; }
.hamburger.active span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

/* ============================================
   HERO
   ============================================ */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  background: url('https://images.unsplash.com/photo-1760737188235-797715d85a64?auto=format&fit=crop&w=1800&q=80') center / cover no-repeat;
  background-attachment: fixed;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    155deg,
    rgba(18, 34, 58, 0.88) 0%,
    rgba(30, 58, 95, 0.72) 60%,
    rgba(30, 58, 95, 0.6) 100%
  );
}

.hero-content {
  position: relative;
  z-index: 1;
  padding-inline: 24px;
  max-width: 820px;
}

.hero-eyebrow {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 20px;
}

.hero-title {
  font-size: clamp(2.8rem, 7vw, 5.5rem);
  color: var(--white);
  margin-bottom: 24px;
  line-height: 1.08;
}
.hero-title em {
  font-style: italic;
  color: var(--gold);
}

.hero-subtitle {
  font-size: clamp(0.95rem, 1.8vw, 1.15rem);
  color: rgba(255, 255, 255, 0.82);
  max-width: 540px;
  margin-inline: auto;
  margin-bottom: 40px;
  line-height: 1.75;
}

.hero-buttons {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
}

.hero-scroll-hint {
  position: absolute;
  bottom: 36px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: rgba(255, 255, 255, 0.45);
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.scroll-arrow {
  width: 20px;
  height: 20px;
  border-right: 2px solid rgba(255, 255, 255, 0.35);
  border-bottom: 2px solid rgba(255, 255, 255, 0.35);
  transform: rotate(45deg);
  animation: bounce 1.6s ease-in-out infinite;
}

@keyframes bounce {
  0%, 100% { transform: rotate(45deg) translateY(0); }
  50%       { transform: rotate(45deg) translateY(5px); }
}

/* ============================================
   ABOUT
   ============================================ */
.about { background: var(--white); }

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: center;
}

.about-text .section-title { margin-bottom: 20px; }

.about-text p {
  color: var(--text-light);
  line-height: 1.82;
  margin-bottom: 18px;
}

.about-stats {
  display: flex;
  gap: 36px;
  margin-top: 40px;
  padding-top: 36px;
  border-top: 1px solid var(--cream-dark);
}

.stat-number {
  display: block;
  font-family: 'Playfair Display', serif;
  font-size: 2.2rem;
  font-weight: 700;
  color: var(--navy);
  line-height: 1;
  margin-bottom: 4px;
}

.stat-label {
  font-size: 0.78rem;
  font-weight: 500;
  color: var(--text-light);
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.about-image {
  position: relative;
}

.about-image img {
  width: 100%;
  height: 500px;
  object-fit: cover;
  border-radius: var(--radius-xl);
}

.about-badge {
  position: absolute;
  bottom: 32px;
  left: -24px;
  background: var(--white);
  padding: 18px 26px;
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
  text-align: center;
  line-height: 1.4;
}
.about-badge span {
  display: block;
  font-size: 0.7rem;
  color: var(--text-light);
  text-transform: uppercase;
  letter-spacing: 0.1em;
}
.about-badge strong {
  font-family: 'Playfair Display', serif;
  font-size: 1.05rem;
  color: var(--navy);
}

/* ============================================
   SERVICES
   ============================================ */
.services { background: var(--cream); }

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

.service-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: transform var(--transition), box-shadow var(--transition);
}
.service-card:hover {
  transform: translateY(-7px);
  box-shadow: var(--shadow-lg);
}

.service-img {
  height: 210px;
  overflow: hidden;
}
.service-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.55s ease;
}
.service-card:hover .service-img img { transform: scale(1.06); }

.service-content { padding: 28px; }

.service-icon {
  font-size: 1.8rem;
  margin-bottom: 10px;
  display: block;
}

.service-content h3 {
  font-size: 1.3rem;
  color: var(--navy);
  margin-bottom: 10px;
}

.service-content p {
  font-size: 0.9rem;
  color: var(--text-light);
  line-height: 1.75;
  margin-bottom: 18px;
}

.service-features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.service-features li {
  font-size: 0.84rem;
  color: var(--text-light);
  padding-left: 18px;
  position: relative;
}
.service-features li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--gold);
  font-weight: 700;
}

/* ============================================
   PACKAGES
   ============================================ */
.packages { background: var(--navy); }

.packages .section-label  { color: var(--gold); }
.packages .section-title  { color: var(--white); }
.packages .section-subtitle { color: rgba(255, 255, 255, 0.65); }

.packages-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  align-items: start;
}

.package-card {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.11);
  border-radius: var(--radius-lg);
  padding: 40px 32px;
  position: relative;
  transition: all var(--transition);
}
.package-card:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.2);
}

.package-card.featured {
  background: var(--white);
  border-color: var(--gold);
  transform: scale(1.05);
  box-shadow: 0 24px 64px rgba(0, 0, 0, 0.32);
  padding-top: 52px;
}

.package-badge {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--gold);
  color: var(--navy-dark);
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 6px 22px;
  border-radius: 20px;
  white-space: nowrap;
}

.package-header {
  text-align: center;
  margin-bottom: 32px;
  padding-bottom: 28px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}
.package-card.featured .package-header {
  border-bottom-color: var(--cream-dark);
}

.package-header h3 {
  font-size: 1.35rem;
  color: var(--white);
  margin-bottom: 14px;
}
.package-card.featured .package-header h3 { color: var(--navy); }

.package-price {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  gap: 4px;
  line-height: 1;
}

.price-from {
  font-size: 0.72rem;
  color: rgba(255, 255, 255, 0.5);
  margin-top: 12px;
}
.package-card.featured .price-from { color: var(--text-light); }

.price-amount {
  font-family: 'Playfair Display', serif;
  font-size: 3rem;
  font-weight: 700;
  color: var(--gold);
  letter-spacing: -0.02em;
}
.package-card.featured .price-amount { color: var(--navy); }

.package-features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 36px;
}
.package-features li {
  font-size: 0.88rem;
  color: rgba(255, 255, 255, 0.82);
}
.package-card.featured .package-features li { color: var(--text); }
.package-features li.inactive {
  color: rgba(255, 255, 255, 0.28);
  text-decoration: line-through;
  text-decoration-color: rgba(255, 255, 255, 0.15);
}
.package-card.featured .package-features li.inactive {
  color: var(--text-light);
  opacity: 0.4;
}

.packages-note {
  text-align: center;
  color: rgba(255, 255, 255, 0.45);
  font-size: 0.84rem;
  margin-top: 52px;
  line-height: 1.7;
}
.packages-note a {
  color: var(--gold);
  text-decoration: underline;
  text-underline-offset: 3px;
}

/* ============================================
   HOW IT WORKS
   ============================================ */
.how-it-works { background: var(--cream); }

.steps-grid {
  display: grid;
  grid-template-columns: 1fr 48px 1fr 48px 1fr 48px 1fr;
  align-items: flex-start;
  gap: 0;
}

.step { text-align: center; }

.step-number {
  display: inline-block;
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.15em;
  color: var(--gold);
  background: var(--gold-pale);
  padding: 4px 10px;
  border-radius: 20px;
  margin-bottom: 14px;
}

.step-icon {
  font-size: 2.4rem;
  margin-bottom: 14px;
  display: block;
}

.step h3 {
  font-size: 1.1rem;
  color: var(--navy);
  margin-bottom: 10px;
}

.step p {
  font-size: 0.875rem;
  color: var(--text-light);
  line-height: 1.75;
}

.step-connector {
  display: flex;
  align-items: center;
  justify-content: center;
  padding-top: 58px;
}
.step-connector::after {
  content: '';
  display: block;
  width: 100%;
  height: 2px;
  background: linear-gradient(90deg, var(--gold), rgba(201, 168, 76, 0.2));
  border-radius: 2px;
}

/* ============================================
   GALLERY
   ============================================ */
.gallery { background: var(--white); }

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-auto-rows: 285px;
  gap: 14px;
}

.gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius);
  cursor: pointer;
  background: var(--cream-dark);
}
.gallery-item.large { grid-column: span 2; }

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.55s ease;
}
.gallery-item:hover img { transform: scale(1.07); }

.gallery-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(18, 34, 58, 0.75) 0%, transparent 55%);
  display: flex;
  align-items: flex-end;
  padding: 20px;
  opacity: 0;
  transition: opacity var(--transition);
}
.gallery-item:hover .gallery-overlay { opacity: 1; }

.gallery-overlay span {
  color: var(--white);
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

/* ============================================
   TESTIMONIALS
   ============================================ */
.testimonials { background: var(--cream); }

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

.testimonial-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 36px;
  box-shadow: var(--shadow);
  transition: transform var(--transition), box-shadow var(--transition);
}
.testimonial-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.stars {
  color: var(--gold);
  font-size: 1rem;
  letter-spacing: 3px;
  margin-bottom: 16px;
}

.testimonial-card p {
  font-size: 0.93rem;
  color: var(--text-light);
  line-height: 1.82;
  font-style: italic;
  margin-bottom: 24px;
}

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

.author-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--navy);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
  font-weight: 700;
  flex-shrink: 0;
  letter-spacing: 0.03em;
}

.testimonial-author strong {
  display: block;
  font-family: 'Playfair Display', serif;
  font-size: 0.95rem;
  color: var(--navy);
  margin-bottom: 2px;
}

.testimonial-author span {
  font-size: 0.78rem;
  color: var(--text-light);
}

/* ============================================
   FAQ
   ============================================ */
.faq { background: var(--white); }

.faq-list {
  max-width: 760px;
  margin-inline: auto;
}

.faq-item {
  border-bottom: 1px solid var(--cream-dark);
}

.faq-question {
  width: 100%;
  text-align: left;
  background: none;
  border: none;
  padding: 22px 0;
  font-family: 'Inter', sans-serif;
  font-size: 1rem;
  font-weight: 600;
  color: var(--navy);
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  transition: color var(--transition);
}
.faq-question:hover { color: var(--gold); }
.faq-question::after {
  content: '+';
  font-size: 1.5rem;
  font-weight: 300;
  color: var(--gold);
  flex-shrink: 0;
  transition: transform var(--transition);
  line-height: 1;
}
.faq-item.open .faq-question::after { transform: rotate(45deg); }

.faq-answer {
  display: none;
  padding-bottom: 22px;
}
.faq-answer p {
  font-size: 0.93rem;
  color: var(--text-light);
  line-height: 1.82;
}
.faq-item.open .faq-answer { display: block; }

/* ============================================
   CONTACT
   ============================================ */
.contact { background: var(--cream); }

.contact-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: 64px;
  align-items: start;
}

/* Form */
.contact-form {
  background: var(--white);
  padding: 48px;
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow);
}

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

.form-group {
  display: flex;
  flex-direction: column;
  gap: 7px;
  margin-bottom: 18px;
}

label {
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--navy);
  letter-spacing: 0.02em;
}

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

input,
select,
textarea {
  padding: 12px 16px;
  border: 1.5px solid var(--cream-dark);
  border-radius: 8px;
  font-family: 'Inter', sans-serif;
  font-size: 0.93rem;
  color: var(--text);
  background: var(--white);
  transition: border-color var(--transition), box-shadow var(--transition);
  outline: none;
  width: 100%;
}
input:focus,
select:focus,
textarea:focus {
  border-color: var(--navy);
  box-shadow: 0 0 0 3px rgba(30, 58, 95, 0.07);
}
input::placeholder,
textarea::placeholder { color: #c0bab0; }

select {
  appearance: none;
  -webkit-appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='7' viewBox='0 0 12 7'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%23888' stroke-width='1.5' fill='none' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
  cursor: pointer;
}

textarea { resize: vertical; min-height: 110px; }

.form-success {
  display: none;
  text-align: center;
  padding: 28px;
  background: #f0fdf4;
  border: 1px solid #86efac;
  border-radius: var(--radius);
  margin-top: 16px;
}
.form-success span {
  font-size: 2rem;
  display: block;
  margin-bottom: 8px;
}
.form-success p {
  color: #166534;
  font-weight: 600;
  font-size: 0.95rem;
}

/* Contact Info */
.contact-info { padding-top: 4px; }

.contact-info h3 {
  font-size: 1.9rem;
  color: var(--navy);
  margin-bottom: 32px;
}

.contact-details {
  display: flex;
  flex-direction: column;
  gap: 22px;
  margin-bottom: 36px;
}

.contact-detail {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}

.detail-icon {
  font-size: 1.3rem;
  width: 38px;
  text-align: center;
  flex-shrink: 0;
  padding-top: 2px;
}

.contact-detail strong {
  display: block;
  font-size: 0.72rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 4px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.contact-detail p {
  font-size: 0.92rem;
  color: var(--text-light);
  line-height: 1.55;
}

.contact-detail a {
  color: var(--text-light);
  text-decoration: none;
  transition: color var(--transition);
}
.contact-detail a:hover { color: var(--gold); }

.contact-cta-box {
  background: var(--navy);
  padding: 28px 30px;
  border-radius: var(--radius);
  border-left: 4px solid var(--gold);
}
.contact-cta-box p {
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.9rem;
  line-height: 1.75;
}

/* ============================================
   FOOTER
   ============================================ */
.footer {
  background: var(--navy-dark);
  padding-top: 72px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.4fr;
  gap: 48px;
  padding-bottom: 60px;
}

.footer-brand .footer-logo { margin-bottom: 16px; display: inline-flex; }
.footer-logo-text { color: var(--white) !important; }

.footer-brand p {
  font-size: 0.86rem;
  color: rgba(255, 255, 255, 0.52);
  line-height: 1.75;
  max-width: 290px;
}

.social-links {
  display: flex;
  gap: 10px;
  margin-top: 22px;
}

.social-link {
  width: 40px;
  height: 40px;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.07);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, 0.55);
  transition: all var(--transition);
}
.social-link svg { width: 17px; height: 17px; }
.social-link:hover {
  background: var(--gold);
  color: var(--navy-dark);
}

.footer-links h4,
.footer-contact h4 {
  font-family: 'Inter', sans-serif;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 18px;
}

.footer-links ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 9px;
}

.footer-links a {
  font-size: 0.86rem;
  color: rgba(255, 255, 255, 0.52);
  text-decoration: none;
  transition: color var(--transition);
}
.footer-links a:hover { color: var(--gold); }

.footer-contact p {
  font-size: 0.86rem;
  color: rgba(255, 255, 255, 0.52);
  margin-bottom: 7px;
}
.footer-contact a {
  color: rgba(255, 255, 255, 0.52);
  text-decoration: none;
  transition: color var(--transition);
}
.footer-contact a:hover { color: var(--gold); }

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.07);
  padding-block: 24px;
  text-align: center;
  font-size: 0.78rem;
  color: rgba(255, 255, 255, 0.3);
}

/* ============================================
   RESPONSIVE — Tablet (≤1024px)
   ============================================ */
@media (max-width: 1024px) {
  .about-grid {
    grid-template-columns: 1fr;
    gap: 48px;
  }
  .about-image { order: -1; }
  .about-image img { height: 380px; }
  .about-badge { left: 20px; }

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

  .steps-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
  }
  .step-connector { display: none; }

  .gallery-grid {
    grid-template-rows: 250px 250px;
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 36px;
  }
  .footer-brand { grid-column: span 2; }
}

/* ============================================
   RESPONSIVE — Mobile (≤768px)
   ============================================ */
@media (max-width: 768px) {
  .section { padding-block: 64px; }

  /* Nav */
  .hamburger { display: flex; }

  .nav-links {
    display: none;
    position: absolute;
    top: 72px;
    left: 0;
    right: 0;
    background: var(--white);
    flex-direction: column;
    padding: 16px 20px 20px;
    gap: 2px;
    box-shadow: 0 8px 32px rgba(30, 58, 95, 0.14);
    border-top: 1px solid var(--cream-dark);
  }
  .nav-links.open { display: flex; }

  .nav-link {
    color: var(--text) !important;
    padding: 12px 8px;
    border-bottom: 1px solid var(--cream-dark);
    border-radius: 0;
    font-size: 0.95rem;
  }
  .nav-link:last-of-type { border-bottom: none; }
  .nav-cta {
    margin-top: 10px;
    text-align: center;
    display: block;
    padding: 13px;
  }

  /* Hero */
  .hero { background-attachment: scroll; }
  .hero-title { font-size: 2.8rem; }
  .hero-buttons { flex-direction: column; align-items: center; }

  /* Services */
  .services-grid { grid-template-columns: 1fr; }

  /* Packages */
  .packages-grid { grid-template-columns: 1fr; }
  .package-card.featured { transform: none; }

  /* Steps */
  .steps-grid {
    grid-template-columns: 1fr;
    gap: 36px;
  }

  /* Gallery */
  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
    grid-auto-rows: auto;
  }
  .gallery-item { height: 200px; }
  .gallery-item.large { grid-column: span 2; height: 240px; }

  /* Testimonials */
  .testimonials-grid { grid-template-columns: 1fr; }

  /* Contact */
  .contact-grid { grid-template-columns: 1fr; gap: 40px; }
  .contact-form { padding: 28px 22px; }
  .form-row { grid-template-columns: 1fr; }

  /* Footer */
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .footer-brand { grid-column: auto; }
}

/* ============================================
   RESPONSIVE — Small Mobile (≤480px)
   ============================================ */
@media (max-width: 480px) {
  .hero-title { font-size: 2.2rem; }

  .about-stats { flex-direction: column; gap: 20px; }

  .gallery-grid { grid-template-columns: 1fr; }
  .gallery-item { height: 200px; }
  .gallery-item.large { grid-column: span 1; }

  .contact-form { padding: 22px 16px; }
}
