/* Global Styles */
:root {
  --primary-gradient: linear-gradient(135deg, #FF6B6B 0%, #FF8E53 100%);
  --secondary-gradient: linear-gradient(135deg, #FFD93D 0%, #FFC107 100%);
  --text-dark: #333;
  --text-gray: #666;
  --bg-light: #fdfbf7; /* Slight cream background */
  --bg-white: #ffffff;
  --shadow-sm: 0 4px 6px rgba(0,0,0,0.05);
  --shadow-md: 0 10px 15px rgba(0,0,0,0.1);
  --shadow-lg: 0 20px 25px rgba(0,0,0,0.15);
  --radius-md: 12px;
  --radius-lg: 20px;
  --radius-full: 50px;
  --font-heading: 'Playfair Display', serif; /* Elegant Serif */
  --font-body: 'Poppins', sans-serif; /* Clean Sans */
}

body {
  font-family: var(--font-body);
  margin: 0;
  padding: 0;
  color: var(--text-dark);
  background-color: var(--bg-light);
  line-height: 1.6;
}

h1, h2, h3, h4, h5 {
  font-family: var(--font-heading);
  margin-top: 0;
}

a { text-decoration: none; color: inherit; transition: all 0.3s ease; }
ul { list-style: none; padding: 0; margin: 0; }
img { max-width: 100%; display: block; }

/* Navbar */
.navbar {
  display: flex; justify-content: space-between; align-items: center;
  padding: 20px 5%;
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(10px);
  position: fixed; width: 100%; top: 0; z-index: 1000;
  box-shadow: var(--shadow-sm);
  box-sizing: border-box;
}

.logo { 
  font-family: var(--font-heading) !important; 
  font-size: 1.8rem; font-weight: 700; color: #E05656; 
  display: flex; align-items: center; gap: 10px;
}

.nav-links { display: flex; align-items: center; gap: 30px; }
.nav-links a { font-weight: 500; font-size: 0.95rem; color: var(--text-dark); position: relative; }
.nav-links a:hover { color: #E05656; }

.btn-primary {
  padding: 12px 30px;
  background: var(--primary-gradient);
  color: white !important;
  border-radius: var(--radius-full);
  font-weight: 600;
  box-shadow: 0 4px 15px rgba(255, 107, 107, 0.4);
  border: none; cursor: pointer; display: inline-block;
  transition: transform 0.2s, box-shadow 0.2s;
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(255, 107, 107, 0.6);
}

.btn-secondary {
    padding: 12px 30px;
    background: white; border: 2px solid #FF6B6B;
    color: #FF6B6B !important;
    border-radius: var(--radius-full);
    font-weight: 600;
    transition: all 0.3s;
}
.btn-secondary:hover {
    background: #FF6B6B; color: white !important;
}


/* Hero Section */
.hero {
  position: relative;
  height: 90vh;
  margin-top: 0;
  display: flex; flex-direction: column; justify-content: center; align-items: flex-start;
  padding: 0 10%;
  overflow: hidden;
  /* Background specific based on reference */
  background: url('https://images.unsplash.com/photo-1530103862676-de3c9a59af57?q=80&w=2600&auto=format&fit=crop') no-repeat center center/cover; 
}

.hero::before {
    content: ''; position: absolute; top:0; left:0; width:100%; height:100%;
    background: linear-gradient(90deg, rgba(255,255,255,0.95) 0%, rgba(255,255,255,0.6) 50%, rgba(255,255,255,0.1) 100%);
    z-index: 1;
}

.hero-content { position: relative; z-index: 2; max-width: 600px; animation: fadeInUp 1s ease-out; }
.hero h1 { 
    font-size: 4.5rem; line-height: 1.1; margin-bottom: 20px; color: #2D2D2D; 
}
.hero h1 span {
    background: var(--primary-gradient); -webkit-background-clip: text; -webkit-text-fill-color: transparent;
    font-style: italic;
}
.hero p { font-size: 1.2rem; margin-bottom: 40px; color: var(--text-gray); }

.hero-buttons { display: flex; gap: 20px; }

/* How It Works */
.steps-section { padding: 100px 10%; text-align: center; background: white; }
.section-title { font-size: 2.5rem; margin-bottom: 10px; color: var(--text-dark); }
.section-subtitle { color: var(--text-gray); margin-bottom: 60px; font-weight: 300; }

.steps-grid {
    display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 40px;
}
.step-card {
    display: flex; flex-direction: column; align-items: center; position: relative;
}
.step-icon {
    width: 60px; height: 60px; border-radius: 15px; 
    background: var(--primary-gradient); color: white;
    display: flex; align-items: center; justify-content: center; font-size: 1.5rem;
    margin-bottom: 20px; box-shadow: var(--shadow-md);
    transform: rotate(-10deg); transition: transform 0.3s;
}
.step-card:hover .step-icon { transform: rotate(0deg) scale(1.1); }
.step-number { 
    background: #FFD93D; color: #333; font-weight: 800; font-size: 0.8rem; 
    padding: 2px 10px; border-radius: 10px; margin-bottom: 10px; 
    text-transform: uppercase; letter-spacing: 1px;
}
.step-title { font-weight: 700; margin-bottom: 10px; font-size: 1.2rem; }
.step-desc { font-size: 0.9rem; color: var(--text-gray); }

/* Featured Kits */
.kits-section { padding: 100px 5%; background: var(--bg-light); text-align: center; }
.kits-grid {
    display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 30px;
    margin-top: 50px;
}
.kit-card {
    background: white; border-radius: var(--radius-lg); overflow: hidden;
    box-shadow: var(--shadow-sm); transition: transform 0.3s, box-shadow 0.3s;
    text-align: left; border: 1px solid #eee;
}
.kit-card:hover { transform: translateY(-10px); box-shadow: var(--shadow-lg); }

.kit-image { height: 250px; overflow: hidden; position: relative; }
.kit-image img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s; }
.kit-card:hover .kit-image img { transform: scale(1.05); }

.kit-content { padding: 25px; }
.kit-rating { color: #FFC107; font-size: 0.9rem; margin-bottom: 5px; }
.kit-title { font-size: 1.4rem; font-weight: 700; margin-bottom: 10px; font-family: var(--font-heading); }
.kit-desc { font-size: 0.9rem; color: var(--text-gray); margin-bottom: 20px; 
    display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; }

.kit-footer { display: flex; justify-content: space-between; align-items: center; border-top: 1px solid #eee; padding-top: 15px; }
.kit-price { font-weight: 700; color: #E05656; font-size: 1.2rem; }
.btn-rent { 
    padding: 8px 20px; background: #E05656; color: white; border-radius: 20px; 
    font-size: 0.9rem; font-weight: 600; 
}
.btn-rent:hover { background: #c93a3a; transform: translateY(-2px); }

/* Testimonials */
.reviews-section { padding: 100px 10%; background: white; text-align: center; }
.reviews-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 30px; margin-top: 50px; }
.review-card {
    padding: 30px; border-radius: var(--radius-lg); background: #fffcf5;
    border: 1px solid #f0e6d2; position: relative;
    text-align: left;
}
.quote-icon { position: absolute; top: 20px; right: 20px; font-size: 3rem; color: rgba(255, 107, 107, 0.1); font-family: serif; }
.review-stars { color: #FFC107; margin-bottom: 15px; }
.review-text { font-style: italic; color: #555; margin-bottom: 20px; }
.reviewer { display: flex; align-items: center; gap: 15px; }
.reviewer-avatar { width: 40px; height: 40px; background: #ddd; border-radius: 50%; }
.reviewer-name { font-weight: 700; font-size: 0.9rem; }
.reviewer-role { font-size: 0.8rem; color: #888; }

/* CTA Band */
.cta-band {
    background: var(--primary-gradient); padding: 80px 5%;
    display: flex; flex-direction: column; align-items: center; justify-content: center;
    text-align: center; color: white; position: relative; overflow: hidden;
    margin: 50px 20px; border-radius: var(--radius-lg);
    box-shadow: 0 20px 40px rgba(255, 107, 107, 0.3);
}
.cta-band::before {
    content: ''; position: absolute; top: -50%; left: -50%; width: 200%; height: 200%;
    background: radial-gradient(circle, rgba(255,255,255,0.2) 0%, transparent 60%);
    animation: rotate 20s linear infinite;
}
.cta-content { position: relative; z-index: 1; }
.cta-band h2 { font-size: 3rem; margin-bottom: 10px; }
.cta-band p { font-size: 1.2rem; margin-bottom: 30px; opacity: 0.9; }
.btn-light {
    background: white; color: #E05656; padding: 15px 40px; 
    border-radius: var(--radius-full); font-weight: 700;
}
.btn-light:hover { transform: scale(1.05); }

/* FAQ */
.faq-section { padding: 80px 20%; background: var(--bg-light); text-align: center; }
.faq-item {
    background: white; border-radius: var(--radius-md); margin-bottom: 15px;
    padding: 20px; text-align: left; cursor: pointer; box-shadow: var(--shadow-sm);
    transition: all 0.3s;
}
.faq-item:hover { box-shadow: var(--shadow-md); transform: translateY(-2px); }
.faq-question { font-weight: 600; display: flex; justify-content: space-between; align-items: center; }
.faq-answer { display: none; margin-top: 15px; color: var(--text-gray); font-size: 0.95rem; }
.faq-item.active .faq-answer { display: block; }
.faq-icon { color: #E05656; }

/* Final Call */
.final-call { padding: 100px 5%; text-align: center; background: white; }

/* Footer */
footer { background: #1a1a1a; color: white; padding: 80px 5% 20px; margin-top: 0; }
.footer-grid { 
    display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 40px; 
    max-width: 1200px; margin: 0 auto; border-bottom: 1px solid #333; padding-bottom: 50px;
}
.footer-col h4 { font-family: var(--font-body); font-weight: 700; margin-bottom: 20px; color: #fff; }
.footer-col ul li { margin-bottom: 10px; }
.footer-col ul li a { color: #888; font-size: 0.9rem; }
.footer-col ul li a:hover { color: #E05656; }
.footer-bottom { text-align: center; padding-top: 30px; color: #555; font-size: 0.8rem; }

/* Animations */
@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}
@keyframes rotate {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

/* Responsive */
@media (max-width: 768px) {
    .hero h1 { font-size: 3rem; }
    .nav-links { display: none; } /* Add mobile menu later if needed */
    .cta-band { margin: 20px; padding: 40px 20px; }
    .hero { height: auto; padding: 100px 5%; }
}
