    :root {
      --deep-blue: #052b59;
      --gold: #efc864;
      --light-gold: #fff6e3;
      --white: #ffffff;
      --light-gray: #f5f6f8;
      --dark-gray: #333333;
      --success: #28a745;
      --info: #17a2b8;
    }

    * {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
    }

    body {
      font-family: 'Cairo', sans-serif;
      background-color: var(--light-gray);
      color: var(--dark-gray);
      line-height: 1.6;
    }

    /* HEADER - Same as other pages */
    .site-header {
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding: 15px 60px;
      background-color: var(--deep-blue);
      color: var(--light-gold);
      width: 100%;
      position: sticky;
      top: 0;
      z-index: 1000;
      box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    }

    .header-left {
      display: flex;
      align-items: center;
    }

    .header-left .logo img {
      height: 50px;
      width: auto;
    }

    .header-left .logo:first-child img {
      height: 80px;
      width: auto;
      margin-top: 5px;
    }

    .header-left .logo:last-child img {
      height: 90px;
      width: auto;
    }

    .header-right {
      display: flex;
      align-items: center;
      gap: 50px;
    }

    .btn-apply {
      background-color: var(--gold);
      color: var(--deep-blue);
      padding: 8px 24px;
      border-radius: 8px;
      font-family: 'Cairo', sans-serif;
      font-weight: 600;
      text-decoration: none;
      transition: transform 0.2s;
    }

    .btn-apply:hover {
      transform: scale(1.08);
      box-shadow: 0 4px 12px rgba(0,0,0,0.25);
    }

    .main-nav ul {
      display: flex;
      list-style: none;
      gap: 35px;
    }

    .main-nav ul li a {
      color: var(--light-gold);
      text-decoration: none;
      font-family: 'Cairo', sans-serif;
      font-weight: 500;
      transition: color 0.2s;
    }

    .main-nav ul li a:hover {
      color: var(--gold);
      transform: translateY(-2px);
      transition: 0.2s;
    }

    .main-nav ul li a.active {
      color: var(--gold);
      border-bottom: 2px solid var(--gold);
    }

    /* CONTACT HERO SECTION */
    .contact-hero {
      background: linear-gradient(135deg, var(--deep-blue) 0%, #0a4a8f 100%);
      padding: 50px 20px;
      text-align: center;
      color: var(--white);
      position: relative;
      overflow: hidden;
    }

    .contact-hero::before {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100" preserveAspectRatio="none"><path d="M0,0 L100,0 L100,100 Z" fill="rgba(239,200,100,0.1)"/></svg>');
      background-size: cover;
      opacity: 0.3;
    }

    .hero-content {
      max-width: 1000px;
      margin: 0 auto;
      position: relative;
      z-index: 2;
    }

    .contact-hero h1 {
      font-size: 3.5rem;
      margin-bottom: 20px;
      color: var(--gold);
      text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
    }

    .contact-hero p {
      font-size: 1.3rem;
      margin-bottom: 30px;
      opacity: 0.9;
      max-width: 800px;
      margin-left: auto;
      margin-right: auto;
    }

    /* CONTACT INFO SECTION */
    .contact-info-section {
      padding: 80px 20px;
      background: var(--white);
    }

    .contact-info-container {
      max-width: 1200px;
      margin: 0 auto;
    }

    .section-header {
      text-align: center;
      margin-bottom: 60px;
    }

    .section-header h2 {
      font-size: 2.5rem;
      color: var(--deep-blue);
      margin-bottom: 15px;
      position: relative;
      display: inline-block;
    }

    .section-header h2::after {
      content: '';
      position: absolute;
      bottom: -10px;
      left: 50%;
      transform: translateX(-50%);
      width: 80px;
      height: 4px;
      background: var(--gold);
    }

    .section-header p {
      font-size: 1.1rem;
      color: #666;
      max-width: 600px;
      margin: 20px auto 0;
    }

.contact-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-bottom: 60px;
}

.contact-card {
  background: #fff;
  padding: 35px 25px;
  border-radius: 12px;
  box-shadow: 0 4px 18px rgba(0, 0, 0, 0.06);
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border-left: 4px solid var(--gold);
}

.contact-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.contact-icon {
  width: 70px;
  height: 70px;
  background: var(--gold);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  color: #fff;
  font-size: 1.8rem;
  transition: transform 0.3s ease;
}

.contact-card h3 {
  font-size: 1.4rem;
  color: #1a1a1a;
  margin-bottom: 12px;
  font-weight: 600;
}

.contact-card p {
  color: #555;
  font-size: 0.95rem;
  margin-bottom: 15px;
  line-height: 1.6;
}

.contact-card a {
  color: var(--deep-blue);
  font-weight: 500;
  text-decoration: none;
  transition: color 0.3s ease, transform 0.3s ease;
}

.contact-card a:hover {
  color: var(--gold);
  transform: translateY(-2px);
}


    /* CONTACT FORM SECTION */
    .contact-form-section {
      padding: 80px 20px;
      background: var(--light-gray);
    }

    .contact-form-container {
      max-width: 1300px;
      margin: 0 auto;
      display: grid;
      grid-template-columns: 2fr 1fr;
      gap: 60px;
      align-items: start;
    }

    .contact-form-section h3 {
      font-size: 2rem;
      color: var(--deep-blue);
      margin-bottom: 20px;
      padding-left: 60px;
    }

    .contact-form-section p {
      color: #666;
      margin-bottom: 50px;
      padding-left: 60px;
    }

    .contact-form {
      background: var(--white);
      padding: 40px;
      border-radius: 15px;
      box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    }

.contact-form .form-row:first-child .form-group {
  grid-column: 1 / -1; /* Span both columns */
}

    .form-group {
      margin-bottom: 25px;
    }

    .form-group label {
      display: block;
      margin-bottom: 8px;
      font-weight: 600;
      color: var(--deep-blue);
    }

    .form-group input,
    .form-group select,
    .form-group textarea {
      width: 100%;
      padding: 5px 15px;
      border: 2px solid #e0e0e0;
      border-radius: 8px;
      font-family: 'Cairo', sans-serif;
      font-size: 1rem;
      transition: border-color 0.3s;
    }

    .form-group input:focus,
    .form-group select:focus,
    .form-group textarea:focus {
      outline: none;
      border-color: var(--gold);
    }

    .form-group textarea {
      resize: vertical;
      min-height: 120px;
    }

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

    .btn-submit {
      background: var(--gold);
      color: var(--deep-blue);
      padding: 7px 40px;
      border: none;
      border-radius: 8px;
      font-family: 'Cairo', sans-serif;
      font-size: 1.1rem;
      font-weight: 600;
      cursor: pointer;
      transition: all 0.3s;
      width: 100%;
    }

    .btn-submit:hover {
      background: #e6b84c;
      transform: translateY(-2px);
    }

    .info-side {
      background: var(--deep-blue);
      color: var(--white);
      padding: 40px;
      border-radius: 15px;
    }

    .info-side h3 {
      font-size: 2rem;
      color: var(--gold);
      margin-bottom: 30px;
      margin-left: -55px;
      text-align: center;
    }

    .office-hours {
      margin-bottom: 40px;
    }

    .office-hours h4 {
      color: var(--gold);
      margin-bottom: 20px;
      font-size: 1.2rem;
    }

    .hours-list {
      list-style: none;
    }

    .hours-list li {
      display: flex;
      justify-content: space-between;
      padding: 10px 0;
      border-bottom: 1px solid rgba(255,255,255,0.1);
    }

    .hours-list li:last-child {
      border-bottom: none;
    }

    .emergency-contact {
      background: rgba(255,255,255,0.1);
      padding: 25px;
      border-radius: 10px;
      text-align: center;
    }

    .emergency-contact h4 {
      color: var(--gold);
      margin-bottom: 15px;
      font-size: 24px;
    }

    .emergency-contact p {
      font-size: 1.1rem;
      margin-bottom: 10px;
      color: white;
      margin-left: -55px;
    }

    .emergency-number {
      font-size: 1.5rem;
      font-weight: 700;
      color: var(--gold);
    }

    /* MAP SECTION */
    .map-section {
      padding: 0;
      background: var(--light-gray);
    }

    .map-container {
      width: 100%;
      height: 450px;
    }

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

    /* FOOTER */
    .site-footer {
      background: var(--deep-blue);
      color: var(--light-gold);
      padding: 4rem 2rem 2rem;
      font-family: 'Cairo', sans-serif;
    }

    .footer-container {
      display: flex;
      flex-wrap: wrap;
      gap: 2rem;
      max-width: 1200px;
      margin: 0 auto;
      justify-content: space-between;
    }

    .footer-about {
      flex: 1 1 300px;
    }

    .footer-about .footer-logo img {
      height: 320px;
      margin-top: -60px;
      margin-bottom: -60px;
      margin-left: -40px;
    }

    .footer-about p {
      font-size: 13px;
      line-height: 1.6;
      max-width: 400px;
      text-align: center;
      margin-left: -85px;
      margin-top: -15px;
    }

    .footer-links, .footer-contact {
      flex: 1 1 200px;
    }

    .footer-links h4,
    .footer-contact h4 {
      font-size: 1.1rem;
      margin-bottom: 1rem;
      font-weight: 700;
    }

    .footer-links ul {
      list-style: none;
      padding: 0;
    }

    .footer-links ul li {
      margin-bottom: 0.5rem;
    }

    .footer-links ul li a {
      color: white;
      text-decoration: none;
      transition: color 0.2s;
    }

    .footer-links ul li a:hover {
      color: var(--gold);
    }

    .footer-contact p {
      margin-bottom: 0.6rem;
      font-size: 0.95rem;
      color: white;
    }

    .footer-contact i {
      margin-right: 8px;
      color: var(--gold);
    }

    .footer-social {
      margin-top: 1rem;
    }

    .footer-social a {
      display: inline-block;
      margin-right: 0.8rem;
      color: white;
      font-size: 1rem;
      transition: color 0.2s;
    }

    .footer-social a:hover {
      color: var(--gold);
    }

.footer-bottom {
  margin-top: 2rem;
  border-top: 1px solid rgba(255,255,255,0.2);
  text-align: center;
  font-size: 0.9rem;
  color: #ccc;
  padding: 15px 10px;
}

.footer-bottom a {
  color: #ccc;
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-bottom a:hover {
  color: #fff;
}

    /* ANIMATIONS */
    @keyframes fadeInUp {
      from {
        opacity: 0;
        transform: translateY(30px);
      }
      to {
        opacity: 1;
        transform: translateY(0);
      }
    }

    .fade-in-up {
      animation: fadeInUp 0.8s ease forwards;
    }

/* Mobile Responsive Styles */
@media (max-width: 768px) {
  /* Fix white gap at top */
  body {
    margin: 0;
    padding: 0;
    overflow-x: hidden;
  }

  /* Header Mobile - Fixed with background */
  .site-header {
    height: 70px;
    padding: 10px 15px;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: var(--deep-blue) !important;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    z-index: 1000;
  }

  .header-left {
    margin-top: 5px;
    gap: 8px;
  }

  .header-left .logo:first-child img {
    height: 40px;
  }

  .header-left .logo:last-child img {
    height: 45px;
  }

  .header-right {
    gap: 15px;
  }

  .btn-apply {
    display: none;
  }

  /* Compact Mobile Navigation */
  .main-nav {
    position: fixed;
    top: 0;
    right: -100%;
    width: 250px;
    height: 100vh;
    background: var(--deep-blue);
    padding: 70px 20px 20px;
    transition: right 0.3s ease;
    z-index: 1000;
  }

  .main-nav.active {
    right: 0;
  }

  .main-nav ul {
    flex-direction: column;
    gap: 12px;
  }

  .main-nav ul li a {
    font-size: 1rem;
    padding: 8px 0;
  }

    .main-nav ul li a.active {
      border-bottom: none;
    }

  .mobile-apply-btn {
    display: block !important;
    background: var(--gold);
    color: var(--deep-blue);
    padding: 10px 20px;
    border-radius: 6px;
    text-decoration: none;
    text-align: center;
    font-weight: 600;
    margin-top: 15px;
    font-size: 0.9rem;
  }

  /* Compact Menu Toggle */
  .mobile-menu-toggle {
    display: flex;
    flex-direction: column;
    gap: 6px;
    cursor: pointer;
    z-index: 1001;
  }

  .mobile-menu-toggle span {
    width: 22px;
    height: 2px;
    background: var(--light-gold);
    transition: 0.3s;
  }

  .mobile-menu-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
  }

  .mobile-menu-toggle.active span:nth-child(2) {
    opacity: 0;
  }

  .mobile-menu-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
  }

  /* Contact Hero Mobile */
  .contact-hero {
    padding: 85px 15px 25px;
    min-height: auto;
  }

  .hero-content h1 {
    font-size: 1.7rem;
    margin-bottom: 12px;
  }

  .hero-content p {
    font-size: 0.9rem;
    margin-bottom: 20px;
  }

  /* Contact Info Section Mobile */
  .contact-info-section {
    padding: 50px 15px;
  }

  .section-header {
    margin-bottom: 35px;
  }

  .section-header h2 {
    font-size: 1.6rem;
    margin-bottom: 10px;
  }

  .section-header h2::after {
    width: 60px;
    height: 3px;
    bottom: -8px;
  }

  .section-header p {
    font-size: 0.9rem;
    margin-top: 15px;
  }

  .contact-grid {
    grid-template-columns: 1fr;
    gap: 20px;
    margin-bottom: 40px;
  }

  .contact-card {
    padding: 25px 20px;
    border-radius: 10px;
    border-left-width: 3px;
  }

  .contact-icon {
    width: 60px;
    height: 60px;
    margin-bottom: 18px;
    font-size: 1.5rem;
  }

  .contact-card h3 {
    font-size: 1.2rem;
    margin-bottom: 10px;
  }

  .contact-card p {
    font-size: 0.85rem;
    margin-bottom: 12px;
  }

  .contact-card a {
    font-size: 0.85rem;
  }

  /* Map Section Mobile */
  .map-section {
    padding: 0;
  }

  .map-container {
    height: 300px;
  }

  /* Compact Footer */
  .site-footer {
    padding: 2rem 1rem 1rem;
  }

  .footer-container {
    flex-direction: column;
    gap: 1.5rem;
    text-align: center;
  }

  .footer-about .footer-logo img {
    height: 300px;
    margin: -40px auto -30px;
  }

  .footer-about p {
    margin: 0 auto;
    margin-top: -35px;
    font-size: 0.8rem;
  }

  .footer-links {
    font-size: 1rem;
    margin-top: -2rem;
    margin-bottom: 1.5rem;
  }

  .footer-links h4,
  .footer-contact h4 {
    font-size: 1rem;
    margin-bottom: 0.8rem;
  }

  .footer-links ul li {
    margin-bottom: 0.3rem;
  }

  .footer-links ul li a {
    font-size: 0.85rem;
  }

  .footer-contact p {
    font-size: 0.85rem;
    margin-bottom: 0.5rem;
  }

  .footer-social {
    margin-top: 3rem;
  }

  .footer-social a {
    margin: 0 6px;
    font-size: 1rem;
  }

  .footer-bottom {
    margin-top: 1.5rem;
    padding: 10px;
    font-size: 0.8rem;
  }
}

/* Small Mobile Devices */
@media (max-width: 480px) {
  .site-header {
    padding: 8px 12px;
  }

  .header-left .logo:first-child img {
    height: 35px;
  }

  .header-left .logo:last-child img {
    height: 40px;
  }

  .contact-hero {
    padding: 80px 12px 20px;
  }

  .contact-hero h1 {
    font-size: 1.5rem;
  }

  .contact-hero p {
    font-size: 0.85rem;
  }

  .contact-info-section {
    padding: 40px 12px;
  }

  .section-header h2 {
    font-size: 1.4rem;
  }

  .contact-card {
    padding: 20px 15px;
  }

  .contact-icon {
    width: 55px;
    height: 55px;
    font-size: 1.3rem;
  }

  .map-container {
    height: 250px;
  }

  .footer-about .footer-logo img {
    height: 280px;
    margin: -35px auto -25px;
  }

  .footer-about p {
    margin-top: -20px;
    font-size: 0.75rem;
  }

  .footer-social a {
    margin: 0 5px;
    font-size: 0.9rem;
  }
}

/* Tablet Devices */
@media (min-width: 769px) and (max-width: 1024px) {
  .site-header {
    padding: 12px 25px;
  }

  .contact-info-container {
    max-width: 95%;
  }

  .contact-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
  }

  .footer-container {
    padding: 0 20px;
  }
}

/* Hide mobile menu toggle on desktop */
.mobile-menu-toggle {
  display: none;
}

@media (max-width: 768px) {
  .mobile-menu-toggle {
    display: flex;
  }
}