/* Reset & Base Styles */
    * {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
    }

    body {
      font-family: 'Poppins' sans-serif;
      background-color: #fff;
    }

    /* Banner Container */
    .quote-banner {
      position: relative;
      width: 100%;
      min-height: 450px;
      display: flex;
      align-items: center;
      overflow: hidden;
      padding: 3rem 8%;
    }

    /* Animated Background Image */
    .quote-banner::before {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      /* Replace the URL below with your actual image path */
      background: url('../images/banner.png') center/cover no-repeat;
      z-index: 1;
      animation: zoomBg 15s infinite alternate ease-in-out;
    }

    /* Gradient Overlay to ensure dark, legible text side */
    .quote-banner::after {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background: linear-gradient(
        90deg, 
        rgba(15, 12, 10, 0.95) 0%, 
        rgba(15, 12, 10, 0.75) 45%, 
        rgba(0, 0, 0, 0.2) 100%
      );
      z-index: 2;
    }

    /* Content Wrapper */
    .banner-content {
      position: relative;
      z-index: 3;
      max-width: 550px;
    }

    /* Keyframe Animations */
    @keyframes zoomBg {
      0% { transform: scale(1); }
      100% { transform: scale(1.08); }
    }

    @keyframes fadeInUp {
      from {
        opacity: 0;
        transform: translateY(30px);
      }
      to {
        opacity: 1;
        transform: translateY(0);
      }
    }

    /* Animated Text Elements */
    .animate-item {
      opacity: 0;
      animation: fadeInUp 0.8s ease forwards;
    }

    .banner-title {
      font-size: clamp(2.2rem, 5vw, 3.8rem);
      font-weight: 700;
      color: #ffffff;
      margin-bottom: 1rem;
      line-height: 1.1;
      animation-delay: 0.2s;
    }

    .banner-title span {
      color: #b88652; /* Bronze Accent */
    }

    .banner-description {
      font-size: clamp(0.95rem, 1.8vw, 1.15rem);
      color: #d1d5db;
      line-height: 1.6;
      margin-bottom: 2rem;
      animation-delay: 0.4s;
    }

    /* Breadcrumbs */
    .banner-breadcrumb {
      font-size: 0.95rem;
      font-weight: 500;
      animation-delay: 0.6s;
    }

    .banner-breadcrumb a {
      color: #b88652;
      text-decoration: none;
      transition: color 0.3s ease;
    }

    .banner-breadcrumb a:hover {
      color: #d4a373;
    }

    .banner-breadcrumb span.separator {
      color: #9ca3af;
      margin: 0 0.5rem;
    }

    .banner-breadcrumb span.current {
      color: #e5e7eb;
    }

    /* Responsive Breakpoints */
    @media (max-width: 768px) {
      .quote-banner {
        min-height: 380px;
        padding: 2.5rem 6%;
      }

      .quote-banner::after {
        /* On mobile, darken the background slightly more for text visibility */
        background: linear-gradient(
          180deg, 
          rgba(15, 12, 10, 0.9) 0%, 
          rgba(15, 12, 10, 0.7) 100%
        );
      }
    }


:root {
      --primary-accent: #90592b;
      --primary-hover: #75441e;
      --bg-light: #fdfbf7;
      --card-bg: #ffffff;
      --info-card-bg: #f7f3ed;
      --border-color: #ebdcd0;
      --text-dark: #2c2926;
      --text-muted: #6e6b67;
      --shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    }

   
    /* Container */
    .quote-container {
      max-width: 1200px;
      width: 100%;
      margin: 0 auto;
    }

    

/* --- Common Card Alignment --- */
.card {
  background-color: var(--card-bg, #ffffff);
  border-radius: 12px;
  padding: 32px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.03);
  border: 1px solid rgba(0, 0, 0, 0.04);
}

/* --- Left Side: Form Card --- */
.form-card {
  flex: 1.4;
}

.section-header {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: flex-start;
  gap: 10px;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--border-color, #e5dfd8);
  margin-bottom: 24px;
}

.section-header .icon-header {
  font-size: 1.2rem;
  color: var(--primary-color, #8c5b30);
  display: flex;
  align-items: center;
  justify-content: center;
}

.section-header h2 {
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--text-dark, #222222);
  margin: 0;
  text-align: left;
}

/* --- Form Fields Grid --- */
.form-grid {
  display: flex;
  flex-wrap: wrap;
  align-items: stretch;
  gap: 16px;
}

.form-group {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.half-width {
  flex: 1;
  min-width: calc(50% - 8px);
}

.full-width {
  flex: 100%;
  width: 100%;
}

/* Segmented Input Alignment */
.input-container {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  border: 1px solid var(--border-color, #e5dfd8);
  border-radius: 8px;
  overflow: hidden;
  background-color: var(--input-bg, #ffffff);
  transition: border-color 0.3s, box-shadow 0.3s;
}

.input-container:focus-within {
  border-color: var(--primary-color, #8c5b30);
  box-shadow: 0 0 0 3px rgba(140, 91, 48, 0.12);
}

.label-box {
  width: 42%;
  background-color: #faf9f7;
  border-right: 1px solid var(--border-color, #e5dfd8);
  padding: 12px 14px;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text-dark, #222222);
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 8px;
  white-space: nowrap;
  text-align: left;
}

.label-box i {
  color: var(--primary-color, #8c5b30);
  font-size: 0.95rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

/* Input & Select Controls Alignment */
.input-container input {
  width: 58%;
  border: none;
  outline: none;
  padding: 12px 14px;
  font-size: 0.88rem;
  color: var(--text-dark, #222222);
  background: transparent;
  vertical-align: middle;
  text-align: left;
}

.select-wrapper {
  width: 58%;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: flex-start;
}

.select-wrapper select {
  width: 100%;
  border: none;
  outline: none;
  padding: 12px 30px 12px 14px;
  font-size: 0.88rem;
  color: var(--text-dark, #222222);
  background: transparent;
  appearance: none;
  -webkit-appearance: none;
  cursor: pointer;
  text-align: left;
}

.select-wrapper select:invalid {
  color: var(--text-light-muted, #888888);
}

.arrow-icon {
  position: absolute;
  right: 14px;
  font-size: 0.75rem;
  color: var(--text-muted, #666666);
  pointer-events: none;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.3s;
}

.input-container:focus-within .arrow-icon {
  transform: rotate(180deg);
}

/* Textarea Group Alignment */
.textarea-group {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  border: 1px solid var(--border-color, #e5dfd8);
  border-radius: 8px;
  padding: 12px 14px;
  background-color: var(--input-bg, #ffffff);
  transition: border-color 0.3s, box-shadow 0.3s;
}

.textarea-group:focus-within {
  border-color: var(--primary-color, #8c5b30);
  box-shadow: 0 0 0 3px rgba(140, 91, 48, 0.12);
}

.textarea-label {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text-dark, #222222);
  margin-bottom: 8px;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 8px;
  text-align: left;
}

.textarea-label i {
  color: var(--primary-color, #8c5b30);
  font-size: 0.95rem;
  display: inline-flex;
  align-items: center;
}

textarea {
  border: none;
  outline: none;
  resize: vertical;
  font-size: 0.88rem;
  color: var(--text-dark, #222222);
  width: 100%;
  background: transparent;
  text-align: left;
}

textarea::placeholder {
  color: var(--text-light-muted, #888888);
}

/* Submit Button & Animations Alignment */
.submit-btn {
  width: 100%;
  background-color: var(--primary-color, #8c5b30);
  color: #ffffff;
  border: none;
  border-radius: 8px;
  padding: 14px 20px;
  font-size: 0.88rem;
  font-weight: 700;
  letter-spacing: 0.5px;
  cursor: pointer;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  gap: 12px;
  margin-top: 8px;
  transition: background-color 0.3s, transform 0.2s;
}

.submit-btn:hover {
  background-color: var(--primary-hover, #724723);
}

.submit-btn:active {
  transform: scale(0.99);
}

.btn-arrow {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.3s;
}

.submit-btn:hover .btn-arrow {
  transform: translateX(6px);
}

/* --- Right Side: Info Card Alignment --- */
.info-card {
  flex: 1;
  background-color: var(--side-card-bg, #f9f8f4);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: stretch;
}

.info-title {
  font-size: 1.25rem;
  font-weight: 800;
  color: var(--text-dark, #222222);
  margin-bottom: 28px;
  text-align: left;
}

.info-title span {
  color: var(--primary-color, #8c5b30);
}

/* Feature List Alignment */
.info-features {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  gap: 20px;
}

.feature-item {
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
  gap: 16px;
  transition: transform 0.3s;
}

.feature-item:hover {
  transform: translateX(4px);
}

.feature-icon {
  font-size: 1.5rem;
  color: var(--primary-color, #8c5b30);
  min-width: 32px;
  display: flex;
  justify-content: center;
  align-items: center;
  padding-top: 2px;
}

.feature-text {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  text-align: left;
}

.feature-text h3 {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--text-dark, #222222);
  margin-bottom: 4px;
}

.feature-text p {
  font-size: 0.82rem;
  color: var(--text-muted, #666666);
  line-height: 1.4;
  margin: 0;
}

/* Divider */
.divider {
  height: 1px;
  width: 100%;
  background-color: var(--border-color, #e5dfd8);
  margin: 28px 0;
}

/* Assistance Section Alignment */
.assistance-section {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  text-align: left;
}

.assistance-section h3 {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--text-dark, #222222);
  margin-bottom: 4px;
}

.assistance-section p {
  font-size: 0.82rem;
  color: var(--text-muted, #666666);
  margin-bottom: 16px;
}

.contact-box {
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  gap: 12px;
  border: 1px solid var(--border-color, #e5dfd8);
  background-color: #ffffff;
  border-radius: 8px;
  padding: 12px 16px;
  text-decoration: none;
  color: var(--text-dark, #222222);
  font-weight: 700;
  font-size: 0.9rem;
  margin-bottom: 12px;
  transition: border-color 0.3s, transform 0.3s, box-shadow 0.3s;
}

.contact-box i {
  color: var(--primary-color, #8c5b30);
  font-size: 1.1rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.contact-box:hover {
  border-color: var(--primary-color, #8c5b30);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

/* --- Mobile Responsiveness Alignment --- */
@media (max-width: 868px) {
  .container {
    flex-direction: column;
    align-items: center;
  }

  .form-card,
  .info-card {
    width: 100%;
  }

  .half-width {
    min-width: 100%;
  }

  .label-box {
    width: 45%;
  }

  .input-container input,
  .select-wrapper {
    width: 55%;
  }

  .card {
    padding: 24px;
  }
}

@media (max-width: 480px) {
  .input-container {
    flex-direction: column;
    align-items: stretch;
  }

  .label-box {
    width: 100%;
    border-right: none;
    border-bottom: 1px solid var(--border-color, #e5dfd8);
    padding: 10px 12px;
  }

  .input-container input,
  .select-wrapper {
    width: 100%;
  }

  .select-wrapper select {
    padding: 12px;
  }
}
.quote-section{
    padding:80px 0;
    background:#fdfbf7;
}

.quote-container{
    width:90%;
    max-width:1200px;
    margin:0 auto;
    display:flex;
    gap:35px;
    align-items:stretch;
}

.form-card{
    flex:1.6;
}

.info-card{
    flex:1;
}

.card{
    background:#fff;
    border-radius:14px;
    padding:35px;
    box-shadow:0 15px 40px rgba(0,0,0,.08);
}