/* --- 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 var(--border-color);
      padding-right: 40px;
    }

    /* The exact vertical divider line you requested from edited-image.png */
    .col-social {
      border-right: 1px solid var(--border-color);
      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 a {
      color: var(--text-primary);
      text-decoration: none;
      font-size: 14px;
      font-weight: 500;
      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: var(--text-muted);
      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 var(--border-color);
      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: var(--text-muted);
      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 (Figma Frame 19) --- */
.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;
}

/* --- INNER CONTENT CONTAINER (Figma Frame 1171276593) --- */
.karwaan-custom-container {
    /* Hard limit to exactly match the 1200px Figma layout */
    max-width: 1200px;
    width: 100%;
    margin-left: auto !important;
    margin-right: auto !important;
    padding: 0 24px; /* Essential fallback padding for edge safety */
    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;
    
    /* Exact 80px gap spacing straight from Figma layout metrics */
    gap: 80px !important; 
    
    width: 100%;
    box-sizing: border-box;
}

/* --- ADJUSTED COLUMN RATIOS --- */
.contact-info-wrapper {
    /* Shrinks perfectly to allow an exact 80px visual gap inside 1200px constraints */
    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; /* Vertically centers icon with single lines of text */
    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: #f7f7f7;
    display: flex;
    justify-content: center;
    align-items: center;
    color: #333333;
    text-decoration: none;
}

.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 {
    width: 100%;
    border: none;
    outline: none;
    background: transparent;
    padding: 10px 0;
    font-size: 14px;
    color: #222222;
    font-family: inherit;
    box-sizing: border-box;
}

.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;
}

.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 {
    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');

/* Scope-isolate popup elements context */
/*#fefd-booking-popup.modal {*/
/*  background-color: #1a1a1a !important;*/
/*}*/
#fefd-booking-popup .modal-backdrop {
  opacity: 0 !important;
}

/* Master Solid Flat Card Base */
.as-is-card-wrapper {
  background-color: #ffffff !important;
  background-image: none !important;
  border-radius: 28px !important;
  border: none !important;
  font-family: 'Plus Jakarta Sans', sans-serif !important;
  position: relative;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.25);
}

/* Centered Top-Right Circle Close Mechanism */
.as-is-close-trigger {
  position: absolute;
  top: -45px;
  right: 0;
  width: 32px;
  height: 32px;
  background-color: #ffffff !important;
  background-image: none !important;
  border: none !important;
  border-radius: 50% !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  cursor: pointer;
  z-index: 1075;
  padding: 0 !important;
  box-shadow: 0 4px 12px rgba(0,0,0,0.15);
  transition: transform 0.2s ease;
}
.as-is-close-trigger:hover {
  transform: scale(1.05);
}

/* Left Typography Column Scales */
.as-is-modal-title {
  font-size: 3rem;
  font-weight: 400;
  line-height: 1.22;
  color: #2b2b2b;
  letter-spacing: -0.6px;
  margin: 0;
}
.as-is-descriptive-text {
  font-size: 0.94rem;
  line-height: 1.65;
  color: #4a4a4a;
}
.as-is-gold-link {
  color: #ffb700 !important;
  text-decoration: none;
  font-weight: 500;
}

/* Row Fix for Social Network Icons Alignment */
.as-is-social-row {
  display: flex !important;
  flex-direction: row !important;
  gap: 14px !important;
  margin-top: 28px;
}
.as-is-icon-circle-link {
  width: 42px;
  height: 42px;
  background-color: #ffffff !important;
  background-image: none !important;
  color: #2d2d2d !important;
  border-radius: 50% !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  text-decoration: none !important;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.06);
  transition: background-color 0.2s ease;
}
.as-is-icon-circle-link:hover {
  background-color: #f7f7f7 !important;
}

/* Form Panel Structure Configuration */
.as-is-form-grid {
  display: flex;
  flex-direction: column;
  gap: 36px;
  width: 100%;
}
.as-is-input-frame {
  position: relative;
  width: 100%;
}
.as-is-input-frame input,
.as-is-input-frame select {
  width: 100%;
  padding: 10px 0;
  background: transparent !important;
  background-image: none !important;
  border: none !important;
  border-bottom: 1px solid #b3b3b3 !important;
  border-radius: 0 !important;
  outline: none !important;
  box-shadow: none !important;
  font-size: 0.98rem;
  color: #1a1a1a;
  font-family: 'Plus Jakarta Sans', sans-serif !important;
}

/* Text Floating Label Setup */
.as-is-input-frame label {
  position: absolute;
  top: 10px;
  left: 0;
  color: #727272;
  font-size: 0.98rem;
  pointer-events: none;
  transition: all 0.2s ease;
  font-family: 'Plus Jakarta Sans', sans-serif !important;
}

/* Explicit red color styling forced override */
.as-is-red-star {
  color: #e63946 !important;
  font-weight: 600 !important;
  margin-left: 2px;
  display: inline-block !important;
}

/* Floating Animation Dynamic States */
.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 {
  top: -14px;
  font-size: 0.76rem;
  color: #1a1a1a;
}
.as-is-input-frame input:focus,
.as-is-input-frame select:focus {
  border-bottom: 1px solid #1a1a1a !important;
}

/* Native Custom Select Elements */
.as-is-input-frame select {
  appearance: none;
  -webkit-appearance: none;
  cursor: pointer;
}
.as-is-select-arrow-container {
  position: absolute;
  right: 2px;
  top: 16px;
  color: #444444;
  pointer-events: none;
  display: flex;
  align-items: center;
}

/* Hollow Boxed Custom Button */
.as-is-submit-btn {
  background: transparent !important;
  background-image: none !important;
  color: #1a1a1a !important;
  border: 1.5px solid #1a1a1a !important;
  padding: 12px 34px;
  font-size: 0.9rem;
  font-weight: 500;
  letter-spacing: 0.5px;
  border-radius: 0 !important;
  box-shadow: none !important;
  cursor: pointer;
  transition: background-color 0.2s ease, color 0.2s ease;
  font-family: 'Plus Jakarta Sans', sans-serif !important;
}
.as-is-submit-btn:hover {
  background-color: #1a1a1a !important;
  color: #ffffff !important;
}

/* Screen Viewport Optimization Rules */
@media (max-width: 991.98px) {
  .as-is-close-trigger {
    top: 16px;
    right: 16px;
  }
  .as-is-modal-title {
    font-size: 2.2rem;
  }
  .as-is-form-grid {
    gap: 28px;
    margin-top: 24px;
  }
}
/*Booking Form Css */