:root {
    --red: #D0261A;
    --red-light: #FFF0EF;
    --red-mid: #F5D0CD;
    --dark: #1A1A1A;
    --muted: #6B6B6B;
    --border: #E8E0DF;
    --white: #FFFFFF;
    --bg: #FAF8F8;
  }
 
 
  .section-wrapper {
    background: var(--white);
    border-radius: 24px;
    box-shadow: 0 4px 40px rgba(0,0,0,0.08);
    overflow: hidden;
    display: grid;
    grid-template-columns: 380px 1fr;
    max-width: 1100px;
        margin: 0 auto;
    width: 100%;
  }
 
  /* ── LEFT PANEL ── */
  .left-panel {
    background: var(--red-light);
    padding: 40px 32px;
    display: flex;
    flex-direction: column;
    gap: 28px;
  }
 
  .left-panel h2 {
    /*font-family: 'Fraunces', serif;*/
    font-size: 1.5rem;
    color: var(--red);
    line-height: 1.2;
  }
 
  .left-panel p {
    font-size: 0.875rem;
    /*color: var(--muted);*/
    color: #2e2e2e;
    line-height: 1.65;
  }
 
  /* Map embed */
  .map-embed {
    width: 100%;
    height: 220px;
    border-radius: 14px;
    overflow: hidden;
    border: 2px solid var(--red-mid);
    box-shadow: 0 2px 12px rgba(208,38,26,0.12);
    flex-shrink: 0;
  }
 
  .map-embed iframe {
    width: 100%;
    height: 100%;
    border: none;
    display: block;
  }
 
  /* Contact details */
  .contact-details {
    display: flex;
    flex-direction: column;
    gap: 16px;
  }
 
  .contact-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
  }
 
  .contact-icon {
    width: 36px;
    height: 36px;
    background: var(--red);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    margin-top: 1px;
  }
 
  .contact-icon svg {
    width: 16px;
    height: 16px;
    fill: white;
  }
 
  .contact-text {
    font-size: 0.85rem;
    color: var(--dark);
    line-height: 1.55;
  }
 
  .contact-text a {
    color: var(--dark);
    text-decoration: none;
  }
  .contact-text a:hover { color: var(--red); }
 
  /* ── RIGHT PANEL ── */
  .right-panel {
    padding: 40px 44px;
    overflow-y: auto;
    max-height: 640px;
  }
 
  .right-panel::-webkit-scrollbar { width: 4px; }
  .right-panel::-webkit-scrollbar-track { background: transparent; }
  .right-panel::-webkit-scrollbar-thumb { background: var(--red-mid); border-radius: 4px; }
 
  .form-container { width: 100%; }
 
  .form-card {
       margin-bottom: 35px;
  }
 
  .form-label {
    display: block;
    font-size: 0.82rem;
    font-weight: 600;
    color: var(--dark);
    margin-bottom: 8px;
    letter-spacing: 0.02em;
    text-transform: capitalize;
  }
 
  .required { color: var(--red); margin-left: 2px; }
 
  .form-input,
  .form-textarea {
       width: 100%;
    font-size: 0.875rem;
    margin-bottom: 1rem;
    padding: 14px 15px;
    border-radius: 5px 5px 0 0;
    box-shadow: none;
    background-color: #fffafa;
    outline: 0;
    border: none !important;
    border-bottom: 1px solid #ffdada !important;
    color: #383838;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
  }
 
  .form-input::placeholder,
  .form-textarea::placeholder {
    color: #C0B8B8;
  
  }
 
  .form-input:focus,
  .form-textarea:focus {
    border-bottom-color: var(--red);
  }
 
  .form-textarea {
    resize: vertical;
    min-height: 72px;
  }
 
  /* Radio group */
  .radio-group {
    display: flex;
    flex-wrap: wrap;
    gap: 10px 20px;
    padding-top: 4px;
  }
 
  .radio-group label {
    display: flex;
    align-items: center;
    gap: 7px;
    font-size: 0.875rem;
    color: var(--dark);
    cursor: pointer;
  }
 
  .radio-group input[type="radio"] {
    accent-color: var(--red);
    width: 15px;
    height: 15px;
    cursor: pointer;
  }
 
  .radio-group .form-input {
    width: 160px;
    display: inline-block;
    vertical-align: middle;
    font-size: 0.85rem;
    padding: 4px 0;
  }
 
  /* Submit */
  .submit-btn {
    position: relative;
    color: #fff;
    font-size: 0.875rem;
    font-weight: 400;
    padding: 10px 15px;
    background: #d52027;
    box-shadow: 4px 4px 0px 0px #febc11;
    overflow: hidden;
    min-width: 128px;
    z-index: 1;
        text-align: center;
    border-radius: 12px 0 12px 12px;
  }
 
  .submit-btn:hover {
    background: #B81F14;
    transform: translateY(-1px);
    box-shadow: 0 6px 20px rgba(208,38,26,0.35);
  }
 
  .submit-btn:active { transform: translateY(0); }
 
  @media (max-width: 768px) {
    .section-wrapper { grid-template-columns: 1fr; }
    .right-panel { max-height: none; padding: 32px 24px; }
    .left-panel { padding: 32px 24px; }
    .map-embed { height: 200px; }
  }
  
  
  
  /**********popup**************/
  
   .success-modal-overlay {
        display: none;
        position: fixed;
        inset: 0;
        background: rgba(0, 0, 0, 0.5);
        z-index: 9999;
        align-items: center;
        justify-content: center;
    }

    /* Modal Box */
    .success-modal-box {
        background: #fff;
        border-radius: 12px;
        max-width: 480px;
        width: 90%;
        padding: 40px 30px;
        text-align: center;
        position: relative;
        box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
        animation: slideDown 0.4s ease;
    }

    /* Close X Button */
    .modal-close-btn {
        position: absolute;
        top: 15px;
        right: 20px;
        background: none;
        border: none;
        font-size: 22px;
        color: #999;
        cursor: pointer;
    }

    .modal-close-btn:hover {
        color: #333;
    }

    /* Success Icon Circle */
    .modal-icon-circle {
        width: 80px;
        height: 80px;
        background: #e8f5e9;
        border-radius: 50%;
        margin: 0 auto 20px;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    /* Title */
    .modal-title {
        color: #1a1a2e;
        font-size: 24px;
        margin: 0 0 8px;
        font-weight: 700;
    }

    /* Subtitle */
    .modal-subtitle {
        color: #666;
        font-size: 15px;
        margin: 0 0 25px;
    }

    /* Booking ID Box */
    .modal-booking-box {
        background: #f0f7ff;
        border: 1px dashed #4a90d9;
        border-radius: 8px;
        padding: 15px 20px;
        margin-bottom: 25px;
    }

    .modal-booking-label {
        color: #888;
        font-size: 12px;
        margin: 0 0 5px;
        text-transform: uppercase;
        letter-spacing: 1px;
    }

    .modal-booking-id {
        color: #1a1a2e;
        font-size: 22px;
        font-weight: 700;
        margin: 0;
        letter-spacing: 2px;
    }

    /* Info Note */
    .modal-info-note {
        color: #999;
        font-size: 13px;
        margin: 0 0 25px;
    }

    /* Done Button */
    .modal-done-btn {
        background: #1a1a2e;
        color: #fff;
        border: none;
        padding: 12px 40px;
        border-radius: 6px;
        font-size: 15px;
        font-weight: 600;
        cursor: pointer;
        transition: background 0.3s;
    }

    .modal-done-btn:hover {
        background: #28a745;
    }

    /* Animation */
    @keyframes slideDown {
        from { opacity: 0; transform: translateY(-30px); }
        to   { opacity: 1; transform: translateY(0); }
    }
  
  