/* CSS Reset and Normalization */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* CSS Custom Properties with Fallbacks */
:root {
    --primary: #ffcc00;
    --primary-rgb: 255, 204, 0;
    --secondary: #333;
    --secondary-rgb: 51, 51, 51;
    --accent: #0066cc;
    --accent-rgb: 0, 102, 204;
    --light: #f8f9fa;
    --dark: #212529;
    --success: #28a745;
    --danger: #dc3545;
    --white: #ffffff;
    --shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

/* Base Styles */
body {
    background-color: var(--light);
    color: var(--dark);
    line-height: 1.6;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
}

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

header {
    background-color: var(--primary);
    padding: 1rem;
    position: sticky;
    top: 0;
    z-index: 100;
    box-shadow: var(--shadow);
}

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

.logo {
    font-size: 1.8rem;
    font-weight: bold;
    color: var(--dark);
    text-decoration: none;
}

.nav-links {
    display: flex;
    list-style: none;
}

.nav-links li {
    margin-left: 1.5rem;
}

.nav-links a {
    color: var(--dark);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s;
    padding: 0.5rem 1rem;
    border-radius: 4px;
}

.nav-links a:hover,
.nav-links a.active {
    color: var(--accent);
    background-color: rgba(0, 0, 0, 0.05);
}

.section-title {
    text-align: center;
    margin: 3rem 0;
    font-size: 2rem;
}

/* Mobile Menu */
.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    font-size: 1.5rem;
    cursor: pointer;
    color: var(--dark);
}

@media (max-width: 992px) {
    .mobile-menu-btn {
        display: block;
    }

    .nav-links {
        display: none;
        position: fixed;
        top: 70px;
        left: 0;
        right: 0;
        background-color: var(--primary);
        padding: 1rem;
        flex-direction: column;
        align-items: center;
        box-shadow: var(--shadow);
    }

    .nav-links.active {
        display: flex;
    }

    .nav-links li {
        margin: 0.5rem 0;
        width: 100%;
        text-align: center;
    }

    .nav-links a {
        display: block;
        padding: 0.8rem;
    }
}

/* Mobile Bottom Navigation */
.mobile-bottom-nav {
    display: none;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--primary);
    padding: 0.8rem 0;
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.1);
    z-index: 1000;
}

.mobile-bottom-nav ul {
    display: flex;
    justify-content: space-around;
    list-style: none;
    margin: 0;
    padding: 0;
}

.mobile-bottom-nav a {
    color: var(--dark);
    text-decoration: none;
    font-size: 0.9rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.3rem;
    transition: color 0.3s ease;
}

.mobile-bottom-nav a.active {
    color: var(--accent);
    font-weight: 600;
}

.mobile-bottom-nav i {
    font-size: 1.2rem;
}

@media (max-width: 992px) {
    body {
        padding-bottom: 70px;
    }

    .mobile-bottom-nav {
        display: block;
    }
}

/* Add new media query for small height screens */
@media (max-width: 992px) and (max-height: 500px) {
    body {
        padding-bottom: 0;
    }

    .mobile-bottom-nav {
        display: none;
    }
}

/* Footer */
footer {
    background-color: var(--secondary);
    color: var(--white);
    padding: 3rem 0;
    margin-top: 4rem;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
}

.footer-column h3 {
    margin-bottom: 1.5rem;
    color: var(--primary);
}

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

.footer-column li {
    margin-bottom: 0.8rem;
}

.footer-column a {
    color: var(--light);
    text-decoration: none;
    transition: color 0.3s;
}

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

.copyright {
    text-align: center;
    margin-top: 2rem;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

/* Hero Section */
.hero {
    background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url('https://images.unsplash.com/photo-1449965408869-eaa3f722e40d?ixlib=rb-1.2.1&auto=format&fit=crop&w=1350&q=80');
    background-size: cover;
    background-position: center;
    color: var(--white);
    padding: 5rem 0;
    text-align: center;
    margin-bottom: 0;
}

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

.hero p {
    font-size: 1.2rem;
    max-width: 800px;
    margin: 0 auto 2rem;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 0.8rem 1.5rem;
    background-color: var(--primary);
    color: var(--dark);
    text-decoration: none;
    border-radius: 4px;
    font-weight: bold;
    transition: all 0.3s;
    cursor: pointer;
    border: none;
}

.btn:hover {
    background-color: #e6b800;
    transform: translateY(-2px);
    box-shadow: var(--shadow);
}

.btn-secondary {
    background-color: var(--accent);
    color: var(--white);
}

.btn-secondary:hover {
    background-color: #0055aa;
}

/* Trust Indicators */
.trust-indicators {
    background-color: var(--white);
    padding: 2rem 0;
    margin-top: -2rem;
    position: relative;
    z-index: 2;
    box-shadow: var(--shadow);
}

.trust-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    text-align: center;
}

.trust-item {
    padding: 1.5rem;
    background-color: var(--light);
    border-radius: 8px;
    transition: transform 0.3s;
}

.trust-item:hover {
    transform: translateY(-5px);
}

.trust-item-link {
    text-decoration: none;
    color: inherit;
    display: block;
}

.trust-item-link:hover {
    color: inherit;
}

.trust-icon {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    display: block;
    color: var(--accent);
    height: 40px;
    line-height: 40px;
}

.trust-item h3 {
    color: var(--accent);
    margin-bottom: 0.5rem;
    font-size: 1.5rem;
}

.trust-item p {
    color: var(--secondary);
    font-size: 1rem;
}

/* Google Rating */
.google-rating {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
}

.google-stars {
    color: #fbbc04;
    font-size: 1.5rem;
    display: flex;
    gap: 0.2rem;
}

.google-rating-number {
    font-size: 2rem;
    font-weight: bold;
    color: var(--dark);
}

.google-reviews-link {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    text-decoration: none;
    color: #4285f4;
    font-size: 0.9rem;
    padding: 0.5rem 1rem;
    border-radius: 4px;
    background-color: rgba(66, 133, 244, 0.1);
    transition: all 0.3s ease;
}

.google-reviews-link:hover {
    background-color: rgba(66, 133, 244, 0.2);
}

.google-reviews-link i {
    font-size: 1.2rem;
}

/* Features Section */
.features {
    background-color: var(--light);
    padding: 2rem 0 4rem 0;
}

/* Guarantee Section */
.guarantee {
    background-color: var(--white);
    padding: 4rem 0;
    padding-top: 1rem;
    margin-bottom: 2rem;
    margin-top: 0;
    border-top: 1px solid rgba(0, 0, 0, 0.05);
}

.guarantee-items {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.guarantee-item {
    background-color: var(--light);
    padding: 2rem;
    border-radius: 8px;
    box-shadow: var(--shadow);
    text-align: center;
    transition: transform 0.3s, box-shadow 0.3s;
}

.guarantee-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.guarantee-item h3 {
    color: var(--accent);
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

.guarantee-item p {
    color: var(--dark);
    font-size: 1.1rem;
}

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

.feature-card {
    background-color: var(--white);
    padding: 2rem;
    border-radius: 8px;
    box-shadow: var(--shadow);
    transition: transform 0.3s;
}

.feature-card:hover {
    transform: translateY(-5px);
}

.feature-card h3 {
    margin-bottom: 1rem;
    color: var(--accent);
}

.feature-card ul {
    list-style-position: inside;
    margin-left: 1rem;
}

.feature-card li {
    margin-bottom: 0.5rem;
}

/* Booking Section */
.booking {
    background-color: var(--light);
    padding: 4rem 0 2rem 0;
}

.booking-cta {
    background-color: var(--white);
    padding: 3rem;
    border-radius: 16px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    max-width: 900px;
    margin: 0 auto;
    position: relative;
    overflow: hidden;
}

.booking-cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary) 0%, var(--accent) 100%);
}

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

.booking .section-title {
    color: var(--dark);
    margin-bottom: 1rem;
    font-size: 2.5rem;
}

.cta-text {
    font-size: 1.3rem;
    margin-bottom: 2.5rem;
    color: var(--secondary);
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.cta-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
    margin-bottom: 3rem;
    padding: 0 1rem;
}

.cta-feature {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    font-size: 1.1rem;
    padding: 1rem;
    background: var(--light);
    border-radius: 8px;
    transition: transform 0.3s ease;
}

.cta-feature:hover {
    transform: translateY(-3px);
}

.cta-feature i {
    color: var(--success);
    font-size: 1.3rem;
}

.cta-actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.btn-large {
    font-size: 1.2rem;
    padding: 1rem 2rem;
    min-width: 200px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    transition: all 0.3s ease;
}

.btn-primary {
    background-color: var(--accent);
    color: var(--white);
    border: none;
}

.btn-primary:hover {
    background-color: #0052a3;
    transform: translateY(-2px);
}

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

.btn-outline:hover {
    background-color: var(--accent);
    color: var(--white);
    transform: translateY(-2px);
}

/* FAQ Section */
.faq {
    background-color: var(--white);
    padding: 4rem 0;
}

.faq-grid {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    margin-bottom: 1rem;
    border: 1px solid #eee;
    border-radius: 8px;
    overflow: hidden;
    transition: box-shadow 0.3s ease;
}

.faq-item:hover {
    box-shadow: var(--shadow);
}

.faq-item.active {
    box-shadow: var(--shadow);
}

.faq-question {
    width: 100%;
    padding: 1.5rem;
    background: none;
    border: none;
    text-align: left;
    font-size: 1.1rem;
    font-weight: 500;
    color: var(--dark);
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: all 0.3s ease;
    position: relative;
}

.faq-question:hover {
    background-color: var(--light);
}

.faq-question::after {
    content: '+';
    font-size: 1.5rem;
    color: var(--accent);
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    transform-origin: center;
}

.faq-item.active .faq-question {
    background-color: var(--light);
    border-bottom: 1px solid #eee;
}

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

.faq-answer {
    padding: 0;
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    transform: translateY(-10px);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.faq-item.active .faq-answer {
    padding: 1.5rem;
    max-height: 1000px;
    opacity: 1;
    transform: translateY(0);
}

.faq-answer p {
    margin-bottom: 1rem;
}

.faq-answer ul {
    list-style-type: disc;
    margin-left: 1.5rem;
    margin-bottom: 1rem;
}

.faq-answer li {
    margin-bottom: 0.5rem;
}

/* Price List Styles */
.price-list {
    padding: 2rem 0;
}

.price-list-nav {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 2rem;
    flex-wrap: wrap;
}

.price-nav-btn {
    padding: 0.75rem 1.5rem;
    border: 2px solid var(--primary);
    background: transparent;
    color: var(--primary);
    border-radius: 25px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-weight: 600;
    font-size: 1rem;
}

.price-nav-btn:hover,
.price-nav-btn.active {
    background: var(--primary);
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.price-section {
    display: none;
    animation: fadeIn 0.3s ease;
}

.price-section.active {
    display: block;
}

.price-search {
    margin-bottom: 2rem;
}

.price-search input {
    width: 100%;
    max-width: 500px;
    margin: 0 auto;
    display: block;
    padding: 0.75rem 1rem;
    border: 2px solid #ddd;
    border-radius: 25px;
    font-size: 1rem;
    transition: border-color 0.3s ease;
}

.price-search input:focus {
    border-color: var(--primary);
    outline: none;
}

.price-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.price-category {
    background: white;
    padding: 1.5rem;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.price-category:hover {
    transform: translateY(-5px);
}

.price-category h3 {
    color: var(--primary);
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

.price-category ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.price-category li {
    padding: 0.5rem 0;
    border-bottom: 1px solid #eee;
}

.price-category li:last-child {
    border-bottom: none;
}

.price-table {
    overflow-x: auto;
    margin-bottom: 2rem;
}

.price-table table {
    width: 100%;
    border-collapse: collapse;
    background: white;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.price-table th,
.price-table td {
    padding: 1rem;
    text-align: left;
    border-bottom: 1px solid #eee;
}

.price-table th {
    background: var(--primary);
    color: white;
    font-weight: 600;
}

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

.price-table tr:hover td {
    background: #f9f9f9;
}

.extra-services {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 2rem;
}

.extra-service-item {
    background: white;
    padding: 1.5rem;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.extra-service-item:hover {
    transform: translateY(-5px);
}

.extra-service-item h3 {
    color: var(--primary);
    margin-bottom: 0.5rem;
    font-size: 1.25rem;
}

.extra-service-item p {
    color: #666;
    margin: 0;
}

.price-notes {
    margin-top: 2rem;
    padding: 1.5rem;
    background-color: var(--light);
    border-radius: 8px;
    text-align: center;
}

.price-notes p {
    margin-bottom: 0.5rem;
}

.price-notes p:last-child {
    margin-bottom: 0;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Popular Destinations */
.popular-destinations {
    margin-bottom: 4rem;
}

.subsection-title {
    text-align: center;
    margin-bottom: 2rem;
    font-size: 1.5rem;
    color: var(--secondary);
}

.popular-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.popular-card {
    background: white;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    text-align: center;
    transition: transform 0.3s ease;
}

.popular-card:hover {
    transform: translateY(-5px);
}

.popular-card h4 {
    color: var(--primary);
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.popular-card .price {
    font-size: 2rem;
    font-weight: bold;
    color: var(--accent);
    margin-bottom: 0.5rem;
}

.popular-card p {
    color: #666;
    margin-bottom: 1.5rem;
}

.popular-card .btn {
    width: 100%;
    margin-top: 1rem;
}

/* Form Styles */
.form-group {
    margin-bottom: 1.5rem;
}

.booking-form {
    max-width: 800px;
    margin: 0 auto;
    background-color: var(--white);
    padding: 2.5rem;
    border-radius: 8px;
    box-shadow: var(--shadow);
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 500;
}

.form-control {
    width: 100%;
    padding: 0.8rem;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 1rem;
}

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

.error {
    border-color: var(--danger) !important;
    background-color: rgba(220, 53, 69, 0.1) !important;
}

/* Responsive Styles */
@media (max-width: 992px) {
    .hero h1 {
        font-size: 2rem;
    }

    .hero p {
        font-size: 1rem;
    }

    .booking-cta {
        padding: 2rem 1rem;
    }

    .booking .section-title {
        font-size: 2rem;
    }

    .cta-text {
        font-size: 1.1rem;
        margin-bottom: 2rem;
    }

    .cta-features {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .cta-feature {
        justify-content: flex-start;
    }

    .cta-actions {
        flex-direction: column;
    }

    .btn-large {
        width: 100%;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .price-list-nav {
        flex-direction: column;
        align-items: stretch;
        gap: 0.5rem;
    }

    .price-nav-btn {
        width: 100%;
        padding: 0.8rem 1rem;
        font-size: 0.95rem;
    }

    .price-grid {
        grid-template-columns: 1fr;
    }

    .extra-services {
        grid-template-columns: 1fr;
    }

    .price-table {
        margin: 0 -1rem;
        border-radius: 0;
    }

    .price-table table {
        border-radius: 0;
    }

    .popular-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .popular-card {
        padding: 1.5rem;
    }
}

/* Contact Page Styles */
.contact-section {
    background-color: var(--white);
    padding: 4rem 0;
    margin: 2rem 0;
}

.contact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.contact-card {
    background-color: var(--light);
    padding: 2.5rem 2rem;
    border-radius: 8px;
    box-shadow: var(--shadow);
    text-align: center;
    transition: transform 0.3s, box-shadow 0.3s;
}

.contact-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.contact-icon {
    font-size: 2.5rem;
    color: var(--accent);
    margin-bottom: 1.5rem;
    display: block;
}

.contact-card h3 {
    color: var(--accent);
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

.contact-card p {
    color: var(--dark);
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
}

.contact-card a {
    color: var(--accent);
    text-decoration: none;
    transition: color 0.3s;
}

.contact-card a:hover {
    color: var(--secondary);
    text-decoration: underline;
}

@media (max-width: 992px) {
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .contact-card {
        padding: 2rem 1.5rem;
    }
} 