@import url('https://fonts.googleapis.com/css2?family=Bebas+Neue&family=Montserrat:wght@300;400;500;600;700&display=swap');

:root {
  /* Brand Colors */
  --color-navy: #0B1D33;
  --color-teal: #00BFAF;
  --color-coral: #FF6B4A;
  --color-peach: #FFA98A;
  --color-offwhite: #F6F7F9;
  
  /* Additional Gradients & Accents */
  --gradient-primary: linear-gradient(135deg, var(--color-coral) 0%, var(--color-peach) 100%);
  --gradient-bg: linear-gradient(180deg, var(--color-navy) 0%, #050d17 100%);
  
  /* Typography */
  --font-heading: 'Bebas Neue', sans-serif;
  --font-body: 'Montserrat', sans-serif;
  
  /* Spacing & Layout */
  --spacing-sm: 0.5rem;
  --spacing-md: 1rem;
  --spacing-lg: 2rem;
  --spacing-xl: 4rem;
  --spacing-xxl: 8rem;
  --container-width: 1200px;
}

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

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

body {
  font-family: var(--font-body);
  background: url('../assets/splash-bg-web.jpg') no-repeat center center;
  background-size: cover;
  color: var(--color-offwhite);
  line-height: 1.6;
  overflow-x: hidden;
}

/* Base overlay to ensure text readability over the fixed background */
body::before {
  content: '';
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(11, 29, 51, 0.85);
  z-index: -1;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  letter-spacing: 1px;
  line-height: 1.1;
  text-transform: uppercase;
}

a {
  text-decoration: none;
  color: inherit;
  transition: color 0.3s ease;
}

ul {
  list-style: none;
}

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

/* Typography Classes */
.text-gradient {
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  color: transparent;
}
.text-teal { color: var(--color-teal); }
.text-coral { color: var(--color-coral); }
.text-center { text-align: center; }

/* Layout Utilities */
.container {
  width: 100%;
  max-width: var(--container-width);
  margin: 0 auto;
  padding: 0 var(--spacing-lg);
}

.section {
  padding: var(--spacing-xxl) 0;
}

.flex { display: flex; }
.flex-col { flex-direction: column; }
.items-center { align-items: center; }
.justify-between { justify-content: space-between; }
.justify-center { justify-content: center; }
.gap-md { gap: var(--spacing-md); }
.gap-lg { gap: var(--spacing-lg); }
.gap-xl { gap: var(--spacing-xl); }

.grid { display: grid; }
.grid-cols-1 { grid-template-columns: 1fr; }
@media (min-width: 768px) {
  .md\:grid-cols-2 { grid-template-columns: repeat(2, 1fr); }
  .md\:grid-cols-3 { grid-template-columns: repeat(3, 1fr); }
}

/* Glassmorphism & Cards */
.glass-panel {
  background: rgba(255, 255, 255, 0.03);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 20px;
  padding: 2.5rem;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5), inset 0 1px 0 rgba(255, 255, 255, 0.1);
  transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275), box-shadow 0.4s ease;
}

.glass-panel:hover {
  transform: translateY(-10px);
  box-shadow: 0 30px 60px -12px rgba(0, 191, 175, 0.15), inset 0 1px 0 rgba(255, 255, 255, 0.2);
  border: 1px solid rgba(0, 191, 175, 0.2);
}

/* Buttons */
.btn {
  display: inline-block;
  padding: 1rem 2rem;
  font-family: var(--font-body);
  font-weight: 600;
  border-radius: 50px;
  text-transform: uppercase;
  letter-spacing: 1px;
  cursor: pointer;
  transition: all 0.3s ease;
  border: none;
  font-size: 0.9rem;
}

.btn-primary {
  background: var(--color-coral);
  color: var(--color-navy);
  box-shadow: 0 4px 15px rgba(255, 107, 74, 0.3);
}

.btn-primary:hover {
  background: var(--color-peach);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(255, 107, 74, 0.4);
}

.btn-outline {
  background: transparent;
  color: var(--color-teal);
  border: 2px solid var(--color-teal);
}

.btn-outline:hover {
  background: rgba(0, 191, 175, 0.1);
  color: var(--color-offwhite);
  border-color: var(--color-offwhite);
}

/* Header & Nav */
header {
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 1000;
  padding: 1.5rem 0;
  transition: all 0.3s ease;
}

header.scrolled {
  background: rgba(11, 29, 51, 0.95);
  backdrop-filter: blur(10px);
  padding: 1rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.logo-container {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.logo-img {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  object-fit: cover;
}

.logo-text {
  font-family: var(--font-heading);
  font-size: 2.2rem;
  letter-spacing: 2px;
  line-height: 1;
}
.logo-sub {
  font-family: var(--font-body);
  font-size: 0.7rem;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--color-teal);
  display: block;
}

.nav-links {
  display: flex;
  gap: 2rem;
  align-items: center;
}

.nav-links a {
  font-weight: 500;
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 1px;
}

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

/* Mobile Nav Toggle */
.mobile-toggle {
  display: none;
  font-size: 1.5rem;
  cursor: pointer;
}

@media (max-width: 768px) {
  .nav-links {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background: var(--color-navy);
    flex-direction: column;
    padding: 2rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  }
  .nav-links.active {
    display: flex;
  }
  .mobile-toggle {
    display: block;
  }
}

/* Hero Section */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  padding-top: 80px;
}

.hero-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at 80% 30%, rgba(255, 107, 74, 0.15) 0%, transparent 40%),
              radial-gradient(circle at 20% 70%, rgba(0, 191, 175, 0.1) 0%, transparent 40%);
  z-index: -1;
}

.hero h1 {
  font-size: clamp(4rem, 10vw, 8rem);
  line-height: 0.85;
  margin-bottom: 1.5rem;
}

.hero p {
  font-size: clamp(1.2rem, 2vw, 1.5rem);
  max-width: 600px;
  margin-bottom: 2.5rem;
  color: rgba(246, 247, 249, 0.8);
}

.location-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(0, 191, 175, 0.15);
  color: var(--color-teal);
  padding: 0.5rem 1rem;
  border-radius: 50px;
  font-weight: 600;
  margin-bottom: 1.5rem;
  font-size: 0.9rem;
  letter-spacing: 1px;
  border: 1px solid rgba(0, 191, 175, 0.3);
}

/* Process Section */
.step-number {
  font-family: var(--font-heading);
  font-size: 7rem;
  line-height: 0.8;
  color: var(--color-coral);
  opacity: 0.9;
}

.step-card {
  display: flex;
  align-items: flex-start;
  gap: 2rem;
  margin-bottom: 3rem;
}

@media (max-width: 768px) {
  .step-card {
    flex-direction: column;
    gap: 1rem;
  }
}

.step-content h3 {
  font-size: 2.5rem;
  margin-bottom: 0.5rem;
}

/* Pricing Section */
.pricing-card {
  position: relative;
  overflow: hidden;
  height: 100%;
  display: flex;
  flex-direction: column;
}

.pricing-card.popular {
  border-color: var(--color-teal);
  box-shadow: 0 0 30px rgba(0, 191, 175, 0.1);
  transform: scale(1.05);
}

@media (max-width: 768px) {
  .pricing-card.popular {
    transform: none;
  }
}

.popular-badge {
  position: absolute;
  top: 2rem;
  right: -3rem;
  background: var(--color-teal);
  color: var(--color-navy);
  padding: 0.5rem 4rem;
  transform: rotate(45deg);
  font-family: var(--font-heading);
  font-size: 1.2rem;
  letter-spacing: 1px;
}

.price {
  font-family: var(--font-heading);
  font-size: 5rem;
  color: var(--color-coral);
  margin: 1.5rem 0;
  display: flex;
  align-items: baseline;
}

.price span {
  font-size: 1.5rem;
  font-family: var(--font-body);
  color: var(--color-offwhite);
  margin-left: 0.5rem;
}

.pricing-card p {
  flex-grow: 1;
  color: rgba(246, 247, 249, 0.8);
  margin-bottom: 2rem;
}

/* ROI Section */
.roi-container {
  background: rgba(0, 0, 0, 0.2);
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.05);
  padding: var(--spacing-xl);
}

.roi-stat {
  display: flex;
  align-items: center;
  gap: 2rem;
  padding: 1.5rem 0;
  border-bottom: 1px solid rgba(255,255,255,0.05);
}
.roi-stat:last-child {
  border-bottom: none;
}
.roi-value {
  font-family: var(--font-heading);
  font-size: 4.5rem;
  color: var(--color-offwhite);
  width: 150px;
  text-align: right;
}
.roi-value.highlight {
  color: var(--color-coral);
}
.roi-desc {
  font-size: 1.1rem;
  color: rgba(246, 247, 249, 0.8);
}

@media (max-width: 768px) {
  .roi-stat {
    flex-direction: column;
    text-align: center;
    gap: 0.5rem;
  }
  .roi-value {
    width: auto;
    text-align: center;
  }
}

/* Footer */
footer {
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  padding: 3rem 0;
  text-align: center;
  font-size: 0.9rem;
  color: rgba(246, 247, 249, 0.5);
}

/* Testimonials */
.testimonial-card {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 1.5rem;
}

.stars {
  color: #FFD700;
  font-size: 1.2rem;
  letter-spacing: 2px;
}

.testimonial-text {
  font-size: 1.1rem;
  font-style: italic;
  color: rgba(246, 247, 249, 0.9);
  line-height: 1.8;
  flex-grow: 1;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 1rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 1rem;
}

.author-avatar {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: var(--gradient-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-heading);
  font-size: 1.5rem;
  color: var(--color-navy);
}

.author-info h4 {
  font-size: 1.1rem;
  color: var(--color-offwhite);
  margin-bottom: 0.2rem;
}

.author-info p {
  font-size: 0.8rem;
  color: var(--color-teal);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* Expanded Services Grid */
.service-item {
  padding: 2rem;
  border-left: 2px solid rgba(0, 191, 175, 0.2);
  transition: all 0.3s ease;
}

.service-item:hover {
  border-left-color: var(--color-teal);
  background: rgba(255, 255, 255, 0.02);
}

.service-item h3 {
  font-size: 2rem;
  margin-bottom: 1rem;
  color: var(--color-offwhite);
}

.service-item p {
  color: rgba(246, 247, 249, 0.7);
  margin-bottom: 1.5rem;
}

.service-features {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.5rem;
}

.service-features li {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.9rem;
  color: rgba(246, 247, 249, 0.9);
}
.service-features li::before {
  content: '✓';
  color: var(--color-coral);
  font-weight: bold;
}

/* Animations */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.8s cubic-bezier(0.5, 0, 0, 1), transform 0.8s cubic-bezier(0.5, 0, 0, 1);
}

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

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

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

.floating {
  animation: float 6s ease-in-out infinite;
}

.delay-100 { transition-delay: 100ms; }
.delay-200 { transition-delay: 200ms; }
.delay-300 { transition-delay: 300ms; }
