/* Modern Cleaning Company Website Styles */

:root {
  /* Updated color scheme to match design - cyan/turquoise primary with yellow accents */
  --primary: #22d3ee;
  --primary-dark: #06b6d4;
  --secondary: #fbbf24;
  --text: #1f2937;
  --text-light: #6b7280;
  --bg: #ffffff;
  --bg-light: #f0f9ff;
  --border: #e5e7eb;
  --error: #ef4444;
  --success: #10b981;
  --warning: #f59e0b;
}

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

body {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  color: var(--text);
  line-height: 1.6;
  background: var(--bg);
}

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

/* Navigation */
.navbar {
  background: var(--primary);
  /* Changed navbar background to cyan */
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
  position: sticky;
  top: 0;
  z-index: 1000;
}

.nav-wrapper {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 0;
}

.logo {
  font-size: 1.5rem;
  font-weight: 700;
  color: white;
  /* Made logo text white for cyan background */
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

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

.nav-menu a {
  color: white;
  /* Changed nav links to white */
  text-decoration: none;
  font-weight: 500;
  transition: color 0.3s;
}

.nav-menu a:hover {
  color: var(--secondary);
  /* Hover state uses yellow */
}

/* Enhanced mobile menu styling and functionality */
.mobile-menu-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
  z-index: 1001;
  position: relative;
}

.mobile-menu-toggle span {
  width: 28px;
  height: 3px;
  background: white;
  border-radius: 3px;
  transition: all 0.3s ease;
  display: block;
}

.mobile-menu-toggle.active span:nth-child(1) {
  transform: rotate(45deg) translate(8px, 8px);
}

.mobile-menu-toggle.active span:nth-child(2) {
  opacity: 0;
}

.mobile-menu-toggle.active span:nth-child(3) {
  transform: rotate(-45deg) translate(8px, -8px);
}

/* Hero Section */
.hero {
  background: linear-gradient(180deg, #f0f9ff 0%, #e0f2fe 100%);
  /* Light blue gradient background instead of dark */
  color: var(--text);
  /* Dark text on light background */
  padding: 6rem 0;
  text-align: center;
}

.hero-subtitle {
  color: var(--primary);
  font-size: 0.875rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 1rem;
}

.hero h1 {
  font-size: 3rem;
  margin-bottom: 1rem;
  font-weight: 800;
  color: var(--text);
}

.hero p {
  font-size: 1.125rem;
  margin-bottom: 2rem;
  color: var(--text-light);
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

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

/* Buttons */
.btn-primary,
.btn-secondary,
.btn-yellow {
  padding: 0.875rem 2rem;
  border-radius: 0.5rem;
  font-weight: 600;
  text-decoration: none;
  display: inline-block;
  transition: all 0.3s;
  border: none;
  cursor: pointer;
  font-size: 1rem;
}

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

.btn-primary:hover {
  background: var(--primary-dark);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(34, 211, 238, 0.3);
}

.btn-secondary {
  background: white;
  color: var(--primary);
  border: 2px solid var(--primary);
}

.btn-secondary:hover {
  background: var(--bg-light);
}

.btn-yellow {
  background: var(--secondary);
  color: var(--text);
  font-weight: 700;
}

.btn-yellow:hover {
  background: #f59e0b;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(251, 191, 36, 0.3);
}

.btn-full {
  width: 100%;
}

.btn-large {
  padding: 1.25rem 3rem;
  font-size: 1.125rem;
}

/* Features */
.features {
  padding: 5rem 0;
  background: var(--bg-light);
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
}

.feature-card {
  background: white;
  padding: 2rem;
  border-radius: 1rem;
  text-align: center;
  transition: transform 0.3s;
}

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

.feature-icon {
  width: 4rem;
  height: 4rem;
  background: var(--primary);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem;
  font-size: 1.5rem;
}

.feature-card h3 {
  margin-bottom: 0.5rem;
  color: var(--text);
}

.feature-card p {
  color: var(--text-light);
}

/* Services Section with Icons */
.services-section {
  padding: 5rem 0;
  background: white;
}

.services-intro {
  text-align: center;
  margin-bottom: 1rem;
  color: var(--primary);
  font-size: 0.875rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 3rem;
}

.services-grid-icons {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.service-icon-card {
  background: white;
  padding: 2rem;
  border-radius: 1rem;
  text-align: center;
  transition: transform 0.3s;
  border: 1px solid var(--border);
}

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

.service-icon-wrapper {
  width: 4rem;
  height: 4rem;
  background: var(--primary);
  color: white;
  border-radius: 0.75rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  font-size: 1.75rem;
}

.service-icon-card h3 {
  margin-bottom: 0.75rem;
  color: var(--text);
  font-size: 1.25rem;
}

.service-icon-card p {
  color: var(--text-light);
  font-size: 0.95rem;
  line-height: 1.6;
  margin-bottom: 1rem;
}

.service-link {
  color: var(--primary);
  text-decoration: none;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}

.service-link:hover {
  gap: 0.75rem;
}

/* How to Get Service Section */
.how-section {
  padding: 5rem 0;
  background: var(--bg-light);
}

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

.how-steps {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.step-card {
  background: white;
  padding: 1.5rem;
  border-radius: 1rem;
  display: flex;
  align-items: flex-start;
  gap: 1.5rem;
}

.step-icon {
  width: 3.5rem;
  height: 3.5rem;
  background: var(--bg-light);
  color: var(--primary);
  border-radius: 0.75rem;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  flex-shrink: 0;
}

.step-content h3 {
  margin-bottom: 0.5rem;
  color: var(--text);
}

.step-content p {
  color: var(--text-light);
  font-size: 0.95rem;
}

.how-image {
  position: relative;
}

.how-image img {
  width: 100%;
  border-radius: 1rem;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.team-member-badge {
  position: absolute;
  bottom: 2rem;
  right: 2rem;
  background: white;
  padding: 1rem;
  border-radius: 0.75rem;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  display: flex;
  align-items: center;
  gap: 1rem;
  max-width: 300px;
}

.badge-avatar {
  width: 3rem;
  height: 3rem;
  border-radius: 0.5rem;
  object-fit: cover;
}

.badge-info h4 {
  font-size: 0.875rem;
  margin-bottom: 0.25rem;
  color: var(--text);
}

.badge-info p {
  font-size: 0.75rem;
  color: var(--text-light);
  line-height: 1.4;
}

/* CTA Banner */
.cta-banner {
  background: var(--primary);
  color: white;
  padding: 4rem 0;
  text-align: center;
  margin: 5rem 0;
}

.cta-banner h2 {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

.cta-banner p {
  font-size: 1.125rem;
  margin-bottom: 2rem;
  opacity: 0.95;
}

/* Stats Section */
.stats-section {
  padding: 3rem 0;
  background: white;
}

.stats-flex {
  display: flex;
  justify-content: space-around;
  gap: 2rem;
  flex-wrap: wrap;
}

.stat-box {
  text-align: center;
  background: var(--primary);
  color: white;
  padding: 2rem 3rem;
  border-radius: 1rem;
  min-width: 150px;
}

.stat-number {
  font-size: 2.5rem;
  font-weight: 800;
  margin-bottom: 0.5rem;
}

.stat-label {
  font-size: 0.95rem;
  opacity: 0.95;
}

/* Services */
.services-preview,
.services-list {
  padding: 5rem 0;
}

.section-header {
  text-align: center;
  margin-bottom: 3rem;
}

.section-header h2 {
  font-size: 2.5rem;
  margin-bottom: 0.5rem;
}

.section-header p {
  color: var(--text-light);
  font-size: 1.125rem;
}

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

.service-card {
  background: white;
  border-radius: 1rem;
  overflow: hidden;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s;
}

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

.service-image {
  height: 200px;
  overflow: hidden;
}

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

.service-content {
  padding: 1.5rem;
}

.service-content h3 {
  margin-bottom: 0.5rem;
}

.service-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 1rem;
}

.price {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--primary);
}

/* Testimonials */
.testimonials {
  padding: 5rem 0;
  background: var(--bg-light);
}

.testimonial-card {
  background: white;
  padding: 2rem;
  border-radius: 1rem;
  position: relative;
}

.testimonial-quote {
  position: absolute;
  top: 1.5rem;
  left: 1.5rem;
  width: 3rem;
  height: 3rem;
  background: var(--primary);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
}

.testimonial-card p {
  margin: 3rem 0 1.5rem;
  color: var(--text);
  font-style: italic;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.author-avatar {
  width: 3rem;
  height: 3rem;
  border-radius: 50%;
  object-fit: cover;
}

.author-info strong {
  display: block;
  color: var(--text);
}

.author-info span {
  color: var(--text-light);
  font-size: 0.875rem;
}

.stars {
  color: var(--secondary);
  /* Yellow stars */
  margin-bottom: 1rem;
}

/* Contact Section */
.contact-section {
  padding: 5rem 0;
  background: white;
}

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

.contact-info {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.contact-intro {
  color: var(--primary);
  font-size: 0.875rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 0.5rem;
}

.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 1.5rem;
}

.contact-icon {
  width: 3.5rem;
  height: 3.5rem;
  background: var(--bg-light);
  color: var(--primary);
  border-radius: 0.75rem;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  flex-shrink: 0;
}

.contact-details h3 {
  margin-bottom: 0.25rem;
  color: var(--text);
}

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

.contact-form-wrapper {
  background: var(--primary);
  padding: 3rem;
  border-radius: 1rem;
}

.contact-form-wrapper input,
.contact-form-wrapper textarea {
  background: white;
  border: none;
}

.contact-form-wrapper label {
  color: white;
}

/* Final CTA */
.final-cta {
  background: var(--primary);
  color: white;
  padding: 5rem 0;
  text-align: center;
}

.final-cta h2 {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

.final-cta p {
  font-size: 1.125rem;
  margin-bottom: 2rem;
  opacity: 0.95;
}

/* Footer */
.footer {
  background: var(--text);
  color: white;
  padding: 3rem 0 1rem;
}

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

.footer-section h3,
.footer-section h4 {
  margin-bottom: 1rem;
}

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

.footer-section ul li {
  margin-bottom: 0.5rem;
}

.footer-section a {
  color: rgba(255, 255, 255, 0.8);
  text-decoration: none;
}

.footer-section a:hover {
  color: white;
}

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

.newsletter-form {
  display: flex;
  gap: 0.5rem;
}

.newsletter-form input {
  flex: 1;
  padding: 0.75rem;
  border: none;
  border-radius: 0.5rem;
}

.newsletter-form button {
  background: var(--primary);
  color: white;
  border: none;
  padding: 0.75rem 1.5rem;
  border-radius: 0.5rem;
  cursor: pointer;
}

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

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

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

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 0.75rem;
  border: 1px solid var(--border);
  border-radius: 0.5rem;
  font-size: 1rem;
}

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

/* Admin Styles */
.admin-layout {
  display: flex;
  min-height: 100vh;
}

.admin-sidebar {
  width: 250px;
  background: var(--text);
  color: white;
  padding: 2rem 0;
}

.admin-nav a {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 1rem 1.5rem;
  color: rgba(255, 255, 255, 0.8);
  text-decoration: none;
  transition: all 0.3s;
}

.admin-nav a:hover,
.admin-nav a.active {
  background: rgba(255, 255, 255, 0.1);
  color: white;
}

.admin-content {
  flex: 1;
  padding: 2rem;
  background: var(--bg-light);
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1.5rem;
  margin-bottom: 2rem;
}

.stat-card {
  background: white;
  padding: 1.5rem;
  border-radius: 0.5rem;
  display: flex;
  align-items: center;
  gap: 1rem;
}

.stat-icon {
  width: 3rem;
  height: 3rem;
  background: var(--primary);
  color: white;
  border-radius: 0.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
}

.admin-table {
  width: 100%;
  background: white;
  border-radius: 0.5rem;
  overflow: hidden;
}

.admin-table th,
.admin-table td {
  padding: 1rem;
  text-align: left;
}

.admin-table thead {
  background: var(--bg-light);
}

.text-center {
  text-align: center;
}

/* Responsive */
@media (max-width: 768px) {
  .nav-menu {
    position: fixed;
    top: 70px;
    left: -100%;
    width: 100%;
    height: calc(100vh - 70px);
    background: var(--primary);
    flex-direction: column;
    padding: 2rem;
    gap: 1rem;
    transition: left 0.3s ease;
    overflow-y: auto;
    z-index: 999;
  }

  .nav-menu.active {
    left: 0;
  }

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

  .mobile-menu-toggle span {
    background: white;
    /* White hamburger menu on cyan background */
  }

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

  .how-grid,
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .stats-flex {
    flex-direction: column;
  }

  .admin-layout {
    flex-direction: column;
  }

  .admin-sidebar {
    width: 100%;
  }
}

/* Page Header */
.page-header {
  background: linear-gradient(180deg, var(--primary) 0%, var(--primary-dark) 100%);
  color: white;
  padding: 4rem 0;
  text-align: center;
  margin-bottom: 3rem;
}

.page-header h1 {
  font-size: 2.5rem;
  margin-bottom: 0.5rem;
}

.page-header p {
  font-size: 1.125rem;
  opacity: 0.95;
}

/* About Page Styles */
.about-section {
  padding: 3rem 0;
}

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

.about-text h2 {
  font-size: 2rem;
  margin-bottom: 1rem;
  color: var(--text);
  line-height: 1.3;
}

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

.about-features {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-top: 2rem;
}

.feature-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.feature-item i {
  color: var(--primary);
  font-size: 1.25rem;
}

.about-image img {
  width: 100%;
  border-radius: 1rem;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.mission-section {
  padding: 4rem 0;
  background: var(--bg-light);
}

.mission-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}

.mission-card {
  background: white;
  padding: 2.5rem;
  border-radius: 1rem;
  text-align: center;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
}

.mission-card i {
  font-size: 3rem;
  color: var(--primary);
  margin-bottom: 1rem;
}

.mission-card h3 {
  font-size: 1.5rem;
  margin-bottom: 1rem;
  color: var(--text);
}

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

.team-section {
  padding: 4rem 0;
}

.section-title {
  text-align: center;
  font-size: 2.5rem;
  margin-bottom: 0.5rem;
  color: var(--text);
}

.section-subtitle {
  text-align: center;
  color: var(--text-light);
  font-size: 1.125rem;
  margin-bottom: 3rem;
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
}

.team-member {
  text-align: center;
}

.team-member img {
  width: 100%;
  height: 250px;
  object-fit: cover;
  border-radius: 1rem;
  margin-bottom: 1rem;
}

.team-member h4 {
  font-size: 1.25rem;
  margin-bottom: 0.25rem;
  color: var(--text);
}

.team-member p {
  color: var(--text-light);
}

/* Contact Page Styles */
.contact-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
}

.contact-info {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.contact-info-item {
  display: flex;
  align-items: flex-start;
  gap: 1.5rem;
}

.icon-box {
  width: 3.5rem;
  height: 3.5rem;
  background: var(--bg-light);
  color: var(--primary);
  border-radius: 0.75rem;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  flex-shrink: 0;
}

.info-content h4 {
  font-size: 1.125rem;
  margin-bottom: 0.5rem;
  color: var(--text);
}

.info-content p {
  color: var(--text-light);
  margin: 0.25rem 0;
}

.contact-form-wrapper {
  background: var(--primary);
  padding: 3rem;
  border-radius: 1rem;
}

.contact-form {
  display: flex;
  flex-direction: column;
}

.contact-form-wrapper input,
.contact-form-wrapper textarea {
  background: white;
  border: none;
  padding: 1rem;
  border-radius: 0.5rem;
  font-size: 1rem;
  margin-bottom: 1rem;
}

.contact-form-wrapper input::placeholder,
.contact-form-wrapper textarea::placeholder {
  color: var(--text-light);
}

.btn-submit {
  background: var(--secondary);
  color: var(--text);
  padding: 1rem 2rem;
  border: none;
  border-radius: 0.5rem;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s;
}

.btn-submit:hover {
  background: #f59e0b;
  transform: translateY(-2px);
}

.map-section {
  padding: 3rem 0;
  background: var(--bg-light);
}

.map-container {
  border-radius: 1rem;
  overflow: hidden;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

/* Service Details Page Styles */
.service-details-section {
  padding: 3rem 0;
}

.service-details-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: start;
}

.service-details-images {
  position: sticky;
  top: 100px;
}

.main-service-image {
  border-radius: 1rem;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  margin-bottom: 2rem;
}

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

.service-gallery h3 {
  font-size: 1.5rem;
  margin-bottom: 1rem;
  color: var(--text);
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
}

.gallery-item {
  border-radius: 0.75rem;
  overflow: hidden;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  cursor: pointer;
  transition: transform 0.3s;
}

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

.gallery-item img {
  width: 100%;
  height: 150px;
  object-fit: cover;
}

.gallery-caption {
  padding: 0.5rem;
  font-size: 0.875rem;
  color: var(--text-light);
  background: white;
}

.service-details-info {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.service-info-card,
.service-description-card,
.service-features-card,
.service-guarantee-card {
  background: white;
  padding: 2rem;
  border-radius: 1rem;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

.price-card {
  text-align: center;
  padding-bottom: 1.5rem;
  border-bottom: 2px solid var(--border);
  margin-bottom: 1.5rem;
}

.price-card h2 {
  font-size: 1.125rem;
  margin-bottom: 0.75rem;
  color: var(--text-light);
  font-weight: 600;
}

.price-large {
  font-size: 3rem;
  font-weight: 800;
  color: var(--primary);
  margin-bottom: 0.5rem;
}

.price-note {
  font-size: 0.875rem;
  color: var(--text-light);
}

.service-meta-list {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-bottom: 2rem;
}

.meta-row {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 1rem;
  background: var(--bg-light);
  border-radius: 0.5rem;
}

.meta-row i {
  font-size: 1.5rem;
  color: var(--primary);
  margin-top: 0.25rem;
}

.meta-row strong {
  display: block;
  margin-bottom: 0.25rem;
  color: var(--text);
}

.meta-row p {
  color: var(--text-light);
  font-size: 0.95rem;
  margin: 0;
}

.btn-small {
  padding: 0.5rem 1rem;
  font-size: 0.875rem;
}

.service-actions {
  display: flex;
  gap: 0.5rem;
}

.service-description-card h2,
.service-features-card h2,
.service-guarantee-card h2 {
  font-size: 1.5rem;
  margin-bottom: 1rem;
  color: var(--text);
}

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

.detailed-description {
  margin-top: 1.5rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--border);
  color: var(--text-light);
  line-height: 1.8;
}

.features-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.features-list li {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.features-list i {
  color: var(--primary);
  font-size: 1.25rem;
}

.features-list span {
  color: var(--text);
}

.guarantee-items {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.guarantee-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}

.guarantee-item i {
  font-size: 2rem;
  color: var(--primary);
  margin-top: 0.25rem;
}

.guarantee-item strong {
  display: block;
  margin-bottom: 0.25rem;
  color: var(--text);
  font-size: 1.125rem;
}

.guarantee-item p {
  color: var(--text-light);
  font-size: 0.95rem;
  margin: 0;
}

.related-services-section {
  padding: 4rem 0;
  background: var(--bg-light);
}

/* Mobile responsiveness for service details */
@media (max-width: 768px) {
  .service-details-grid {
    grid-template-columns: 1fr;
  }

  .service-details-images {
    position: relative;
    top: 0;
  }

  .main-service-image img {
    height: 250px;
  }

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

  .price-large {
    font-size: 2.5rem;
  }

  .service-actions {
    flex-direction: column;
  }

  .service-actions .btn-small {
    width: 100%;
  }
}

/* FAQ Page Styles */
.faq-section {
  padding: 3rem 0;
}

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

.faq-item {
  background: white;
  border: 1px solid var(--border);
  border-radius: 0.75rem;
  margin-bottom: 1rem;
  overflow: hidden;
}

.faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.5rem;
  cursor: pointer;
  transition: background 0.3s;
}

.faq-question:hover {
  background: var(--bg-light);
}
/* Contact Section Styles */
.contact-section {
    padding: 80px 0;
    background: #f8f9fa;
}

.contact-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.contact-info-item {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    padding: 25px;
    background: white;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.08);
    transition: transform 0.3s, box-shadow 0.3s;
}

.contact-info-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 20px rgba(0,0,0,0.12);
}

.icon-box {
    width: 50px;
    height: 50px;
    min-width: 50px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 20px;
}

.info-content {
    flex: 1;
}

.info-content h4 {
    margin: 0 0 10px 0;
    color: #333;
    font-size: 18px;
    font-weight: 600;
}

.info-content p {
    margin: 5px 0;
    color: #666;
    font-size: 15px;
    line-height: 1.6;
}

.contact-form-wrapper {
    background: white;
    padding: 40px;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.08);
}

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

.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 15px;
    border: 1px solid #ddd;
    border-radius: 8px;
    font-size: 15px;
    transition: border-color 0.3s;
    font-family: inherit;
}

.contact-form input:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: #667eea;
}

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

.btn-submit {
    width: 100%;
    padding: 15px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    border: none;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: transform 0.3s, box-shadow 0.3s;
}

.btn-submit:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 20px rgba(102, 126, 234, 0.4);
}

.map-section {
    padding: 0;
    background: #f8f9fa;
}

.map-container {
    width: 100%;
    height: 450px;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.map-container iframe {
    width: 100%;
    height: 100%;
    border: 0;
}

/* Mobile Responsive Styles */
@media (max-width: 992px) {
    .contact-wrapper {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .contact-form-wrapper {
        padding: 30px;
    }
}

@media (max-width: 768px) {
    .contact-section {
        padding: 50px 0;
    }
    
    .contact-info-item {
        padding: 20px;
        gap: 15px;
    }
    
    .icon-box {
        width: 45px;
        height: 45px;
        min-width: 45px;
        font-size: 18px;
    }
    
    .info-content h4 {
        font-size: 16px;
    }
    
    .info-content p {
        font-size: 14px;
    }
    
    .contact-form-wrapper {
        padding: 25px 20px;
    }
    
    .contact-form input,
    .contact-form textarea {
        padding: 12px;
        font-size: 14px;
    }
    
    .btn-submit {
        padding: 12px;
        font-size: 15px;
    }
    
    .map-container {
        height: 350px;
    }
}

@media (max-width: 480px) {
    .contact-section {
        padding: 40px 0;
    }
    
    .contact-info-item {
        padding: 15px;
        gap: 12px;
    }
    
    .icon-box {
        width: 40px;
        height: 40px;
        min-width: 40px;
        font-size: 16px;
    }
    
    .info-content h4 {
        font-size: 15px;
        margin-bottom: 8px;
    }
    
    .info-content p {
        font-size: 13px;
    }
    
    .contact-form-wrapper {
        padding: 20px 15px;
    }
    
    .map-container {
        height: 300px;
        border-radius: 5px;
    }
}

/* Prevent horizontal scroll */
.contact-section .container,
.map-section .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    overflow-x: hidden;
}

@media (max-width: 768px) {
    .contact-section .container,
    .map-section .container {
        padding: 0 15px;
    }
}

/* Fix for any potential overflow */
body {
    overflow-x: hidden;
}

.contact-wrapper {
    width: 100%;
    max-width: 100%;
}

.contact-form input,
.contact-form textarea {
    box-sizing: border-box;
    max-width: 100%;
}