/* ===========================
   Root Variables & Base Styles
   =========================== */
:root {
  --primary-blue: #014379;
  --secondary-blue: #0077b6;
  --dark-gray: #333333;
  --light-gray: #f8f9fa;
}

body {
  font-family: "Poppins", sans-serif;
  margin: 0;
  padding: 0;
  overflow-x: hidden;
}

/* ===========================
   Scroll Animation
   =========================== */
.scroll-section {
  opacity: 0 !important;
  transform: translateY(350px) !important;
  transition: opacity 0.7s ease-out, transform 0.7s ease-out !important;
}
.scroll-section.visible {
  opacity: 1 !important;
  transform: translateY(0) !important;
}

/* ===========================
   Navbar
   =========================== */
.navbar {
  background-color: white;
  padding: 0.5rem 2rem;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  position: relative;
  z-index: 1000;
}

.navbar-container {
  max-width: 1400px;
  margin: 0 auto;
  width: 100%;
}

.navbar-brand {
  width: 200px;
  padding: 10px 0;
  margin-left: 20px;
}

.navbar-brand img {
  width: 100%;
  height: auto;
  transition: transform 0.3s ease;
}

.navbar-brand:hover img {
  transform: scale(1.05);
}

.nav-item {
  margin: 0 10px;
}

.nav-link {
  color: var(--dark-gray) !important;
  font-weight: 500;
  position: relative;
  padding: 10px 5px !important;
  transition: all 0.3s ease;
}

.nav-link::after {
  content: "";
  position: absolute;
  width: 0;
  height: 2px;
  bottom: 5px;
  left: 0;
  background-color: var(--primary-blue);
  transition: width 0.3s ease;
}

.nav-link:hover::after {
  width: 100%;
}

.nav-link.active {
  color: var(--primary-blue) !important;
  font-weight: 600;
}

.nav-link.active::after {
  width: 100%;
}

/* ===========================
   Hero Section
   =========================== */
.hero {
  background-image: url("../assets/images/hero-image.jpg");
  background-size: cover;
  background-position: center;
  color: white;
  position: relative;
  min-height: 80vh;
  display: flex;
  align-items: center;
  margin-top: 0;
}

.hero::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    135deg,
    rgba(1, 67, 121, 0.85) 0%,
    rgba(0, 119, 182, 0.8) 100%
  );
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 800px;
  padding: 0 40px;
}

.hero h1 {
  font-size: 2.8rem;
  font-weight: 700;
  text-transform: uppercase;
  margin-bottom: 1.5rem;
  line-height: 1.2;
  text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.3);
}

.hero h2 {
  font-size: 2rem;
  font-weight: 600;
  text-transform: uppercase;
  margin-bottom: 2rem;
  color: #ffffff;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.2);
}

.hero p {
  font-size: 1.1rem;
  line-height: 1.6;
  margin-bottom: 2.5rem;
  max-width: 600px;
}

.cta-button {
  background-color: white;
  color: var(--primary-blue);
  padding: 12px 30px;
  border-radius: 30px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  transition: all 0.3s ease;
  border: 2px solid white !important;
}

.cta-button:hover {
  color: white;
  border: 2px solid rgb(255, 255, 255) !important;
}

/* ===========================
   About Section
   =========================== */
.about-content {
  padding: var(--section-padding);
  background-color: white;
}

.about-content h2 {
  color: var(--primary-blue);
  font-weight: 600;
  margin-bottom: 2rem;
  position: relative;
  display: inline-block;
}

.about-content h2::after {
  content: "";
  position: absolute;
  width: 50%;
  height: 3px;
  background: var(--secondary-blue);
  bottom: -10px;
  left: 0;
}

.about-content p {
  font-size: 1.1rem;
  margin-bottom: 1.5rem;
}

/* ===========================
   Features Section
   =========================== */
.features {
  padding: var(--section-padding);
  background-color: var(--light-gray);
}

.feature-box {
  padding: 30px;
  background: white;
  border-radius: 5px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  height: 100%;
  transition: transform 0.3s ease;
}

.feature-box:hover {
  transform: translateY(-10px);
}

.feature-icon {
  font-size: 2.5rem;
  color: var(--primary-blue);
  margin-bottom: 1rem;
}

/* ===========================
   CTA Section
   =========================== */
.cta-section {
  background: var(--primary-blue);
  color: white;
  padding: 60px 0;
  text-align: center;
}

.cta-section h2 {
  font-weight: 600;
  margin-bottom: 1.5rem;
}

.btn-outline-light {
  border-width: 2px;
  font-weight: 500;
  padding: 10px 30px;
  border-radius: 30px;
  margin-top: 1rem;
}

/* ===========================
   Responsive Adjustments
   =========================== */
@media (max-width: 992px) {
  .about-hero h1 {
    font-size: 2.5rem;
  }

  .about-hero .lead {
    font-size: 1.3rem;
  }
}

@media (max-width: 768px) {
  :root {
    --section-padding: 60px 0;
  }

  .about-hero {
    padding: 100px 0 60px;
  }

  .about-hero h1 {
    font-size: 2rem;
  }

  .about-hero .lead {
    font-size: 1.1rem;
  }
}

/* ===========================
   Hero Responsive Adjustments
   =========================== */
@media (max-width: 992px) {
  .hero h1 {
    font-size: 2.2rem;
  }

  .hero h2 {
    font-size: 1.6rem;
  }

  .navbar-brand {
    width: 150px;
    margin-left: 10px;
  }
}

@media (max-width: 768px) {
  .hero {
    min-height: 70vh;
    text-align: center;
  }

  .hero-content {
    padding: 0 20px;
    text-align: center;
  }

  .hero p {
    margin-left: auto;
    margin-right: auto;
  }

  .hero h1 {
    font-size: 1.8rem;
  }

  .hero h2 {
    font-size: 1.3rem;
  }

  .navbar {
    padding: 0.5rem 1rem;
  }
}

@media (max-width: 576px) {
  .hero h1 {
    font-size: 1.5rem;
  }

  .hero h2 {
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
  }

  .hero p {
    font-size: 1rem;
  }
}

/* ===========================
   Services Section
   =========================== */
.services-section {
  padding: 60px 0;
  background-color: #f8f9fa;
}
.services-section h2 {
  font-size: 2rem;
  font-weight: 700;
  color: #01426c;
  text-transform: uppercase;
}
.card {
  border: none;
  border-radius: 10px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  cursor: pointer;
}
.card:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15);
}
.card i {
  margin: 0 auto;
  display: block;
}
.card-title {
  font-size: 1.25rem;
  font-weight: 600;
  color: #01426c;
  margin-bottom: 0.5rem;
}
.card-text {
  font-size: 0.9rem;
  color: #6c757d;
}
.learn-more,
.see-less {
  color: #01426c;
  text-decoration: none;
  font-size: 0.9rem;
  display: block;
  margin-top: 0.5rem;
}
.learn-more:hover,
.see-less:hover {
  text-decoration: underline;
}
.collapse {
  margin-top: 0.5rem;
}
.learn-more.collapsed {
  display: block;
}
.collapse.show .see-less {
  display: block;
  margin-top: 1rem;
}
.collapse:not(.show) .see-less {
  display: none !important;
}
.collapse.show ~ .learn-more.collapsed {
  display: none !important;
}

/* ===========================
   Services Responsive Adjustments
   =========================== */
@media (max-width: 768px) {
  .services-section h2 {
    font-size: 1.5rem;
  }
  .card-title {
    font-size: 1.1rem;
  }
  .card-text {
    font-size: 0.85rem;
  }
  .learn-more,
  .see-less {
    font-size: 0.85rem;
  }
}
@media (max-width: 576px) {
  .services-section {
    padding: 40px 0;
  }
  .card i {
    font-size: 2.5rem;
  }
}

/* ===========================
   Page 4 & Page 5 Sections
   =========================== */
.page-5 {
  background-color: #f8f9fa;
}
.page-4 {
  background-color: white;
}
.page-4,
.page-5 {
  padding: 60px 0;
}
.page-4 h2,
.page-5 h2 {
  font-size: 2rem;
  font-weight: 700;
}
.page-4 p,
.page-5 p {
  font-size: 0.9rem;
}
@media (max-width: 768px) {
  .page-4 h2,
  .page-5 h2 {
    font-size: 1.5rem;
  }
  .page-4 p,
  .page-5 p {
    font-size: 0.85rem;
  }
  .row {
    flex-direction: column-reverse !important;
  }
  .col-md-6 {
    width: 100%;
    margin-bottom: 20px;
  }
  img {
    margin-top: 20px;
  }
}
@media (max-width: 576px) {
  .page-4,
  .page-5 {
    padding: 40px 0;
  }
}

.booking-section {
  height: 50vh;
  min-height: 550px;
  display: flex;
  align-items: center;
  position: relative;
  color: #ffffff;
  background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)),
    url("../assets/images/logo.png") center/cover no-repeat;
  padding-top: 30px;
  padding-bottom: 30px;
  overflow: hidden;
}

.booking-heading {
  font-size: 2.5rem;
  font-weight: 700;
  text-transform: uppercase;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
  margin-bottom: 40px;
}

/* Cards container */
.cards-container {
  display: flex;
  justify-content: center;
  gap: 30px;
  margin-bottom: 50px;
  flex-wrap: wrap;
}

/* Individual cards */
.booking-card {
  width: 320px;
  height: 340px;
  border-radius: 15px;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
  transition: all 0.3s ease;
  background-color: #ffffff;
  padding: 25px;
  display: flex;
  flex-direction: column;
}

.booking-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
}

.card-title {
  color: #01426c;
  font-size: 1.4rem;
  font-weight: 600;
  margin-bottom: 15px;
}

.card-text {
  color: #6c757d;
  font-size: 0.95rem;
  line-height: 1.6;
  flex-grow: 1;
}

/* Button styling */
.booking-btn-container {
  text-align: center;
  margin-top: 20px;
}

.booking-btn {
  background: linear-gradient(90deg, #01426c, #0277bd);
  border: none;
  padding: 15px 40px;
  font-weight: 700;
  text-transform: uppercase;
  border-radius: 30px;
  color: #ffffff;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
  transition: all 0.3s ease;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.booking-btn:hover {
  background: linear-gradient(90deg, #012b47, #01579b);
  transform: translateY(-3px);
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.3);
}

/* Carousel for mobile */
.carousel-container {
  display: none;
  position: relative;
  width: 100%;
  max-width: 400px;
  margin: 0 auto 60px;
  overflow: hidden;
}

.carousel-track {
  display: flex;
  transition: transform 0.5s ease;
}

.carousel-card {
  min-width: 100%;
  border-radius: 15px;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
  background-color: #ffffff;
  padding: 25px;
  display: flex;
  flex-direction: column;
  height: 340px;
}

.carousel-nav {
  text-align: center;
  margin-top: 20px;
}

.carousel-dot {
  display: inline-block;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.5);
  margin: 0 8px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.carousel-dot.active {
  background: #ffffff;
  transform: scale(1.2);
}

/* Mobile adjustments */
@media (max-width: 768px) {
  .booking-section {
    height: auto;
    min-height: 75vh;
    padding: 30px 0;
    display: block;
  }

  .booking-section .container {
    display: block;
  }

  .booking-section .row {
    display: flex !important;
    flex-direction: column !important;
  }
  .booking-heading {
    font-size: 1.8rem;
    margin-bottom: 30px;
    margin-top: 0;
  }

  .cards-container {
    display: none;
  }

  .carousel-container {
    display: block;
    margin: 0 auto 30px;
  }

  .booking-btn-container {
    margin-top: 10px;
  }

  .booking-btn {
    padding: 12px 30px;
    font-size: 0.9rem;
  }

  .carousel-card {
    height: 320px;
    padding: 20px;
  }
}

@media (max-width: 576px) {
  .booking-heading {
    font-size: 1.5rem;
    padding: 0 15px;
  }

  .carousel-card {
    height: 300px;
  }
}

.contact-section {
  max-width: 1200px;
  margin: 40px auto;
  background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  overflow: hidden;
  position: relative;
}

.contact-container {
  display: flex;
  flex-wrap: wrap;
}

.contact-info {
  flex: 1;
  min-width: 300px;
  padding: 50px;
  background: linear-gradient(135deg, #2c3e50 0%, #3498db 100%);
  color: white;
}

.contact-form {
  flex: 1;
  min-width: 300px;
  padding: 50px;
  background: white;
  position: relative;
  z-index: 10;
}

.section-title {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 15px;
  color: #fff;
}

.section-subtitle {
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: 30px;
  color: #f8f9fa;
}

.contact-desc {
  font-size: 1.1rem;
  margin-bottom: 40px;
  max-width: 400px;
  line-height: 1.8;
}

.contact-actions {
  display: flex;
  gap: 15px;
  flex-wrap: wrap;
}

.btn {
  display: inline-block;
  padding: 15px 30px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 600;
  font-size: 1rem;
  transition: all 0.3s ease;
  text-align: center;
}

.btn-faq {
  background: #e74c3c;
  color: white;
  box-shadow: 0 4px 15px rgba(231, 76, 60, 0.3);
}

.btn-faq:hover {
  background: #c0392b;
  transform: translateY(-3px);
}

.btn-message {
  background: transparent;
  color: white;
  border: 2px solid white;
}

.btn-message:hover {
  background: white;
  color: #2c3e50;
}

.form-title {
  font-size: 1.8rem;
  font-weight: 700;
  margin-bottom: 30px;
  color: #2c3e50;
}

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

.form-group label {
  display: block;
  margin-bottom: 8px;
  font-weight: 500;
  color: #2c3e50;
}

.form-control {
  width: 100%;
  padding: 16px 20px;
  border: 2px solid #e0e0e0;
  border-radius: 10px;
  font-size: 1rem;
  transition: all 0.3s ease;
  position: relative;
  z-index: 20;
}

.form-control:focus {
  border-color: #3498db;
  box-shadow: 0 0 0 3px rgba(52, 152, 219, 0.2);
  outline: none;
}

.btn-send {
  background: #3498db;
  color: white;
  border: none;
  padding: 16px 40px;
  font-weight: 600;
  font-size: 1.1rem;
  border-radius: 50px;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(52, 152, 219, 0.3);
}

.btn-send:hover {
  background: #2980b9;
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(52, 152, 219, 0.4);
}

.contact-methods {
  margin-top: 40px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.contact-method {
  display: flex;
  align-items: center;
  gap: 15px;
}

.contact-icon {
  width: 50px;
  height: 50px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
}

/* Responsive Design */
@media (max-width: 992px) {
  .contact-container {
    flex-direction: column;
  }

  .contact-info,
  .contact-form {
    padding: 30px;
  }

  .section-title {
    font-size: 2.2rem;
  }

  .section-subtitle {
    font-size: 1.3rem;
  }
}

@media (max-width: 576px) {
  .contact-actions {
    flex-direction: column;
  }

  .btn {
    width: 100%;
  }

  .section-title {
    font-size: 1.8rem;
  }

  .contact-info,
  .contact-form {
    padding: 25px 20px;
  }
}

.decoration {
  position: absolute;
  opacity: 0.05;
  font-size: 15rem;
  font-weight: 800;
  z-index: 0;
}

.decoration-1 {
  bottom: -120px;
  right: -100px;
  color: white;
}

.decoration-2 {
  top: -120px;
  left: -100px;
  color: #3498db;
}

.content {
  flex: 1;
  padding: 20px;
}

.compact-footer {
  background: linear-gradient(to right, #2d4459, #014379);
  color: #fff;
  height: 40vh;
  min-height: 350px;
  display: flex;
  flex-direction: column;
}

.footer-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 25px 0px 15px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  flex: 1;

  overflow: auto;
}

.footer-col h4 {
  font-size: 16px;
  margin-bottom: 15px;
  position: relative;
  font-weight: 600;
}

.footer-col h4::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -8px;
  width: 30px;
  height: 2px;
  background: #3498db;
}

.footer-col ul {
  list-style: none;
}

.footer-col ul li {
  margin-bottom: 8px;
}

.footer-col ul li a {
  color: #bbb;
  text-decoration: none;
  font-size: 14px;
  transition: all 0.3s ease;
}

.footer-col ul li a:hover {
  color: #3498db;
}

.company-info {
  grid-column: span 2;
}

.company-name {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 8px;
  color: #3498db;
}

.company-tagline {
  font-size: 14px;
  font-weight: 500;
  margin-bottom: 15px;
  color: #eee;
}

.contact-info {
  margin-top: 15px;
}

.contact-item {
  display: flex;
  align-items: center;
  margin-bottom: 10px;
}

.contact-icon {
  width: 28px;
  height: 28px;
  background: rgba(52, 152, 219, 0.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 10px;
  font-size: 12px;
  color: #3498db;
}

.contact-text {
  font-size: 13px;
}

.copyright {
  text-align: center;
  padding: 12px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  font-size: 12px;
  color: #aaa;
  flex-shrink: 0;
}

.social-links {
  display: flex;
  margin-top: 15px;
}

.social-links a {
  display: inline-block;
  width: 32px;
  height: 32px;
  background: rgba(255, 255, 255, 0.1);
  margin-right: 8px;
  border-radius: 50%;
  text-align: center;
  line-height: 32px;
  color: #fff;
  font-size: 14px;
  transition: all 0.3s ease;
}

.social-links a:hover {
  background: #3498db;
  transform: translateY(-3px);
}

/* Two-column layout for regional areas */
.state-list {
  columns: 2;
  column-gap: 15px;
}

.state-list li {
  break-inside: avoid;
  font-size: 13px;
}

/* Responsive Design */
@media (max-width: 992px) {
  .footer-container {
    grid-template-columns: repeat(2, 1fr);
  }

  .company-info {
    grid-column: span 2;
  }
}

@media (max-width: 768px) {
  .compact-footer {
    height: auto;
    min-height: auto;
  }

  .footer-container {
    grid-template-columns: 1fr;
    gap: 25px;
  }

  .company-info {
    grid-column: span 1;
  }

  .footer-col {
    margin-bottom: 0;
  }

  .state-list {
    columns: 1;
  }
}

/* Scrollbar styling for compact footer */
.footer-container::-webkit-scrollbar {
  width: 6px;
}

.footer-container::-webkit-scrollbar-track {
  background: rgba(255, 255, 255, 0.05);
  border-radius: 10px;
}

.footer-container::-webkit-scrollbar-thumb {
  background: rgba(52, 152, 219, 0.5);
  border-radius: 10px;
}

.footer-container::-webkit-scrollbar-thumb:hover {
  background: rgba(52, 152, 219, 0.7);
}

.cleaning-section {
  max-width: 1200px;
  margin: 40px auto;
  background: white;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
}

.section-header {
  background: linear-gradient(135deg, #01426c 0%, #0277bd 100%);
  color: white;
  padding: 40px;
  text-align: center;
}

.section-header h1 {
  font-size: 2.8rem;
  margin-bottom: 15px;
  font-weight: 700;
  letter-spacing: 1px;
}

.section-content {
  padding: 40px;
}

.intro-text {
  font-size: 1.2rem;
  margin-bottom: 30px;
  color: #555;
  line-height: 1.8;
}

.services-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 25px;
  margin-top: 30px;
}

.service-card {
  background: #f9f9f9;
  border-radius: 8px;
  padding: 25px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border-left: 4px solid #01426c;
}

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

.service-card h3 {
  color: #01426c;
  margin-bottom: 15px;
  font-size: 1.4rem;
  display: flex;
  align-items: center;
}

.service-card h3 i {
  margin-right: 12px;
  font-size: 1.6rem;
}

.service-card p {
  color: #666;
  line-height: 1.6;
}

.learn-more {
  display: inline-block;
  margin-top: 40px;
  padding: 14px 30px;
  background: #01426c;
  color: white;
  text-decoration: none;
  border-radius: 30px;
  font-weight: 600;
  transition: all 0.3s ease;
  box-shadow: 0 4px 10px rgba(1, 66, 108, 0.3);
}

.learn-more:hover {
  background: #012b47;
  transform: translateY(-3px);
  box-shadow: 0 6px 15px rgba(1, 66, 108, 0.4);
}

.benefits {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  margin: 30px 0;
  background: #e8f4fc;
  padding: 25px;
  border-radius: 8px;
}

.benefit {
  display: flex;
  align-items: center;
  flex: 1;
  min-width: 250px;
}

.benefit i {
  background: #01426c;
  color: white;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  margin-right: 15px;
  flex-shrink: 0;
}

@media (max-width: 768px) {
  .section-header h1 {
    font-size: 2.2rem;
  }

  .section-content {
    padding: 25px;
  }

  .services-container {
    grid-template-columns: 1fr;
  }
}

.guarantee {
  background: #01426c;
  color: white;
  text-align: center;
  padding: 25px;
  margin-top: 40px;
  border-radius: 8px;
}
/* About Hero Section */
.contact-hero {
  background: linear-gradient(rgba(1, 67, 121, 0.85), rgba(1, 67, 121, 0.85)),
    url("/assets/images/image\ 387.png");
  background-size: cover;
  background-position: center;
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  text-align: center;
  position: relative;
}

.contact-hero-content {
  max-width: 800px;
  padding: 0 5px;
}

.contact-hero h1 {
  font-size: 2.5rem;
  font-weight: 800;
  text-transform: uppercase;
  margin-bottom: 1.5rem;
  letter-spacing: 3px;
}

.contact-hero p {
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.6;
  max-width: 800px;
  margin: 0 auto;
}

.spinner-border-sm {
  width: 1rem;
  height: 1rem;
}

.alert {
  padding: 12px 15px;
  border-radius: 5px;
  margin-top: 15px;
}

.alert-success {
  background-color: #d4edda;
  color: #155724;
  border: 1px solid #c3e6cb;
}

.alert-danger {
  background-color: #f8d7da;
  color: #721c24;
  border: 1px solid #f5c6cb;
}

.spinner-border-sm {
  width: 1rem;
  height: 1rem;
}

.d-none {
  display: none !important;
}

.alert {
  padding: 12px 15px;
  border-radius: 5px;
  margin-top: 15px;
}

.alert-success {
  background-color: #d4edda;
  color: #155724;
  border: 1px solid #c3e6cb;
}

.alert-danger {
  background-color: #f8d7da;
  color: #721c24;
  border: 1px solid #f5c6cb;
}

/* Gallery Section Styles */
/* Gallery Section Styles */
.gallery-section {
  padding: 80px 0;
  background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

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

.gallery-header h2 {
  font-size: 2.5rem;
  color: #01426c;
  font-weight: 700;
  margin-bottom: 15px;
  text-transform: uppercase;
}

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

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 30px;
  max-width: 1200px;
  margin: 0 auto;
}

.gallery-item {
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.gallery-image {
  position: relative;
  height: 400px;
  overflow: hidden;
}

.gallery-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.gallery-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    to bottom,
    transparent 0%,
    rgba(1, 66, 108, 0.9) 100%
  );
  display: flex;
  align-items: flex-end;
  padding: 30px;
  opacity: 1; /* Changed to always visible */
}

.gallery-content {
  color: white;
  transform: translateY(0); /* Removed transform animation, always visible */
}

.gallery-content h3 {
  font-size: 1.8rem;
  font-weight: 600;
  margin-bottom: 10px;
}

.gallery-content p {
  font-size: 1rem;
  margin-bottom: 15px;
  opacity: 0.9;
}

.service-tag {
  display: inline-block;
  background: rgba(255, 255, 255, 0.2);
  padding: 5px 15px;
  border-radius: 20px;
  font-size: 0.9rem;
  font-weight: 600;
  backdrop-filter: blur(10px);
}

/* Responsive Design */
@media (max-width: 768px) {
  .gallery-section {
    padding: 60px 0;
  }

  .gallery-header h2 {
    font-size: 2rem;
  }

  .gallery-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .gallery-image {
    height: 300px;
  }
}

@media (max-width: 480px) {
  .gallery-header h2 {
    font-size: 1.8rem;
  }

  .gallery-header p {
    font-size: 1rem;
  }

  .gallery-content h3 {
    font-size: 1.5rem;
  }
}