:root {
  --primary: #FF385C;
  /* Modern vibrant red/pinkish similar to Airbnb/Lyft */
  --primary-hover: #D90B3E;
  --dark: #0F172A;
  --text: #334155;
  --muted: #64748B;
  --bg-gradient: linear-gradient(180deg, #F8FAFC 0%, #FFFFFF 100%);
  --surface: #FFFFFF;
  --border: #E2E8F0;
  --radius-lg: 24px;
  --radius-md: 16px;
  --radius-sm: 8px;
  --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.1);
  --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
  --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
  --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
  --glass: rgba(255, 255, 255, 0.7);
  --glass-border: rgba(255, 255, 255, 0.5);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Be Vietnam Pro', system-ui, -apple-system, sans-serif;
  line-height: 1.6;
  color: var(--text);
  margin: 0;
  background: var(--bg-gradient);
  -webkit-font-smoothing: antialiased;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: 'Be Vietnam Pro', sans-serif;
  color: var(--dark);
  line-height: 1.2;
  margin-top: 0;
}

a {
  color: var(--primary);
  text-decoration: none;
  transition: color 0.2s;
}

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

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

/* Header */
.site-header {
  background: var(--glass);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(226, 232, 240, 0.6);
  position: sticky;
  top: 0;
  z-index: 100;
  transition: all 0.3s ease;
}

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

.brand {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  text-decoration: none;
}

.logo {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--dark);
  letter-spacing: -0.02em;
}

.nav {
  display: flex;
  gap: 2rem;
  background: rgba(255, 255, 255, 0.5);
  padding: 0.5rem 1.5rem;
  border-radius: 100px;
  border: 1px solid rgba(0, 0, 0, 0.05);
}

.nav a {
  color: var(--text);
  font-weight: 500;
  font-size: 0.95rem;
}

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

.phone-cta {
  background: var(--primary);
  color: #fff !important;
  padding: 0.75rem 1.5rem;
  border-radius: 100px;
  font-weight: 600;
  box-shadow: 0 4px 12px rgba(255, 56, 92, 0.3);
  transition: transform 0.2s, box-shadow 0.2s;
}

.phone-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(255, 56, 92, 0.4);
}

/* Hero */
.hero {
  padding: 4rem 0 5rem;
  overflow: hidden;
}

.hero-inner {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 4rem;
  align-items: center;
}

.hero-copy h1 {
  font-size: 3.5rem;
  font-weight: 800;
  margin-bottom: 1.5rem;
  letter-spacing: -0.03em;
  background: linear-gradient(135deg, var(--dark) 0%, #475569 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero-copy p {
  font-size: 1.125rem;
  color: var(--muted);
  margin-bottom: 2rem;
  max-width: 90%;
}

.hero-actions {
  display: flex;
  gap: 1rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 1rem 2rem;
  border-radius: 12px;
  font-weight: 600;
  font-family: 'Outfit', sans-serif;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.btn-primary,
.btn:not(.btn-outline) {
  background: var(--primary);
  color: #fff;
  box-shadow: 0 4px 6px rgba(255, 56, 92, 0.25);
}

.btn-primary:hover,
.btn:not(.btn-outline):hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 20px rgba(255, 56, 92, 0.3);
  color: #fff;
}

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

.btn-outline:hover {
  border-color: var(--dark);
  background: var(--dark);
  color: #fff;
}

.hero-media {
  position: relative;
  margin: 0;
}

.hero-img {
  width: 100%;
  height: auto;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-xl);
  transform: perspective(1000px) rotateY(-2deg);
  transition: transform 0.5s ease;
}

.hero-media:hover .hero-img {
  transform: perspective(1000px) rotateY(0deg);
}

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }

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

.hero-inner {
  animation: fadeUp 0.8s ease-out;
}

section {
  padding: 6rem 0;
}

@supports (animation-timeline: view()) {
  section {
    animation: fadeUp 0.8s ease-out both;
    animation-timeline: view();
    animation-range: entry 10% cover 20%;
  }
}

/* Mobile Floating CTA (FAB) */
.mobile-fab-cta {
  display: none;
  /* Hidden on desktop */
}

/* Footer */
.site-footer {
  background: var(--surface);
  border-top: 1px solid var(--border);
  padding: 3rem 0;
  text-align: center;
}

.site-footer nav a {
  margin: 0 0.5rem;
  color: var(--muted);
  font-weight: 500;
}

/* Responsive Styles */
@media (max-width: 900px) {

  /* Hide header button, show floating button */
  .site-header .phone-cta {
    display: none;
  }

  .mobile-fab-cta {
    display: flex;
    position: fixed;
    bottom: 1.5rem;
    left: 1rem;
    right: 1rem;
    background: var(--primary);
    color: white;
    justify-content: center;
    align-items: center;
    padding: 1rem;
    border-radius: 100px;
    font-weight: 700;
    font-size: 1.1rem;
    box-shadow: 0 10px 25px -5px rgba(255, 56, 92, 0.5);
    z-index: 9999;
    text-decoration: none;
    animation: slideUp 0.5s ease-out backwards;
  }

  @keyframes slideUp {
    from {
      transform: translateY(100%);
      opacity: 0;
    }

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

  body {
    padding-bottom: 100px;
    /* Space for the button */
  }

  /* Adjust Hero for Mobile */
  .hero-inner {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 3rem;
  }

  .hero-copy h1 {
    font-size: 2.5rem;
  }

  .hero-actions {
    justify-content: center;
  }

  .nav {
    display: none;
  }
}

@media (max-width: 600px) {

  /* Increase specific mobile spacing as requested */
  section {
    padding: 4rem 0;
    /* More breathing room between sections */
  }

  .container {
    padding: 0 1.5rem;
  }

  .hero-copy h1 {
    font-size: 2rem;
  }

  .hero-img {
    transform: none;
  }

  .hero-media:hover .hero-img {
    transform: none;
  }
}

@media (max-width: 480px) {
  section {
    padding: 3.5rem 0;
  }

  .hero-copy h1 {
    font-size: 2.25rem;
  }

  .container {
    padding: 0 1.25rem;
  }
}

/* SEO Content */
.seo-content {
  background: #F8FAFC;
  border-radius: var(--radius-lg);
  padding: 3rem 1.5rem;
}

.seo-content h3 {
  font-size: 1.75rem;
  margin-bottom: 1.5rem;
}

.seo-copy {
  max-width: 800px;
  margin: 0 auto;
  color: var(--text);
}

/* Blog */
.post {
  max-width: 800px;
  background: var(--surface);
  padding: 3rem;
  margin: 2rem auto;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
}

.post h1 {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

/* Mobile Spacing Adjustments */
@media (max-width: 768px) {
  section {
    padding: 3rem 0;
  }

  .hero {
    padding: 3rem 0 4rem;
  }

  .container {
    padding: 0 1.25rem;
  }

  h1 {
    font-size: 2.25rem;
  }

  h2,
  h3 {
    font-size: 1.75rem;
    margin-bottom: 2rem;
  }

  .hero-inner {
    gap: 2.5rem;
  }

  .grid {
    gap: 1.5rem;
  }
}

@media (max-width: 480px) {
  section {
    padding: 2.5rem 0;
  }

  .hero-copy h1 {
    font-size: 2rem;
  }

  .container {
    padding: 0 1rem;
  }
}

section h2,
section h3 {
  font-size: 2.25rem;
  text-align: center;
  margin-bottom: 3rem;
  font-weight: 700;
}

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

.card {
  background: var(--surface);
  padding: 2rem;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border);
  transition: all 0.3s ease;
}

.card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(255, 56, 92, 0.2);
}

.card h4 {
  font-size: 1.25rem;
  margin-bottom: 0.5rem;
  color: var(--primary);
}

/* Prices */
.price-card {
  background: var(--surface);
  border-radius: var(--radius-lg);
  padding: 2rem;
  box-shadow: var(--shadow-lg);
  overflow: hidden;
  border: 1px solid var(--border);
}

.price-table {
  width: 100%;
  border-collapse: collapse;
}

.price-table th {
  text-align: left;
  padding: 1rem;
  background: #F8FAFC;
  color: var(--muted);
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.price-table td {
  padding: 1.25rem 1rem;
  border-bottom: 1px solid var(--border);
  font-weight: 500;
}

.price-table tr:last-child td {
  border-bottom: none;
}

.price-table td:last-child {
  text-align: right;
  color: var(--primary);
  font-weight: 700;
}

/* FAQ */
.faq-list {
  max-width: 800px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.faq-item {
  background: var(--surface);
  border: 1px solid var(--border);
  padding: 1.5rem;
  border-radius: var(--radius-md);
  cursor: pointer;
  transition: all 0.2s;
  text-align: left;
  width: 100%;
}

.faq-item:hover {
  border-color: var(--primary);
}

.faq-item .q {
  font-weight: 600;
  font-size: 1.1rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.faq-item .q::after {
  content: '+';
  font-size: 1.5rem;
  font-weight: 400;
  color: var(--muted);
}

.faq-item[aria-expanded="true"] .q::after {
  content: '−';
}

.faq-item .a {
  display: none;
  margin-top: 1rem;
  color: var(--muted);
  line-height: 1.6;
  border-top: 1px dashed var(--border);
  padding-top: 1rem;
}

.faq-item[aria-expanded="true"] .a {
  display: block;
  animation: fadeIn 0.3s ease;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(5px);
  }

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

section>div {
  padding-top: 2rem;
  padding-bottom: 2rem;
}