/* Reset & Base Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Poppins", sans-serif;
}

body {
  color: #333;
  line-height: 1.6;
  background-color: #f8f9fa;
}

a {
  text-decoration: none;
  color: inherit;
}

ul {
  list-style: none;
}

.container {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
}

.btn {
  display: inline-block;
  padding: 12px 28px;
  background: #007b94;
  color: white;
  border-radius: 4px;
  font-weight: 600;
  transition: all 0.3s ease;
  border: none;
  cursor: pointer;
}

.btn:hover {
  background: #1c6cb0;
  transform: translateY(-2px);
}

/* Header Styles */
header {
  background: white;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  position: fixed;
  width: 100%;
  top: 0;
  z-index: 1000;
}

.header-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 8px 0;
}

.logo {
  display: flex;
  align-items: center;
}

.logo img {
    width: 330px;
}

.nav-menu {
  display: flex;
}

.nav-item {
  position: relative;
  margin: 0 15px;
}

.nav-link {
  font-weight: 500;
  font-size: 17px;
  color: #301818;
  padding: 10px 0;
  display: inline-block;
  transition: color 0.3s;
}

.nav-link:hover {
  color: #057a13;
}

.customer-care-item {
  display: flex;
  align-items: center;
  margin-right: 20px;
}

.customer-care-link {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 8px 8px;
  background-color: #013b5e;
  color: white !important;
  border-radius: 22px;
  font-weight: 600;
  transition: all 0.3s ease;
}

.customer-care-link:hover {
  background-color: #1c5fa3;
  transform: translateY(-2px);
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.customer-care-link i {
  font-size: 16px;
}

/* Mobile responsiveness for customer care */
@media (max-width: 768px) {
  .customer-care-item {
    margin-right: 0;
    margin-bottom: 15px;
    justify-content: center;
  }
  
  .customer-care-link {
    justify-content: center;
    width: 100%;
    padding: 12px 20px;
  }
}
.mobile-toggle {
  display: none;
  font-size: 24px;
  cursor: pointer;
}

/* Hero Section */
.hero {
  position: relative;
  color: white;
  text-align: center;
  overflow: hidden;
  height: 100vh;
  min-height: 600px;
  max-height: none; /* Remove max-height constraint */
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 80px;
}

.hero-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
}

.hero-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center; /* Ensure image is centered */
}

.hero-image::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.6);
}

.hero-content {
  position: relative;
  max-width: 800px;
  width: 90%;
  padding: 20px;
}

.hero h1 {
  font-size: 3.5rem;
  margin-bottom: 20px;
  line-height: 1.2;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.hero p {
  font-size: 1.4rem;
  margin-bottom: 30px;
  text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.5);
}

/* Contact Section */
.contact {
  padding-top: 90px;
  background-color: #fff;
}

.section-title {
  text-align: center;
  margin-bottom: 50px;
}

.section-title h2 {
  font-size: 40px;
  color: #007b94;
  margin-bottom: 15px;
  position: relative;
  display: inline-block;
}

.section-title h2::after {
  content: "";
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 70px;
  height: 3px;
  background: #0a0a0a;
}

.contact-container {
  display: flex;
  flex-wrap: wrap;
  margin-top: 45px;
  gap: 40px;
  justify-content: space-between;
}

.contact-form {
  flex: 1;
  min-width: 300px;
}

.form-group {
  margin-bottom: 10px;
}

.form-group label {
  display: block;
  margin-bottom: 8px;
  font-weight: 500;
  color: #3b3c3c;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 10px 15px;
  border: 1px solid #ddd;
  border-radius: 5px;
  font-size: 16px;
  transition: border-color 0.3s;
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: #2a7cc7;
}

.form-group textarea {
  min-height: 120px;
  resize: vertical;
}

.submit-btn {
  background-color: #007b94;
  color: white;
  border: none;
  padding: 12px 25px;
  border-radius: 5px;
  font-size: 16px;
  cursor: pointer;
  transition: background-color 0.3s;
}

.submit-btn:hover {
  background-color: #1c5fa3;
}

.contact-info {
  flex: 1;
  min-width: 300px;
}

.info-card {
  padding: 8px;
}

.info-card h3 {
  color: #5c5c5c;
  font-size: 28px;
  display: flex;
  align-items: center;
  gap: 10px;
  border-bottom-style: groove;
  margin-bottom: 10px;
}

.info-card h3 i {
  color: #007b94;
  font-size: 24px;
}

.info-item {
  display: flex;
  align-items: center;
  margin-bottom: 15px;
}

.info-item i {
  color: #007b94;
  font-size: 20px;
  width: 30px;
  flex-shrink: 0;
}

.info-content {
  flex: 1;
}

.info-content .value {
  color: #272727;
  font-size: 15px;
  font-weight: 500;
}

.map {
  width: 100%;
  height: 220px;
  border-radius: 8px;
  overflow: hidden;
  margin-bottom: 10px;
}

.map iframe {
  width: 100%;
  height: 100%;
  border: none;
}

.social-links {
  display: flex;
  gap: 24px;
  margin-top: 10px;
}

.social-links a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 45px;
  height: 45px;
  background-color: #12293a;
  color: white;
  border-radius: 50%;
  text-decoration: none;
  transition: all 0.3s;
  font-size: 18px;
}

.social-links a:hover {
  background-color: #1c5fa3;
  transform: translateY(-3px);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.social-links a.facebook:hover {
  background-color: #0866ff;
}

.social-links a.instagram:hover {
  background: linear-gradient(
    45deg,
    #f09433,
    #e6683c,
    #dc2743,
    #cc2366,
    #bc1888
  );
}

/* Responsive Design */
@media (max-width: 1200px) {
  .hero h1 {
    font-size: 3rem;
  }

  .hero p {
    font-size: 1.3rem;
  }
}

@media (max-width: 992px) {
  .hero h1 {
    font-size: 2.8rem;
  }

  .hero p {
    font-size: 1.2rem;
  }

  .contact-container {
    flex-direction: column;
  }

  .contact-form,
  .contact-info {
    width: 100%;
  }
}

@media (max-width: 768px) {
  .mobile-toggle {
    display: block;
    position: fixed;
    top: 20px;
    right: 20px;
    background: white;
    width: 40px;
    height: 40px;
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    z-index: 1001;
  }

  .nav-menu {
    position: fixed;
    top: 0;
    left: -100%;
    width: 80%;
    max-width: 300px;
    height: 100vh;
    background: white;
    flex-direction: column;
    align-items: flex-start;
    padding: 80px 20px 20px;
    transition: left 0.3s ease;
    box-shadow: 5px 0 15px rgba(0, 0, 0, 0.1);
    z-index: 1000;
    overflow-y: auto;
  }

  .nav-menu.active {
    left: 0;
  }

  .nav-item {
    margin: 10px 0;
    width: 100%;
  }

  .hero {
    min-height: 500px;
    height: 80vh;
    margin-top: 70px;
  }

  .hero h1 {
    font-size: 2.4rem;
    margin-bottom: 15px;
  }

  .hero p {
    font-size: 1.1rem;
    margin-bottom: 25px;
    line-height: 1.5;
  }

  .hero-content {
    padding-top: 100px;
  }

  .info-card h3 {
    margin-left: 0;
  }

  .info-item {
    margin-left: 0;
  }

  .social-links {
    margin-left: 0;
  }

  .map {
    margin-left: 0;
  }
}

@media (max-width: 576px) {
  .hero {
    min-height: 450px;
    height: 85vh;
  }

  .hero h1 {
    font-size: 2rem;
    line-height: 1.3;
  }

  .hero p {
    font-size: 1rem;
    margin-bottom: 20px;
    padding: 0 10px;
  }

  .hero-content {
    padding-top: 80px;
    width: 95%;
  }

  .contact {
    padding: 60px 0;
  }

  .section-title h2 {
    font-size: 28px;
  }

  .info-card {
    padding: 0;
  }

  .social-links a {
    width: 40px;
    height: 40px;
    font-size: 16px;
  }
}

@media (max-width: 400px) {
  .hero {
    min-height: 400px;
    height: 80vh;
  }

  .hero h1 {
    font-size: 1.8rem;
  }

  .hero p {
    font-size: 0.95rem;
  }

  .hero-content {
    padding: 60px 10px 0;
  }

  .logo img {
        height: 60px;
        width: 220px;
  }
}

@media (max-height: 500px) and (orientation: landscape) {
  .hero {
    height: auto;
    min-height: 100vh;
  }

  .hero-content {
    padding: 100px 0 40px;
  }

  .hero h1 {
    font-size: 2rem;
    margin-bottom: 10px;
  }

  .hero p {
    font-size: 1rem;
    margin-bottom: 20px;
  }
}

/* Back to Top Button Styles */
#backToTop {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background-color: #007b94;
    color: white;
    border: none;
    border-radius: 50%;
    cursor: pointer;
    display: none;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    box-shadow: 0 4px 12px rgba(0, 123, 148, 0.3);
    transition: all 0.3s ease;
    z-index: 999;
    opacity: 0;
    transform: translateY(10px);
}

#backToTop.show {
    display: flex;
    opacity: 1;
    transform: translateY(0);
}

#backToTop:hover {
    background-color: #1c5fa3;
    transform: translateY(-3px);
    box-shadow: 0 6px 15px rgba(0, 123, 148, 0.4);
}

#backToTop:active {
    transform: translateY(-1px);
}

/* Responsive adjustments */
@media (max-width: 768px) {
    #backToTop {
        bottom: 20px;
        right: 20px;
        width: 45px;
        height: 45px;
        font-size: 18px;
    }
}

@media (max-width: 480px) {
    #backToTop {
        bottom: 15px;
        right: 15px;
        width: 40px;
        height: 40px;
        font-size: 16px;
    }
}