/* =============================
   CONTACT – ABI'S BIRYANI
   Luxury Maroon + Gold Theme
   ============================= */

   :root {
    --bg-main: radial-gradient(circle at top, #5a0010 0, #2a0006 40%, #130004 100%);
    --bg-panel: rgba(0, 0, 0, 0.6);
    --card-bg: rgba(0, 0, 0, 0.75);
  
    --gold: #d4af37;
    --gold-light: #ffdd80;
    --white: #ffffff;
    --black: #000000;
    --muted: #e0d6c0;
  
    --border-gold: rgba(212, 175, 55, 0.5);
    --border-subtle: rgba(255, 255, 255, 0.08);
    --shadow-soft: 0 18px 45px rgba(0, 0, 0, 0.75);
    --shadow-card: 0 12px 30px rgba(0, 0, 0, 0.7);
    --radius-lg: 18px;
    --radius-md: 14px;
  }
  
  *,
  *::before,
  *::after {
    box-sizing: border-box;
  }
  
  html,
  body {
    height: 100%;
    margin: 0;
    padding: 0;
  }
  
  body {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    font-family: "Segoe UI", system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
    background: var(--bg-main);
    color: var(--white);
    line-height: 1.6;
  
    /* Safety – avoid sideways scroll due to tiny overflows */
    overflow-x: hidden;
  }
  
  /* VERY IMPORTANT: let footer stay at bottom */
  main {
    flex: 1;
  }
  
  a {
    color: var(--gold-light);
    text-decoration: none;
  }
  
  .container {
    max-width: 1150px;
    margin: 0 auto;
    padding: 0 16px;
  }
  
  /* ==== PAGE HEADER ==== */
  
  .page-header {
    padding: 30px 0 22px;
    background: radial-gradient(circle at top, rgba(212, 175, 55, 0.14) 0, transparent 55%);
    border-bottom: 1px solid var(--border-subtle);
  }
  
  .page-header h1 {
    margin: 0 0 4px;
    font-size: 26px;
    color: var(--gold);
  }
  
  .page-header p {
    margin: 0;
    font-size: 14px;
    color: var(--muted);
  }
  
  /* ==== SECTION ==== */
  
  .section {
    padding: 34px 0 32px;
  }
  
  /* ==== CONTACT GRID ==== */
  
  .contact-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 22px;
  }
  
  /* ==== CARD ==== */
  
  .contact-card {
    background: var(--card-bg);
    border-radius: var(--radius-lg);
    border: 1px solid var(--border-gold);
    box-shadow: var(--shadow-card);
    padding: 18px;
  }
  
  .contact-card h2 {
    margin: 0;
    font-size: 18px;
    color: var(--gold-light);
  }
  
  /* ==== CONTACT ROWS ==== */
  
  .contact-row {
    margin-bottom: 10px;
  }
  
  .contact-label {
    font-weight: 600;
    color: var(--gold);
  }
  
  .contact-row p {
    margin: 4px 0 0;
    color: var(--muted);
    font-size: 13px;
  }
  
  /* ==== MAP WRAPPER (RESPONSIVE IFRAME) ==== */
  
  .map-wrapper {
    margin-top: 6px;
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-card);
  }
  
  /* Keep the map fully inside screen on all devices */
  .map-wrapper iframe {
    display: block;
    width: 100%;
    max-width: 100%;
    height: 260px;
    border: 0;
  }
  
  /* ==== FORM ==== */
  
  .form-group {
    margin-bottom: 10px;
  }
  
  .form-group label {
    display: block;
    font-size: 12px;
    color: var(--gold);
    margin-bottom: 3px;
  }
  
  input,
  textarea {
    width: 100%;
    background: rgba(0, 0, 0, 0.6);
    border: 1px solid rgba(255, 255, 255, 0.15);
    color: var(--white);
    border-radius: var(--radius-md);
    padding: 8px 10px;
    font-size: 13px;
  }
  
  textarea {
    height: 80px;
    resize: none;
  }
  
  input:focus,
  textarea:focus {
    outline: none;
    border-color: var(--gold-light);
  }
  
  /* ==== BUTTON ==== */
  
  .btn {
    margin-top: 8px;
    border: none;
    padding: 9px 16px;
    border-radius: 999px;
    font-size: 13px;
    font-weight: 600;
    cursor: pointer;
  }
  
  .btn-primary {
    background: linear-gradient(135deg, #c89b2d, #ffdd80);
    color: #000;
    box-shadow: 0 10px 24px rgba(0, 0, 0, 0.7);
  }
  
  .btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-soft);
  }
  
  /* ==== FOOTER ==== */
  
  footer {
    margin-top: 22px;
    background: rgba(0, 0, 0, 0.9);
    border-top: 1px solid var(--border-gold);
    padding: 14px 0 18px;
  }
  
  .footer-content {
    display: flex;
    justify-content: space-between;
    font-size: 12px;
    color: var(--muted);
  }
  
  /* ==== FLOATING BUTTONS ==== */
  
  .floating-buttons {
    position: fixed;
    right: 16px;
    bottom: 16px;
    display: flex;
    flex-direction: column;
    gap: 8px;
    z-index: 30;
  }
  
  .floating-buttons a {
    background: linear-gradient(135deg, #d4af37, #ffdd80);
    color: #000;
    padding: 8px 14px;
    border-radius: 999px;
    font-size: 12px;
    font-weight: 600;
    text-decoration: none;
    box-shadow: 0 10px 24px rgba(0, 0, 0, 0.7);
    transition: 0.25s ease;
  }
  
  .floating-buttons a:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-soft);
  }
  
  /* ==== RESPONSIVE ==== */
  
  @media (max-width: 900px) {
    /* Let nav stack vertically on smaller screens
       (nav-specific behavior handled in nav.css, this just keeps layout neat) */
    .navbar {
      flex-direction: column;
      align-items: flex-start;
    }
  
    .contact-grid {
      grid-template-columns: 1fr;
    }
  
    .footer-content {
      flex-direction: column;
      gap: 4px;
    }
  }
  
  @media (min-width: 768px) {
    /* Slightly taller map on tablets & up */
    .map-wrapper iframe {
      height: 320px;
    }
  }
  
  @media (max-width: 600px) {
    .page-header {
      padding-top: 26px;
    }
  
    .page-header h1 {
      font-size: 22px;
    }
  
    .floating-buttons {
      right: 10px;
      bottom: 10px;
    }
  }
  