/* Sinergia Subestaciones - Complete Styles */
:root {
  --brand-navy: #2a3e5c;
  --brand-yellow: #fecb00;
  --brand-gray: #4d4d4d;
  --light-gray: #f8f9fa;
  --white: #ffffff;
  --text-dark: #2c3e50;
  --border-color: #e9ecef;
  --shadow: 0 2px 10px rgba(0,0,0,0.1);
  --radius: 8px;
  --max-width: 1200px;
}

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

body {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  font-size: 16px;
  line-height: 1.6;
  color: var(--brand-gray);
  background: var(--white);
}

.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 20px;
}

/* Header Styles */
#header {
  background: var(--white);
  border-bottom: 1px solid var(--border-color);
  position: sticky;
  top: 0;
  z-index: 1000;
  transition: all 0.3s ease;
}

.nav-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 15px 20px;
  max-width: var(--max-width);
  margin: 0 auto;
}

.logo img {
  height: auto;
  max-height: 60px;
}

.nav-menu {
  display: flex;
  list-style: none;
  align-items: center;
  gap: 30px;
}

.nav-menu a {
  text-decoration: none;
  color: var(--brand-gray);
  font-weight: 500;
  transition: color 0.3s ease;
  padding: 10px 0;
}

.nav-menu a:hover,
.nav-menu a.active {
  color: var(--brand-navy);
}

.dropdown {
  position: relative;
}

.dropdown-menu {
  position: absolute;
  top: 100%;
  left: 0;
  background: var(--white);
  border: 1px solid var(--border-color);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  min-width: 280px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-10px);
  transition: all 0.3s ease;
  z-index: 1000;
}

.dropdown:hover .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.dropdown-menu li {
  border-bottom: 1px solid var(--border-color);
}

.dropdown-menu li:last-child {
  border-bottom: none;
}

.dropdown-menu a {
  display: block;
  padding: 12px 20px;
  white-space: nowrap;
}

.mobile-menu-toggle {
  display: none;
  flex-direction: column;
  background: none;
  border: none;
  cursor: pointer;
  padding: 5px;
}

.mobile-menu-toggle span {
  width: 25px;
  height: 3px;
  background: var(--brand-gray);
  margin: 3px 0;
  transition: 0.3s;
}

/* Hero Section */
.hero {
  position: relative;
  color: white;
  text-align: left;
  overflow: hidden;
}

.hero-video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}

.hero-overlay {
  position: relative;
  background: rgba(42, 62, 92, 0.75);
  padding: 4rem 0;
  z-index: 1;
}

.hero-content {
  max-width: 700px;
  margin: auto;
}

.hero h1 {
  font-size: 2.4rem;
  font-weight: 700;
  margin-bottom: 1rem;
  color: #fecb00;
}

.hero p {
  font-size: 1.1rem;
  line-height: 1.6;
  margin-bottom: 2rem;
  color: #ffffff;
}

.hero-buttons {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.btn-primary {
  background: #fecb00;
  color: #2a3e5c;
  padding: 0.9rem 1.6rem;
  font-weight: 600;
  text-decoration: none;
  border-radius: 8px;
}

.btn-primary:hover {
  background: #2a3e5c;
  color: #fff;
}

.btn-secondary {
  border: 2px solid #4d4d4d;
  color: #fff;
  padding: 0.9rem 1.6rem;
  border-radius: 8px;
  text-decoration: none;
}

.btn-secondary:hover {
  border-color: #fecb00;
  color: #fecb00;
}

.hero-badges {
  margin-top: 2rem;
  font-size: 0.9rem;
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  color: #dcdcdc;
}

.hero-subtitle {
  font-size: 1.2rem;
  margin-bottom: 40px;
  opacity: 0.9;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.page-hero {
  position: relative;
  background: linear-gradient(135deg, rgba(42, 62, 92, 0.92) 0%, rgba(42, 62, 92, 0.85) 100%), url('/pics/nosotros.webp') center center/cover no-repeat;
  padding: 100px 0 80px;
  min-height: 400px;
  display: flex;
  align-items: center;
}

.page-hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(to bottom, rgba(42, 62, 92, 0.3) 0%, rgba(42, 62, 92, 0.7) 100%);
  z-index: 1;
}

.page-hero .container {
  position: relative;
  z-index: 2;
}

.page-hero h1 {
  font-size: clamp(2.2rem, 5vw, 3.5rem);
  color: var(--white);
  margin-bottom: 15px;
  font-weight: 700;
  text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.3);
}

.page-hero .hero-subtitle {
  font-size: clamp(1rem, 2vw, 1.3rem);
  color: rgba(255, 255, 255, 0.95);
  max-width: 700px;
  line-height: 1.6;
  text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.3);
}

/* Breadcrumb */
.breadcrumb {
  font-size: 14px;
  margin-bottom: 20px;
  color: var(--brand-gray);
}

.breadcrumb a {
  color: var(--brand-navy);
  text-decoration: none;
}

.breadcrumb a:hover {
  text-decoration: underline;
}

/* Buttons */
.btn {
  display: inline-block;
  padding: 15px 30px;
  border-radius: var(--radius);
  text-decoration: none;
  font-weight: 600;
  text-align: center;
  transition: all 0.3s ease;
  border: 2px solid transparent;
  cursor: pointer;
}

.btn-whatsapp {
  background: #25D366;
  color: var(--white);
}

.btn-whatsapp:hover {
  background: #1eb557;
}

.cta-group {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 30px;
}

/* Grid Layouts */
.trust-indicators {
  padding: 10px 0;
  background: var(--light-gray);
}

.indicators-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 40px;
  margin-top: 50px;
}

.indicator {
  text-align: center;
  padding: 30px 20px;
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.indicator-icon {
  font-size: 2.5rem;
  color: var(--brand-yellow);
  margin-bottom: 20px;
}

.indicator h3 {
  font-size: 1.25rem;
  color: var(--brand-navy);
  margin-bottom: 10px;
}

/* Services Section */
.services-section {
  padding: 80px 0;
}

.services-section h2 {
  text-align: center;
  font-size: 2.5rem;
  color: var(--brand-navy);
  margin-bottom: 20px;
}

.section-intro {
  text-align: center;
  font-size: 1.1rem;
  margin-bottom: 50px;
  color: var(--brand-gray);
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

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

.service-card {
  background: var(--white);
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0,0,0,0.08);
  transition: all 0.4s ease;
  display: flex;
  flex-direction: column;
}

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

.service-card-image {
  width: 100%;
  height: 240px;
  overflow: hidden;
  position: relative;
}

.service-card-image::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(to bottom, transparent 0%, rgba(42, 62, 92, 0.3) 100%);
  transition: opacity 0.4s ease;
}

.service-card:hover .service-card-image::after {
  opacity: 0.7;
}

.service-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.service-card:hover .service-card-image img {
  transform: scale(1.08);
}

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

.service-card h3 {
  color: var(--brand-navy);
  font-size: 1.4rem;
  margin-bottom: 15px;
  font-weight: 700;
}

.service-card ul {
  list-style: none;
  margin-bottom: 20px;
  flex: 1;
}

.service-card li {
  padding: 8px 0;
  position: relative;
  padding-left: 25px;
  font-size: 0.95rem;
  line-height: 1.5;
  color: var(--brand-gray);
}

.service-card li:before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--brand-yellow);
  font-weight: bold;
  font-size: 1.1rem;
}

.btn-link {
  color: var(--brand-navy);
  text-decoration: none;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  transition: color 0.3s ease;
}

.btn-link:hover {
  color: #1a2b3d;
}

/* Projects */
.projects-preview {
  padding: 80px 0;
  background: var(--light-gray);
}

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

.project-mini {
  background: var(--white);
  padding: 25px;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.project-mini h3 {
  color: var(--brand-navy);
  margin-bottom: 10px;
}

/* Project Cards - Detailed */
.project-card {
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  overflow: hidden;
  margin-bottom: 40px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.project-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
}

.project-card.featured {
  border-top: 4px solid var(--brand-yellow);
}

.project-header {
  background: linear-gradient(135deg, var(--brand-navy) 0%, #1e2d42 100%);
  padding: 30px;
  color: var(--white);
}

.project-header h2 {
  font-size: clamp(1.5rem, 3vw, 2rem);
  margin-bottom: 15px;
  color: var(--white);
}

.project-meta {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  font-size: 14px;
  opacity: 0.9;
}

.project-location,
.project-type {
  display: inline-flex;
  align-items: center;
  padding: 5px 12px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 20px;
  font-weight: 500;
}

.project-content {
  padding: 30px;
}

.project-challenge,
.project-solution,
.project-results {
  margin-bottom: 30px;
}

.project-challenge h3,
.project-solution h3,
.project-results h3 {
  color: var(--brand-navy);
  font-size: 1.3rem;
  margin-bottom: 15px;
  border-left: 4px solid var(--brand-yellow);
  padding-left: 15px;
}

.project-content ul {
  list-style: none;
  padding-left: 0;
}

.project-content ul li {
  padding: 10px 0 10px 25px;
  position: relative;
  line-height: 1.6;
}

.project-content ul li::before {
  content: '→';
  position: absolute;
  left: 0;
  color: var(--brand-yellow);
  font-weight: bold;
}

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

.result-item {
  text-align: center;
  padding: 20px;
  background: var(--light-gray);
  border-radius: var(--radius);
}

.result-number {
  display: block;
  font-size: 2.5rem;
  font-weight: bold;
  color: var(--brand-navy);
  margin-bottom: 10px;
}

.result-desc {
  display: block;
  font-size: 0.9rem;
  color: var(--brand-gray);
}

.project-services {
  margin-top: 25px;
  padding-top: 25px;
  border-top: 1px solid var(--border-color);
}

.project-services h4 {
  color: var(--brand-navy);
  margin-bottom: 15px;
  font-size: 1.1rem;
}

.service-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.service-tags span {
  padding: 8px 16px;
  background: var(--brand-navy);
  color: var(--white);
  border-radius: 20px;
  font-size: 0.9rem;
  font-weight: 500;
}

/* Gallery Section */
.gallery-section {
  padding: 80px 0;
  background: var(--light-gray);
}

.gallery-section h2 {
  text-align: center;
  font-size: clamp(2rem, 4vw, 2.5rem);
  color: var(--brand-navy);
  margin-bottom: 10px;
}

.section-subtitle {
  text-align: center;
  color: var(--brand-gray);
  max-width: 600px;
  margin: 0 auto 50px;
  font-size: 1.1rem;
}

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

.gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  aspect-ratio: 4/3;
  cursor: pointer;
  transition: transform 0.3s ease;
}

.gallery-item:hover {
  transform: scale(1.05);
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.3s ease;
}

.gallery-item:hover img {
  transform: scale(1.1);
}

/* Testimonials Section */
.testimonials-section {
  padding: 60px 0;
}

.testimonials-section h2 {
  text-align: center;
  font-size: clamp(2rem, 4vw, 2.5rem);
  color: var(--brand-navy);
  margin-bottom: 40px;
}

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

.testimonial {
  background: var(--white);
  padding: 30px;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  border-left: 4px solid var(--brand-yellow);
}

.testimonial p {
  font-style: italic;
  margin-bottom: 20px;
  line-height: 1.8;
  color: var(--brand-gray);
}

.testimonial cite {
  display: block;
  text-align: right;
  font-weight: 600;
  color: var(--brand-navy);
  font-style: normal;
}

.text-center {
  text-align: center;
  margin-top: 40px;
}

/* Forms */
.contact-form-section {
  padding: 80px 0;
}

.form-wrapper {
  max-width: 700px;
  margin: 0 auto;
}

.contact-form {
  background: var(--white);
  padding: 40px;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-bottom: 20px;
}

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

.form-group label {
  display: block;
  margin-bottom: 8px;
  font-weight: 600;
  color: var(--brand-navy);
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 12px;
  border: 2px solid var(--border-color);
  border-radius: var(--radius);
  font-size: 16px;
  transition: border-color 0.3s ease;
}

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

/* Contact Page Specific */
.contact-grid {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 50px;
  margin-top: 40px;
}

.contact-info-wrapper {
  display: grid;
  grid-template-columns: 1fr;
  gap: 25px;
  margin-top: 30px;
}

.contact-card,
.hours-card,
.coverage-map-card,
.response-card {
  background: var(--white);
  padding: 25px;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  margin-bottom: 20px;
}

.contact-item {
  margin-bottom: 15px;
}

.contact-item strong {
  color: var(--brand-navy);
  display: block;
  margin-bottom: 5px;
}

.whatsapp-cta {
  background: #f8f9fa;
  padding: 30px;
  border-radius: var(--radius);
  text-align: center;
  margin-top: 30px;
}

/* WhatsApp Float Button */
.whatsapp-float {
  position: fixed;
  bottom: 20px;
  right: 20px;
  background: #25D366;
  color: var(--white);
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 2px 15px rgba(0,0,0,0.2);
  z-index: 1000;
  transition: all 0.3s ease;
}

.whatsapp-float:hover {
  background: #1eb557;
  transform: scale(1.1);
}

/* Clients Section */
.clients-section {
  padding: 60px 0;
  background: var(--brand-navy);
  color: var(--white);
}

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

.client-type {
  text-align: center;
  padding: 20px;
  background: rgba(255,255,255,0.1);
  border-radius: var(--radius);
  font-weight: 500;
}

/* Footer */
footer {
  background: var(--brand-navy);
  color: var(--white);
  padding: 60px 0 20px;
}

.footer-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 40px;
  margin-bottom: 40px;
}

.footer-col h4 {
  margin-bottom: 15px;
  color: var(--brand-yellow);
}

.footer-col p {
  margin-bottom: 10px;
}

.footer-col a {
  color: var(--white);
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-col a:hover {
  color: var(--brand-yellow);
}

.footer-links {
  list-style: none;
}

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

.footer-logo {
  background: var(--white);
  padding: 10px 15px;
  border-radius: var(--radius);
  display: inline-block;
}

.footer-claim {
  opacity: 0.8;
  margin-top: 15px;
}

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.2);
  padding-top: 20px;
  text-align: center;
  opacity: 0.8;
}

/* Blog Styles */
.blog-grid {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 50px;
  margin-top: 40px;
}

.articles-grid {
  display: grid;
  gap: 30px;
  margin-top: 30px;
}

.article-card {
  background: var(--white);
  padding: 30px;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  transition: transform 0.3s ease;
}

.article-card:hover {
  transform: translateY(-3px);
}

.article-card h3 a {
  color: var(--brand-navy);
  text-decoration: none;
  font-size: 1.3rem;
}

.article-card h3 a:hover {
  color: #1a2b3d;
}

.article-excerpt {
  margin: 15px 0;
  color: var(--brand-gray);
}

.article-meta {
  display: flex;
  gap: 15px;
  font-size: 14px;
  color: #666;
}

.article-category {
  background: var(--light-gray);
  padding: 4px 12px;
  border-radius: 20px;
}

.sidebar-widget {
  background: var(--white);
  padding: 25px;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  margin-bottom: 25px;
}

.sidebar-widget h3 {
  color: var(--brand-navy);
  margin-bottom: 15px;
}

.sidebar-widget ul {
  list-style: none;
}

.sidebar-widget li {
  margin-bottom: 8px;
}

.sidebar-widget a {
  color: var(--brand-gray);
  text-decoration: none;
}

.sidebar-widget a:hover {
  color: var(--brand-navy);
  text-decoration: underline;
}

/* Service Pages */
.service-intro {
  padding: 50px 0;
  background: var(--light-gray);
}

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

.intro-content p {
  font-size: 1.1rem;
  margin-bottom: 20px;
}

.service-details {
  padding: 80px 0;
}

.details-grid {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 50px;
  margin-top: 40px;
}

.tasks-list {
  list-style: none;
  margin: 30px 0;
}

.tasks-list li {
  margin-bottom: 20px;
  padding-left: 0;
}

.tasks-list h3,
.tasks-list h4 {
  color: var(--brand-navy);
  margin-bottom: 8px;
}

.service-highlights,
.equipment-types,
.response-time {
  background: var(--light-gray);
  padding: 5px;
  border-radius: var(--radius);
  margin-bottom: 25px;
}

.service-highlights h3,
.equipment-types h3,
.response-time h3 {
  color: var(--brand-navy);
  margin-bottom: 15px;
}

/* FAQ Section */
.faq-section {
  padding: 60px 0;
  background: var(--light-gray);
}

.faq-grid {
  display: grid;
  gap: 25px;
  margin-top: 40px;
}

.faq-item {
  background: var(--white);
  padding: 25px;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.faq-item h3 {
  color: var(--brand-navy);
  margin-bottom: 10px;
  font-size: 1.1rem;
}

/* CTA Section */
.cta-section {
  padding: 80px 0;
  background: var(--brand-navy);
  color: var(--white);
  text-align: center;
}

.cta-section h2 {
  font-size: 2.2rem;
  margin-bottom: 15px;
}

.cta-section p {
  font-size: 1.1rem;
  margin-bottom: 30px;
  opacity: 0.9;
}

/* Legal/Privacy Pages */
.legal-content {
  padding: 60px 0;
}

.legal-wrapper {
  max-width: 800px;
  margin: 0 auto;
}

.legal-section {
  margin-bottom: 40px;
}

.legal-section h2 {
  color: var(--brand-navy);
  margin-bottom: 20px;
  font-size: 1.8rem;
}

.legal-section h3 {
  color: var(--brand-navy);
  margin: 25px 0 15px;
}

.legal-section ul,
.legal-section ol {
  margin: 15px 0 15px 30px;
}

.legal-section li {
  margin-bottom: 8px;
}

.responsible-info,
.contact-info {
  background: var(--light-gray);
  padding: 20px;
  border-radius: var(--radius);
  margin: 20px 0;
}

/* About Page Styles */
.mission-vision {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-bottom: 60px;
}

.mv-card {
  background: var(--white);
  padding: 40px;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.mv-card h2 {
  color: var(--brand-navy);
  font-size: 1.8rem;
  margin-bottom: 20px;
}

.mv-card p {
  line-height: 1.8;
  color: var(--brand-gray);
}

.values-section,
.methodology-section,
.protocols-section,
.coverage-section,
.differentiators-section {
  margin: 60px 0;
}

.values-section h2,
.methodology-section h2,
.protocols-section h2,
.coverage-section h2,
.differentiators-section h2 {
  color: var(--brand-navy);
  font-size: 2rem;
  margin-bottom: 30px;
  text-align: center;
}

.values-grid,
.coverage-grid,
.differentiators-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.value-item,
.coverage-item,
.diff-item {
  background: var(--white);
  padding: 30px;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.value-item h3,
.coverage-item h3,
.diff-item h3 {
  color: var(--brand-navy);
  font-size: 1.3rem;
  margin-bottom: 15px;
}

.value-item p,
.coverage-item p,
.diff-item p {
  line-height: 1.7;
  color: var(--brand-gray);
}

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

.methodology-col {
  background: var(--white);
  padding: 30px;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.methodology-col h3 {
  color: var(--brand-navy);
  font-size: 1.4rem;
  margin-bottom: 20px;
}

.methodology-col ul {
  list-style: none;
  padding: 0;
}

.methodology-col li {
  padding: 10px 0 10px 25px;
  position: relative;
  line-height: 1.6;
  color: var(--brand-gray);
}

.methodology-col li:before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--brand-yellow);
  font-weight: bold;
}

.protocols-section p {
  text-align: center;
  margin-bottom: 20px;
  color: var(--brand-gray);
  font-size: 1.1rem;
}

.protocols-list {
  list-style: none;
  padding: 0;
  max-width: 800px;
  margin: 0 auto;
}

.protocols-list li {
  background: var(--white);
  padding: 20px 20px 20px 50px;
  margin-bottom: 15px;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  position: relative;
  line-height: 1.6;
  color: var(--brand-gray);
}

.protocols-list li:before {
  content: "✓";
  position: absolute;
  left: 20px;
  color: var(--brand-yellow);
  font-weight: bold;
  font-size: 1.2rem;
}

.coverage-section p {
  text-align: center;
  margin-bottom: 20px;
  color: var(--brand-gray);
  font-size: 1.1rem;
}

.cta-section {
  background: var(--light-gray);
  padding: 60px 40px;
  border-radius: var(--radius);
  text-align: center;
  margin: 60px 0;
}

.cta-section h2 {
  color: var(--brand-navy);
  font-size: 2rem;
  margin-bottom: 15px;
}

.cta-section p {
  color: var(--brand-gray);
  font-size: 1.1rem;
  margin-bottom: 30px;
}

/* Scroll Animations */
.animate-on-scroll {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s cubic-bezier(0.4, 0, 0.2, 1),
              transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.animate-on-scroll.animated {
  opacity: 1;
  transform: translateY(0);
}

/* Staggered animation delays for grid items */
.animate-on-scroll:nth-child(1) { transition-delay: 0.1s; }
.animate-on-scroll:nth-child(2) { transition-delay: 0.2s; }
.animate-on-scroll:nth-child(3) { transition-delay: 0.3s; }
.animate-on-scroll:nth-child(4) { transition-delay: 0.4s; }
.animate-on-scroll:nth-child(5) { transition-delay: 0.5s; }
.animate-on-scroll:nth-child(6) { transition-delay: 0.6s; }
.animate-on-scroll:nth-child(7) { transition-delay: 0.7s; }
.animate-on-scroll:nth-child(8) { transition-delay: 0.8s; }

/* Reduce motion for users who prefer it */
@media (prefers-reduced-motion: reduce) {
  .animate-on-scroll {
    opacity: 1;
    transform: none;
    transition: none;
  }
}

/* Responsive Design */
@media (max-width: 768px) {
  .nav-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--white);
    flex-direction: column;
    padding: 20px;
    border-top: 1px solid var(--border-color);
    gap: 10px;
  }

  .nav-menu.active {
    display: flex;
  }

  .mobile-menu-toggle {
    display: flex;
  }

  .dropdown-menu {
    position: static;
    opacity: 1;
    visibility: visible;
    transform: none;
    box-shadow: none;
    border: none;
    margin-top: 10px;
  }

  .hero {
    padding: 60px 0 40px;
  }

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

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

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

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

  .contact-grid,
  .blog-grid,
  .details-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }

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

  .btn {
    padding: 12px 25px;
  }

  .indicators-grid {
    grid-template-columns: 1fr;
  }

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

  .projects-grid {
    grid-template-columns: 1fr;
  }

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

  .container {
    padding: 0 15px;
  }

  .carousel-prev {
    left: 5px;
  }

  .carousel-next {
    right: 5px;
  }

  .carousel-btn {
    width: 35px;
    height: 35px;
    font-size: 1.3rem;
  }

  .carousel-slide img {
    max-height: 400px;
  }
}

/* Gallery Carousel Section */
.gallery-carousel-section {
  padding: 80px 0;
  background: var(--white);
}

.gallery-carousel-section h2 {
  text-align: center;
  font-size: 2.5rem;
  color: var(--brand-navy);
  margin-bottom: 10px;
}

.gallery-carousel-section .section-intro {
  text-align: center;
  color: var(--brand-gray);
  margin-bottom: 40px;
}

.carousel-container {
  position: relative;
  max-width: 900px;
  margin: 0 auto;
}

.carousel-track-container {
  overflow: hidden;
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.15);
}

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

.carousel-slide {
  min-width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  background: var(--light-gray);
}

.carousel-slide img {
  width: 100%;
  height: auto;
  max-height: 600px;
  object-fit: cover;
  display: block;
}

.carousel-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(42, 62, 92, 0.8);
  color: white;
  border: none;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  font-size: 2rem;
  cursor: pointer;
  transition: all 0.3s ease;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
}

.carousel-btn:hover {
  background: var(--brand-navy);
  transform: translateY(-50%) scale(1.1);
}

.carousel-prev {
  left: -60px;
}

.carousel-next {
  right: -60px;
}

.carousel-indicators {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-top: 30px;
}

.carousel-indicator {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  border: 2px solid var(--brand-navy);
  background: transparent;
  cursor: pointer;
  transition: all 0.3s ease;
  padding: 0;
}

.carousel-indicator.active {
  background: var(--brand-navy);
  transform: scale(1.3);
}

.carousel-indicator:hover {
  background: var(--brand-yellow);
  border-color: var(--brand-yellow);
}

@media (max-width: 1024px) {
  .carousel-prev {
    left: 10px;
  }

  .carousel-next {
    right: 10px;
  }

  .carousel-btn {
    width: 40px;
    height: 40px;
    font-size: 1.5rem;
  }
}