/* Mobile-First CSS Reset */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  font-size: 16px;
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  line-height: 1.5;
  color: #1f2937;
  background-color: #ffffff;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

/* Mobile-First Container */
.container {
  width: 100%;
  max-width: 100%;
  margin: 0 auto;
  padding: 0 16px;
}

@media (min-width: 768px) {
  .container {
    max-width: 1200px;
    padding: 0 24px;
  }
}

/* Mobile-First Typography */
h1 {
  font-size: 1.75rem;
  font-weight: 700;
  line-height: 1.2;
  color: #111827;
  margin-bottom: 16px;
}

h2 {
  font-size: 1.5rem;
  font-weight: 600;
  line-height: 1.3;
  color: #111827;
  margin-bottom: 12px;
}

h3 {
  font-size: 1.125rem;
  font-weight: 600;
  line-height: 1.3;
  color: #111827;
  margin-bottom: 8px;
}

p {
  font-size: 1rem;
  line-height: 1.6;
  color: #4b5563;
  margin-bottom: 16px;
}

/* Skip Link for Accessibility */
.skip-link {
  position: absolute;
  top: -40px;
  left: 6px;
  background: #1976d2;
  color: white;
  padding: 8px;
  text-decoration: none;
  border-radius: 4px;
  z-index: 1000;
}

.skip-link:focus {
  top: 6px;
}

/* Mobile-Optimized Buttons */
.btn-primary,
.btn-secondary,
.btn-call,
.cta-button {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 16px 24px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 600;
  font-size: 1rem;
  transition: all 0.2s ease;
  border: none;
  cursor: pointer;
  width: 100%;
  min-height: 48px;
  text-align: center;
}

.btn-primary {
  background-color: #1976d2;
  color: white;
  box-shadow: 0 2px 8px rgba(25, 118, 210, 0.3);
}

.btn-primary:hover,
.btn-primary:active {
  background-color: #1565c0;
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(25, 118, 210, 0.4);
}

.btn-secondary {
  background-color: #10b981;
  color: white;
  box-shadow: 0 2px 8px rgba(16, 185, 129, 0.3);
}

.btn-secondary:hover,
.btn-secondary:active {
  background-color: #059669;
  transform: translateY(-1px);
}

/* Mobile-First Header Styles */
.header {
  background-color: white;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  position: sticky;
  top: 0;
  z-index: 100;
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 60px;
  padding: 0 16px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
  color: #1f2937;
  flex: 1;
  min-width: 0;
}

.logo-icon {
  width: 32px;
  height: 32px;
  background: linear-gradient(135deg, #1976d2, #42a5f5);
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  flex-shrink: 0;
}

.logo-icon .material-icons {
  font-size: 18px;
}

.logo-text {
  font-weight: 700;
  font-size: 0.75rem;
  color: #1f2937;
  line-height: 1.1;
  white-space: nowrap;
  display: block !important;
  visibility: visible !important;
}

.btn-call {
  background-color: #ef4444;
  color: white;
  padding: 10px;
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.2s ease;
  flex-shrink: 0;
}

.btn-call:hover,
.btn-call:active {
  background-color: #dc2626;
  transform: scale(1.05);
}

.btn-call .material-icons {
  font-size: 20px;
}

.call-text {
  display: none;
}

/* Tablet and Desktop adjustments */
@media (min-width: 768px) {
  .nav {
    height: 64px;
    padding: 0 24px;
  }

  .logo-icon {
    width: 40px;
    height: 40px;
  }

  .logo-icon .material-icons {
    font-size: 24px;
  }

  .logo-text {
    font-size: 1rem;
  }

  .btn-call {
    padding: 12px 20px;
    width: auto;
    height: auto;
    border-radius: 8px;
    gap: 8px;
  }

  .call-text {
    display: inline;
    font-size: 0.875rem;
  }
}

/* Large screens */
@media (min-width: 1024px) {
  .nav {
    padding: 0 32px;
  }

  .logo-text {
    font-size: 1.1rem;
  }
}

/* Hide navigation menu on mobile */
.nav-menu {
  display: none;
}

@media (min-width: 768px) {
  .nav-menu {
    display: flex;
    gap: 24px;
  }
}

.nav-link {
  color: #6b7280;
  text-decoration: none;
  font-weight: 500;
  font-size: 0.875rem;
  padding: 8px 12px;
  border-radius: 4px;
  transition: all 0.2s ease;
}

.nav-link:hover {
  color: #1976d2;
  background-color: #f3f4f6;
}

/* Hero Section with Background Image */
.hero {
  position: relative;
  padding: 40px 0;
  min-height: 500px;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero-background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -2;
}

.hero-background img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(25, 118, 210, 0.9) 0%, rgba(21, 101, 192, 0.8) 100%);
  z-index: -1;
}

.hero-content {
  position: relative;
  z-index: 1;
}

.hero-title {
  color: white;
  font-size: 1.875rem;
  font-weight: 800;
  margin-bottom: 16px;
  line-height: 1.1;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.hero-subtitle {
  color: rgba(255, 255, 255, 0.95);
  font-size: 1rem;
  margin-bottom: 24px;
  line-height: 1.6;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
}

.hero-features {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
  margin-bottom: 32px;
}

.feature {
  display: flex;
  align-items: center;
  gap: 8px;
  background-color: white;
  padding: 12px;
  border-radius: 8px;
  font-size: 0.875rem;
  font-weight: 600;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  color: #1976d2;
}

.feature .material-icons {
  font-size: 20px;
  color: #1976d2;
}

.hero-actions {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 32px;
}

.hero-image {
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
  margin-bottom: 24px;
}

.hero-image img {
  width: 100%;
  height: 240px;
  object-fit: cover;
  display: block;
}

.hero-badges {
  position: absolute;
  bottom: 12px;
  left: 12px;
  right: 12px;
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

.hero-badge {
  display: flex;
  align-items: center;
  gap: 4px;
  background: rgba(255, 255, 255, 0.95);
  color: #1976d2;
  padding: 8px 12px;
  border-radius: 20px;
  font-size: 0.75rem;
  font-weight: 600;
  backdrop-filter: blur(10px);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.hero-badge .material-icons {
  font-size: 16px;
}

/* Mobile-First Trust Section */
.trust-section {
  background-color: #f9fafb;
  padding: 24px 0;
}

.trust-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
}

.trust-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  padding: 16px 12px;
  background-color: white;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  text-align: center;
}

.trust-icon {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background-color: #e3f2fd;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #1976d2;
}

.trust-icon .material-icons {
  font-size: 24px;
}

.trust-text {
  font-size: 0.875rem;
  font-weight: 700;
  color: #111827;
  margin-bottom: 2px;
}

.trust-subtext {
  font-size: 0.75rem;
  color: #6b7280;
}

/* Mobile-First Statistics Section */
.stats-section {
  background: linear-gradient(135deg, #1976d2 0%, #1565c0 100%);
  color: white;
  padding: 32px 0;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  text-align: center;
}

.stat-item {
  padding: 16px 8px;
}

.stat-number {
  font-size: 2rem;
  font-weight: 800;
  line-height: 1;
  margin-bottom: 8px;
  display: block;
}

.stat-label {
  font-size: 0.875rem;
  opacity: 0.9;
  font-weight: 500;
}

/* Mobile-First Section Styles */
.section {
  padding: 32px 0;
}

.section-alt {
  background-color: #f9fafb;
}

.section-header {
  text-align: center;
  margin-bottom: 32px;
}

.section-title {
  color: #111827;
  margin-bottom: 12px;
  font-size: 1.5rem;
  font-weight: 700;
}

.section-subtitle {
  color: #6b7280;
  font-size: 1rem;
  line-height: 1.6;
  margin-bottom: 0;
}

/* Mobile-First Services Grid */
.services-grid {
  display: grid;
  gap: 20px;
}

.service-card {
  background: white;
  padding: 24px;
  border-radius: 12px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  text-align: center;
  transition: all 0.2s ease;
  border: 2px solid #e5e7eb;
}

.service-card:hover,
.service-card:active {
  transform: translateY(-2px);
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.15);
  border-color: #1976d2;
}

.service-icon {
  width: 64px;
  height: 64px;
  margin: 0 auto 16px;
  background-color: #e3f2fd;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #1976d2;
}

.service-icon .material-icons {
  font-size: 32px;
}

.service-title {
  font-size: 1.125rem;
  font-weight: 700;
  margin-bottom: 12px;
  color: #111827;
}

.service-description {
  font-size: 0.875rem;
  color: #6b7280;
  line-height: 1.6;
  margin-bottom: 16px;
}

.service-limit {
  background: linear-gradient(135deg, #e8f5e9, #c8e6c9);
  padding: 12px;
  border-radius: 8px;
  border-left: 4px solid #10b981;
}

.service-limit-title {
  font-weight: 600;
  color: #10b981;
  font-size: 0.875rem;
  margin-bottom: 4px;
}

.service-limit-text {
  font-size: 0.75rem;
  color: #6b7280;
}

.transparency-badge {
  background: linear-gradient(135deg, #fff3e0, #ffe0b2);
  padding: 12px;
  border-radius: 8px;
  border-left: 4px solid #ff9800;
}

.transparency-badge-text {
  font-size: 0.875rem;
  font-weight: 600;
  color: #ff9800;
}

/* Mobile-First Pricing Section */
.pricing-section {
  background-color: #f9fafb;
}

.pricing-grid {
  display: grid;
  gap: 20px;
  margin-bottom: 32px;
}

.pricing-card {
  background: white;
  border-radius: 12px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  position: relative;
  transition: all 0.2s ease;
  border: 3px solid transparent;
}

.pricing-card:hover,
.pricing-card:active {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
}

.utility-card {
  border-color: #ff9800;
}

.non-utility-card {
  border-color: #10b981;
}

.recommended {
  position: relative;
}

.pricing-badge {
  position: absolute;
  top: -2px;
  right: 16px;
  background: #10b981;
  color: white;
  padding: 6px 16px;
  border-radius: 0 0 8px 8px;
  font-size: 0.75rem;
  font-weight: 700;
  z-index: 1;
}

.pricing-header {
  background: linear-gradient(135deg, #f5f5f5, #e0e0e0);
  padding: 24px;
  text-align: center;
}

.utility-card .pricing-header {
  background: linear-gradient(135deg, #fff3e0, #ffe0b2);
}

.non-utility-card .pricing-header {
  background: linear-gradient(135deg, #e8f5e9, #c8e6c9);
}

.pricing-title {
  font-size: 1.25rem;
  font-weight: 700;
  color: #111827;
  margin-bottom: 8px;
}

.pricing-rate {
  font-size: 2.5rem;
  font-weight: 800;
  color: #1976d2;
  margin-bottom: 4px;
}

.utility-card .pricing-rate {
  color: #ff9800;
}

.non-utility-card .pricing-rate {
  color: #10b981;
}

.pricing-content {
  padding: 24px;
}

.pricing-features {
  list-style: none;
  margin-bottom: 20px;
}

.pricing-features li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 16px;
  font-size: 0.875rem;
  line-height: 1.5;
}

.pricing-features .material-icons {
  font-size: 20px;
  margin-top: 2px;
  flex-shrink: 0;
}

.pricing-features .material-icons.check_circle {
  color: #10b981;
}

.pricing-features .material-icons.info {
  color: #2196f3;
}

.pricing-features .material-icons.warning {
  color: #ff9800;
}

.pricing-features .material-icons.phone {
  color: #1976d2;
}

.pricing-features .material-icons.block {
  color: #f44336;
}

.pricing-features .material-icons.verified {
  color: #10b981;
}

.pricing-features .material-icons.money_back {
  color: #10b981;
}

.pricing-note {
  background: #fff3e0;
  padding: 16px;
  border-radius: 8px;
  font-size: 0.875rem;
  color: #e65100;
  border-left: 4px solid #ff9800;
  margin-bottom: 16px;
}

.pricing-guarantee {
  background: #e8f5e9;
  padding: 16px;
  border-radius: 8px;
  font-size: 0.875rem;
  color: #2e7d32;
  border-left: 4px solid #10b981;
}

.pricing-cta {
  text-align: center;
  margin-top: 32px;
  padding: 24px;
  background: white;
  border-radius: 12px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.pricing-cta p {
  font-size: 1rem;
  color: #6b7280;
  margin-bottom: 20px;
}

/* Mobile-First Process Steps */
.process-steps {
  display: grid;
  gap: 24px;
}

.process-step {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  background: white;
  padding: 20px;
  border-radius: 12px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.step-number {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background-color: #1976d2;
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 1.25rem;
  flex-shrink: 0;
}

.step-content h3 {
  font-size: 1.125rem;
  font-weight: 700;
  color: #111827;
  margin-bottom: 8px;
}

.step-content p {
  font-size: 0.875rem;
  color: #6b7280;
  line-height: 1.6;
  margin: 0;
}

/* Mobile-First Documents Section */
.documents-grid {
  display: grid;
  gap: 20px;
}

.document-card {
  background: white;
  padding: 24px;
  border-radius: 12px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  text-align: center;
  transition: all 0.2s ease;
  border: 2px solid #e3f2fd;
  position: relative;
}

.document-card:hover,
.document-card:active {
  transform: translateY(-2px);
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.15);
  border-color: #1976d2;
}

.document-card::after {
  content: "No OTP";
  position: absolute;
  top: 12px;
  right: 12px;
  background: #10b981;
  color: white;
  padding: 6px 12px;
  border-radius: 6px;
  font-size: 0.75rem;
  font-weight: 700;
}

.document-icon {
  width: 64px;
  height: 64px;
  margin: 0 auto 16px;
  background-color: #e3f2fd;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #1976d2;
}

.document-icon .material-icons {
  font-size: 32px;
}

.document-title {
  font-size: 1.125rem;
  font-weight: 700;
  color: #111827;
  margin-bottom: 8px;
}

.document-description {
  font-size: 0.875rem;
  color: #6b7280;
  line-height: 1.6;
  margin-bottom: 16px;
}

.kyc-info {
  background: linear-gradient(135deg, #e3f2fd, #bbdefb);
  padding: 12px;
  border-radius: 8px;
  border-left: 4px solid #1976d2;
}

.kyc-info-title {
  font-weight: 600;
  color: #1976d2;
  font-size: 0.875rem;
  margin-bottom: 4px;
}

.kyc-info-text {
  font-size: 0.75rem;
  color: #6b7280;
}

/* Mobile-First Locations Section */
.location-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
}

.location-item {
  background-color: #f3f4f6;
  padding: 16px 12px;
  border-radius: 8px;
  text-align: center;
  font-size: 0.875rem;
  font-weight: 600;
  transition: all 0.2s ease;
  cursor: pointer;
  min-height: 80px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.location-item:hover,
.location-item:active {
  background-color: #1976d2;
  color: white;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(25, 118, 210, 0.3);
}

.location-item.location-primary {
  background-color: #e3f2fd;
  border: 2px solid #1976d2;
}

.location-name {
  font-weight: 700;
  font-size: 0.875rem;
  margin-bottom: 4px;
}

.location-details {
  font-size: 0.75rem;
  color: #1976d2;
}

.location-item:hover .location-details {
  color: white;
}

/* Mobile-First Testimonials Section */
.testimonials-section {
  background-color: white;
}

.testimonials-grid {
  display: grid;
  gap: 20px;
  margin-bottom: 32px;
}

.testimonial-card {
  background: #f9fafb;
  padding: 24px;
  border-radius: 12px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  transition: all 0.2s ease;
  border-left: 4px solid #1976d2;
}

.testimonial-card:hover,
.testimonial-card:active {
  transform: translateY(-2px);
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.15);
}

.testimonial-rating {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 16px;
}

.stars {
  font-size: 1.125rem;
  line-height: 1;
}

.rating-text {
  font-size: 0.875rem;
  font-weight: 600;
  color: #1976d2;
}

.testimonial-text {
  font-size: 1rem;
  line-height: 1.6;
  color: #374751;
  margin-bottom: 16px;
  font-style: italic;
  position: relative;
}

.testimonial-text::before {
  content: '"';
  font-size: 2.5rem;
  color: #1976d2;
  position: absolute;
  top: -8px;
  left: -16px;
  opacity: 0.3;
}

.testimonial-author {
  display: block;
  font-style: normal;
}

.testimonial-author strong {
  font-size: 1rem;
  color: #111827;
  display: block;
  margin-bottom: 4px;
  font-weight: 700;
}

.author-location {
  font-size: 0.875rem;
  color: #6b7280;
}

.testimonials-summary {
  background: linear-gradient(135deg, #1976d2, #1565c0);
  color: white;
  padding: 32px 24px;
  border-radius: 12px;
  text-align: center;
}

.summary-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.summary-stats .stat {
  padding: 16px 8px;
}

.summary-stats .stat-number {
  font-size: 1.75rem;
  font-weight: 800;
  display: block;
  margin-bottom: 8px;
}

.summary-stats .stat-label {
  font-size: 0.875rem;
  opacity: 0.9;
  font-weight: 500;
}

/* Mobile-First FAQ Section */
.faq-section {
  background-color: #f9fafb;
}

.faq-container {
  max-width: 100%;
  margin: 0 auto;
}

.faq-item {
  background-color: white;
  border-radius: 8px;
  margin-bottom: 12px;
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.faq-question {
  width: 100%;
  padding: 20px;
  background: none;
  border: none;
  text-align: left;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: #111827;
  line-height: 1.4;
}

.faq-question:hover,
.faq-question:active {
  background-color: #f9fafb;
}

.faq-question:focus {
  outline: 2px solid #1976d2;
  outline-offset: -2px;
}

.faq-answer {
  padding: 0 20px 20px;
  font-size: 0.875rem;
  color: #6b7280;
  display: none;
  line-height: 1.6;
}

.faq-answer.active {
  display: block;
  animation: fadeIn 0.3s ease;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(-10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.faq-icon {
  transition: transform 0.2s ease;
  font-size: 1rem;
  flex-shrink: 0;
  margin-left: 12px;
}

.faq-question[aria-expanded="true"] .faq-icon {
  transform: rotate(180deg);
}

/* Mobile-First CTA Section */
.cta-section {
  background: linear-gradient(135deg, #10b981 0%, #059669 100%);
  color: white;
  text-align: center;
  padding: 40px 0;
}

.cta-title {
  font-size: 1.75rem;
  font-weight: 800;
  margin-bottom: 16px;
  line-height: 1.2;
}

.cta-subtitle {
  font-size: 1rem;
  opacity: 0.9;
  margin-bottom: 32px;
  line-height: 1.6;
}

.cta-actions {
  display: flex;
  flex-direction: column;
  gap: 16px;
  align-items: center;
}

.cta-button {
  background-color: #ffffff;
  color: #10b981;
  font-size: 1.125rem;
  font-weight: 700;
  padding: 18px 32px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  width: 100%;
  max-width: 320px;
}

.cta-button:hover,
.cta-button:active {
  background-color: #f8fafc;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
}

.cta-whatsapp {
  color: white;
  border: 2px solid white;
  background: transparent;
  width: 100%;
  max-width: 320px;
}

.cta-whatsapp:hover,
.cta-whatsapp:active {
  background: white;
  color: #10b981;
}

/* Mobile-First Contact Section */
.contact-comprehensive {
  background-color: #f9fafb;
}

.contact-grid {
  display: grid;
  gap: 20px;
  margin-bottom: 32px;
}

.contact-card {
  background: white;
  padding: 24px;
  border-radius: 12px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  text-align: center;
  transition: all 0.2s ease;
  border: 2px solid transparent;
}

.contact-card:hover,
.contact-card:active {
  transform: translateY(-2px);
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.15);
  border-color: #1976d2;
}

.contact-icon {
  width: 64px;
  height: 64px;
  margin: 0 auto 16px;
  background-color: #e3f2fd;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #1976d2;
}

.contact-icon .material-icons {
  font-size: 32px;
}

.contact-title {
  font-size: 1.125rem;
  font-weight: 700;
  color: #111827;
  margin-bottom: 12px;
}

.contact-detail {
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 8px;
}

.contact-link {
  color: #1976d2;
  text-decoration: none;
  transition: color 0.2s ease;
}

.contact-link:hover,
.contact-link:active {
  color: #1565c0;
  text-decoration: underline;
}

.contact-description {
  font-size: 0.875rem;
  color: #6b7280;
  margin: 0;
}

/* Mobile-First Footer */
.footer {
  background-color: #1f2937;
  color: white;
  padding: 40px 0 24px;
}

.footer-content {
  display: grid;
  gap: 32px;
  margin-bottom: 32px;
}

.footer-section h3,
.footer-section h4 {
  color: #60a5fa;
  margin-bottom: 16px;
  font-size: 1.125rem;
  font-weight: 700;
}

.footer-section p {
  font-size: 0.875rem;
  color: #d1d5db;
  margin-bottom: 12px;
  line-height: 1.6;
}

.footer-section ul {
  list-style: none;
}

.footer-section ul li {
  margin-bottom: 8px;
}

.footer-section ul li a {
  color: #d1d5db;
  text-decoration: none;
  font-size: 0.875rem;
  transition: color 0.2s ease;
}

.footer-section ul li a:hover,
.footer-section ul li a:active {
  color: white;
}

.footer-rating {
  margin-top: 16px;
  padding: 16px;
  background: rgba(96, 165, 250, 0.1);
  border-radius: 8px;
}

.footer-rating strong {
  display: block;
  margin-bottom: 8px;
  font-size: 1rem;
}

.footer-rating small {
  font-size: 0.875rem;
  color: #9ca3af;
}

.footer-links {
  list-style: none;
}

.footer-bottom {
  border-top: 1px solid #374151;
  padding-top: 24px;
  text-align: center;
}

.footer-bottom p {
  font-size: 0.875rem;
  color: #9ca3af;
  margin: 0;
  line-height: 1.6;
}

/* Mobile-Optimized Fixed Action Buttons */
.fixed-actions {
  position: fixed;
  bottom: 20px;
  right: 16px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  z-index: 50;
}

.fab {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.2);
  transition: all 0.2s ease;
}

.fab-primary {
  background-color: #ef4444;
  color: white;
}

.fab-secondary {
  background-color: #10b981;
  color: white;
}

.fab:hover,
.fab:active {
  transform: scale(1.1);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

.fab .material-icons {
  font-size: 28px;
}

/* Tablet Responsive Design */
@media (min-width: 768px) {
  .hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
  }

  .hero-title {
    font-size: 2.25rem;
  }

  .hero-features {
    grid-template-columns: repeat(4, 1fr);
  }

  .hero-actions {
    flex-direction: row;
  }

  .trust-grid {
    grid-template-columns: repeat(4, 1fr);
  }

  .stats-grid {
    grid-template-columns: repeat(4, 1fr);
  }

  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .pricing-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .documents-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .location-grid {
    grid-template-columns: repeat(4, 1fr);
  }

  .testimonials-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .contact-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .footer-content {
    grid-template-columns: repeat(2, 1fr);
  }

  .cta-actions {
    flex-direction: row;
    justify-content: center;
  }
}

/* Desktop Responsive Design */
@media (min-width: 1024px) {
  .services-grid {
    grid-template-columns: repeat(4, 1fr);
  }

  .process-steps {
    grid-template-columns: repeat(4, 1fr);
  }

  .process-step {
    flex-direction: column;
    text-align: center;
  }

  .step-number {
    margin: 0 auto 16px;
  }

  .documents-grid {
    grid-template-columns: repeat(4, 1fr);
  }

  .contact-grid {
    grid-template-columns: repeat(4, 1fr);
  }

  .footer-content {
    grid-template-columns: repeat(4, 1fr);
  }
}

/* Touch-friendly interactions */
@media (hover: none) and (pointer: coarse) {
  .btn-primary:hover,
  .btn-secondary:hover,
  .service-card:hover,
  .contact-card:hover {
    transform: none;
  }

  .btn-primary:active,
  .btn-secondary:active,
  .service-card:active,
  .contact-card:active {
    transform: scale(0.98);
  }
}

/* High contrast mode support */
@media (prefers-contrast: high) {
  .btn-primary,
  .btn-secondary {
    border: 2px solid currentColor;
  }

  .service-card,
  .contact-card,
  .testimonial-card {
    border: 2px solid #111827;
  }
}

/* Reduced motion support */
@media (prefers-reduced-motion: reduce) {
  * {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}

/* Focus styles for accessibility */
*:focus-visible {
  outline: 3px solid #1976d2;
  outline-offset: 2px;
}

/* Print styles */
@media print {
  .header,
  .fixed-actions,
  .hero-actions,
  .cta-section {
    display: none;
  }

  body {
    font-size: 12pt;
    line-height: 1.4;
  }

  .section {
    page-break-inside: avoid;
  }
}

/* Core Web Vitals Optimizations */
.hero-image img {
  content-visibility: auto;
  contain-intrinsic-size: 240px;
}

.service-card,
.contact-card,
.testimonial-card {
  content-visibility: auto;
  contain-intrinsic-size: 200px;
}

/* Loading states */
.loading {
  opacity: 0.7;
  pointer-events: none;
}

/* Error states */
.error {
  border-color: #ef4444;
  background-color: #fef2f2;
}

/* Lead Generation Popup Styles */
.popup-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.8);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1000;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
  padding: 20px;
}

.popup-overlay.active {
  opacity: 1;
  visibility: visible;
}

.popup-content {
  background: white;
  border-radius: 16px;
  padding: 24px;
  max-width: 400px;
  width: 100%;
  max-height: 90vh;
  overflow-y: auto;
  position: relative;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
  transform: scale(0.9);
  transition: transform 0.3s ease;
}

.popup-overlay.active .popup-content {
  transform: scale(1);
}

.popup-close {
  position: absolute;
  top: 16px;
  right: 16px;
  background: none;
  border: none;
  font-size: 24px;
  color: #6b7280;
  cursor: pointer;
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  transition: all 0.2s ease;
}

.popup-close:hover {
  background-color: #f3f4f6;
  color: #1f2937;
}

.popup-header {
  text-align: center;
  margin-bottom: 24px;
}

.popup-icon {
  width: 64px;
  height: 64px;
  background: linear-gradient(135deg, #10b981, #059669);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
  color: white;
}

.popup-icon .material-icons {
  font-size: 32px;
}

.popup-header h3 {
  font-size: 1.5rem;
  font-weight: 700;
  color: #111827;
  margin-bottom: 8px;
}

.popup-offer {
  font-size: 1rem;
  color: #6b7280;
  margin: 0;
  line-height: 1.5;
}

.popup-offer strong {
  color: #10b981;
  font-size: 1.25rem;
  font-weight: 800;
}

.popup-form {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.form-group label {
  font-size: 0.875rem;
  font-weight: 600;
  color: #374151;
}

.form-group input,
.form-group textarea {
  padding: 12px 16px;
  border: 2px solid #e5e7eb;
  border-radius: 8px;
  font-size: 1rem;
  transition: all 0.2s ease;
  font-family: inherit;
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: #1976d2;
  box-shadow: 0 0 0 3px rgba(25, 118, 210, 0.1);
}

.form-group textarea {
  resize: vertical;
  min-height: 80px;
}

.popup-submit {
  background: linear-gradient(135deg, #1976d2, #1565c0);
  color: white;
  border: none;
  padding: 16px 24px;
  border-radius: 8px;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  transition: all 0.2s ease;
  margin-top: 8px;
}

.popup-submit:hover {
  background: linear-gradient(135deg, #1565c0, #1976d2);
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(25, 118, 210, 0.3);
}

.popup-submit:active {
  transform: translateY(0);
}

.popup-note {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.75rem;
  color: #6b7280;
  text-align: center;
  margin-top: 12px;
  padding: 12px;
  background-color: #f9fafb;
  border-radius: 8px;
}

.popup-note .material-icons {
  font-size: 16px;
  color: #10b981;
}

/* Mobile Responsive Adjustments */
@media (max-width: 480px) {
  .call-text {
    display: none;
  }

  .logo-text {
    display: block !important;
    font-size: 0.7rem;
  }

  .popup-content {
    margin: 10px;
    padding: 20px;
  }

  .popup-header h3 {
    font-size: 1.25rem;
  }
}

/* Animation for popup entrance */
@keyframes popupSlideIn {
  from {
    opacity: 0;
    transform: translateY(-20px) scale(0.95);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

.popup-overlay.active .popup-content {
  animation: popupSlideIn 0.3s ease;
}
