:root {
  --primary-color: #9d197a;
  --primary-dark: #7a1460;
  --primary-light: #b9348f;
  --secondary-color: #d946a6;
  --accent-pink: #d946a6;
  --text-dark: #2c3e50;
  --text-gray: #7f8c8d;
  --text-light: #95a5a6;
  --bg-light: #f5f7fa;
  --bg-white: #ffffff;
  --accent-gradient: linear-gradient(135deg, #9d197a 0%, #d946a6 100%);
  --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.08);
  --shadow-md: 0 4px 16px rgba(157, 25, 122, 0.15);
  --shadow-lg: 0 8px 32px rgba(157, 25, 122, 0.2);
  --border-radius: 16px;
  --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family:
    "Inter",
    -apple-system,
    BlinkMacSystemFont,
    "Segoe UI",
    sans-serif;
  color: var(--text-dark);
  line-height: 1.6;
  overflow-x: hidden;
}

/* Typography */
h1,
h2,
h3,
h4 {
  font-family: "Space Grotesk", sans-serif;
  font-weight: 700;
  line-height: 1.2;
}

h1 {
  font-size: clamp(2.5rem, 5vw, 4.5rem);
  margin-bottom: 1.5rem;
}

h2 {
  font-size: clamp(2rem, 4vw, 3.5rem);
  margin-bottom: 1rem;
}

h3 {
  font-size: clamp(1.5rem, 3vw, 2.5rem);
  margin-bottom: 0.75rem;
}

h4 {
  font-size: clamp(1.25rem, 2vw, 1.75rem);
  margin-bottom: 0.5rem;
}

/* Icon Styles */
.icon-wrapper {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 60px;
  height: 60px;
  margin-bottom: 1rem;
  border-radius: 12px;
}

.icon-wrapper svg {
  width: 32px;
  height: 32px;
  stroke: var(--primary-color);
  stroke-width: 1.5;
  fill: none;
  transition: all 0.3s ease;
}

.feature-card:hover .icon-wrapper svg {
  stroke: var(--secondary-color);
  transform: scale(1.1);
}

p {
  font-size: 1.125rem;
  color: var(--text-gray);
  margin-bottom: 1rem;
}

/* Buttons */
.btn {
  display: inline-block;
  padding: 1rem 2.5rem;
  font-size: 1.125rem;
  font-weight: 600;
  text-decoration: none;
  border-radius: 50px;
  transition: var(--transition);
  cursor: pointer;
  border: none;
  position: relative;
  overflow: hidden;
  z-index: 1;
}

.btn-primary {
  background: var(--accent-gradient);
  color: white;
  box-shadow: var(--shadow-md);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
}

.btn-secondary {
  background: white;
  color: var(--primary-color);
  border: 2px solid var(--primary-color);
}

.btn-secondary:hover {
  background: var(--primary-color);
  color: white;
}

/* Container */
.container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 2rem;
}

/* Header/Navigation */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  background: linear-gradient(135deg, #9d197a 0%, #d946a6 100%);
  backdrop-filter: blur(10px);
  box-shadow: 0 4px 20px rgba(157, 25, 122, 0.3);
  z-index: 1000;
  transition: var(--transition);
}

.nav-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 2rem;
}

.logo {
  font-size: 1.75rem;
  font-weight: 800;
  color: white;
  text-decoration: none;
  display: flex;
  align-items: center;
}

.logo span {
  color: rgba(255, 255, 255, 0.9);
}

.logo img {
  transition: var(--transition);
}

.logo:hover img {
  transform: rotate(5deg) scale(1.1);
}

.nav-links {
  display: flex;
  gap: 2rem;
  list-style: none;
}

.nav-links a {
  color: rgba(255, 255, 255, 0.9);
  text-decoration: none;
  font-weight: 500;
  transition: var(--transition);
}

.nav-links a:hover {
  color: white;
  text-shadow: 0 2px 10px rgba(255, 255, 255, 0.3);
}

.menu-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
}

.menu-toggle span {
  width: 25px;
  height: 3px;
  background: white;
  border-radius: 3px;
  transition: var(--transition);
}

/* Hero Section */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  background: linear-gradient(135deg, #f5f7fa 0%, #fff 50%, #fef0f9 100%);
  padding-top: 100px;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: "";
  position: absolute;
  top: -50%;
  right: -20%;
  width: 800px;
  height: 800px;
  background: radial-gradient(
    circle,
    rgba(157, 25, 122, 0.08) 0%,
    rgba(217, 70, 166, 0.05) 50%,
    transparent 70%
  );
  border-radius: 50%;
  animation: float 20s infinite ease-in-out;
}

@keyframes float {
  0%,
  100% {
    transform: translateY(0) rotate(0deg);
  }
  50% {
    transform: translateY(-50px) rotate(180deg);
  }
}

.hero-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  position: relative;
  z-index: 2;
}

.hero-text h1 {
  background: linear-gradient(
    135deg,
    var(--primary-color),
    var(--primary-light)
  );
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-text p {
  font-size: 1.25rem;
  margin-bottom: 2rem;
  color: var(--text-gray);
}

.hero-buttons {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.hero-image {
  position: relative;
  animation: fadeInRight 1s ease-out;
}

.hero-image img {
  width: 100%;
  height: auto;
  border-radius: var(--border-radius);
  box-shadow: var(--shadow-lg);
}

@keyframes fadeInRight {
  from {
    opacity: 0;
    transform: translateX(50px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

/* Stats */
.stats {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
  padding: 3rem 0;
}

.stat-item {
  text-align: center;
  padding: 2rem;
  background: white;
  border-radius: var(--border-radius);
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
}

.stat-item:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
}

.stat-number {
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--primary-color);
  font-family: "Space Grotesk", sans-serif;
}

.stat-label {
  font-size: 1rem;
  color: var(--text-gray);
  font-weight: 500;
}

/* Features Section */
.features {
  padding: 6rem 0;
  background: var(--bg-white);
}

.section-header {
  text-align: center;
  max-width: 800px;
  margin: 0 auto 4rem;
}

.section-tag {
  display: inline-block;
  padding: 0.5rem 1.5rem;
  background: rgba(157, 25, 122, 0.1);
  color: var(--primary-color);
  border-radius: 50px;
  font-size: 0.875rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 1rem;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 2rem;
}

.feature-card {
  padding: 2.5rem;
  background: white;
  border-radius: var(--border-radius);
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  border: 2px solid transparent;
}

.feature-card:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-lg);
  border-color: var(--primary-color);
}

.feature-icon {
  width: 100%;
  height: 220px;
  background: var(--accent-gradient);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
  font-size: 2rem;
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}

.feature-icon img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 12px;
}

.feature-card h3 {
  color: var(--text-dark);
  margin-bottom: 1rem;
  font-size: 1.35rem;
}

.feature-card p {
  color: var(--text-gray);
  font-size: 1rem;
}

/* How it Works */
.how-it-works {
  padding: 6rem 0;
  background: var(--bg-light);
}

.timeline {
  max-width: 1000px;
  margin: 0 auto;
  position: relative;
  padding-bottom: 2rem;
}

/* Main line goes from Step 1 to Split Section only */
.timeline::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 0;
  height: 200px;
  width: 4px;
  background: var(--accent-gradient);
  transform: translateX(-50%);
}

.timeline-item {
  display: flex;
  margin-bottom: 4rem;
  position: relative;
}

/* Hide default alternating direction */
.timeline-item:nth-child(even) {
  flex-direction: row-reverse;
}

.timeline-item:nth-child(n + 5) .timeline-number {
  top: 100px;
}

.timeline-content {
  flex: 1;
  padding: 2rem;
  background: white;
  border-radius: var(--border-radius);
  box-shadow: var(--shadow-sm);
  margin: 0 3rem;
}

/* Split section styling */
.timeline-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  margin-bottom: 6rem;
  margin-top: 100px;
  position: relative;
  padding: 0 2rem;
}

/* SVG connector lines */
.timeline-split::before {
  content: "";
  position: absolute;
  top: -100px;
  left: 50%;
  width: 100%;
  height: 100px;
  background-image: url('data:image/svg+xml;utf8,<svg viewBox="0 0 500 100" xmlns="http://www.w3.org/2000/svg" preserveAspectRatio="none"><path d="M 250 0 Q 150 50 125 100" stroke="%239D197A" stroke-width="2" fill="none" stroke-linecap="round"/><path d="M 250 0 Q 350 50 375 100" stroke="%23D946A6" stroke-width="2" fill="none" stroke-linecap="round"/></svg>');
  background-size: 100% 100%;
  background-repeat: no-repeat;
  transform: translateX(-50%);
  pointer-events: none;
}

.timeline-split-item {
  padding: 2rem;
  background: white;
  border-radius: var(--border-radius);
  box-shadow: var(--shadow-sm);
  position: relative;
  text-align: center;
}

/* Convergence lines from 2a and 2b to Step 3 */
.timeline-split::after {
  content: "";
  position: absolute;
  bottom: -120px;
  left: 50%;
  width: 100%;
  height: 120px;
  background-image: url('data:image/svg+xml;utf8,<svg viewBox="0 0 500 120" xmlns="http://www.w3.org/2000/svg" preserveAspectRatio="none"><path d="M 125 0 Q 175 60 250 120" stroke="%239D197A" stroke-width="2" fill="none" stroke-linecap="round"/><path d="M 375 0 Q 325 60 250 120" stroke="%23D946A6" stroke-width="2" fill="none" stroke-linecap="round"/></svg>');
  background-size: 100% 100%;
  background-repeat: no-repeat;
  transform: translateX(-50%);
  pointer-events: none;
}

.timeline-split-item:first-child::after {
  display: none;
}

.timeline-split-item:last-child::after {
  display: none;
}

/* Connection line from Step 3 to Step 4 */
.timeline-item:nth-child(4)::before {
  content: "";
  position: absolute;
  left: 50%;
  top: -60px;
  width: 4px;
  height: 60px;
  background: var(--accent-gradient);
  transform: translateX(-50%);
  z-index: 10;
}

.timeline-number {
  position: absolute;
  left: 50%;
  top: -30px;
  transform: translateX(-50%);
  width: 60px;
  height: 60px;
  background: var(--accent-gradient);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-weight: 800;
  font-size: 1.5rem;
  box-shadow: 0 4px 20px rgba(157, 25, 122, 0.3);
  border: 4px solid var(--bg-light);
  z-index: 10;
}

.timeline-content img {
  width: 100%;
  height: 350px;
  object-fit: cover;
  border-radius: 12px;
  margin-bottom: 1rem;
}

/* Pricing */
.pricing {
  padding: 6rem 0;
  background: var(--bg-white);
}

.pricing-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 2rem;
  max-width: 1200px;
  margin: 0 auto;
}

.pricing-card {
  padding: 3rem 2rem;
  background: white;
  border-radius: var(--border-radius);
  box-shadow: var(--shadow-md);
  text-align: center;
  transition: var(--transition);
  position: relative;
  border: 3px solid transparent;
}

.pricing-card.featured {
  background: linear-gradient(135deg, #fff 0%, #fef0f9 100%);
  border-color: var(--primary-color);
  transform: scale(1.05);
}

.pricing-card:hover {
  transform: translateY(-10px) scale(1.02);
  box-shadow: var(--shadow-lg);
}

.pricing-badge {
  position: absolute;
  top: -15px;
  right: 20px;
  background: var(--accent-gradient);
  color: white;
  padding: 0.5rem 1.5rem;
  border-radius: 50px;
  font-size: 0.875rem;
  font-weight: 600;
}

.pricing-label {
  font-size: 0.875rem;
  color: var(--text-light);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 0.5rem;
}

.pricing-amount {
  font-size: 3.5rem;
  font-weight: 800;
  color: var(--primary-color);
  font-family: "Space Grotesk", sans-serif;
  margin-bottom: 0.5rem;
}

.pricing-period {
  color: var(--text-gray);
  margin-bottom: 2rem;
}

.pricing-card ul {
  text-align: left;
  list-style: none;
  padding: 0;
}

.pricing-card ul li {
  margin-bottom: 0.75rem;
  padding-left: 1.5rem;
  position: relative;
  color: var(--text-gray);
}

.pricing-card ul li:before {
  content: "";
  position: absolute;
  left: 0;
  width: 20px;
  height: 20px;
  background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><polyline points="20 6 9 17 4 12" stroke="%239D197A" stroke-width="2" fill="none"/></svg>');
  background-size: contain;
  background-repeat: no-repeat;
}

/* CTA Section */
.cta {
  padding: 6rem 0;
  background: linear-gradient(
    135deg,
    var(--primary-color) 0%,
    var(--primary-dark) 100%
  );
  color: white;
  text-align: center;
}

.cta h2 {
  color: white;
  margin-bottom: 1.5rem;
}

.cta p {
  color: rgba(255, 255, 255, 0.9);
  font-size: 1.25rem;
  max-width: 700px;
  margin: 0 auto 2rem;
}

.cta .btn-secondary {
  background: white;
  color: var(--primary-color);
  border: none;
}

.cta .btn-secondary:hover {
  background: rgba(255, 255, 255, 0.9);
  transform: scale(1.05);
}

/* Form text colors */
#rentalRequestForm {
  color: var(--text-dark);
}

#rentalRequestForm label,
#rentalRequestForm span {
  color: var(--text-dark);
}

#rentalRequestForm input,
#rentalRequestForm textarea {
  color: var(--text-dark);
}

#rentalRequestForm ::placeholder {
  color: var(--text-gray);
}

/* Footer */
.footer {
  padding: 4rem 0 2rem;
  background: var(--text-dark);
  color: white;
}

.footer-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 3rem;
  margin-bottom: 3rem;
}

.footer-section h4 {
  color: white;
  margin-bottom: 1.5rem;
}

.footer-section p,
.footer-section a {
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
  display: block;
  margin-bottom: 0.5rem;
}

.footer-section a:hover {
  color: var(--primary-color);
}

.footer-bottom {
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  text-align: center;
  color: rgba(255, 255, 255, 0.5);
}

/* Partner Logo Hover */
.footer a img {
  transition: opacity 0.3s ease;
}

.footer a:hover img {
  opacity: 1 !important;
}

/* Privacy Modal */
.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.6);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 2000;
  padding: 1.5rem;
}

.modal-overlay.active {
  display: flex;
}

.modal {
  width: 100%;
  max-width: 900px;
  max-height: 85vh;
  background: white;
  border-radius: 16px;
  box-shadow: var(--shadow-lg);
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.modal-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.25rem 1.75rem;
  border-bottom: 1px solid #eee;
}

.modal-header h3 {
  margin: 0;
  color: var(--primary-color);
  font-size: 1.5rem;
}

.modal-close {
  background: none;
  border: none;
  font-size: 1.75rem;
  cursor: pointer;
  color: var(--text-gray);
}

.modal-body {
  padding: 1.5rem 1.75rem 2rem;
  overflow-y: auto;
}

.modal-body h4 {
  margin-top: 1.5rem;
  margin-bottom: 0.5rem;
  color: var(--primary-color);
}

.modal-body p,
.modal-body li {
  font-size: 1rem;
}

/* Toggle Switch */
.toggle-switch {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  cursor: pointer;
}

.toggle-switch input {
  position: absolute;
  opacity: 0;
  width: 0;
  height: 0;
}

.toggle-slider {
  width: 52px;
  height: 30px;
  background: #d9d9d9;
  border-radius: 999px;
  position: relative;
  transition: var(--transition);
  box-shadow: inset 0 0 0 1px rgba(0, 0, 0, 0.05);
  flex-shrink: 0;
}

.toggle-slider::before {
  content: "";
  position: absolute;
  top: 3px;
  left: 3px;
  width: 24px;
  height: 24px;
  background: white;
  border-radius: 50%;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
  transition: var(--transition);
}

.toggle-switch input:checked + .toggle-slider {
  background: var(--accent-gradient);
}

.toggle-switch input:checked + .toggle-slider::before {
  transform: translateX(20px);
}

.toggle-switch input:focus-visible + .toggle-slider {
  outline: 3px solid rgba(157, 25, 122, 0.35);
  outline-offset: 3px;
}

/* Showroom Section Responsive */
.showroom-grid {
  max-width: 1000px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}

@media (max-width: 900px) {
  .showroom-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
}

/* Responsive */
@media (max-width: 768px) {
  .nav-links {
    display: none;
  }

  .menu-toggle {
    display: flex;
  }

  .hero-content {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .logo img {
    height: 32px !important;
    margin-right: 8px !important;
  }

  .logo {
    font-size: 1.5rem;
  }

  .timeline::before {
    display: none;
  }

  .timeline-item,
  .timeline-item:nth-child(even) {
    flex-direction: column;
    align-items: stretch;
  }

  .timeline-number {
    position: relative;
    left: auto;
    transform: none;
    margin: 0 auto 1rem auto;
    align-self: center;
  }

  .timeline-content {
    margin: 0;
    width: 100%;
  }

  /* Form: stack fields on mobile */
  #rentalRequestForm div[style*="grid-template-columns"] {
    grid-template-columns: 1fr !important;
  }

  .pricing-card.featured {
    transform: scale(1);
  }
}

/* Animations */
.fade-in {
  animation: fadeIn 1s ease-out;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Scroll reveal */
.reveal {
  opacity: 0;
  transform: translateY(50px);
  transition: all 0.6s ease-out;
}

.reveal.active {
  opacity: 1;
  transform: translateY(0);
}
