/* ============================================
   BLUE SUN LUXURY YACHTS - Pixel-Perfect CSS
   ============================================ */

   *, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }
  
  :root {
    --navy: #0a2540;
    --navy-dark: #0d1b2a;
    --gold: #d4a24c;
    --gold-hover: #c49340;
    --gray-btn: #9e9e9e;
    --gray-btn-hover: #888;
    --white: #ffffff;
    --off-white: #f5f7fa;
    --bg-wizard: #eef1f5;
    --border: #d5d9e0;
    --text: #2c2c2c;
    --text-light: #6b7280;
    --text-muted: #9ca3af;
    --font-serif: 'Playfair Display', Georgia, 'Times New Roman', serif;
    --font-sans: 'Montserrat', 'Segoe UI', Arial, sans-serif;
  }
  
  html {
    scroll-behavior: smooth;
    font-size: 16px;
  }
  
  body {
    font-family: var(--font-sans);
    color: var(--text);
    line-height: 1.6;
    background: var(--white);
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
  }
  
  img {
    max-width: 100%;
    height: auto;
    display: block;
  }
  
  a {
    text-decoration: none;
    color: inherit;
  }
  
  ul {
    list-style: none;
  }
  
  .container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 40px;
  }
  
  
  /* ================================
     BUTTONS
     ================================ */
  .btn {
    display: inline-block;
    padding: 16px 40px;
    border-radius: 4px;
    font-family: var(--font-sans);
    font-weight: 700;
    font-size: 0.78rem;
    letter-spacing: 2px;
    cursor: pointer;
    border: none;
    transition: all 0.3s ease;
    text-align: center;
    text-transform: uppercase;
  }
  
  .btn-gold {
    background: var(--gold);
    color: var(--white);
  }
  .btn-gold:hover {
    background: var(--gold-hover);
    transform: translateY(-1px);
    box-shadow: 0 4px 16px rgba(212, 162, 76, 0.35);
  }
  
  .btn-gold-full {
    display: block;
    width: 100%;
    background: var(--gold);
    color: var(--white);
    padding: 18px;
    border-radius: 4px;
    font-family: var(--font-sans);
    font-weight: 700;
    font-size: 0.78rem;
    letter-spacing: 2px;
    cursor: pointer;
    border: none;
    text-transform: uppercase;
    margin-bottom: 12px;
    transition: all 0.3s;
  }
  .btn-gold-full:hover {
    background: var(--gold-hover);
  }
  
  .btn-gray-full {
    display: block;
    width: 100%;
    background: var(--gray-btn);
    color: var(--white);
    padding: 18px;
    border-radius: 4px;
    font-family: var(--font-sans);
    font-weight: 700;
    font-size: 0.78rem;
    letter-spacing: 2px;
    cursor: pointer;
    border: none;
    text-transform: uppercase;
    transition: all 0.3s;
  }
  .btn-gray-full:hover {
    background: var(--gray-btn-hover);
  }
  
  .btn-gold-card {
    display: block;
    width: 100%;
    background: var(--gold);
    color: var(--white);
    padding: 14px;
    border-radius: 4px;
    font-family: var(--font-sans);
    font-weight: 700;
    font-size: 0.72rem;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    text-align: center;
    transition: all 0.3s;
  }
  .btn-gold-card:hover {
    background: var(--gold-hover);
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(212, 162, 76, 0.3);
  }
  
  
  /* ================================
     HERO SECTION
     ================================ */
  .hero {
    position: relative;
    height: 100vh;
    min-height: 600px;
    max-height: 900px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
  }
  
  .hero-bg {
    position: absolute;
    inset: 0;
  }
  .hero-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
  
  .hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
      180deg,
      rgba(10, 37, 64, 0.25) 0%,
      rgba(10, 37, 64, 0.40) 60%,
      rgba(10, 37, 64, 0.55) 100%
    );
  }
  
  .hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: var(--white);
    max-width: 620px;
    padding: 0 24px;
  }
  
  .hero-logo {
    margin-bottom: 16px;
  }
  .hero-logo img {
    height: 80px;
    margin: 0 auto;
    filter: brightness(0) invert(1);
  }
  
  .hero h1 {
    font-family: var(--font-serif);
    font-size: 3.4rem;
    font-weight: 400;
    line-height: 1.15;
    margin-bottom: 18px;
    letter-spacing: -0.02em;
  }
  
  .hero-subtitle {
    font-size: 0.95rem;
    font-weight: 400;
    margin-bottom: 6px;
    color: rgba(255, 255, 255, 0.9);
    letter-spacing: 0.02em;
  }
  
  .hero-tagline {
    font-family: var(--font-serif);
    font-size: 1.2rem;
    margin-bottom: 32px;
    color: rgba(255, 255, 255, 0.95);
  }
  
  .hero-scroll-indicator {
    position: absolute;
    bottom: 28px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
  }
  .scroll-line {
    width: 2px;
    height: 48px;
    background: rgba(255, 255, 255, 0.6);
    animation: scrollPulse 2s ease-in-out infinite;
  }
  
  @keyframes scrollPulse {
    0%, 100% { opacity: 0.4; transform: scaleY(0.7); }
    50% { opacity: 1; transform: scaleY(1); }
  }
  
  
  /* ================================
     CONCIERGE SECTION
     ================================ */
  .concierge-section {
    padding: 80px 0 56px;
    text-align: center;
    background: var(--white);
  }
  
  .section-label {
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 3.5px;
    text-transform: uppercase;
    color: var(--text-muted);
    margin-bottom: 20px;
  }
  
  .concierge-heading {
    font-family: var(--font-serif);
    font-size: 2rem;
    font-weight: 400;
    font-style: italic;
    color: var(--navy);
    max-width: 620px;
    margin: 0 auto 52px;
    line-height: 1.5;
  }
  
  /* Image strip - edge to edge, 4 images with varying widths */
  .concierge-images {
    display: flex;
    gap: 12px;
    width: 100%;
    margin-bottom: 52px;
    padding: 0 20px;
  }
  
  .concierge-img {
    overflow: hidden;
    border-radius: 12px;
  }
  .concierge-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
  
  /* Image proportions matching the Figma design */
  .concierge-img.img-1 {
    flex: 0 0 18%;
    height: 360px;
  }
  .concierge-img.img-2 {
    flex: 0 0 22%;
    height: 360px;
  }
  .concierge-img.img-3 {
    flex: 0 0 30%;
    height: 360px;
  }
  .concierge-img.img-4 {
    flex: 0 0 24%;
    height: 360px;
  }
  
  .concierge-divider {
    width: 60px;
    height: 2px;
    background: var(--navy);
    margin: 0 auto 36px;
  }
  
  .concierge-text {
    max-width: 700px;
    margin: 0 auto 36px;
    text-align: center;
    font-size: 0.9rem;
    line-height: 1.8;
    color: var(--text);
  }
  .concierge-text .text-highlight {
    background: linear-gradient(to bottom, transparent 40%, rgba(212, 162, 76, 0.35) 40%);
    padding: 0 2px;
  }
  .concierge-text p {
    margin-bottom: 16px;
  }
  .concierge-text p:last-child {
    margin-bottom: 0;
  }
  
  .concierge-cta {
    text-align: center;
    margin-bottom: 16px;
  }
  
  .concierge-note {
    text-align: center;
    font-size: 0.82rem;
    color: var(--text-light);
  }
  
  
  /* ================================
     ÜBER NANCY SECTION
     ================================ */
  .nancy-section {
    padding: 72px 0 80px;
    background: var(--white);
  }
  
  .nancy-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 56px;
    align-items: start;
  }
  
  .nancy-title {
    font-family: var(--font-serif);
    font-size: 2.3rem;
    font-weight: 700;
    color: var(--navy);
    margin-bottom: 14px;
  }
  
  .nancy-highlight {
    color: var(--navy);
    font-weight: 700;
    font-size: 0.95rem;
    margin-bottom: 18px;
    line-height: 1.8;
    display: block;
  }
  .nancy-highlight span {
    background: linear-gradient(to bottom, transparent 50%, rgba(212, 162, 76, 0.3) 50%);
    padding: 2px 4px;
  }
  
  .nancy-text > p {
    font-size: 0.9rem;
    color: var(--text);
    line-height: 1.7;
    margin-bottom: 14px;
  }
  
  .nancy-list {
    padding-left: 22px;
    margin-bottom: 22px;
  }
  .nancy-list li {
    list-style: disc;
    font-size: 0.9rem;
    color: var(--text);
    margin-bottom: 6px;
    line-height: 1.6;
  }
  .nancy-list li::marker {
    color: var(--text-light);
  }
  
  .nancy-quote-block {
    border-left: 3px solid var(--gold);
    padding-left: 16px;
    margin-bottom: 16px;
  }
  
  .nancy-bold {
    font-weight: 700;
    color: var(--navy);
    font-size: 0.95rem;
    line-height: 1.5;
  }
  
  .nancy-bold-sm {
    font-weight: 700;
    font-size: 0.95rem;
    margin-bottom: 10px;
    color: var(--navy);
  }
  
  .nancy-right {
    position: relative;
  }
  
  .nancy-photo-wrap {
    position: relative;
    margin-bottom: 24px;
    overflow: hidden;
  }
  .nancy-photo-wrap > img {
    width: 100%;
    display: block;
  }
  
  .vdc-badge-small {
    position: absolute;
    top: 16px;
    right: 16px;
    width: 60px;
    height: 60px;
    background: white;
    border-radius: 50%;
    padding: 6px;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.18);
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .vdc-badge-small img {
    width: 100%;
    height: 100%;
    object-fit: contain;
  }
  
  .nancy-right-text {
    font-size: 0.9rem;
    line-height: 1.7;
    color: var(--text);
  }
  
  .nancy-cta-text {
    color: var(--gold);
    font-weight: 700;
    margin-bottom: 8px;
    font-size: 0.95rem;
  }
  .nancy-cta-text strong {
    color: var(--gold);
  }
  
  
  /* ================================
     TRUST SECTION
     ================================ */
  .trust-section {
    padding: 32px 0 72px;
    background: var(--white);
  }
  
  .trust-grid {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 20px;
    align-items: center;
    margin-bottom: 20px;
  }
  
  .trust-item {
    overflow: hidden;
    border-radius: 0;
  }
  .trust-item img {
    width: 100%;
    height: 260px;
    object-fit: cover;
  }
  
  .trust-item.vdc-logo {
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .trust-item.vdc-logo img {
    object-fit: contain;
    height: 260px;
    padding: 16px;
  }
  
  .trust-text {
    text-align: center;
    font-size: 0.9rem;
    color: var(--text);
    margin-top: 16px;
  }
  
  
  /* ================================
     YACHTS / SERVICES SECTION
     ================================ */
  .yachts-section {
    padding: 64px 0 88px;
    background: var(--white);
  }
  
  .yachts-title {
    font-family: var(--font-serif);
    font-size: 2rem;
    font-weight: 400;
    font-style: italic;
    text-align: center;
    color: var(--navy);
    margin-bottom: 10px;
  }
  
  .yachts-subtitle {
    text-align: center;
    font-size: 0.88rem;
    color: var(--text-light);
    margin-bottom: 52px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
  }
  
  .yacht-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
  }
  
  .yacht-card {
    background: var(--white);
    border: 1px solid #e5e8ed;
    border-radius: 10px;
    overflow: hidden;
    padding: 14px 14px 18px;
    display: flex;
    flex-direction: column;
    transition: box-shadow 0.3s ease, transform 0.3s ease;
  }
  .yacht-card:hover {
    box-shadow: 0 8px 30px rgba(10, 37, 64, 0.1);
    transform: translateY(-2px);
  }
  
  .yacht-card-img {
    height: 200px;
    overflow: hidden;
    border-radius: 8px;
    margin-bottom: 16px;
  }
  .yacht-card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
  }
  .yacht-card:hover .yacht-card-img img {
    transform: scale(1.03);
  }
  
  .yacht-card-body {
    flex: 1;
    display: flex;
    flex-direction: column;
  }
  
  .yacht-card h3 {
    font-family: var(--font-serif);
    font-size: 1.05rem;
    font-weight: 600;
    color: var(--navy);
    margin-bottom: 8px;
  }
  
  .yacht-card p {
    font-size: 0.82rem;
    color: var(--text-light);
    line-height: 1.65;
    margin-bottom: 18px;
    flex: 1;
  }
  
  
  /* ================================
     FOOTER
     ================================ */
  .footer {
    background: var(--navy-dark);
    color: var(--white);
    padding: 52px 0 44px;
  }
  
  .footer-brand {
    text-align: center;
    margin-bottom: 40px;
  }
  
  .footer-logo-text {
    font-family: var(--font-serif);
    font-size: 1.6rem;
    font-weight: 700;
    letter-spacing: 5px;
    text-transform: uppercase;
    margin-bottom: 14px;
  }
  
  .footer-desc {
    font-size: 0.82rem;
    color: rgba(255, 255, 255, 0.7);
    max-width: 640px;
    margin: 0 auto;
    line-height: 1.7;
  }
  
  .footer-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    max-width: 720px;
    margin: 0 auto;
  }
  
  .footer-col h4 {
    font-family: var(--font-serif);
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 18px;
    color: var(--white);
  }
  
  .footer-col ul li {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.75);
    margin-bottom: 12px;
    line-height: 1.5;
    display: flex;
    align-items: flex-start;
    gap: 10px;
  }
  
  .footer-icon {
    width: 18px;
    height: 18px;
    flex-shrink: 0;
    margin-top: 1px;
    stroke: rgba(255, 255, 255, 0.65);
  }

  .footer-legal {
    text-align: center;
    margin-top: 40px;
    padding-top: 28px;
    border-top: 1px solid rgba(255, 255, 255, 0.12);
  }
  .footer-legal p {
    font-size: 0.78rem;
    color: rgba(255, 255, 255, 0.5);
    line-height: 1.6;
    margin-bottom: 4px;
  }
  
  
  /* ================================
     WIZARD / BOOKING FORM
     ================================ */
  .booking-page {
    min-height: 100vh;
  }
  
  .wizard-container {
    min-height: 100vh;
    background: var(--bg-wizard);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    padding: 40px 24px;
  }
  
  .wizard-bg-decoration {
    position: absolute;
    inset: 0;
    pointer-events: none;
    overflow: hidden;
  }
  
  .wave-circle {
    position: absolute;
    border-radius: 50%;
    border: 1px solid rgba(180, 190, 205, 0.2);
  }
  .wave-circle.wave-1 {
    width: 600px;
    height: 600px;
    top: -100px;
    right: -150px;
  }
  .wave-circle.wave-2 {
    width: 400px;
    height: 400px;
    top: 50px;
    right: -50px;
  }
  
  .wave-lines {
    position: absolute;
    inset: 0;
    background: repeating-linear-gradient(
      -45deg,
      transparent,
      transparent 20px,
      rgba(180, 190, 205, 0.05) 20px,
      rgba(180, 190, 205, 0.05) 21px
    );
  }
  
  .wizard-content {
    position: relative;
    z-index: 2;
    width: 100%;
    max-width: 540px;
    text-align: center;
  }
  
  .wizard-logo img {
    height: 80px;
    margin: 0 auto 28px;
  }
  
  /* Progress Bar */
  .progress-bar {
    display: flex;
    gap: 8px;
    margin-bottom: 36px;
    justify-content: center;
  }
  
  .progress-segment {
    width: 68px;
    height: 5px;
    border-radius: 3px;
    background: #d0d5dd;
    transition: background 0.4s;
  }
  .progress-segment.active {
    background: var(--navy);
  }
  
  /* Form Steps */
  .form-step {
    display: none;
    text-align: center;
  }
  .form-step.active {
    display: block;
    animation: fadeUp 0.4s ease;
  }
  
  @keyframes fadeUp {
    from { opacity: 0; transform: translateY(14px); }
    to { opacity: 1; transform: translateY(0); }
  }
  
  .step-label {
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 10px;
  }
  
  .step-title {
    font-family: var(--font-serif);
    font-size: 1.6rem;
    font-weight: 400;
    font-style: italic;
    color: var(--navy);
    line-height: 1.35;
    margin-bottom: 28px;
  }
  
  .step-subtitle {
    font-size: 0.85rem;
    color: var(--text-light);
    margin-bottom: 24px;
  }
  
  /* Option Cards */
  .option-list {
    text-align: left;
    margin-bottom: 24px;
  }
  .option-list.compact {
    margin-bottom: 20px;
  }
  
  .option-card {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px 20px;
    border: 1.5px solid var(--border);
    border-radius: 8px;
    margin-bottom: 10px;
    cursor: pointer;
    background: var(--white);
    transition: border-color 0.3s, background 0.3s, box-shadow 0.3s;
  }
  .option-card:hover {
    border-color: #a0aec0;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
  }
  
  .option-card input {
    display: none;
  }
  
  .radio-circle {
    width: 22px;
    height: 22px;
    border-radius: 50%;
    border: 2px solid var(--border);
    flex-shrink: 0;
    transition: all 0.3s;
    position: relative;
  }
  
  .option-card input:checked ~ .radio-circle {
    border-color: var(--gold);
    background: var(--gold);
  }
  .option-card input:checked ~ .radio-circle::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--white);
  }
  
  .option-text {
    flex: 1;
  }
  .option-main {
    display: block;
    font-size: 0.92rem;
    font-weight: 500;
    color: var(--text);
  }
  .option-sub {
    display: block;
    font-size: 0.8rem;
    color: var(--text-light);
    margin-top: 3px;
  }
  
  /* Wizard Form Fields */
  .form-fields-wizard {
    text-align: left;
    margin-bottom: 24px;
  }
  
  .field-group-wizard {
    margin-bottom: 18px;
  }
  .field-group-wizard label {
    display: block;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--text);
    margin-bottom: 7px;
  }
  
  .field-group-wizard input,
  .field-group-wizard select,
  .field-group-wizard textarea {
    width: 100%;
    padding: 14px 16px;
    border: 1.5px solid var(--border);
    border-radius: 8px;
    font-family: var(--font-sans);
    font-size: 0.92rem;
    color: var(--text);
    background: var(--white);
    transition: border-color 0.3s;
    appearance: none;
    -webkit-appearance: none;
  }
  .field-group-wizard select {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='14' height='8'%3E%3Cpath d='M1 1l6 6 6-6' stroke='%236b7280' stroke-width='1.5' fill='none' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 16px center;
    padding-right: 40px;
  }
  .field-group-wizard input:focus,
  .field-group-wizard select:focus,
  .field-group-wizard textarea:focus {
    outline: none;
    border-color: var(--gold);
    box-shadow: 0 0 0 3px rgba(212, 162, 76, 0.12);
  }
  
  .field-group-wizard textarea {
    resize: vertical;
  }
  
  .field-note {
    font-size: 0.82rem;
    color: var(--text);
    font-weight: 600;
    margin-top: -8px;
  }
  
  /* Notice Box */
  .notice-box {
    background: #fef3e2;
    border-radius: 8px;
    padding: 18px 22px;
    margin: 20px 0;
    text-align: left;
  }
  .notice-title {
    color: var(--gold);
    font-weight: 700;
    font-size: 0.85rem;
    margin-bottom: 4px;
  }
  .notice-text {
    color: var(--text-light);
    font-size: 0.82rem;
    line-height: 1.6;
  }
  
  
  /* ================================
     THANK YOU PAGE
     ================================ */
  .thankyou-content {
    padding: 20px 0;
  }
  
  .thankyou-avatar {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    overflow: hidden;
    margin: 0 auto 24px;
    border: 3px solid var(--navy);
  }
  .thankyou-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
  
  .thankyou-title {
    font-family: var(--font-serif);
    font-size: 1.8rem;
    font-weight: 400;
    font-style: italic;
    color: var(--navy);
    margin-bottom: 16px;
  }
  
  .thankyou-text {
    font-size: 0.92rem;
    color: var(--text);
    margin-bottom: 8px;
  }
  
  .thankyou-italic {
    font-family: var(--font-serif);
    font-size: 0.95rem;
    color: var(--navy);
    margin-bottom: 20px;
  }
  
  .thankyou-divider {
    width: 50px;
    height: 2px;
    background: var(--navy);
    margin: 0 auto 20px;
  }
  
  .thankyou-name {
    font-size: 1rem;
    color: var(--navy);
    margin-bottom: 2px;
  }
  
  .thankyou-role {
    font-size: 0.85rem;
    color: var(--text-light);
    margin-bottom: 24px;
  }
  
  
  /* ================================
     RESPONSIVE — TABLET (768px - 1024px)
     ================================ */
  @media (max-width: 1024px) {
    .container {
      padding: 0 32px;
    }
  
    .hero h1 {
      font-size: 2.8rem;
    }
  
    .concierge-heading {
      font-size: 1.7rem;
    }
  
    .concierge-img.img-1,
    .concierge-img.img-2,
    .concierge-img.img-3,
    .concierge-img.img-4 {
      height: 300px;
    }
  
    .nancy-grid {
      gap: 36px;
    }
  
    .nancy-title {
      font-size: 1.9rem;
    }
  
    .yacht-cards {
      gap: 20px;
    }
  
    .yacht-card-img {
      height: 170px;
    }
  }
  
  
  /* ================================
     RESPONSIVE — MOBILE (max-width: 768px)
     ================================ */
  @media (max-width: 768px) {
    .container {
      padding: 0 20px;
    }
  
    /* Hero */
    .hero {
      height: 100vh;
      min-height: 520px;
      max-height: none;
    }
    .hero h1 {
      font-size: 2.2rem;
    }
    .hero-subtitle {
      font-size: 0.85rem;
    }
    .hero-tagline {
      font-size: 1rem;
      margin-bottom: 28px;
    }
    .hero-logo img {
      height: 60px;
    }
    .btn {
      padding: 14px 28px;
      font-size: 0.72rem;
    }
  
    /* Concierge */
    .concierge-section {
      padding: 56px 0 40px;
    }
    .concierge-heading {
      font-size: 1.4rem;
      margin-bottom: 36px;
      max-width: 100%;
    }
    .concierge-images {
      flex-wrap: wrap;
      gap: 6px;
      margin-bottom: 36px;
    }
    .concierge-img.img-1,
    .concierge-img.img-2,
    .concierge-img.img-3,
    .concierge-img.img-4 {
      flex: 0 0 calc(50% - 3px);
      height: 200px;
    }
  
    /* Nancy */
    .nancy-section {
      padding: 48px 0 56px;
    }
    .nancy-grid {
      grid-template-columns: 1fr;
      gap: 40px;
    }
    .nancy-title {
      font-size: 1.8rem;
    }
    .nancy-right {
      order: -1;
    }
  
    /* Trust */
    .trust-section {
      padding: 24px 0 56px;
    }
    .trust-grid {
      grid-template-columns: 1fr;
      gap: 16px;
    }
    .trust-item img {
      height: 220px;
    }
    .trust-item.vdc-logo img {
      height: 180px;
    }
  
    /* Yacht Cards */
    .yachts-section {
      padding: 48px 0 64px;
    }
    .yachts-title {
      font-size: 1.6rem;
    }
    .yachts-subtitle {
      margin-bottom: 36px;
    }
    .yacht-cards {
      grid-template-columns: 1fr;
      gap: 24px;
    }
    .yacht-card-img {
      height: 220px;
    }
  
    /* Footer */
    .footer {
      padding: 40px 0 36px;
    }
    .footer-grid {
      grid-template-columns: 1fr;
      gap: 28px;
    }
    .footer-desc {
      font-size: 0.8rem;
    }
  
    /* Wizard */
    .wizard-container {
      padding: 32px 16px;
    }
    .wizard-content {
      max-width: 100%;
    }
    .step-title {
      font-size: 1.35rem;
    }
    .progress-segment {
      width: 44px;
    }
  }
  
  
  /* ================================
     RESPONSIVE — SMALL MOBILE (max-width: 480px)
     ================================ */
  @media (max-width: 480px) {
    .hero h1 {
      font-size: 1.8rem;
    }
    .hero-subtitle {
      font-size: 0.8rem;
    }
    .hero-tagline {
      font-size: 0.9rem;
    }
  
    .concierge-heading {
      font-size: 1.2rem;
    }
  
    .concierge-img.img-1,
    .concierge-img.img-2,
    .concierge-img.img-3,
    .concierge-img.img-4 {
      height: 160px;
    }
  
    .nancy-title {
      font-size: 1.5rem;
    }
  
    .yacht-card-img {
      height: 180px;
    }
  
    .step-title {
      font-size: 1.2rem;
    }
  
    .progress-segment {
      width: 36px;
      height: 4px;
    }
  }
  
  
  /* ================================
     RESPONSIVE — 2-COLUMN TABLET CARDS
     ================================ */
  @media (min-width: 769px) and (max-width: 1024px) {
    .yacht-cards {
      grid-template-columns: repeat(2, 1fr);
    }
  }