:root {
  --font-main: 'Inter', sans-serif;
  --font-heading: 'Space Grotesk', sans-serif;
  --bg-color: #FFFFFF;
  --text-color: #1A1A1A;
  --text-light: #666666;
  --accent-color: #000000;
  /* Deep black for buttons */
  --nav-bg: rgba(255, 255, 255, 0.85);
  --nav-border: rgba(0, 0, 0, 0.05);
  --padding-x: 5%;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-main);
  background-color: var(--bg-color);
  color: var(--text-color);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

/* Navbar */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  padding: 1.2rem var(--padding-x);
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: var(--nav-bg);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--nav-border);
  z-index: 1000;
}

.logo {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1.5rem;
  letter-spacing: -0.02em;
  color: var(--text-color);
  cursor: pointer;
}

.nav-links {
  display: flex;
  gap: 2.5rem;
}

.nav-links a {
  text-decoration: none;
  color: var(--text-light);
  font-weight: 500;
  font-size: 0.95rem;
  transition: color 0.2s ease;
}

.nav-links a:hover {
  color: var(--text-color);
}

.btn-primary {
  display: inline-block;
  background-color: var(--accent-color);
  color: #FFFFFF;
  padding: 0.8rem 1.8rem;
  border-radius: 50px;
  /* Pill shape */
  text-decoration: none;
  font-weight: 500;
  font-size: 0.9rem;
  transition: all 0.2s ease;
}

.btn-primary:hover {
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  background-color: #333;
}

@media (max-width: 768px) {
  .nav-links {
    display: none;
  }
}

/* Hero Section */
.hero {
  padding-top: 80px;
  padding-bottom: 80px;
  /* Added bottom padding */
  /* Offset for fixed navbar */
  min-height: 100vh;
  display: flex;
  align-items: center;
  background: linear-gradient(180deg, #FFFFFF 0%, #F8F9FA 100%);
}

.hero-container {
  width: 100%;
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 var(--padding-x);
  display: flex;
  align-items: center;
  gap: 4rem;
}

.hero-content {
  flex: 1;
  padding-right: 2rem;
}

.hero-visual {
  flex: 1;
  width: 50%;
  /* Force width */
  min-width: 600px;
  /* Force min width */
  display: flex;
  /* Added flex to center content */
  justify-content: center;
  align-items: center;
  position: relative;
}

h1 {
  font-family: var(--font-heading);
  font-size: 3.5rem;
  /* Updated to 3.5rem */
  font-weight: 700;
  line-height: 1.1;
  margin-bottom: 1.5rem;
  letter-spacing: -0.03em;
  color: var(--text-color);
}

.hero-sub {
  font-size: 1.125rem;
  color: #4A4A4A;
  line-height: 1.6;
  margin-bottom: 2.5rem;
  max-width: 60%;
  /* Limit text width to 60% */
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 2rem;
}

.link-secondary {
  color: var(--text-color);
  text-decoration: none;
  font-weight: 500;
  position: relative;
  transition: color 0.2s ease;
}

.link-secondary::after {
  content: '';
  position: absolute;
  width: 100%;
  height: 1px;
  bottom: -2px;
  left: 0;
  background-color: var(--text-color);
  transform-origin: bottom right;
  transition: transform 0.25s ease-out;
}

.link-secondary:hover::after {
  transform: scaleX(0);
  transform-origin: bottom left;
}

.visual-placeholder {
  width: 100%;
  aspect-ratio: 4/3;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
  background: rgba(255, 255, 255, 0.5);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.8);
  display: flex;
  justify-content: center;
  align-items: center;
}

.visual-placeholder img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.fallback-visual {
  background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
}

@media (max-width: 968px) {
  .hero-container {
    flex-direction: column;
    text-align: center;
    padding-top: 4rem;
    padding-bottom: 4rem;
  }

  .hero-content {
    padding-right: 0;
    margin-bottom: 3rem;
  }

  h1 {
    font-size: 3rem;
  }

  .hero-sub {
    margin-left: auto;
    margin-right: auto;
  }

  .hero-actions {
    justify-content: center;
  }
}

/* Services Section */
.services {
  padding: 8rem var(--padding-x);
  background-color: #F8F9FA;
}

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

.section-header h2 {
  font-family: var(--font-heading);
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--text-color);
  letter-spacing: -0.02em;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  /* 3 equal columns */
  gap: 2rem;
  /* 2rem gap */
  max-width: 1400px;
  margin: 0 auto;
}

.service-card {
  background: #FFFFFF;
  padding: 3rem;
  border-radius: 16px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
  /* Updated shadow */
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
  height: 100%;
}

.service-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
}

.icon-box {
  width: 56px;
  height: 56px;
  background-color: #F0F2F5;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  /* Updated to target SVG directly inside card if necessary, but checking .icon-box usage first */
  margin-bottom: 2rem;
  color: var(--accent-color);
}

.icon-box svg {
  width: 32px;
  height: 32px;
}

.service-card h3 {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: 1rem;
  color: var(--text-color);
}

.service-card p {
  font-size: 1rem;
  color: #666;
  line-height: 1.7;
}

/* Approach Section */
.approach {
  padding: 8rem var(--padding-x);
  background-color: #FFFFFF;
}

.approach-container {
  max-width: 1400px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 5%;
}

.approach-visual {
  flex: 1;
  display: flex;
  justify-content: center;
  align-items: center;
}

.visual-container {
  width: 100%;
  display: flex;
  justify-content: center;
}

.approach-placeholder {
  background: linear-gradient(135deg, #e0eafc 0%, #cfdef3 100%);
  position: relative;
}

.abstract-shape {
  position: absolute;
  width: 60%;
  height: 60%;
  background: rgba(255, 255, 255, 0.4);
  backdrop-filter: blur(20px);
  border-radius: 20px;
  top: 20%;
  left: 20%;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
}

.approach-content {
  flex: 1;
}

.approach-content h2 {
  font-family: var(--font-heading);
  font-size: 3rem;
  font-weight: 700;
  line-height: 1.1;
  margin-bottom: 1.5rem;
  color: var(--text-color);
}

.approach-body {
  font-size: 1.125rem;
  color: #4A4A4A;
  line-height: 1.6;
  margin-bottom: 2.5rem;
}

.feature-list {
  list-style: none;
}

.feature-list li {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1rem;
  font-weight: 500;
  color: var(--text-color);
  font-size: 1.05rem;
}

.check-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 24px;
  color: var(--accent-color);
}

/* Stats Bar */
.stats-bar {
  background-color: #1A1A1A;
  padding: 4rem var(--padding-x);
  color: #FFFFFF;
}

.stats-container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  text-align: center;
}

.stat-item {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.stat-number {
  font-family: var(--font-heading);
  font-size: 3.5rem;
  font-weight: 700;
  line-height: 1;
  background: linear-gradient(90deg, #FFFFFF, #CCCCCC);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.stat-label {
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: #888888;
  font-weight: 500;
}

@media (max-width: 968px) {
  .approach-container {
    flex-direction: column;
    gap: 3rem;
  }

  .approach-visual {
    width: 100%;
  }

  .approach-content {
    width: 100%;
    text-align: center;
  }

  .feature-list li {
    justify-content: center;
    text-align: left;
  }

  .stats-container {
    flex-direction: column;
    gap: 3rem;
  }
}

/* Work Section */
.work {
  padding: 8rem var(--padding-x);
  background-color: #F8F9FA;
}

.work-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(500px, 1fr));
  gap: 3rem;
  max-width: 1400px;
  margin: 0 auto;
}

.project-card {
  display: flex;
  /* Restore flex behavior */
  flex-direction: column;
  gap: 1.5rem;
  cursor: pointer;
  text-decoration: none;
  /* Remove underline from anchor */
  color: inherit;
  /* Inherit text color */
  transition: transform 0.3s ease;
  /* Smooth lift */
}

.project-card:hover .project-image {
  transform: scale(1.05);
  /* Zoom effect */
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.project-image {
  width: 100%;
  aspect-ratio: 16/9;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  transition: transform 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94), box-shadow 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  position: relative;
  background-color: #e0e0e0;
  /* Fallback */
}

.project-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* Placeholder Gradients for Projects */
.project-1 {
  background: linear-gradient(135deg, #f6d365 0%, #fda085 100%);
}

.project-2 {
  background: linear-gradient(135deg, #84fab0 0%, #8fd3f4 100%);
}

.project-3 {
  background: linear-gradient(135deg, #a18cd1 0%, #fbc2eb 100%);
}

.project-4 {
  background: linear-gradient(135deg, #ff9a9e 0%, #fecfef 99%, #fecfef 100%);
}

.project-info h3 {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
  color: var(--text-color);
}

.project-info p {
  font-size: 1rem;
  color: #666;
}

@media (max-width: 768px) {
  .work-grid {
    grid-template-columns: 1fr;
  }
}

/* FAQ Section */
.faq {
  padding: 8rem var(--padding-x);
  background-color: #FFFFFF;
}

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

.faq-item {
  border-bottom: 1px solid #E5E5E5;
}

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

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

.faq-icon {
  font-size: 1.5rem;
  font-weight: 300;
  transition: transform 0.3s ease;
}

.faq-item.active .faq-icon {
  transform: rotate(45deg);
}

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

.faq-answer p {
  padding-bottom: 1.5rem;
  color: #666;
  line-height: 1.6;
}

/* Footer */
footer {
  background-color: #1A1A1A;
  color: #FFFFFF;
  padding: 5rem var(--padding-x) 2rem;
  position: relative;
  overflow: hidden;
}



.footer-content {
  max-width: 1400px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 4rem;
  margin-bottom: 4rem;
  position: relative;
  z-index: 1;
}

.footer-column h4 {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  margin-bottom: 1.5rem;
  color: #FFFFFF;
}

.footer-logo {
  color: #FFFFFF;
  padding: 0;
  margin-bottom: 1rem;
  display: inline-block;
}

.brand-column p {
  color: #888;
  font-size: 0.95rem;
}

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

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

.footer-links a {
  color: #888;
  font-weight: 400;
  font-size: 0.95rem;
  transition: color 0.2s ease;
}

.footer-links a:hover {
  color: #FFFFFF;
}

.social-icons {
  display: flex;
  gap: 1rem;
}

.social-icons a {
  color: #888;
  font-size: 0.95rem;
  transition: color 0.2s ease;
}

.social-icons a:hover {
  color: #FFFFFF;
}

.footer-bottom {
  max-width: 1400px;
  margin: 0 auto;
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  text-align: center;
  color: #666;
  font-size: 0.85rem;
}

.footer-bottom a {
  color: #666;
  margin-left: 1rem;
}

.footer-bottom a:hover {
  color: #FFFFFF;
}

@media (max-width: 768px) {
  .footer-content {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }
}

/* Contact Modal */
.modal {
  display: none;
  position: fixed;
  z-index: 2000;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: auto;
  background-color: rgba(0, 0, 0, 0.6);
  backdrop-filter: blur(5px);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.modal.show {
  display: block;
  opacity: 1;
}

.modal-content {
  background-color: #FFFFFF;
  margin: 5% auto;
  padding: 3rem;
  border-radius: 16px;
  width: 90%;
  max-width: 550px;
  position: relative;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
  transform: translateY(-20px);
  transition: transform 0.3s ease;
}

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

.close-button {
  color: #aaa;
  float: right;
  font-size: 28px;
  font-weight: bold;
  cursor: pointer;
  position: absolute;
  top: 1.5rem;
  right: 2rem;
  transition: color 0.2s;
}

.close-button:hover,
.close-button:focus {
  color: #000;
  text-decoration: none;
}

.modal-header {
  text-align: center;
  margin-bottom: 2rem;
}

.modal-header h2 {
  font-family: var(--font-heading);
  font-size: 1.75rem;
  margin-bottom: 0.5rem;
  color: var(--text-color);
}

.modal-header p {
  color: #666;
  font-size: 0.95rem;
}

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

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 0.8rem 0;
  border: none;
  border-bottom: 1px solid #E5E5E5;
  font-family: var(--font-main);
  font-size: 1rem;
  color: var(--text-color);
  background: transparent;
  transition: border-color 0.2s;
  border-radius: 0;
  /* Reset for iOS */
}

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

.form-group textarea {
  resize: vertical;
  min-height: 80px;
}

.submit-btn {
  background-color: var(--accent-color);
  color: #FFFFFF;
  border: none;
  padding: 1rem;
  border-radius: 8px;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: background-color 0.2s, transform 0.1s;
  margin-top: 1rem;
}

.submit-btn:hover {
  background-color: #333;
  transform: translateY(-1px);
}


/* CASE STUDY PAGE STYLES */

/* 1. Case Study Hero */
.case-study-hero {
  padding-top: 140px;
  /* More padding for centered look */
  padding-bottom: 4rem;
  padding-left: var(--padding-x);
  padding-right: var(--padding-x);
  text-align: center;
  background-color: var(--bg-color);
}

.case-hero-content {
  max-width: 900px;
  margin: 0 auto 4rem auto;
}

.case-hero-content h1 {
  font-size: 4.5rem;
  margin-bottom: 1rem;
}

.case-hero-sub {
  font-size: 1.25rem;
  color: var(--text-light);
  max-width: 700px;
  margin: 0 auto;
}

.case-hero-visual {
  max-width: 1200px;
  margin: 0 auto;
}

.large-visual {
  aspect-ratio: 16/9;
  background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
  display: flex;
  justify-content: center;
  align-items: center;
  color: #888;
  font-weight: 600;
  font-size: 1.5rem;
}

/* 2. At a Glance Bar */
.at-a-glance {
  border-top: 1px solid #E5E5E5;
  border-bottom: 1px solid #E5E5E5;
  padding: 2rem var(--padding-x);
  background-color: #FAFAFA;
}

.glance-container {
  max-width: 1400px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
}

.glance-item {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.glance-label {
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: #888;
  font-weight: 600;
}

.glance-value {
  font-size: 1.1rem;
  font-weight: 500;
  color: var(--text-color);
}

/* 3. Narrative Section */
.case-narrative {
  padding: 8rem var(--padding-x);
  background-color: var(--bg-color);
}

.narrative-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6rem;
  max-width: 1200px;
  margin: 0 auto;
}

.narrative-col h3 {
  font-family: var(--font-heading);
  font-size: 2rem;
  margin-bottom: 1.5rem;
  color: var(--text-color);
}

.narrative-col p {
  font-size: 1.125rem;
  color: #4A4A4A;
  line-height: 1.8;
}

/* 4. Results Section */
.case-results {
  background-color: #F8F9FA;
  /* Very light grey */
  padding: 6rem var(--padding-x);
}

.results-container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: space-around;
  align-items: center;
  text-align: center;
}

.result-item {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.result-metric {
  font-family: var(--font-heading);
  font-size: 4rem;
  font-weight: 700;
  color: var(--accent-color);
}

.result-label {
  font-size: 1rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--text-light);
  font-weight: 500;
}

/* 5. Visual Gallery */
.case-gallery {
  padding: 8rem var(--padding-x);
  background-color: var(--bg-color);
}

.gallery-container {
  max-width: 1000px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 6rem;
}

.gallery-placeholder-1 {
  aspect-ratio: 16/10;
  background: linear-gradient(135deg, #e0c3fc 0%, #8ec5fc 100%);
}

.gallery-placeholder-2 {
  aspect-ratio: 16/10;
  background: linear-gradient(120deg, #f093fb 0%, #f5576c 100%);
}

/* 6. Bottom CTA */
.case-cta {
  padding: 8rem var(--padding-x);
  text-align: center;
  background-color: #FFFFFF;
}

.cta-content h2 {
  font-family: var(--font-heading);
  font-size: 3rem;
  margin-bottom: 2rem;
  color: var(--text-color);
}

/* Responsive Adjustments */
@media (max-width: 768px) {
  .hero h1 {
    font-size: 2.5rem;
  }

  .hero-container {
    flex-direction: column;
    text-align: center;
    gap: 3rem;
  }

  /* Reset scale for mobile to prevent overflow */
  .hero-visual-container dotlottie-wc {
    transform: scale(1) !important;
  }

  .approach-container {
    flex-direction: column-reverse;
    text-align: center;
    gap: 3rem;
  }

  dotlottie-wc {
    min-width: 0 !important;
    max-width: 100% !important;
  }

  .nav-links,
  .cta-container {
    display: none;
  }

  .glance-container {
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
  }

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

/* Tablet/Small Desktop Adjustments */
@media (max-width: 1024px) {
  .hero-container {
    flex-direction: column;
    text-align: center;
    gap: 3rem;
  }

  /* Reset layout for smaller screens */
  .hero-visual {
    width: 100%;
    min-width: auto;
  }

  /* Reset Lottie for smaller screens */
  .hero-visual dotlottie-wc {
    min-width: 300px !important;
    width: 100% !important;
  }

  .hero-content {
    padding-right: 0;
    /* Remove padding when stacked */
  }
}

@media (max-width: 968px) {
  .case-hero-content h1 {
    font-size: 3rem;
  }

  .glance-container {
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
  }

  .narrative-grid {
    grid-template-columns: 1fr;
    gap: 4rem;
  }

  .results-container {
    flex-direction: column;
    gap: 4rem;
  }
}

@media (max-width: 480px) {
  .glance-container {
    grid-template-columns: 1fr;
    gap: 2rem;
    text-align: center;
  }

  .result-metric {
    font-size: 3rem;
  }
}

/* Success Message */
.success-message {
  text-align: center;
  padding: 2rem 1rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.5rem;
  opacity: 0;
  transition: opacity 0.4s ease;
}

.success-message.fade-in {
  opacity: 1;
}

.modal-body {
  transition: opacity 0.4s ease;
}

.modal-body.fade-out {
  opacity: 0;
}

.checkmark-container {
  width: 80px;
  height: 80px;
  margin-bottom: 1rem;
}

.checkmark-icon {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  display: block;
  stroke-width: 2;
  stroke: #4CAF50;
  /* Green */
  stroke-miterlimit: 10;
  box-shadow: inset 0px 0px 0px #4CAF50;
  animation: fill .4s ease-in-out .4s forwards, scale .3s ease-in-out .9s both;
}

.checkmark-circle {
  stroke-dasharray: 166;
  stroke-dashoffset: 166;
  stroke-width: 2;
  stroke-miterlimit: 10;
  stroke: #4CAF50;
  fill: none;
  animation: stroke 0.6s cubic-bezier(0.65, 0, 0.45, 1) forwards;
}

.checkmark-check {
  transform-origin: 50% 50%;
  stroke-dasharray: 48;
  stroke-dashoffset: 48;
  animation: stroke 0.3s cubic-bezier(0.65, 0, 0.45, 1) 0.8s forwards;
}

@keyframes stroke {
  100% {
    stroke-dashoffset: 0;
  }
}

@keyframes scale {

  0%,
  100% {
    transform: none;
  }

  50% {
    transform: scale3d(1.1, 1.1, 1);
  }
}

@keyframes fill {
  100% {
    box-shadow: inset 0px 0px 0px 30px transparent;
  }
}

.success-message h2 {
  font-family: var(--font-heading);
  font-size: 1.75rem;
  color: var(--text-color);
  margin: 0;
}

.success-message p {
  color: #666;
  font-size: 1rem;
  line-height: 1.6;
  max-width: 400px;
}

.return-home-btn {
  margin-top: 1rem;
  min-width: 200px;
  text-align: center;
  cursor: pointer;
}