
/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
:root {
    --primary-color: #9D41A4;
    --primary-dark: #7D3283;
    --primary-light: #E8D0EA;
    --dark-color: #333333;
    --light-color: #f8f9fa;
    --gray-color: #777777;
    --white-color: #ffffff;
}
body {
    font-family: 'Poppins', sans-serif;
    line-height: 1.6;
    color: var(--dark-color);
    background-color: var(--white-color);
}
.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}
/* Header */
.header {
    background-color: var(--white-color);
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.08);
    position: sticky;
    top: 0;
    z-index: 100;
}
.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 0;
}
.logo {
    display: flex;
    align-items: center;
    text-decoration: none;
    font-size: 24px;
    font-weight: 700;
    color: var(--dark-color);
}
.logo i {
    color: var(--primary-color);
    margin-right: 10px;
    font-size: 28px;
}
.nav-links {
    display: flex;
    gap: 30px;
}
.nav-links a {
    text-decoration: none;
    color: var(--gray-color);
    font-weight: 500;
    transition: color 0.3s;
    font-size: 16px;
}
.nav-links a:hover,
.nav-links a.active {
    color: var(--primary-color);
}
/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 28px;
    background-color: var(--primary-color);
    color: var(--white-color);
    text-decoration: none;
    border-radius: 8px;
    font-weight: 600;
    border: none;
    cursor: pointer;
    transition: all 0.3s;
    font-size: 16px;
}
.btn:hover {
    background-color: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 6px 15px rgba(157, 65, 164, 0.3);
}
.book-btn {
    padding: 10px 22px;
    font-size: 15px;
}
.hero-btn {
    font-size: 18px;
    padding: 16px 36px;
}
.steps-btn {
    font-size: 18px;
    padding: 16px 36px;
}
.submit-btn {
    font-size: 18px;
    padding: 16px 40px;
    display: block;
    margin: 30px auto 0;
}
.menu-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 24px;
    color: var(--primary-color);
    cursor: pointer;
}
/* Hero Section */
.hero {
    background: linear-gradient(rgba(255, 255, 255, 0.95), rgba(255, 255, 255, 0.98)), 
                url('https://images.unsplash.com/photo-1582735689369-6d6152993e1f?ixlib=rb-4.0.3&auto=format&fit=crop&w=1600&q=80');
    background-size: cover;
    background-position: center;
    padding: 100px 0;
    text-align: center;
}
.hero-content {
    max-width: 800px;
    margin: 0 auto;
}
.hero h1 {
    font-size: 42px;
    margin-bottom: 20px;
    font-weight: 700;
    color: var(--dark-color);
    line-height: 1.2;
}
.hero p {
    font-size: 18px;
    margin-bottom: 40px;
    color: var(--gray-color);
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}
/* How It Works */
.how-it-works {
    padding: 80px 0;
    background-color: var(--light-color);
}
.how-it-works h2 {
    text-align: center;
    font-size: 36px;
    color: var(--dark-color);
    margin-bottom: 60px;
    font-weight: 700;
}
.steps {
    display: flex;
    justify-content: center;
    gap: 40px;
    margin-bottom: 60px;
    flex-wrap: wrap;
}
.step {
    flex: 1;
    min-width: 300px;
    max-width: 350px;
    background: var(--white-color);
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
    text-align: center;
    position: relative;
    transition: transform 0.3s;
}
.step:hover {
    transform: translateY(-5px);
}
.step-number {
    width: 50px;
    height: 50px;
    background: var(--primary-color);
    color: var(--white-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    font-weight: 700;
    margin: 0 auto 25px;
}
.step-content h3 {
    color: var(--dark-color);
    margin-bottom: 15px;
    font-size: 22px;
}
.step-content p {
    color: var(--gray-color);
    font-size: 16px;
}
.steps-cta {
    text-align: center;
}
/* Testimonials */
.testimonials {
    padding: 80px 0;
    background-color: var(--white-color);
}
.testimonials h2 {
    text-align: center;
    font-size: 36px;
    color: var(--dark-color);
    margin-bottom: 60px;
    font-weight: 700;
}
.testimonial-grid {
    display: flex;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
}
.testimonial-card {
    flex: 1;
    min-width: 300px;
    max-width: 500px;
    background: var(--white-color);
    padding: 40px;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    border-top: 4px solid var(--primary-color);
}
.testimonial-content p {
    font-size: 17px;
    color: var(--dark-color);
    line-height: 1.7;
    margin-bottom: 30px;
    font-style: italic;
}
.testimonial-author {
    display: flex;
    align-items: center;
    gap: 15px;
}
.author-avatar {
    width: 60px;
    height: 60px;
    background: var(--primary-light);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-color);
    font-size: 24px;
}
.author-info h4 {
    color: var(--dark-color);
    margin-bottom: 5px;
    font-size: 18px;
}
.author-info p {
    color: var(--gray-color);
    font-size: 14px;
}
/* Booking Section */
.booking-section {
    padding: 80px 0;
    background-color: var(--light-color);
}
.booking-section h2 {
    text-align: center;
    font-size: 36px;
    color: var(--dark-color);
    margin-bottom: 15px;
    font-weight: 700;
}
.section-subtitle {
    text-align: center;
    color: var(--gray-color);
    margin-bottom: 50px;
    font-size: 18px;
}
.booking-form {
    max-width: 800px;
    margin: 0 auto;
    background: var(--white-color);
    padding: 50px;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}
.form-row {
    display: flex;
    gap: 30px;
    margin-bottom: 25px;
}
.form-group {
    flex: 1;
}
.form-group label {
    display: block;
    margin-bottom: 10px;
    font-weight: 600;
    color: var(--dark-color);
    font-size: 16px;
}
.form-group input,
.form-group select {
    width: 100%;
    padding: 15px;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    font-family: 'Poppins', sans-serif;
    font-size: 16px;
    transition: border-color 0.3s;
    background-color: var(--white-color);
}
.form-group input:focus,
.form-group select:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(157, 65, 164, 0.1);
}
/* Footer */
.footer {
    background-color: var(--dark-color);
    color: var(--white-color);
    padding: 70px 0 30px;
}
.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 50px;
    margin-bottom: 50px;
}
.footer-column .logo {
    color: var(--white-color);
    margin-bottom: 20px;
}
.footer-column .logo i {
    color: var(--white-color);
}
.footer-column p {
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 25px;
    font-size: 16px;
    line-height: 1.7;
}
.footer-column h3 {
    font-size: 20px;
    margin-bottom: 25px;
    color: var(--white-color);
}
.footer-column a {
    display: block;
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    margin-bottom: 12px;
    transition: color 0.3s;
    font-size: 16px;
}
.footer-column a:hover {
    color: var(--primary-color);
}
.social-icons {
    display: flex;
    gap: 15px;
    margin-top: 20px;
}
.social-icon {
    width: 40px;
    height: 40px;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white-color);
    text-decoration: none;
    transition: all 0.3s;
    font-size: 18px;
}
.social-icon:hover {
    background-color: var(--primary-color);
    transform: translateY(-3px);
}
.contact-info {
    display: flex;
    flex-direction: column;
    gap: 20px;
}
.contact-item {
    display: flex;
    gap: 15px;
    align-items: flex-start;
}
.contact-item i {
    color: var(--primary-color);
    font-size: 18px;
    margin-top: 4px;
}
.contact-item span {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
}
.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.6);
    font-size: 14px;
}
/* Responsive Design */
@media (max-width: 992px) {
    .steps {
        gap: 30px;
    }
    
    .step {
        min-width: 280px;
    }
    
    .hero h1 {
        font-size: 36px;
    }
    
    .how-it-works h2,
    .testimonials h2,
    .booking-section h2 {
        font-size: 32px;
    }
}
@media (max-width: 768px) {
    .nav-links {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: var(--white-color);
        flex-direction: column;
        padding: 20px;
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
        gap: 15px;
    }
    
    .nav-links.show {
        display: flex;
    }
    
    .nav-links a {
        padding: 10px 0;
        border-bottom: 1px solid #eee;
    }
    
    .menu-toggle {
        display: block;
    }
    
    .form-row {
        flex-direction: column;
        gap: 0;
    }
    
    .form-group {
        margin-bottom: 20px;
    }
    
    .hero {
        padding: 80px 0;
    }
    
    .hero h1 {
        font-size: 32px;
    }
    
    .hero p {
        font-size: 17px;
    }
    
    .booking-form {
        padding: 30px;
    }
    
    .how-it-works,
    .testimonials,
    .booking-section {
        padding: 60px 0;
    }
}
@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }
    
    .hero {
        padding: 60px 0;
    }
    
    .hero h1 {
        font-size: 28px;
    }
    
    .hero-btn,
    .steps-btn,
    .submit-btn {
        padding: 14px 28px;
        font-size: 16px;
    }
    
    .step {
        padding: 25px;
    }
    
    .testimonial-card {
        padding: 25px;
    }
    
    .footer {
        padding: 50px 0 25px;
    }
    
    .footer-content {
        gap: 40px;
    }
}
/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
:root {
    --primary-color: #9D41A4;
    --primary-dark: #7D3283;
    --primary-light: #E8D0EA;
    --dark-color: #333333;
    --light-color: #f8f9fa;
    --gray-color: #777777;
    --white-color: #ffffff;
}
body {
    font-family: 'Poppins', sans-serif;
    line-height: 1.6;
    color: var(--dark-color);
    background-color: var(--white-color);
}
.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}
/* Header */
.header {
    background-color: var(--white-color);
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.08);
    position: sticky;
    top: 0;
    z-index: 100;
}
.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 0;
}
.logo {
    display: flex;
    align-items: center;
    text-decoration: none;
    font-size: 24px;
    font-weight: 700;
    color: var(--dark-color);
}
.logo i {
    color: var(--primary-color);
    margin-right: 10px;
    font-size: 28px;
}
.nav-links {
    display: flex;
    gap: 30px;
}
.nav-links a {
    text-decoration: none;
    color: var(--gray-color);
    font-weight: 500;
    transition: color 0.3s;
    font-size: 16px;
}
.nav-links a:hover,
.nav-links a.active {
    color: var(--primary-color);
}
/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 28px;
    background-color: var(--primary-color);
    color: var(--white-color);
    text-decoration: none;
    border-radius: 8px;
    font-weight: 600;
    border: none;
    cursor: pointer;
    transition: all 0.3s;
    font-size: 16px;
}
.btn:hover {
    background-color: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 6px 15px rgba(157, 65, 164, 0.3);
}
.book-btn {
    padding: 10px 22px;
    font-size: 15px;
}
.hero-btn {
    font-size: 18px;
    padding: 16px 36px;
}
.steps-btn {
    font-size: 18px;
    padding: 16px 36px;
}
.submit-btn {
    font-size: 18px;
    padding: 16px 40px;
    display: block;
    margin: 30px auto 0;
}
.menu-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 24px;
    color: var(--primary-color);
    cursor: pointer;
}
/* Hero Section */
.hero {
    background: linear-gradient(rgba(255, 255, 255, 0.95), rgba(255, 255, 255, 0.98)), 
                url('https://images.unsplash.com/photo-1582735689369-6d6152993e1f?ixlib=rb-4.0.3&auto=format&fit=crop&w=1600&q=80');
    background-size: cover;
    background-position: center;
    padding: 100px 0;
    text-align: center;
}
.hero-content {
    max-width: 800px;
    margin: 0 auto;
}
.hero h1 {
    font-size: 42px;
    margin-bottom: 20px;
    font-weight: 700;
    color: var(--dark-color);
    line-height: 1.2;
}
.hero p {
    font-size: 18px;
    margin-bottom: 40px;
    color: var(--gray-color);
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}
/* How It Works */
.how-it-works {
    padding: 80px 0;
    background-color: var(--light-color);
}
.how-it-works h2 {
    text-align: center;
    font-size: 36px;
    color: var(--dark-color);
    margin-bottom: 60px;
    font-weight: 700;
}
.steps {
    display: flex;
    justify-content: center;
    gap: 40px;
    margin-bottom: 60px;
    flex-wrap: wrap;
}
.step {
    flex: 1;
    min-width: 300px;
    max-width: 350px;
    background: var(--white-color);
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
    text-align: center;
    position: relative;
    transition: transform 0.3s;
}
.step:hover {
    transform: translateY(-5px);
}
.step-number {
    width: 50px;
    height: 50px;
    background: var(--primary-color);
    color: var(--white-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    font-weight: 700;
    margin: 0 auto 25px;
}
.step-content h3 {
    color: var(--dark-color);
    margin-bottom: 15px;
    font-size: 22px;
}
.step-content p {
    color: var(--gray-color);
    font-size: 16px;
}
.steps-cta {
    text-align: center;
}
/* Testimonials */
.testimonials {
    padding: 80px 0;
    background-color: var(--white-color);
}
.testimonials h2 {
    text-align: center;
    font-size: 36px;
    color: var(--dark-color);
    margin-bottom: 60px;
    font-weight: 700;
}
.testimonial-grid {
    display: flex;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
}
.testimonial-card {
    flex: 1;
    min-width: 300px;
    max-width: 500px;
    background: var(--white-color);
    padding: 40px;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    border-top: 4px solid var(--primary-color);
}
.testimonial-content p {
    font-size: 17px;
    color: var(--dark-color);
    line-height: 1.7;
    margin-bottom: 30px;
    font-style: italic;
}
.testimonial-author {
    display: flex;
    align-items: center;
    gap: 15px;
}
.author-avatar {
    width: 60px;
    height: 60px;
    background: var(--primary-light);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-color);
    font-size: 24px;
}
.author-info h4 {
    color: var(--dark-color);
    margin-bottom: 5px;
    font-size: 18px;
}
.author-info p {
    color: var(--gray-color);
    font-size: 14px;
}
/* Booking Section */
.booking-section {
    padding: 80px 0;
    background-color: var(--light-color);
}
.booking-section h2 {
    text-align: center;
    font-size: 36px;
    color: var(--dark-color);
    margin-bottom: 15px;
    font-weight: 700;
}
.section-subtitle {
    text-align: center;
    color: var(--gray-color);
    margin-bottom: 50px;
    font-size: 18px;
}
.booking-form {
    max-width: 800px;
    margin: 0 auto;
    background: var(--white-color);
    padding: 50px;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}
.form-row {
    display: flex;
    gap: 30px;
    margin-bottom: 25px;
}
.form-group {
    flex: 1;
}
.form-group label {
    display: block;
    margin-bottom: 10px;
    font-weight: 600;
    color: var(--dark-color);
    font-size: 16px;
}
.form-group input,
.form-group select {
    width: 100%;
    padding: 15px;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    font-family: 'Poppins', sans-serif;
    font-size: 16px;
    transition: border-color 0.3s;
    background-color: var(--white-color);
}
.form-group input:focus,
.form-group select:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(157, 65, 164, 0.1);
}
/* Footer */
.footer {
    background-color: var(--dark-color);
    color: var(--white-color);
    padding: 70px 0 30px;
}
.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 50px;
    margin-bottom: 50px;
}
.footer-column .logo {
    color: var(--white-color);
    margin-bottom: 20px;
}
.footer-column .logo i {
    color: var(--white-color);
}
.footer-column p {
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 25px;
    font-size: 16px;
    line-height: 1.7;
}
.footer-column h3 {
    font-size: 20px;
    margin-bottom: 25px;
    color: var(--white-color);
}
.footer-column a {
    display: block;
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    margin-bottom: 12px;
    transition: color 0.3s;
    font-size: 16px;
}
.footer-column a:hover {
    color: var(--primary-color);
}
.social-icons {
    display: flex;
    gap: 15px;
    margin-top: 20px;
}
.social-icon {
    width: 40px;
    height: 40px;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white-color);
    text-decoration: none;
    transition: all 0.3s;
    font-size: 18px;
}
.social-icon:hover {
    background-color: var(--primary-color);
    transform: translateY(-3px);
}
.contact-info {
    display: flex;
    flex-direction: column;
    gap: 20px;
}
.contact-item {
    display: flex;
    gap: 15px;
    align-items: flex-start;
}
.contact-item i {
    color: var(--primary-color);
    font-size: 18px;
    margin-top: 4px;
}
.contact-item span {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
}
.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.6);
    font-size: 14px;
}
/* Responsive Design */
@media (max-width: 992px) {
    .steps {
        gap: 30px;
    }
    
    .step {
        min-width: 280px;
    }
    
    .hero h1 {
        font-size: 36px;
    }
    
    .how-it-works h2,
    .testimonials h2,
    .booking-section h2 {
        font-size: 32px;
    }
}
@media (max-width: 768px) {
    .nav-links {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: var(--white-color);
        flex-direction: column;
        padding: 20px;
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
        gap: 15px;
    }
    
    .nav-links.show {
        display: flex;
    }
    
    .nav-links a {
        padding: 10px 0;
        border-bottom: 1px solid #eee;
    }
    
    .menu-toggle {
        display: block;
    }
    
    .form-row {
        flex-direction: column;
        gap: 0;
    }
    
    .form-group {
        margin-bottom: 20px;
    }
    
    .hero {
        padding: 80px 0;
    }
    
    .hero h1 {
        font-size: 32px;
    }
    
    .hero p {
        font-size: 17px;
    }
    
    .booking-form {
        padding: 30px;
    }
    
    .how-it-works,
    .testimonials,
    .booking-section {
        padding: 60px 0;
    }
}
@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }
    
    .hero {
        padding: 60px 0;
    }
    
    .hero h1 {
        font-size: 28px;
    }
    
    .hero-btn,
    .steps-btn,
    .submit-btn {
        padding: 14px 28px;
        font-size: 16px;
    }
    
    .step {
        padding: 25px;
    }
    
    .testimonial-card {
        padding: 25px;
    }
    
    .footer {
        padding: 50px 0 25px;
    }
    
    .footer-content {
        gap: 40px;
    }
}





/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
:root {
    --primary-color: #9D41A4;
    --primary-dark: #7D3283;
    --primary-light: #E8D0EA;
    --dark-color: #333333;
    --light-color: #f8f9fa;
    --gray-color: #777777;
    --white-color: #ffffff;
}
body {
    font-family: 'Poppins', sans-serif;
    line-height: 1.6;
    color: var(--dark-color);
    background-color: var(--white-color);
}
.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}
/* Header */
.header {
    background-color: var(--white-color);
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.08);
    position: sticky;
    top: 0;
    z-index: 100;
}
.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 0;
}
.logo {
    display: flex;
    align-items: center;
    text-decoration: none;
    font-size: 24px;
    font-weight: 700;
    color: var(--dark-color);
}
.logo i {
    color: var(--primary-color);
    margin-right: 10px;
    font-size: 28px;
}
.nav-links {
    display: flex;
    gap: 30px;
}
.nav-links a {
    text-decoration: none;
    color: var(--gray-color);
    font-weight: 500;
    transition: color 0.3s;
    font-size: 16px;
}
.nav-links a:hover,
.nav-links a.active {
    color: var(--primary-color);
}
/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 28px;
    background-color: var(--primary-color);
    color: var(--white-color);
    text-decoration: none;
    border-radius: 8px;
    font-weight: 600;
    border: none;
    cursor: pointer;
    transition: all 0.3s;
    font-size: 16px;
}
.btn:hover {
    background-color: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 6px 15px rgba(157, 65, 164, 0.3);
}
.book-btn {
    padding: 10px 22px;
    font-size: 15px;
}
.hero-btn {
    font-size: 18px;
    padding: 16px 36px;
}
.steps-btn {
    font-size: 18px;
    padding: 16px 36px;
}
.submit-btn {
    font-size: 18px;
    padding: 16px 40px;
    display: block;
    margin: 30px auto 0;
}
.menu-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 24px;
    color: var(--primary-color);
    cursor: pointer;
}
/* Hero Section */
.hero {
    background: linear-gradient(rgba(255, 255, 255, 0.95), rgba(255, 255, 255, 0.98)), 
                url('https://images.unsplash.com/photo-1582735689369-6d6152993e1f?ixlib=rb-4.0.3&auto=format&fit=crop&w=1600&q=80');
    background-size: cover;
    background-position: center;
    padding: 100px 0;
    text-align: center;
}
.hero-content {
    max-width: 800px;
    margin: 0 auto;
}
.hero h1 {
    font-size: 42px;
    margin-bottom: 20px;
    font-weight: 700;
    color: var(--dark-color);
    line-height: 1.2;
}
.hero p {
    font-size: 18px;
    margin-bottom: 40px;
    color: var(--gray-color);
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}
/* How It Works */
.how-it-works {
    padding: 80px 0;
    background-color: var(--light-color);
}
.how-it-works h2 {
    text-align: center;
    font-size: 36px;
    color: var(--dark-color);
    margin-bottom: 60px;
    font-weight: 700;
}
.steps {
    display: flex;
    justify-content: center;
    gap: 40px;
    margin-bottom: 60px;
    flex-wrap: wrap;
}
.step {
    flex: 1;
    min-width: 300px;
    max-width: 350px;
    background: var(--white-color);
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
    text-align: center;
    position: relative;
    transition: transform 0.3s;
}
.step:hover {
    transform: translateY(-5px);
}
.step-number {
    width: 50px;
    height: 50px;
    background: var(--primary-color);
    color: var(--white-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    font-weight: 700;
    margin: 0 auto 25px;
}
.step-content h3 {
    color: var(--dark-color);
    margin-bottom: 15px;
    font-size: 22px;
}
.step-content p {
    color: var(--gray-color);
    font-size: 16px;
}
.steps-cta {
    text-align: center;
}
/* Testimonials */
.testimonials {
    padding: 80px 0;
    background-color: var(--white-color);
}
.testimonials h2 {
    text-align: center;
    font-size: 36px;
    color: var(--dark-color);
    margin-bottom: 60px;
    font-weight: 700;
}
.testimonial-grid {
    display: flex;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
}
.testimonial-card {
    flex: 1;
    min-width: 300px;
    max-width: 500px;
    background: var(--white-color);
    padding: 40px;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    border-top: 4px solid var(--primary-color);
}
.testimonial-content p {
    font-size: 17px;
    color: var(--dark-color);
    line-height: 1.7;
    margin-bottom: 30px;
    font-style: italic;
}
.testimonial-author {
    display: flex;
    align-items: center;
    gap: 15px;
}
.author-avatar {
    width: 60px;
    height: 60px;
    background: var(--primary-light);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-color);
    font-size: 24px;
}
.author-info h4 {
    color: var(--dark-color);
    margin-bottom: 5px;
    font-size: 18px;
}
.author-info p {
    color: var(--gray-color);
    font-size: 14px;
}
/* Booking Section */
.booking-section {
    padding: 80px 0;
    background-color: var(--light-color);
}
.booking-section h2 {
    text-align: center;
    font-size: 36px;
    color: var(--dark-color);
    margin-bottom: 15px;
    font-weight: 700;
}
.section-subtitle {
    text-align: center;
    color: var(--gray-color);
    margin-bottom: 50px;
    font-size: 18px;
}
.booking-form {
    max-width: 800px;
    margin: 0 auto;
    background: var(--white-color);
    padding: 50px;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}
.form-row {
    display: flex;
    gap: 30px;
    margin-bottom: 25px;
}
.form-group {
    flex: 1;
}
.form-group label {
    display: block;
    margin-bottom: 10px;
    font-weight: 600;
    color: var(--dark-color);
    font-size: 16px;
}
.form-group input,
.form-group select {
    width: 100%;
    padding: 15px;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    font-family: 'Poppins', sans-serif;
    font-size: 16px;
    transition: border-color 0.3s;
    background-color: var(--white-color);
}
.form-group input:focus,
.form-group select:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(157, 65, 164, 0.1);
}
/* Footer */
.footer {
    background-color: var(--dark-color);
    color: var(--white-color);
    padding: 70px 0 30px;
}
.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 50px;
    margin-bottom: 50px;
}
.footer-column .logo {
    color: var(--white-color);
    margin-bottom: 20px;
}
.footer-column .logo i {
    color: var(--white-color);
}
.footer-column p {
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 25px;
    font-size: 16px;
    line-height: 1.7;
}
.footer-column h3 {
    font-size: 20px;
    margin-bottom: 25px;
    color: var(--white-color);
}
.footer-column a {
    display: block;
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    margin-bottom: 12px;
    transition: color 0.3s;
    font-size: 16px;
}
.footer-column a:hover {
    color: var(--primary-color);
}
.social-icons {
    display: flex;
    gap: 15px;
    margin-top: 20px;
}
.social-icon {
    width: 40px;
    height: 40px;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white-color);
    text-decoration: none;
    transition: all 0.3s;
    font-size: 18px;
}
.social-icon:hover {
    background-color: var(--primary-color);
    transform: translateY(-3px);
}
.contact-info {
    display: flex;
    flex-direction: column;
    gap: 20px;
}
.contact-item {
    display: flex;
    gap: 15px;
    align-items: flex-start;
}
.contact-item i {
    color: var(--primary-color);
    font-size: 18px;
    margin-top: 4px;
}
.contact-item span {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
}
.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.6);
    font-size: 14px;
}
/* Responsive Design */
@media (max-width: 992px) {
    .steps {
        gap: 30px;
    }
    
    .step {
        min-width: 280px;
    }
    
    .hero h1 {
        font-size: 36px;
    }
    
    .how-it-works h2,
    .testimonials h2,
    .booking-section h2 {
        font-size: 32px;
    }
}
@media (max-width: 768px) {
    .nav-links {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: var(--white-color);
        flex-direction: column;
        padding: 20px;
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
        gap: 15px;
    }
    
    .nav-links.show {
        display: flex;
    }
    
    .nav-links a {
        padding: 10px 0;
        border-bottom: 1px solid #eee;
    }
    
    .menu-toggle {
        display: block;
    }
    
    .form-row {
        flex-direction: column;
        gap: 0;
    }
    
    .form-group {
        margin-bottom: 20px;
    }
    
    .hero {
        padding: 80px 0;
    }
    
    .hero h1 {
        font-size: 32px;
    }
    
    .hero p {
        font-size: 17px;
    }
    
    .booking-form {
        padding: 30px;
    }
    
    .how-it-works,
    .testimonials,
    .booking-section {
        padding: 60px 0;
    }
}
@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }
    
    .hero {
        padding: 60px 0;
    }
    
    .hero h1 {
        font-size: 28px;
    }
    
    .hero-btn,
    .steps-btn,
    .submit-btn {
        padding: 14px 28px;
        font-size: 16px;
    }
    
    .step {
        padding: 25px;
    }
    
    .testimonial-card {
        padding: 25px;
    }
    
    .footer {
        padding: 50px 0 25px;
    }
    
    .footer-content {
        gap: 40px;
    }
}
/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
:root {
    --primary-color: #9D41A4;
    --primary-dark: #7D3283;
    --primary-light: #E8D0EA;
    --dark-color: #333333;
    --light-color: #f8f9fa;
    --gray-color: #777777;
    --white-color: #ffffff;
}
body {
    font-family: 'Poppins', sans-serif;
    line-height: 1.6;
    color: var(--dark-color);
    background-color: var(--white-color);
}
.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}
/* Header */
.header {
    background-color: var(--white-color);
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.08);
    position: sticky;
    top: 0;
    z-index: 100;
}
.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 0;
}
.logo {
    display: flex;
    align-items: center;
    text-decoration: none;
    font-size: 24px;
    font-weight: 700;
    color: var(--dark-color);
}
.logo i {
    color: var(--primary-color);
    margin-right: 10px;
    font-size: 28px;
}
.nav-links {
    display: flex;
    gap: 30px;
}
.nav-links a {
    text-decoration: none;
    color: var(--gray-color);
    font-weight: 500;
    transition: color 0.3s;
    font-size: 16px;
}
.nav-links a:hover,
.nav-links a.active {
    color: var(--primary-color);
}
/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 28px;
    background-color: var(--primary-color);
    color: var(--white-color);
    text-decoration: none;
    border-radius: 8px;
    font-weight: 600;
    border: none;
    cursor: pointer;
    transition: all 0.3s;
    font-size: 16px;
}
.btn:hover {
    background-color: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 6px 15px rgba(157, 65, 164, 0.3);
}
.book-btn {
    padding: 10px 22px;
    font-size: 15px;
}
.hero-btn {
    font-size: 18px;
    padding: 16px 36px;
}
.steps-btn {
    font-size: 18px;
    padding: 16px 36px;
}
.submit-btn {
    font-size: 18px;
    padding: 16px 40px;
    display: block;
    margin: 30px auto 0;
}
.menu-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 24px;
    color: var(--primary-color);
    cursor: pointer;
}
/* Hero Section */
.hero {
    background: linear-gradient(rgba(255, 255, 255, 0.95), rgba(255, 255, 255, 0.98)), 
                url('https://images.unsplash.com/photo-1582735689369-6d6152993e1f?ixlib=rb-4.0.3&auto=format&fit=crop&w=1600&q=80');
    background-size: cover;
    background-position: center;
    padding: 100px 0;
    text-align: center;
}
.hero-content {
    max-width: 800px;
    margin: 0 auto;
}
.hero h1 {
    font-size: 42px;
    margin-bottom: 20px;
    font-weight: 700;
    color: var(--dark-color);
    line-height: 1.2;
}
.hero p {
    font-size: 18px;
    margin-bottom: 40px;
    color: var(--gray-color);
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}
/* How It Works */
.how-it-works {
    padding: 80px 0;
    background-color: var(--light-color);
}
.how-it-works h2 {
    text-align: center;
    font-size: 36px;
    color: var(--dark-color);
    margin-bottom: 60px;
    font-weight: 700;
}
.steps {
    display: flex;
    justify-content: center;
    gap: 40px;
    margin-bottom: 60px;
    flex-wrap: wrap;
}
.step {
    flex: 1;
    min-width: 300px;
    max-width: 350px;
    background: var(--white-color);
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
    text-align: center;
    position: relative;
    transition: transform 0.3s;
}
.step:hover {
    transform: translateY(-5px);
}
.step-number {
    width: 50px;
    height: 50px;
    background: var(--primary-color);
    color: var(--white-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    font-weight: 700;
    margin: 0 auto 25px;
}
.step-content h3 {
    color: var(--dark-color);
    margin-bottom: 15px;
    font-size: 22px;
}
.step-content p {
    color: var(--gray-color);
    font-size: 16px;
}
.steps-cta {
    text-align: center;
}
/* Testimonials */
.testimonials {
    padding: 80px 0;
    background-color: var(--white-color);
}
.testimonials h2 {
    text-align: center;
    font-size: 36px;
    color: var(--dark-color);
    margin-bottom: 60px;
    font-weight: 700;
}
.testimonial-grid {
    display: flex;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
}
.testimonial-card {
    flex: 1;
    min-width: 300px;
    max-width: 500px;
    background: var(--white-color);
    padding: 40px;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    border-top: 4px solid var(--primary-color);
}
.testimonial-content p {
    font-size: 17px;
    color: var(--dark-color);
    line-height: 1.7;
    margin-bottom: 30px;
    font-style: italic;
}
.testimonial-author {
    display: flex;
    align-items: center;
    gap: 15px;
}
.author-avatar {
    width: 60px;
    height: 60px;
    background: var(--primary-light);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-color);
    font-size: 24px;
}
.author-info h4 {
    color: var(--dark-color);
    margin-bottom: 5px;
    font-size: 18px;
}
.author-info p {
    color: var(--gray-color);
    font-size: 14px;
}
/* Booking Section */
.booking-section {
    padding: 80px 0;
    background-color: var(--light-color);
}
.booking-section h2 {
    text-align: center;
    font-size: 36px;
    color: var(--dark-color);
    margin-bottom: 15px;
    font-weight: 700;
}
.section-subtitle {
    text-align: center;
    color: var(--gray-color);
    margin-bottom: 50px;
    font-size: 18px;
}
.booking-form {
    max-width: 800px;
    margin: 0 auto;
    background: var(--white-color);
    padding: 50px;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}
.form-row {
    display: flex;
    gap: 30px;
    margin-bottom: 25px;
}
.form-group {
    flex: 1;
}
.form-group label {
    display: block;
    margin-bottom: 10px;
    font-weight: 600;
    color: var(--dark-color);
    font-size: 16px;
}
.form-group input,
.form-group select {
    width: 100%;
    padding: 15px;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    font-family: 'Poppins', sans-serif;
    font-size: 16px;
    transition: border-color 0.3s;
    background-color: var(--white-color);
}
.form-group input:focus,
.form-group select:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(157, 65, 164, 0.1);
}
/* Footer */
.footer {
    background-color: var(--dark-color);
    color: var(--white-color);
    padding: 70px 0 30px;
}
.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 50px;
    margin-bottom: 50px;
}
.footer-column .logo {
    color: var(--white-color);
    margin-bottom: 20px;
}
.footer-column .logo i {
    color: var(--white-color);
}
.footer-column p {
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 25px;
    font-size: 16px;
    line-height: 1.7;
}
.footer-column h3 {
    font-size: 20px;
    margin-bottom: 25px;
    color: var(--white-color);
}
.footer-column a {
    display: block;
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    margin-bottom: 12px;
    transition: color 0.3s;
    font-size: 16px;
}
.footer-column a:hover {
    color: var(--primary-color);
}
.social-icons {
    display: flex;
    gap: 15px;
    margin-top: 20px;
}
.social-icon {
    width: 40px;
    height: 40px;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white-color);
    text-decoration: none;
    transition: all 0.3s;
    font-size: 18px;
}
.social-icon:hover {
    background-color: var(--primary-color);
    transform: translateY(-3px);
}
.contact-info {
    display: flex;
    flex-direction: column;
    gap: 20px;
}
.contact-item {
    display: flex;
    gap: 15px;
    align-items: flex-start;
}
.contact-item i {
    color: var(--primary-color);
    font-size: 18px;
    margin-top: 4px;
}
.contact-item span {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
}
.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.6);
    font-size: 14px;
}
/* Responsive Design */
@media (max-width: 992px) {
    .steps {
        gap: 30px;
    }
    
    .step {
        min-width: 280px;
    }
    
    .hero h1 {
        font-size: 36px;
    }
    
    .how-it-works h2,
    .testimonials h2,
    .booking-section h2 {
        font-size: 32px;
    }
}
@media (max-width: 768px) {
    .nav-links {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: var(--white-color);
        flex-direction: column;
        padding: 20px;
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
        gap: 15px;
    }
    
    .nav-links.show {
        display: flex;
    }
    
    .nav-links a {
        padding: 10px 0;
        border-bottom: 1px solid #eee;
    }
    
    .menu-toggle {
        display: block;
    }
    
    .form-row {
        flex-direction: column;
        gap: 0;
    }
    
    .form-group {
        margin-bottom: 20px;
    }
    
    .hero {
        padding: 80px 0;
    }
    
    .hero h1 {
        font-size: 32px;
    }
    
    .hero p {
        font-size: 17px;
    }
    
    .booking-form {
        padding: 30px;
    }
    
    .how-it-works,
    .testimonials,
    .booking-section {
        padding: 60px 0;
    }
}
@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }
    
    .hero {
        padding: 60px 0;
    }
    
    .hero h1 {
        font-size: 28px;
    }
    
    .hero-btn,
    .steps-btn,
    .submit-btn {
        padding: 14px 28px;
        font-size: 16px;
    }
    
    .step {
        padding: 25px;
    }
    
    .testimonial-card {
        padding: 25px;
    }
    
    .footer {
        padding: 50px 0 25px;
    }
    
    .footer-content {
        gap: 40px;
    }
}

