/* =========================================================
   The Grand Amour Banquets — Luxury Banquet Hall Stylesheet
   ========================================================= */

:root {
  --dark-green: #0f3b2e;
  --dark-green-2: #0a2a20;
  --gold: #c89b4d;
  --gold-2: #e5c07b;
  --champagne: #f6efe4;
  --cream: #fffaf3;
  --beige: #f2e7d5;
  --white: #ffffff;
  --text: #1e1e1e;
  --muted: #6b6b6b;
  --gradient: linear-gradient(135deg, #0f3b2e 0%, #c89b4d 100%);
  --gradient-soft: linear-gradient(135deg, rgba(15, 59, 46, .92), rgba(200, 155, 77, .85));
  --shadow-luxe: 0 25px 60px -20px rgba(15, 59, 46, .35);
  --shadow-gold: 0 10px 40px -10px rgba(200, 155, 77, .45);
  --radius-lg: 18px;
}

* {
  box-sizing: border-box
}

html {
  scroll-behavior: smooth
}

body {
  font-family: 'Poppins', sans-serif;
  color: var(--text);
  background: var(--cream);
  margin: 0;
  overflow-x: hidden;
  line-height: 1.65;
}

h1,
h2,
h3,
h4,
h5,
h6,
.serif {
  font-family: 'Playfair Display', serif;
  font-weight: 600;
  letter-spacing: .5px
}

.script {
  font-family: 'Great Vibes', cursive;
  color: var(--gold);
  font-weight: 400
}

a {
  color: inherit;
  text-decoration: none;
  transition: color .3s ease
}

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

::selection {
  background: var(--gold);
  color: #fff
}

/* ============ PRELOADER ============ */
#preloader {
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: radial-gradient(circle at center, #174736 0%, #174736 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  transition: opacity .8s ease, visibility .8s ease;
}

#preloader.hide {
  opacity: 0;
  visibility: hidden
}

#preloader img {
  width: 250px;
  filter: drop-shadow(0 8px 30px rgba(200, 155, 77, .5));
  animation: floatLogo 2.5s ease-in-out infinite
}

.preload-ring {
  margin-top: 30px;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  border: 2px solid rgba(255, 255, 255, .1);
  border-top-color: var(--gold);
  animation: spin 1.1s linear infinite;
}

@keyframes spin {
  to {
    transform: rotate(360deg)
  }
}

@keyframes floatLogo {

  0%,
  100% {
    transform: translateY(0)
  }

  50% {
    transform: translateY(-12px)
  }
}

/* ============ CURSOR GLOW ============ */
.cursor-glow {
  position: fixed;
  width: 380px;
  height: 380px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(200, 155, 77, .18), transparent 60%);
  pointer-events: none;
  z-index: 9998;
  transform: translate(-50%, -50%);
  transition: transform .12s ease-out;
  mix-blend-mode: screen;
}

@media (max-width:991px) {
  .cursor-glow {
    display: none
  }
}

/* ============ NAVBAR ============ */
.navbar-luxe {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 18px 0;
  background: transparent;
  transition: all .4s ease;
}

.navbar-luxe.scrolled {
  background: rgb(23 70 54);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  padding: 10px 0;
  box-shadow: 0 8px 40px rgba(0, 0, 0, .25);
}

.navbar-luxe .brand {
  display: flex;
  align-items: center;
  gap: 12px;
  color: #fff
}

.navbar-luxe .brand img {
  width: 100%;
  height: 100px;
  object-fit: contain;
  filter: drop-shadow(0 4px 12px rgba(200, 155, 77, .4))
}

.navbar-luxe .brand-text {
  display: flex;
  flex-direction: column;
  line-height: 1
}

.navbar-luxe .brand-text .b1 {
  font-family: 'Playfair Display', serif;
  font-size: 1.05rem;
  letter-spacing: 1px;
  color: #fff
}

.navbar-luxe .brand-text .b2 {
  font-family: 'Great Vibes', cursive;
  color: var(--gold-2);
  font-size: 1rem;
  margin-top: 2px
}

.nav-luxe-list {
  list-style: none;
  display: flex;
  gap: 34px;
  margin: 0;
  padding: 0;
  align-items: center
}

.nav-luxe-list a {
  color: #fff;
  font-size: .92rem;
  font-weight: 500;
  letter-spacing: 1px;
  text-transform: uppercase;
  position: relative;
  padding: 6px 0;
}

.nav-luxe-list a::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  height: 2px;
  width: 0;
  background: var(--gradient);
  transition: width .35s ease;
}

.nav-luxe-list a:hover,
.nav-luxe-list a.active {
  color: var(--gold-2)
}

.nav-luxe-list a:hover::after,
.nav-luxe-list a.active::after {
  width: 100%
}

.nav-toggle {
  display: none;
  background: transparent;
  border: 0;
  color: #fff;
  font-size: 1.6rem;
  cursor: pointer
}

@media (max-width:991px) {
  .nav-luxe-list {
    position: fixed;
    top: 0;
    right: -100%;
    height: 100vh;
    width: min(78%, 320px);
    background: linear-gradient(160deg, #0a2a20, #0f3b2e);
    flex-direction: column;
    justify-content: center;
    gap: 22px;
    transition: right .45s ease;
    box-shadow: -20px 0 60px rgba(0, 0, 0, .4);
    padding: 60px 30px;
  }

  .nav-luxe-list.open {
    right: 0
  }

  .nav-toggle {
    display: inline-block;
    z-index: 1001
  }
}

/* ============ BUTTONS ============ */
.btn-luxe {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 32px;
  font-size: .85rem;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  border-radius: 50px;
  border: 0;
  cursor: pointer;
  background: var(--gradient);
  color: #fff;
  box-shadow: var(--shadow-gold);
  transition: transform .35s ease, box-shadow .35s ease, filter .35s ease;
}

.btn-luxe:hover {
  transform: translateY(-3px);
  filter: brightness(1.08);
  box-shadow: 0 18px 50px -10px rgba(200, 155, 77, .6);
  color: #fff
}

.btn-outline-luxe {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 13px 30px;
  font-size: .85rem;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  border-radius: 50px;
  background: transparent;
  color: #fff;
  border: 1.5px solid var(--gold);
  transition: all .35s ease;
}

.btn-outline-luxe:hover {
  background: var(--gold);
  color: #0a2a20;
  transform: translateY(-3px)
}

/* ============ SECTION HEADERS ============ */
.section {
  padding: 110px 0;
  position: relative
}

.section-eyebrow {
  display: inline-block;
  font-family: 'Great Vibes', cursive;
  color: var(--gold);
  font-size: 1.8rem;
  line-height: 1;
  margin-bottom: 8px;
}

.section-title {
  font-size: clamp(2rem, 4vw, 3.2rem);
  color: var(--dark-green);
  margin: 0 0 18px
}

.section-title.light {
  color: #fff
}

.divider-gold {
  width: 80px;
  height: 2px;
  background: var(--gradient);
  margin: 18px auto 30px;
  position: relative;
}

.divider-gold::before,
.divider-gold::after {
  content: '';
  position: absolute;
  top: 50%;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--gold);
  transform: translateY(-50%);
}

.divider-gold::before {
  left: -14px
}

.divider-gold::after {
  right: -14px
}

.divider-gold.left {
  margin-left: 0;
  margin-right: 0
}

/* ============ HERO ============ */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: url('../images/hero.jpg') center/cover no-repeat fixed;
  text-align: center;
  color: #fff;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
 background: linear-gradient(180deg, rgb(23 71 54 / 74%), rgb(23 71 54 / 83%) 50%, rgb(42 83 60 / 66%));
}

.hero-particles {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden
}

.particle {
  position: absolute;
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--gold-2);
  opacity: .35;
  animation: rise linear infinite
}

@keyframes rise {
  0% {
    transform: translateY(110vh) scale(.4);
    opacity: 0
  }

  20% {
    opacity: .5
  }

  100% {
    transform: translateY(-10vh) scale(1);
    opacity: 0
  }
}

.hero-inner {
  position: relative;
  z-index: 2;
  max-width: 1000px;
  padding: 120px 20px 60px;
  animation: fadeUp 1.6s ease
}

.hero-logo {
  width: 300px;
  margin: 0 auto 20px;
  filter: drop-shadow(0 10px 30px rgba(0, 0, 0, .5))
}

.hero h1 {
  font-size: clamp(2.2rem, 5.5vw, 4.6rem);
  line-height: 1.1;
  margin: 10px 0 18px;
  font-weight: 700
}

.hero h1 .accent {
  color: var(--gold-2);
  font-style: italic
}

.hero p.lead {
  font-size: 1.05rem;
  max-width: 680px;
  margin: 0 auto 36px;
  opacity: .92;
  letter-spacing: 1px
}

.hero-cta {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap
}

.hero-scroll {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  color: #fff;
  font-size: 1.4rem;
  animation: bounce 2s infinite;
  z-index: 3
}

@keyframes bounce {

  0%,
  100% {
    transform: translate(-50%, 0)
  }

  50% {
    transform: translate(-50%, 8px)
  }
}

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(40px)
  }

  to {
    opacity: 1;
    transform: none
  }
}

/* ============ ABOUT PREVIEW ============ */
.about-preview {
  background: var(--cream);
  position: relative;
  overflow: hidden
}

.about-preview::before {
  content: '';
  position: absolute;
  top: -100px;
  right: -100px;
  width: 300px;
  height: 300px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(200, 155, 77, .15), transparent 70%);
}

.about-img-wrap {
  position: relative
}

.about-img-wrap img {
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-luxe)
}

.about-img-wrap::after {
  content: '';
  position: absolute;
  top: -22px;
  left: -22px;
  right: 30px;
  bottom: 30px;
  border: 2px solid var(--gold);
  border-radius: var(--radius-lg);
  z-index: -1;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin-top: 34px
}

.stat-card {
  background: #fff;
  border-radius: 14px;
  padding: 24px 16px;
  text-align: center;
  box-shadow: 0 12px 30px -15px rgba(15, 59, 46, .2);
  border: 1px solid rgba(200, 155, 77, .2);
  transition: transform .35s ease, box-shadow .35s ease;
}

.stat-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-gold)
}

.stat-num {
  font-family: 'Playfair Display', serif;
  font-size: 2.2rem;
  color: var(--dark-green);
  font-weight: 700
}

.stat-label {
  font-size: .78rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--muted);
  margin-top: 4px
}

/* ============ VENUES ============ */
.venues-section {
  background: linear-gradient(180deg, var(--cream) 0%, var(--champagne) 100%)
}

.venue-card {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: #fff;
  box-shadow: var(--shadow-luxe);
  transition: transform .5s ease;
  height: 100%;
}

.venue-card:hover {
  transform: translateY(-10px)
}

.venue-img {
  position: relative;
  height: 280px;
  overflow: hidden
}

.venue-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 1s ease
}

.venue-card:hover .venue-img img {
  transform: scale(1.12)
}

.venue-img::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 40%, rgba(15, 59, 46, .7));
}

.venue-badge {
  position: absolute;
  top: 18px;
  left: 18px;
  background: var(--gradient);
  color: #fff;
  font-size: .7rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 6px 14px;
  border-radius: 30px;
  z-index: 2;
}

.venue-body {
  padding: 26px 26px 30px
}

.venue-body h3 {
  color: var(--dark-green);
  margin: 0 0 8px;
  font-size: 1.4rem
}

.venue-features {
  list-style: none;
  padding: 0;
  margin: 14px 0 18px;
  display: flex;
  flex-wrap: wrap;
  gap: 10px
}

.venue-features li {
  font-size: .78rem;
  color: var(--muted);
  background: var(--beige);
  padding: 6px 12px;
  border-radius: 30px;
  display: flex;
  align-items: center;
  gap: 6px;
}

.venue-features i {
  color: var(--gold)
}

/* ============ SERVICES ============ */
.services-section {
  background: #fff;
  position: relative
}

.service-card {
  text-align: center;
  padding: 40px 26px;
  border-radius: var(--radius-lg);
  background: #fff;
  border: 1px solid rgba(200, 155, 77, .15);
  height: 100%;
  transition: all .5s ease;
  position: relative;
  overflow: hidden;
}

.service-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--gradient);
  opacity: 0;
  transition: opacity .5s ease;
  z-index: 0;
}

.service-card>* {
  position: relative;
  z-index: 1
}

.service-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 30px 60px -20px rgba(200, 155, 77, .45);
  border-color: var(--gold)
}

.service-card:hover::before {
  opacity: .04
}

.service-icon {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  margin: 0 auto 22px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--gradient);
  color: #fff;
  font-size: 1.8rem;
  box-shadow: 0 12px 30px -10px rgba(200, 155, 77, .6);
  transition: transform .5s ease;
}

.service-card:hover .service-icon {
  transform: rotateY(360deg)
}

.service-card h4 {
  color: var(--dark-green);
  margin: 0 0 10px;
  font-size: 1.15rem
}

.service-card p {
  color: var(--muted);
  font-size: .92rem;
  margin: 0
}

/* ============ GALLERY ============ */
.gallery-section {
  background: var(--champagne)
}

.masonry {
  column-count: 3;
  column-gap: 18px
}

@media (max-width:991px) {
  .masonry {
    column-count: 2
  }
}

@media (max-width:575px) {
  .masonry {
    column-count: 1
  }
}

.masonry-item {
  break-inside: avoid;
  margin-bottom: 18px;
  position: relative;
  border-radius: 14px;
  overflow: hidden;
  cursor: pointer;
  box-shadow: 0 14px 30px -15px rgba(0, 0, 0, .25)
}

.masonry-item img {
  width: 100%;
  height: auto;
  transition: transform .8s ease
}

.masonry-item::after {
  content: '\f00e';
  font-family: 'Font Awesome 6 Free';
  font-weight: 900;
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, rgba(15, 59, 46, .7), rgba(200, 155, 77, .55));
  color: #fff;
  font-size: 1.6rem;
  opacity: 0;
  transition: opacity .4s ease;
}

.masonry-item:hover img {
  transform: scale(1.1)
}

.masonry-item:hover::after {
  opacity: 1
}

/* ============ TESTIMONIALS ============ */
.testimonials-section {
  background: linear-gradient(135deg, #174736, #174736);
  color: #fff;
  position: relative;
  overflow: hidden;
}

.testimonials-section::before {
  content: '';
  position: absolute;
  top: -100px;
  left: -100px;
  width: 400px;
  height: 400px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(200, 155, 77, .18), transparent 65%);
}

.testimonials-section .section-title {
  color: #fff
}

.testimonial-card {
  background: rgba(255, 255, 255, .06);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(200, 155, 77, .25);
  border-radius: var(--radius-lg);
  padding: 36px 30px;
  text-align: center;
  color: #fff;
  height: 100%;
}

.testimonial-card .quote {
  font-size: 2rem;
  color: var(--gold-2);
  line-height: 1;
  margin-bottom: 14px
}

.testimonial-card p {
  font-style: italic;
  opacity: .92;
  font-size: 1rem;
  line-height: 1.7
}

.testimonial-card .stars {
  color: var(--gold-2);
  margin: 14px 0 18px;
  letter-spacing: 3px
}

.testimonial-card h5 {
  font-family: 'Playfair Display', serif;
  margin: 0;
  color: #fff
}

.testimonial-card .role {
  font-size: .78rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gold-2);
  margin-top: 4px
}

.swiper-pagination-bullet {
  background: var(--gold) !important;
  opacity: .4
}

.swiper-pagination-bullet-active {
  opacity: 1
}

/* ============ CTA PARALLAX ============ */
.cta-parallax {
  position: relative;
  padding: 140px 0;
  text-align: center;
  color: #fff;
  background: url('/front-end/images/gallery/g4.jpg') center/cover fixed no-repeat;
}

.cta-parallax::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(10, 32, 25, .92), rgba(15, 59, 46, .8))
}

.cta-parallax>.container {
  position: relative;
  z-index: 1
}

.cta-parallax h2 {
  font-size: clamp(2rem, 4.5vw, 3.6rem);
  margin: 10px 0 24px
}

/* ============ FOOTER ============ */
.footer-luxe {
  background: #174736;
  color: #cfd6d2;
  padding: 80px 0 30px;
  position: relative
}

.footer-luxe h5 {
  color: #fff;
  font-family: 'Playfair Display', serif;
  font-size: 1.15rem;
  margin-bottom: 20px;
  position: relative;
  padding-bottom: 10px
}

.footer-luxe h5::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 38px;
  height: 2px;
  background: var(--gradient)
}

.footer-luxe a {
  color: #cfd6d2
}

.footer-luxe a:hover {
  color: var(--gold-2)
}

.footer-luxe .brand {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 18px
}

.footer-luxe .brand img {
  width: 100px;
  filter: drop-shadow(0 4px 12px rgba(200, 155, 77, .4))
}

.footer-luxe .brand-text .b1 {
  font-family: 'Playfair Display', serif;
  color: #fff;
  font-size: 1.1rem;
  display: block
}

.footer-luxe .brand-text .b2 {
  font-family: 'Great Vibes', cursive;
  color: var(--gold-2)
}

.footer-luxe ul {
  list-style: none;
  padding: 0;
  margin: 0
}

.footer-luxe ul li {
  margin-bottom: 10px;
  font-size: .92rem;
  display: flex;
  gap: 10px;
  align-items: flex-start
}

.footer-luxe ul li i {
  color: var(--gold);
  margin-top: 5px
}

.socials {
  display: flex;
  gap: 10px;
  margin-top: 14px
}

.socials a {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, .06);
  border: 1px solid rgba(200, 155, 77, .25);
  color: #fff;
  transition: all .35s ease;
}

.socials a:hover {
  background: var(--gradient);
  transform: translateY(-3px);
  color: #fff
}

.newsletter {
  display: flex;
  gap: 6px;
  margin-top: 14px
}

.newsletter input {
  flex: 1;
  background: rgba(255, 255, 255, .05);
  border: 1px solid rgba(200, 155, 77, .25);
  color: #fff;
  padding: 12px 16px;
  border-radius: 50px;
  outline: none;
  font-size: .9rem;
}

.newsletter input::placeholder {
  color: rgba(255, 255, 255, .5)
}

.newsletter button {
  background: var(--gradient);
  color: #fff;
  border: 0;
  padding: 0 20px;
  border-radius: 50px;
  cursor: pointer;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, .08);
  margin-top: 50px;
  padding-top: 24px;
  text-align: center;
  font-size: .85rem;
  color: #8a9590
}

/* ============ FLOATING BUTTONS ============ */
.whatsapp-float,
.back-top {
  position: fixed;
  bottom: 24px;
  width: 54px;
  height: 54px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  color: #fff;
  z-index: 998;
  box-shadow: 0 12px 30px rgba(0, 0, 0, .25);
  transition: transform .3s ease;
  border: 0;
  cursor: pointer;
}

.whatsapp-float {
  right: 24px;
  background: #25d366
}

.whatsapp-float:hover {
  transform: scale(1.1);
  color: #fff
}

.back-top {
  right: 24px;
  bottom: 90px;
  background: var(--gradient);
  opacity: 0;
  pointer-events: none
}

.back-top.show {
  opacity: 1;
  pointer-events: auto
}

.back-top:hover {
  transform: translateY(-4px)
}

/* ============ PAGE BANNER ============ */
.page-banner {
  padding: 200px 0 90px;
  text-align: center;
  color: #fff;
  position: relative;
  background: url('../images/hero.jpg') center/cover no-repeat;
}

.page-banner::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(10, 32, 25, .85), rgba(15, 59, 46, .7))
}

.page-banner>.container {
  position: relative;
  z-index: 1
}

.page-banner h1 {
  font-size: clamp(2.2rem, 5vw, 3.8rem);
  margin: 8px 0 8px
}

.breadcrumb-luxe {
  display: flex;
  gap: 12px;
  justify-content: center;
  font-size: .85rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #cfd6d2
}

.breadcrumb-luxe a {
  color: var(--gold-2)
}

/* ============ ABOUT PAGE ============ */
.values-card {
  background: #fff;
  border-radius: var(--radius-lg);
  padding: 34px 28px;
  height: 100%;
  border: 1px solid rgba(200, 155, 77, .15);
  box-shadow: 0 14px 30px -18px rgba(15, 59, 46, .25);
  transition: transform .4s ease;
}

.values-card:hover {
  transform: translateY(-6px)
}

.values-card .icon {
  width: 60px;
  height: 60px;
  border-radius: 14px;
  background: var(--gradient);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  margin-bottom: 18px;
}

.values-card h4 {
  color: var(--dark-green);
  margin: 0 0 10px
}

.timeline {
  position: relative;
  padding-left: 30px;
  border-left: 2px solid var(--gold)
}

.timeline-item {
  position: relative;
  margin-bottom: 32px
}

.timeline-item::before {
  content: '';
  position: absolute;
  left: -39px;
  top: 6px;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: var(--gradient);
  box-shadow: 0 0 0 4px var(--cream);
}

.timeline-item h5 {
  color: var(--dark-green);
  margin: 0 0 6px
}

.timeline-item .year {
  font-family: 'Great Vibes', cursive;
  color: var(--gold);
  font-size: 1.4rem;
  line-height: 1
}

.team-card {
  text-align: center;
  background: #fff;
  border-radius: var(--radius-lg);
  padding: 24px;
  box-shadow: 0 14px 30px -18px rgba(15, 59, 46, .25);
  transition: transform .4s ease
}

.team-card:hover {
  transform: translateY(-6px)
}

.team-card .avatar {
  width: 200px;
  height: 200px;
  border-radius: 50%;
  margin: 0 auto 18px;
  background: var(--gradient);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Playfair Display', serif;
  font-size: 2.4rem;
  font-weight: 600;
  border: 4px solid var(--cream);
  box-shadow: 0 0 0 2px var(--gold);
}

.team-card h5 {
  color: var(--dark-green);
  margin: 0
}

.team-card .role {
  font-size: .78rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gold);
  margin-top: 6px
}

/* ============ CONTACT ============ */
.contact-card {
  background: #fff;
  border-radius: var(--radius-lg);
  padding: 28px;
  text-align: center;
  border: 1px solid rgba(200, 155, 77, .18);
  box-shadow: 0 14px 30px -18px rgba(15, 59, 46, .25);
  height: 100%;
  transition: transform .35s ease;
}

.contact-card:hover {
  transform: translateY(-5px)
}

.contact-card .icon {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: var(--gradient);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  margin: 0 auto 16px;
}

.contact-form {
  background: #fff;
  border-radius: var(--radius-lg);
  padding: 40px;
  box-shadow: var(--shadow-luxe);
  border: 1px solid rgba(200, 155, 77, .18);
}

.form-control-luxe {
  width: 100%;
  padding: 14px 18px;
  border: 1px solid rgba(15, 59, 46, .15);
  border-radius: 12px;
  background: var(--cream);
  font-family: inherit;
  font-size: .95rem;
  margin-bottom: 16px;
  outline: none;
  transition: border-color .3s ease, box-shadow .3s ease;
}

.form-control-luxe:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 4px rgba(200, 155, 77, .15)
}

textarea.form-control-luxe {
  min-height: 130px;
  resize: vertical
}

.map-wrap {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-luxe);
  border: 4px solid #fff
}

.map-wrap iframe {
  display: block;
  width: 100%;
  height: 726px;
  border: 0
}

/* ============ COUNTERS ANIMATION ============ */
.counter[data-target] {
  display: inline-block
}

/* ============ UTILS ============ */
.bg-cream {
  background: var(--cream)
}

.bg-champagne {
  background: var(--champagne)
}

.text-gold {
  color: var(--gold)
}

.text-dark-green {
  color: var(--dark-green)
}

.gradient-text {
  background: var(--gradient);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent
}

@media (max-width:767px) {
  .section {
    padding: 80px 0
  }

  .hero-inner {
    padding-top: 100px
  }

  .cta-parallax {
    padding: 90px 0;
    background-attachment: scroll
  }

  .hero {
    background-attachment: scroll
  }

  .stats-grid {
    grid-template-columns: 1fr 1fr
  }
}