/* ==========================================================================
   ParsDo Styling - Vanilla CSS Design System
   ========================================================================== */

/* Design Tokens & CSS Variables */
:root {
  /* Color System */
  --primary-color: hsl(221, 83%, 53%);      /* Vibrant Royal Blue */
  --primary-hover: hsl(221, 83%, 45%);      /* Darker Royal Blue */
  --primary-light: hsl(219, 100%, 96%);     /* Very Light Blue Background */
  --dark-color: hsl(218, 60%, 16%);
  --text-dark: hsl(218, 60%, 16%);          /* Deep Slate for Headings */
  --text-muted: hsl(218, 15%, 45%);         /* Neutral Slate for Body Copy */
  --text-light: hsl(210, 38%, 95%);         /* Light Blue-Grey for Dark Backgrounds */
  --bg-light: hsl(210, 20%, 98%);           /* Subtle Grey-Blue Section Bg */
  --white: hsl(0, 0%, 100%);
  --border-light: rgba(0, 0, 0, 0.08);
  --border-hover: rgba(37, 99, 235, 0.3);

  /* Footer Colors */
  --footer-bg-start: hsl(220, 95%, 8%);      /* Dark Deep Blue Start */
  --footer-bg-end: hsl(222, 90%, 14%);       /* Dark Deep Blue End */
  
  /* Typography */
  --font-family-title: 'Outfit', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  --font-family-body: 'Inter', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;

  /* Layout/Spacing */
  --container-width: 1200px;
  --border-radius-lg: 16px;
  --border-radius-md: 10px;
  --border-radius-sm: 6px;

  /* Shadows */
  --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.04);
  --shadow-md: 0 10px 30px rgba(0, 0, 0, 0.05);
  --shadow-lg: 0 20px 40px rgba(15, 23, 42, 0.08);
  --shadow-card-hover: 0 22px 35px rgba(37, 99, 235, 0.1);

  /* Transitions */
  --transition-fast: 0.2s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-normal: 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

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

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

body {
  font-family: var(--font-family-body);
  color: var(--text-dark);
  background-color: var(--white);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-family-title);
  color: var(--text-dark);
  font-weight: 700;
  line-height: 1.25;
}

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

ul {
  list-style: none;
}

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

/* Helper Utilities */
.container {
  width: 100%;
  max-width: var(--container-width);
  margin-left: auto;
  margin-right: auto;
  padding-left: 24px;
  padding-right: 24px;
}

.section-padding {
  padding-top: 100px;
  padding-bottom: 100px;
}

@media (max-width: 768px) {
  .section-padding {
    padding-top: 60px;
    padding-bottom: 60px;
  }
}

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

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-family-body);
  font-weight: 600;
  font-size: 0.95rem;
  padding: 12px 28px;
  border-radius: var(--border-radius-sm);
  border: 2px solid transparent;
  cursor: pointer;
  transition: all var(--transition-fast);
  white-space: nowrap;
}

.btn-primary {
  background-color: var(--primary-color);
  color: var(--white);
  box-shadow: 0 4px 14px rgba(37, 99, 235, 0.3);
}

.btn-primary:hover {
  background-color: var(--primary-hover);
  box-shadow: 0 6px 20px rgba(37, 99, 235, 0.4);
  transform: translateY(-1px);
}

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

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

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

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

/* Header Section */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 80px;
  z-index: 1000;
  background-color: transparent;
  display: flex;
  align-items: center;
  transition: all var(--transition-normal);
}

/* Header dynamic states */
.site-header.scrolled {
  background-color: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(12px);
  height: 70px;
  box-shadow: var(--shadow-sm);
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

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

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

.logo-icon {
  transition: transform var(--transition-normal);
}

.logo-area:hover .logo-icon {
  transform: rotate(-10deg) scale(1.05);
}

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

.brand-name {
  font-family: var(--font-family-title);
  font-size: 1.5rem;
  font-weight: 800;
  color: hsl(222, 60%, 15%);
  line-height: 1.1;
  letter-spacing: -0.5px;
}

.brand-tagline {
  font-size: 0.65rem;
  font-weight: 500;
  color: var(--text-muted);
  letter-spacing: 0.2px;
}

.desktop-nav {
  display: block;
}

.nav-list {
  display: flex;
  gap: 28px;
}

.nav-link {
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--text-muted);
  position: relative;
  padding: 6px 0;
}

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

/* Nav Link Underline animation */
.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background-color: var(--primary-color);
  transition: width var(--transition-fast);
}

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

.header-cta {
  display: block;
}

.btn-consultation {
  padding: 10px 20px;
  font-size: 0.85rem;
}

/* Mobile Toggle menu button */
.mobile-menu-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  position: relative;
  width: 30px;
  height: 20px;
  flex-direction: column;
  justify-content: space-between;
  z-index: 1002;
}

.mobile-menu-toggle span {
  display: block;
  width: 100%;
  height: 3px;
  background-color: var(--text-dark);
  border-radius: 3px;
  transition: all var(--transition-normal);
}

/* Mobile dropdown navigation */
.mobile-nav-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background-color: rgba(15, 23, 42, 0.4);
  backdrop-filter: blur(8px);
  z-index: 999;
  opacity: 0;
  visibility: hidden;
  transition: all var(--transition-normal);
}

.mobile-nav-panel {
  position: absolute;
  top: 0;
  right: -320px;
  width: 300px;
  height: 100%;
  background-color: var(--white);
  padding: 100px 30px 40px 30px;
  display: flex;
  flex-direction: column;
  gap: 30px;
  box-shadow: var(--shadow-lg);
  transition: right var(--transition-normal);
}

.mobile-nav-overlay.active {
  opacity: 1;
  visibility: visible;
}

.mobile-nav-overlay.active .mobile-nav-panel {
  right: 0;
}

.mobile-nav-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.mobile-nav-link {
  font-family: var(--font-family-title);
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--text-dark);
}

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

/* Toggle Hamburger animation */
.mobile-menu-toggle.active span:nth-child(1) {
  transform: translateY(8px) rotate(45deg);
}

.mobile-menu-toggle.active span:nth-child(2) {
  opacity: 0;
}

.mobile-menu-toggle.active span:nth-child(3) {
  transform: translateY(-9px) rotate(-45deg);
}

@media (max-width: 991px) {
  .desktop-nav, .header-cta {
    display: none;
  }
  .mobile-menu-toggle {
    display: flex;
  }
}

/* Hero Section */
.hero-section {
  position: relative;
  height: 100vh;
  min-height: 650px;
  display: flex;
  align-items: center;
  color: var(--text-dark);
  overflow: hidden;
  background-color: var(--white);
}

.hero-bg {
  position: absolute;
  top: 0;
  right: 0;
  width: 60%;
  height: 100%;
  background-size: cover;
  background-position: center;
  z-index: 1;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, 
    var(--white) 0%, 
    var(--white) 45%, 
    rgba(255, 255, 255, 0.8) 55%, 
    rgba(255, 255, 255, 0) 100%);
  z-index: 2;
}

.hero-container {
  position: relative;
  z-index: 3;
}

.hero-content {
  max-width: 580px;
}

.hero-title {
  font-size: 3.5rem;
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -1.5px;
  margin-bottom: 24px;
}

.text-gradient {
  background: linear-gradient(135deg, var(--primary-color) 0%, #1e40af 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-subtitle {
  font-size: 1.15rem;
  color: var(--text-muted);
  line-height: 1.6;
  margin-bottom: 36px;
}

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

.btn-arrow {
  margin-left: 8px;
  transition: transform var(--transition-fast);
}

.btn:hover .btn-arrow {
  transform: translateX(4px);
}

/* Scroll down indicator */
.scroll-indicator {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  color: var(--primary-color);
  background-color: var(--white);
  width: 44px;
  height: 44px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-md);
  z-index: 4;
  animation: bounce 2s infinite;
  border: 1px solid rgba(0, 0, 0, 0.05);
}

@keyframes bounce {
  0%, 20%, 50%, 80%, 100% {
    transform: translateX(-50%) translateY(0);
  }
  40% {
    transform: translateX(-50%) translateY(-10px);
  }
  60% {
    transform: translateX(-50%) translateY(-5px);
  }
}

/* Hero responsive viewports */
@media (max-width: 991px) {
  .hero-bg {
    width: 100%;
    opacity: 0.25;
  }
  .hero-overlay {
    background: linear-gradient(180deg, 
      rgba(255, 255, 255, 0.95) 0%, 
      rgba(255, 255, 255, 0.8) 100%);
  }
  .hero-content {
    max-width: 100%;
    text-align: center;
    padding-top: 60px;
  }
  .hero-title {
    font-size: 2.75rem;
  }
  .hero-buttons {
    justify-content: center;
  }
}

@media (max-width: 480px) {
  .hero-title {
    font-size: 2.2rem;
  }
}

/* Section Header Styling */
.section-header {
  margin-bottom: 60px;
}

.section-title {
  font-size: 2.25rem;
  font-weight: 700;
  color: var(--text-dark);
}

.section-title-divider {
  width: 50px;
  height: 3px;
  background-color: var(--primary-color);
  margin: 16px auto 0 auto;
  border-radius: 2px;
}

/* Services Grid & Cards */
.services-section {
  background-color: var(--white);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 20px;
}

.service-card {
  background-color: var(--white);
  border: 1px solid var(--border-light);
  border-radius: var(--border-radius-lg);
  padding: 36px 24px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  box-shadow: var(--shadow-sm);
  transition: all var(--transition-normal);
  position: relative;
  overflow: hidden;
}

.service-card:hover {
  transform: translateY(-8px);
  border-color: var(--border-hover);
  box-shadow: var(--shadow-card-hover);
}

.service-icon-container {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  background-color: var(--primary-light);
  color: var(--primary-color);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
  transition: all var(--transition-normal);
}

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

.service-card-title {
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 12px;
  line-height: 1.35;
  color: var(--text-dark);
  min-height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.service-card-desc {
  font-size: 0.88rem;
  color: var(--text-muted);
  line-height: 1.5;
  margin-bottom: 20px;
}

.card-footer-line {
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 25px;
  height: 3px;
  background-color: var(--primary-color);
  border-radius: 3px;
  transition: width var(--transition-fast);
}

.service-card:hover .card-footer-line {
  width: 60px;
}

/* Services responsiveness */
@media (max-width: 1200px) {
  .services-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

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

@media (max-width: 520px) {
  .services-grid {
    grid-template-columns: 1fr;
    max-width: 320px;
    margin: 0 auto;
  }
}

/* Why Choose ParsDo Section */
.why-choose-section {
  background-color: var(--bg-light);
  border-top: 1px solid rgba(0, 0, 0, 0.03);
  border-bottom: 1px solid rgba(0, 0, 0, 0.03);
}

.why-choose-bar {
  display: flex;
  background-color: var(--white);
  border: 1px solid var(--border-light);
  border-radius: var(--border-radius-lg);
  box-shadow: var(--shadow-md);
  padding: 30px 20px;
  align-items: center;
  justify-content: space-around;
}

.why-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  flex: 1;
  text-align: center;
  padding: 10px 15px;
  transition: all var(--transition-fast);
}

.why-item:hover {
  transform: translateY(-2px);
}

.why-icon-wrap {
  width: 50px;
  height: 50px;
  border-radius: 12px;
  background-color: var(--primary-light);
  color: var(--primary-color);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all var(--transition-fast);
}

.why-item:hover .why-icon-wrap {
  background-color: var(--primary-color);
  color: var(--white);
}

.why-text {
  font-family: var(--font-family-title);
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--text-dark);
}

.why-divider {
  width: 1px;
  height: 60px;
  background-color: var(--border-light);
}

@media (max-width: 991px) {
  .why-choose-bar {
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
    padding: 30px 10px;
  }
  .why-item {
    flex: unset;
    width: calc(33% - 20px);
    min-width: 150px;
  }
  .why-divider {
    display: none;
  }
}

@media (max-width: 600px) {
  .why-item {
    width: calc(50% - 20px);
  }
}

/* About and Industries Split Grid Section */
.about-industries-section {
  background-color: var(--white);
}

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

.split-title {
  font-size: 1.85rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 24px;
  position: relative;
}

.about-card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.about-text {
  font-size: 0.95rem;
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 28px;
}

.meeting-image-wrap {
  position: relative;
  border-radius: var(--border-radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  border: 1px solid rgba(0, 0, 0, 0.06);
}

.meeting-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition-normal);
}

.meeting-image-wrap:hover .meeting-image {
  transform: scale(1.03);
}

.industries-card {
  display: flex;
  flex-direction: column;
}

.industry-list {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.industry-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 16px;
  border-radius: var(--border-radius-md);
  border: 1px solid transparent;
  transition: all var(--transition-fast);
}

.industry-item:hover {
  background-color: var(--primary-light);
  border-color: var(--border-hover);
}

.industry-icon-wrap {
  width: 48px;
  height: 48px;
  border-radius: var(--border-radius-sm);
  background-color: var(--white);
  border: 1px solid var(--border-light);
  color: var(--primary-color);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: all var(--transition-fast);
}

.industry-item:hover .industry-icon-wrap {
  background-color: var(--primary-color);
  color: var(--white);
  border-color: var(--primary-color);
}

.industry-name {
  font-size: 1rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 6px;
}

.industry-desc {
  font-size: 0.85rem;
  color: var(--text-muted);
  line-height: 1.45;
}

@media (max-width: 1024px) {
  .split-grid {
    grid-template-columns: 1fr 1fr;
  }
  .meeting-image-wrap {
    grid-column: span 2;
    order: -1;
    max-height: 380px;
  }
}

@media (max-width: 768px) {
  .split-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  .meeting-image-wrap {
    grid-column: span 1;
    max-height: 250px;
  }
}

/* Footer Section */
.site-footer {
  background: linear-gradient(135deg, var(--footer-bg-start) 0%, var(--footer-bg-end) 100%);
  color: var(--text-light);
  position: relative;
  overflow: hidden;
  padding-top: 100px;
  padding-bottom: 40px;
}

.footer-container {
  position: relative;
  z-index: 3;
}

/* Background grid overlay in footer for premium feel */
.site-footer::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: radial-gradient(rgba(37, 99, 235, 0.12) 1px, transparent 1px);
  background-size: 24px 24px;
  z-index: 1;
  opacity: 0.8;
  pointer-events: none;
}

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

.footer-col {
  display: flex;
  flex-direction: column;
}

.footer-title-highlight {
  font-family: var(--font-family-title);
  font-size: 2.1rem;
  font-weight: 700;
  color: var(--white);
  line-height: 1.2;
  margin-bottom: 16px;
}

.title-underline {
  width: 60px;
  height: 3px;
  background-color: var(--white);
  margin-bottom: 24px;
  border-radius: 2px;
}

.footer-desc {
  font-size: 0.95rem;
  color: hsl(210, 20%, 80%);
  line-height: 1.65;
  margin-bottom: 30px;
}

/* Info Details */
.info-list {
  display: flex;
  flex-direction: column;
  gap: 28px;
  padding-top: 10px;
}

.info-item {
  display: flex;
  align-items: center;
  gap: 16px;
}

.info-icon {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  flex-shrink: 0;
  transition: all var(--transition-fast);
}

.info-item:hover .info-icon {
  background-color: var(--white);
  color: var(--primary-color);
  border-color: var(--white);
}

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

.info-label {
  font-size: 0.72rem;
  color: hsl(210, 20%, 70%);
  text-transform: uppercase;
  letter-spacing: 0.8px;
  font-weight: 500;
}

.info-value {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--white);
}

.info-value:hover {
  text-decoration: underline;
}

/* Contact Form Card */
.form-container {
  background-color: var(--white);
  border-radius: var(--border-radius-lg);
  padding: 36px;
  box-shadow: var(--shadow-lg);
  color: var(--text-dark);
}

.form-title {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 24px;
}

.form-group {
  margin-bottom: 16px;
  position: relative;
}

.form-control {
  width: 100%;
  font-family: var(--font-family-body);
  font-size: 0.9rem;
  padding: 14px 18px;
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: var(--border-radius-sm);
  background-color: var(--bg-light);
  color: var(--text-dark);
  transition: all var(--transition-fast);
  outline: none;
}

.form-control::placeholder {
  color: #a0aec0;
}

.form-control:focus {
  border-color: var(--primary-color);
  background-color: var(--white);
  box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.1);
}

/* Form Error Validation states */
.form-control.error {
  border-color: #f87171;
  background-color: #fef2f2;
}

.form-error-msg {
  display: none;
  font-size: 0.75rem;
  color: #ef4444;
  margin-top: 4px;
}

.form-control.error + .form-error-msg {
  display: block;
}

/* Form Success state */
.form-success-alert {
  display: flex;
  align-items: center;
  gap: 12px;
  background-color: #f0fdf4;
  border: 1px solid #bbf7d0;
  border-radius: var(--border-radius-sm);
  padding: 12px 16px;
  margin-bottom: 16px;
  color: #16a34a;
  font-size: 0.85rem;
  line-height: 1.4;
  transition: all var(--transition-fast);
}

.form-success-alert.hide {
  display: none;
}

.btn-submit {
  width: 100%;
  display: flex;
  gap: 8px;
}

.btn-submit-icon {
  transition: transform var(--transition-fast);
}

.btn-submit:hover .btn-submit-icon {
  transform: translate(2px, -2px);
}

/* Bottom Bar */
.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding-top: 30px;
  font-size: 0.85rem;
  color: hsl(210, 20%, 70%);
  position: relative;
  z-index: 2;
}

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

.social-btn {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  color: hsl(210, 20%, 80%);
  transition: all var(--transition-fast);
}

.social-btn:hover {
  background-color: var(--white);
  color: var(--primary-color);
  border-color: var(--white);
  transform: translateY(-2px);
}

/* Footer Responsive viewports */
@media (max-width: 991px) {
  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 40px;
  }
  .footer-form-card {
    grid-column: span 2;
  }
}

@media (max-width: 640px) {
  .site-footer {
    padding-top: 60px;
  }
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  .footer-form-card {
    grid-column: span 1;
  }
  .form-container {
    padding: 24px;
  }
  .footer-bottom {
    flex-direction: column-reverse;
    gap: 16px;
    text-align: center;
  }
}

/* ==========================================================================
   Reveal on Scroll & CSS Animations
   ========================================================================== */
.reveal-on-scroll {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s cubic-bezier(0.2, 0.8, 0.2, 1),
              transform 0.8s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.reveal-on-scroll.revealed {
  opacity: 1;
  transform: translateY(0);
}

/* Fade in on page load */
.fade-in-up-load {
  animation: fadeInUp 0.9s cubic-bezier(0.2, 0.8, 0.2, 1) forwards;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(40px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
