/* Reset and Base Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Source Sans Pro", sans-serif;
  line-height: 1.6;
  color: #374151;
  background-color: #ffffff;
}

/* Typography */
h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "Playfair Display", serif;
  font-weight: 700;
  line-height: 1.2;
}

/* Container */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1rem;
}

@media (min-width: 640px) {
  .container {
    padding: 0 1.5rem;
  }
}

@media (min-width: 1024px) {
  .container {
    padding: 0 2rem;
  }
}

/* Colors */
:root {
  --primary: #1e3a8a;
  --secondary: #3b82f6;
  --background: #ffffff;
  --foreground: #374151;
  --muted: #f8fafc;
  --border: #e5e7eb;
  --card: #ffffff;
  --yellow: #fcd34d;
  --muted-foreground: #6b7280;
}

.text-primary {
  color: var(--primary);
}

.text-white {
  color: white;
}

.text-white-90 {
  color: rgba(255, 255, 255, 0.9);
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.75rem 1.5rem;
  border: none;
  border-radius: 0.5rem;
  font-weight: 600;
  text-decoration: none;
  cursor: pointer;
  transition: all 0.3s ease;
  font-size: 1rem;
}

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

.btn-primary:hover {
  background-color: #1e40af;
  transform: scale(1.05);
}

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

.btn-secondary:hover {
  background-color: #2563eb;
  transform: scale(1.05);
}

.btn-lg {
  padding: 1rem 2rem;
  font-size: 1.125rem;
}

.btn-full {
  width: 100%;
}

.btn-icon {
  width: 1.25rem;
  height: 1.25rem;
  margin-left: 0.5rem;
  transition: transform 0.3s ease;
}

.btn:hover .btn-icon {
  transform: translateX(0.25rem);
}

/* Header */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  transition: all 0.3s ease;
  background-color: transparent;
}

.header.scrolled {
  background-color: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}

.header-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 4rem;
}

@media (min-width: 1024px) {
  .header-content {
    height: 5rem;
  }
}

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

.logo-img {
  width: 2rem;
  height: 2rem;
}

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

@media (min-width: 1024px) {
  .logo h1 {
    font-size: 1.5rem;
  }
}

/* Navigation */
.nav-desktop {
  display: none;
  align-items: center;
  gap: 2rem;
}

@media (min-width: 768px) {
  .nav-desktop {
    display: flex;
  }
}

.nav-link {
  color: var(--foreground);
  text-decoration: none;
  transition: color 0.2s ease;
}

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

/* Mobile Menu Button */
.mobile-menu-btn {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  width: 2rem;
  height: 1.5rem;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 0;
  z-index: 1001; /* stays above menu */
}

@media (min-width: 768px) {
  .mobile-menu-btn {
    display: none;
  }
}

.hamburger {
  width: 100%;
  height: 3px;
  background: var(--foreground);
  border-radius: 2px;
  transition: all 0.35s ease;
  transform-origin: center;
}

.mobile-menu-btn.open .hamburger:nth-child(1) {
  transform: rotate(45deg) translateY(7px);
}

.mobile-menu-btn.open .hamburger:nth-child(2) {
  opacity: 0;
}

.mobile-menu-btn.open .hamburger:nth-child(3) {
  transform: rotate(-45deg) translateY(-7px);
}

/* Mobile Nav */
.nav-mobile {
  position: absolute;
  top: 60px; /* adjust to header height */
  left: 0;
  width: 100%;
  background: var(--background);
  border-top: 1px solid var(--border);
  overflow: hidden;
  max-height: 0;
  opacity: 0;
  padding: 0 1.25rem; /* left & right whitespace */
  box-sizing: border-box;
  transition: all 0.35s ease;
}

.nav-mobile.open {
  max-height: 600px; /* large enough for all links */
  opacity: 1;
  padding: 1.25rem; /* full padding all around when open */
  border-radius: 0 0 10px 10px; /* soft rounded bottom */
  box-shadow: 0 8px 20px rgba(0,0,0,0.08);
}

.nav-link-mobile {
  display: block;
  padding: 0.85rem 0;
  margin: 0.25rem 0;
  color: var(--foreground);
  text-decoration: none;
  font-size: 1.05rem;
  transition: background 0.25s ease, color 0.25s ease;
  border-radius: 6px;
}

.nav-link-mobile:hover {
  background: rgba(0,0,0,0.05);
  color: var(--primary);
}



/* Hero Section */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, var(--muted) 0%, var(--background) 50%, rgba(248, 250, 252, 0.5) 100%);
}

.hero-pattern {
  position: absolute;
  inset: 0;
  background-image: url("/assets/abstract-digital-pattern.webp");
  background-size: cover;
  background-position: center;
  opacity: 0.35;
}

.hero-shape {
  position: absolute;
  border-radius: 50%;
  filter: blur(3rem);
  animation: pulse 4s ease-in-out infinite;
}

.hero-shape-1 {
  top: 25%;
  left: 25%;
  width: 16rem;
  height: 16rem;
  background-color: rgba(30, 58, 138, 0.05);
}

.hero-shape-2 {
  bottom: 25%;
  right: 25%;
  width: 24rem;
  height: 24rem;
  background-color: rgba(59, 130, 246, 0.05);
  animation-delay: 1s;
}

.hero-content {
  position: relative;
  z-index: 10;
  text-align: center;
  opacity: 0;
  transform: translateY(2rem);
  animation: fadeInUp 1s ease-out 0.5s forwards;
}

.hero-title {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--foreground);
  margin-bottom: 1.5rem;
  line-height: 1.1;
}

@media (min-width: 640px) {
  .hero-title {
    font-size: 3rem;
  }
}

@media (min-width: 1024px) {
  .hero-title {
    font-size: 4.5rem;
  }
}

.hero-subtitle {
  font-size: 1.125rem;
  color: #6b7280;
  margin-bottom: 2rem;
  max-width: 48rem;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.6;
}

@media (min-width: 640px) {
  .hero-subtitle {
    font-size: 1.25rem;
  }
}

@media (min-width: 1024px) {
  .hero-subtitle {
    font-size: 1.5rem;
  }
}

.hero-btn {
  transition: all 0.3s ease;
}

.hero-btn:hover {
  transform: scale(1.05);
}

/* Section Headers */
.section-header {
  text-align: center;
  margin-bottom: 3rem;
  opacity: 0;
  transform: translateY(2rem);
}

.section-header.animate {
  animation: fadeInUp 0.6s ease-out forwards;
}

.section-title {
  font-size: 2rem;
  font-weight: 700;
  color: var(--foreground);
  margin-bottom: 1rem;
}

@media (min-width: 640px) {
  .section-title {
    font-size: 2.5rem;
  }
}

@media (min-width: 1024px) {
  .section-title {
    font-size: 3rem;
  }
}

.section-subtitle {
  font-size: 1.125rem;
  color: var(--muted-foreground);
  max-width: 48rem;
  margin: 0 auto;
  line-height: 1.6;
}

@media (min-width: 640px) {
  .section-subtitle {
    font-size: 1.25rem;
  }
}

/* Proof Section */
.proof-section {
  padding: 4rem 0;
  background-color: rgba(248, 250, 252, 0.3);
}

@media (min-width: 1024px) {
  .proof-section {
    padding: 6rem 0;
  }
}

/* Stats Section */
.stats-section {
  padding: 3rem 1rem;
  background-color: var(--muted-light);
}

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

.stat-item {
  background-color: var(--background);
  padding: 1.5rem;
  border-radius: 1rem;
  text-align: center;
  box-shadow: 0 4px 12px rgba(0,0,0,0.05);
}

.stat-icon {
  width: 50px;
  height: 50px;
  margin: 0 auto 1rem auto;
  color: var(--primary);
}

.stat-number {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.stat-label {
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.stat-description {
  font-size: 0.9rem;
  color: var(--foreground-muted);
}

/* Mobile Responsiveness */
@media (max-width: 768px) {
  .stats-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .stat-item {
    padding: 1rem;
  }

  .stat-number {
    font-size: 1.75rem;
  }

  .stat-description {
    font-size: 0.85rem;
  }
}


.stat-item {
  text-align: center;
  opacity: 0;
  transform: translateY(2rem);
}

.stat-item.animate {
  animation: fadeInUp 0.6s ease-out forwards;
}

.stat-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 4rem;
  height: 4rem;
  background-color: rgba(30, 58, 138, 0.1);
  border-radius: 50%;
  margin-bottom: 1rem;
}

.stat-icon svg {
  width: 2rem;
  height: 2rem;
  color: var(--primary);
}

.stat-number {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 0.5rem;
  font-family: "Playfair Display", serif;
}

@media (min-width: 1024px) {
  .stat-number {
    font-size: 3.75rem;
  }
}

.stat-label {
  font-size: 1.125rem;
  font-weight: 600;
  color: var(--foreground);
  margin-bottom: 0.5rem;
}

.stat-description {
  font-size: 0.875rem;
  color: var(--muted-foreground);
  line-height: 1.5;
}

.proof-cta {
  text-align: center;
  margin-bottom: 4rem;
}

/* Testimonials */
.testimonials {
  padding: 3rem 1rem;
  background: var(--muted, #f9f9f9);
  text-align: center;
}

.testimonials h2 {
  font-size: 1.8rem;
  margin-bottom: 2rem;
  color: var(--foreground, #222);
}

.testimonial-container {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  max-width: 900px;
  margin: 0 auto;
}

.testimonial-card {
  background: #fff;
  border: 1px solid var(--border, #e5e5e5);
  border-radius: 0.75rem;
  padding: 1.5rem;
  box-shadow: 0 2px 6px rgba(0,0,0,0.05);
  font-size: 1rem;
  line-height: 1.6;
}

.testimonial-card p {
  margin-bottom: 1rem;
  font-style: italic;
  color: #555;
}

.testimonial-card h4 {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--primary, #111);
}

/* Tablet & Desktop */
@media (min-width: 640px) {
  .testimonial-container {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .testimonial-container {
    grid-template-columns: repeat(3, 1fr);
  }
}


/* Process Section */
.process-section {
  padding: 4rem 0;
}

@media (min-width: 1024px) {
  .process-section {
    padding: 6rem 0;
  }
}

.process-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}

@media (min-width: 768px) {
  .process-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.process-card {
  padding: 2rem;
  background-color: var(--card);
  border: 1px solid var(--border);
  border-radius: 1rem;
  text-align: center;
  transition: all 0.3s ease;
  opacity: 0;
  transform: translateY(2rem);
}

.process-card.animate {
  animation: fadeInUp 0.6s ease-out forwards;
}

.process-card:hover {
  transform: translateY(-0.5rem);
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
}

.process-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 4rem;
  height: 4rem;
  background-color: rgba(30, 58, 138, 0.1);
  border-radius: 50%;
  margin-bottom: 1.5rem;
  transition: background-color 0.3s ease;
}

.process-card:hover .process-icon {
  background-color: rgba(30, 58, 138, 0.2);
}

.process-icon svg {
  width: 2rem;
  height: 2rem;
  color: var(--primary);
}

.process-card h3 {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--foreground);
  margin-bottom: 1rem;
}

.process-card p {
  color: #6b7280;
  line-height: 1.6;
}

/* Time Section */
.time-section {
  padding: 4rem 0;
  background-color: rgba(248, 250, 252, 0.3);
}

@media (min-width: 1024px) {
  .time-section {
    padding: 6rem 0;
  }
}

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

@media (min-width: 1024px) {
  .time-content {
    grid-template-columns: 1fr 1fr;
  }
}

.time-text {
  opacity: 0;
  transform: translateY(2rem);
}

.time-text.animate {
  animation: fadeInUp 0.6s ease-out forwards;
}

.time-feature {
  display: flex;
  align-items: center;
  gap: 1rem;
  color: var(--primary);
}

.time-icon {
  width: 2rem;
  height: 2rem;
}

.time-feature span {
  font-size: 1.125rem;
  font-weight: 600;
}

.time-visual {
  position: relative;
  opacity: 0;
  transform: translateY(2rem);
}

.time-visual.animate {
  animation: fadeInUp 0.6s ease-out 0.3s forwards;
}

.time-illustration {
  aspect-ratio: 1;
  background: linear-gradient(135deg, rgba(30, 58, 138, 0.1) 0%, rgba(59, 130, 246, 0.1) 100%);
  border-radius: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

.time-illustration img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  padding: 2rem;
}

/* Services Section */
.services-section {
  padding: 4rem 0;
}

@media (min-width: 1024px) {
  .services-section {
    padding: 6rem 0;
  }
}

.services-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}

@media (min-width: 768px) {
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .services-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.service-card {
  padding: 2rem;
  background-color: var(--card);
  border: 1px solid var(--border);
  border-radius: 1rem;
  text-align: center;
  transition: all 0.3s ease;
  opacity: 0;
  transform: translateY(2rem);
}

.service-card.animate {
  animation: fadeInUp 0.6s ease-out forwards;
}

.service-card:hover {
  transform: translateY(-0.5rem);
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
}

.service-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 4rem;
  height: 4rem;
  background-color: rgba(30, 58, 138, 0.1);
  border-radius: 50%;
  margin-bottom: 1.5rem;
  transition: background-color 0.3s ease;
}

.service-card:hover .service-icon {
  background-color: rgba(30, 58, 138, 0.2);
}

.service-icon svg {
  width: 2rem;
  height: 2rem;
  color: var(--primary);
}

.service-card h3 {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--foreground);
  margin-bottom: 1rem;
}

.service-card p {
  color: #6b7280;
  line-height: 1.6;
}

/* Added FAQ Section Styles */
/* FAQ Section */
.faq-section {
  padding: 4rem 0;
  background-color: rgba(248, 250, 252, 0.3);
}

@media (min-width: 1024px) {
  .faq-section {
    padding: 6rem 0;
  }
}

.faq-container {
  max-width: 48rem;
  margin: 0 auto;
}

.faq-item {
  background-color: var(--card);
  border: 1px solid var(--border);
  border-radius: 0.75rem;
  margin-bottom: 1rem;
  overflow: hidden;
  transition: all 0.3s ease;
  opacity: 0;
  transform: translateY(1rem);
}

.faq-item.animate {
  animation: fadeInUp 0.6s ease-out forwards;
}

.faq-item:hover {
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
}

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

.faq-question:hover {
  color: var(--primary);
}

.faq-question[aria-expanded="true"] {
  color: var(--primary);
  border-bottom: 1px solid var(--border);
}

.faq-icon {
  width: 1.5rem;
  height: 1.5rem;
  color: var(--muted-foreground);
  transition: transform 0.3s ease;
  flex-shrink: 0;
  margin-left: 1rem;
}

.faq-question[aria-expanded="true"] .faq-icon {
  transform: rotate(180deg);
  color: var(--primary);
}

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

.faq-answer[aria-hidden="false"] {
  max-height: 500px;
}

.faq-content {
  padding: 0 1.5rem 1.5rem 1.5rem;
}

.faq-content p {
  color: var(--muted-foreground);
  line-height: 1.7;
  font-size: 1rem;
}

.faq-cta {
  text-align: center;
  margin-top: 3rem;
  padding: 2rem;
  background-color: var(--card);
  border: 1px solid var(--border);
  border-radius: 1rem;
  opacity: 0;
  transform: translateY(1rem);
}

.faq-cta.animate {
  animation: fadeInUp 0.6s ease-out forwards;
}

.faq-cta p {
  font-size: 1.125rem;
  color: var(--foreground);
  margin-bottom: 1.5rem;
  font-weight: 600;
}

/* Mobile responsive adjustments for FAQ */
@media (max-width: 768px) {
  .faq-question {
    padding: 1.25rem;
    font-size: 1rem;
  }

  .faq-content {
    padding: 0 1.25rem 1.25rem 1.25rem;
  }

  .faq-content p {
    font-size: 0.9rem;
  }

  .faq-cta {
    padding: 1.5rem;
    margin-top: 2rem;
  }

  .faq-cta p {
    font-size: 1rem;
  }
}

/* CTA Section */
.cta-section {
  padding: 4rem 0;
  background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
}

@media (min-width: 1024px) {
  .cta-section {
    padding: 6rem 0;
  }
}

.cta-header {
  text-align: center;
  margin-bottom: 4rem;
  opacity: 0;
  transform: translateY(2rem);
}

.cta-header.animate {
  animation: fadeInUp 0.6s ease-out forwards;
}

.cta-content {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  max-width: 72rem;
  margin: 0 auto;
}

@media (min-width: 1024px) {
  .cta-content {
    grid-template-columns: 1fr 1fr;
  }
}

/* Contact Form */
.contact-form-card {
  padding: 2rem;
  background-color: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  border: 1px solid var(--border);
  border-radius: 1rem;
  opacity: 0;
  transform: translateY(2rem);
  box-sizing: border-box;
}

.contact-form-card.animate {
  animation: fadeInUp 0.6s ease-out forwards;
}

.contact-form-card h3 {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--foreground);
  margin-bottom: 1.5rem;
}

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

/* Mobile Fixes */
@media (max-width: 768px) {
  .contact-form-card {
    margin: 1.25rem;          /* space around card so it doesn’t hit edges */
    padding: 1.25rem;         /* slightly smaller padding for small screens */
    border-radius: 10px;
  }

  .contact-form input,
  .contact-form textarea,
  .contact-form select {
    width: 100%;
    padding: 0.9rem;
    font-size: 1rem;
    border-radius: 6px;
    border: 1px solid #ddd;
    box-sizing: border-box;
  }
}

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

.form-group label {
  font-weight: 600;
  color: var(--foreground);
  margin-bottom: 0.5rem;
}

.form-group input,
.form-group select,
.form-group textarea {
  padding: 0.75rem;
  border: 1px solid var(--border);
  border-radius: 0.5rem;
  font-size: 1rem;
  background-color: var(--muted);
  transition: border-color 0.2s ease;
}

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

.form-group textarea {
  resize: vertical;
  min-height: 6rem;
}

/* Contact Info */
.contact-info {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  opacity: 0;
  transform: translateY(2rem);
}

.contact-info.animate {
  animation: fadeInUp 0.6s ease-out 0.3s forwards;
}

.contact-info-header h3 {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
}

.contact-info-header p {
  font-size: 1.125rem;
  line-height: 1.6;
  margin-bottom: 2rem;
}

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

.contact-item {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.contact-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 3rem;
  height: 3rem;
  background-color: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  flex-shrink: 0;
}

.contact-icon svg {
  width: 1.5rem;
  height: 1.5rem;
  color: white;
}

.contact-label {
  font-weight: 600;
  margin-bottom: 0.25rem;
}

.contact-value {
  font-size: 0.875rem;
}

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

.footer-content {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  margin-bottom: 2rem;
}

@media (min-width: 768px) {
  .footer-content {
    grid-template-columns: repeat(3, 1fr);
  }
}

.footer-section h3 {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
}

.footer-section h4 {
  font-size: 1.125rem;
  font-weight: 600;
  margin-bottom: 1rem;
}

.footer-section p {
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 1rem;
  line-height: 1.6;
}

.footer-copyright {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.6);
}

.footer-links {
  list-style: none;
}

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

.footer-links a {
  color: rgba(255, 255, 255, 0.8);
  text-decoration: none;
  transition: color 0.2s ease;
}

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

.footer-contact p {
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 0.5rem;
}

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

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

/* Back to Top */
.back-to-top {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  z-index: 1000;
  width: 3rem;
  height: 3rem;
  border-radius: 50%;
  background-color: var(--primary);
  color: white;
  border: none;
  cursor: pointer;
  display: none;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
}

.back-to-top:hover {
  background-color: #1e40af;
  transform: scale(1.1);
}

.back-to-top.show {
  display: flex;
}

.back-to-top svg {
  width: 1.5rem;
  height: 1.5rem;
}

/* Animations */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(2rem);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes pulse {
  0%,
  100% {
    transform: scale(1);
    opacity: 0.5;
  }
  50% {
    transform: scale(1.05);
    opacity: 0.8;
  }
}

/* Utility Classes */
.animate {
  animation: fadeInUp 0.6s ease-out forwards;
}

/* Responsive Design */
@media (max-width: 767px) {
  .hero-title {
    font-size: 2rem;
  }

  .section-title {
    font-size: 1.5rem;
  }

  .stat-number {
    font-size: 2rem;
  }

  .testimonial-card {
    padding: 1.5rem;
  }

  .process-card,
  .service-card {
    padding: 1.5rem;
  }

}
