body {
  font-family: 'Poppins', sans-serif;
  background-color: #12100e;
  color: #ffffff;
}

/* Contact Section Styling */
.contact-section {
  position: relative;
  width: 100%;
  min-height: 400px;
  background: linear-gradient(
      to right,
      rgba(18, 16, 14, 0.95) 0%,
      rgba(18, 16, 14, 0.85) 45%,
      rgba(18, 16, 14, 0.2) 100%
    ),
    url('../images/contact-banner.png') no-repeat center right / cover;
  display: flex;
  align-items: center;
  padding: 80px 0;
}

.container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 40px;
  width: 100%;
}

.content-wrapper {
  max-width: 620px;
}

/* Subtitle */
.section-subtitle {
  color: #c3935a;
  font-size: 0.875rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  display: block;
  margin-bottom: 16px;
}

/* Main Heading */
.section-title {
  font-size: 3.25rem;
  font-weight: 800;
  line-height: 1.15;
  color: #ffffff;
  margin-bottom: 24px;
}

.section-title .highlight {
  color: #c3935a;
}

/* Paragraph Text */
.section-description {
  font-size: 1rem;
  color: #d1d1d1;
  line-height: 1.6;
  font-weight: 400;
}

/* Features Grid & Items */
.features-grid {
  display: flex;
  align-items: center;
  gap: 24px;
}

.feature-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
}

.feature-text h4 {
  font-size: 0.95rem;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 4px;
  white-space: nowrap;
}

.feature-text p {
  font-size: 0.8rem;
  color: #a0a0a0;
  line-height: 1.35;
}

/* Vertical Dividers */
.divider {
  width: 1px;
  height: 48px;
  background-color: rgba(255, 255, 255, 0.15);
}

/* Responsive Design */
@media (max-width: 992px) {
  .section-title {
    font-size: 2.5rem;
  }

  .features-grid {
    flex-direction: column;
    align-items: flex-start;
    gap: 24px;
  }

  .divider {
    display: none;
  }
}
/* Section Outer Wrapper */
  .contact-info-section {
    width: 100%;
    padding: 60px 20px;
    background-color: #fcfcfc;
    box-sizing: border-box;
  }

  /* Inner Grid Container */
  .contact-info-container {
    max-width: 1300px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 5px;
}

  /* Individual Card */
  .contact-info-card {
    background: #ffffff;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    padding: 30px 20px;
    display: flex;
    align-items: flex-start;
    gap: 16px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.03);
    transition: transform 0.35s ease, box-shadow 0.35s ease, border-color 0.35s ease;
    
    /* Animation Initial State */
    opacity: 0;
    transform: translateY(30px);
  }

  /* Scroll Animation Trigger Class */
  .contact-info-card.animate-in {
    opacity: 1;
    transform: translateY(0);
    transition: opacity 0.6s cubic-bezier(0.16, 1, 0.3, 1), 
                transform 0.6s cubic-bezier(0.16, 1, 0.3, 1),
                box-shadow 0.35s ease,
                border-color 0.35s ease;
  }

  /* Hover State */
  .contact-info-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 24px rgba(139, 87, 42, 0.12);
    border-color: #925c34;
  }

  /* Icon Styling */
  .contact-info-icon {
    flex-shrink: 0;
    width: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .contact-info-icon i {
    font-size: 32px;
    color: #8b572a;
    transition: transform 0.3s ease;
  }

  .contact-info-card:hover .contact-info-icon i {
    transform: scale(1.1);
  }

  /* Typography & Details */
  .contact-info-content {
    display: flex;
    flex-direction: column;
  }

  .contact-info-title {
    font-size: 1.05rem;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 8px;
    line-height: 1.2;
  }

  .contact-info-content p {
    font-size: 0.88rem;
    color: #555555;
    line-height: 1.5;
    margin: 0 0 2px 0;
  }

  .contact-info-content a {
    color: #555555;
    text-decoration: none;
    transition: color 0.2s ease;
  }

  .contact-info-content a:hover {
    color: #8b572a;
  }

  /* RESPONSIVE LAYOUTS */
  
  /* Laptop / Small Desktop */
  @media (max-width: 1024px) {
    .contact-info-container {
      grid-template-columns: repeat(2, 1fr);
      gap: 20px;
    }
  }

  /* Mobile Devices */
  @media (max-width: 600px) {
    .contact-info-section {
      padding: 40px 16px;
    }

    .contact-info-container {
      grid-template-columns: 1fr;
      gap: 16px;
    }

    .contact-info-card {
      padding: 24px 18px;
    }
  }

  /* Outer Section Layout */
  .contact-form-section {
    width: 100%;
    padding: 0 20px 60px 20px;
    background-color: #fcfcfc;
    box-sizing: border-box;
  }

  /* Grid Layout (2 Equal Columns) */
  .contact-form-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
    align-items: stretch;
  }

  /* Shared Card Styling */
  .form-card {
    background: #ffffff;
    border: 1px solid #e2e2e2;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.02);
    overflow: hidden;
    
    /* Pure CSS Animation on load (No JavaScript needed) */
    animation: simpleFadeIn 0.8s ease-out forwards;
  }

  .map-card {
    min-height: 480px;
    animation-delay: 0.1s;
  }

  .form-box-card {
    padding: 40px;
    animation-delay: 0.25s;
  }

  @keyframes simpleFadeIn {
    from {
      opacity: 0;
      transform: translateY(20px);
    }
    to {
      opacity: 1;
      transform: translateY(0);
    }
  }

  /* Form Typography */
  .form-title {
    font-size: 1.6rem;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 6px;
  }

  .form-subtitle {
    font-size: 0.88rem;
    color: #666666;
    margin-bottom: 28px;
  }

  /* Form Inputs Layout */
  .main-contact-form {
    display: flex;
    flex-direction: column;
    gap: 16px;
  }

  .form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
  }

  .form-group input,
  .form-group textarea {
    width: 100%;
    padding: 12px 16px;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    font-family: inherit;
    font-size: 0.9rem;
    color: #333333;
    outline: none;
    background-color: #ffffff;
    box-sizing: border-box;
    transition: border-color 0.25s ease, box-shadow 0.25s ease;
  }

  .form-group input::placeholder,
  .form-group textarea::placeholder {
    color: #999999;
  }

  .form-group input:focus,
  .form-group textarea:focus {
    border-color: #8b572a;
    box-shadow: 0 0 0 3px rgba(139, 87, 42, 0.1);
  }

  .form-group textarea {
    resize: vertical;
    min-height: 120px;
  }

  /* Checkbox Section */
  .privacy-row {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.85rem;
    color: #555555;
    margin-top: 4px;
  }

  .privacy-row input[type="checkbox"] {
    accent-color: #8b572a;
    width: 16px;
    height: 16px;
    cursor: pointer;
  }

  .privacy-row a {
    color: #8b572a;
    text-decoration: none;
    font-weight: 600;
  }

  .privacy-row a:hover {
    text-decoration: underline;
  }

  /* Button Styling */
  .submit-button {
    align-self: flex-start;
    background-color: #8b572a;
    color: #ffffff;
    border: none;
    border-radius: 6px;
    padding: 14px 28px;
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 0.5px;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin-top: 10px;
    transition: background-color 0.3s ease, transform 0.2s ease;
  }

  .submit-button i {
    font-size: 0.85rem;
    transition: transform 0.2s ease;
  }

  .submit-button:hover {
    background-color: #70441e;
    transform: translateY(-2px);
  }

  .submit-button:hover i {
    transform: translateX(3px);
  }

  /* RESPONSIVE LAYOUTS */

  /* Tablet & Below (868px) */
  @media (max-width: 868px) {
    .contact-form-container {
      grid-template-columns: 1fr;
    }

    .map-card {
      min-height: 350px;
    }

    .form-box-card {
      padding: 28px 20px;
    }
  }

  /* Mobile (480px) */
  @media (max-width: 480px) {
    .form-row {
      grid-template-columns: 1fr;
    }

    .submit-button {
      width: 100%;
      justify-content: center;
    }
  }

/* Outer Section Layout */
  .faq-consultation-section {
    width: 100%;
    padding: 60px 20px;
    background-color: #fcfcfc;
    box-sizing: border-box;
  }

  /* Main Grid Wrapper */
  .faq-consultation-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1.1fr;
    gap: 24px;
    align-items: stretch;
  }

  /* --- LEFT CARD: FAQ STYLES --- */
  .faq-card {
    background: #ffffff;
    border: 1px solid #e0e0e0;
    border-radius: 12px;
    padding: 36px 30px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.02);
    animation: simpleFadeIn 0.8s ease-out forwards;
  }

  .section-title-faq {
    font-size: 1.5rem;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 24px;
  }

  .accordion-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
  }

  .accordion-item {
    border: 1px solid #e2e2e2;
    border-radius: 8px;
    overflow: hidden;
    transition: border-color 0.3s ease;
  }

  .accordion-item.active {
    border-color: #8b572a;
  }

  .accordion-header {
    width: 100%;
    padding: 16px 20px;
    background: #ffffff;
    border: none;
    outline: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
    text-align: left;
    font-family: inherit;
    font-size: 0.92rem;
    font-weight: 600;
    color: #222222;
    cursor: pointer;
    transition: color 0.2s ease;
  }

  .accordion-header:hover {
    color: #8b572a;
  }

  .accordion-header .icon {
    font-size: 1.2rem;
    color: #8b572a;
    font-weight: 500;
    transition: transform 0.3s ease;
  }

  .accordion-item.active .accordion-header .icon {
    transform: rotate(45deg);
  }

  .accordion-content {
    max-height: 0;
    overflow: hidden;
    padding: 0 20px;
    background: #fafafa;
    transition: max-height 0.35s cubic-bezier(0, 1, 0, 1), padding 0.35s ease;
  }

  .accordion-item.active .accordion-content {
    max-height: 200px;
    padding: 14px 20px 18px 20px;
    border-top: 1px solid #f0f0f0;
  }

  .accordion-content p {
    font-size: 0.85rem;
    color: #555555;
    line-height: 1.6;
    margin: 0;
  }

  /* --- RIGHT CARD: CONSULTATION STYLES --- */
  .consultation-card {
    background: #f7f2ed; /* Warm cream accent background */
    border-radius: 12px;
    overflow: hidden;
    display: flex;
    align-items: stretch;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.02);
    animation: simpleFadeIn 0.8s ease-out 0.2s forwards;
  }

  .consultation-text-content {
    flex: 1;
    padding: 40px 30px;
    display: flex;
    flex-direction: column;
    justify-content: center;
  }

  .consultation-icon {
    margin-bottom: 20px;
  }

  .consultation-icon i {
    font-size: 40px;
    color: #8b572a;
  }

  .consultation-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: #1a1a1a;
    line-height: 1.3;
    margin-bottom: 12px;
  }

  .consultation-title span {
    color: #8b572a;
  }

  .consultation-desc {
    font-size: 0.88rem;
    color: #666666;
    line-height: 1.5;
    margin-bottom: 28px;
  }

  .appointment-btn {
    align-self: flex-start;
    background-color: #8b572a;
    color: #ffffff;
    text-decoration: none;
    border-radius: 6px;
    padding: 14px 24px;
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 0.5px;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: background-color 0.3s ease, transform 0.2s ease;
  }

  .appointment-btn i {
    font-size: 0.8rem;
    transition: transform 0.2s ease;
  }

  .appointment-btn:hover {
    background-color: #70441e;
    transform: translateY(-2px);
  }

  .appointment-btn:hover i {
    transform: translateX(4px);
  }

  .consultation-image-content {
    flex: 1;
    position: relative;
  }

  .consultation-image-content img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
  }

  /* Keyframe Fade-In Animation */
  @keyframes simpleFadeIn {
    from {
      opacity: 0;
      transform: translateY(20px);
    }
    to {
      opacity: 1;
      transform: translateY(0);
    }
  }

  /* --- RESPONSIVE BREAKPOINTS --- */

  /* Laptop & Small Screens */
  @media (max-width: 992px) {
    .faq-consultation-container {
      grid-template-columns: 1fr;
    }
  }

  /* Mobile Devices */
  @media (max-width: 576px) {
    .consultation-card {
      flex-direction: column;
    }

    .consultation-image-content {
      height: 250px;
    }

    .faq-card, .consultation-text-content {
      padding: 24px 20px;
    }

    .appointment-btn {
      width: 100%;
      justify-content: center;
    }
  }

/* 📍 Breadcrumb Styling */
.breadcrumb-nav {
  margin-bottom: 16px;
}

.breadcrumb-list {
  display: flex;
  align-items: center;
  gap: 8px;
  list-style: none;
  padding: 0;
  margin: 0;
  font-size: 0.85rem;
  font-weight: 500;
}

.breadcrumb-item a {
  color: var(--text-muted);
  text-decoration: none;
  transition: color 0.2s ease, transform 0.2s ease;
  display: inline-block;
}

.breadcrumb-item a:hover {
  color: var(--gold-accent);
  transform: translateY(-1px);
}

.breadcrumb-separator {
  color: rgba(255, 255, 255, 0.4);
  font-size: 0.75rem;
  user-select: none;
}

.breadcrumb-item.active {
  color: #c89551;
  font-weight: 600;
}