/* ============================================
   GOWASH LAUNDRY - MAIN STYLESHEET
   Optimized for performance & responsiveness
   ============================================ */

/* CSS Variables */
/* ============================================
   SPLIT HERO BANNER STYLES
   ============================================ */
.hero-split {
  padding: 80px 0;
  background: linear-gradient(135deg, var(--gray-100) 0%, var(--white) 100%);
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero-split-container {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 50px;
  align-items: center;
}

.hero-text-content {
  max-width: 600px;
}

.hero-badge {
  display: inline-block;
  background: var(--primary-light);
  color: var(--primary-dark);
  font-weight: 700;
  font-size: 0.8125rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  padding: 6px 14px;
  border-radius: var(--radius-sm);
  margin-bottom: 20px;
}

.hero-split .hero-title {
  font-size: 2.75rem;
  color: var(--text-dark);
  margin-bottom: 20px;
  line-height: 1.15;
}

.hero-split .hero-text {
  font-size: 1.0625rem;
  color: var(--text-medium);
  margin-bottom: 25px;
}

.hero-highlights {
  list-style: none;
  margin-bottom: 30px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.hero-highlights li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.9375rem;
  font-weight: 600;
  color: var(--secondary);
}

.hero-highlights li i {
  color: var(--primary);
  font-size: 1.1rem;
}

.hero-image-content {
  position: relative;
  display: flex;
  justify-content: center;
}

.hero-image-card {
  position: relative;
  width: 100%;
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.hero-img-main {
  width: 100%;
  height: 450px;
  object-fit: cover;
  border-radius: var(--radius-md);
}

.hero-floating-badge {
  position: absolute;
  bottom: 25px;
  left: 25px;
  background: var(--white);
  padding: 15px 20px;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-md);
  display: flex;
  flex-direction: column;
  border-left: 4px solid var(--primary);
}

.hero-floating-badge .badge-number {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--primary);
  line-height: 1;
}

.hero-floating-badge .badge-text {
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--text-medium);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-top: 3px;
}

/* Responsive adjustments for mobile */
@media (max-width: 992px) {
  .hero-split-container {
    grid-template-columns: 1fr;
    gap: 40px;
    text-align: center;
  }
  
  .hero-text-content {
    max-width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  
  .hero-highlights {
    align-items: flex-start;
    text-align: left;
    max-width: 400px;
    margin: 0 auto 25px auto;
  }
  
  .hero-split .hero-title {
    font-size: 2.25rem;
  }
  
  .hero-img-main {
    height: 320px;
  }
}

:root {
  --primary: #00bcd4;
  --primary-dark: #00a5bb;
  --primary-light: #e0f7fa;
  --secondary: #2c3e50;
  --text-dark: #333333;
  --text-medium: #666666;
  --text-light: #999999;
  --white: #ffffff;
  --gray-100: #f5f5f5;
  --gray-200: #eeeeee;
  --gray-300: #dddddd;
  --dark-bg: #2c3e50;
  --footer-bg: #1a252f;
  --transition: all 0.3s ease;
  --shadow-sm: 0 2px 4px rgba(0,0,0,0.05);
  --shadow-md: 0 4px 12px rgba(0,0,0,0.08);
  --shadow-lg: 0 8px 24px rgba(0,0,0,0.12);
  --radius-sm: 4px;
  --radius-md: 8px;
  --radius-lg: 25px;
  --container-width: 1200px;
}

/* Reset & Base */
*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: 'Open Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  color: var(--text-dark);
  line-height: 1.6;
  background: var(--white);
  overflow-x: hidden;
}

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

a {
  text-decoration: none;
  color: inherit;
  transition: var(--transition);
}

ul {
  list-style: none;
}

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

/* Typography */
h1, h2, h3, h4, h5, h6 {
  font-weight: 700;
  line-height: 1.3;
  color: var(--text-dark);
}

h1 { font-size: 3rem; }
h2 { font-size: 2.25rem; }
h3 { font-size: 1.5rem; }
h4 { font-size: 1.25rem; }

p {
  color: var(--text-medium);
  margin-bottom: 1rem;
}

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

.section-title h2 {
  margin-bottom: 0.75rem;
  position: relative;
  display: inline-block;
}

.section-title h2::after {
  content: '';
  display: block;
  width: 50px;
  height: 3px;
  background: var(--primary);
  margin: 0.75rem auto 0;
}

.section-title p {
  max-width: 600px;
  margin: 0 auto;
  color: var(--text-light);
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 30px;
  font-size: 0.875rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  border-radius: var(--radius-lg);
  border: none;
  cursor: pointer;
  transition: var(--transition);
  white-space: nowrap;
}

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

.btn-primary:hover {
  background: var(--primary-dark);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

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

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

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

.btn-white:hover {
  background: var(--gray-100);
}

/* Icons (CSS-only) */
.icon-phone::before { content: '📞'; }
.icon-clock::before { content: '🕐'; }
.icon-location::before { content: '📍'; }
.icon-email::before { content: '✉️'; }
.icon-facebook::before { content: 'f'; font-family: serif; font-weight: bold; }
.icon-twitter::before { content: '𝕏'; }
.icon-gplus::before { content: 'G+'; font-size: 0.75rem; font-weight: bold; }
.icon-instagram::before { content: '📷'; }
.icon-check::before { content: '✓'; }

/* ============================================
   HEADER
   ============================================ */
.top-bar {
  background: var(--gray-100);
  padding: 8px 0;
  font-size: 0.8125rem;
  border-bottom: 1px solid var(--gray-200);
}

.top-bar .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.top-bar-left {
  color: var(--text-light);
}

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

.phone-link {
  color: var(--primary);
  font-weight: 600;
}

.login-link {
  color: var(--text-medium);
}

.login-link:hover {
  color: var(--primary);
}

/* Main Header */
.main-header {
  background: var(--white);
  box-shadow: var(--shadow-sm);
  position: sticky;
  top: 0;
  z-index: 1000;
  transition: var(--transition);
}

.main-header.scrolled {
  box-shadow: var(--shadow-md);
}

.header-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 80px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 12px;
}

.logo-icon {
  width: 48px;
  height: 48px;
}

.logo-icon svg {
  width: 100%;
  height: 100%;
}

.logo-text {
  display: flex;
  flex-direction: column;
}

.logo-name {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--text-dark);
  line-height: 1;
}

.logo-tagline {
  font-size: 0.6875rem;
  letter-spacing: 3px;
  color: var(--text-light);
  margin-top: 2px;
}

/* Navigation */
.nav-list {
  display: flex;
  gap: 30px;
}

.nav-link {
  font-size: 0.8125rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--text-medium);
  padding: 5px 0;
  position: relative;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--primary);
  transition: var(--transition);
}

.nav-link:hover,
.nav-link.active {
  color: var(--primary);
}

.nav-link:hover::after,
.nav-link.active::after {
  width: 100%;
}

.btn-order {
  padding: 10px 25px;
  font-size: 0.8125rem;
}

/* Mobile Menu Toggle */
.mobile-menu-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 5px;
}

.mobile-menu-toggle span {
  display: block;
  width: 25px;
  height: 2px;
  background: var(--text-dark);
  transition: var(--transition);
}

/* ============================================
   HERO / BANNER (Home Only)
   ============================================ */
.hero {
  position: relative;
  height: 600px;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 1;
}

.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(0,0,0,0.6) 0%, rgba(0,0,0,0.3) 50%, rgba(0,0,0,0.1) 100%);
  z-index: 2;
}

.hero-content {
  position: relative;
  z-index: 3;
  max-width: 600px;
  color: var(--white);
  padding: 0 20px;
}

.hero-subtitle {
  font-size: 0.875rem;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  margin-bottom: 1rem;
  opacity: 0.9;
}

.hero-title {
  font-size: 3.5rem;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 1.5rem;
  color: var(--white);
}

.hero-text {
  font-size: 1.125rem;
  margin-bottom: 2rem;
  opacity: 0.9;
  color: rgba(255,255,255,0.9);
}

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

/* Hero Slider Dots */
.hero-dots {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
  display: flex;
  gap: 10px;
}

.dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(255,255,255,0.5);
  cursor: pointer;
  transition: var(--transition);
}

.dot.active {
  background: var(--white);
}

/* ============================================
   SECTIONS - COMMON
   ============================================ */
.section {
  padding: 80px 0;
}

.section-gray {
  background: var(--gray-100);
}

/* ============================================
   SERVICES PREVIEW (Home)
   ============================================ */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
}

.service-card {
  background: var(--white);
  padding: 40px 30px;
  text-align: center;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  border-bottom: 3px solid transparent;
}

.service-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
  border-bottom-color: var(--primary);
}

.service-icon {
  width: 70px;
  height: 70px;
  margin: 0 auto 20px;
  background: var(--primary-light);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.75rem;
  color: var(--primary);
  transition: var(--transition);
}

.service-card:hover .service-icon {
  background: var(--primary);
  color: var(--white);
}

.service-card h3 {
  margin-bottom: 10px;
  font-size: 1.25rem;
}

.service-card p {
  font-size: 0.9375rem;
  margin-bottom: 0;
}

/* ============================================
   FEATURES / WHY CHOOSE US
   ============================================ */
.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 40px;
}

.feature-item {
  display: flex;
  gap: 20px;
}

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

.feature-content h3 {
  margin-bottom: 8px;
}

.feature-content p {
  margin-bottom: 0;
  font-size: 0.9375rem;
}

/* ============================================
   TESTIMONIALS
   ============================================ */
.testimonials-slider {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}

.testimonial-item {
  padding: 20px;
}

.testimonial-text {
  font-size: 1.25rem;
  font-style: italic;
  color: var(--text-medium);
  margin-bottom: 30px;
  line-height: 1.8;
}

.testimonial-author {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
}

.testimonial-avatar {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid var(--primary);
}

.testimonial-name {
  font-weight: 700;
  color: var(--text-dark);
}

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

/* ============================================
   CTA SECTION
   ============================================ */
.cta-section {
  background: var(--primary);
  padding: 60px 0;
  text-align: center;
  color: var(--white);
}

.cta-section h2 {
  color: var(--white);
  margin-bottom: 10px;
}

.cta-section p {
  color: rgba(255,255,255,0.9);
  margin-bottom: 25px;
  font-size: 1.125rem;
}

/* ============================================
   ABOUT PAGE
   ============================================ */
.about-hero {
  background: linear-gradient(135deg, var(--primary-light) 0%, var(--white) 100%);
  padding: 100px 0 60px;
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.about-image {
  position: relative;
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

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

.about-content h2 {
  margin-bottom: 20px;
}

.about-content p {
  margin-bottom: 15px;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin-top: 40px;
}

.stat-item {
  text-align: center;
  padding: 30px;
  background: var(--white);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
}

.stat-number {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--primary);
  display: block;
}

.stat-label {
  font-size: 0.9375rem;
  color: var(--text-medium);
}

/* Team */
.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
}

.team-card {
  background: var(--white);
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  text-align: center;
}

.team-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
}

.team-img {
  width: 100%;
  height: 280px;
  object-fit: cover;
}

.team-info {
  padding: 25px;
}

.team-info h3 {
  margin-bottom: 5px;
}

.team-role {
  color: var(--primary);
  font-size: 0.875rem;
  font-weight: 600;
}

/* ============================================
   SERVICES PAGE
   ============================================ */
.page-header {
  background: linear-gradient(135deg, var(--secondary) 0%, var(--dark-bg) 100%);
  padding: 100px 0 60px;
  text-align: center;
  color: var(--white);
}

.page-header h1 {
  color: var(--white);
  font-size: 2.5rem;
  margin-bottom: 10px;
}

.page-header p {
  color: rgba(255,255,255,0.8);
  max-width: 600px;
  margin: 0 auto;
}

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

.service-detail-card {
  display: flex;
  gap: 25px;
  background: var(--white);
  padding: 35px;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
}

.service-detail-card:hover {
  box-shadow: var(--shadow-lg);
}

.service-detail-icon {
  width: 70px;
  height: 70px;
  min-width: 70px;
  background: var(--primary-light);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.75rem;
  color: var(--primary);
}

.service-detail-content h3 {
  margin-bottom: 10px;
}

.service-detail-content p {
  margin-bottom: 15px;
  font-size: 0.9375rem;
}

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

/* Process */
.process-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 30px;
  counter-reset: process;
}

.process-item {
  text-align: center;
  position: relative;
}

.process-item::after {
  content: '';
  position: absolute;
  top: 35px;
  right: -30px;
  width: 60px;
  height: 2px;
  background: var(--primary);
  opacity: 0.3;
}

.process-item:last-child::after {
  display: none;
}

.process-number {
  width: 70px;
  height: 70px;
  background: var(--primary);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  font-weight: 700;
  margin: 0 auto 20px;
}

.process-item h3 {
  margin-bottom: 10px;
}

/* Pricing */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
}

.pricing-card {
  background: var(--white);
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  text-align: center;
  transition: var(--transition);
  border: 2px solid transparent;
}

.pricing-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
}

.pricing-card.featured {
  border-color: var(--primary);
  transform: scale(1.05);
}

.pricing-header {
  padding: 35px 30px;
  background: var(--gray-100);
}

.pricing-card.featured .pricing-header {
  background: var(--primary);
  color: var(--white);
}

.pricing-card.featured .pricing-header h3,
.pricing-card.featured .pricing-header .price {
  color: var(--white);
}

.price {
  font-size: 3rem;
  font-weight: 700;
  color: var(--primary);
  display: block;
  margin: 10px 0;
}

.price span {
  font-size: 1rem;
  color: var(--text-light);
  font-weight: 400;
}

.pricing-features {
  padding: 30px;
}

.pricing-features li {
  padding: 12px 0;
  border-bottom: 1px solid var(--gray-200);
  color: var(--text-medium);
}

.pricing-features li:last-child {
  border-bottom: none;
}

.pricing-footer {
  padding: 0 30px 35px;
}

/* ============================================
   CONTACT PAGE
   ============================================ */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
}

.contact-info-cards {
  display: grid;
  gap: 25px;
}

.info-card {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  padding: 30px;
  background: var(--white);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
}

.info-card:hover {
  box-shadow: var(--shadow-md);
}

.info-card-icon {
  width: 55px;
  height: 55px;
  min-width: 55px;
  background: var(--primary-light);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  color: var(--primary);
}

.info-card-content h4 {
  margin-bottom: 5px;
}

.info-card-content p,
.info-card-content a {
  color: var(--text-medium);
  font-size: 0.9375rem;
}

/* Contact Form */
.contact-form-wrapper {
  background: var(--white);
  padding: 40px;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
}

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

.form-group label {
  display: block;
  margin-bottom: 8px;
  font-weight: 600;
  font-size: 0.875rem;
  color: var(--text-dark);
}

.form-control {
  width: 100%;
  padding: 14px 18px;
  border: 1px solid var(--gray-300);
  border-radius: var(--radius-sm);
  font-family: inherit;
  font-size: 0.9375rem;
  color: var(--text-dark);
  transition: var(--transition);
  background: var(--white);
}

.form-control:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(0, 188, 212, 0.1);
}

textarea.form-control {
  resize: vertical;
  min-height: 140px;
}

/* ============================================
   FOOTER
   ============================================ */
.main-footer {
  background: var(--footer-bg);
  color: var(--white);
  padding: 70px 0 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
  gap: 40px;
  margin-bottom: 50px;
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 20px;
}

.footer-logo .logo-name {
  color: var(--white);
}

.footer-logo .logo-tagline {
  color: rgba(255,255,255,0.6);
}

.footer-desc {
  color: rgba(255,255,255,0.7);
  font-size: 0.9375rem;
  line-height: 1.7;
}

.footer-title {
  color: var(--white);
  font-size: 1.125rem;
  margin-bottom: 25px;
  position: relative;
  padding-bottom: 12px;
}

.footer-title::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 40px;
  height: 2px;
  background: var(--primary);
}

.footer-blog-list li {
  margin-bottom: 15px;
}

.blog-link {
  display: flex;
  flex-direction: column;
}

.blog-date {
  font-size: 0.8125rem;
  color: var(--primary);
  margin-bottom: 3px;
}

.blog-title {
  color: rgba(255,255,255,0.8);
  font-size: 0.9375rem;
  transition: var(--transition);
}

.blog-title:hover {
  color: var(--primary);
}

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

.footer-links a {
  color: rgba(255,255,255,0.7);
  font-size: 0.9375rem;
  transition: var(--transition);
}

.footer-links a:hover {
  color: var(--primary);
  padding-left: 5px;
}

.contact-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 15px;
  color: rgba(255,255,255,0.7);
  font-size: 0.9375rem;
}

.contact-list i {
  color: var(--primary);
  margin-top: 3px;
}

.contact-list a {
  color: rgba(255,255,255,0.7);
}

.contact-list a:hover {
  color: var(--primary);
}

.social-links {
  display: flex;
  gap: 12px;
  margin-top: 20px;
}

.social-links a {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: rgba(255,255,255,0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 0.875rem;
  transition: var(--transition);
}

.social-links a:hover {
  background: var(--primary);
  transform: translateY(-3px);
}

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding: 25px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 15px;
}

.footer-bottom p {
  color: rgba(255,255,255,0.5);
  font-size: 0.875rem;
  margin: 0;
}

.footer-bottom-links {
  display: flex;
  gap: 20px;
}

.footer-bottom-links a {
  color: rgba(255,255,255,0.5);
  font-size: 0.875rem;
}

.footer-bottom-links a:hover {
  color: var(--primary);
}

/* ============================================
   LAZY LOADING
   ============================================ */
.lazy-img {
  opacity: 0;
  transition: opacity 0.5s ease;
}

.lazy-img.loaded {
  opacity: 1;
}

.img-placeholder {
  background: linear-gradient(90deg, var(--gray-200) 25%, var(--gray-100) 50%, var(--gray-200) 75%);
  background-size: 200% 100%;
  animation: shimmer 1.5s infinite;
}

@keyframes shimmer {
  0% { background-position: 200% 0; }
  100% { background-position: -200% 0; }
}

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 1024px) {
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
  
  .about-grid,
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
}

@media (max-width: 768px) {
  h1 { font-size: 2rem; }
  h2 { font-size: 1.75rem; }
  
  .hero {
    height: 500px;
  }
  
  .hero-title {
    font-size: 2.25rem;
  }
  
  .mobile-menu-toggle {
    display: flex;
  }
  
  .main-nav {
    position: fixed;
    top: 0;
    right: -100%;
    width: 80%;
    max-width: 320px;
    height: 100vh;
    background: var(--white);
    box-shadow: var(--shadow-lg);
    padding: 80px 30px 30px;
    transition: var(--transition);
    z-index: 999;
  }
  
  .main-nav.active {
    right: 0;
  }
  
  .nav-list {
    flex-direction: column;
    gap: 0;
  }
  
  .nav-link {
    display: block;
    padding: 15px 0;
    border-bottom: 1px solid var(--gray-200);
  }
  
  .btn-order {
    display: none;
  }
  
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  
  .stats-grid {
    grid-template-columns: 1fr;
  }
  
  .services-list {
    grid-template-columns: 1fr;
  }
  
  .service-detail-card {
    flex-direction: column;
    text-align: center;
  }
  
  .process-item::after {
    display: none;
  }
  
  .pricing-card.featured {
    transform: none;
  }
  
  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }
}

@media (max-width: 480px) {
  .hero-title {
    font-size: 1.75rem;
  }
  
  .section {
    padding: 50px 0;
  }
  
  .contact-form-wrapper {
    padding: 25px;
  }
}

/* Print Styles */
@media print {
  .top-bar, .main-header, .main-footer, .hero-buttons, .cta-section {
    display: none;
  }
  
  .hero {
    height: auto;
    padding: 40px 0;
  }
  
  .hero-overlay {
    display: none;
  }
  
  .hero-content {
    color: var(--text-dark);
    max-width: 100%;
  }
  
  .hero-title {
    color: var(--text-dark);
  }
}
/* ============================================
   PERFORMANCE & WEB VITALS OPTIMIZATIONS
   ============================================ */

/* Prevent CLS from async header/footer loading */
#header-container {
  min-height: 120px;
}

#footer-container {
  min-height: 300px;
}

/* Lazy image placeholder to prevent layout shift */
.lazy-img {
  background-color: var(--gray-200);
  opacity: 0;
  transition: opacity 0.5s ease;
}

.lazy-img.loaded {
  opacity: 1;
  background-color: transparent;
}

/* Respect reduced motion preferences */
@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }

  .lazy-img {
    opacity: 1;
    transition: none;
  }
}

/* Focus visible for accessibility */
a:focus-visible,
button:focus-visible,
input:focus-visible,
textarea:focus-visible {
  outline: 2px solid var(--primary);
  outline-offset: 2px;
}

/* Skip link for accessibility */
.skip-link {
  position: absolute;
  top: -40px;
  left: 0;
  background: var(--primary);
  color: var(--white);
  padding: 8px 16px;
  z-index: 10000;
  transition: top 0.3s;
}

.skip-link:focus {
  top: 0;
}

/* Quick styling for logo & whatsapp integration */
.brand-logo {
  max-height: 50px;
  width: auto;
  display: block;
}

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

.whatsapp-link {
  color: #25d366;
  font-weight: 500;
  display: inline-flex;
  align-items: center;
  gap: 5px;
  text-decoration: none;
}

.whatsapp-link:hover {
  text-decoration: underline;
}
/* ============================================
   MOBILE TOP BAR FIX
   ============================================ */
@media (max-width: 768px) {
  .top-bar .container {
    flex-direction: column;
    text-align: center;
    gap: 8px;
    padding: 8px 0;
  }
  
  .top-bar-right {
    justify-content: center;
    width: 100%;
    gap: 15px;
    flex-wrap: wrap;
  }
  
  .top-bar-left span {
    display: inline-block;
    line-height: 1.4;
  }
}