:root {
  --primary-color: #0d47a1; /* Deep Ocean Blue */
  --secondary-color: #e65100; /* Vibrant Orange for CTA */
  --accent-color: #ffd54f; /* Sand Gold */
  --text-dark: #1e293b;
  --text-light: #f8fafc;
  --bg-color: #f1f5f9;
  --glass-bg: rgba(255, 255, 255, 0.75);
  --glass-border: rgba(255, 255, 255, 0.5);
  --shadow-sm: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
  --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
}

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

body {
  font-family: 'Inter', system-ui, -apple-system, sans-serif;
  background-color: var(--bg-color);
  color: var(--text-dark);
  line-height: 1.6;
  overflow-x: hidden;
}

/* Typography */
h1, h2, h3 {
  font-family: 'Outfit', sans-serif;
  font-weight: 700;
  line-height: 1.2;
}

p {
  font-size: 1rem;
  margin-bottom: 1rem;
}

/* Animations */
@keyframes float {
  0% { transform: translateY(0px); }
  50% { transform: translateY(-10px); }
  100% { transform: translateY(0px); }
}

@keyframes pulse-ring {
  0% { transform: scale(0.8); box-shadow: 0 0 0 0 rgba(230, 81, 0, 0.7); }
  70% { transform: scale(1); box-shadow: 0 0 0 15px rgba(230, 81, 0, 0); }
  100% { transform: scale(0.8); box-shadow: 0 0 0 0 rgba(230, 81, 0, 0); }
}

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

/* Glassmorphism Utility */
.glass {
  background: var(--glass-bg);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid var(--glass-border);
  border-radius: 16px;
  box-shadow: var(--shadow-sm);
}

/* Header & Nav */
header {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  padding: 1rem 5%;
  z-index: 1000;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  font-family: 'Outfit', sans-serif;
  font-size: 1.8rem;
  font-weight: 800;
  color: #fff;
  text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.logo i {
  color: var(--accent-color);
}

/* Hero Section */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 0 5%;
  background: linear-gradient(rgba(13, 71, 161, 0.4), rgba(0, 0, 0, 0.7)), url('./images/hero.png') center/cover no-repeat;
  color: var(--text-light);
}

.hero-content {
  max-width: 600px;
  margin-top: 4rem; /* offset for header */
  animation: fadeIn 1s ease-out;
}

.hero h1 {
  font-size: 3rem;
  margin-bottom: 1rem;
  color: #fff;
}

.hero h1 span {
  color: var(--accent-color);
}

.hero p {
  font-size: 1.2rem;
  margin-bottom: 2rem;
  opacity: 0.9;
}

.urgency-badge {
  display: inline-block;
  background-color: rgba(255, 213, 79, 0.2);
  color: var(--accent-color);
  padding: 0.5rem 1rem;
  border-radius: 50px;
  font-weight: 600;
  font-size: 0.9rem;
  margin-bottom: 1.5rem;
  border: 1px solid var(--accent-color);
  animation: float 3s ease-in-out infinite;
}

/* Buttons */
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  background-color: var(--secondary-color);
  color: #fff;
  padding: 1rem 2rem;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 700;
  font-size: 1.25rem;
  box-shadow: var(--shadow-lg);
  transition: all 0.3s ease;
  animation: pulse-ring 2.5s infinite;
}

.btn-primary:active {
  transform: scale(0.95);
}

/* Floating Action Button (Mobile Call CTA) */
.fab-container {
  position: fixed;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 1000;
  width: 90%;
  max-width: 400px;
  display: flex; /* Active for mobile optimizations */
}

.fab-btn {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  background-color: var(--secondary-color);
  color: #fff;
  padding: 1.2rem 2rem;
  border-radius: 50px;
  text-decoration: none;
  font-family: 'Outfit', sans-serif;
  font-weight: 700;
  font-size: 1.3rem;
  box-shadow: 0 10px 25px rgba(230, 81, 0, 0.5);
  animation: pulse-ring 2.5s infinite;
  transition: transform 0.2s;
}

.fab-btn i {
  font-size: 1.5rem;
}

.fab-subtext {
  font-size: 0.8rem;
  font-weight: 400;
  opacity: 0.9;
  display: block;
}

/* Features/Benefits Section */
.features {
  padding: 5rem 5%;
  background-color: #fff;
}

.section-title {
  text-align: center;
  font-size: 2.2rem;
  margin-bottom: 3rem;
  color: var(--primary-color);
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
}

.feature-card {
  padding: 2.5rem 1.5rem;
  text-align: center;
  border-radius: 20px;
  transition: transform 0.3s ease;
  background-color: var(--bg-color);
}

.feature-card:hover {
  transform: translateY(-10px);
  background-color: #fff;
  box-shadow: var(--shadow-lg);
}

.icon-wrapper {
  width: 70px;
  height: 70px;
  background-color: rgba(13, 71, 161, 0.1);
  color: var(--primary-color);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  margin: 0 auto 1.5rem;
}

.feature-card h3 {
  margin-bottom: 1rem;
  font-size: 1.3rem;
}

/* How It Works Layer / Divider */
.call-banner {
  background: linear-gradient(135deg, var(--primary-color) 0%, #1e3a8a 100%);
  padding: 4rem 5%;
  text-align: center;
  color: white;
}

.call-banner h2 {
  font-size: 2.2rem;
  margin-bottom: 1.5rem;
}

.call-banner p {
  font-size: 1.1rem;
  opacity: 0.8;
  max-width: 600px;
  margin: 0 auto 2rem;
}

/* Testimonials Section */
.testimonials {
  padding: 5rem 5%;
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}

.testimonial-card {
  padding: 2rem;
  display: flex;
  flex-direction: column;
}

.stars {
  color: var(--accent-color);
  font-size: 1.2rem;
  margin-bottom: 1rem;
}

.quote {
  font-style: italic;
  font-size: 1.05rem;
  flex-grow: 1;
  color: #475569;
}

.author {
  margin-top: 1.5rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  gap: 1rem;
}

.author img {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--primary-color);
}

/* Footer */
footer {
  background-color: #0f172a;
  color: #94a3b8;
  padding: 3rem 5% 6rem; /* extra padding bottom to clear the FAB */
  text-align: center;
}

.footer-logo {
  color: white;
  font-size: 1.5rem;
  font-family: 'Outfit', sans-serif;
  margin-bottom: 1rem;
}

/* Animations Triggered by Scroller */
.hidden-scroll {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.6s ease-out;
}

.show-scroll {
  opacity: 1;
  transform: translateY(0);
}

/* Responsive Overrides */
@media (max-width: 768px) {
  .hero h1 { font-size: 2.5rem; }
  .fab-container { width: 95%; }
}
