/* ==========================================================================
   Gülüş Global DMC — Core Design System
   ========================================================================== */

/* --- Fonts Import --- */
@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,500;0,600;1,300;1,400&family=DM+Sans:ital,wght@0,300;0,400;0,500;0,600;0,700;1,300;1,400&display=swap');

/* --- CSS Variables --- */
:root {
  --gold: #C89B3C;
  --gold-hover: #D4AA52;
  --gold-light: #FAF6F0;
  --navy: #06262B; /* Premium Dark Teal matching Gülüş brand identity */
  --navy-light: #0B3338; /* Lighter premium teal variant */
  --charcoal: #132225; /* Very deep dark teal/charcoal for text and sub-sections */
  --ivory: #F8F7F3;
  --white: #FFFFFF;
  --divider: rgba(0, 0, 0, 0.08);
  --divider-white: rgba(255, 255, 255, 0.1);
  --muted: rgba(19, 34, 37, 0.6);
  --muted-white: rgba(255, 255, 255, 0.6);
  --serif: 'Cormorant Garamond', Georgia, serif;
  --sans: 'DM Sans', sans-serif;
  --section-gap: 120px;
  --container-width: 1280px;
  --transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

/* --- Reset & Base Styles --- */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--sans);
  background-color: var(--ivory);
  color: var(--charcoal);
  overflow-x: hidden;
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

button, input, select, textarea {
  font-family: inherit;
  font-size: inherit;
  color: inherit;
}

a {
  text-decoration: none;
  color: inherit;
}

/* --- Layout Utilities --- */
.container {
  max-width: var(--container-width);
  margin: 0 auto;
  padding: 0 40px;
}

.mobile-only {
  display: none !important;
}

.desktop-only {
  display: inline-flex !important;
}

.section-eyebrow {
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--gold);
  display: block;
  margin-bottom: 12px;
}

.section-title {
  font-family: var(--serif);
  font-size: 48px;
  font-weight: 300;
  line-height: 1.1;
  color: var(--navy);
  margin-bottom: 24px;
}

.section-title em {
  font-style: italic;
  font-weight: 400;
  color: var(--gold);
}

.section-desc {
  font-size: 18px;
  font-weight: 300;
  color: var(--muted);
  max-width: 680px;
  margin-bottom: 48px;
}

/* --- Animations --- */
.fade-up {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1), transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.fade-up.visible {
  opacity: 1;
  transform: translateY(0);
}

/* --- Header & Navbar --- */
header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background-color: var(--white); /* white background for header */
  padding: 20px 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: var(--transition);
  border-bottom: 1px solid rgba(0, 0, 0, 0.08);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.12);
}

header.scrolled {
  background-color: rgba(255, 255, 255, 0.95); /* white background with opacity */
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  padding: 12px 40px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.12);
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.2);
}

.logo-container {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 60px;
  overflow: visible;
  margin-left: 30px; /* push logo more to the right */
}

.logo-container img {
  height: 48px; /* Larger logo height */
  width: auto;
  transition: var(--transition);
}

.logo-text {
  font-family: var(--serif);
  font-size: 24px;
  font-weight: 500;
  color: var(--gold); /* rich brand gold */
  margin-left: 12px;
  letter-spacing: 0.02em;
  transition: var(--transition);
  white-space: nowrap;
}

header.scrolled .logo-text {
  font-size: 20px;
}

header.scrolled .logo-container {
  height: 50px;
}

header.scrolled .logo-container img {
  height: 40px; /* Larger compact size when scrolled */
}

.header-right {
  display: flex;
  align-items: center;
  gap: 24px;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 24px;
  list-style: none;
}

.nav-links a {
  font-size: 13px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--navy); /* dark text on white header */
  opacity: 0.85;
  transition: var(--transition);
  position: relative;
  padding: 6px 0;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 1px;
  background-color: var(--gold);
  transition: var(--transition);
}

.nav-links a:hover {
  opacity: 1;
  color: var(--gold);
}

.nav-links a:hover::after {
  width: 100%;
}

.nav-cta {
  display: inline-flex;
  align-items: center;
  align-self: center; /* prevent alignment shift in header */
  padding: 8px 18px;
  background-color: var(--gold);
  color: var(--navy);
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  border: 1px solid var(--gold);
  border-radius: 4px;
  transition: var(--transition);
}

.nav-cta:hover {
  background-color: transparent;
  color: var(--gold);
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(240, 144, 16, 0.2);
}

/* Mobile Hamburger Menu */
.hamburger {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  z-index: 1100;
  width: 30px;
  height: 20px;
  position: relative;
}

.hamburger span {
  display: block;
  width: 100%;
  height: 2px;
  background-color: var(--navy); /* dark bars on white header */
  position: absolute;
  transition: var(--transition);
}

.hamburger span:nth-child(1) { top: 0; }
.hamburger span:nth-child(2) { top: 9px; }
.hamburger span:nth-child(3) { top: 18px; }

.hamburger.open span:nth-child(1) {
  transform: rotate(45deg);
  top: 9px;
}
.hamburger.open span:nth-child(2) {
  opacity: 0;
}
.hamburger.open span:nth-child(3) {
  transform: rotate(-45deg);
  top: 9px;
}

/* --- Hero Section --- */
.hero {
  position: relative;
  height: 100vh;
  min-height: 700px;
  display: flex;
  align-items: flex-end; /* Align content to the bottom left matching reference */
  background-color: var(--navy);
  color: var(--white);
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to bottom, rgba(6, 38, 43, 0.6), rgba(6, 38, 43, 0.85)), url('https://images.unsplash.com/photo-1507608869274-d3177c8bb4c7?w=1600&q=85&auto=format') center center / cover no-repeat;
  z-index: 1;
}

.hero .container {
  position: relative;
  z-index: 2;
  width: 100%;
}

.hero-content {
  max-width: 800px;
  padding-bottom: 100px; /* spacing from bottom */
}

.hero-eyebrow {
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.35em;
  color: var(--gold);
  margin-bottom: 24px;
}

.hero h1 {
  font-family: var(--serif);
  font-size: 72px;
  font-weight: 300;
  line-height: 1.05;
  margin-bottom: 24px;
  letter-spacing: -0.01em;
}

.hero h1 em {
  font-style: italic;
  font-weight: 400;
  color: var(--gold-light);
}

.hero-sub {
  font-size: 20px;
  font-weight: 300;
  color: var(--muted-white);
  margin-bottom: 40px;
  line-height: 1.6;
}

.hero-actions {
  display: flex;
  gap: 20px;
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 36px;
  background-color: var(--gold);
  color: var(--navy);
  font-size: 14px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  border-radius: 4px;
  border: 1px solid var(--gold);
  transition: var(--transition);
}

.btn-primary:hover {
  background-color: transparent;
  color: var(--gold);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(240, 144, 16, 0.3);
}

.btn-secondary {
  display: inline-flex;
  align-items: center;
  padding: 16px 36px;
  background-color: transparent;
  color: var(--white);
  font-size: 14px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 4px;
  transition: var(--transition);
}

.btn-secondary:hover {
  border-color: var(--white);
  background-color: rgba(255, 255, 255, 0.05);
  transform: translateY(-2px);
}

/* --- Insight Strip --- */
.insight-strip {
  background-color: var(--navy-light);
  color: var(--white);
  overflow: hidden;
  padding: 18px 0;
  border-bottom: 1px solid var(--divider-white);
}

.insight-track {
  display: flex;
  align-items: center;
  white-space: nowrap;
  animation: scroll 40s linear infinite;
  width: max-content;
}

.insight-item {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-right: 48px;
}

.insight-num {
  font-family: var(--serif);
  font-size: 24px;
  color: var(--gold);
  font-weight: 400;
}

.insight-text {
  font-size: 13px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  opacity: 0.85;
}

.insight-dot {
  display: inline-block;
  width: 6px;
  height: 6px;
  background-color: var(--gold);
  border-radius: 50%;
  margin-right: 48px;
}

@keyframes scroll {
  0% { transform: translate3d(0, 0, 0); }
  100% { transform: translate3d(-50%, 0, 0); }
}

/* --- Destinations Section --- */
.destinations {
  padding: var(--section-gap) 0;
}

.dest-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 60px;
}

.dest-header-info {
  max-width: 600px;
}

.dest-header-subtitle {
  font-size: 18px;
  font-weight: 400;
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.dest-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.dest-card {
  position: relative;
  aspect-ratio: 3/4; /* elegant portrait aspect ratio matching reference site */
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  cursor: pointer;
  transition: var(--transition);
}

.dest-card-img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.dest-card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(6, 38, 43, 0.1) 30%, rgba(6, 38, 43, 0.85) 90%);
  z-index: 1;
}

.dest-card-content {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 24px; /* adjusted padding for smaller card */
  color: var(--white);
  z-index: 2;
  transition: var(--transition);
}

.dest-card-badge {
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--gold);
  margin-bottom: 8px;
  display: block;
}

.dest-card-title {
  font-family: var(--serif);
  font-size: 32px;
  font-weight: 300;
  margin-bottom: 6px;
}

.dest-card-subtitle {
  font-size: 14px;
  font-weight: 300;
  opacity: 0.75; /* always visible, slightly muted */
  margin-bottom: 16px;
  transition: var(--transition);
}

.dest-card-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--gold);
  opacity: 0.85; /* always visible */
  transition: var(--transition);
}

.dest-card-cta svg {
  transition: var(--transition);
}

.dest-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(6, 38, 43, 0.15);
}

.dest-card:hover .dest-card-img {
  transform: scale(1.08);
}

.dest-card:hover .dest-card-subtitle {
  opacity: 1;
}

.dest-card:hover .dest-card-cta {
  opacity: 1;
}

.dest-card:hover .dest-card-cta svg {
  transform: translateX(4px);
}

/* --- B2B Advantage Section --- */
    /* ’”’”’”’”’”’” ABOUT SECTION (WHY US + PHILOSOPHY) ’”’”’”’”’”’” */
    .about-section {
      /* padding: var(--section-gap) 0; */
      background: var(--warm-white);
    }

    /* Centered header */
    .about-header {
      text-align: center;
      max-width: 640px;
      margin: 0 auto 64px;
    }

    .about-header .section-divider {
      margin: 0 auto 30px;
    }

    /* 3?2 feature grid */
    .why-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 1px;
      background: var(--divider);
      border: 1px solid var(--divider);
      margin-bottom: 0;
    }

    .why-item {
      background: var(--ivory);
      padding: 36px 32px;
      transition: background 0.3s ease;
    }

    .why-item:hover {
      background: #F4F3EF;
    }

    .why-icon {
      width: 32px;
      height: 32px;
      margin-bottom: 18px;
    }

    .why-icon svg {
      width: 32px;
      height: 32px;
      stroke: var(--gold);
      fill: none;
      stroke-width: 1.3;
    }

    .why-item h4 {
      font-size: 17px;
      font-weight: 400;
      color: var(--black);
      margin-bottom: 10px;
      line-height: 1.3;
    }

    .why-item p {
      font-family: var(--sans);
      font-size: 13px;
      font-weight: 300;
      color: var(--muted);
      line-height: 1.75;
    }

    /* Full-width philosophy quote banner */
    .about-quote-banner {
      text-align: center;
      max-width: 800px;
      margin: 72px auto 0;
      /* padding: 48px 0; */
      border-top: 1px solid var(--divider);
    }

    .about-quote-banner .section-eyebrow {
      margin-bottom: 20px;
    }

    .about-statement {
      font-family: var(--serif);
      font-size: 26px;
      font-weight: 300;
      font-style: italic;
      color: var(--text);
      line-height: 1.5;
      margin: 0 0 24px;
      border: none;
      padding: 0;
    }

    .about-body {
      font-family: var(--sans);
      font-size: 14px;
      font-weight: 300;
      color: var(--muted);
      line-height: 1.85;
      margin: 0;
    }

    /* 3-column pillar cards */
    .about-pillars {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 1px;
      background: var(--divider);
      border: 1px solid var(--divider);
      margin-top: 72px;
    }

    .about-pillar {
      background: var(--ivory);
      padding: 40px 32px;
    }

    .about-pillar-icon {
      width: 28px;
      height: 28px;
      margin-bottom: 20px;
    }

    .about-pillar-icon svg {
      width: 28px;
      height: 28px;
    }

    .about-pillar-label {
      display: block;
      font-family: var(--sans);
      font-size: 10px;
      font-weight: 500;
      letter-spacing: 0.2em;
      text-transform: uppercase;
      color: var(--gold);
      margin-bottom: 14px;
    }

    .about-pillar-title {
      font-family: var(--serif);
      font-size: 20px;
      font-weight: 400;
      color: var(--text);
      line-height: 1.35;
      margin-bottom: 14px;
    }

    .about-pillar-text {
      font-family: var(--sans);
      font-size: 13px;
      font-weight: 300;
      color: var(--muted);
      line-height: 1.85;
    }


/* --- Quote Modal Popup --- */
.quote-modal-overlay {
  position: fixed;
  inset: 0;
  z-index: 2000;
  background-color: rgba(0, 0, 0, 0.75);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  display: flex;
  align-items: flex-start;
  justify-content: center;
  padding: 40px 20px;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.35s ease, visibility 0.35s ease;
  overflow-y: auto;
}

.quote-modal-overlay.active {
  opacity: 1;
  visibility: visible;
}

.quote-modal-container {
  position: relative;
  background-color: var(--navy);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 12px;
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.5);
  display: grid;
  grid-template-columns: 5fr 7fr;
  max-width: 1100px;
  width: 100%;
  margin: auto;
  transform: translateY(30px) scale(0.97);
  transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}

.quote-modal-overlay.active .quote-modal-container {
  transform: translateY(0) scale(1);
}

/* Close Button */
.quote-modal-close {
  position: absolute;
  top: 18px;
  right: 20px;
  z-index: 10;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 50%;
  color: var(--white);
  width: 38px;
  height: 38px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: var(--transition);
}

.quote-modal-close:hover {
  background: rgba(240, 144, 16, 0.2);
  border-color: var(--gold);
  color: var(--gold);
}

/* Info panel (left) */
.quote-modal-info {
  background-color: var(--navy);
  padding: 50px 40px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  border-right: 1px solid rgba(255, 255, 255, 0.07);
}

.quote-modal-info h2 {
  font-family: var(--serif);
  font-size: 40px;
  font-weight: 300;
  line-height: 1.1;
  color: var(--white);
  margin-bottom: 18px;
}

.quote-modal-info p {
  font-size: 15px;
  color: var(--muted-white);
  margin-bottom: 36px;
  line-height: 1.7;
}

/* Form panel (right) */
.quote-modal-form-wrap {
  padding: 50px 44px;
  background-color: rgba(10, 30, 35, 0.6);
}

/* Add Vehicle single checkbox */
.inquiry-form .form-group .add-vehicle-check-label {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 12px;
  cursor: pointer;
  user-select: none;
  margin-bottom: 0;
  height: 44px; /* matches height of inputs */
}

.add-vehicle-check-label input[type="checkbox"] {
  position: absolute;
  opacity: 0;
  width: 0;
  height: 0;
}

.add-vehicle-check-box {
  width: 20px;
  height: 20px;
  border: 2px solid rgba(255, 255, 255, 0.3);
  border-radius: 4px;
  background-color: transparent;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: var(--transition);
}

.add-vehicle-check-label input:checked ~ .add-vehicle-check-box {
  background-color: var(--gold);
  border-color: var(--gold);
}

.add-vehicle-check-label input:checked ~ .add-vehicle-check-box::after {
  content: '';
  display: block;
  width: 5px;
  height: 10px;
  border: 2px solid var(--navy);
  border-top: none;
  border-left: none;
  transform: rotate(45deg) translateY(-1px);
}

.inquiry-form .form-group .add-vehicle-check-label .add-vehicle-check-text {
  font-size: 14px;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.85);
  letter-spacing: 0.02em;
  text-transform: none;
}

.add-vehicle-check-label:hover .add-vehicle-check-box {
  border-color: var(--gold);
}




  color: var(--white); /* white text */
  margin-bottom: 24px;
}

.inquiry-info p {
  font-size: 17px;
  color: var(--muted-white); /* light muted text */
  margin-bottom: 40px;
}

.contact-meta {
  list-style: none;
}

.contact-meta-item {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  margin-bottom: 30px;
}

.contact-meta-icon {
  color: var(--gold);
  margin-top: 4px;
}

.contact-meta-text h4 {
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--gold);
  margin-bottom: 4px;
}

.contact-meta-text p {
  font-size: 16px;
  color: var(--muted-white); /* light text */
  margin-bottom: 0;
}

.inquiry-card {
  background-color: rgba(11, 51, 56, 0.85); /* semi-transparent dark teal card */
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  padding: 50px;
  border-radius: 8px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 15px 45px rgba(0, 0, 0, 0.3);
}

/* Form layout - Global Grid exact structure */
.inquiry-form .form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-bottom: 20px;
}

.inquiry-form .form-group {
  display: flex;
  flex-direction: column;
}

.inquiry-form .form-group[hidden] {
  display: none !important;
}

.inquiry-form .form-group label {
  display: block;
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.09em;
  color: rgba(255, 255, 255, 0.65);
  margin-bottom: 8px;
}

.inquiry-form .form-group:not(.form-group-vehicle-check) input,
.inquiry-form .form-group select,
.inquiry-form .form-group textarea {
  width: 100%;
  padding: 11px 15px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 5px;
  background-color: rgba(255, 255, 255, 0.05);
  color: var(--white);
  font-size: 14px;
  font-family: var(--sans);
  transition: var(--transition);
}

.inquiry-form .form-group input::placeholder,
.inquiry-form .form-group textarea::placeholder {
  color: rgba(255, 255, 255, 0.28);
}

.inquiry-form .form-group input:focus,
.inquiry-form .form-group select:focus,
.inquiry-form .form-group textarea:focus {
  outline: none;
  border-color: var(--gold);
  background-color: rgba(255, 255, 255, 0.09);
  box-shadow: 0 0 0 3px rgba(240, 144, 16, 0.15);
}

.inquiry-form select option {
  background-color: #0f2535;
  color: var(--white);
}

.inquiry-form select optgroup {
  background-color: #0f2535;
  color: var(--gold);
  font-weight: 600;
}

.inquiry-form textarea {
  resize: vertical;
  min-height: 100px;
}

/* Date range row */
.date-range-group {
  display: flex;
  align-items: center;
  gap: 12px;
}

.date-range-group input {
  flex: 1;
  padding: 11px 15px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 5px;
  background-color: rgba(255, 255, 255, 0.05);
  color: var(--white);
  font-size: 14px;
  font-family: var(--sans);
  transition: var(--transition);
}

.date-range-group input:focus {
  outline: none;
  border-color: var(--gold);
  background-color: rgba(255, 255, 255, 0.09);
  box-shadow: 0 0 0 3px rgba(240, 144, 16, 0.15);
}

.date-range-group span {
  color: rgba(255, 255, 255, 0.45);
  font-size: 13px;
  white-space: nowrap;
}

/* Child age fields */
.child-age-fields {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(120px, 1fr));
  gap: 12px;
  margin-top: 8px;
}

.child-age-item label {
  display: block;
  font-size: 11px;
  color: rgba(255,255,255,0.5);
  margin-bottom: 5px;
  text-transform: uppercase;
  letter-spacing: 0.07em;
}

.child-age-item select {
  width: 100%;
  padding: 9px 12px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 5px;
  background-color: rgba(255, 255, 255, 0.05);
  color: var(--white);
  font-size: 13px;
  font-family: var(--sans);
}

/* Vehicle check cell alignment */
.form-group-vehicle-check {
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}

/* Append itinerary checkbox */
.form-checkbox-group {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 20px;
}

.form-checkbox-group input[type="checkbox"] {
  appearance: none;
  -webkit-appearance: none;
  width: 17px;
  height: 17px;
  border: 1.5px solid rgba(255, 255, 255, 0.3);
  border-radius: 3px;
  background-color: transparent;
  cursor: pointer;
  position: relative;
  flex-shrink: 0;
  transition: var(--transition);
}

.form-checkbox-group input[type="checkbox"]:checked {
  background-color: var(--gold);
  border-color: var(--gold);
}

.form-checkbox-group input[type="checkbox"]:checked::after {
  content: '';
  position: absolute;
  top: 1px;
  left: 4px;
  width: 5px;
  height: 9px;
  border: 2px solid var(--navy);
  border-top: none;
  border-left: none;
  transform: rotate(45deg);
}

.form-checkbox-group label {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.75);
  cursor: pointer;
}

/* Form submit */
.form-actions {
  margin-top: 24px;
}

.btn-form-submit {
  width: 100%;
  padding: 15px;
  background-color: var(--gold);
  color: var(--navy);
  border: none;
  border-radius: 5px;
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  cursor: pointer;
  transition: var(--transition);
  font-family: var(--sans);
}

.btn-form-submit:hover {
  background-color: var(--gold-hover);
  color: var(--white);
  box-shadow: 0 6px 20px rgba(240, 144, 16, 0.35);
}

/* Standalone form-group (outside form-row) */
.inquiry-form > .form-group {
  margin-bottom: 20px;
}

/* Legacy grid classes kept for other sections */
.form-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  margin-bottom: 30px;
}

.form-group-full {
  grid-column: span 2;
}


.form-group label {
  display: block;
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--white); /* white labels */
  margin-bottom: 8px;
}

.form-control {
  width: 100%;
  padding: 12px 18px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 4px;
  background-color: rgba(255, 255, 255, 0.05); /* transparent input */
  color: var(--white);
  font-size: 15px;
  transition: var(--transition);
}

.form-control::placeholder {
  color: rgba(255, 255, 255, 0.35);
}

.form-control:focus {
  outline: none;
  border-color: var(--gold);
  background-color: rgba(255, 255, 255, 0.15);
  box-shadow: 0 0 0 3px rgba(240, 144, 16, 0.2);
}

select.form-control option {
  background-color: var(--navy-light);
  color: var(--white);
}

textarea.form-control {
  resize: vertical;
  min-height: 120px;
}

.btn-submit {
  width: 100%;
  padding: 16px;
  background-color: var(--gold); /* gold button */
  color: var(--navy);
  border: 1px solid var(--gold);
  border-radius: 4px;
  font-size: 14px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  cursor: pointer;
  transition: var(--transition);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
}

.btn-submit:hover {
  background-color: var(--gold-hover);
  border-color: var(--gold-hover);
  color: var(--white);
  box-shadow: 0 6px 20px rgba(240, 144, 16, 0.3);
}

/* Inquiry eyebrow label */
.inquiry-eyebrow {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--gold);
  border: 1px solid rgba(240, 144, 16, 0.4);
  padding: 5px 14px;
  border-radius: 30px;
  margin-bottom: 20px;
}

/* Form label note */
.form-label-note {
  font-size: 11px;
  font-weight: 400;
  text-transform: none;
  letter-spacing: 0;
  color: rgba(255, 255, 255, 0.45);
  margin-left: 4px;
}

/* Vehicle type checkbox grid */
.vehicle-checkbox-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px 16px;
  margin-top: 6px;
}

.vehicle-check-item {
  display: flex;
  align-items: center;
  gap: 10px;
  cursor: pointer;
  padding: 8px 12px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 4px;
  transition: var(--transition);
  background-color: rgba(255, 255, 255, 0.03);
}

.vehicle-check-item:hover {
  border-color: rgba(240, 144, 16, 0.5);
  background-color: rgba(240, 144, 16, 0.06);
}

.vehicle-check-item input[type="checkbox"] {
  appearance: none;
  -webkit-appearance: none;
  width: 16px;
  height: 16px;
  border: 1.5px solid rgba(255, 255, 255, 0.3);
  border-radius: 3px;
  background-color: transparent;
  cursor: pointer;
  position: relative;
  flex-shrink: 0;
  transition: var(--transition);
}

.vehicle-check-item input[type="checkbox"]:checked {
  background-color: var(--gold);
  border-color: var(--gold);
}

.vehicle-check-item input[type="checkbox"]:checked::after {
  content: '';
  position: absolute;
  top: 1px;
  left: 4px;
  width: 5px;
  height: 9px;
  border: 2px solid var(--navy);
  border-top: none;
  border-left: none;
  transform: rotate(45deg);
}

.vehicle-check-item:has(input:checked) {
  border-color: rgba(240, 144, 16, 0.6);
  background-color: rgba(240, 144, 16, 0.1);
}

.vehicle-check-item span {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.8);
  font-weight: 400;
  line-height: 1.2;
}

/* --- Footer --- */
footer {
  background-color: var(--navy);
  color: var(--white);
  padding: 80px 0 40px;
  border-top: 1px solid var(--divider-white);
}

.footer-grid {
  display: grid;
  grid-template-columns: 4fr 3fr 5fr;
  gap: 80px;
  margin-bottom: 60px;
}

.footer-brand img {
  height: 58px;
  width: auto;
  margin-bottom: 24px;
}

.footer-brand p {
  font-size: 15px;
  color: var(--muted-white);
  margin-bottom: 28px;
  line-height: 1.7;
}

.footer-socials {
  display: flex;
  gap: 16px;
}

.social-link {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.05);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
}

.social-link:hover {
  background-color: var(--gold);
  color: var(--navy);
  transform: translateY(-3px);
}

.footer-title {
  font-family: var(--serif);
  font-size: 24px;
  font-weight: 400;
  color: var(--gold);
  margin-bottom: 24px;
}

.footer-links {
  list-style: none;
}

.footer-links li {
  margin-bottom: 12px;
}

.footer-links a {
  font-size: 15px;
  color: var(--muted-white);
  transition: var(--transition);
}

.footer-links a:hover {
  color: var(--gold);
  padding-left: 4px;
}

.offices-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
}

.office-card h4 {
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--gold);
  margin-bottom: 8px;
}

.office-card p {
  font-size: 14px;
  color: var(--muted-white);
  line-height: 1.6;
}

.footer-bottom {
  border-top: 1px solid var(--divider-white);
  padding-top: 30px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.footer-bottom p {
  font-size: 13px;
  color: var(--muted-white);
}

.footer-bottom-links {
  display: flex;
  gap: 30px;
}

.footer-bottom-links a {
  font-size: 13px;
  color: var(--muted-white);
  transition: var(--transition);
}

.footer-bottom-links a:hover {
  color: var(--gold);
}

/* --- Interactive Detail Modal --- */
.modal-overlay {
  position: fixed;
  inset: 0;
  background-color: rgba(6, 38, 43, 0.75);
  backdrop-filter: blur(8px);
  z-index: 2000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.modal-overlay.open {
  opacity: 1;
  pointer-events: auto;
}

.modal-container {
  width: 90%;
  max-width: 960px;
  max-height: 90vh;
  background-color: var(--white);
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.3);
  display: flex;
  flex-direction: column;
  position: relative;
  transform: scale(0.95) translateY(20px);
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.modal-overlay.open .modal-container {
  transform: scale(1) translateY(0);
}

.modal-close-btn {
  position: absolute;
  top: 24px;
  right: 24px;
  width: 36px;
  height: 36px;
  background-color: rgba(6, 38, 43, 0.5);
  border: none;
  border-radius: 50%;
  color: var(--white);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10;
  transition: var(--transition);
}

.modal-close-btn:hover {
  background-color: var(--gold);
  color: var(--navy);
  transform: rotate(90deg);
}

.modal-hero {
  height: 240px;
  position: relative;
  display: flex;
  align-items: flex-end;
  color: var(--white);
}

.modal-hero-img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.modal-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(6, 38, 43, 0.2), rgba(6, 38, 43, 0.9));
}

.modal-hero-content {
  position: relative;
  z-index: 2;
  padding: 40px;
}

.modal-body {
  padding: 40px;
  overflow-y: auto;
  display: grid;
  grid-template-columns: 7fr 5fr;
  gap: 40px;
}

.modal-section-title {
  font-family: var(--serif);
  font-size: 26px;
  font-weight: 400;
  color: var(--navy);
  margin-bottom: 16px;
  border-bottom: 2px solid var(--gold-light);
  padding-bottom: 8px;
}

.modal-desc {
  font-size: 16px;
  color: var(--charcoal);
  margin-bottom: 30px;
  line-height: 1.7;
}

.modal-circuits {
  list-style: none;
}

.modal-circuit-item {
  margin-bottom: 20px;
  padding-left: 20px;
  position: relative;
}

.modal-circuit-item::before {
  content: '';
  position: absolute;
  left: 0;
  top: 10px;
  width: 6px;
  height: 6px;
  background-color: var(--gold);
  border-radius: 50%;
}

.modal-circuit-item h4 {
  font-size: 16px;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 4px;
}

.modal-circuit-item p {
  font-size: 14px;
  color: var(--muted);
}

.modal-side-block {
  background-color: var(--ivory);
  padding: 30px;
  border-radius: 6px;
  height: fit-content;
}

.modal-side-item {
  margin-bottom: 24px;
}

.modal-side-item:last-child {
  margin-bottom: 0;
}

.modal-side-item h4 {
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--gold);
  margin-bottom: 8px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.modal-side-item p {
  font-size: 14.5px;
  color: var(--charcoal);
  line-height: 1.6;
}

/* --- Toast Notifications --- */
.toast-container {
  position: fixed;
  bottom: 30px;
  right: 30px;
  z-index: 3000;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.toast {
  background-color: var(--navy);
  color: var(--white);
  border-left: 4px solid var(--gold);
  padding: 16px 24px;
  border-radius: 4px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.25);
  display: flex;
  align-items: center;
  gap: 16px;
  min-width: 320px;
  transform: translateY(20px);
  opacity: 0;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.toast.show {
  transform: translateY(0);
  opacity: 1;
}

.toast-success {
  border-left-color: #10B981;
}

.toast-error {
  border-left-color: #EF4444;
}

.toast-icon {
  display: flex;
  align-items: center;
}

.toast-icon svg {
  width: 20px;
  height: 20px;
}

.toast-message {
  font-size: 14.5px;
  font-weight: 500;
}

/* ==========================================================================
   Responsive Media Queries
   ========================================================================== */

@media (max-width: 1200px) {
  .container {
    padding: 0 30px;
  }
  .hero h1 {
    font-size: 60px;
  }
  .dest-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .advantage-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
}

@media (max-width: 900px) {
  .inquiry-wrapper {
    grid-template-columns: 1fr;
    gap: 50px;
  }
  .modal-body {
    grid-template-columns: 1fr;
    gap: 30px;
  }
}

@media (max-width: 768px) {
  .desktop-only {
    display: none !important;
  }
  .mobile-only {
    display: block !important;
  }
  header {
    background-color: var(--white) !important; /* white on mobile header */
    padding: 15px 20px;
  }
  header.scrolled {
    background-color: rgba(255, 255, 255, 0.95) !important;
    padding: 10px 20px;
  }
  .hamburger {
    display: block;
  }
  .hamburger.open span {
    background-color: var(--charcoal);
  }
  .nav-links {
    position: fixed;
    top: 0;
    right: -100%;
    width: 280px;
    height: 100vh;
    background-color: var(--gold-light); /* warm cream drawer background */
    flex-direction: column;
    align-items: flex-start;
    padding: 100px 40px;
    gap: 30px;
    box-shadow: -10px 0 30px rgba(200, 155, 60, 0.08);
    transition: right 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    border-left: 1px solid rgba(200, 155, 60, 0.15);
  }
  .nav-links.open {
    right: 0;
  }
  .nav-links a {
    color: var(--charcoal);
    font-size: 16px;
    width: 100%;
    display: block;
  }
  .nav-cta {
    margin-top: 20px;
    width: 100%;
    justify-content: center;
  }
  .hero h1 {
    font-size: 44px;
  }
  .hero-sub {
    font-size: 16px;
  }
  .hero-actions {
    flex-direction: column;
    gap: 12px;
  }
  .btn-primary, .btn-secondary {
    width: 100%;
    justify-content: center;
  }
  .dest-grid {
    grid-template-columns: 1fr;
  }
  .dest-card {
    aspect-ratio: 4/3; /* landscape on mobile */
  }
  .dest-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 15px;
  }
  .section-title {
    font-size: 36px;
  }
  .form-grid {
    grid-template-columns: 1fr;
  }
  .form-group-full {
    grid-column: span 1;
  }
  .quote-modal-container {
    grid-template-columns: 1fr;
    max-height: 95vh;
    overflow-y: auto;
  }
  .quote-modal-info {
    padding: 40px 24px 28px;
    border-right: none;
    border-bottom: 1px solid rgba(255,255,255,0.07);
  }
  .quote-modal-info h2 { font-size: 30px; }
  .quote-modal-form-wrap { padding: 28px 20px 40px; }
  .inquiry-form .form-row {
    grid-template-columns: 1fr;
  }
  .date-range-group {
    flex-direction: column;
    align-items: stretch;
  }
  .date-range-group span { text-align: center; }
  .footer-bottom {
    flex-direction: column;
    gap: 20px;
    text-align: center;
  }
  .footer-bottom-links {
    flex-direction: column;
    gap: 12px;
  }
}


/* Responsive About Section */
@media (max-width: 960px) {
  .why-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .why-grid, .about-pillars {
    display: flex;
    flex-wrap: nowrap;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    padding-bottom: 20px;
    gap: 16px;
    -ms-overflow-style: none;
    scrollbar-width: none;
    background: transparent;
    border: none;
  }
  .why-grid::-webkit-scrollbar, .about-pillars::-webkit-scrollbar {
    display: none;
  }
  .why-item, .about-pillar {
    flex: 0 0 78%;
    scroll-snap-align: center;
    border: 1px solid var(--divider-white, rgba(0,0,0,0.1));
  }
}

@media (max-width: 480px) {
  .why-item, .about-pillar {
    flex: 0 0 88%;
  }
}


/* --- FLOATING BUTTONS --- */


/* --- FLOATING BUTTONS --- */


/* --- ACTUAL FLOATING BUTTONS CSS --- */
.whatsapp-float {
      position: fixed;
      bottom: 30px;
      right: 30px;
      width: 50px;
      height: 50px;
      background-color: #25D366;
      color: #FFF;
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      text-decoration: none;
      box-shadow: 0 4px 15px rgba(0, 0, 0, 0.25);
      z-index: 9999;
      transition: transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275), background-color 0.3s, box-shadow 0.3s;
    }

    .whatsapp-float svg {
      width: 26px;
      height: 26px;
      fill: #FFF;
    }

    .whatsapp-float:hover {
      background-color: #128C7E;
      transform: scale(1.08);
      box-shadow: 0 6px 20px rgba(0, 0, 0, 0.35);
    }

    /* Pulse wave effect behind WhatsApp button */
    .whatsapp-float::before {
      content: '';
      position: absolute;
      inset: 0;
      background-color: #25D366;
      border-radius: 50%;
      z-index: -1;
      opacity: 0.65;
      animation: whatsapp-pulse 2s infinite ease-out;
    }

    @keyframes whatsapp-pulse {
      0% {
        transform: scale(1);
        opacity: 0.65;
      }

      100% {
        transform: scale(1.55);
        opacity: 0;
      }
    }

    /* Tooltip styling on hover */
    .whatsapp-float .tooltip-text {
      visibility: hidden;
      width: 110px;
      background-color: #0d0d0b;
      color: #FCFCFA;
      text-align: center;
      border-radius: 4px;
      padding: 6px 10px;
      position: absolute;
      z-index: 1;
      right: 125%;
      font-family: 'DM Sans', sans-serif;
      font-size: 11px;
      font-weight: 500;
      letter-spacing: 0.05em;
      text-transform: uppercase;
      opacity: 0;
      transition: opacity 0.25s, transform 0.25s;
      transform: translateX(5px);
      pointer-events: none;
      box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
      border: 1px solid rgba(200, 155, 60, 0.25);
    }

    .whatsapp-float .tooltip-text::after {
      content: "";
      position: absolute;
      top: 50%;
      left: 100%;
      margin-top: -5px;
      border-width: 5px;
      border-style: solid;
      border-color: transparent transparent transparent #0d0d0b;
    }

    .whatsapp-float:hover .tooltip-text {
      visibility: visible;
      opacity: 1;
      transform: translateX(0);
    }

.profile-float {
      position: fixed;
      bottom: 105px;
      right: 30px;
      width: 50px;
      height: 50px;
      background-color: #ffffff;
      border: 1px solid rgba(200, 155, 60, 0.4);
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      text-decoration: none;
      box-shadow: 0 4px 15px rgba(0, 0, 0, 0.25);
      z-index: 9999;
      transition: transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275), background-color 0.3s, box-shadow 0.3s;
      padding: 10px;
      box-sizing: border-box;
    }

    .profile-float img {
      max-width: 100%;
      max-height: 100%;
      object-fit: contain;
    }

    .profile-float:hover {
      background-color: #fcfcfc;
      transform: scale(1.08);
      box-shadow: 0 6px 20px rgba(0, 0, 0, 0.35);
      border-color: var(--gold, #c89b3c);
    }

    /* Pulse wave effect behind Company Profile button */
    .profile-float::before {
      content: '';
      position: absolute;
      inset: 0;
      background-color: var(--gold, #c89b3c);
      border-radius: 50%;
      z-index: -1;
      opacity: 0.4;
      animation: profile-pulse 2s infinite ease-out;
    }

    @keyframes profile-pulse {
      0% {
        transform: scale(1);
        opacity: 0.4;
      }

      100% {
        transform: scale(1.45);
        opacity: 0;
      }
    }

    /* Tooltip styling on hover */
    .profile-float .tooltip-text {
      visibility: hidden;
      width: 120px;
      background-color: #0d0d0b;
      color: #FCFCFA;
      text-align: center;
      border-radius: 4px;
      padding: 6px 10px;
      position: absolute;
      z-index: 1;
      right: 125%;
      font-family: 'DM Sans', sans-serif;
      font-size: 11px;
      font-weight: 500;
      letter-spacing: 0.05em;
      text-transform: uppercase;
      opacity: 0;
      transition: opacity 0.25s, transform 0.25s;
      transform: translateX(5px);
      pointer-events: none;
      box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
      border: 1px solid rgba(200, 155, 60, 0.25);
    }

    .profile-float .tooltip-text::after {
      content: "";
      position: absolute;
      top: 50%;
      left: 100%;
      margin-top: -5px;
      border-width: 5px;
      border-style: solid;
      border-color: transparent transparent transparent #0d0d0b;
    }

    .profile-float:hover .tooltip-text {
      visibility: visible;
      opacity: 1;
      transform: translateX(0);
    }


@media (max-width: 768px) {
  .whatsapp-float {
      position: fixed;
      bottom: 30px;
      right: 30px;
      width: 50px;
      height: 50px;
      background-color: #25D366;
      color: #FFF;
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      text-decoration: none;
      box-shadow: 0 4px 15px rgba(0, 0, 0, 0.25);
      z-index: 9999;
      transition: transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275), background-color 0.3s, box-shadow 0.3s;
    }
  .whatsapp-float svg {
      width: 26px;
      height: 26px;
      fill: #FFF;
    }
  .whatsapp-float .tooltip-text {
      visibility: hidden;
      width: 110px;
      background-color: #0d0d0b;
      color: #FCFCFA;
      text-align: center;
      border-radius: 4px;
      padding: 6px 10px;
      position: absolute;
      z-index: 1;
      right: 125%;
      font-family: 'DM Sans', sans-serif;
      font-size: 11px;
      font-weight: 500;
      letter-spacing: 0.05em;
      text-transform: uppercase;
      opacity: 0;
      transition: opacity 0.25s, transform 0.25s;
      transform: translateX(5px);
      pointer-events: none;
      box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
      border: 1px solid rgba(200, 155, 60, 0.25);
    }
  .profile-float {
      position: fixed;
      bottom: 105px;
      right: 30px;
      width: 50px;
      height: 50px;
      background-color: #ffffff;
      border: 1px solid rgba(200, 155, 60, 0.4);
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      text-decoration: none;
      box-shadow: 0 4px 15px rgba(0, 0, 0, 0.25);
      z-index: 9999;
      transition: transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275), background-color 0.3s, box-shadow 0.3s;
      padding: 10px;
      box-sizing: border-box;
    }
  .profile-float .tooltip-text {
      visibility: hidden;
      width: 120px;
      background-color: #0d0d0b;
      color: #FCFCFA;
      text-align: center;
      border-radius: 4px;
      padding: 6px 10px;
      position: absolute;
      z-index: 1;
      right: 125%;
      font-family: 'DM Sans', sans-serif;
      font-size: 11px;
      font-weight: 500;
      letter-spacing: 0.05em;
      text-transform: uppercase;
      opacity: 0;
      transition: opacity 0.25s, transform 0.25s;
      transform: translateX(5px);
      pointer-events: none;
      box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
      border: 1px solid rgba(200, 155, 60, 0.25);
    }
}

