/* style.css */

@import url('https://fonts.googleapis.com/css2?family=Raleway:wght@400;600;700&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;600;700&display=swap');

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Poppins', sans-serif;
}

body {
  background: #f4f4f4;
  color: #333;
  line-height: 1.6;
}

/* Accessibility helper class */
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border-width: 0;
}

/* --- Top Bar --- */
.top-bar {
  background-color: #000000; /* Black */
  color: #ecf0f1;
  padding: 8px 0;
  font-size: 0.9rem;
  border-bottom: 1px solid #333; /* Subtle separator line */
}

.top-bar .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 90%;
  margin: 0 auto;
  max-width: 1200px;
  padding: 0; /* Overriding general container padding */
  background: transparent;
  box-shadow: none;
}

.top-bar-left {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap; /* Allows items to wrap on smaller screens */
}

.top-bar a {
  color: #ecf0f1;
  text-decoration: none;
  transition: color 0.3s;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.top-bar a:hover {
  color: #d4af37; /* Brand gold color on hover */
}

.top-bar-social a {
    font-size: 1rem;
}

/* --- Logo Bar Styles --- */
.logo-bar {
  background-color: #000000; /* Black background */
  padding: 8px 0;
  border-bottom: 1px solid #333; /* Dark border for contrast */
}

.logo-bar .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: transparent;
  box-shadow: none;
  padding: 0;
  margin-top: 0;
  margin-bottom: 0;
}

.logo-bar-text {
  font-size: 2rem;
  font-weight: bold;
  color: #d4af37; /* Brand Gold */
}

.logo-bar-image img {
  max-height: 40px; /* Adjust the height of your logo as needed */
  width: auto;
}

.top-bar-right {
  display: flex;
  align-items: center;
  gap: 20px;
}

/* Premium Header */
.premium-header {
  background: #002244; /* Dark Blue */
  color: #c51717;
  padding: 0.75rem 0; /* Reduced padding for a shorter header */
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.premium-header .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0;
  background: transparent;
  box-shadow: none;
}

.premium-header .logo {
  font-family: 'Raleway', sans-serif; /* Using the new elegant font */
  font-size: 1.4rem; /* Reduced font size for a more compact look */
  font-weight: 600;
  color: #f0f0f0; /* A slightly softer white */
  text-decoration: none;
  letter-spacing: 0.5px; /* Adds a touch of class */
  text-transform: uppercase; /* Makes it feel more like a brand name */
  transition: color 0.3s ease;
}

.premium-header .logo:hover {
  color: #d4af37; /* Brand gold on hover */
}

.premium-header nav ul {
  list-style: none;
  display: flex;
  align-items: center;
  margin: 0;
  padding: 0;
}

.premium-header nav ul li {
  margin: 0 15px;
}

.premium-header nav ul li a {
  color: #ecf0f1;
  text-decoration: none;
  font-weight: 600;
  padding: 10px 15px;
  transition: color 0.3s, background-color 0.3s;
  border-radius: 5px;
}

.premium-header nav ul li a:hover,
.premium-header nav ul li a.active {
  background-color: #d4af37;
  color: #1a2a40;
}

/* Mobile Navigation */
.mobile-nav {
  display: none; /* Hidden on desktop */
}

#mobile-menu-btn {
  display: none; /* Hide hamburger button on desktop */
  background: none;
  border: none;
  color: #fff;
  font-size: 1.8rem;
  cursor: pointer;
  padding: 0.5rem;
}

.premium-header nav.show {
  display: flex;
  flex-direction: column;
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
  background: #000;
}

/* About Page Specifics */
.about-content {
  background: transparent;
  box-shadow: none;
  padding: 0;
}

.about-section {
  background: #fff;
  padding: 2.5rem;
  border-radius: 12px;
  margin-bottom: 2rem;
  box-shadow: 0 4px 20px rgba(0,0,0,0.08);
}

.about-section h2 {
  color: #1a2a40;
  margin-bottom: 1rem;
}

.values-section {
  display: flex;
  gap: 2rem;
  margin-bottom: 2rem;
}

.value-box {
  flex: 1;
  background: #1a2a40;
  color: #ecf0f1;
  padding: 2rem;
  border-radius: 12px;
  text-align: center;
}

.value-box h3 {
  color: #d4af37;
}

/* Services Page */
.service-category {
  margin-top: 3rem;
  border-top: 1px solid #eee;
  padding-top: 2rem;
}

.service-category h2 {
  color: #1a2a40;
  margin-bottom: 1.5rem;
}

.service-detail {
  margin-bottom: 2rem;
}

.premium-header .cta-button {
  background-color: #d4af37;
  color: #1a2a40;
  padding: 10px 20px;
  border-radius: 5px;
  font-weight: 700;
  transition: background-color 0.3s;
}

.premium-header .cta-button:hover {
  background-color: #c7a02f;
  color: #1a2a40;
}

/* --- Responsive Design --- */
@media (max-width: 992px) {
  .premium-header nav ul li a {
    padding: 10px 10px;
  }

  .features-section,
  .values-section,
  .site-footer .container {
    flex-direction: column;
  }

  .logo-bar-text {
    font-size: 1.5rem;
  }
  .logo-bar-image img {
    max-height: 35px;
  }

  .premium-hero .hero-content {
    padding: 2rem;
  }

  .about-section {
    padding: 2rem;
  }
}

@media (max-width: 768px) {
  /* Header and Navigation */
  .premium-header .container {
    width: 100%;
  }

  .top-bar .container {
    justify-content: center; /* Center items on mobile */
    padding: 0 15px;
  }

  .top-bar-right {
    display: none; /* Hide social icons on mobile to save space */
  }

  .premium-header .logo {
    font-size: 1.2rem; /* Adjusted for mobile view */
    width: auto;
    margin-bottom: 0;
  }

  .premium-header nav {
    display: none; /* Hide nav on mobile by default */
    width: 100%; 
    flex-direction: column;
    background: #000;
    position: absolute;
    top: 100%;
    left: 0;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
  }

  .premium-header nav.show {
    display: flex; /* Show mobile nav when 'show' class is active */
  }

  .premium-header nav ul {
    flex-direction: column;
    width: 100%;
    align-items: flex-start;
  }

  .premium-header nav ul li {
    margin: 0;
    width: 100%;
    text-align: left;
  }

  .premium-header nav ul li a {
    display: block;
    padding: 15px 20px;
    border-bottom: 1px solid #2a3b50;
  }
  
  .premium-header nav ul li a.cta-button {
    width: auto;
    margin: 10px 20px;
  }

  .premium-header nav ul li:last-child a {
    border-bottom: none;
  }

  #mobile-menu-btn {
    display: block; /* Show hamburger button on mobile */
  }

  .premium-header .cta-button {
    width: 100%;
    text-align: center;
    margin-top: 10px;
    padding: 12px 0;
  }

  /* Hero Section */
  .premium-hero {
    padding: 60px 0;
  }

  .premium-hero .hero-content {
    padding: 1.5rem;
  }

  .premium-hero h2 {
    font-size: 2rem;
  }

  /* General Layout */
  .container {
    width: 95%;
    padding: 20px;
    margin: 20px auto;
  }

  h2 {
    font-size: 1.8rem;
  }

  .footer-about, .footer-links, .footer-contact, .footer-social {
    min-width: 100%;
    text-align: center;
    margin-bottom: 20px;
  }

  .footer-social ul {
    justify-content: center;
  }

  .how-it-works ol {
    padding-left: 20px;
    text-align: left;
  }

  .value-box {
    padding: 1.5rem;
  }

  .values-section {
    flex-direction: column;
  }
}

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

  .premium-hero .hero-content {
    padding: 1rem;
  }

  .button-primary {
    padding: 10px 20px;
    font-size: 0.9rem;
  }

  .feature-box, .about-section, .info-box, #booking-form {
    padding: 1.5rem;
  }

  .site-footer h3 {
    font-size: 1.3rem;
  }
}


.container {
  width: 90%;
  max-width: 1200px;
  margin: 40px auto;
  padding: 30px;
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.08);
}

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

.premium-hero {
  background-image: url('HOME.jpg');
  background-size: cover;
  background-position: center;
  color: #fff;
  text-align: center;
  padding: 100px 0;
}

.premium-hero .hero-content {
  background: rgba(0, 0, 0, 0.5);
  display: inline-block;
  padding: 3rem;
  border-radius: 10px;
}

.hero h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: #1a2a40;
}

.hero p {
    font-size: 1.1rem;
    max-width: 800px;
    margin: 0 auto 2rem auto;
}

.features {
  display: flex;
  justify-content: space-around;
  text-align: center;
  margin-top: 2rem;
  gap: 1rem;
}

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

.feature h3 {
  font-size: 1.5rem;
  color: #1a2a40;
  margin-bottom: 10px;
}

.button-primary {
  display: inline-block;
  padding: 12px 25px;
  background: #d4af37;
  color: #1a2a40;
  text-decoration: none;
  border-radius: 5px;
  transition: background 0.3s, transform 0.3s;
  font-weight: 600;
  box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

.button-primary:hover {
  background: #c7a02f;
  transform: translateY(-2px);
}

/* Features Section */
.features-section {
  display: flex;
  gap: 2rem;
  background: transparent;
  box-shadow: none;
  padding: 0;
}

.feature-box {
  background: #fff;
  padding: 2rem;
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.08);
  flex: 1;
}

.feature-box ul {
  list-style: none;
}

/* Booking Form Section */
#booking-form {
    background: #fff;
    padding: 2rem;
    border-radius: 12px;
    margin-top: 2rem;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
}

#booking-form h2 {
    text-align: center;
    margin-bottom: 1.5rem;
    color: #1a2a40;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: #333;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px;
    border-radius: 8px;
    border: 1px solid #ddd;
    font-size: 1rem;
    transition: border-color 0.3s;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #d4af37;
}

/* Floating Action Buttons */
.floating-action-buttons {
  position: fixed;
  bottom: 20px;
  right: 20px;
  z-index: 1000;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.call-btn,
.whatsapp-btn {
  color: white;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  box-shadow: 0 4px 10px rgba(0,0,0,0.2);
  transition: transform 0.3s;
  font-size: 1.8rem;
  text-decoration: none;
}

.call-btn {
  background-color: #007bff; /* A standard blue for call buttons */
}

.whatsapp-btn {
  background-color: #25D366;
}

.call-btn:hover,
.whatsapp-btn:hover {
  transform: scale(1.1);
}

/* Footer */
.site-footer {
  background-color: #000;
  color: #ecf0f1;
  padding: 40px 0;
  margin-top: 40px;
}

.site-footer .container {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 20px;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  background: transparent;
  box-shadow: none;
}

.footer-about, .footer-links, .footer-contact, .footer-social {
  flex: 1;
  min-width: 250px;
}

.site-footer h3 {
  color: #d4af37;
  margin-bottom: 20px;
  font-size: 1.5rem;
}

.site-footer p {
  line-height: 1.7;
}

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

.footer-links ul li, .footer-contact p {
  margin-bottom: 10px;
}

.footer-links ul a {
  color: #ecf0f1;
  text-decoration: none;
  transition: color 0.3s;
}

.footer-links ul a:hover {
  color: #d4af37;
}

.footer-social ul {
  display: flex;
  gap: 15px;
}

.footer-social ul a {
  color: #ecf0f1;
  font-size: 1.8rem;
  transition: color 0.3s;
}

.footer-social ul a:hover {
  color: #d4af37;
}

.footer-bottom {
  text-align: center;
  margin-top: 40px;
  padding-top: 20px;
  border-top: 1px solid #34495e;
}



/* Info Section */

.info-section {
    display: block;
    margin: 2rem 0;
}



.info-box {

    background: #fdfdfd;

    padding: 2rem;

    border-radius: 12px;

    box-shadow: 0 4px 20px rgba(0,0,0,0.05);

    border-left: 5px solid #d4af37;

}



.info-box h3 {

    font-size: 1.5rem;

    color: #1a2a40;

    margin-bottom: 1rem;

}



.info-box ul {

    list-style: none;

}



.info-box ul li {

    margin-bottom: 0.8rem;

    line-height: 1.5;

}



/* How It Works Section */

.how-it-works {

    background: #000;

    color: #fff;

    padding: 2.5rem;

    border-radius: 12px;

    margin: 2rem auto;

    text-align: center;

}



.how-it-works h3 {

    font-size: 2rem;

    margin-bottom: 1.5rem;

}



.how-it-works ol {

    list-style-position: inside;

    margin-bottom: 2rem;

    font-size: 1.1rem;

}



.how-it-works ol li {

    margin-bottom: 1rem;

}



.how-it-works .button-primary {

    background: #d4af37;

    color: #1a2a40;

}

/* --- Premium Hero Section --- */
.hero-section-premium {
    position: relative;
    width: 100%;
    min-height: 90vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 60px 20px;
    background: url('household.webp') no-repeat center center/cover;
    font-family: 'Poppins', sans-serif;
}

.hero-section-premium::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(2px);
    z-index: 1;
}

.hero-container {
    position: relative;
    z-index: 2;
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    max-width: 1200px;
    gap: 40px;
}

.hero-left {
    width: 60%;
    color: #fff;
}

.hero-heading {
    font-size: 3.5rem;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 15px;
}

.hero-offer {
    background-color: #ffeb3b;
    color: #333;
    display: inline-block;
    padding: 8px 15px;
    border-radius: 50px;
    font-weight: 600;
    margin-bottom: 20px;
}

.hero-subheading {
    font-size: 1.5rem;
    font-weight: 400;
    margin-bottom: 30px;
}

.hero-cta-buttons {
    display: flex;
    gap: 15px;
}

.hero-btn {
    padding: 12px 28px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.hero-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
}

.whatsapp-btn-hero {
    background-color: #1f8f3a;
    color: #fff;
    border: 2px solid #1f8f3a;
}

.call-btn-hero {
    background-color: #333;
    color: #fff;
    border: 2px solid #333;
}

.hero-right {
    width: 40%;
}

.hero-form-container {
    background-color: #000;
    padding: 25px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.form-inner-box {
    border: 1px solid rgba(255, 255, 255, 0.5);
    border-radius: 10px;
    padding: 20px;
}

.hero-form-container .form-group label {
    color: #fff;
}

.required {
    color: #ff4d4d;
}

.form-submit-btn {
    width: 100%;
    padding: 12px;
    background-color: #000;
    color: #fff;
    border: none;
    border-radius: 5px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s ease;
    margin-top: 10px;
}

.form-submit-btn:hover {
    background-color: #333;
}

/* --- Responsive Design for Hero --- */
@media (max-width: 992px) {
    .hero-container {
        flex-direction: column;
        text-align: center;
    }

    .hero-left,
    .hero-right {
        width: 100%;
        max-width: 600px;
    }

    .hero-left {
        margin-bottom: 40px;
    }

    .hero-heading {
        font-size: 2.8rem;
    }

    .hero-subheading {
        font-size: 1.3rem;
    }
    
    .hero-cta-buttons {
        justify-content: center;
    }
}

/* --- Detailed Services Section --- */
.detailed-services-section {
    padding: 60px 0;
    background-color: #f9f9f9;
}

.detailed-services-section .container {
    background: transparent;
    box-shadow: none;
    padding: 0 20px;
}

.section-intro {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 40px auto;
}

.section-intro h2 {
    font-size: 2.5rem;
    color: #1a2a40;
    margin-bottom: 15px;
}

.section-intro p {
    font-size: 1.1rem;
    color: #666;
    line-height: 1.7;
}

.detailed-services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.service-item {
    background-color: #fff;
    padding: 25px;
    border-radius: 12px;
    border: 1px solid #e9e9e9;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.04);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
}

.service-item h3 {
    font-size: 1.3rem;
    color: #333;
    margin-bottom: 10px;
}

.service-item p {
    font-size: 0.95rem;
    color: #666;
    line-height: 1.6;
}

/* --- Why Choose Us Section --- */
.why-choose-us-section {
    padding: 60px 0;
    background-color: #fff;
}

.why-choose-us-container {
    display: flex;
    align-items: center;
    gap: 40px;
    background: transparent;
    box-shadow: none;
    padding: 0 20px;
}

.why-choose-us-content {
    flex: 1;
}

.why-choose-us-content h2 {
    font-size: 2.5rem;
    color: #1a2a40;
    margin-bottom: 20px;
}

.why-choose-us-content ul {
    list-style: none;
    padding: 0;
}

.why-choose-us-content ul li {
    font-size: 1.1rem;
    color: #333;
    margin-bottom: 15px;
    line-height: 1.6;
}

.why-choose-us-image {
    flex: 1;
}

.why-choose-us-image img {
    width: 100%;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

/* --- Responsive for New Sections --- */
@media (max-width: 992px) {
    .detailed-services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .why-choose-us-container {
        flex-direction: column-reverse;
    }
}

@media (max-width: 768px) {
    .detailed-services-grid {
        grid-template-columns: 1fr;
    }
    .section-intro h2, .why-choose-us-content h2 {
        font-size: 2rem;
    }
}

@media (max-width: 480px) {
    .hero-heading {
        font-size: 2.2rem;
    }

    .hero-subheading {
        font-size: 1.1rem;
    }

    .hero-cta-buttons {
        flex-direction: column;
        align-items: center;
    }

    .hero-btn {
        width: 80%;
        justify-content: center;
    }
}

/* --- Services Page Card Layout --- */
.service-page-content {
  padding-top: 40px;
  padding-bottom: 60px;
  background: transparent;
  box-shadow: none;
}

.page-intro {
  text-align: center;
  max-width: 800px;
  margin: 0 auto 50px;
}

.page-intro h2 {
  font-size: 2.5rem;
  margin-bottom: 15px;
  color: #1a2a40;
}

.page-intro p {
  font-size: 1.1rem;
  color: #555;
  line-height: 1.6;
}

/* Service Grid Layout */
.service-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 30px;
  margin-bottom: 60px;
}

.service-card {
  background-color: #fff;
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.07);
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
  border: 1px solid #eee;
}

.service-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12);
}

.service-card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.service-card .card-content {
  padding: 25px;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}

.service-card h3 {
  font-size: 1.5rem;
  margin-top: 0;
  margin-bottom: 15px;
  color: #2c3e50;
}

.service-card p {
  font-size: 1rem;
  line-height: 1.6;
  color: #555;
  flex-grow: 1;
  margin-bottom: 20px;
}

.service-card h4 {
  font-size: 1.1rem;
  margin-bottom: 10px;
  color: #333;
  border-top: 1px solid #eee;
  padding-top: 15px;
}

.service-card ul {
  list-style: none;
  padding: 0;
  margin: 0;
  color: #444;
}

.service-card ul li {
  margin-bottom: 8px;
  font-size: 0.95rem;
}

/* How It Works Section */
.how-it-works-steps {
  text-align: center;
  padding: 50px 20px;
  background-color: #f9f9f9;
  border-radius: 10px;
  margin-bottom: 60px;
}

.how-it-works-steps h2 {
  font-size: 2rem;
  margin-bottom: 30px;
}

.steps-container {
  display: flex;
  justify-content: space-around;
  flex-wrap: wrap;
  gap: 20px;
}

.step {
  flex-basis: 22%;
  min-width: 250px;
  font-size: 1rem;
  line-height: 1.5;
  color: #333;
}

.step strong {
  display: block;
  font-size: 1.2rem;
  color: #d4af37; /* Using your brand's gold color */
  margin-bottom: 5px;
}

/* Our Promise Section */
.our-promise {
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
}

.our-promise h2 {
  font-size: 2rem;
  margin-bottom: 20px;
}

.our-promise ul {
  list-style: none;
  padding: 0;
  display: inline-block;
  text-align: left;
}

.our-promise ul li {
  font-size: 1.1rem;
  margin-bottom: 15px;
  color: #444;
  line-height: 1.6;
}

/* --- About Page Specific Enhancements --- */
.about-page-container {
  padding-top: 20px;
  padding-bottom: 20px;
}

.about-page-container .about-section h2 {
  font-size: 2.2rem;
}

.about-page-container .values-section {
  margin-top: 2rem;
  margin-bottom: 0; /* Reset margin as it's handled by the section below */
}

.about-page-container .value-box p {
  line-height: 1.7;
}

.about-page-why-choose {
  padding: 40px 0;
  background-color: transparent;
}

.about-page-why-choose .why-choose-us-container {
  padding: 0;
}

.about-page-why-choose ul li {
  font-size: 1rem;
}

.about-page-info-box {
  margin-top: 2rem;
}

.about-page-info-box ul {
  padding-left: 20px;
}

/* --- Testimonials Section --- */
.testimonials-section {
  padding: 40px 0;
  background-color: #f9f9f9; /* A light background to separate the section */
}

.testimonials-section .container {
  background: transparent;
  box-shadow: none;
  padding: 0 20px;
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 30px;
  margin-top: 20px;
}

.testimonial-card {
  background-color: #fff;
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.07);
  padding: 25px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  border-top: 4px solid #d4af37; /* Brand color accent */
}

.testimonial-card img {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  object-fit: cover;
  margin-bottom: 20px;
  border: 3px solid #fff;
  box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.review-text {
  font-style: italic;
  color: #555;
  margin-bottom: 15px;
  line-height: 1.7;
}

.customer-name {
  font-weight: 700;
  color: #1a2a40;
}

/* --- Contact Page Specific Styles --- */
.contact-page-container {
  background: transparent;
  box-shadow: none;
  padding-top: 20px;
  padding-bottom: 40px;
}

.contact-intro {
  text-align: center;
  max-width: 800px;
  margin: 0 auto 50px;
}

.contact-intro h2 {
  font-size: 2.5rem;
  margin-bottom: 15px;
  color: #1a2a40;
}

.contact-intro p {
  font-size: 1.1rem;
  color: #555;
  line-height: 1.6;
}

.contact-methods-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 25px;
  margin-bottom: 50px;
}

.contact-method-card {
  background-color: #fff;
  padding: 30px;
  border-radius: 12px;
  text-align: center;
  box-shadow: 0 4px 20px rgba(0,0,0,0.06);
  border: 1px solid #eee;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.contact-method-card i {
  font-size: 2.5rem;
  color: #d4af37;
  margin-bottom: 15px;
}

.contact-method-card h3 {
  font-size: 1.4rem;
  margin-bottom: 10px;
  color: #1a2a40;
}

.contact-method-card p, .contact-method-card a {
  color: #555;
  line-height: 1.6;
  text-decoration: none;
}

.contact-method-card a:hover {
  color: #d4af37;
}

.contact-form-section {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 40px;
  align-items: center;
  background-color: #f9f9f9;
  padding: 40px;
  border-radius: 12px;
}

.form-description h3 {
  font-size: 2rem;
  color: #1a2a40;
  margin-bottom: 15px;
}

.form-description p {
  margin-bottom: 20px;
}

.form-description ul {
  list-style: none;
  padding: 0;
}

.form-description ul li {
  margin-bottom: 10px;
  font-weight: 500;
}

.form-wrapper {
  background-color: #fff;
  padding: 30px;
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.08);
}

@media (max-width: 992px) {
  .contact-form-section {
    grid-template-columns: 1fr;
  }
  .form-wrapper {
    padding: 20px;
  }
}

@media (max-width: 768px) {
  .contact-form-section {
    padding: 20px;
  }
}

/* --- Map Section on Contact Page --- */
.map-section {
  padding: 40px 0;
  background-color: #f9f9f9;
}

.map-section .container {
  background: transparent;
  box-shadow: none;
  padding: 0 20px;
}

.map-section h2 {
  text-align: center;
  margin-bottom: 2rem;
  font-size: 2.5rem;
  color: #1a2a40;
}

.map-container {
  position: relative;
  overflow: hidden;
  padding-bottom: 56.25%; /* 16:9 Aspect Ratio */
  height: 0;
}

.map-container iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 0;
}
