/* CSS Custom Properties */
:root {
  /* Colors */
  --primary-green: #00684A;
  --primary-dark: #004d36;
  --primary-light: #00A86B;
  --accent-gold: #D4AF37;
  --text-primary: #1A1A1A;
  --text-secondary: #6B7280;
  --text-light: #9CA3AF;
  --white: #FFFFFF;
  --gray-50: #F9FAFB;
  --gray-100: #F3F4F6;
  --gray-900: #111827;
  
  /* Gradients */
  --gradient-primary: linear-gradient(135deg, var(--primary-green) 0%, var(--primary-dark) 100%);
  --gradient-accent: linear-gradient(135deg, var(--accent-gold) 0%, #B8860B 100%);
  --gradient-text: linear-gradient(135deg, var(--primary-green) 0%, var(--accent-gold) 100%);
  
  /* Typography */
  --font-primary: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  --font-display: 'Playfair Display', serif;
  
  /* Spacing */
  --section-padding: 8rem;
  --container-padding: 2rem;
  
  /* Shadows */
  --shadow-soft: 0 4px 20px rgba(0, 0, 0, 0.08);
  --shadow-medium: 0 8px 30px rgba(0, 0, 0, 0.12);
  --shadow-strong: 0 15px 40px rgba(0, 0, 0, 0.15);
  
  /* Border Radius */
  --radius-small: 8px;
  --radius-medium: 16px;
  --radius-large: 24px;
  --radius-xl: 32px;
}

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

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body {
  font-family: var(--font-primary);
  line-height: 1.6;
  color: var(--text-primary);
  background-color: var(--white);
  overflow-x: hidden;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 var(--container-padding);
}

.container-fluid {
  width: 100%;
  padding: 0 var(--container-padding);
}

/* Glass Navigation */
.nav-glass {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
  padding: 1rem 0;
  transition: all 0.3s ease;
}

.nav-container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 2rem;
  display: flex;
  justify-content: space-between; /* keeps brand left, menu right */
  align-items: center;
}

.nav-brand a {
  display: flex;
  align-items: center;
  gap: 8px; /* space between logo and text */
  text-decoration: none;
  font-family: var(--font-display); /* restore your brand font */
  font-size: 1.5rem;                /* a little smaller than before (1.75rem) */
  font-weight: 600;
  color: var(--text-primary);       /* restore your text color */
}

.nav-brand span {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--text-primary);
}

.nav-logo {
  height: 32px; /* adjust to your liking */
  width: auto;
  display: block;
}

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

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

.nav-link::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--gradient-primary);
  transition: width 0.3s ease;
}

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

.nav-cta {
  background: var(--gradient-primary);
  color: var(--white);
  padding: 0.75rem 1.5rem;
  border-radius: var(--radius-small);
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
}

.nav-cta:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-medium);
}

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 4px;
  background: none;
  border: none;
  cursor: pointer;
}

.nav-toggle span {
  width: 25px;
  height: 2px;
  background: var(--text-primary);
  transition: 0.3s;
  border-radius: 2px;
}

/* Shared style for CTA buttons in nav */
.nav-cta,
.nav-cta-big {
  padding: 0.7rem 1.5rem;
  font-weight: 600;
  border-radius: 12px; /* rounded-square look */
  border: 2px solid transparent;
  transition: all 0.3s ease;
  font-size: 1rem;
}

/* Premium outlined style (Schedule Call) */
.nav-cta {
  background: transparent;
  border-color: var(--primary-green);
  color: var(--primary-green) !important;
}

.nav-cta:hover {
  background: var(--gradient-primary);
  color: var(--white) !important;
  box-shadow: var(--shadow-medium);
}

/* Premium filled style with glow (Take a Survey) */
.nav-cta-big {
  background: linear-gradient(135deg, #FFD700 0%, #B8860B 100%); /* gold gradient */
  color: #111827 !important; /* charcoal text */
  border: none;
  box-shadow: 0 0 12px rgba(255, 215, 0, 0.4);
}

.nav-cta-big:hover {
  filter: brightness(1.05);
  transform: translateY(-2px);
  box-shadow: 0 0 18px rgba(255, 215, 0, 0.6);
}


/* Pulse animation */
@keyframes pulse {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.05); }
}


  /* Dropdown menu */
.dropdown {
  position: relative;
}

.dropdown-menu {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  background: #fff;
  border-radius: var(--radius-small);
  box-shadow: var(--shadow-soft);
  list-style: none;
  padding: 0.5rem 0;
  min-width: 200px;
  z-index: 1000;
}

.dropdown-menu li a {
  display: block;
  padding: 0.75rem 1rem;
  color: var(--text-primary);
  text-decoration: none;
  font-weight: 500;
}

.dropdown-menu li a:hover {
  background: var(--gray-100);
  color: var(--primary-green);
}

/* Show menu on hover */
.dropdown:hover .dropdown-menu {
  display: block;
}


/* Split-Screen Hero */
.hero-split {
  min-height: 100vh;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  position: relative;
  overflow: hidden;
}

.hero-left {
  padding: var(--section-padding) 0 var(--section-padding) 4rem;
  position: relative;
  z-index: 2;
}

.hero-title {
  font-family: var(--font-display);
  font-size: clamp(3rem, 6vw, 4.5rem);
  font-weight: 700;
  line-height: 1.1;
  margin-bottom: 2rem;
  color: var(--text-primary);
}

.title-accent {
  background: var(--gradient-text);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-subtitle {
  font-size: 1.25rem;
  color: var(--text-secondary);
  margin-bottom: 3rem;
  max-width: 500px;
  line-height: 1.6;
}

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

.btn-primary-hero {
  background: var(--gradient-primary);
  color: var(--white);
  padding: 1rem 2rem;
  border: none;
  border-radius: var(--radius-medium);
  font-weight: 600;
  font-size: 1.1rem;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  box-shadow: var(--shadow-soft);
}

.btn-primary-hero:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-strong);
}

.btn-ghost {
  background: transparent;
  color: var(--text-primary);
  padding: 1rem 2rem;
  border: 2px solid var(--gray-100);
  border-radius: var(--radius-medium);
  font-weight: 600;
  font-size: 1.1rem;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.btn-ghost:hover {
  border-color: var(--primary-green);
  color: var(--primary-green);
  transform: translateY(-2px);
}

.hero-right {
  position: relative;
  height: 100vh;
  overflow: hidden;
}

.hero-visual {
  position: relative;
  width: 100%;
  height: 100%;
}

.hero-image-container {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 80%;
  height: 70%;
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-strong);
}

.hero-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.image-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(45deg, rgba(0, 104, 74, 0.3) 0%, rgba(212, 175, 55, 0.2) 100%);
}

.floating-card {
  position: absolute;
  background: var(--white);
  padding: 1rem 1.5rem;
  border-radius: var(--radius-medium);
  box-shadow: var(--shadow-medium);
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-weight: 600;
  animation: float 6s ease-in-out infinite;
  backdrop-filter: blur(10px);
}

.card-1 {
  top: 15%;
  right: 8%;
  animation-delay: 0s;
}

.card-2 {
  bottom: 35%;
  left: 3%;
  animation-delay: 2s;
}

.card-3 {
  top: 55%;
  right: 12%;
  animation-delay: 4s;
}

.card-4 {
  bottom: 15%;
  right: 25%;
  animation-delay: 1s;
}

.card-icon {
  font-size: 1.5rem;
}

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

/* Angled Transition */
.angle-transition {
  height: 100px;
  background: var(--white);
  clip-path: polygon(0 0, 100% 100%, 100% 100%, 0 100%);
  margin-top: -50px;
  position: relative;
  z-index: 1;
}

/* Foundation Asymmetric Section */
.foundation-asymmetric {
  padding: var(--section-padding) 0;
  background: var(--gray-50);
  position: relative;
}

.foundation-grid {
  display: grid;
  grid-template-columns: 45% 55%;
  gap: 4rem;
  align-items: center;
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 2rem;
}

.foundation-visual {
  position: relative;
}

.foundation-container {
  display: flex;
  justify-content: center;  /* centers the image */
  align-items: center;
}

.foundation-image {
  width: 500%;
  max-width: 100%;
  height: auto;
  position: relative;
  z-index: 2;
  border-radius: var(--radius-medium);
  box-shadow: var(--shadow-medium);
}

.foundation-glow {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 120%;
  height: 120%;
  background: radial-gradient(circle, rgba(0, 104, 74, 0.1) 0%, transparent 70%);
  z-index: 1;
}

.section-label {
  display: inline-block;
  background: var(--primary-green);
  color: var(--white);
  padding: 0.5rem 1rem;
  border-radius: var(--radius-small);
  font-size: 0.875rem;
  font-weight: 600;
  margin-bottom: 1.5rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.section-label.light {
  background: rgba(255, 255, 255, 0.2);
  color: var(--white);
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 5vw, 3.5rem);
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 2rem;
}

.title-gradient {
  background: var(--gradient-text);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.section-description {
  font-size: 1.2rem;
  color: var(--text-secondary);
  margin-bottom: 3rem;
  line-height: 1.7;
}

.foundation-steps {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.step-item {
  display: flex;
  gap: 1.5rem;
  align-items: flex-start;
  padding: 1.5rem;
  border-radius: var(--radius-medium);
  transition: all 0.3s ease;
  cursor: pointer;
  border: 2px solid transparent;
}

.step-item.active {
  background: var(--white);
  box-shadow: var(--shadow-soft);
  border-color: var(--primary-green);
}

.step-number {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: var(--gray-100);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 1.1rem;
  color: var(--text-secondary);
  transition: all 0.3s ease;
  flex-shrink: 0;
}

.step-item.active .step-number {
  background: var(--gradient-primary);
  color: var(--white);
}

.step-content h4 {
  font-size: 1.2rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
  color: var(--text-primary);
}

.step-content p {
  color: var(--text-secondary);
  margin: 0;
  line-height: 1.6;
}

/* Video Immersive Section */
.video-immersive {
  padding: var(--section-padding) 0;
  background: var(--gradient-primary);
  position: relative;
  overflow: hidden;
}

.video-background {
  position: relative;
  z-index: 2;
}

.video-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 2rem;
}

.video-content {
  color: var(--white);
}

.video-title {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 4vw, 3rem);
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 2rem;
  color: var(--white);
}

.video-description {
  font-size: 1.2rem;
  line-height: 1.7;
  opacity: 0.9;
}

.video-player {
  position: relative;
}

.video-frame {
  position: relative;
  padding-bottom: 56.25%;
  height: 0;
  border-radius: var(--radius-large);
  overflow: hidden;
  box-shadow: var(--shadow-strong);
}

.video-frame iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.video-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
  backdrop-filter: blur(2px);
}

.video-overlay:hover {
  background: rgba(0, 0, 0, 0.4);
}

.play-button {
  background: var(--white);
  color: var(--primary-green);
  border: none;
  border-radius: 50%;
  width: 80px;
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: var(--shadow-medium);
}

.play-button:hover {
  transform: scale(1.1);
  box-shadow: var(--shadow-strong);
}

/* About Cards Section */
.about-cards {
  padding: var(--section-padding) 0;
  background: var(--white);
}

.about-grid {
  display: grid;
  grid-template-columns: 400px 1fr;
  gap: 4rem;
  align-items: stretch;
}

.about-image-card {
  position: relative;
  background: #fff;
  border-radius: 1rem;
  padding: 1.5rem;
  text-align: center;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  margin: 0 auto;
}

.about-photo {
  width: 100%;
  max-width: 280px;
  height: auto;
  border-radius: 1rem;
  margin: 0 auto;
}

/* Adjust spacing for mobile if needed */
@media (max-width: 768px) {
  .about-photo {
    margin-top: 2rem;
  }
}

.about-badge {
  position: absolute;
  top: 2rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
}


.about-content-card {
  background: var(--white);
  padding: 3rem;
  border-radius: var(--radius-large);
  box-shadow: var(--shadow-soft);
  border: 1px solid var(--gray-100);
}

.about-title {
  font-family: var(--font-display);
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 2rem;
  color: var(--text-primary);
}

.about-description {
  font-size: 1.1rem;
  color: var(--text-secondary);
  margin-bottom: 1.5rem;
  line-height: 1.7;
}

.disclaimer-card {
  background: var(--gray-50);
  padding: 1.5rem;
  border-radius: var(--radius-medium);
  border-left: 4px solid var(--accent-gold);
  margin-top: 2rem;
}

.disclaimer-card p {
  font-size: 0.9rem;
  color: var(--text-secondary);
  margin: 0;
  font-style: italic;
}

/* CTA Floating Section */
.cta-floating {
  padding: var(--section-padding) 0;
  position: relative;
  overflow: hidden;
}

.cta-background {
  background: var(--gradient-primary);
  border-radius: var(--radius-xl);
  margin: 0 2rem;
  position: relative;
  overflow: hidden;
}

.floating-shapes {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.shape {
  position: absolute;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
}

.shape-1 {
  width: 200px;
  height: 200px;
  top: -100px;
  right: -100px;
}

.shape-2 {
  width: 300px;
  height: 300px;
  bottom: -150px;
  left: -150px;
}

.shape-3 {
  width: 150px;
  height: 150px;
  top: 50%;
  right: 20%;
}

.cta-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  padding: 4rem;
  position: relative;
  z-index: 2;
}

.cta-text {
  color: var(--white);
}

.cta-title {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 4vw, 3rem);
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 2rem;
}

.cta-description {
  font-size: 1.2rem;
  line-height: 1.7;
  opacity: 0.9;
}

.cta-form-card {
  background: var(--white);
  padding: 2.5rem;
  border-radius: var(--radius-large);
  box-shadow: var(--shadow-strong);
}

.form-header {
  margin-bottom: 2rem;
}

.form-header h3 {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
  color: var(--text-primary);
}

.form-header p {
  color: var(--text-secondary);
  margin: 0;
}

.form-placeholder {
  text-align: center;
  color: var(--text-secondary);
  margin-bottom: 1.5rem;
}

.form-preview {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-top: 2rem;
}

.input-preview {
  height: 50px;
  background: var(--gray-100);
  border-radius: var(--radius-small);
}

.input-preview.short {
  height: 40px;
}

.btn-preview {
  background: var(--gradient-primary);
  color: var(--white);
  padding: 1rem;
  border-radius: var(--radius-small);
  font-weight: 600;
  text-align: center;
}

/* Footer Modern */
.footer-modern {
  background: var(--gray-900);
  color: var(--white);
  padding: 4rem 0 2rem;
}

.footer-grid {
  display: grid;
  gap: 4rem;
  margin-bottom: 3rem;
}

/* Desktop: two columns */
.footer-two-col {
  grid-template-columns: 1fr 1fr;
  align-items: start;
}


/* Mobile: stack */
@media (max-width: 768px) {
  .footer-two-col {
    grid-template-columns: 1fr;
    text-align: center;
  }
    .nav-logo {
    height: 24px; /* shrink logo */
  }
  .nav-brand span {
    font-size: 1.2rem; /* shrink text */
  }

}


/* Contact Info */
.footer-contact h3 {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
  color: var(--white);
}

.footer-contact h4 {
  font-weight: 600;
  margin-top: 1.5rem;
  margin-bottom: 0.5rem;
  color: var(--white);
}

.footer-contact p {
  margin: 0.25rem 0;
}

.footer-contact a {
  color: var(--primary-light);
  text-decoration: none;
  transition: color 0.3s ease;
}

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

/* Social Icons */
.footer-social {
  margin-top: 1rem;
}

.footer-social a {
  margin-right: 12px;
  font-size: 1.25rem;
  color: var(--white);
  opacity: 0.8;
  transition: opacity 0.3s ease;
}

.footer-social a:hover {
  opacity: 1;
}

.footer-social i {
  font-size: 1.5rem;
  color: #fff !important;
}

/* Map */
.footer-map iframe {
  border-radius: 8px;
  width: 100%;
  min-height: 250px;
}

/* Footer Bottom */
.footer-bottom {
  text-align: center;
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  color: var(--text-light);
  font-size: 0.9rem;
}

.footer-legal {
  margin-top: 1rem;
  font-size: 0.9rem;
}

.footer-legal a {
  color: var(--text-light);
  text-decoration: none;
  margin: 0 0.5rem;
  transition: color 0.3s ease;
}

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

/* Floating CTA Button */
.floating-cta {
  position: fixed;
  bottom: 6rem;        /* ⬆ move it above the chatbot */
  right: 2rem;
  z-index: 9999;       /* ⬆ ensure it stacks above chatbot */
  opacity: 0;
  visibility: hidden;
  transform: translateY(20px);
  transition: all 0.3s ease;
}


.floating-cta.visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.floating-btn {
  background: var(--gradient-primary);
  color: var(--white);
  border: none;
  border-radius: var(--radius-xl);
  padding: 1rem 1.5rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-weight: 600;
  cursor: pointer;
  box-shadow: var(--shadow-strong);
  transition: all 0.3s ease;
}

.floating-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 20px 40px rgba(0, 104, 74, 0.3);
}

.nav-menu {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  list-style: none;   /* remove bullets */
  margin: 0;          
  padding: 0;
}


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

.nav-actions {
  display: flex;
  gap: 0.75rem;
  flex-shrink: 0; /* keep CTAs on one line */
}

/* Remove list styling */
.nav-links,
.nav-actions {
  list-style: none;
  margin: 0;
  padding: 0;
}

/* Responsive Design */
@media (max-width: 1024px) {
  .hero-split {
    grid-template-columns: 1fr;
    min-height: auto;
  }
  
  .hero-left {
    padding: 6rem 2rem 4rem;
    text-align: center;
  }
  
  .hero-right {
    height: 60vh;
    order: -1;
  }
  
  .foundation-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
  
  .video-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
  
.about-grid {
  display: flex;
  gap: 2rem;
  align-items: stretch;
  flex-wrap: wrap; /* for mobile responsiveness */
}

  
  .cta-content {
    grid-template-columns: 1fr;
    gap: 3rem;
    padding: 3rem 2rem;
  }
  
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
    text-align: center;
  }
}

  .about-image-card {
    margin: 0 auto;
    text-align: center;
  }

  .about-photo {
    margin-top: 2rem;
  }

  .about-badge {
    left: 50%;
    transform: translateX(-50%);
  }

  

@media (max-width: 768px) {
  :root {
    --section-padding: 4rem;
  }
  
  .nav-menu {
    position: fixed;
    top: 100%;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    flex-direction: column;
    padding: 2rem;
    gap: 1.5rem;
    transform: translateY(-100%);
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
  }
  
  .nav-menu.active {
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
  }
  
  .nav-toggle {
    display: flex;
  }
 
  .hero-actions {
    flex-direction: column;
    align-items: stretch;
    gap: 1rem;
  }
  
  .floating-card {
    padding: 0.75rem 1rem;
    font-size: 0.9rem;
  }
  
  .foundation-steps {
    gap: 1rem;
  }
  
  .step-item {
    padding: 1rem;
  }
  
  .cta-background {
    margin: 0 1rem;
    border-radius: var(--radius-large);
  }
  
  .floating-cta {
    bottom: 6rem;
    right: 1rem;
  }
}

@media (max-width: 480px) {
  .nav-container,
  .container {
    padding: 0 1rem;
  }
  
  .hero-left {
    padding: 4rem 1rem 3rem;
  }
  
  .about-content-card {
    padding: 2rem;
    
  }
  
  .cta-content {
    padding: 2rem 1rem;
  }
  
  .floating-btn {
    padding: 0.75rem 1rem;
    font-size: 0.9rem;
  }
}

/* Tablet Fix: Adjust nav for iPad widths */
@media (max-width: 1024px) and (min-width: 769px) {
  .nav-menu {
    flex-wrap: nowrap;       /* force items to stay in one line */
    gap: 0.75rem;            
  }

/* Shared style for CTA buttons in nav */
.nav-cta,
.nav-cta-big {
  padding: 0.7rem 1.5rem;
  font-weight: 600;
  border-radius: 12px;
  border: 2px solid transparent;
  transition: all 0.3s ease;
  font-size: clamp(0.8rem, 1.5vw, 1rem); /* ⬅ new dynamic size */
}
  .nav-logo {
    height: 26px;            /* reduce logo size */
  }

  .nav-brand span {
    font-size: 1.1rem;       /* reduce brand text size */
  }

  .nav-actions .nav-cta,
  .nav-actions .nav-cta-big {
    padding: 0.5rem 1rem;
    font-size: 0.9rem;
    white-space: nowrap; /* prevent wrapping */
  }

}