/* navasharimantra - Professional CA Website */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700;800&display=swap');

:root {
  --primary: #0d6efd;
  --primary-dark: #0b5ed7;
  --secondary: #6c757d;
  --success: #198754;
  --warning: #ffc107;
  --danger: #dc3545;
  --dark: #212529;
  --light: #f8f9fa;
  --white: #ffffff;
  --text: #333333;
  --text-muted: #6c757d;
  --border: #dee2e6;
  --shadow: 0 0.5rem 1rem rgba(0,0,0,0.15);
  --shadow-sm: 0 0.125rem 0.25rem rgba(0,0,0,0.075);
  --radius: 8px;
  --transition: all 0.3s ease;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Poppins', sans-serif;
  font-size: 16px;
  line-height: 1.6;
  color: var(--text);
  background: var(--white);
}

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

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

svg {
  display: inline-block;
  vertical-align: middle;
  flex-shrink: 0;
}

.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 15px;
}

/* ==================== HEADER ==================== */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: var(--white);
  box-shadow: var(--shadow-sm);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 70px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 10px;
}

.brand-mark {
  width: 45px;
  height: 45px;
  min-width: 45px;
  background: linear-gradient(135deg, var(--primary), var(--success));
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-weight: 700;
  font-size: 16px;
}

.brand span:last-child {
  font-weight: 600;
  font-size: 18px;
  color: var(--dark);
  line-height: 1.2;
}

.brand-sub {
  font-size: 11px;
  font-weight: 500;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

/* Navigation */
.nav-menu {
  display: flex;
  align-items: center;
  gap: 8px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.nav-item {
  position: relative;
}

.nav-link {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  padding: 10px 16px;
  font-size: 15px;
  font-weight: 500;
  color: var(--text);
  border-radius: var(--radius);
  white-space: nowrap;
}

.nav-link:hover {
  color: var(--primary);
  background: var(--light);
}

.nav-link svg {
  width: 14px !important;
  height: 14px !important;
  min-width: 14px;
  max-width: 14px;
  flex-shrink: 0;
}

.nav-item:hover .nav-link svg {
  transform: rotate(180deg);
}

/* Dropdown */
.dropdown {
  position: absolute;
  top: 100%;
  left: 0;
  width: 280px;
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 8px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: all 0.2s ease;
  z-index: 1001;
}

.nav-item:hover .dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateY(5px);
}

.dropdown-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 12px;
  border-radius: var(--radius);
}

.dropdown-item:hover {
  background: var(--light);
}

.dropdown-icon {
  width: 36px;
  height: 36px;
  min-width: 36px;
  max-width: 36px;
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.dropdown-icon svg {
  width: 18px !important;
  height: 18px !important;
  max-width: 18px;
  flex-shrink: 0;
}

.dropdown-icon.blue { background: #e7f1ff; color: var(--primary); }
.dropdown-icon.green { background: #d1e7dd; color: var(--success); }
.dropdown-icon.amber { background: #fff3cd; color: #997404; }
.dropdown-icon.purple { background: #e2d9f3; color: #6f42c1; }

.dropdown-content h4 {
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 2px;
  color: var(--dark);
}

.dropdown-content p {
  font-size: 12px;
  color: var(--text-muted);
  margin: 0;
}

.nav-cta {
  background: var(--primary) !important;
  color: var(--white) !important;
  padding: 10px 20px !important;
  border-radius: var(--radius) !important;
  font-weight: 600 !important;
}

.nav-cta:hover {
  background: var(--primary-dark) !important;
  color: var(--white) !important;
}

.menu-btn {
  display: none;
  background: none;
  border: none;
  font-size: 24px;
  cursor: pointer;
  padding: 5px;
  line-height: 1;
}

/* ==================== HERO SLIDER ==================== */
.hero-slider {
  position: relative;
  min-height: 85vh;
  padding-top: 70px;
  overflow: hidden;
  transition: background 0.8s ease;
}

.slider-track {
  position: relative;
  width: 100%;
  height: 100%;
}

.slider-slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  min-height: calc(85vh - 70px);
  display: flex;
  align-items: center;
  opacity: 0;
  visibility: hidden;
  transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
  padding: 50px 0;
}

.slider-slide.active {
  position: relative;
  opacity: 1;
  visibility: visible;
}

.slider-slide .hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  color: white;
}

.slide-content {
  animation: slideInLeft 0.8s ease forwards;
}

.slider-slide.active .slide-content {
  animation: slideInLeft 0.8s ease forwards;
}

@keyframes slideInLeft {
  from {
    opacity: 0;
    transform: translateX(-50px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

.slide-badge {
  display: inline-block;
  background: rgba(255,255,255,0.2);
  backdrop-filter: blur(10px);
  padding: 8px 16px;
  border-radius: 50px;
  font-size: 13px;
  font-weight: 600;
  margin-bottom: 20px;
  animation: fadeInDown 0.6s ease 0.2s both;
}

@keyframes fadeInDown {
  from {
    opacity: 0;
    transform: translateY(-20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.slider-slide h1 {
  font-size: 52px;
  font-weight: 700;
  line-height: 1.1;
  margin-bottom: 20px;
}

.slider-slide h1 span {
  color: var(--warning);
  display: block;
}

.slider-slide .slide-content > p {
  font-size: 18px;
  opacity: 0.9;
  margin-bottom: 25px;
  line-height: 1.7;
  max-width: 500px;
}

.slide-features {
  list-style: none;
  padding: 0;
  margin: 0 0 25px 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.slide-features li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 15px;
  opacity: 0.95;
}

.slide-features li svg {
  color: var(--warning);
  flex-shrink: 0;
}


.slide-visual {
  display: flex;
  align-items: center;
  justify-content: center;
  animation: slideInRight 0.8s ease 0.3s both;
}

@keyframes slideInRight {
  from {
    opacity: 0;
    transform: translateX(50px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

.visual-icon {
  width: 280px;
  height: 280px;
  background: rgba(255,255,255,0.1);
  backdrop-filter: blur(20px);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  animation: float 4s ease-in-out infinite;
  border: 2px solid rgba(255,255,255,0.2);
}

.visual-icon svg {
  width: 120px !important;
  height: 120px !important;
  color: white;
  opacity: 0.9;
}

@keyframes float {
  0%, 100% { transform: translateY(0) rotate(0deg); }
  50% { transform: translateY(-20px) rotate(5deg); }
}

/* Slider Controls */
.slider-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 50px;
  height: 50px;
  border: none;
  background: rgba(255,255,255,0.2);
  backdrop-filter: blur(10px);
  color: white;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  z-index: 10;
}

.slider-btn:hover {
  background: rgba(255,255,255,0.4);
  transform: translateY(-50%) scale(1.1);
}

.slider-btn.prev { left: 30px; }
.slider-btn.next { right: 30px; }

.slider-btn svg {
  width: 24px !important;
  height: 24px !important;
}

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

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

.slider-dot.active {
  background: white;
  border-color: white;
  transform: scale(1.3);
}

.slider-dot:hover {
  border-color: white;
}

/* Progress Bar */
.slider-progress {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: rgba(255,255,255,0.2);
}

.progress-bar {
  height: 100%;
  background: var(--warning);
  width: 0%;
  transition: width 5s linear;
}

/* Legacy Hero (keep for compatibility) */
.hero {
  padding: 120px 0 60px;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color: var(--white);
  min-height: 90vh;
  display: flex;
  align-items: center;
}

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

.hero h1 {
  font-size: 42px;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 20px;
}

.hero h1 span {
  color: var(--warning);
}

.hero p {
  font-size: 18px;
  opacity: 0.9;
  margin-bottom: 30px;
  line-height: 1.7;
}

.cta-row {
  display: flex;
  gap: 15px;
  flex-wrap: wrap;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 28px;
  font-size: 15px;
  font-weight: 600;
  border-radius: var(--radius);
  border: 2px solid transparent;
  cursor: pointer;
  transition: var(--transition);
}

.btn svg {
  width: 18px !important;
  height: 18px !important;
  min-width: 18px;
  max-width: 18px;
}

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

.btn-primary:hover {
  background: var(--light);
  transform: translateY(-2px);
}

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

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

/* Trust Section */
.trust {
  margin-top: 40px;
}

.trust-text {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  opacity: 0.9;
  margin-bottom: 15px;
}

.trust-text svg {
  width: 18px !important;
  height: 18px !important;
  min-width: 18px;
  max-width: 18px;
  color: var(--warning);
}

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

.badge {
  display: flex;
  align-items: center;
  gap: 6px;
  background: rgba(255,255,255,0.2);
  padding: 8px 14px;
  border-radius: 50px;
  font-size: 13px;
  font-weight: 500;
}

.badge svg {
  width: 16px !important;
  height: 16px !important;
  min-width: 16px;
  max-width: 16px;
}

/* Hero Carousel */
.hero-carousel-wrapper {
  position: relative;
  width: 100%;
  max-width: 450px;
}

.hero-carousel {
  overflow: hidden;
  border-radius: var(--radius);
}

.carousel-track {
  display: flex;
  transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.carousel-slide {
  min-width: 100%;
  padding: 5px;
}

.carousel-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 30px;
  min-height: 280px;
  display: flex;
  flex-direction: column;
  animation: cardFloat 3s ease-in-out infinite;
}

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

@keyframes cardFloat {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}

.carousel-card .card-link {
  margin-top: auto;
  padding-top: 15px;
  color: var(--primary);
  font-weight: 600;
  font-size: 14px;
  display: inline-flex;
  align-items: center;
  gap: 5px;
  transition: all 0.3s ease;
}

.carousel-card .card-link:hover {
  gap: 10px;
}

.carousel-controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 15px;
  margin-top: 20px;
}

.carousel-btn {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: none;
  background: rgba(255,255,255,0.2);
  color: white;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

.carousel-btn:hover {
  background: rgba(255,255,255,0.4);
  transform: scale(1.1);
}

.carousel-btn svg {
  width: 20px !important;
  height: 20px !important;
}

.carousel-dots {
  display: flex;
  gap: 8px;
}

.carousel-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  border: none;
  background: rgba(255,255,255,0.3);
  cursor: pointer;
  transition: all 0.3s ease;
  padding: 0;
}

.carousel-dot.active {
  background: white;
  transform: scale(1.2);
}

.carousel-dot:hover {
  background: rgba(255,255,255,0.6);
}

/* Hero Cards (legacy) */
.hero-cards {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 25px;
  box-shadow: var(--shadow);
  color: var(--text);
  transition: var(--transition);
}

.card:hover {
  transform: translateY(-5px);
  box-shadow: 0 1rem 2rem rgba(0,0,0,0.15);
}

.card-icon {
  width: 48px;
  height: 48px;
  min-width: 48px;
  max-width: 48px;
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 15px;
  flex-shrink: 0;
}

.card-icon svg {
  width: 22px !important;
  height: 22px !important;
  max-width: 22px;
  flex-shrink: 0;
}

.card-icon.blue { background: #e7f1ff; color: var(--primary); }
.card-icon.green { background: #d1e7dd; color: var(--success); }
.card-icon.amber { background: #fff3cd; color: #997404; }
.card-icon.purple { background: #e2d9f3; color: #6f42c1; }

.card h3 {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 10px;
  color: var(--dark);
}

.card p {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.6;
}

.card-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

/* ==================== STATS ==================== */
.stats {
  background: var(--dark);
  padding: 60px 0;
}

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

.stat-item h3 {
  font-size: 42px;
  font-weight: 700;
  color: var(--warning);
  margin-bottom: 5px;
}

.stat-item h3 span {
  color: var(--warning);
}

.stat-item p {
  font-size: 14px;
  color: rgba(255,255,255,0.7);
}

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

.section-header {
  text-align: center;
  max-width: 600px;
  margin: 0 auto 50px;
}

.section-title {
  font-size: 36px;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 15px;
}

.section-subtitle {
  font-size: 16px;
  color: var(--text-muted);
}

/* Features */
.features {
  background: var(--light);
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 25px;
}

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

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

.feature-icon {
  width: 60px;
  height: 60px;
  min-width: 60px;
  max-width: 60px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  flex-shrink: 0;
}

.feature-icon svg {
  width: 26px !important;
  height: 26px !important;
  max-width: 26px;
  flex-shrink: 0;
}

.feature h4 {
  font-size: 17px;
  font-weight: 600;
  margin-bottom: 10px;
  color: var(--dark);
}

.feature p {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.5;
}

/* ==================== FOOTER ==================== */
.site-footer {
  background: var(--dark);
  color: rgba(255,255,255,0.7);
  padding: 60px 0 20px;
}

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

.footer-brand {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 15px;
}

.footer-brand .brand-mark {
  width: 40px;
  height: 40px;
}

.footer-brand span:last-child {
  font-size: 18px;
  font-weight: 600;
  color: var(--white);
}

.site-footer p {
  font-size: 14px;
  line-height: 1.7;
}

.footer-grid h5 {
  font-size: 16px;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 20px;
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-links a {
  font-size: 14px;
  color: rgba(255,255,255,0.7);
}

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

.footer-contact div {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 12px;
  font-size: 14px;
}

.footer-contact svg {
  width: 18px !important;
  height: 18px !important;
  min-width: 18px;
  max-width: 18px;
  color: var(--primary);
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 20px;
  border-top: 1px solid rgba(255,255,255,0.1);
  font-size: 14px;
}

/* ==================== PAGE HERO ==================== */
.page-hero {
  padding: 140px 0 60px;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color: var(--white);
  text-align: center;
}

.page-hero h1 {
  font-size: 42px;
  font-weight: 700;
  margin-bottom: 15px;
}

.page-hero p {
  font-size: 18px;
  opacity: 0.9;
  max-width: 600px;
  margin: 0 auto;
}

/* Services Grid */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 25px;
}

/* Contact Grid */
.contact-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 30px;
}

/* Form Styles */
.form-group {
  margin-bottom: 20px;
}

.form-group label {
  display: block;
  font-size: 14px;
  font-weight: 500;
  margin-bottom: 8px;
  color: var(--text);
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 12px 15px;
  font-size: 15px;
  font-family: inherit;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: var(--white);
  transition: var(--transition);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(13,110,253,0.15);
}

/* ==================== ANIMATIONS ==================== */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.animate-fade-in {
  animation: fadeInUp 0.6s ease forwards;
}

.animate-delay-1 { animation-delay: 0.1s; }
.animate-delay-2 { animation-delay: 0.2s; }
.animate-delay-3 { animation-delay: 0.3s; }

/* ==================== RESPONSIVE ==================== */
@media (max-width: 1024px) {
  .slider-slide .hero-grid {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 40px;
  }
  
  .slider-slide h1 {
    font-size: 38px;
  }
  
  .slider-slide h1 span {
    display: inline;
  }
  
  .slide-content {
    order: 2;
  }
  
  .slide-visual {
    order: 1;
  }
  
  .visual-icon {
    width: 200px;
    height: 200px;
  }
  
  .visual-icon svg {
    width: 80px !important;
    height: 80px !important;
  }
  
  .slide-features {
    align-items: center;
  }
  
  .slider-slide .slide-content > p {
    margin-left: auto;
    margin-right: auto;
  }
  
  .slider-btn {
    display: none;
  }
  
  .hero-grid {
    grid-template-columns: 1fr;
    text-align: center;
  }
  
  .hero h1 {
    font-size: 36px;
  }
  
  .cta-row {
    justify-content: center;
  }
  
  .trust {
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  
  .hero-cards {
    max-width: 500px;
    margin: 0 auto;
  }
  
  .hero-carousel-wrapper {
    max-width: 400px;
    margin: 0 auto;
  }
  
  .feature-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
  
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .nav-menu {
    display: none;
    position: fixed;
    top: 70px;
    left: 0;
    right: 0;
    background: var(--white);
    padding: 20px;
    flex-direction: column;
    gap: 10px;
    box-shadow: var(--shadow);
  }
  
  .nav-menu.open {
    display: flex;
  }
  
  .menu-btn {
    display: block;
  }
  
  .dropdown {
    position: static;
    opacity: 1;
    visibility: visible;
    transform: none;
    box-shadow: none;
    padding: 10px 0 10px 20px;
    display: none;
  }
  
  .nav-item.open .dropdown {
    display: block;
  }
  
  .hero-slider {
    min-height: auto;
  }
  
  .slider-slide {
    min-height: auto;
    padding: 40px 0 80px;
  }
  
  .slider-slide h1 {
    font-size: 28px;
  }
  
  .slider-slide .slide-content > p {
    font-size: 15px;
  }
  
  
  .visual-icon {
    width: 150px;
    height: 150px;
  }
  
  .visual-icon svg {
    width: 60px !important;
    height: 60px !important;
  }
  
  .slider-dots {
    bottom: 25px;
  }
  
  .hero {
    padding: 100px 0 50px;
    min-height: auto;
  }
  
  .hero h1 {
    font-size: 28px;
  }
  
  .hero p {
    font-size: 16px;
  }
  
  .card-grid {
    grid-template-columns: 1fr;
  }
  
  .feature-grid {
    grid-template-columns: 1fr;
  }
  
  .stats-grid {
    grid-template-columns: 1fr 1fr;
    gap: 20px;
  }
  
  .stat-item h3 {
    font-size: 32px;
  }
  
  .section-title {
    font-size: 28px;
  }
  
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  
  .footer-bottom {
    flex-direction: column;
    gap: 10px;
    text-align: center;
  }
  
  .services-grid {
    grid-template-columns: 1fr;
  }
  
  .contact-grid {
    grid-template-columns: 1fr;
  }
  
  .page-hero {
    padding: 120px 0 40px;
  }
  
  .page-hero h1 {
    font-size: 32px;
  }
}

/* ==================== SERVICE MODAL ==================== */
.service-card {
  cursor: pointer;
}

.service-card:hover {
  border-color: var(--primary);
}

.service-modal {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 2000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
}

.service-modal.active {
  opacity: 1;
  visibility: visible;
}

.modal-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.6);
  backdrop-filter: blur(4px);
}

.modal-content {
  position: relative;
  background: var(--white);
  border-radius: 16px;
  max-width: 900px;
  width: 95%;
  max-height: 90vh;
  overflow-y: auto;
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.25);
  transform: translateY(20px);
  transition: transform 0.3s ease;
}

.service-modal.active .modal-content {
  transform: translateY(0);
}

.modal-close {
  position: absolute;
  top: 15px;
  right: 15px;
  width: 40px;
  height: 40px;
  border: none;
  background: var(--light);
  border-radius: 50%;
  font-size: 24px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10;
  transition: all 0.2s ease;
}

.modal-close:hover {
  background: var(--danger);
  color: white;
}

.modal-body {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
}

.modal-service-info {
  padding: 40px;
  background: var(--light);
  border-radius: 16px 0 0 16px;
}

.modal-service-info h2 {
  font-size: 28px;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 15px;
}

.modal-service-info .service-desc {
  font-size: 15px;
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 25px;
}

.service-meta {
  display: flex;
  gap: 20px;
  margin-bottom: 25px;
}

.meta-item {
  background: var(--white);
  padding: 15px 20px;
  border-radius: var(--radius);
  flex: 1;
}

.meta-label {
  display: block;
  font-size: 12px;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 5px;
}

.meta-value {
  font-size: 18px;
  font-weight: 700;
  color: var(--dark);
}

.meta-value.price {
  color: var(--success);
}

.modal-service-info h4 {
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 15px;
  color: var(--dark);
}

.service-features {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}

.service-features li {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  color: var(--text);
}

.service-features li svg {
  color: var(--success);
  flex-shrink: 0;
}

.modal-form {
  padding: 40px;
}

.modal-form h3 {
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 8px;
  color: var(--dark);
}

.modal-form > p {
  font-size: 14px;
  color: var(--text-muted);
  margin-bottom: 25px;
}

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

@media (max-width: 768px) {
  .modal-body {
    grid-template-columns: 1fr;
  }
  
  .modal-service-info {
    border-radius: 16px 16px 0 0;
    padding: 30px 20px;
  }
  
  .modal-form {
    padding: 30px 20px;
  }
  
  .service-features {
    grid-template-columns: 1fr;
  }
  
  .service-meta {
    flex-direction: column;
    gap: 10px;
  }
  
  .form-row {
    grid-template-columns: 1fr;
  }
}

/* Utility */
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
  border: 0;
}
