:root {
      --primary-cyan: #00a8ff;   /* Matches the "Home" link color */
      --gallery-blue: #2b6cb0;   /* Matches the "Gallery" text color */
      --text-white: #ffffff;
      --text-muted: #cbd5e1;
      --bg-light: #f8fafc;
    }

    * {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
      font-family: 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
    }

    body {
      background-color: var(--bg-light);
      color: #333;
      line-height: 1.6;
    }

    .container {
      max-width: 1200px;
      margin: 0 auto;
      padding: 0 20px;
    }

    /* =========================================
       2. HERO BANNER SECTION
       ========================================= */
    .page-hero {
      background:  
        url('https://images.unsplash.com/photo-1581092160562-40aa08e78837?auto=format&fit=crop&w=1920&q=80') center/cover no-repeat;
      min-height: 350px;
      display: flex;
      align-items: center;
      padding: 80px 0;
    }

    .hero-content {
      max-width: 800px;
    }

    .breadcrumbs {
      font-size: 0.95rem;
      margin-bottom: 20px;
      color: #cbd5e1;
      font-weight: 500;
    }

    .breadcrumbs a {
      color: var(--primary-cyan);
      text-decoration: none;
      transition: color 0.3s ease;
    }

    .breadcrumbs a:hover {
      color: var(--white);
      text-decoration: underline;
    }

    .breadcrumbs .separator {
      margin: 0 10px;
      color: #cbd5e1;
      opacity: 0.7;
    }

    .page-hero h1 {
      font-size: 4rem;
      font-weight: 900;
      color: var(--white);
      line-height: 1.1;
      margin-bottom: 15px;
      letter-spacing: -1px;
    }

    .page-hero h1 .highlight {
      color: var(--primary-cyan);
    }

    /* =========================================
       3. CONTACT SECTION
       ========================================= */
    .contact-section {
      padding: 100px 0;
    }

    /* Header Styles */
    .section-header {
      text-align: center;
      display: flex;
      flex-direction: column;
      align-items: center;
      margin-bottom: 50px;
    }

    .subtitle {
      color: var(--primary-cyan);
      font-size: 0.9rem;
      font-weight: 700;
      text-transform: uppercase;
      letter-spacing: 2px;
      margin-bottom: 15px;
    }

    .main-title {
      font-size: 3rem;
      font-weight: 900;
      color: var(--text-dark);
      line-height: 1.2;
      margin-bottom: 20px;
      letter-spacing: -0.5px;
    }

    .accent-line {
      width: 60px;
      height: 4px;
      background-color: var(--primary-cyan);
      border-radius: 2px;
      margin-bottom: 25px;
    }

    /* --- Contact Card Wrapper --- */
    .contact-card {
      background: var(--white);
      border-radius: 12px;
      box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
      display: flex;
      overflow: hidden;
      max-width: 1100px;
      margin: 0 auto;
    }

    /* --- Left Panel: Information --- */
    .contact-info {
        flex: 0 0 40%;
        background-color: #2b6cb0; /* This makes it dark blue */
        color: var(--white);                /* This makes the text white */
        padding: 50px 40px;
        display: flex;
        flex-direction: column;
        justify-content: space-between;
    }

    .contact-info h3 {
      font-size: 1.8rem;
      font-weight: 700;
      margin-bottom: 15px;
    }

    .contact-info p {
      color: #e2e8f0;
      font-size: 1rem;
      margin-bottom: 40px;
      line-height: 1.6;
    }

    /* Info List */
    .info-list {
      list-style: none;
      display: flex;
      flex-direction: column;
      gap: 30px;
      margin-bottom: 50px;
    }

    .info-item {
      display: flex;
      align-items: flex-start;
      gap: 20px;
    }

    .info-icon {
      width: 45px;
      height: 45px;
      background-color: rgba(255, 255, 255, 0.15);
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      flex-shrink: 0;
      font-size: 18px;
    }

    .info-text {
      font-size: 0.95rem;
      line-height: 1.5;
      color: #f8fafc;
    }

    /* Social Icons */
    .social-links {
      display: flex;
      gap: 15px;
    }

    .social-btn {
      width: 40px;
      height: 40px;
      background-color: rgba(255, 255, 255, 0.15);
      color: var(--white);
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      text-decoration: none;
      transition: background 0.3s ease;
    }

    .social-btn:hover {
      background-color: var(--primary-cyan);
    }

    /* --- Right Panel: Form --- */
    .contact-form-wrapper {
      flex: 1;
      padding: 50px;
      background: var(--white);
    }

    .form-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 25px;
    }

    .form-group.full-width {
      grid-column: span 2;
    }

    .form-control {
      width: 100%;
      padding: 15px 20px;
      border: 1px solid var(--border-color);
      border-radius: 8px;
      font-size: 1rem;
      color: var(--text-dark);
      background-color: #fcfcfc;
      transition: border-color 0.3s ease, box-shadow 0.3s ease;
      font-family: inherit;
    }

    .form-control::placeholder {
      color: #94a3b8;
    }

    .form-control:focus {
      outline: none;
      border-color: var(--deep-blue);
      box-shadow: 0 0 0 3px rgba(20, 78, 130, 0.1);
      background-color: var(--white);
    }

    select.form-control {
      appearance: none;
      cursor: pointer;
      background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%236b7280' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3e%3cpolyline points='6 9 12 15 18 9'%3e%3c/polyline%3e%3c/svg%3e");
      background-repeat: no-repeat;
      background-position: right 15px center;
      background-size: 15px;
    }

    textarea.form-control {
      resize: vertical;
      min-height: 150px;
    }

    .submit-btn {
      width: 100%;
      padding: 16px;
      background-color: #2b6cb0;
      color: var(--white);
      border: none;
      border-radius: 8px;
      font-size: 1.05rem;
      font-weight: 600;
      cursor: pointer;
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 10px;
      transition: background-color 0.3s ease;
      margin-top: 25px;
    }

    .submit-btn:hover {
      background-color: var(--deep-blue-hover);
    }

    /* --- Scroll Animations --- */
    .reveal-up {
      opacity: 0;
      transform: translateY(40px);
      transition: opacity 0.8s ease-out, transform 0.8s ease-out;
    }

    .reveal-up.active {
      opacity: 1;
      transform: translateY(0);
    }

    /* --- Responsive Adjustments --- */
    @media (max-width: 992px) {
      .contact-card {
        flex-direction: column;
      }
      .contact-info {
        padding: 40px 30px;
      }
      .info-list {
        margin-bottom: 40px;
      }
      .contact-form-wrapper {
        padding: 40px 30px;
      }
    }

    @media (max-width: 768px) {
      .page-hero h1 { font-size: 3rem; }
      .main-title { font-size: 2.5rem; }
      .form-grid { grid-template-columns: 1fr; gap: 20px; }
      .form-group.full-width { grid-column: span 1; }
    }

    @media (max-width: 576px) {
      .page-hero { min-height: 280px; padding: 60px 0; }
      .page-hero h1 { font-size: 2.2rem; }
      .main-title { font-size: 2rem; }
      .contact-info, .contact-form-wrapper { padding: 30px 20px; }
      .info-item { flex-direction: column; align-items: flex-start; gap: 15px; }
      .info-icon { width: 40px; height: 40px; }
    }

    /* =========================================
       2. LAYOUT GRID
       ========================================= */
    .location-hours-grid {
      display: grid;
      /* 1.8 fraction for map, 1 fraction for card to match the image proportions */
      grid-template-columns: 1.8fr 1.1fr; 
      gap: 30px;
      align-items: stretch;
      margin-bottom: 70px;
    }

    /* =========================================
       3. MAP CONTAINER
       ========================================= */
    .map-container {
      background-color: #ccc;
      border-radius: 12px;
      overflow: hidden;
      min-height: 380px;
      box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
      position: relative;

    }

    .map-container iframe {
      width: 100%;
      height: 100%;
      border: none;
      display: block;
    }

    /* =========================================
       4. BUSINESS HOURS CARD
       ========================================= */
    .hours-card {
      background-color: var(--white);
      border: 1px solid var(--border-color);
      border-radius: 12px;
      padding: 35px 30px;
      box-shadow: 0 10px 30px rgba(0, 0, 0, 0.04);
      display: flex;
      flex-direction: column;
    }

    /* Header & Badge */
    .hours-header {
      display: flex;
      justify-content: space-between;
      align-items: center;
      margin-bottom: 30px;
    }

    .hours-header h3 {
      font-size: 1.35rem;
      font-weight: 800;
      color: var(--text-dark);
    }

    .status-badge {
      display: flex;
      align-items: center;
      gap: 8px;
      padding: 6px 14px;
      border-radius: 30px;
      font-size: 0.85rem;
      font-weight: 700;
      border: 1px solid transparent;
      transition: all 0.3s ease;
    }

    .status-badge .dot {
      width: 8px;
      height: 8px;
      border-radius: 50%;
    }

    /* Dynamic Open/Close Classes */
    .status-badge.open {
      background-color: var(--green-bg);
      color: var(--green-text);
      border-color: var(--green-border);
    }
    .status-badge.open .dot {
      background-color: var(--green-text);
      box-shadow: 0 0 0 3px rgba(22, 101, 52, 0.1);
    }

    .status-badge.closed {
      background-color: var(--red-bg);
      color: var(--red-text);
      border-color: var(--red-border);
    }
    .status-badge.closed .dot {
      background-color: var(--red-text);
      box-shadow: 0 0 0 3px rgba(220, 38, 38, 0.1);
    }

    /* Schedule Rows */
    .schedule-list {
      display: flex;
      flex-direction: column;
      gap: 15px;
      margin-bottom: auto; /* Pushes the emergency box to the bottom */
    }

    .schedule-row {
      display: flex;
      justify-content: space-between;
      font-size: 1rem;
      color: var(--text-muted);
    }

    .schedule-row strong {
      color: var(--text-dark);
      font-weight: 700;
    }

    .schedule-row strong.text-red {
      color: var(--red-text);
    }

    .divider {
      border: none;
      border-top: 1px solid var(--border-color);
      margin: 5px 0;
    }

    /* Emergency Notice Box */
    .emergency-box {
      background-color: var(--blue-box-bg);
      color: var(--blue-box-text);
      padding: 18px;
      border-radius: 8px;
      display: flex;
      align-items: flex-start;
      gap: 12px;
      margin-top: 30px;
    }

    .emergency-box i {
      font-size: 1.1rem;
      margin-top: 2px;
    }

    .emergency-box p {
      font-size: 0.9rem;
      line-height: 1.5;
      font-weight: 500;
    }

    /* --- Scroll Animations --- */
    .reveal-up {
      opacity: 0;
      transform: translateY(40px);
      transition: opacity 0.8s ease-out, transform 0.8s ease-out;
    }
    .reveal-up.active {
      opacity: 1;
      transform: translateY(0);
    }

    /* --- Responsive --- */
    @media (max-width: 992px) {
      .location-hours-grid {
        grid-template-columns: 1fr;
      }
      .map-container {
        height: 400px;
      }
    }
    @media (max-width: 576px) {
      .map-container {
        height: 300px;
      }
      .hours-card {
        padding: 25px 20px;
      }
    }