/* Contact Page Styles */
:root {
  --blue: #003264;
  --black: #202124;
  --white: #f8f9fa;
  --red: #8B0000;
  --light-blue: #e6f0f9;
  --light-gray: #f5f5f5;
  --whatsapp-green: #25D366;
}

/* Reset & Base Styling */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Comic Neue', cursive;
  background-color: #f4f4f4;
  padding-top: 80px;
}

.main-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background-color: #ffffff;
  padding: 12px 0;
  box-shadow: 0 4px 8px rgba(0,0,0,0.1);
  z-index: 1000;
  height: 80px;
  transition: all 0.3s ease;
}

.header-container {
  width: 95%;
  max-width: 1300px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
}

.logo {
  height: 100%;
  display: flex;
  align-items: center;
}

.logo img {
  height: 55px;
  width: auto;
}

/* Hamburger menu - hidden by default on desktop */
.hamburger {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 28px;
  height: 22px;
  cursor: pointer;
  z-index: 1001;
}

.hamburger span {
  height: 3px;
  background-color: var(--blue);
  border-radius: 2px;
  transition: all 0.3s ease;
}

/* NAV MENU - Desktop version */
.nav-menu {
  display: flex;
  align-items: center;
  gap: 10px;
  height: 100%;
}

.nav-menu a {
  color: var(--blue);
  text-decoration: none;
  font-weight: bold;
  font-size: 18px;
  padding: 5px 5px;
  border-radius: 8px;
  transition: all 0.3s ease;
}

.nav-menu a:hover {
  background-color: rgba(0, 50, 100, 0.1);
}

.nav-menu a.active {
  background-color: var(--red);
  color: white;
}

/* DROPDOWN MENU - For both desktop and mobile */
.dropdown {
  position: relative;
}

.dropdown > a::after {
  content: ' ▼';
  font-size: 0.6em;
}

.dropdown-content {
  display: none;
  position: absolute;
  background-color: var(--red);
  min-width: 200px;
  padding: 10px 0;
  border-radius: 0 0 10px 10px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
  z-index: 1000;
}

.dropdown-content a {
  color: white;
  padding: 10px 20px;
  display: block;
  text-decoration: none;
  font-size: 16px;
  transition: all 0.2s ease;
}

  .dropdown-content a:hover {
    background-color: var(--blue);
    /* background-color: rgba(255, 255, 255, 0.1); */
  }

/* Show dropdown when active class is added */
.dropdown-content.show {
  display: block;
}

/* Mobile styles */
@media (max-width: 992px) {
  .hamburger {
    display: flex;
  }
  
  .nav-menu {
    position: fixed;
    top: 80px;
    left: -100%;
    width: 280px;
    height: calc(100vh - 80px);
    background-color: var(--blue);
    flex-direction: column;
    align-items: flex-start;
    padding: 20px;
    gap: 10px;
    transition: left 0.3s ease;
    overflow-y: auto;
  }
  
  .nav-menu.show {
    left: 0;
  }
  
  .nav-menu a {
    color: white;
    width: 100%;
  }
  
  .dropdown {
    width: 100%;
    flex-direction: column;
    align-items: flex-start;
  }
  
  .dropdown-content {
    position: static;
    width: 100%;
    box-shadow: none;
    border-radius: 10px;
    margin-top: 5px;
  }
  
  /* Animate hamburger to X when menu is open */
  .hamburger.active span:nth-child(1) {
    transform: translateY(9px) rotate(45deg);
  }
  
  .hamburger.active span:nth-child(2) {
    opacity: 0;
  }
  
  .hamburger.active span:nth-child(3) {
    transform: translateY(-9px) rotate(-45deg);
  }
}
/* Contact Hero Section */
.contact-hero {
  position: relative;
  height: 50vh;
  min-height: 350px;
  background: url('../images/contactbg.jpg') center/cover no-repeat;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: white;
  overflow: hidden;
   animation: bgShift 30s linear infinite;
}


.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;

}

.contact-hero .hero-content {
  position: relative;
  z-index: 2;
}

.contact-hero h1 {
    color: var(--red);
  font-size: 3rem;
  margin-bottom: 20px;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
  animation: fadeInDown 1s ease;
}

.contact-hero h1 span {
  color: var(--blue);
}

.breadcrumbs {
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 1.1rem;
  margin-top: 20px;
}

.breadcrumbs a {
  color: var(--white);
  text-decoration: none;
  transition: color 0.3s ease;
}

.breadcrumbs a:hover {
  color: var(--red);
}

.breadcrumbs span {
  margin: 0 10px;
  color: var(--white);
}

.breadcrumbs .active {
  color: var(--red);
  font-weight: bold;
}

/* Contact Form Section */
.contact-form-section {
  padding: 80px 0;
  background-color: var(--white);
}

.section-header {
  text-align: center;
  margin-bottom: 50px;
}

.section-header h2 {
  font-size: 2.2rem;
  color: var(--red);
  margin-bottom: 15px;
}

.section-header h2 span {
  color: var(--blue);
}

.section-header p {
  font-size: 1.1rem;
  color: var(--black);
  max-width: 700px;
  margin: 0 auto;
}

.divider {
  width: 80px;
  height: 4px;
  background: linear-gradient(to right, var(--red), var(--blue));
  margin: 0 auto 20px;
  border-radius: 2px;
}

.contact-form-container {
  display: flex;
  gap: 40px;
  max-width: 1200px;
  margin: 0 auto;
}

.contact-form {
    margin-left: 10px;
    margin-right: 10px;
  flex: 0 0 60%;
  padding: 40px;
  background: white;
  border-radius: 15px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 1.0);
}

.contact-info-sidebar {
  flex: 0 0 40%;

}

.contact-info-box {
    margin-left: 10px;
    margin-right: 10px;
  background: var(--blue);
  padding: 40px;
  border-radius: 15px;
  color: white;
  height: 100%;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 1.0);
}

.form-row {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  margin-bottom: 20px;
}

.form-group {
  flex: 1 1 calc(50% - 20px);
  margin-bottom: 15px;
}

.form-group.full-width {
  flex: 1 1 100%;
}

label {
  display: block;
  margin-bottom: 8px;
  font-weight: bold;
  color: var(--blue);
  font-size: 0.95rem;
}

input, textarea, select {
  width: 100%;
  padding: 12px 15px;
  border: 1px solid #ddd;
  border-radius: 8px;
  font-family: 'Comic Neue', cursive;
  font-size: 1rem;
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

input:focus, textarea:focus, select:focus {
  outline: none;
  border-color: var(--blue);
  box-shadow: 0 0 0 3px rgba(0, 50, 100, 0.1);
}

.duration-input {
  position: relative;
}

.duration-input span {
  position: absolute;
  right: 15px;
  top: 50%;
  transform: translateY(-50%);
  color: #666;
}

textarea {
  resize: vertical;
  min-height: 120px;
}

.submit-btn {
  width: 300px;
  padding: 15px;
  font-size: 1.1rem;
  margin-top: 10px;
  transition: all 0.3s ease;
}

.submit-btn i {
  margin-left: 10px;
}

.submit-btn:hover {
  background: var(--blue);
  transform: translateY(-3px);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.form-image {
  flex: 1 1 40%;
  position: relative;
  min-height: 300px;
  background: url('../images/contact-form.jpg') center/cover no-repeat;
}

.image-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 50, 100, 0.7);
}



.contact-info-box h3 {
  font-size: 1.5rem;
  margin-bottom: 30px;
  color: white;
  position: relative;
  padding-bottom: 10px;
}

.contact-info-box h3::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 50px;
  height: 3px;
  background: var(--red);
}

.contact-info-item {
  display: flex;
  align-items: flex-start;
  margin-bottom: 25px;
  gap: 15px;
}

.contact-info-item i {
  font-size: 1.3rem;
  color: var(--red);
  margin-top: 3px;
}

.contact-info-item h4 {
  font-size: 1.1rem;
  margin-bottom: 5px;
  color: white;
}

.contact-info-item p {
  font-size: 1rem;
  line-height: 1.6;
  margin: 0;
}

.whatsapp-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--whatsapp-green);
  color: white;
  padding: 12px 20px;
  border-radius: 30px;
  text-decoration: none;
  font-weight: bold;
  margin-top: 20px;
  width: 100%;
  transition: all 0.3s ease;
}


.whatsapp-btn i {
  margin-right: 8px;
}

.whatsapp-btn:hover {
  background: #128C7E;
  transform: translateY(-3px);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

/* Responsive Layout */
@media (max-width: 992px) {
  .contact-form-container {
    flex-direction: column;
  }
  
  .contact-form, 
  .contact-info-sidebar {
    flex: 1 1 100%;
  }
}

/* Map Section */
.map-section {
  padding: 80px 0;
  background-color: var(--light-gray);
}

.map-container {
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  margin-bottom: 20px;
}

.map-address {
  display: flex;
  align-items: flex-start;
  background: var(--blue);
  color: white;
  padding: 25px;
  border-radius: 8px;
  max-width: 800px;
  margin: 0 auto;
  gap: 20px;
}

.map-address i {
  color: var(--red);
  font-size: 1.8rem;
  margin-top: 5px;
}

.map-address h4 {
  font-size: 1.3rem;
  margin-bottom: 10px;
  color: white;
}

.map-address p {
  font-size: 1rem;
  margin: 0 0 15px 0;
  line-height: 1.6;
}

.map-link {
  display: inline-flex;
  align-items: center;
  color: white;
  text-decoration: none;
  background: var(--red);
  padding: 8px 15px;
  border-radius: 30px;
  transition: all 0.3s ease;
}

/* Contact CTA Section */
.contact-cta {
  padding: 80px 0;
  background: linear-gradient(to right, rgb(150, 40, 40), var(--blue));
  color: white;
  text-align: center;
}

.contact-cta h2 {
  font-size: 2.2rem;
  margin-bottom: 20px;
}

.contact-cta p {
  font-size: 1.2rem;
  margin-bottom: 30px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

/* Center buttons on one line */
.cta-buttons {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 30px;
  flex-wrap: nowrap; /* Ensures they stay in one row unless screen is very narrow */
}

/* Common style for both buttons */
.cta-btn,
.whatsapp-btn {
  width: 250px;
  height: 50px;
  border-radius: 30px;
  padding: 0 20px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.1rem;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  transition: all 0.3s ease;
}

/* Call Button Specific */
.cta-btn {
  background: white;
  color: var(--blue);
}

.cta-btn:hover {
  background: var(--light-gray);
  transform: translateY(-3px);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

/* WhatsApp Button Specific */
.whatsapp-btn {
  background: var(--whatsapp-green);
  color: white;
}

.whatsapp-btn:hover {
  background: #128C7E;
}

/* Optional: icon spacing */
.cta-btn i,
.whatsapp-btn i {
  margin-right: 10px;
}


/* Responsive Styles */
@media (max-width: 992px) {
  .contact-form-container {
    flex-direction: column;
  }
  
  .contact-form, .form-image {
    flex: 1 1 100%;
  }
  
  .form-image {
    min-height: 400px;
  }
}

@media (max-width: 768px) {
  .contact-hero h1 {
    font-size: 2.2rem;
  }
  
  .form-group {
    flex: 1 1 100%;
  }
  
  .contact-cta h2 {
    font-size: 1.8rem;
  }
}

@media (max-width: 576px) {
  .contact-hero {
    height: 40vh;
  }
  
  .contact-hero h1 {
    font-size: 1.8rem;
  }
  
  .breadcrumbs {
    font-size: 0.9rem;
  }
  
  .section-header h2 {
    font-size: 1.8rem;
  }
  
  .contact-form {
    padding: 30px 20px;
  }
  
  .cta-buttons {
    flex-direction: column;
    align-items: center;
  }
  
  .cta-btn, .whatsapp-btn {
    width: 100%;
    max-width: 300px;
    justify-content: center;
  }
}


/* Footer Styling */
.main-footer {
  background-color: #003264;
  color: #ffffff;
  padding: 40px 20px 20px 20px;
  font-family: 'Comic Neue', cursive;
}

.footer-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  max-width: 1300px;
  margin: 0 auto;
  gap: 40px;
}

.footer-logo,
.footer-links,
.footer-contact {
  flex: 1 1 300px;
}

.footer-logo img {
  height: 60px;
  margin-bottom: 15px;
}

.footer-logo p {
  font-size: 1rem;
  color: #ffffff;
}

.footer-links h3,
.footer-contact h3 {
  font-size: 1.2rem;
  margin-bottom: 10px;
  color: #ffffff;
}

.footer-links ul {
  list-style: none;
  padding: 0;
}

.footer-links ul li {
  margin-bottom: 8px;
}

.footer-links ul li a,
.footer-contact a {
  color: #ffffff;
  text-decoration: none;
  position: relative;
  display: inline-block;
  padding-bottom: 2px;
}

.footer-contact p {
  margin-bottom: 8px;
  font-size: 1rem;
  color: #ffffff;
}

/* Hover Underline Animation */
.hover-underline-animation::after {
  content: '';
  position: absolute;
  width: 100%;
  transform: scaleX(0);
  height: 2px;
  bottom: 0;
  left: 0;
  background-color: #8B0000;
  transform-origin: bottom right;
  transition: transform 0.25s ease-out;
}

.hover-underline-animation:hover::after {
  transform: scaleX(1);
  transform-origin: bottom left;
}

/* Social Media Icons */
.social-media-wrapper {
  display: flex;
  justify-content: center;
  margin-top: 30px;
}

.social-media {
  display: flex;
  gap: 20px;
}

.social-media a {
  color: #ffffff;
  font-size: 1.5rem;
  transition: color 0.3s ease;
}

.social-media a:hover {
  color: #8B0000;
}

/* Footer Bottom */
.footer-bottom {
  text-align: center;
  margin-top: 30px;
  font-size: 0.9rem;
  color: #ffffff;
}

/* Responsive Design */
@media (max-width: 768px) {
  .footer-container {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .footer-logo,
  .footer-links,
  .footer-contact {
    flex: 1 1 100%;
  }

  .social-media {
    flex-wrap: wrap;
    justify-content: center;
  }
}