/* ==========================================================================
   TAXI BRIXEN BRESSANONE — LUXURY TAXI & DRIVER DESIGN SYSTEM
   ========================================================================== */

:root {
  --primary-dark: #1C2B2E;
  --bg-dark: #142023;
  --bg-card-dark: #223438;
  --gold: #C9962F;
  --gold-hover: #A8761F;
  --gold-light: #F9EED9;
  --gold-glow: rgba(201, 150, 47, 0.25);
  --cream: #F4EEE0;
  --text-main: #1C2B2E;
  --text-muted: #64748B;
  --text-light: #FFFDF8;
  --text-light-muted: #C0C8C9;
  --bg-light: #F4EEE0;
  --bg-white: #FFFDF8;
  --border-light: rgba(28, 43, 46, 0.12);
  --border-dark: rgba(244, 238, 224, 0.12);
  --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.06);
  --shadow-md: 0 10px 25px rgba(0, 0, 0, 0.12);
  --shadow-lg: 0 20px 40px rgba(0, 0, 0, 0.2);
  --shadow-gold: 0 10px 30px rgba(201, 150, 47, 0.3);
  --font-heading: 'Fraunces', 'Outfit', serif;
  --font-body: 'Work Sans', 'Plus Jakarta Sans', sans-serif;
  --font-mono: 'JetBrains Mono', monospace;
  --radius: 6px;
  --transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

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

body {
  font-family: var(--font-body);
  background-color: var(--bg-light);
  color: var(--text-main);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

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

a {
  color: inherit;
  text-decoration: none;
  transition: var(--transition);
}

ul {
  list-style: none;
}

.container {
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ==========================================================================
   TOP BAR & NAVIGATION
   ========================================================================== */

.top-bar {
  background-color: var(--primary-dark);
  color: var(--text-light-muted);
  font-size: 13px;
  border-bottom: 1px solid var(--border-dark);
  position: relative;
  z-index: 101;
}

.top-bar-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 44px;
}

.top-social {
  display: flex;
  gap: 16px;
  align-items: center;
}

.top-social a {
  color: var(--text-light-muted);
  font-size: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: rgba(244, 238, 224, 0.05);
  transition: var(--transition);
}

.top-social a:hover {
  color: var(--gold);
  background: rgba(201, 150, 47, 0.15);
  transform: translateY(-2px);
}

.top-call-badge {
  background: var(--gold);
  color: var(--primary-dark);
  font-weight: 700;
  padding: 0 32px 0 28px;
  height: 100%;
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  letter-spacing: 0.5px;
  clip-path: polygon(18px 0, 100% 0, 100% 100%, 0% 100%);
}

.top-call-badge i {
  font-size: 16px;
}

/* Main Navigation Header */
.main-header {
  background-color: rgba(28, 43, 46, 0.96);
  backdrop-filter: blur(12px);
  position: sticky;
  top: 0;
  z-index: 100;
  border-bottom: 1px solid var(--border-dark);
  transition: var(--transition);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 84px;
}

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

.brand-logo img {
  height: 54px;
  width: auto;
  object-fit: contain;
  filter: drop-shadow(0 2px 8px rgba(201, 150, 47, 0.4));
}

.brand-text {
  display: flex;
  flex-direction: column;
}

.brand-title {
  font-family: var(--font-heading);
  font-size: 20px;
  font-weight: 700;
  letter-spacing: 0.5px;
  color: var(--text-light);
  line-height: 1.1;
}

.brand-title span {
  color: var(--gold);
}

.brand-subtitle {
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 2px;
  color: var(--gold);
  text-transform: uppercase;
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 32px;
}

.nav-link {
  color: var(--text-light);
  font-size: 15px;
  font-weight: 500;
  position: relative;
  padding: 8px 0;
  opacity: 0.9;
}

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

.nav-link:hover, .nav-link.active {
  color: var(--gold);
  opacity: 1;
}

.nav-link:hover::after, .nav-link.active::after {
  width: 100%;
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 16px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 13px 26px;
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.5px;
  border-radius: 4px;
  border: none;
  cursor: pointer;
  transition: var(--transition);
}

.btn-gold {
  background-color: var(--gold);
  color: var(--primary-dark);
  box-shadow: 0 4px 15px rgba(201, 150, 47, 0.3);
}

.btn-gold:hover {
  background-color: var(--gold-hover);
  color: var(--text-light);
  transform: translateY(-2px);
  box-shadow: var(--shadow-gold);
}

.btn-dark {
  background-color: var(--primary-dark);
  color: var(--text-light);
  border: 1px solid var(--border-dark);
}

.btn-dark:hover {
  background-color: #121c1e;
  border-color: var(--gold);
  color: var(--gold);
  transform: translateY(-2px);
}

.mobile-toggle {
  display: none;
  background: none;
  border: none;
  color: var(--text-light);
  font-size: 26px;
  cursor: pointer;
}

/* ==========================================================================
   HERO SECTION WITH FLOATING BOOKING FORM
   ========================================================================== */

.hero-section {
  position: relative;
  background: linear-gradient(135deg, rgba(28, 43, 46, 0.95) 0%, rgba(20, 32, 35, 0.88) 100%), 
              url('img2.jpeg') center center / cover no-repeat;
  padding: 90px 0 100px;
  color: var(--text-light);
  overflow: hidden;
}

.hero-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 30% 40%, rgba(201, 150, 47, 0.15) 0%, transparent 60%);
  pointer-events: none;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 48px;
  align-items: center;
  position: relative;
  z-index: 2;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 16px;
  background: rgba(201, 150, 47, 0.15);
  border: 1px solid rgba(201, 150, 47, 0.3);
  border-radius: 50px;
  color: var(--gold);
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  margin-bottom: 24px;
}

.hero-title {
  font-family: var(--font-heading);
  font-size: clamp(34px, 4.2vw, 54px);
  font-weight: 700;
  line-height: 1.15;
  color: var(--text-light);
  margin-bottom: 20px;
  letter-spacing: -0.5px;
}

.hero-title em {
  font-style: normal;
  color: var(--gold);
}

.hero-desc {
  font-size: 16px;
  color: var(--text-light-muted);
  max-width: 540px;
  margin-bottom: 32px;
  line-height: 1.7;
}

.hero-features {
  display: flex;
  gap: 28px;
  flex-wrap: wrap;
  padding-top: 16px;
  border-top: 1px solid var(--border-dark);
  font-family: var(--font-mono);
  font-size: 13px;
  color: rgba(244, 238, 224, 0.7);
}

.hero-feature-item {
  display: flex;
  align-items: center;
  gap: 10px;
}

.hero-feature-item i {
  color: var(--gold);
  font-size: 14px;
}

/* Floating Booking Card */
.booking-card {
  background: var(--bg-card-dark);
  border: 1px solid var(--border-dark);
  border-radius: 12px;
  padding: 32px;
  box-shadow: var(--shadow-lg);
  position: relative;
}

.booking-card-header {
  text-align: center;
  margin-bottom: 24px;
  position: relative;
}

.booking-crown {
  width: 46px;
  height: 46px;
  background: var(--gold);
  color: var(--primary-dark);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  margin: -54px auto 12px;
  box-shadow: 0 4px 15px rgba(201, 150, 47, 0.4);
}

.booking-card-title {
  font-family: var(--font-heading);
  font-size: 24px;
  font-weight: 700;
  color: var(--text-light);
  letter-spacing: 0.5px;
}

.booking-card-subtitle {
  font-size: 13px;
  color: var(--text-light-muted);
  margin-top: 4px;
}

.booking-form {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.input-group {
  position: relative;
}

.input-icon {
  position: absolute;
  left: 16px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--gold);
  font-size: 15px;
  pointer-events: none;
}

.form-input {
  width: 100%;
  padding: 14px 16px 14px 44px;
  background: rgba(28, 43, 46, 0.7);
  border: 1px solid var(--border-dark);
  border-radius: 6px;
  color: var(--text-light);
  font-family: var(--font-body);
  font-size: 14px;
  transition: var(--transition);
}

.form-input::placeholder {
  color: #8C877A;
}

.form-input:focus {
  outline: none;
  border-color: var(--gold);
  background: rgba(28, 43, 46, 0.95);
  box-shadow: 0 0 0 3px rgba(201, 150, 47, 0.15);
}

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

.booking-options {
  display: flex;
  justify-content: space-between;
  font-size: 13px;
  color: var(--text-light-muted);
  margin: 4px 0 8px;
}

.booking-option {
  display: flex;
  align-items: center;
  gap: 6px;
  cursor: pointer;
}

.booking-option input[type="checkbox"] {
  accent-color: var(--gold);
  width: 16px;
  height: 16px;
}

.btn-block {
  width: 100%;
  padding: 16px;
  font-size: 15px;
}

/* ==========================================================================
   ROUTE TICKER (SIGNATURE ELEMENT FROM CONTENTREFERENCE.HTML)
   ========================================================================== */

.ticker-section {
  background: var(--gold);
  padding: 0;
  overflow: hidden;
}

.ticker-inner {
  display: flex;
  align-items: center;
  border-top: 1px solid rgba(28, 43, 46, 0.15);
  border-bottom: 1px solid rgba(28, 43, 46, 0.15);
}

.ticker-label {
  flex-shrink: 0;
  background: var(--primary-dark);
  color: var(--text-light);
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 14px 24px;
  display: flex;
  align-items: center;
  gap: 8px;
  z-index: 5;
}

.ticker-track {
  display: flex;
  white-space: nowrap;
  animation: scroll-left 32s linear infinite;
}

.ticker-track:hover {
  animation-play-state: paused;
}

.ticker-item {
  font-family: var(--font-mono);
  font-size: 13px;
  color: var(--primary-dark);
  padding: 14px 26px;
  border-right: 1px solid rgba(28, 43, 46, 0.2);
  display: flex;
  align-items: center;
  gap: 10px;
}

.ticker-item .tag {
  font-size: 10px;
  text-transform: uppercase;
  background: var(--primary-dark);
  color: var(--gold);
  padding: 2px 6px;
  border-radius: 2px;
  letter-spacing: 0.06em;
}

@keyframes scroll-left {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* ==========================================================================
   ABOUT US SECTION
   ========================================================================== */

.about-section {
  padding: 100px 0;
  background-color: var(--bg-white);
}

.about-grid {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 64px;
  align-items: center;
}

.about-visual-wrap {
  position: relative;
}

.exp-badge-vertical {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 10;
  background: var(--gold);
  color: var(--primary-dark);
  padding: 24px 12px;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 2px;
  writing-mode: vertical-rl;
  transform: rotate(180deg);
  border-radius: 0 4px 4px 0;
  box-shadow: var(--shadow-md);
}

.about-img-main {
  width: 100%;
  height: 380px;
  object-fit: cover;
  border-radius: 6px;
  box-shadow: var(--shadow-md);
}

.about-img-secondary {
  width: 75%;
  height: 220px;
  object-fit: cover;
  border-radius: 6px;
  border: 6px solid var(--bg-white);
  box-shadow: var(--shadow-lg);
  margin-top: -90px;
  margin-left: 25%;
  position: relative;
  z-index: 2;
}

.section-tag {
  display: inline-block;
  font-family: var(--font-mono);
  font-size: 12px;
  font-weight: 600;
  color: var(--gold-hover);
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 8px;
}

.section-title {
  font-family: var(--font-heading);
  font-size: clamp(28px, 3.5vw, 42px);
  font-weight: 700;
  color: var(--primary-dark);
  line-height: 1.2;
  margin-bottom: 20px;
  letter-spacing: -0.5px;
}

.section-title.light {
  color: var(--text-light);
}

.about-text {
  font-size: 15.5px;
  color: #3C4A48;
  line-height: 1.8;
  margin-bottom: 16px;
}

.about-highlights {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin: 28px 0 36px;
}

.highlight-item {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 14px;
  font-weight: 600;
  color: var(--primary-dark);
}

.highlight-item i {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--gold-light);
  color: var(--gold-hover);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  flex-shrink: 0;
}

/* ==========================================================================
   OUR PREMIUM SERVICES SECTION
   ========================================================================== */

.services-section {
  background: linear-gradient(180deg, var(--primary-dark) 0%, var(--bg-dark) 100%);
  color: var(--text-light);
  padding: 100px 0;
  position: relative;
}

.services-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url('img4.jpeg') center center / cover no-repeat;
  opacity: 0.06;
  pointer-events: none;
}

.section-header {
  text-align: center;
  max-width: 680px;
  margin: 0 auto 60px;
  position: relative;
  z-index: 2;
}

.section-header p {
  color: var(--text-light-muted);
  font-size: 16px;
  margin-top: 12px;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 30px;
  position: relative;
  z-index: 2;
}

.service-card {
  background: rgba(34, 52, 56, 0.7);
  backdrop-filter: blur(8px);
  border: 1px solid var(--border-dark);
  border-radius: 10px;
  padding: 38px 30px;
  transition: var(--transition);
}

.service-card:hover {
  transform: translateY(-8px);
  border-color: var(--gold);
  box-shadow: 0 16px 32px rgba(0, 0, 0, 0.3);
  background: rgba(34, 52, 56, 0.95);
}

.service-icon-wrap {
  width: 70px;
  height: 70px;
  background: radial-gradient(circle, var(--gold) 0%, var(--gold-hover) 100%);
  color: var(--primary-dark);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  margin-bottom: 24px;
  box-shadow: var(--shadow-gold);
  transition: var(--transition);
}

.service-card:hover .service-icon-wrap {
  transform: scale(1.1) rotate(5deg);
}

.service-card-title {
  font-family: var(--font-heading);
  font-size: 21px;
  font-weight: 600;
  color: var(--text-light);
  margin-bottom: 12px;
}

.service-card-desc {
  font-size: 14.5px;
  color: var(--text-light-muted);
  line-height: 1.7;
  margin-bottom: 24px;
}

.service-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-mono);
  font-size: 13px;
  font-weight: 600;
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: 1px;
}

.service-link i {
  transition: var(--transition);
}

.service-link:hover i {
  transform: translateX(4px);
}

/* ==========================================================================
   EXPLORE OUR FLEET SECTION
   ========================================================================== */

.fleet-section {
  padding: 100px 0;
  background-color: var(--bg-light);
}

.fleet-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 30px;
}

.fleet-card {
  background: var(--bg-white);
  border-radius: 10px;
  border: 1px solid var(--border-light);
  padding: 32px 24px;
  text-align: center;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.fleet-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
  border-color: var(--gold);
}

.fleet-img-wrap {
  height: 190px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  overflow: hidden;
  border-radius: 6px;
}

.fleet-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.fleet-card:hover .fleet-img-wrap img {
  transform: scale(1.05);
}

.fleet-name {
  font-family: var(--font-heading);
  font-size: 22px;
  font-weight: 700;
  color: var(--primary-dark);
  margin-bottom: 16px;
}

.fleet-specs {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-bottom: 24px;
}

.spec-badge {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
}

.spec-circle {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: var(--gold-light);
  color: var(--gold-hover);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 14px;
  border: 1px solid rgba(201, 150, 47, 0.4);
}

.spec-label {
  font-size: 11px;
  font-weight: 600;
  color: var(--text-muted);
  text-transform: uppercase;
}

/* ==========================================================================
   OUR BENEFITS SECTION
   ========================================================================== */

.benefits-section {
  background: linear-gradient(135deg, #162225 0%, #1C2B2E 100%);
  color: var(--text-light);
  padding: 100px 0;
  position: relative;
  overflow: hidden;
}

.benefits-layout {
  display: grid;
  grid-template-columns: 1fr 1.2fr 1fr;
  gap: 30px;
  align-items: center;
  margin-top: 40px;
}

.benefit-col {
  display: flex;
  flex-direction: column;
  gap: 48px;
}

.benefit-box {
  display: flex;
  align-items: flex-start;
  gap: 20px;
}

.benefit-box.right {
  flex-direction: row-reverse;
  text-align: right;
}

.benefit-icon {
  width: 58px;
  height: 58px;
  border-radius: 50%;
  background: var(--gold);
  color: var(--primary-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  flex-shrink: 0;
  box-shadow: 0 4px 15px rgba(201, 150, 47, 0.3);
}

.benefit-title {
  font-family: var(--font-heading);
  font-size: 18px;
  font-weight: 600;
  color: var(--text-light);
  margin-bottom: 8px;
}

.benefit-desc {
  font-size: 13.5px;
  color: var(--text-light-muted);
  line-height: 1.6;
}

.benefit-center-img {
  text-align: center;
}

.benefit-center-img img {
  width: 100%;
  border-radius: 8px;
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--border-dark);
}

/* ==========================================================================
   CUSTOMER REVIEWS SECTION
   ========================================================================== */

.reviews-section {
  padding: 100px 0;
  background-color: var(--primary-dark);
  color: var(--text-light);
}

.reviews-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 24px;
}

.review-card {
  background: rgba(244, 238, 224, 0.05);
  border: 1px solid rgba(244, 238, 224, 0.1);
  border-radius: 8px;
  padding: 28px;
  transition: var(--transition);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.review-card:hover {
  transform: translateY(-4px);
  border-color: var(--gold);
  background: rgba(244, 238, 224, 0.08);
}

.stars-rating {
  color: var(--gold);
  font-size: 14px;
  margin-bottom: 16px;
  display: flex;
  gap: 4px;
}

.review-text {
  font-size: 14.5px;
  color: rgba(244, 238, 224, 0.88);
  font-style: italic;
  line-height: 1.7;
  margin-bottom: 20px;
}

.reviewer-profile {
  display: flex;
  align-items: center;
  gap: 12px;
  border-top: 1px solid rgba(244, 238, 224, 0.1);
  padding-top: 16px;
}

.reviewer-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--gold);
  color: var(--primary-dark);
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 15px;
}

.reviewer-info h4 {
  font-family: var(--font-heading);
  font-size: 15px;
  font-weight: 600;
  color: var(--text-light);
}

.reviewer-info p {
  font-family: var(--font-mono);
  font-size: 11px;
  color: rgba(244, 238, 224, 0.55);
}

/* ==========================================================================
   READY TO BOOK CTA BANNER
   ========================================================================== */

.cta-banner {
  background: var(--gold);
  color: var(--primary-dark);
  padding: 60px 0;
  text-align: center;
}

.cta-banner-title {
  font-family: var(--font-heading);
  font-size: clamp(26px, 3.5vw, 40px);
  font-weight: 700;
  margin-bottom: 12px;
  letter-spacing: -0.5px;
}

.cta-banner-desc {
  font-size: 16px;
  max-width: 640px;
  margin: 0 auto 28px;
  font-weight: 500;
  opacity: 0.95;
}

/* ==========================================================================
   NEED MORE INFORMATION SECTION
   ========================================================================== */

.info-section {
  padding: 90px 0;
  background-color: var(--bg-light);
}

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

.info-img-wrap img {
  border-radius: 10px;
  box-shadow: var(--shadow-md);
}

/* ==========================================================================
   CONTACT US PAGE SPECIFIC STYLES & ANIMATED FORM
   ========================================================================== */

.page-header {
  background: linear-gradient(135deg, rgba(28, 43, 46, 0.95) 0%, rgba(20, 32, 35, 0.9) 100%),
              url('img3.jpeg') center center / cover no-repeat;
  color: var(--text-light);
  padding: 80px 0;
  text-align: center;
  position: relative;
}

.page-title {
  font-family: var(--font-heading);
  font-size: clamp(32px, 4vw, 48px);
  font-weight: 700;
  color: var(--text-light);
  margin-bottom: 12px;
}

.breadcrumb {
  display: flex;
  justify-content: center;
  gap: 10px;
  font-size: 14px;
  color: var(--text-light-muted);
}

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

.contact-page-section {
  padding: 90px 0;
  background-color: var(--bg-light);
}

.contact-cards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 24px;
  margin-bottom: 60px;
}

.contact-info-card {
  background: var(--bg-white);
  border-radius: 10px;
  padding: 32px 24px;
  text-align: center;
  border: 1px solid var(--border-light);
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
}

.contact-info-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
  border-color: var(--gold);
}

.contact-icon-box {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: var(--gold-light);
  color: var(--gold-hover);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  margin: 0 auto 20px;
  transition: var(--transition);
}

.contact-info-card:hover .contact-icon-box {
  background: var(--gold);
  color: var(--primary-dark);
}

.contact-card-title {
  font-family: var(--font-heading);
  font-size: 19px;
  font-weight: 600;
  color: var(--primary-dark);
  margin-bottom: 8px;
}

.contact-card-text {
  font-size: 14px;
  color: var(--text-muted);
}

/* Animated Contact Form Layout */
.contact-main-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  background: var(--bg-white);
  border-radius: 12px;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--border-light);
}

.animated-form-wrap {
  padding: 48px;
}

.form-animated {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.form-group-animated {
  position: relative;
  display: flex;
  flex-direction: column;
}

.floating-label {
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  color: var(--text-muted);
  margin-bottom: 6px;
  transition: var(--transition);
}

.input-animated {
  width: 100%;
  padding: 14px 16px;
  background: var(--bg-light);
  border: 1.5px solid var(--border-light);
  border-radius: 6px;
  font-family: var(--font-body);
  font-size: 14.5px;
  color: var(--primary-dark);
  transition: var(--transition);
}

.input-animated:focus {
  outline: none;
  border-color: var(--gold);
  background: var(--bg-white);
  box-shadow: 0 0 0 4px rgba(201, 150, 47, 0.15);
}

.input-animated:focus + .floating-label,
.input-animated:not(:placeholder-shown) + .floating-label {
  color: var(--gold-hover);
}

.map-container {
  min-height: 480px;
  width: 100%;
  height: 100%;
  background: #e5e3df;
}

.map-container iframe {
  width: 100%;
  height: 100%;
  border: none;
  min-height: 480px;
}

/* Success Toast */
.form-toast {
  display: none;
  position: fixed;
  top: 30px;
  right: 30px;
  z-index: 1000;
  background: var(--primary-dark);
  color: var(--text-light);
  padding: 16px 24px;
  border-radius: 8px;
  border-left: 4px solid var(--gold);
  box-shadow: var(--shadow-lg);
  animation: slideIn 0.4s ease forwards;
}

.form-toast.active {
  display: flex;
  align-items: center;
  gap: 12px;
}

@keyframes slideIn {
  from { transform: translateX(100%); opacity: 0; }
  to { transform: translateX(0); opacity: 1; }
}

/* ==========================================================================
   FOOTER
   ========================================================================== */

.main-footer {
  background-color: var(--primary-dark);
  color: rgba(244, 238, 224, 0.7);
  padding: 80px 0 30px;
  border-top: 1px solid var(--border-dark);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 0.8fr 1fr 1.2fr;
  gap: 40px;
  margin-bottom: 60px;
}

.footer-brand p {
  font-size: 14px;
  margin-top: 16px;
  line-height: 1.7;
}

.footer-col-title {
  font-family: var(--font-mono);
  font-size: 12px;
  font-weight: 600;
  color: rgba(244, 238, 224, 0.5);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 20px;
  position: relative;
  padding-bottom: 8px;
}

.footer-col-title::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 30px;
  height: 2px;
  background-color: var(--gold);
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-links a {
  font-size: 14px;
  color: rgba(244, 238, 224, 0.8);
  transition: var(--transition);
}

.footer-links a:hover {
  color: var(--gold);
  padding-left: 6px;
}

.footer-newsletter p {
  font-size: 14px;
  margin-bottom: 16px;
}

.newsletter-form {
  display: flex;
  position: relative;
}

.newsletter-input {
  width: 100%;
  padding: 12px 50px 12px 16px;
  background: var(--bg-card-dark);
  border: 1px solid var(--border-dark);
  border-radius: 4px;
  color: var(--text-light);
  font-size: 14px;
}

.newsletter-input:focus {
  outline: none;
  border-color: var(--gold);
}

.newsletter-btn {
  position: absolute;
  right: 0;
  top: 0;
  height: 100%;
  width: 46px;
  background: var(--gold);
  color: var(--primary-dark);
  border: none;
  border-radius: 0 4px 4px 0;
  cursor: pointer;
  font-size: 16px;
  transition: var(--transition);
}

.newsletter-btn:hover {
  background: var(--gold-hover);
  color: var(--text-light);
}

.footer-social {
  display: flex;
  gap: 10px;
  margin-top: 20px;
}

.footer-social a {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  border: 1px solid rgba(244, 238, 224, 0.2);
  color: var(--text-light);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
}

.footer-social a:hover {
  border-color: var(--gold);
  color: var(--gold);
}

.footer-bottom {
  border-top: 1px solid rgba(244, 238, 224, 0.1);
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 12.5px;
  color: rgba(244, 238, 224, 0.4);
}

/* Floating WhatsApp Button */
.wa-float-btn {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 999;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: #25D366;
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 30px;
  box-shadow: 0 8px 24px rgba(37, 211, 102, 0.4);
  transition: var(--transition);
  animation: pulseWa 2s infinite;
}

.wa-float-btn:hover {
  transform: scale(1.1);
  box-shadow: 0 12px 30px rgba(37, 211, 102, 0.6);
}

@keyframes pulseWa {
  0% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7); }
  70% { box-shadow: 0 0 0 15px rgba(37, 211, 102, 0); }
  100% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0); }
}

/* ==========================================================================
   SCROLL REVEAL ANIMATIONS
   ========================================================================== */

.reveal-up {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal-up.active {
  opacity: 1;
  transform: translateY(0);
}

/* ==========================================================================
   RESPONSIVE BREAKPOINTS
   ========================================================================== */

@media (max-width: 1024px) {
  .hero-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .about-grid, .info-grid, .contact-main-grid {
    grid-template-columns: 1fr;
  }

  .benefits-layout {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .benefit-box.right {
    flex-direction: row;
    text-align: left;
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 768px) {
  .top-bar-inner {
    justify-content: center;
  }

  .top-social {
    display: none;
  }

  .top-call-badge {
    clip-path: none;
    width: 100%;
    justify-content: center;
    border-radius: 0;
  }

  .nav-menu {
    display: none;
    position: absolute;
    top: 84px;
    left: 0;
    width: 100%;
    background: var(--primary-dark);
    flex-direction: column;
    padding: 24px;
    border-bottom: 1px solid var(--border-dark);
  }

  .nav-menu.active {
    display: flex;
  }

  .mobile-toggle {
    display: block;
  }

  .form-row-2 {
    grid-template-columns: 1fr;
  }

  .footer-grid {
    grid-template-columns: 1fr;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 12px;
    text-align: center;
  }
}
