/* Splendi - Cleaning Company Website */
/* Modern, animated design - water & shine theme */

:root {
  --color-dark-blue: #1a4d7a;
  --color-medium-blue: #2585c4;
  --color-light-blue: #5bc0eb;
  --color-green: #7cb342;
  --color-white: #ffffff;
  --color-cream: #f0f7fc;
  --color-light: #e3f2fd;
  --color-charcoal: #1a365d;
  --font-heading: 'Playfair Display', Georgia, serif;
  --font-body: 'Source Sans 3', 'Segoe UI', sans-serif;
  --radius: 12px;
  --shadow: 0 8px 30px rgba(26, 77, 122, 0.12);
  --transition: 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  color: var(--color-charcoal);
  background: var(--color-cream);
  line-height: 1.6;
  overflow-x: hidden;
}

h1, h2, h3 {
  font-family: var(--font-heading);
  font-weight: 600;
  line-height: 1.2;
}

a {
  color: inherit;
  text-decoration: none;
  transition: color 0.2s ease, opacity 0.2s ease;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

/* Header */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(240, 247, 252, 0.95);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--color-light);
  transition: all var(--transition);
}

.header.scrolled {
  box-shadow: 0 4px 30px rgba(26, 77, 122, 0.1);
}

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

.logo {
  height: 50px;
  width: auto;
}

.nav-links {
  display: flex;
  gap: 0.25rem;
  list-style: none;
}

.nav-link {
  display: inline-flex;
  align-items: center;
  padding: 0.6rem 1.25rem;
  font-weight: 500;
  font-size: 0.9rem;
  letter-spacing: 0.03em;
  border-radius: 50px;
  transition: all var(--transition);
}

.nav-link:hover {
  color: var(--color-medium-blue);
  background: rgba(37, 133, 196, 0.08);
}

.nav-link.active {
  color: var(--color-white);
  background: linear-gradient(135deg, var(--color-dark-blue), var(--color-medium-blue));
  box-shadow: 0 2px 12px rgba(26, 77, 122, 0.25);
}

.nav-link.active:hover {
  color: var(--color-white);
  background: linear-gradient(135deg, var(--color-medium-blue), var(--color-dark-blue));
  transform: translateY(-1px);
  box-shadow: 0 4px 16px rgba(37, 133, 196, 0.35);
}

.nav-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
}

.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--color-dark-blue);
  margin: 5px 0;
  transition: var(--transition);
}

/* Hero Slider */
.hero-slider {
  min-height: 90vh;
  position: relative;
  overflow: hidden;
}

.hero-slides {
  position: relative;
  width: 100%;
  height: 90vh;
}

.hero-slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  opacity: 0;
  visibility: hidden;
  transition: opacity 1s ease, visibility 1s ease;
}

.hero-slide.active {
  opacity: 1;
  visibility: visible;
  z-index: 1;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(26, 77, 122, 0.85) 0%, rgba(37, 133, 196, 0.6) 100%);
  z-index: 0;
}

.hero-slider .hero-content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  padding: 2rem;
  z-index: 2;
  max-width: 700px;
}

.hero-slider h1 {
  font-size: clamp(2.5rem, 6vw, 4rem);
  margin-bottom: 1rem;
  color: var(--color-white);
  text-shadow: 0 2px 20px rgba(0,0,0,0.2);
}

.hero-slider h1 span {
  color: var(--color-light-blue);
}

.hero-slider p {
  font-size: 1.25rem;
  color: rgba(255,255,255,0.95);
  margin-bottom: 2rem;
}

.hero-slider .btn-primary {
  box-shadow: 0 4px 20px rgba(0,0,0,0.2);
}

/* Hero animations */
.animate-fade-in { animation: fadeInUp 0.8s ease forwards; }
.animate-fade-in-delay { animation: fadeInUp 0.8s ease 0.2s forwards; opacity: 0; }
.animate-fade-in-delay-2 { animation: fadeInUp 0.8s ease 0.4s forwards; opacity: 0; }

@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}

/* Hero dots */
.hero-dots {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 0.75rem;
  z-index: 3;
}

.hero-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: rgba(255,255,255,0.5);
  cursor: pointer;
  transition: all 0.3s ease;
}

.hero-dot:hover,
.hero-dot.active {
  background: var(--color-white);
  transform: scale(1.2);
}

/* Water droplets - cleaning theme */
.water-droplets {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 2;
  overflow: hidden;
}

.water-droplets span {
  position: absolute;
  width: 8px;
  height: 8px;
  background: rgba(255,255,255,0.4);
  border-radius: 50% 50% 50% 50% / 60% 60% 40% 40%;
  animation: droplet 4s ease-in-out infinite;
}

.water-droplets span:nth-child(1) { left: 10%; top: 20%; animation-delay: 0s; }
.water-droplets span:nth-child(2) { left: 25%; top: 60%; animation-delay: 0.5s; }
.water-droplets span:nth-child(3) { left: 40%; top: 35%; animation-delay: 1s; }
.water-droplets span:nth-child(4) { left: 55%; top: 70%; animation-delay: 0.2s; }
.water-droplets span:nth-child(5) { left: 70%; top: 25%; animation-delay: 1.2s; }
.water-droplets span:nth-child(6) { left: 85%; top: 50%; animation-delay: 0.8s; }
.water-droplets span:nth-child(7) { left: 35%; top: 80%; animation-delay: 0.3s; }
.water-droplets span:nth-child(8) { left: 65%; top: 15%; animation-delay: 0.9s; }

@keyframes droplet {
  0%, 100% { transform: translateY(0) scale(1); opacity: 0.3; }
  50% { transform: translateY(-20px) scale(1.2); opacity: 0.6; }
}

/* Buttons */
.btn {
  display: inline-block;
  padding: 0.9rem 2rem;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 1rem;
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
  border-radius: 2px;
}

.btn-primary {
  background: var(--color-dark-blue);
  color: var(--color-white);
}

.btn-primary:hover {
  background: var(--color-medium-blue);
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(26, 77, 122, 0.35);
}

.btn-secondary {
  background: transparent;
  color: var(--color-dark-blue);
  border: 2px solid var(--color-medium-blue);
}

.btn-secondary:hover {
  background: var(--color-medium-blue);
  color: var(--color-white);
}

/* Sections */
section {
  padding: 5rem 2rem;
  max-width: 1200px;
  margin: 0 auto;
}

.section-title {
  font-size: clamp(2rem, 4vw, 2.75rem);
  margin-bottom: 0.5rem;
  color: var(--color-charcoal);
}

.section-subtitle {
  color: var(--color-medium-blue);
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  margin-bottom: 3rem;
}

/* Services Grid */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
}

.service-card {
  background: var(--color-white);
  padding: 2rem;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  transition: all var(--transition);
  position: relative;
  overflow: hidden;
  opacity: 0;
  transform: translateY(30px);
}

.service-card.revealed {
  animation: slideUp 0.6s ease forwards;
}

.service-card.revealed:nth-child(1) { animation-delay: 0.1s; }
.service-card.revealed:nth-child(2) { animation-delay: 0.2s; }
.service-card.revealed:nth-child(3) { animation-delay: 0.3s; }

@keyframes slideUp {
  to { opacity: 1; transform: translateY(0); }
}

.service-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 40px rgba(26, 77, 122, 0.15);
}

/* Shine effect on hover - cleaning sparkle */
.service-card.shine-hover::after {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 50%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.4), transparent);
  transition: left 0.6s ease;
}

.service-card.shine-hover:hover::after {
  left: 100%;
}

.service-icon {
  width: 60px;
  height: 60px;
  background: var(--color-dark-blue);
  color: var(--color-white);
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  margin-bottom: 1.5rem;
}

.service-card-image {
  width: 100%;
  aspect-ratio: 4/3;
  border-radius: var(--radius);
  overflow: hidden;
  margin-bottom: 1rem;
}

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

.service-detail-grid {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 2rem;
  align-items: start;
}

.service-detail-image {
  width: 100%;
  aspect-ratio: 4/3;
  border-radius: 4px;
  overflow: hidden;
}

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

.service-card h3 {
  font-size: 1.35rem;
  margin-bottom: 0.75rem;
}

.service-card p {
  color: var(--color-charcoal);
  opacity: 0.85;
  font-size: 0.95rem;
}

/* Scroll reveal */
.scroll-reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.7s ease;
}

.scroll-reveal.revealed {
  opacity: 1;
  transform: translateY(0);
}

/* Footer */
.footer {
  background: var(--color-dark-blue);
  color: var(--color-white);
  padding: 4rem 2rem 2rem;
  margin-top: 4rem;
}

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

.footer h4 {
  font-family: var(--font-body);
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 1rem;
  opacity: 0.7;
}

.footer a:hover {
  color: var(--color-light-blue);
}

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding-top: 2rem;
  text-align: center;
  font-size: 0.9rem;
  opacity: 0.8;
}

/* Page specific */
.page-header {
  padding: 8rem 2rem 4rem;
  text-align: center;
  background: linear-gradient(135deg, var(--color-light) 0%, var(--color-cream) 50%, rgba(91, 192, 235, 0.1) 100%);
  position: relative;
  overflow: hidden;
}

.page-header::before {
  content: '';
  position: absolute;
  top: 0;
  left: -50%;
  width: 200%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
  animation: pageShine 8s ease-in-out infinite;
}

@keyframes pageShine {
  0%, 100% { transform: translateX(-25%); }
  50% { transform: translateX(25%); }
}

.page-header h1 {
  font-size: clamp(2rem, 4vw, 3rem);
  margin-bottom: 0.5rem;
  position: relative;
}

.page-header p {
  font-size: 1.1rem;
  opacity: 0.85;
  position: relative;
}

/* Reviews page */
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 1.5rem;
}

.review-card {
  background: var(--color-white);
  padding: 2rem;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  transition: all var(--transition);
}

.review-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(26, 77, 122, 0.12);
}

.review-stars {
  color: #f5a623;
  font-size: 1.2rem;
  margin-bottom: 1rem;
  letter-spacing: 0.1em;
}

.review-text {
  font-style: italic;
  margin-bottom: 1.5rem;
  line-height: 1.7;
  opacity: 0.95;
}

.review-author {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.review-author span {
  font-size: 0.9rem;
  color: var(--color-medium-blue);
}

/* Stats section - homepage */
.stats-section {
  background: linear-gradient(135deg, var(--color-dark-blue), var(--color-medium-blue));
  color: var(--color-white);
  padding: 4rem 2rem;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 2rem;
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
}

.stat-item {
  padding: 0.5rem;
}

.stat-number {
  font-family: var(--font-heading);
  font-size: clamp(2.5rem, 5vw, 3.5rem);
  font-weight: 700;
  line-height: 1;
  display: inline-block;
}

.stat-suffix {
  font-family: var(--font-heading);
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 600;
  opacity: 0.9;
}

.stat-label {
  margin-top: 0.5rem;
  font-size: 0.95rem;
  opacity: 0.95;
  font-weight: 500;
}

/* Trust badges - homepage */
.trust-badges {
  background: var(--color-white);
}

.trust-badges .section-title {
  margin-bottom: 2rem;
}

.badges-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.5rem;
  max-width: 900px;
  margin: 0 auto;
}

.badge-item {
  text-align: center;
  padding: 2rem 1.5rem;
  background: var(--color-cream);
  border-radius: var(--radius);
  transition: all var(--transition);
}

.badge-item:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
  background: var(--color-light);
}

.badge-icon {
  display: inline-block;
  font-size: 2.5rem;
  margin-bottom: 1rem;
  line-height: 1;
}

.badge-item h3 {
  font-size: 1.2rem;
  margin-bottom: 0.5rem;
  color: var(--color-charcoal);
}

.badge-item p {
  font-size: 0.95rem;
  opacity: 0.9;
  margin: 0;
  line-height: 1.5;
}

/* CTA section - homepage */
.cta-section {
  background: linear-gradient(135deg, var(--color-charcoal) 0%, var(--color-dark-blue) 100%);
  color: var(--color-white);
  padding: 5rem 2rem;
  text-align: center;
}

.cta-content {
  max-width: 600px;
  margin: 0 auto;
}

.cta-title {
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  color: var(--color-white);
  margin-bottom: 0.75rem;
}

.cta-text {
  font-size: 1.1rem;
  opacity: 0.95;
  margin-bottom: 1.5rem;
}

.btn-cta {
  font-size: 1.05rem;
  padding: 1rem 2.25rem;
}

.btn-cta:hover {
  background: var(--color-light-blue);
  color: var(--color-charcoal);
}

/* How it works - homepage */
.how-it-works {
  background: var(--color-cream);
}

.steps-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 2rem;
  max-width: 1000px;
  margin: 0 auto;
}

.step-item {
  position: relative;
  padding: 2rem;
  background: var(--color-white);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  transition: all var(--transition);
  border-left: 4px solid var(--color-medium-blue);
}

.step-item:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(26, 77, 122, 0.12);
}

.step-number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background: linear-gradient(135deg, var(--color-dark-blue), var(--color-medium-blue));
  color: var(--color-white);
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1.25rem;
  border-radius: 50%;
  margin-bottom: 1rem;
}

.step-item h3 {
  font-size: 1.2rem;
  margin-bottom: 0.5rem;
  color: var(--color-charcoal);
}

.step-item p {
  font-size: 0.95rem;
  opacity: 0.9;
  margin: 0;
  line-height: 1.6;
}

/* Floating WhatsApp button */
.whatsapp-float {
  position: fixed;
  bottom: 1.5rem;
  right: 1.5rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  background: #25d366;
  color: #fff;
  padding: 0.9rem 1.25rem;
  border-radius: 50px;
  font-weight: 600;
  font-size: 0.95rem;
  box-shadow: 0 4px 20px rgba(37, 211, 102, 0.5);
  z-index: 999;
  transition: all var(--transition);
}

.whatsapp-float:hover {
  transform: scale(1.05);
  box-shadow: 0 6px 28px rgba(37, 211, 102, 0.55);
  color: #fff;
}

.whatsapp-float svg {
  width: 26px;
  height: 26px;
  flex-shrink: 0;
}

@media (max-width: 480px) {
  .whatsapp-float span {
    display: none;
  }
  .whatsapp-float {
    padding: 1rem;
  }
}

/* FAQ page */
.faq-list {
  max-width: 800px;
  margin: 0 auto;
}

.faq-item {
  background: var(--color-white);
  border-radius: var(--radius);
  margin-bottom: 0.75rem;
  overflow: hidden;
  box-shadow: 0 2px 12px rgba(26, 77, 122, 0.06);
  transition: all var(--transition);
}

.faq-question {
  width: 100%;
  padding: 1.25rem 1.5rem;
  text-align: left;
  background: none;
  border: none;
  font-family: var(--font-body);
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--color-charcoal);
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: background 0.2s ease;
}

.faq-question::after {
  content: '+';
  font-size: 1.5rem;
  font-weight: 300;
  color: var(--color-medium-blue);
  transition: transform 0.3s ease;
}

.faq-item.open .faq-question::after {
  transform: rotate(45deg);
}

.faq-question:hover {
  background: rgba(37, 133, 196, 0.05);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
}

.faq-item.open .faq-answer {
  max-height: 300px;
}

.faq-answer p {
  padding: 0 1.5rem 1.25rem;
  margin: 0;
  line-height: 1.7;
  opacity: 0.9;
  border-top: 1px solid var(--color-light);
  padding-top: 1rem;
  margin: 1rem 1.5rem 0;
}

/* Blog page */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 2rem;
}

.blog-card {
  background: var(--color-white);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: all var(--transition);
}

.blog-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(26, 77, 122, 0.12);
}

.blog-card-image {
  aspect-ratio: 16/10;
  overflow: hidden;
}

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

.blog-card:hover .blog-card-image img {
  transform: scale(1.05);
}

.blog-card-content {
  padding: 1.5rem;
}

.blog-date {
  font-size: 0.85rem;
  color: var(--color-medium-blue);
  display: block;
  margin-bottom: 0.5rem;
}

.blog-card h2 {
  font-size: 1.2rem;
  margin-bottom: 0.75rem;
  line-height: 1.4;
}

.blog-card p {
  font-size: 0.95rem;
  opacity: 0.9;
  margin-bottom: 1rem;
  line-height: 1.6;
}

.blog-link {
  font-weight: 600;
  color: var(--color-medium-blue);
}

.blog-link:hover {
  color: var(--color-dark-blue);
}

.blog-card-full {
  grid-column: 1 / -1;
}

.blog-card-full .blog-card-content {
  padding: 2rem;
}

/* Contact page layout */
.contact-details-wrapper {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 3rem;
  max-width: 1000px;
  margin: 0 auto;
  align-items: start;
}

.contact-info-box {
  background: var(--color-white);
  padding: 2rem;
  border-radius: 4px;
  box-shadow: 0 4px 20px rgba(44, 44, 44, 0.06);
}

.contact-info-box h3 {
  margin-bottom: 1.5rem;
  font-size: 1.25rem;
}

.contact-info-box p {
  margin-bottom: 0.75rem;
}

.contact-info-box a:hover {
  color: var(--color-medium-blue);
}

.contact-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}

.contact-icon {
  width: 1.1em;
  height: 1.1em;
  min-width: 18px;
  min-height: 18px;
  flex-shrink: 0;
  vertical-align: middle;
}

@media (max-width: 768px) {
  .contact-details-wrapper {
    grid-template-columns: 1fr;
  }
}

/* Contact form */
.contact-form {
  max-width: 600px;
}

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

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

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 0.9rem 1rem;
  border: 2px solid var(--color-light);
  border-radius: 2px;
  font-family: var(--font-body);
  font-size: 1rem;
  transition: border-color 0.2s ease;
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--color-medium-blue);
}

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

/* About page */
.about-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.about-image {
  background: var(--color-light);
  aspect-ratio: 4/3;
  border-radius: 4px;
  overflow: hidden;
}

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

/* Branded images grid - Chi Siamo */
.branded-images-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.5rem;
  max-width: 1100px;
  margin: 0 auto;
}

.branded-image-card {
  background: var(--color-white);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: all var(--transition);
}

.branded-image-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(26, 77, 122, 0.12);
}

.branded-image-card img {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
  display: block;
}

.branded-image-card p {
  padding: 1rem 1.25rem;
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--color-charcoal);
  margin: 0;
  text-align: center;
}

.about-text h2 {
  margin-bottom: 1rem;
}

.about-text p {
  margin-bottom: 1rem;
  opacity: 0.9;
}

/* Responsive */
@media (max-width: 768px) {
  .nav-toggle {
    display: block;
  }

  .nav-links {
    position: fixed;
    top: 0;
    right: -100%;
    width: 80%;
    max-width: 300px;
    height: 100vh;
    background: var(--color-white);
    flex-direction: column;
    padding: 6rem 2rem 2rem;
    gap: 0.5rem;
    box-shadow: -5px 0 20px rgba(0,0,0,0.1);
    transition: right 0.3s ease;
  }

  .nav-links.active {
    right: 0;
  }

  .nav-link {
    width: 100%;
    justify-content: center;
    padding: 0.85rem 1.5rem;
    border-radius: var(--radius);
  }

  .nav-link.active {
    color: var(--color-white);
  }

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

  .about-image {
    order: -1;
  }

  .service-detail-grid {
    grid-template-columns: 1fr !important;
  }
}
