/* --- CUSTOM CSS STYLING --- */
    @import url('https://fonts.googleapis.com/css2?family=Bricolage+Grotesque:wght@400;500;600&family=Plus+Jakarta+Sans:wght@400;500;600&display=swap');

    :root {
      --bg-dark: #141414; /* Deep rich dark background spanning full width */
      --bg-card: #221c1a; /* Dark warm cocoa tint background for map card */
      --border-color: rgba(255, 255, 255, 0.15); /* Subdued divider line color */
      --text-primary: #ffffff;
      --text-muted: #aaaaaa;
      --font-heading: 'Bricolage Grotesque', sans-serif;
      --font-body: 'Plus Jakarta Sans', sans-serif;
    }

    /* Reset basics for clean rendering */
    * {
      box-sizing: border-box;
      margin: 0;
      padding: 0;
    }

    /* Full Width Background Wrapper */
    .site-footer {
      background-color: var(--bg-dark);
      color: var(--text-primary);
      font-family: var(--font-body);
      padding: 80px 0 0 0;
      width: 100%;
    }

    /* Core Wrapper Content limited to exactly 1200px */
    .footer-inner {
      max-width: 1440px;
      margin: 0 auto;
      padding: 0 24px;
      display: grid;
      /* Balanced column widths to match image scaling layout precisely */
      grid-template-columns: 1.2fr 1.8fr 1.2fr 2fr; 
      gap: 40px;
      /* Forces all elements to match height so the vertical lines span equally */
      align-items: stretch; 
    }

    .footer-column {
      display: flex;
      flex-direction: column;
    }

    /* Vertical Border Lines */
    .col-brand {
      border-right: 1px solid #BFCDD9;
      padding-right: 40px;
    }

    /* The exact vertical divider line you requested from edited-image.png */
    .col-social {
      border-right: 1px solid #BFCDD9;
      padding-right: 40px;
    }

    /* Brand Section & Navigation List Links */
    .footer-logo {
      margin-bottom: 28px;
      max-width: 150px;
    }

    .footer-logo img {
      width: 100%;
      height: auto;
      display: block;
    }

    .footer-nav ul {
      list-style: none;
    }

    .footer-nav li {
      margin-bottom: 18px;
    }
    
      .footer-nav li a {
      font-family: 'Sora', sans-serif !important;
    }
    
    .contact-info-list li span {
      font-family: 'Sora', sans-serif !important;
    }

    .footer-nav a {
      color: var(--text-primary);
      text-decoration: none;
      font-size: 18px;
      font-weight: 400;
      letter-spacing: 1.5px;
      transition: opacity 0.2s ease;
    }

    .footer-nav a:hover {
      opacity: 0.7;
    }

    /* Header text styles */
    .column-title {
      font-family: var(--font-heading);
      font-size: 15px;
      font-weight: 600;
      letter-spacing: 1.2px;
      margin-bottom: 28px;
      color: var(--text-primary);
    }

    /* Contact Info Component List */
    .contact-info-list {
      list-style: none;
    }

   .contact-info-list li {
    display: flex;
    align-items: flex-start;
    margin-bottom: 16px;
}

.contact-info-list .icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-right: 12px;
    margin-top: 3px; /* Centers vector visually against standard typography */
    width: 16px;
    height: 16px;
    flex-shrink: 0;
}

.contact-info-list .icon img {
    width: 100%;
    height: auto;
    display: block;
}

    .contact-info-list a {
      color: white;
      text-decoration: none;
    }

    /* Social Media Circle Icon Buttons */
    .social-icons {
      display: flex;
      gap: 12px;
    }

    .social-btn {
      width: 40px;
      height: 40px;
      border-radius: 50%;
      background-color: rgba(255, 255, 255, 0.05);
      display: flex;
      justify-content: center;
      align-items: center;
      color: var(--text-primary);
      text-decoration: none;
      transition: background-color 0.2s ease;
    }

    .social-btn:hover {
      background-color: rgba(255, 255, 255, 0.15);
    }

    /* Google Maps Container & Layout */
    .map-card {
      background-color: var(--bg-card);
      border-radius: 8px;
      overflow: hidden;
      box-shadow: 0 12px 32px rgba(0, 0, 0, 0.4);
      /*max-width: 290px;*/
      /*margin-left: auto; */
    }

    .map-iframe-container {
      height: 270px;
      width: 100%;
      overflow: hidden;
    }

    .map-iframe-container iframe {
      width: 100%;
      height: 100%;
      display: block;
    }

    .map-details {
      padding: 16px;
    }

    .map-details h4 {
      font-size: 14px;
      font-weight: 500;
      margin: 0 0 6px 0;
      color: var(--text-primary);
    }

    .map-address {
      font-size: 11px;
      color: #a39693;
      margin: 0 0 12px 0;
      line-height: 1.4;
    }

    .map-rating {
      display: flex;
      align-items: center;
      font-size: 11px;
    }

    .rating-val {
      font-weight: 600;
      color: var(--text-primary);
      margin-right: 5px;
    }

    .stars {
      color: #ffb400;
      margin-right: 5px;
    }

    .reviews-count {
      color: #a39693;
    }

    /* Full Width Bottom Copyright Segment Layout */
    .footer-bottom {
      margin-top: 60px;
      border-top: 1px solid #BFCDD9;
      padding: 30px 0;
      width: 100%;
    }

    .footer-bottom-inner {
      max-width: 1200px;
      margin: 0 auto;
      padding: 0 24px;
      text-align: center;
    }

    .footer-bottom p {
      font-size: 11px;
      letter-spacing: 1.5px;
      color: white;
      margin: 0;
    }

    /* Responsive Breakdown adjustments for Smaller Screen Widths */
    @media (max-width: 1024px) {
      .footer-inner {
        grid-template-columns: 1fr 1fr;
        gap: 40px;
      }
      .col-brand, .col-social {
        border-right: none;
        padding-right: 0;
      }
      .map-card {
        margin-left: 0;
      }
    }

    @media (max-width: 640px) {
      .footer-inner {
        grid-template-columns: 1fr;
        gap: 36px;
      }
    }
    
/*Contact Us css code */
/* --- OUTER CONTAINER --- */
.form-contact-details {
    background-color: #ffffff;
    width: 100%;
    /* 120px padding from Figma specifications */
    padding: 120px 0; 
    
    display: flex !important;
    justify-content: center !important;
    align-items: center !important;
    font-family: 'Plus Jakarta Sans', sans-serif;
    box-sizing: border-box;
}


.karwaan-custom-container {
    max-width: 1200px;
    width: 100%;
    margin-left: auto !important;
    margin-right: auto !important;
    padding: 0 24px; 
    box-sizing: border-box;
}

.form-contact-details-container {
    display: flex !important;
    flex-direction: row !important; /* Flow: Horizontal */
    justify-content: space-between !important;
    align-items: flex-start;
    
    gap: 80px !important; 
    
    width: 100%;
    box-sizing: border-box;
}

/* --- ADJUSTED COLUMN RATIOS --- */
.contact-info-wrapper {
    flex: 1 1 calc(50% - 40px) !important;
    max-width: calc(50% - 40px) !important;
    display: flex;
    flex-direction: column;
}

.form-wrapper {
    flex: 1 1 calc(50% - 40px) !important;
    max-width: calc(50% - 40px) !important;
    width: 100%;
}

/* --- TYPOGRAPHY & MAP STYLING --- */
.section-main-title {
    font-family: 'Bricolage Grotesque', sans-serif;
    font-size: 46px;
    font-weight: 500;
    color: #2c2a29;
    line-height: 1.25;
    margin: 0 0 40px 0;
}

.contact-meta-list {
    list-style: none;
    padding: 0;
    margin: 0 0 32px 0;
}

.contact-meta-list li {
    display: flex;
    align-items: center; 
    margin-bottom: 16px;
}

.contact-meta-list .meta-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-right: 14px;
    width: 16px;
    height: 16px;
    flex-shrink: 0;
}

.contact-meta-list .meta-icon img {
    width: 100%;
    height: auto;
    display: block;
}

.contact-meta-list a {
    color: #555555;
    text-decoration: none;
}

.social-minimal-row {
    display: flex;
    gap: 12px;
    margin-bottom: 50px;
}

.social-circle-btn {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background-color: white;
    display: flex;
    justify-content: center;
    align-items: center;
    color: #333333;
    text-decoration: none;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.04);
}

.contact-narrative-paragraph p {
    font-size: 14px;
    line-height: 1.6;
    color: #555555;
    margin-bottom: 24px;
}

.form-alternative-notice {
    margin-top: 30px;
}

.highlighted-email {
    color: #dfa84a;
    text-decoration: none;
    font-weight: 500;
}

/* --- MINIMAL INPUT STYLINGS --- */
.minimal-booking-form {
    display: flex;
    flex-direction: column;
    gap: 28px;
    width: 100%;
}

.input-field-group {
    position: relative;
    width: 100%;
    border-bottom: 1px solid #999999;
    padding-top: 18px;
    box-sizing: border-box;
}

.input-field-group input, 
.input-field-group select,
.input-field-group textarea {
    width: 100%;
    border: none;
    outline: none;
    background: transparent;
    padding: 10px 0;
    font-size: 14px;
    color: #222222;
    font-family: inherit;
    box-sizing: border-box;
}

/* Updated Textarea Layout Structure */
.input-field-group textarea {
    min-height: 80px;
    resize: vertical;
    display: block;
}

.input-field-group select {
    appearance: none;
    -webkit-appearance: none;
    cursor: pointer;
}

.input-field-group label {
    position: absolute;
    top: 26px;
    left: 0;
    font-size: 14px;
    color: #777777;
    transition: all 0.25s ease;
    pointer-events: none;
}

.required-asterisk {
    color: #e05d4b;
    margin-left: 2px;
}

/* Interactive Floating Labels Framework mapped to Fields & Textarea */
.input-field-group input:focus ~ label,
.input-field-group input:not(:placeholder-shown) ~ label,
.input-field-group select:focus ~ label,
.input-field-group select:valid ~ label,
.input-field-group textarea:focus ~ label,
.input-field-group textarea:not(:placeholder-shown) ~ label {
    top: 0px;
    font-size: 11px;
    color: #888888;
}

.select-group {
    position: relative;
}

.select-dropdown-chevron {
    position: absolute;
    right: 5px;
    top: 28px;
    width: 8px;
    height: 8px;
    border-right: 1px solid #666666;
    border-bottom: 1px solid #666666;
    transform: rotate(45deg);
    pointer-events: none;
}

.form-action-row {
    margin-top: 15px;
}

.submit-booking-btn {
    background: transparent;
    color: #2c2a29;
    border: 1px solid #2c2a29;
    padding: 14px 28px;
    font-size: 13px;
    font-weight: 500;
    letter-spacing: 1px;
    cursor: pointer;
    transition: all 0.2s ease;
}

.submit-booking-btn:hover {
    background-color: #2c2a29;
    color: #ffffff;
}

/* --- RESPONSIVE FALLBACKS --- */
@media (max-width: 868px) {
    .form-contact-details-container {
        flex-direction: column !important;
        gap: 50px !important;
    }
    .contact-info-wrapper, 
    .form-wrapper {
        width: 100% !important;
        max-width: 100% !important;
        flex: 0 0 100% !important;
    }
}
/*Contact Us css code */

/*Booking Form Css */
@import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:wght@300;400;500&display=swap');

/* ==========================================================================
   1. OVERLAY backdrop SETUP
   ========================================================================== */

.modal-backdrop {
  background-color: rgba(26, 26, 26, 0.45) !important;
  opacity: 1 !important;
}

#fefd-booking-popup {
  z-index: 1050 !important;
}

.modal-dialog-centered {
    width: 1000px !important;
}
/* ==========================================================================
   2. MAIN CONTAINER CARD
   ========================================================================== */

.as-is-card-wrapper {
  background-color: #ffffff !important;
  background-image: none !important;
  border-radius: 24px !important;
  border: none !important;
  font-family: 'Plus Jakarta Sans', sans-serif !important;
  position: relative;
  box-shadow: 0 15px 45px rgba(0, 0, 0, 0.08);
  width: 100%;
}

/* ==========================================================================
   3. FIGMA LAYOUT ELEMENTS & OVERLAY CANCEL ICON
   ========================================================================== */

/* Absolute layout position outside the white card area */
.as-is-close-trigger {
  position: absolute;
  top: -48px;
  right: 0;
  width: 36px;
  height: 36px;
  background-color: #ffffff !important;
  border: none !important;
  border-radius: 50% !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  cursor: pointer;
  z-index: 1060;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.1);
  transition: transform 0.2s ease;
}

.as-is-close-trigger:hover {
  transform: scale(1.05);
}

/* Structural Left Panel Stack */
.as-is-left-content-stack {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  text-align: left;
}

.as-is-modal-title {
  font-size: 3.2rem;
  font-weight: 300; /* Crisp thin style matched with image 2 */
  line-height: 1.2;
  color: #1a1a1a;
  letter-spacing: -0.8px;
  margin: 0;
}

.as-is-social-row {
  display: flex !important;
  flex-direction: row !important;
  gap: 12px !important;
  margin-top: 24px;
  margin-bottom: 40px; /* Space between links and descriptive body copy */
}

.as-is-icon-circle-link {
  width: 38px;
  height: 38px;
  background-color: #ffffff !important;
  color: #1a1a1a !important;
  border-radius: 50% !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  text-decoration: none !important;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.04);
  border: 1px solid #ededed;
  transition: background-color 0.2s ease;
}

.as-is-icon-circle-link:hover {
  background-color: #f7f7f7 !important;
}

.as-is-descriptive-block {
  max-width: 90%;
}

.as-is-descriptive-text {
  font-size: 0.94rem;
  line-height: 1.6;
  color: #2b2b2b;
}

.as-is-gold-link {
  color: #ffb700 !important;
  text-decoration: none;
  font-weight: 400;
}

/* Required Indicator Asterisks */
.as-is-red-star {
  color: #e63946 !important;
  font-weight: 400;
  margin-left: 2px;
}

/* ==========================================================================
   4. FORM MATRIX & LABELS
   ========================================================================== */

.as-is-form-grid {
  display: flex;
  flex-direction: column;
  gap: 30px;
  width: 100%;
}

.as-is-input-frame {
  position: relative;
  width: 100%;
}

.as-is-input-frame input,
.as-is-input-frame select,
.as-is-input-frame textarea {
  width: 100%;
  padding: 8px 0;
  background: transparent !important;
  border: none !important;
  border-bottom: 1px solid #cccccc !important;
  outline: none !important;
  box-shadow: none !important;
  font-size: 0.96rem;
  color: #1a1a1a;
  font-family: 'Plus Jakarta Sans', sans-serif !important;
}

.as-is-input-frame textarea {
  min-height: 80px;
  resize: vertical;
}

.as-is-input-frame label {
  position: absolute;
  top: 8px;
  left: 0;
  color: #777777;
  font-size: 0.96rem;
  pointer-events: none;
  transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
}

.as-is-input-frame input:focus ~ label,
.as-is-input-frame input:not(:placeholder-shown) ~ label,
.as-is-input-frame select:focus ~ label,
.as-is-input-frame select:valid ~ label,
.as-is-input-frame textarea:focus ~ label,
.as-is-input-frame textarea:not(:placeholder-shown) ~ label {
  top: -16px;
  font-size: 0.76rem;
  color: #555555;
}

.as-is-input-frame input:focus,
.as-is-input-frame textarea:focus,
.as-is-input-frame select:focus {
  border-bottom: 1px solid #1a1a1a !important;
}

.as-is-input-frame select {
  appearance: none;
  -webkit-appearance: none;
  cursor: pointer;
  padding-right: 24px;
}

.as-is-select-arrow-container {
  position: absolute;
  right: 0;
  top: 12px;
  pointer-events: none;
  color: #1a1a1a;
}

.as-is-submit-btn {
  background: transparent !important;
  color: #1a1a1a !important;
  border: 1px solid #1a1a1a !important;
  padding: 12px 36px;
  font-size: 0.88rem;
  font-weight: 400;
  letter-spacing: 0.5px;
  cursor: pointer;
  transition: all 0.2s ease;
}

.as-is-submit-btn:hover {
  background-color: #1a1a1a !important;
  color: #ffffff !important;
}

/* ==========================================================================
   5. RESPONSIVE MEDIA BREAKPOINTS
   ========================================================================== */

@media (max-width: 991.98px) {
  .as-is-close-trigger {
    top: 16px;
    right: 16px;
  }
  
  .as-is-modal-title {
    font-size: 2.4rem;
  }
  
  .as-is-social-row {
    margin-bottom: 24px;
  }
  
  .as-is-form-grid {
    gap: 24px;
  }
}
/*Booking Form Css */