  /* ========================================================
     GLOBAL PAGE SETTINGS
     ======================================================== */
  .smda-contact-page {
    font-family: 'Inter', sans-serif;
    background: #f8fafc;
    color: #334155;
    overflow-x: hidden;
  }

  /* ========================================================
     1. HERO HEADER BANNER
     ======================================================== */
  .smda-contact-hero {
    background: linear-gradient(135deg, #0f172a 0%, #1e3a8a 100%);
    padding: 20px 20px 80px 20px;
    text-align: center;
    position: relative;
  }
  
  .smda-contact-hero::after {
    content: ''; position: absolute; top: 0; left: 0; right: 0; bottom: 0;
    background-image: radial-gradient(rgba(255,255,255,0.1) 1px, transparent 1px);
    background-size: 30px 30px; opacity: 0.5; z-index: 1;
  }

  .smda-hero-content {
    position: relative; z-index: 2; max-width: 900px; margin: 0 auto;
  }

  .smda-hero-subtitle {
    color: #f59e0b; font-size: 1rem; font-weight: 800; text-transform: uppercase;
    letter-spacing: 2px; margin-bottom: 15px; display: block;
  }

  .smda-hero-title {
    color: #ffffff; font-size: 3.5rem; font-weight: 900;
    margin: 0 0 15px 0; line-height: 1.1; letter-spacing: -1px;
  }
  
  .smda-hero-desc {
    color: #cbd5e1; font-size: 1.15rem; line-height: 1.6; margin: 0 auto; max-width: 800px;
  }

  /* ========================================================
     2. CONTACT BLOCK (Split Layout: Info + Form)
     ======================================================== */
  .smda-contact-section {
    padding: 60px 20px 80px 20px;
    max-width: 1200px;
    margin: -80px auto 0 auto;
    position: relative; z-index: 10;
  }

  .smda-contact-container {
    display: grid; grid-template-columns: 0.85fr 1.15fr;
    background: #ffffff; border-radius: 20px; overflow: hidden;
    box-shadow: 0 20px 40px rgba(0,0,0,0.1); border: 1px solid #e2e8f0;
  }

  /* Left Side: Contact Info (Dark) */
  .smda-contact-info {
    background: #0f172a; color: #ffffff; padding: 50px 40px;
  }
  .smda-contact-info h3 {
    font-size: 1.8rem; font-weight: 800; margin: 0 0 10px 0;
  }
  .smda-contact-info p {
    color: #cbd5e1; font-size: 1rem; margin: 0 0 40px 0; line-height: 1.6;
  }

  .smda-info-list { list-style: none; padding: 0; margin: 0; }
  .smda-info-list li {
    display: flex; align-items: flex-start; gap: 15px; margin-bottom: 30px;
  }
  .smda-info-icon {
    width: 40px; height: 40px; border-radius: 50%;
    background: rgba(255,255,255,0.1); display: flex; align-items: center; justify-content: center; flex-shrink: 0; color: #f59e0b;
  }
  .smda-info-icon svg { width: 20px; height: 20px; }
  .smda-info-text h4 { margin: 0 0 5px 0; font-size: 1.05rem; font-weight: 700; color: #ffffff;}
  .smda-info-text span { font-size: 0.95rem; color: #cbd5e1; line-height: 1.5; display: block;}

  /* Right Side: Inquiry Form */
  .smda-contact-form { padding: 50px; }
  .smda-contact-form h3 {
    font-size: 1.8rem; font-weight: 800; color: #0f172a; margin: 0 0 25px 0;
  }

  .smda-form-row {
    display: grid; grid-template-columns: 1fr 1fr; gap: 20px; margin-bottom: 20px;
  }

  .smda-input-group { display: flex; flex-direction: column; }
  .smda-input-group label {
    font-size: 0.9rem; font-weight: 700; color: #1e293b; margin-bottom: 8px;
  }
  .smda-input {
    font-family: 'Inter', sans-serif; font-size: 1rem; color: #334155;
    padding: 12px 15px; border: 1px solid #cbd5e1; border-radius: 8px;
    background: #f8fafc; transition: all 0.3s ease; outline: none; width: 100%; box-sizing: border-box;
  }
  .smda-input:focus { border-color: #1e3a8a; background: #ffffff; box-shadow: 0 0 0 3px rgba(30, 58, 138, 0.1); }
  .smda-textarea { resize: vertical; min-height: 120px; }

  .smda-submit-btn {
    background: #f59e0b; color: #ffffff; font-family: 'Inter', sans-serif;
    font-size: 1.05rem; font-weight: 800; padding: 15px 40px; margin-top: 10px;
    border: none; border-radius: 8px; cursor: pointer;
    box-shadow: 0 10px 20px rgba(245, 158, 11, 0.2); transition: all 0.3s ease;
  }
  .smda-submit-btn:hover { background: #d97706; transform: translateY(-2px); }

  /* ========================================================
     3. REAL GOOGLE MAP SECTION
     ======================================================== */
  .smda-map-section {
    padding: 0 20px 80px 20px; max-width: 1200px; margin: 0 auto;
  }
  .smda-map-container {
    width: 100%; height: 450px; border-radius: 20px; overflow: hidden;
    border: 1px solid #e2e8f0; box-shadow: 0 10px 30px rgba(0,0,0,0.03);
    background: #e2e8f0;
  }
  .smda-map-container iframe { width: 100%; height: 100%; border: none; }

  /* ========================================================
     4. FAQs SECTION
     ======================================================== */
  .smda-faq-section {
    padding: 80px 20px 100px 20px; background: #ffffff; border-top: 1px solid #e2e8f0;
  }

  .smda-faq-container { max-width: 900px; margin: 0 auto; }
  
  .smda-faq-header { text-align: center; margin-bottom: 50px; }
  .smda-faq-header h2 { font-size: 2.5rem; font-weight: 900; color: #0f172a; margin: 0 0 10px 0; }
  .smda-faq-header span { color: #f59e0b; }
  .smda-faq-header p { font-size: 1.1rem; color: #64748b; margin: 0;}

  .smda-faq-item {
    background: #f8fafc; border: 1px solid #e2e8f0; border-radius: 12px;
    margin-bottom: 15px; overflow: hidden;
  }
  .smda-faq-item summary {
    font-size: 1.1rem; font-weight: 700; color: #1e293b; padding: 20px 25px;
    cursor: pointer; position: relative; list-style: none; display: flex; justify-content: space-between; align-items: center;
  }
  .smda-faq-item summary::-webkit-details-marker { display: none; } 
  .smda-faq-item summary::after {
    content: '+'; color: #f59e0b; font-size: 1.5rem; font-weight: bold; transition: 0.3s;
  }
  .smda-faq-item[open] summary::after { content: '-'; color: #1e3a8a; }
  .smda-faq-item[open] summary { border-bottom: 1px dashed #cbd5e1; }
  
  .smda-faq-answer {
    padding: 20px 25px; font-size: 1rem; color: #475569; line-height: 1.6; background: #ffffff;
  }

  /* Responsive Adjustments */
  @media (max-width: 992px) {
    .smda-contact-container { grid-template-columns: 1fr; }
    .smda-form-row { grid-template-columns: 1fr; }
  }
  @media (max-width: 600px) {
    .smda-hero-title { font-size: 2.8rem; }
    .smda-contact-info, .smda-contact-form { padding: 40px 25px; }
    .smda-map-container { height: 350px; }
    .smda-faq-item summary { padding: 15px 20px; font-size: 1rem; }
  }

  /* Success / error message box */
  .smda-cp-message {
  margin-top: 15px;
  padding: 10px 14px;
  border-radius: 8px;
  font-size: 0.95rem;
  }

  .smda-cp-message.success {
  background: #ecfdf5;
  color: #166534;
  border: 1px solid #bbf7d0;
  }

  .smda-cp-message.error {
  background: #fef2f2;
  color: #b91c1c;
  border: 1px solid #fecaca;
  }
