/* Import Google Fonts */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&family=Outfit:wght@400;500;600;700;800;900&display=swap');

/* Design Tokens - Tech Startup / Stripe Aesthetic */
:root {
  --primary: #0052ff;
  /* Digital Electric Blue */
  --primary-hover: #0041cc;
  --primary-light: #e6efff;
  --accent: #22d3ee;
  /* Cyan Sparkle */
  --background: #ffffff;
  /* Pure Clean White */
  --bg-subtle: #fafafa;
  /* Soft Grey */
  --text-main: #090d16;
  /* Slate-950 Charcoal */
  --text-muted: #525f7a;
  /* Stripe Slate-600 */
  --text-light: #8898aa;
  /* Slate-400 */
  --border: #f1f5f9;
  /* Very Light Slate border */
  --border-dark: #e2e8f0;
  --white: #ffffff;
  --whatsapp: #25d366;
  /* WhatsApp Green */
  --whatsapp-hover: #20ba5a;

  --transition-fast: 0.15s cubic-bezier(0.16, 1, 0.3, 1);
  --transition-normal: 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  --transition-slow: 0.8s cubic-bezier(0.16, 1, 0.3, 1);

  --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.02);
  --shadow-md: 0 4px 12px rgba(0, 0, 0, 0.03), 0 1px 3px rgba(0, 0, 0, 0.02);
  --shadow-lg: 0 12px 24px rgba(0, 0, 0, 0.04), 0 4px 8px rgba(0, 0, 0, 0.02);
  --shadow-xl: 0 30px 60px rgba(9, 13, 22, 0.06), 0 10px 20px rgba(9, 13, 22, 0.03);
  --shadow-blue-glow: 0 0 30px rgba(0, 82, 255, 0.15);

  --font-headings: 'Outfit', sans-serif;
  --font-body: 'Inter', sans-serif;

  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 24px;
  --radius-full: 9999px;
}

/* Global resets & spacing */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  scroll-behavior: smooth;
}

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

/* Floating Clean Glass Particles Canvas */
#bubbles-canvas {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
  pointer-events: auto;
}

h1,
h2,
h3,
h4 {
  font-family: var(--font-headings);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.1;
}

p {
  color: var(--text-muted);
}

a {
  text-decoration: none;
  color: inherit;
}

/* Intersection Reveal Transitions */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity var(--transition-slow), transform var(--transition-slow);
}

.reveal.active {
  opacity: 1;
  transform: translateY(0);
}

/* Header & Navigation */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 80px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 10%;
  background: rgba(255, 255, 255, 0.8);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(241, 245, 249, 0.6);
  z-index: 1000;
  transition: all var(--transition-normal);
}

.navbar.scrolled {
  height: 70px;
  background: rgba(255, 255, 255, 0.95);
  box-shadow: var(--shadow-sm);
}

.logo {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-headings);
  font-size: 1.6rem;
  font-weight: 900;
  color: var(--text-main);
  letter-spacing: -0.04em;
}

.brand-logo-img {
  height: 40px;
  width: auto;
  object-fit: contain;
}

.nav-links {
  display: flex;
  list-style: none;
  gap: 40px;
  align-items: center;
}

.nav-link {
  font-weight: 500;
  color: var(--text-muted);
  font-size: 0.95rem;
  transition: color var(--transition-fast);
}

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

.nav-cta {
  background: var(--text-main);
  color: var(--white);
  padding: 10px 24px;
  border-radius: var(--radius-full);
  font-weight: 600;
  font-size: 0.9rem;
  transition: all var(--transition-fast);
  border: 1px solid var(--text-main);
}

.nav-cta:hover {
  background: transparent;
  color: var(--text-main);
}

.mobile-nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 20px;
  height: 14px;
  background: transparent;
  border: none;
  cursor: pointer;
  z-index: 1001;
}

.mobile-nav-toggle span {
  width: 100%;
  height: 2px;
  background-color: var(--text-main);
  border-radius: 2px;
  transition: all var(--transition-fast);
}

/* Full-Screen Centered Hero Section */
.hero {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 160px 10% 100px 10%;
  text-align: center;
  position: relative;
}

.hero-text {
  max-width: 800px;
  margin-bottom: 50px;
  z-index: 10;
}

.trust-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--bg-subtle);
  border: 1px solid var(--border-dark);
  padding: 8px 18px;
  border-radius: var(--radius-full);
  font-size: 0.85rem;
  font-weight: 600;
  margin-bottom: 30px;
  color: var(--text-main);
}

.trust-badge-dot {
  width: 6px;
  height: 6px;
  background-color: var(--primary);
  border-radius: 50%;
}

.hero h1 {
  font-size: 6rem;
  font-weight: 900;
  line-height: 0.95;
  letter-spacing: -0.05em;
  margin-bottom: 24px;
  color: var(--text-main);
}

/* Linear-style gradient text */
.hero h1 span {
  background: linear-gradient(180deg, var(--text-main) 30%, var(--primary) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero p {
  font-size: 1.4rem;
  color: var(--text-muted);
  max-width: 650px;
  margin: 0 auto 40px auto;
  font-weight: 400;
}

.hero-actions {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

/* Premium Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 16px 36px;
  border-radius: var(--radius-full);
  font-weight: 600;
  font-size: 1.05rem;
  cursor: pointer;
  transition: all var(--transition-fast);
  border: none;
}

.btn-primary {
  background-color: var(--primary);
  color: var(--white);
  box-shadow: 0 4px 14px rgba(0, 82, 255, 0.2);
}

.btn-primary:hover {
  background-color: var(--primary-hover);
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(0, 82, 255, 0.35);
}

.btn-secondary {
  background-color: var(--background);
  color: var(--text-main);
  border: 1px solid var(--border-dark);
}

.btn-secondary:hover {
  background-color: var(--bg-subtle);
  transform: translateY(-1px);
}


/* Section Header Styles */
section {
  padding: 140px 10%;
  position: relative;
  z-index: 2;
}

.section-header {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 80px auto;
}

.section-header h2 {
  font-size: 3.5rem;
  color: var(--text-main);
  margin-bottom: 20px;
  letter-spacing: -0.04em;
}

.section-header p {
  font-size: 1.2rem;
  font-weight: 400;
}

/* Services Grid (12 services) */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 24px;
}

.service-card {
  background: var(--background);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 32px;
  transition: all var(--transition-normal);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  box-shadow: var(--shadow-sm);
}

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

.service-icon {
  width: 48px;
  height: 48px;
  border-radius: 10px;
  background: var(--bg-subtle);
  color: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
  transition: all var(--transition-fast);
}

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

.service-card h3 {
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 10px;
  color: var(--text-main);
}

.service-card p {
  font-size: 0.95rem;
  line-height: 1.5;
}

/* Process Timeline Section */
.process-timeline {
  position: relative;
  max-width: 1000px;
  margin: 40px auto 0 auto;
  padding: 40px 0;
}

.timeline-line {
  position: absolute;
  left: 50%;
  top: 0;
  width: 2px;
  height: 100%;
  background: var(--border);
  transform: translateX(-50%);
  z-index: 1;
}

.timeline-progress {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 0%;
  background: var(--primary);
  transition: height 0.1s linear;
}

.timeline-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  margin-bottom: 80px;
  position: relative;
  z-index: 2;
}

.timeline-item:last-child {
  margin-bottom: 0;
}

.timeline-content {
  width: 43%;
  background: var(--background);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 30px;
  box-shadow: var(--shadow-sm);
  transition: all var(--transition-normal);
}

.timeline-item:hover .timeline-content {
  border-color: var(--border-dark);
  box-shadow: var(--shadow-md);
}

.timeline-item:nth-child(even) {
  flex-direction: row-reverse;
}

.timeline-dot {
  width: 48px;
  height: 48px;
  background: var(--white);
  border: 2px solid var(--border-dark);
  border-radius: 50%;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-headings);
  font-weight: 800;
  font-size: 1.1rem;
  color: var(--text-muted);
  transition: all var(--transition-normal);
}

.timeline-item.active .timeline-dot {
  border-color: var(--primary);
  background: var(--primary);
  color: var(--white);
  box-shadow: var(--shadow-blue-glow);
}

.timeline-content h3 {
  font-size: 1.4rem;
  margin-bottom: 10px;
}

/* Why Choose Us Cards */
.why-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 24px;
}

.why-card {
  background: var(--background);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 40px;
  box-shadow: var(--shadow-sm);
  transition: all var(--transition-normal);
}

.why-card:hover {
  transform: translateY(-4px);
  border-color: var(--border-dark);
  box-shadow: var(--shadow-xl);
}

.why-card-icon {
  width: 54px;
  height: 54px;
  border-radius: 12px;
  background: var(--primary-light);
  color: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 28px;
}

.why-card h3 {
  font-size: 1.35rem;
  margin-bottom: 12px;
}

/* Modern Highlight Banner */
.highlight-section {
  padding: 60px 10%;
}

.highlight-banner {
  background: var(--text-main);
  border-radius: var(--radius-lg);
  padding: 80px;
  color: var(--white);
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow-xl);
}

.highlight-banner::before {
  content: '';
  position: absolute;
  top: -20%;
  right: -10%;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(0, 82, 255, 0.25) 0%, transparent 70%);
  pointer-events: none;
}

.highlight-content {
  max-width: 600px;
  z-index: 2;
}

.highlight-content h2 {
  font-size: 3.5rem;
  font-weight: 800;
  line-height: 1.05;
  letter-spacing: -0.04em;
  margin-bottom: 16px;
}

.highlight-content p {
  color: rgba(255, 255, 255, 0.7);
  font-size: 1.25rem;
  font-weight: 400;
}

.highlight-badge {
  background: var(--primary);
  color: var(--white);
  padding: 18px 36px;
  border-radius: var(--radius-full);
  font-family: var(--font-headings);
  font-weight: 800;
  font-size: 1.15rem;
  box-shadow: var(--shadow-blue-glow);
  z-index: 2;
  animation: pulse 3s infinite ease-in-out;
}

/* Contact & Booking Dashboard UI */
.contact-container {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 48px;
  align-items: start;
}

.booking-panel {
  background: var(--background);
  border: 1px solid var(--border-dark);
  border-radius: var(--radius-lg);
  padding: 48px;
  box-shadow: var(--shadow-lg);
}

.booking-panel h3 {
  font-size: 2rem;
  margin-bottom: 8px;
}

.booking-panel p {
  margin-bottom: 36px;
}

.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}

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

.form-group.full-width {
  grid-column: span 2;
}

.form-group label {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text-main);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.form-group input,
.form-group select {
  font-family: var(--font-body);
  padding: 14px 18px;
  border-radius: var(--radius-sm);
  border: 1px solid var(--border-dark);
  font-size: 0.95rem;
  outline: none;
  background-color: var(--bg-subtle);
  transition: all var(--transition-fast);
}

.form-group input:focus,
.form-group select:focus {
  border-color: var(--primary);
  background-color: var(--white);
  box-shadow: 0 0 0 4px rgba(0, 82, 255, 0.1);
}

/* Info stack side */
.info-stack {
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.info-card {
  background: var(--bg-subtle);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 32px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.info-card h4 {
  font-size: 1.2rem;
  color: var(--text-main);
}

.info-card p {
  font-size: 0.95rem;
}

.btn-row {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.btn-phone {
  background: var(--text-main);
  color: var(--white);
  padding: 10px 20px;
  border-radius: var(--radius-full);
  font-size: 0.85rem;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.btn-phone:hover {
  background: var(--primary);
}

.btn-whatsapp {
  background: var(--whatsapp);
  color: var(--white);
  padding: 10px 20px;
  border-radius: var(--radius-full);
  font-size: 0.85rem;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  box-shadow: 0 4px 12px rgba(37, 211, 102, 0.2);
}

.btn-whatsapp:hover {
  background: var(--whatsapp-hover);
  transform: translateY(-1px);
}

/* Minimal Map Placeholder */
.map-card {
  background: var(--background);
  border: 1px solid var(--border-dark);
  border-radius: var(--radius-lg);
  overflow: hidden;
  height: 260px;
  box-shadow: var(--shadow-sm);
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.map-mockup {
  position: absolute;
  width: 100%;
  height: 100%;
  background: #f8fafc;
  background-image:
    radial-gradient(rgba(0, 0, 0, 0.03) 1.5px, transparent 1.5px),
    linear-gradient(90deg, rgba(0, 0, 0, 0.02) 1px, transparent 1px),
    linear-gradient(0deg, rgba(0, 0, 0, 0.02) 1px, transparent 1px);
  background-size: 24px 24px, 48px 48px, 48px 48px;
}

.map-card-road {
  position: absolute;
  background: var(--white);
  box-shadow: inset 0 0 2px rgba(0, 0, 0, 0.02);
}

.map-marker-pin {
  position: relative;
  width: 24px;
  height: 24px;
  background: var(--primary);
  border-radius: 50%;
  border: 3px solid var(--white);
  box-shadow: var(--shadow-lg), 0 0 10px rgba(0, 82, 255, 0.3);
  animation: bounce 2s infinite ease-in-out;
}

.map-overlay {
  position: absolute;
  bottom: 16px;
  left: 16px;
  right: 16px;
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(0, 0, 0, 0.05);
  padding: 16px 24px;
  border-radius: var(--radius-md);
  display: flex;
  justify-content: space-between;
  align-items: center;
  z-index: 10;
}

.map-overlay-text h5 {
  font-size: 0.95rem;
  color: var(--text-main);
  margin-bottom: 2px;
}

.map-overlay-text p {
  font-size: 0.8rem;
}

.btn-map-action {
  background: var(--text-main);
  color: var(--white);
  padding: 8px 16px;
  border-radius: var(--radius-full);
  font-size: 0.8rem;
  font-weight: 600;
}

.btn-map-action:hover {
  background: var(--primary);
}

/* Success Popups */
.alert-popup {
  position: fixed;
  bottom: 32px;
  right: -400px;
  max-width: 380px;
  background: var(--text-main);
  color: var(--white);
  box-shadow: var(--shadow-xl);
  padding: 20px 24px;
  border-radius: var(--radius-md);
  display: flex;
  gap: 16px;
  z-index: 10000;
  transition: right 0.5s cubic-bezier(0.16, 1, 0.3, 1);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.alert-popup.show {
  right: 32px;
}

.alert-icon {
  color: var(--primary);
  display: flex;
  align-items: center;
}

.alert-message h4 {
  font-size: 1rem;
  margin-bottom: 4px;
}

.alert-message p {
  font-size: 0.85rem;
  color: var(--text-light);
  line-height: 1.4;
}

/* Minimal Premium Footer */
footer {
  background: var(--bg-subtle);
  border-top: 1px solid var(--border);
  padding: 100px 10% 40px 10%;
  position: relative;
  z-index: 2;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr 0.8fr 1.2fr;
  gap: 48px;
  margin-bottom: 80px;
}

.footer-brand h3 {
  font-size: 1.6rem;
  color: var(--text-main);
  margin-bottom: 24px;
  letter-spacing: -0.04em;
}

.footer-brand p {
  font-size: 0.95rem;
  margin-bottom: 24px;
  max-width: 280px;
}

.footer-socials {
  display: flex;
  gap: 16px;
}

.social-link {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 1px solid var(--border-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-muted);
  transition: all var(--transition-fast);
}

.social-link:hover {
  background: var(--text-main);
  color: var(--white);
  border-color: var(--text-main);
}

.footer-column h4 {
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 24px;
  color: var(--text-main);
  font-weight: 700;
}

.footer-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.footer-links a {
  color: var(--text-muted);
  font-size: 0.95rem;
  transition: color var(--transition-fast);
}

.footer-links a:hover {
  color: var(--primary);
}

.footer-contact p {
  font-size: 0.95rem;
  color: var(--text-muted);
  margin-bottom: 16px;
  display: flex;
  align-items: flex-start;
  gap: 10px;
}

.footer-bottom {
  border-top: 1px solid var(--border-dark);
  padding-top: 40px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
}

.footer-bottom p {
  font-size: 0.85rem;
  color: var(--text-light);
}

/* Trust Grid below Hero */
.trust-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 24px;
  width: 100%;
  max-width: 1100px;
  margin-top: 80px;
  border-top: 1px solid var(--border-dark);
  padding-top: 40px;
  z-index: 10;
  text-align: left;
}

.trust-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 16px;
  background: rgba(255, 255, 255, 0.4);
  border: 1px solid rgba(0, 0, 0, 0.02);
  border-radius: var(--radius-md);
  transition: all var(--transition-normal);
}

.trust-item:hover {
  transform: translateY(-2px);
  background: var(--white);
  border-color: var(--border-dark);
  box-shadow: var(--shadow-md);
}

.trust-icon {
  color: var(--primary);
  flex-shrink: 0;
  margin-top: 2px;
}

.trust-content h4 {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--text-main);
  margin-bottom: 4px;
}

.trust-content p {
  font-size: 0.8rem;
  color: var(--text-muted);
  line-height: 1.3;
}

/* Track Your Laundry Journey */
.journey-container {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 60px;
  align-items: center;
  max-width: 1100px;
  margin: 0 auto;
}

.journey-steps {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.journey-step-item {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 18px 24px;
  background: var(--background);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  cursor: pointer;
  transition: all var(--transition-normal);
  text-align: left;
}

.journey-step-item:hover {
  background: var(--bg-subtle);
  border-color: var(--border-dark);
}

.journey-step-item.active {
  background: var(--white);
  border-color: var(--primary);
  box-shadow: var(--shadow-lg), 0 0 20px rgba(0, 82, 255, 0.04);
}

.step-num {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: var(--border-dark);
  color: var(--text-muted);
  font-family: var(--font-headings);
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 0.95rem;
  transition: all var(--transition-normal);
}

.journey-step-item.active .step-num {
  background: var(--primary);
  color: var(--white);
  box-shadow: var(--shadow-blue-glow);
}

.step-details h3 {
  font-size: 1.1rem;
  margin-bottom: 3px;
  font-weight: 750;
  transition: color var(--transition-normal);
}

.journey-step-item.active .step-details h3 {
  color: var(--primary);
}

.step-details p {
  font-size: 0.88rem;
  line-height: 1.4;
  color: var(--text-muted);
}

/* Smartphone Mockup */
.phone-mockup {
  position: relative;
  width: 310px;
  height: 610px;
  background: #090d16;
  border-radius: 44px;
  padding: 11px;
  box-shadow: var(--shadow-xl), 0 25px 50px -12px rgba(9, 13, 22, 0.25);
  margin: 0 auto;
  border: 4px solid #1e293b;
}

.phone-speaker {
  position: absolute;
  top: 18px;
  left: 50%;
  transform: translateX(-50%);
  width: 50px;
  height: 4px;
  background: #1e293b;
  border-radius: 2px;
  z-index: 20;
}

.phone-screen {
  position: relative;
  width: 100%;
  height: 100%;
  background: #f4f5f6;
  border-radius: 34px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.phone-header {
  height: 36px;
  padding: 0 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.72rem;
  font-weight: 600;
  color: #090d16;
  z-index: 10;
  border-bottom: 1px solid rgba(0, 0, 0, 0.03);
}

.phone-time {
  opacity: 0.8;
}

.phone-icons {
  display: flex;
  gap: 6px;
  align-items: center;
}

/* SMS Conversation UI */
.sms-header {
  background: var(--white);
  border-bottom: 1px solid var(--border-dark);
  padding: 12px 16px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.sms-avatar {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--primary-light);
  color: var(--primary);
  font-family: var(--font-headings);
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.85rem;
  margin-bottom: 6px;
}

.sms-contact-name {
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--text-main);
}

.sms-contact-sub {
  font-size: 0.65rem;
  color: var(--text-light);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-top: 1px;
}

.sms-body {
  flex: 1;
  padding: 16px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  overflow-y: auto;
  scroll-behavior: smooth;
  background-color: #f4f5f6;
}

/* Custom Webkit scrollbar for SMS screen */
.sms-body::-webkit-scrollbar {
  width: 3px;
}

.sms-body::-webkit-scrollbar-thumb {
  background: rgba(0, 0, 0, 0.08);
  border-radius: 99px;
}

.sms-date {
  text-align: center;
  font-size: 0.65rem;
  color: var(--text-light);
  margin: 4px 0 8px 0;
  font-weight: 500;
}

.sms-bubble {
  position: relative;
  max-width: 85%;
  padding: 10px 14px;
  border-radius: 18px;
  font-size: 0.8rem;
  line-height: 1.35;
  word-wrap: break-word;
  animation: sms-slide 0.35s cubic-bezier(0.16, 1, 0.3, 1) forwards;
  transform-origin: left bottom;
  box-shadow: var(--shadow-sm);
  text-align: left;
}

.sms-bubble.incoming {
  align-self: flex-start;
  background: #ffffff;
  color: #000000;
  border-bottom-left-radius: 4px;
  border: 1px solid rgba(0, 0, 0, 0.03);
}

.sms-bubble.outgoing {
  align-self: flex-end;
  background: var(--primary);
  color: var(--white);
  border-bottom-right-radius: 4px;
  transform-origin: right bottom;
}

@keyframes sms-slide {
  from {
    opacity: 0;
    transform: translateY(12px) scale(0.9);
  }

  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

.sms-footer {
  background: var(--white);
  border-top: 1px solid var(--border-dark);
  padding: 10px 14px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.sms-input-mock {
  flex: 1;
  background: #f4f5f6;
  border: 1px solid var(--border-dark);
  border-radius: 18px;
  padding: 8px 16px;
  font-size: 0.8rem;
  color: var(--text-light);
  text-align: left;
}

.sms-send-btn {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--primary);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Animations */
@keyframes pulse {

  0%,
  100% {
    transform: scale(1);
    box-shadow: 0 0 20px rgba(0, 82, 255, 0.15);
  }

  50% {
    transform: scale(1.03);
    box-shadow: 0 0 35px rgba(0, 82, 255, 0.3);
  }
}

@keyframes bounce {

  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-6px);
  }
}

/* Mobile Responsive */
@media (max-width: 1024px) {
  .hero h1 {
    font-size: 4.5rem;
  }

  .trust-grid {
    grid-template-columns: repeat(3, 1fr);
    margin-top: 60px;
    padding-top: 30px;
  }

  .journey-container {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .highlight-banner {
    flex-direction: column;
    text-align: center;
    gap: 32px;
    padding: 60px;
  }

  .contact-container {
    grid-template-columns: 1fr;
  }

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

@media (max-width: 768px) {
  .navbar {
    padding: 0 6%;
  }

  .mobile-nav-toggle {
    display: flex;
  }

  .nav-links {
    position: fixed;
    top: 80px;
    left: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--border);
    flex-direction: column;
    padding: 40px 0;
    gap: 24px;
    transform: translateY(-120%);
    opacity: 0;
    pointer-events: none;
    transition: all var(--transition-normal);
  }

  .nav-links.open {
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
  }

  .hero h1 {
    font-size: 3.2rem;
  }

  .hero p {
    font-size: 1.1rem;
  }

  .trust-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin-top: 40px;
  }

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

  .form-group.full-width {
    grid-column: span 1;
  }

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

@media (max-width: 480px) {
  .trust-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }
}