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

:root {
    --primary-color: #0066cc;
    --primary-dark: #004c99;
    --accent-color: #00d4aa;
    --accent-dark: #00b894;
    --text-dark: #2d3748;
    --text-light: #718096;
    --bg-light: #f7fafc;
    --white: #ffffff;
    --shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 20px 60px rgba(0, 0, 0, 0.15);
    --gradient-primary: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    --gradient-accent: linear-gradient(135deg, #00d4aa 0%, #00b894 100%);
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Poppins', sans-serif;
    color: var(--text-dark);
    line-height: 1.6;
    overflow-x: hidden;
}

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

.text-center {
    text-align: center;
}

.hidden {
    display: none !important;
}

/* Section Headers */
.section-header h2 {
    font-size: 2.8rem;
    margin-bottom: 15px;
    color: var(--text-dark);
}

.section-header p {
    font-size: 1.2rem;
    color: var(--text-light);
    margin-bottom: 50px;
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: var(--white);
    box-shadow: 0 2px 20px rgba(0,0,0,0.1);
    z-index: 1000;
    transition: all 0.3s ease;
}

.navbar.scrolled {
    box-shadow: 0 2px 30px rgba(0,0,0,0.15);
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 20px;
}

.nav-logo h2 {
    font-size: 1.8rem;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 30px;
}

.nav-link {
    text-decoration: none;
    color: var(--text-dark);
    font-weight: 500;
    transition: color 0.3s;
}

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

.nav-cta {
    display: flex;
    align-items: center;
    gap: 15px;
}

.nav-phone {
    color: var(--text-dark);
    text-decoration: none;
    font-weight: 600;
}

.nav-whatsapp {
    background: #25D366;
    color: white;
    padding: 8px 20px;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 600;
    transition: transform 0.3s;
}

.nav-whatsapp:hover {
    transform: translateY(-2px);
}

.nav-toggle {
    display: none;
    flex-direction: column;
    background: none;
    border: none;
    cursor: pointer;
}

.nav-toggle span {
    width: 25px;
    height: 3px;
    background: var(--text-dark);
    margin: 3px 0;
    transition: 0.3s;
}

/* Trust Bar */
.trust-bar {
    background: var(--bg-light);
    padding: 10px 0;
    border-top: 1px solid #e2e8f0;
}

.trust-items {
    display: flex;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.9rem;
    color: var(--text-light);
}

.trust-icon {
    font-size: 1.2rem;
}

/* Hero Section */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #1a1a2e;
    color: var(--white);
    text-align: center;
    overflow: hidden;
    margin-top: 100px;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: url('https://images.unsplash.com/photo-1476514525535-07fb3b4ae5f1?w=1920&q=80');
    background-size: cover;
    background-position: center;
    animation: heroZoom 20s ease-in-out infinite alternate;
}

@keyframes heroZoom {
    0% {
        transform: scale(1);
    }
    100% {
        transform: scale(1.1);
    }
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(
        135deg,
        rgba(26, 26, 46, 0.85) 0%,
        rgba(102, 126, 234, 0.75) 50%,
        rgba(118, 75, 162, 0.80) 100%
    );
}

.floating-shapes {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 0;
    overflow: hidden;
}

.shape {
    position: absolute;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
}

.shape-1 {
    width: 300px;
    height: 300px;
    top: 10%;
    left: 5%;
    animation: float 20s ease-in-out infinite;
}

.shape-2 {
    width: 200px;
    height: 200px;
    top: 60%;
    right: 10%;
    animation: float 15s ease-in-out infinite 2s;
}

.shape-3 {
    width: 150px;
    height: 150px;
    bottom: 15%;
    left: 15%;
    animation: float 18s ease-in-out infinite 4s;
}

.shape-4 {
    width: 250px;
    height: 250px;
    top: 30%;
    right: 20%;
    animation: float 22s ease-in-out infinite 1s;
}

.shape-5 {
    width: 180px;
    height: 180px;
    bottom: 30%;
    right: 5%;
    animation: float 17s ease-in-out infinite 3s;
}

@keyframes float {
    0%, 100% {
        transform: translate(0, 0) scale(1);
        opacity: 0.3;
    }
    25% {
        transform: translate(30px, -30px) scale(1.1);
        opacity: 0.5;
    }
    50% {
        transform: translate(-20px, 20px) scale(0.9);
        opacity: 0.4;
    }
    75% {
        transform: translate(20px, 30px) scale(1.05);
        opacity: 0.35;
    }
}

.hero-content {
    position: relative;
    z-index: 1;
    padding: 60px 20px;
}

.hero-badge {
    display: inline-block;
    background: rgba(255,255,255,0.2);
    padding: 8px 20px;
    border-radius: 25px;
    font-size: 0.9rem;
    margin-bottom: 20px;
}

.hero h1 {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    line-height: 1.2;
}

.typed-text {
    color: var(--accent-color);
    display: block;
    height: 4.5rem;
    width: 100%;
    max-width: 600px;
    margin: 0 auto;
    text-align: center;
    position: relative;
    overflow: visible;
    padding-bottom: 5px;
    --underline-width: 0px;
}

.typed-text::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: var(--underline-width);
    height: 3px;
    background: var(--accent-color);
    transition: width 0.05s ease;
}

.typed-text:empty::before {
    width: 0;
}

.typed-text::after {
    content: '|';
    color: var(--accent-color);
    animation: blink 1s infinite;
    position: absolute;
    right: -5px;
}

@keyframes blink {
    0%, 49% { opacity: 1; }
    50%, 100% { opacity: 0; }
}

.hero-subtitle {
    font-size: 1.3rem;
    margin-bottom: 2rem;
    opacity: 0.95;
    font-weight: 300;
}

.hero-cta-group {
    display: flex;
    gap: 15px;
    justify-content: center;
    margin-bottom: 20px;
}

.cta-button {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 18px 45px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1.1rem;
    text-decoration: none;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
}

.cta-button.primary {
    background: var(--accent-color);
    color: var(--text-dark);
    box-shadow: 0 10px 30px rgba(0, 212, 170, 0.3);
}

.cta-button.primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(0, 212, 170, 0.4);
}

.cta-button.secondary {
    background: rgba(255,255,255,0.2);
    color: white;
    border: 2px solid white;
}

.cta-button.secondary:hover {
    background: white;
    color: var(--primary-color);
}

.hero-urgency {
    background: rgba(255,107,53,0.9);
    color: white;
    padding: 12px 25px;
    border-radius: 10px;
    display: inline-block;
    margin-bottom: 40px;
    font-size: 0.95rem;
}

.hero-stats {
    display: flex;
    justify-content: center;
    gap: 60px;
    margin-top: 60px;
    flex-wrap: wrap;
}

.stat {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    display: block;
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 0.9rem;
    opacity: 0.9;
}

/* Quiz Section */
.quiz-section {
    padding: 100px 20px;
    background: var(--white);
}

.quiz-container {
    max-width: 800px;
    margin: 0 auto;
    background: var(--bg-light);
    border-radius: 20px;
    padding: 40px;
    box-shadow: var(--shadow);
}

.quiz-progress {
    width: 100%;
    height: 8px;
    background: #e2e8f0;
    border-radius: 10px;
    margin-bottom: 40px;
    overflow: hidden;
}

.quiz-progress-bar {
    height: 100%;
    background: var(--gradient-primary);
    transition: width 0.3s ease;
    width: 0%;
}

.quiz-content {
    min-height: 300px;
}

.quiz-step {
    animation: fadeIn 0.5s ease;
}

.quiz-step h3 {
    font-size: 1.8rem;
    margin-bottom: 30px;
    color: var(--text-dark);
}

.quiz-options {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 15px;
    margin-bottom: 30px;
}

.quiz-option {
    background: white;
    padding: 20px;
    border-radius: 15px;
    border: 2px solid #e2e8f0;
    cursor: pointer;
    transition: all 0.3s;
    text-align: center;
}

.quiz-option:hover {
    border-color: var(--primary-color);
    transform: translateY(-5px);
}

.quiz-option.selected {
    border-color: var(--accent-color);
    background: rgba(0, 212, 170, 0.1);
}

.quiz-results-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin: 30px 0;
}

/* Destinations Section */
.destinations-section {
    padding: 100px 20px;
    background: var(--bg-light);
}

.destination-filters {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.filter-btn {
    padding: 10px 25px;
    border: 2px solid #e2e8f0;
    background: white;
    border-radius: 25px;
    cursor: pointer;
    transition: all 0.3s;
    font-weight: 500;
}

.filter-btn:hover, .filter-btn.active {
    background: var(--primary-color);
    color: white;
    border-color: var(--primary-color);
}

.destinations-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 30px;
}

.destination-card {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: all 0.3s;
    cursor: pointer;
}

.destination-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
}

.destination-image {
    width: 100%;
    height: 250px;
    object-fit: cover;
}

.destination-content {
    padding: 25px;
}

.destination-content h3 {
    font-size: 1.5rem;
    margin-bottom: 10px;
}

.destination-meta {
    display: flex;
    gap: 10px;
    margin-bottom: 15px;
    flex-wrap: wrap;
}

.destination-tag {
    font-size: 0.85rem;
    padding: 4px 12px;
    background: var(--bg-light);
    border-radius: 15px;
    color: var(--text-light);
}

.destination-price {
    font-size: 1.3rem;
    color: var(--primary-color);
    font-weight: 700;
    margin-bottom: 15px;
}

.destination-price span {
    font-size: 0.9rem;
    font-weight: 400;
    color: var(--text-light);
}

/* Deals Section */
.deals-section {
    padding: 100px 20px;
    background: white;
}

.deals-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 30px;
    margin-bottom: 40px;
}

.deal-card {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: all 0.3s;
    position: relative;
}

.deal-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
}

.deal-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background: #ff6b35;
    color: white;
    padding: 6px 15px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    z-index: 2;
}

.deal-image {
    width: 100%;
    height: 250px;
    object-fit: cover;
}

.deal-content {
    padding: 25px;
}

.deal-title {
    font-size: 1.4rem;
    margin-bottom: 10px;
    color: var(--text-dark);
}

.deal-destination {
    color: var(--text-light);
    margin-bottom: 15px;
}

.deal-features {
    list-style: none;
    margin-bottom: 20px;
}

.deal-features li {
    padding: 5px 0;
    color: var(--text-light);
    font-size: 0.9rem;
}

.deal-features li:before {
    content: "✓ ";
    color: var(--accent-color);
    font-weight: 700;
}

.deal-pricing {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
}

.deal-price-original {
    font-size: 1.1rem;
    text-decoration: line-through;
    color: var(--text-light);
}

.deal-price-discount {
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary-color);
}

.deal-discount-badge {
    background: #ff6b35;
    color: white;
    padding: 4px 10px;
    border-radius: 15px;
    font-size: 0.85rem;
    font-weight: 600;
}

.deal-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.deal-bookings {
    font-size: 0.85rem;
    color: var(--text-light);
}

.deal-btn {
    background: var(--gradient-accent);
    color: white;
    padding: 12px 25px;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s;
}

.deal-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 20px rgba(0, 212, 170, 0.3);
}

.load-more-btn {
    background: var(--primary-color);
    color: white;
    padding: 15px 40px;
    border: none;
    border-radius: 30px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
}

.load-more-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(0, 102, 204, 0.3);
}

/* Widget Section */
.widget-section {
    padding: 100px 20px;
    background: var(--bg-light);
}

.widget-header h2 {
    font-size: 2.5rem;
    margin-bottom: 10px;
}

.booking-widget-container {
    max-width: 900px;
    margin: 0 auto;
}

.widget-disclaimer {
    background: #fff3cd;
    border: 1px solid #ffc107;
    padding: 15px;
    border-radius: 10px;
    margin-bottom: 20px;
    text-align: center;
}

.demo-search-widget {
    background: white;
    padding: 40px;
    border-radius: 20px;
    box-shadow: var(--shadow);
}

.search-form {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 15px;
    align-items: end;
}

.search-field label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
    color: var(--text-dark);
}

.search-field input,
.search-field select {
    width: 100%;
    padding: 12px;
    border: 2px solid #e2e8f0;
    border-radius: 10px;
    font-family: 'Poppins', sans-serif;
}

.search-btn {
    background: var(--gradient-primary);
    color: white;
    padding: 12px 30px;
    border: none;
    border-radius: 10px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
}

.search-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 20px rgba(102, 126, 234, 0.3);
}

/* Calculator Section */
.calculator-section {
    padding: 100px 20px;
    background: white;
}

.calculator-wrapper {
    max-width: 1000px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    background: var(--bg-light);
    padding: 40px;
    border-radius: 20px;
    box-shadow: var(--shadow);
}

.calculator-content h2 {
    font-size: 2rem;
    margin-bottom: 10px;
}

.calculator-form {
    margin-top: 30px;
}

.calc-field {
    margin-bottom: 25px;
}

.calc-field label {
    display: block;
    margin-bottom: 10px;
    font-weight: 600;
    color: var(--text-dark);
}

.slider-container {
    display: flex;
    align-items: center;
    gap: 15px;
}

.slider {
    flex: 1;
    height: 8px;
    border-radius: 5px;
    outline: none;
    background: #e2e8f0;
}

.slider::-webkit-slider-thumb {
    -webkit-appearance: none;
    appearance: none;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: var(--primary-color);
    cursor: pointer;
}

.slider-value {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--primary-color);
    min-width: 40px;
}

.calc-select {
    width: 100%;
    padding: 12px;
    border: 2px solid #e2e8f0;
    border-radius: 10px;
    font-family: 'Poppins', sans-serif;
}

.calc-checkboxes {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.calc-checkbox {
    display: flex;
    align-items: center;
    gap: 10px;
    cursor: pointer;
}

.calculator-result {
    background: white;
    padding: 30px;
    border-radius: 15px;
    box-shadow: var(--shadow);
}

.calculator-result h3 {
    font-size: 1.5rem;
    margin-bottom: 20px;
}

.calc-breakdown {
    margin-bottom: 20px;
}

.calc-line {
    display: flex;
    justify-content: space-between;
    padding: 10px 0;
    border-bottom: 1px solid #e2e8f0;
}

.calc-total {
    display: flex;
    justify-content: space-between;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-color);
    padding: 15px 0;
    border-top: 2px solid var(--primary-color);
    margin-bottom: 15px;
}

.calc-note {
    font-size: 0.85rem;
    color: var(--text-light);
    margin-bottom: 20px;
}

/* Problem, Solution, How It Works - Keep existing styles */
.problem {
    padding: 100px 20px;
    background: var(--white);
}

.problem h2 {
    text-align: center;
    font-size: 2.8rem;
    margin-bottom: 60px;
}

.problem-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 40px;
    max-width: 1000px;
    margin: 0 auto;
}

.problem-item {
    text-align: center;
    padding: 30px;
}

.problem-icon {
    font-size: 4rem;
    margin-bottom: 20px;
}

.problem-item h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
}

.problem-item p {
    color: var(--text-light);
}

.solution {
    padding: 100px 20px;
    background: var(--bg-light);
}

.solution h2 {
    text-align: center;
    font-size: 2.8rem;
    margin-bottom: 20px;
}

.section-subtitle {
    text-align: center;
    font-size: 1.2rem;
    color: var(--text-light);
    margin-bottom: 60px;
}

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

.feature-card {
    background: white;
    padding: 40px 30px;
    border-radius: 15px;
    box-shadow: var(--shadow);
    transition: all 0.3s;
    text-align: center;
}

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

.feature-icon {
    font-size: 3.5rem;
    margin-bottom: 20px;
}

.feature-card h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
}

.feature-card p {
    color: var(--text-light);
    line-height: 1.7;
}

.how-it-works {
    padding: 100px 20px;
    background: white;
}

.how-it-works h2 {
    text-align: center;
    font-size: 2.8rem;
    margin-bottom: 60px;
}

.steps {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    flex-wrap: wrap;
    gap: 20px;
}

.step {
    flex: 1;
    min-width: 200px;
    text-align: center;
    padding: 20px;
}

.step-number {
    width: 60px;
    height: 60px;
    background: var(--gradient-primary);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    font-weight: 700;
    margin: 0 auto 20px;
}

.step h3 {
    font-size: 1.3rem;
    margin-bottom: 15px;
}

.step p {
    color: var(--text-light);
    font-size: 0.95rem;
}

.step-arrow {
    font-size: 2rem;
    color: var(--accent-color);
    align-self: center;
}

/* Testimonials */
.testimonials {
    padding: 100px 20px;
    background: var(--bg-light);
}

.testimonials h2 {
    text-align: center;
    font-size: 2.8rem;
    margin-bottom: 30px;
}

.testimonials-stats {
    text-align: center;
    margin-bottom: 50px;
}

.rating-summary {
    display: inline-block;
    background: white;
    padding: 20px 40px;
    border-radius: 15px;
    box-shadow: var(--shadow);
}

.rating-score {
    font-size: 3rem;
    font-weight: 700;
    color: var(--primary-color);
}

.rating-stars {
    font-size: 1.5rem;
    margin: 10px 0;
}

.rating-count {
    color: var(--text-light);
    font-size: 0.9rem;
}

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

.testimonial-card {
    background: white;
    padding: 35px;
    border-radius: 15px;
    box-shadow: var(--shadow);
}

.stars {
    color: #ffd700;
    font-size: 1.2rem;
    margin-bottom: 15px;
}

.testimonial-card p {
    color: var(--text-dark);
    font-style: italic;
    line-height: 1.7;
    margin-bottom: 15px;
}

.testimonial-author strong {
    color: var(--text-dark);
    font-weight: 600;
}

.testimonial-author span {
    color: var(--text-light);
    font-size: 0.9rem;
}

/* Live Bookings */
.live-bookings {
    position: fixed;
    bottom: 30px;
    left: 30px;
    z-index: 999;
}

.booking-notification {
    background: white;
    padding: 15px 20px;
    border-radius: 10px;
    box-shadow: var(--shadow-lg);
    margin-bottom: 10px;
    animation: slideInLeft 0.5s ease;
}

/* Lead Magnet */
.lead-magnet {
    padding: 100px 20px;
    background: white;
}

.lead-magnet-card {
    max-width: 700px;
    margin: 0 auto;
    text-align: center;
    background: var(--gradient-primary);
    color: white;
    padding: 50px 40px;
    border-radius: 20px;
    box-shadow: var(--shadow-lg);
}

.lead-magnet-icon {
    font-size: 4rem;
    margin-bottom: 20px;
}

.lead-magnet-card h2 {
    font-size: 2rem;
    margin-bottom: 15px;
}

.lead-magnet-card p {
    font-size: 1.1rem;
    margin-bottom: 30px;
    opacity: 0.9;
}

.lead-magnet-form {
    display: flex;
    gap: 10px;
    max-width: 500px;
    margin: 0 auto 15px;
}

.lead-magnet-form input {
    flex: 1;
    padding: 15px;
    border-radius: 10px;
    border: none;
    font-family: 'Poppins', sans-serif;
}

/* CTA Section / Main Form */
.cta-section {
    padding: 100px 20px;
    background: var(--gradient-primary);
    color: white;
}

.cta-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
}

.cta-text h2 {
    font-size: 2.8rem;
    margin-bottom: 20px;
}

.cta-text p {
    font-size: 1.2rem;
    margin-bottom: 30px;
    opacity: 0.95;
}

.benefits-list {
    list-style: none;
    margin-bottom: 30px;
}

.benefits-list li {
    padding: 12px 0;
    font-size: 1.1rem;
}

.testimonial-mini {
    background: rgba(255,255,255,0.1);
    padding: 20px;
    border-radius: 15px;
    border-left: 4px solid var(--accent-color);
}

.stars-mini {
    color: #ffd700;
    margin-bottom: 10px;
}

.cta-form {
    background: white;
    padding: 40px;
    border-radius: 20px;
    box-shadow: var(--shadow-lg);
}

.multi-step-form h3 {
    color: var(--text-dark);
    margin-bottom: 25px;
}

.form-progress {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 30px;
}

.progress-step {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 2px solid #e2e8f0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    color: var(--text-light);
    background: white;
    transition: all 0.3s;
}

.progress-step.active {
    background: var(--primary-color);
    color: white;
    border-color: var(--primary-color);
}

.progress-line {
    width: 60px;
    height: 2px;
    background: #e2e8f0;
}

.form-step {
    display: none;
}

.form-step.active {
    display: block;
    animation: fadeIn 0.5s ease;
}

.form-group {
    margin-bottom: 20px;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 15px;
    border: 2px solid #e2e8f0;
    border-radius: 10px;
    font-family: 'Poppins', sans-serif;
    transition: border-color 0.3s;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
}

.form-checkboxes {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
}

.form-checkbox-label {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 10px;
    cursor: pointer;
}

.form-buttons {
    display: flex;
    gap: 15px;
    justify-content: space-between;
}

.form-next-btn,
.form-prev-btn,
.submit-button {
    padding: 15px 30px;
    border: none;
    border-radius: 10px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
}

.form-next-btn,
.submit-button {
    background: var(--gradient-primary);
    color: white;
    flex: 1;
}

.form-prev-btn {
    background: #e2e8f0;
    color: var(--text-dark);
}

.form-next-btn:hover,
.submit-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 20px rgba(102, 126, 234, 0.3);
}

.form-privacy {
    text-align: center;
    font-size: 0.85rem;
    color: var(--text-light);
    margin-top: 15px;
}

.form-summary {
    background: var(--bg-light);
    padding: 20px;
    border-radius: 10px;
    margin-bottom: 20px;
}

/* FAQ Section */
.faq-section {
    padding: 100px 20px;
    background: white;
}

.faq-container {
    max-width: 900px;
    margin: 0 auto;
}

.faq-category {
    margin-bottom: 40px;
}

.faq-category h3 {
    font-size: 1.8rem;
    margin-bottom: 20px;
    color: var(--primary-color);
}

.faq-item {
    background: var(--bg-light);
    margin-bottom: 15px;
    border-radius: 10px;
    overflow: hidden;
}

.faq-question {
    padding: 20px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-weight: 600;
    transition: background 0.3s;
}

.faq-question:hover {
    background: #e2e8f0;
}

.faq-toggle {
    font-size: 1.5rem;
    color: var(--primary-color);
    transition: transform 0.3s;
}

.faq-item.active .faq-toggle {
    transform: rotate(45deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.faq-item.active .faq-answer {
    max-height: 500px;
}

.faq-answer p {
    padding: 0 20px 20px;
    color: var(--text-light);
    line-height: 1.7;
}

/* Footer */
.footer {
    background: var(--text-dark);
    color: white;
    padding-top: 0;
}

.newsletter-section {
    background: var(--primary-color);
    padding: 60px 20px;
}

.newsletter-content {
    max-width: 600px;
    margin: 0 auto;
    text-align: center;
}

.newsletter-content h3 {
    font-size: 2rem;
    margin-bottom: 10px;
}

.newsletter-content p {
    margin-bottom: 20px;
    opacity: 0.9;
}

.newsletter-form {
    display: flex;
    gap: 10px;
}

.newsletter-form input {
    flex: 1;
    padding: 15px;
    border-radius: 10px;
    border: none;
}

.newsletter-form button {
    background: var(--accent-color);
    color: var(--text-dark);
    padding: 15px 30px;
    border: none;
    border-radius: 10px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
}

.newsletter-form button:hover {
    transform: translateY(-2px);
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 40px;
    padding: 60px 20px 30px;
}

.footer-section h4 {
    font-size: 1.3rem;
    margin-bottom: 15px;
}

.footer-section ul {
    list-style: none;
}

.footer-section a {
    color: rgba(255,255,255,0.8);
    text-decoration: none;
    transition: color 0.3s;
}

.footer-section a:hover {
    color: white;
}

.social-links {
    display: flex;
    gap: 15px;
}

.social-link {
    display: inline-block;
    padding: 8px 15px;
    background: rgba(255,255,255,0.1);
    border-radius: 8px;
    transition: all 0.3s;
}

.social-link:hover {
    background: rgba(255,255,255,0.2);
}

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.1);
    padding: 30px 20px;
    text-align: center;
    color: rgba(255,255,255,0.6);
}

.footer-links {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 15px;
}

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

@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-100px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.fade-in {
    animation: fadeIn 0.8s ease-out;
}

.fade-in-delay {
    animation: fadeIn 0.8s ease-out 0.2s both;
}

.fade-in-delay-2 {
    animation: fadeIn 0.8s ease-out 0.4s both;
}

.fade-in-delay-3 {
    animation: fadeIn 0.8s ease-out 0.6s both;
}

.fade-in-delay-4 {
    animation: fadeIn 0.8s ease-out 0.8s both;
}
