@charset "utf-8";
/* CSS Document */

    /* Page Banner / Hero */
    .page-banner {
      background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
      color: #ffffff;
      padding: 60px 20px;
      text-align: center;
      position: relative;
      overflow: hidden;
    }
    .page-banner::before {
      content: '';
      position: absolute;
      top: -50%;
      right: -10%;
      width: 400px;
      height: 400px;
      background: rgba(217, 37, 28, 0.15);
      border-radius: 50%;
      filter: blur(60px);
      pointer-events: none;
    }
    .page-banner h1 {
      font-family: 'Playfair Display', serif;
      font-size: 2.8rem;
      font-weight: 700;
      margin-bottom: 12px;
    }
    .page-banner h1 span {
      color: #e63946;
    }
    .page-banner p {
      font-size: 1.1rem;
      max-width: 650px;
      margin: 0 auto 20px;
      opacity: 0.9;
    }
    .breadcrumbs {
      font-size: 0.9rem;
      opacity: 0.8;
      display: flex;
      justify-content: center;
      gap: 8px;
      align-items: center;
    }
    .breadcrumbs a {
      color: #ffffff;
      text-decoration: none;
      transition: color 0.2s;
    }
    .breadcrumbs a:hover {
      color: #e63946;
    }

    /* Contact Info Cards Grid */
    .contact-cards-section {
      padding: 60px 0 20px;
      background: #f8fafc;
    }
    .cards-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
      gap: 25px;
    }
    .contact-card {
      background: #ffffff;
      padding: 30px 24px;
      border-radius: 12px;
      box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
      border: 1px solid #e2e8f0;
      text-align: center;
      transition: transform 0.3s ease, box-shadow 0.3s ease;
      display: flex;
      flex-direction: column;
      align-items: center;
    }
    .contact-card:hover {
      transform: translateY(-5px);
      box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
      border-color: #d9251c;
    }
    .card-icon-wrap {
      width: 64px;
      height: 64px;
      background: #fef2f2;
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      margin-bottom: 18px;
      color: #d9251c;
    }
    .card-icon-wrap svg {
      width: 28px;
      height: 28px;
      fill: none;
      stroke: currentColor;
      stroke-width: 2;
      stroke-linecap: round;
      stroke-linejoin: round;
    }
    .contact-card h3 {
      font-size: 1.25rem;
      font-weight: 700;
      color: #0f172a;
      margin-bottom: 10px;
    }
    .contact-card p, .contact-card a {
      font-size: 0.95rem;
      color: #475569;
      line-height: 1.6;
      text-decoration: none;
    }
    .contact-card a:hover {
      color: #d9251c;
    }
    .contact-card .highlight-text {
      color: #146c38;
      font-weight: 600;
      margin-top: 6px;
      display: block;
    }

    /* Main Section: Form & Map */
    .contact-main-section {
      padding: 60px 0;
    }
    .main-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 40px;
      align-items: start;
    }

    /* Form Card */
    .contact-form-card {
      background: #ffffff;
      padding: 35px 30px;
      border-radius: 16px;
      box-shadow: 0 6px 25px rgba(0, 0, 0, 0.07);
      border: 1px solid #e2e8f0;
    }
    .contact-form-card h2 {
      font-family: 'Playfair Display', serif;
      font-size: 2rem;
      color: #0f172a;
      margin-bottom: 10px;
    }
    .contact-form-card h2 span {
      color: #d9251c;
    }
    .contact-form-card p {
      color: #64748b;
      margin-bottom: 25px;
      font-size: 0.95rem;
    }
    .form-grid-2 {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 16px;
    }
    .form-group {
      margin-bottom: 20px;
    }
    .form-group.full {
      grid-column: span 2;
    }
    .form-group label {
      display: block;
      font-size: 0.88rem;
      font-weight: 600;
      color: #1e293b;
      margin-bottom: 6px;
    }
    .form-group input, 
    .form-group select, 
    .form-group textarea {
      width: 100%;
      padding: 12px 14px;
      font-family: 'Poppins', sans-serif;
      font-size: 0.92rem;
      border: 1px solid #cbd5e1;
      border-radius: 8px;
      background: #f8fafc;
      color: #0f172a;
      transition: all 0.2s;
      box-sizing: border-box;
    }
    .form-group input:focus, 
    .form-group select:focus, 
    .form-group textarea:focus {
      outline: none;
      border-color: #d9251c;
      background: #ffffff;
      box-shadow: 0 0 0 3px rgba(217, 37, 28, 0.12);
    }
    .form-group textarea {
      resize: vertical;
      min-height: 120px;
    }
    .contact-form-card .btn-submit {
      width: 100%;
      padding: 14px;
      font-size: 1rem;
      font-weight: 600;
      border-radius: 8px;
      cursor: pointer;
      border: none;
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 10px;
    }

    /* Map Card */
    .map-wrapper-card {
      background: #ffffff;
      border-radius: 16px;
      overflow: hidden;
      box-shadow: 0 6px 25px rgba(0, 0, 0, 0.07);
      border: 1px solid #e2e8f0;
      display: flex;
      flex-direction: column;
      height: 100%;
    }
    .map-header {
      padding: 24px 28px;
      background: #f8fafc;
      border-bottom: 1px solid #e2e8f0;
    }
    .map-header h3 {
      font-size: 1.35rem;
      font-weight: 700;
      color: #0f172a;
      margin-bottom: 6px;
    }
    .map-header p {
      font-size: 0.9rem;
      color: #64748b;
      margin: 0;
    }
    .map-iframe-holder {
      flex: 1;
/*      min-height: 380px;*/
      width: 100%;
    }
    .map-iframe-holder iframe {
      width: 100%;
/*      height: 100%;*/
      min-height: 380px;
      border: 0;
    }
    .map-footer-actions {
      padding: 16px 24px;
      background: #ffffff;
      border-top: 1px solid #e2e8f0;
      display: flex;
      justify-content: space-between;
      align-items: center;
      flex-wrap: wrap;
      gap: 12px;
    }
    .directions-btn {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      color: #146c38;
      font-weight: 600;
      text-decoration: none;
      font-size: 0.92rem;
      transition: color 0.2s;
    }
    .directions-btn:hover {
      color: #0f5229;
      text-decoration: underline;
    }

    /* FAQ Section */
    .faq-section {
      padding: 60px 0;
      background: #f8fafc;
    }
    .faq-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
      gap: 20px;
      margin-top: 30px;
    }
    .faq-item {
      background: #ffffff;
      padding: 24px;
      border-radius: 12px;
      border: 1px solid #e2e8f0;
      box-shadow: 0 2px 10px rgba(0, 0, 0, 0.03);
    }
    .faq-item h4 {
      font-size: 1.05rem;
      font-weight: 700;
      color: #0f172a;
      margin-bottom: 8px;
    }
    .faq-item p {
      font-size: 0.92rem;
      color: #475569;
      line-height: 1.5;
      margin: 0;
    }

    /* Responsive adjustments */
    @media (max-width: 991px) {
      .main-grid {
        grid-template-columns: 1fr;
      }
      .page-banner h1 {
        font-size: 2.2rem;
      }
    }
    @media (max-width: 576px) {
      .form-grid-2 {
        grid-template-columns: 1fr;
      }
      .form-group.full {
        grid-column: span 1;
      }
      .contact-form-card {
        padding: 24px 18px;
      }
    }