/* Mariteam Nigeria Limited - Main Stylesheet */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-yellow: #E8C547;
    --dark-yellow: #D4B13F;
    --light-yellow: #FFF9E6;
    --dark-bg: #1a1a1a;
    --text-dark: #333;
    --text-light: #666;
    --white: #ffffff;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
}

img {
    max-width: 100%;
    height: auto;
    display: block;
  }
  html, body {
  width: 100%;
  overflow-x: hidden;
}

/* Header Styles */
header {
    background-color: var(--dark-bg);
    padding: 1rem 0;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
}

.header-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 2rem;
}

.logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--white);
    text-decoration: none;
}

.logo-icon {
    width: 30px;
    height: 30px;
    background-color: var(--primary-yellow);
    border-radius: 3px;
}

.logo-text {
    font-size: 0.9rem;
    font-weight: 600;
}

nav ul {
    display: flex;
    list-style: none;
    gap: 2rem;
    align-items: center;
}

nav a {
    color: var(--white);
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.3s;
}

nav a:hover {
    color: var(--primary-yellow);
}

.cta-button {
    background-color: var(--primary-yellow);
    color: var(--dark-bg);
    padding: 0.6rem 1.5rem;
    border-radius: 5px;
    font-weight: 600;
    transition: background-color 0.3s;
}

.cta-button:hover {
    background-color: var(--dark-yellow);
    color: var(--dark-yellow);
}

/* Hero Section */
.hero {
    height: 100vh;
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: var(--white);
    position: relative;
    margin-top: 60px;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.4);
}

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

.hero h1 {
    font-size: 3.5rem;
    margin-bottom: 1rem;
    font-weight: 700;
}

.hero p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
}

.btn-primary {
    background-color: var(--primary-yellow);
    color: var(--dark-bg);
    padding: 1rem 2rem;
    border: none;
    border-radius: 5px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    text-decoration: none;
    display: inline-block;
    transition: background-color 0.3s;
}

.btn-primary:hover {
    background-color: var(--dark-yellow);
}

.btn-secondary {
    background-color: transparent;
    color: var(--white);
    padding: 1rem 2rem;
    border: 2px solid var(--white);
    border-radius: 5px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    text-decoration: none;
    display: inline-block;
    transition: all 0.3s;
}

.btn-secondary:hover {
    background-color: var(--white);
    color: var(--yellow-bg);
}
.stats-container {
    display: flex;
    justify-content: start;
    align-items: center;
    gap: 60px;
    margin: 30px 0;
    font-family: "Poppins", sans-serif;
  }
  
  .stat-box {
    text-align: left;
  }
  
  .stat-box h2 {
    font-size: 28px;
    color: #333;
    margin: 0;
    font-weight: 600;
  }
  
  .stat-box p {
    font-size: 14px;
    color: #777;
    margin: 5px 0 0;
  }
  
  @media (max-width: 768px) {
    .stats-container {
      flex-direction: column;
      align-items: flex-start;
      gap: 20px;
    }
  }
  /* Service Cards Grid */
.service-cards-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 3rem;
}

.service-card {
    background: var(--white);
    padding: 2rem;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0,0,0,0.08);
    transition: transform 0.3s, box-shadow 0.3s;
}

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

.service-card-icon {
    width: 80px;
    height: 80px;
    background-color: var(--primary-yellow);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
}

.service-card-icon i {
    font-size: 2rem;
    color: var(--dark-bg);
}

.service-card h3 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: var(--dark-bg);
}

.service-card p {
    color: var(--text-light);
    line-height: 1.6;
}

/* Responsive for smaller screens */
@media (max-width: 1024px) {
    .service-cards-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .service-cards-grid {
        grid-template-columns: 1fr;
    }
}
/* Crew Management Section */
#crew {
    background-color: var(--light-yellow);
    text-align: center;
    padding: 80px 20px;
  }
  
  #crew .container {
    max-width: 900px;
    margin: 0 auto;
  }
  
  #crew .service-header h2 {
    font-size: 2.2rem;
    color: var(--primary-yellow);
    margin-bottom: 20px;
  }
  
  #crew .service-header p {
    color: #333;
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 15px;
  }
  
  /* Center the image */
  #crew .service-image-container {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 40px;
  }
  
  #crew .service-main-image {
    width: 100%;
    max-width: 800px;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
  }
  
/* Section Styles */
.section {
    padding: 5rem 2rem;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
}

.section-title {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    text-align: center;
}

.section-subtitle {
    text-align: center;
    color: var(--text-light);
    margin-bottom: 3rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}
/* ======================================== */
/* Marine Recruitment + Details (White BG) */
/* ======================================== */
#recruitment, 
#recruitment-details {
  background-color: #ffffff; /* White background */
  padding: 80px 20px;
}

.two-column-layout {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 40px;
  flex-wrap: wrap;
  text-align: left;
}

.two-column-layout.reverse {
  flex-direction: row-reverse;
}

.content-column {
  flex: 1 1 400px;
  max-width: 600px;
}

.image-column {
  flex: 1 1 400px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.section-image {
  width: 100%;
  max-width: 500px;
  height: auto;
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
}

/* ============================= */
/* Headings & Text */
/* ============================= */
#recruitment h2,
#recruitment-details h2 {
  font-size: 2.2rem;
  color: var(--primary-yellow);
  margin-bottom: 20px;
  text-align: center;
}

#recruitment p,
#recruitment-details p {
  color: #333;
  font-size: 1rem;
  line-height: 1.6;
  margin-bottom: 15px;
  text-align: center;
}

.service-list {
  list-style: none;
  padding: 0;
  text-align: left;
}

.service-list li {
  position: relative;
  padding-left: 25px;
  margin-bottom: 10px;
  font-size: 1rem;
  color: #444;
}

.service-list li::before {
  content: "•";
  color: var(--primary-yellow);
  font-weight: bold;
  position: absolute;
  left: 0;
}

/* ============================= */
/* Banner Section (unchanged) */
/* ============================= */
.banner-section {
  position: relative;
  background: url('images/Image30.jpg') center/cover no-repeat;
  height: 350px;
  display: flex;
  justify-content: center;
  align-items: center;
  color: white;
  text-align: center;
  overflow: hidden;
}

.banner-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.5);
}

.banner-content {
  position: relative;
  z-index: 2;
  max-width: 900px;
  padding: 0 20px;
}

.banner-content h2 {
  font-size: 1.8rem;
  font-weight: 600;
  line-height: 1.4;
}
/* ===================================== */
/* Navigation Services Section (White BG) */
/* ===================================== */
#navigation {
    background-color: #ffffff; /* White background */
    padding: 80px 20px;
    text-align: center;
  }
  
  #navigation .container {
    max-width: 1200px;
    margin: 0 auto;
  }
  
  #navigation .section-title-center {
    font-size: 2.2rem;
    color: var(--primary-yellow);
    margin-bottom: 20px;
  }
  
  #navigation .section-intro {
    color: #333;
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 40px;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
  }
  
  /* Two-column list layout */
  #navigation .two-column-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    text-align: left;
    justify-items: center;
  }
  
  #navigation .service-list {
    list-style: none;
    padding: 0;
    width: 100%;
    max-width: 500px;
  }
  
  #navigation .service-list li {
    position: relative;
    padding-left: 25px;
    margin-bottom: 10px;
    font-size: 1rem;
    color: #444;
    line-height: 1.5;
  }
  
  #navigation .service-list li::before {
    content: "•";
    color: var(--primary-yellow);
    font-weight: bold;
    position: absolute;
    left: 0;
  }
  
  /* ===================================== */
  /* Other Services (Grid Section) */
  /* ===================================== */
  #other-services {
    background-color: #ffffff; /* White background */
    padding: 80px 20px;
  }
  
  #other-services .container {
    max-width: 1200px;
    margin: 0 auto;
  }
  
  .services-grid-3 {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 40px;
  }
  
  /* Each service box */
  .service-box {
    background: #ffffff;
    border: 1px solid #eaeaea;
    border-radius: 12px;
    padding: 30px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
  }
  
  .service-box:hover {
    transform: translateY(-6px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
  }
  
  /* Highlighted middle box (Brokerage) */
  .service-box.highlight {
    background-color: var(--light-yellow);
    border-color: var(--primary-yellow);
  }
  
  .service-box h3 {
    font-size: 1.5rem;
    color: var(--primary-yellow);
    margin-bottom: 15px;
    text-align: center;
  }
  
  .service-box p {
    color: #333;
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 20px;
    text-align: center;
  }
  
  /* Compact list styling */
  .compact-list {
    list-style: none;
    padding: 0;
    margin: 0;
    text-align: left;
  }
  
  .compact-list li {
    position: relative;
    padding-left: 22px;
    margin-bottom: 8px;
    font-size: 0.95rem;
    color: #444;
  }
  
  .compact-list li::before {
    content: "•";
    color: var(--primary-yellow);
    font-weight: bold;
    position: absolute;
    left: 0;
  }
  /* ===================================== */
/* Testimonials Section */
/* ===================================== */
.testimonials-section {
    background-color: #ffffff; /* White background for consistency */
    padding: 100px 20px;
    text-align: center;
  }
  
  .testimonials-section .container {
    max-width: 1100px;
    margin: 0 auto;
  }
  
  .testimonials-header {
    margin-bottom: 50px;
  }
  
  .testimonial-icon {
    font-size: 2.5rem;
    color: var(--primary-black);
    margin-bottom: 10px;
  }
  
  .testimonials-header h2 {
    font-size: 2.2rem;
    color: var(--primary-black);
    font-weight: 600;
  }
  
  /* Testimonials Grid */
  .testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 40px;
  }
  
  .testimonial-card {
    background: #fff;
    border-radius: 12px;
    padding: 40px 30px;
    box-shadow: 0 4px 25px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
  }
  
  .testimonial-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
  }
  
  .testimonial-card p {
    font-size: 1rem;
    color: #333;
    line-height: 1.6;
    margin-bottom: 20px;
  }
  
  .testimonial-rating i {
    color: var(--primary-yellow);
    margin: 0 2px;
  }
  
  .testimonial-author {
    font-style: italic;
    font-weight: 500;
    color: #555;
  }
  
  /* ===================================== */
  /* CTA Section */
  /* ===================================== */
  .cta-section {
    background-color: var(--primary-yellow);
    color: #1a1a1a;
    text-align: center;
    padding: 100px 20px;
    position: relative;
  }
  
  .cta-section .container {
    max-width: 900px;
    margin: 0 auto;
  }
  
  .cta-section h2 {
    font-size: 2.2rem;
    font-weight: 700;
    margin-bottom: 15px;
  }
  
  .cta-section p {
    font-size: 1.1rem;
    margin-bottom: 30px;
  }
  
  .btn-primary {
    display: inline-block;
    background: #1a1a1a;
    color: #fff;
    padding: 14px 32px;
    border-radius: 8px;
    font-weight: 600;
    text-decoration: none;
    transition: background 0.3s ease, transform 0.3s ease;
  }
  
  .btn-primary:hover {
    background: #333;
    transform: translateY(-2px);
  }
  
/* About Section */
.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

.about-text h2 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
}

.about-text p {
    color: var(--text-light);
    margin-bottom: 1.5rem;
    line-height: 1.8;
}

.about-image {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: 10px;
}
.team-section {
    background-color: #fff;
    padding: 60px 20px;
  }
  
  .section-title {
    text-align: center;
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 2rem;
    color: #000;
  }
  
  .team-grid {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2rem;
  }
  
  .team-row {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 2rem;
  }
  
  .team-member {
    text-align: center;
  }
  
  .team-photo {
    width: 220px;
    height: 220px;
    object-fit: cover;
    border-radius: 6px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.15);
  }
  
  .team-info {
    background-color: #fff8dc; /* soft yellow like in image */
    padding: 10px 0;
    margin-top: 5px;
    border-radius: 4px;
  }
  
  .featured img {
    width: 250px;
    height: 250px;
  }
  
  @media (max-width: 768px) {
    .team-photo {
      width: 180px;
      height: 180px;
    }
  }
 
  .licenses-gallery {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
  }

  .license-item {
    background-color: transparent;
    text-align: left;
  }

  .license-image {
    width: 100%;
    border-radius: 8px;
    margin-bottom: 1rem;
  }

  .license-content h3 {
    font-size: 1.1rem;
    color: #fff;
    margin-bottom: 0.5rem;
    font-weight: 700;
  }

  .license-content p {
    color: #f1f1f1;
    font-size: 0.95rem;
    line-height: 1.5;
  }

  .section-title {
    color: #030202;
    font-size: 1.8rem;
    text-align: center;
    font-weight: 700;
  }

  .section {
    padding: 60px 0;
  }

/* Services Section */
.services-section {
    background-color: var(--light-yellow);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 3rem;
}

.service-card {
    background-color: #f1cb0c;
    padding: 3rem 2rem;
    border-radius: 15px;
    text-align: center;
    color: #fff;
    font-family: "Poppins", sans-serif;
    transition: transform 0.3s ease;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}

.service-card:hover {
    transform: translateY(-5px);
}

.service-icon i {
    font-size: 36px;
    color: #fff;
}

.service-card h3 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
}

.service-card p {
    color: var(--text-dark);
    line-height: 1.6;
}

/* Service Detail Sections */
.service-detail {
    padding: 4rem 2rem;
}

.service-detail:nth-child(even) {
    background-color: #f9f9f9;
}

.service-detail-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

.service-detail-content.reverse {
    direction: rtl;
}

.service-detail-content.reverse > * {
    direction: ltr;
}

.service-icon {
    background-color: rgba(255, 255, 255, 0.2);
    width: 80px;
    height: 80px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 40px;
    margin: 0 auto 20px;
    color: #fff;
}

.service-detail p {
    color: var(--text-light);
    margin-bottom: 1rem;
    line-height: 1.8;
}

.service-detail ul {
    list-style: none;
    margin-top: 1.5rem;
}

.service-detail li {
    padding: 0.5rem 0;
    padding-left: 1.5rem;
    position: relative;
    color: var(--text-light);
}

.service-detail li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--primary-yellow);
    font-weight: bold;
}

.service-detail-image {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: 10px;
}

.service-highlight {
    background-color: var(--light-yellow);
    padding: 2rem;
    border-radius: 10px;
    margin-top: 2rem;
}

.service-highlight h3 {
    margin-bottom: 1rem;
}

/* Stats Section */
.stats-section {
    background-color: var(--primary-yellow);
    padding: 3rem 2rem;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    text-align: center;
}

.stat-item h3 {
    font-size: 3rem;
    margin-bottom: 0.5rem;
}

.stat-item p {
    font-size: 1rem;
    color: var(--text-dark);
}

/* Certifications Section */
.certifications-section {
    padding: 4rem 2rem;
    text-align: center;
}

.certifications-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 3rem;
    margin-top: 3rem;
}

.certification-item {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.certification-logo {
    width: 120px;
    height: 120px;
    object-fit: contain;
    margin-bottom: 1rem;
}

/* Testimonials Section */
.testimonials-section {
    background-color: var(--primary-yellow);
    padding: 4rem 2rem;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    margin-top: 3rem;
}

.testimonial-card {
    background-color: rgba(255, 255, 255, 0.3);
    padding: 2rem;
    border-radius: 10px;
}

.testimonial-rating {
    color: var(--dark-yellow);
    font-size: 1.2rem;
    margin-bottom: 1rem;
}

.testimonial-text {
    color: var(--text-dark);
    margin-bottom: 1rem;
    line-height: 1.8;
}

.testimonial-author {
    font-weight: 600;
    color: var(--text-dark);
}

/* Contact Section */
.contact-section {
    padding: 5rem 2rem;
}

.contact-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
}

.contact-info {
    background-color: var(--primary-yellow);
    padding: 3rem;
    border-radius: 10px;
}

.contact-info h2 {
    font-size: 2rem;
    margin-bottom: 2rem;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 2rem;
}

.contact-icon {
    width: 40px;
    height: 40px;
    background-color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.contact-details h3 {
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
}

.contact-details p {
    color: var(--text-dark);
}

.social-links {
    display: flex;
    gap: 1rem;
    margin-top: 2rem;
}

.social-icon {
    width: 40px;
    height: 40px;
    background-color: var(--dark-bg);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: background-color 0.3s;
}

.social-icon:hover {
    background-color: var(--text-dark);
}

/* Contact Form */
.contact-form {
    background-color: var(--light-yellow);
    padding: 3rem;
    border-radius: 10px;
}

.contact-form h2 {
    font-size: 2rem;
    margin-bottom: 2rem;
}

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

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.8rem;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-size: 1rem;
    font-family: inherit;
    background-color: var(--white);
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-yellow);
}

.submit-btn {
    background-color: var(--primary-yellow);
    color: var(--dark-bg);
    padding: 1rem 3rem;
    border: none;
    border-radius: 5px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s;
    width: 100%;
}

.submit-btn:hover {
    background-color: var(--dark-yellow);
}

/* Map Section */
.map-section {
    padding: 3rem 2rem;
}

.maps-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    margin-top: 2rem;
}

.map-container {
    width: 100%;
    height: 400px;
    background-color: #e0e0e0;
    border-radius: 10px;
    overflow: hidden;
}

.map-placeholder {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Footer */
footer {
    background-color: var(--dark-bg);
    color: var(--white);
    padding: 3rem 2rem 1rem;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 3rem;
    margin-bottom: 2rem;
}

.footer-section h3 {
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

.footer-section p,
.footer-section a {
    color: #aaa;
    text-decoration: none;
    display: block;
    margin-bottom: 0.5rem;
    font-size: 0.9rem;
}

.footer-section a:hover {
    color: var(--primary-yellow);
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 1rem;
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid hsl(0, 25%, 97%);
    color: #aaa;
    font-size: 0.9rem;
}

.footer-social {
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
}

/* Responsive Design */
@media (max-width: 968px) {
    .header-container {
        flex-direction: column;
        gap: 1rem;
    }

    nav ul {
        flex-wrap: wrap;
        justify-content: center;
    }

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

    .about-content,
    .service-detail-content,
    .contact-container {
        grid-template-columns: 1fr;
    }

    .services-grid,
    .stats-grid,
    .certifications-grid,
    .testimonials-grid,
    .maps-grid {
        grid-template-columns: 1fr;
    }

    .footer-content {
        grid-template-columns: repeat(2, 1fr);
    }

    .form-row {
        grid-template-columns: 1fr;
    }
}

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

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

    .hero-buttons {
        flex-direction: column;
    }

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

    .footer-content {
        grid-template-columns: 1fr;
    }
}