/* ===== Base Styles ===== */
:root {
    --primary-color: #415093;
    --primary-dark: #34406a;
    --primary-light: #5c6cb1;
    --secondary-color: #ff6b6b;
    --text-color: #333;
    --light-gray: #f8f9fa;
    --medium-gray: #e9ecef;
    --dark-gray: #6c757d;
    --white: #ffffff;
    --black: #212529;
  }
  
  * {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }
  
  body {
    font-family: 'Cambria', 'Calibri', serif;
    color: var(--text-color);
    line-height: 1.6;
    overflow-x: hidden;
    background-color: var(--light-gray);
  }
  
  h1, h2, h3, h4, h5, h6 {
    font-family: 'Cambria', 'Calibri', serif;
    font-weight: 700;
    line-height: 1.2;
  }
  
  a {
    text-decoration: none;
    transition: all 0.3s ease;
  }
  
  .btn {
    font-weight: 600;
    padding: 10px 20px;
    border-radius: 6px;
    transition: all 0.3s ease;
  }
  
  .btn-primary {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
  }
  
  .btn-primary:hover {
    background-color: var(--primary-dark);
    border-color: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  }
  
  .btn-outline-light:hover {
    background-color: rgba(255, 255, 255, 0.1);
  }
  
  .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
  }
  
  .section-title {
    position: relative;
    margin-bottom: 1.5rem;
    color: var(--primary-color);
  }
  
  .section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 60px;
    height: 3px;
    background: var(--primary-color);
  }
  
  .text-center .section-title::after {
    left: 50%;
    transform: translateX(-50%);
  }
  
  /* ===== Header & Navbar (Unchanged from original) ===== */
  .upperheader {
    height: 20px;
    background-color: var(--primary-color);
  }
  
  .navbar-nav {
    font-size: 20px;
  }
  
  .navlogo {
    width: 60%;
  }
  
  .navbar-brand {
    margin: 4px 30px;
    width: 20%;
  }
  
  .nav-item {
    margin-right: 20px;
  }
  
  .nav-item:hover {
    background-color: var(--primary-color);
    color: var(--white);
  }
  
  .nav-link:hover {
    color: var(--white);
  }
  
  .nav-link.active:hover {
    color: var(--white);
  }
  
  .nav-link2:hover {
    color: var(--black);
  }
  
  .nav-tabs .nav-item.show .nav-link, .nav-tabs .nav-link.active {
    border: none !important;
    background-color: var(--primary-color);
  }
  
  .nav {
    font-size: 17px;
    font-family: Cambria, Calibri, serif;
    --bs-nav-link-color: var(--black);
    --bs-nav-link-hover-color: var(--black);
    place-content: center;
  }
  
  .nav-tabs .nav-link.active {
    color: var(--white);
  }
  
  .nav-link {
    color: var(--black);
  }
  
  .nav-link.active {
    font-size: 19px;
  }
  
  .nav-tabs {
    border-bottom: 4px solid var(--primary-color);
    width: 63%;
  }
  
  .dropdown:hover .dropdown-menu {
    display: block;
  }
  
  .dropdown-item:hover {
    background-color: var(--primary-color);
    color: var(--white);
  }
  
  .dropdown-menu {
    font-family: Cambria, Calibri, serif;
    font-size: 18px;
  }
  
  .dropdown:hover .nav-link {
    color: var(--white);
  }
  
  .collapse {
    margin: 10px 10px;
    width: auto;
  }
  
  .navbar-toggler {
    margin-left: 10px;
    margin-right: 10px;
    padding: 8px;
    position: relative;
  }
  
  /* ===== Contact Hero Section ===== */
  .contact-hero {
    position: relative;
    background: linear-gradient(135deg, rgba(65, 80, 147, 0.9), rgba(0, 0, 0, 0.7)), 
                url('https://images.unsplash.com/photo-1486406146926-c627a92ad1ab?ixlib=rb-4.0.3&auto=format&fit=crop&w=2070&q=80') no-repeat center center;
    background-size: cover;
    padding: 120px 0 180px;
    color: var(--white);
    text-align: center;
    overflow: hidden;
  }
  
  .contact-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 0;
  }
  
  .hero-curve {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100px;
    background: var(--light-gray);
    border-radius: 50% 50% 0 0 / 100% 100% 0 0;
    transform: scaleX(1.5);
  }
  
  .contact-hero-content {
    position: relative;
    z-index: 1;
    max-width: 800px;
    margin: 0 auto;
    padding: 0 20px;
  }
  
  .contact-hero h1 {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
    animation: fadeInDown 1s ease;
  }
  
  .contact-hero p.lead {
    font-size: 1.5rem;
    margin-bottom: 2.5rem;
    opacity: 0.9;
    animation: fadeInUp 1s ease 0.3s both;
  }
  
  .hero-cta {
    display: flex;
    justify-content: center;
    gap: 15px;
    animation: fadeIn 1s ease 0.6s both;
  }
  
  /* ===== Contact Main Section ===== */
  .contact-main {
    padding: 80px 0;
    background-color: var(--white);
  }
  
  .section-intro {
    max-width: 700px;
    margin: 0 auto 50px;
  }
  
  .section-subtitle {
    color: var(--dark-gray);
    font-size: 1.2rem;
    margin-top: 15px;
  }
  
  .contact-method-card {
    background: var(--white);
    border-radius: 10px;
    padding: 30px;
    height: 100%;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    border: 1px solid rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    text-align: center;
  }
  
  .contact-method-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
    border-color: var(--primary-light);
  }
  
  .method-icon {
    width: 70px;
    height: 70px;
    background: var(--primary-color);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 1.8rem;
    transition: all 0.3s ease;
  }
  
  .contact-method-card:hover .method-icon {
    background: var(--primary-dark);
    transform: scale(1.1);
  }
  
  .contact-method-card h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: var(--primary-color);
  }
  
  .contact-method-card p {
    color: var(--dark-gray);
    margin-bottom: 20px;
  }
  
  .method-link {
    color: var(--primary-color);
    font-weight: 600;
    display: inline-flex;
    align-items: center;
  }
  
  .method-link i {
    margin-left: 8px;
    transition: transform 0.3s ease;
  }
  
  .method-link:hover i {
    transform: translateX(5px);
  }
  
  /* ===== Contact Form Section ===== */
  .contact-form-section {
    padding: 80px 0;
    background-color: var(--light-gray);
  }
  
  .form-intro {
    padding-right: 30px;
  }
  
  .form-intro h2 {
    font-size: 2.2rem;
    margin-bottom: 20px;
  }
  
  .form-intro p {
    font-size: 1.1rem;
    margin-bottom: 30px;
    color: var(--dark-gray);
  }
  
  .form-features {
    margin-top: 40px;
  }
  
  .feature-item {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
  }
  
  .feature-item i {
    color: var(--primary-color);
    margin-right: 10px;
    font-size: 1.2rem;
  }
  
  .contact-form {
    background: var(--white);
    padding: 40px;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  }
  
  .form-floating label {
    color: var(--dark-gray);
  }
  
  .form-control, .form-select {
    height: 50px;
    border-radius: 6px;
    border: 1px solid var(--medium-gray);
    padding: 15px;
  }
  
  .form-control:focus, .form-select:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 0.25rem rgba(65, 80, 147, 0.25);
  }
  
  textarea.form-control {
    min-height: 150px;
    resize: vertical;
  }
  
  /* ===== Location Section ===== */
  .location-section {
    padding: 80px 0;
    background-color: var(--white);
  }
  
  .location-info h2 {
    font-size: 2.2rem;
    margin-bottom: 30px;
  }
  
  .address-card {
    display: flex;
    align-items: flex-start;
    margin-bottom: 40px;
    background: var(--light-gray);
    padding: 25px;
    border-radius: 10px;
  }
  
  .address-icon {
    background: var(--primary-color);
    color: var(--white);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 20px;
    flex-shrink: 0;
    font-size: 1.2rem;
  }
  
  .address-card h3 {
    font-size: 1.4rem;
    margin-bottom: 10px;
    color: var(--primary-color);
  }
  
  .contact-points {
    margin-top: 30px;
  }
  
  .contact-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 25px;
  }
  
  .contact-item i {
    background: var(--primary-color);
    color: var(--white);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 15px;
    flex-shrink: 0;
    font-size: 1rem;
  }
  
  .contact-item h4 {
    font-size: 1.2rem;
    margin-bottom: 5px;
    color: var(--primary-color);
  }
  
  .contact-item p, .contact-item a {
    color: var(--dark-gray);
    margin-bottom: 0;
  }
  
  .contact-item a:hover {
    color: var(--primary-color);
  }
  
  .map-container {
    position: relative;
    height: 100%;
    min-height: 400px;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  }
  
  .map-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    background: linear-gradient(to right, rgba(255,255,255,0.8) 0%, rgba(255,255,255,0) 30%);
  }
  
  /* ===== Business Hours Section ===== */
  .business-hours {
    position: relative;
    background: linear-gradient(135deg, rgba(65, 80, 147, 0.9), rgba(0, 0, 0, 0.7)), 
                url('https://images.unsplash.com/photo-1552664730-d307ca884978?ixlib=rb-4.0.3&auto=format&fit=crop&w=2070&q=80') no-repeat center center;
    background-size: cover;
    padding: 100px 0;
    color: var(--white);
    text-align: center;
    overflow: hidden;
  }
  
  .business-hours::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    z-index: 0;
  }
  
  .hours-container {
    position: relative;
    z-index: 1;
    max-width: 800px;
    margin: 0 auto;
  }
  
  .hours-content h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    color: var(--white);
  }
  
  .hours-intro {
    font-size: 1.1rem;
    margin-bottom: 40px;
    opacity: 0.9;
  }
  
  .hours-grid {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 10px;
    padding: 30px;
    margin-bottom: 40px;
  }
  
  .hour-block {
    margin-bottom: 20px;
  }
  
  .hour-block:last-child {
    margin-bottom: 0;
  }
  
  .day-group {
    display: flex;
    justify-content: space-between;
    margin-bottom: 10px;
  }
  
  .days {
    font-weight: 600;
    font-size: 1.1rem;
  }
  
  .time {
    font-weight: 500;
  }
  
  .hour-progress {
    height: 6px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 3px;
    overflow: hidden;
  }
  
  .progress-bar {
    height: 100%;
    background: var(--white);
    border-radius: 3px;
    transition: width 1s ease;
  }
  
  .emergency-contact {
    display: flex;
    align-items: center;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 10px;
    padding: 25px;
    text-align: left;
  }
  
  .emergency-icon {
    background: var(--secondary-color);
    color: var(--white);
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 20px;
    flex-shrink: 0;
    font-size: 1.5rem;
  }
  
  .emergency-info h4 {
    font-size: 1.3rem;
    margin-bottom: 5px;
  }
  
  .emergency-info p {
    opacity: 0.9;
    margin-bottom: 15px;
  }
  
  .btn-emergency {
    background: var(--secondary-color);
    color: var(--white);
    font-weight: 600;
    padding: 10px 20px;
    border-radius: 6px;
    display: inline-flex;
    align-items: center;
  }
  
  .btn-emergency:hover {
    background: #e05a5a;
    color: var(--white);
    transform: translateY(-2px);
  }
  
  /* ===== Footer (Unchanged from original) ===== */
  .upperfooter {
    background-color: var(--primary-color);
    padding: 1.5rem 0;
  }
  
  .quicklink {
    text-decoration: none;
    color: var(--white);
  }
  
  .quicklink2 {
    text-decoration: none;
    color: var(--white);
  }
  
  .quicklink {
    transition: 0.3s;
  }
  
  .quicklink:hover {
    transform: scale(1.1);
  }
  
  .linksec:hover {
    color: red;
  }
  
  .horiline {
    width: 30%;
    color: var(--white);
  }
  
  .icon {
    font-size: 35px;
    display: flex;
    gap: 15px;
  }
  
  .icon a {
    display: inline-block;
    transition: transform 0.3s ease;
  }
  
  .icon a:hover {
    transform: scale(1.2);
  }
  
  .icon svg {
    width: 35px;
    height: 35px;
  }
  
  .fa-facebook:hover {
    color: blue;
  }
  
  .fa-instagram:hover {
    color: palevioletred;
  }
  
  .fa-linkedin:hover {
    color: dodgerblue;
  }
  
  .fa-youtube:hover {
    color: red;
  }
  
  .fa-whatsapp:hover {
    color: green;
  }
  
  .copyfooter {
    font-family: Cambria, Calibri, serif;
    display: flex;
    justify-content: center;
    align-items: center;
    color: var(--white);
    background-color: #202849;
    width: 100%;
    padding: 5px 0;
    margin: 0;
  }
  
  .copyfooter p {
    font-family: Cambria, Calibri, serif;
    margin: 0;
    text-align: center;
    font-size: 14px;
  }
  
  /* ===== Animations ===== */
  @keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
  }
  
  @keyframes fadeInDown {
    from {
      opacity: 0;
      transform: translateY(-30px);
    }
    to {
      opacity: 1;
      transform: translateY(0);
    }
  }
  
  @keyframes fadeInUp {
    from {
      opacity: 0;
      transform: translateY(30px);
    }
    to {
      opacity: 1;
      transform: translateY(0);
    }
  }
  
  /* ===== Responsive Styles ===== */
  @media (max-width: 992px) {
    .contact-hero h1 {
      font-size: 2.8rem;
    }
    
    .contact-hero p.lead {
      font-size: 1.3rem;
    }
    
    .form-intro {
      padding-right: 0;
      margin-bottom: 40px;
    }
    
    .map-overlay {
      background: linear-gradient(to bottom, rgba(255,255,255,0.8) 0%, rgba(255,255,255,0) 20%);
    }
  }
  
  @media (max-width: 768px) {
    .contact-hero {
      padding: 100px 0 150px;
    }
    
    .contact-hero h1 {
      font-size: 2.2rem;
    }
    
    .hero-cta {
      flex-direction: column;
      align-items: center;
    }
    
    .contact-method-card {
      margin-bottom: 20px;
    }
    
    .emergency-contact {
      flex-direction: column;
      text-align: center;
    }
    
    .emergency-icon {
      margin-right: 0;
      margin-bottom: 20px;
    }
  }
  
  @media (max-width: 576px) {
    .contact-hero h1 {
      font-size: 1.8rem;
    }
    
    .contact-hero p.lead {
      font-size: 1.1rem;
    }
    
    .contact-form {
      padding: 25px;
    }
    
    .hours-content h2 {
      font-size: 2rem;
    }
  }