:root {
    --primary-color: #3A86FF;
    --secondary-color: #FF006E;
    --accent-color: #FFBE0B;
    --dark-color: #212529;
    --light-color: #F8F9FA;
    --text-color: #333;
    --white-color: #FFFFFF;
    --gray-light: #E9ECEF;
    --gray-medium: #ADB5BD;
    --border-color: #DEE2E6;
    --font-playfair: 'Playfair Display', serif;
    --font-open-sans: 'Open Sans', sans-serif;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-open-sans);
    line-height: 1.6;
    color: var(--text-color);
    background-color: var(--white-color);
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-playfair);
    color: var(--dark-color);
    line-height: 1.2;
}

a {
    color: var(--primary-color);
    text-decoration: none;
}

a:hover {
    text-decoration: underline;
}

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

section {
    padding: 80px 0;
}

.section-title {
    font-size: 2.8em;
    text-align: center;
    margin-bottom: 20px;
    color: var(--dark-color);
}

.section-subtitle {
    font-size: 1.2em;
    text-align: center;
    margin-bottom: 60px;
    color: var(--text-color);
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.button {
    display: inline-block;
    padding: 12px 25px;
    border-radius: 5px;
    font-weight: 600;
    text-align: center;
    text-decoration: none;
    cursor: pointer;
    border: 2px solid transparent;
    transition: all 0.3s ease;
}

.button-primary {
    background-color: var(--primary-color);
    color: var(--white-color);
    border-color: var(--primary-color);
}

.button-primary:hover {
    background-color: #2a6ed4;
    border-color: #2a6ed4;
    text-decoration: none;
}

.button-secondary {
    background-color: transparent;
    color: var(--primary-color);
    border-color: var(--primary-color);
}

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

.logo {
    height: 40px;
    margin-right: 10px;
}

.site-name {
    font-family: var(--font-playfair);
    font-size: 1.5em;
    font-weight: 700;
    color: var(--dark-color);
}

/* Header & Navbar */
.header {
    width: 100%;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 1000;
    background-color: var(--white-color);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    transition: background-color 0.3s ease, box-shadow 0.3s ease;
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 30px;
    max-width: 1400px;
    margin: 0 auto;
}

.navbar-brand {
    display: flex;
    align-items: center;
    text-decoration: none;
}

.nav-menu {
    list-style: none;
    display: flex;
    gap: 25px;
    margin: 0;
    padding: 0;
    align-items: center;
}

.nav-menu li a:not(.button-primary) {
    color: var(--dark-color);
    font-weight: 600;
    font-size: 1em;
    transition: color 0.3s ease;
    text-decoration: none;
}

.nav-menu li a:hover {
    color: var(--primary-color);
    text-decoration: none;
}

.nav-cta-item .button {
    padding: 8px 18px;
    font-size: 0.9em;
}

.nav-toggle {
    display: none;
    font-size: 2em;
    cursor: pointer;
    color: var(--dark-color);
}

/* Hero Section */
.hero-section {
    position: relative;
    width: 100%;
    height: 100vh;
    background-image: url(assets/content/tropical-beach-sunset_2.jpg); /* Placeholder image */
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: var(--white-color);
    padding: 20px;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 1;
}

.hero-badge-container {
    position: relative;
    z-index: 2;
    background-color: rgba(255, 255, 255, 0.15);
    border: 2px solid rgba(255, 255, 255, 0.4);
    border-radius: 15px;
    padding: 40px 60px;
    max-width: 900px;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
}

.hero-brand {
    display: flex;
    align-items: center;
    margin-bottom: 10px;
    text-decoration: none;
}

.hero-brand .logo {
    filter: brightness(0) invert(1);
}

.hero-brand .site-name {
    color: var(--white-color);
}

.hero-headline {
    font-size: 4em;
    margin-bottom: 15px;
    color: var(--white-color);
}

.hero-subheadline {
    font-size: 1.3em;
    margin-bottom: 30px;
    max-width: 700px;
    color: var(--white-color);
}

.hero-ctas {
    display: flex;
    gap: 20px;
}

.hero-ctas .button-primary {
    background-color: var(--secondary-color);
    border-color: var(--secondary-color);
}

.hero-ctas .button-primary:hover {
    background-color: #c70057;
    border-color: #c70057;
}

.hero-ctas .button-secondary {
    color: var(--white-color);
    border-color: var(--white-color);
}

.hero-ctas .button-secondary:hover {
    background-color: rgba(255, 255, 255, 0.2);
    color: var(--white-color);
}

/* What We Do Section */
.what-we-do-section {
    background-color: var(--light-color);
}

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

.service-item {
    background-color: var(--white-color);
    padding: 30px;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
    display: flex;
    flex-direction: column;
    align-items: center;
}

.service-item i {
    font-size: 3em;
    color: var(--primary-color);
    margin-bottom: 15px;
}

.service-item h3 {
    font-size: 1.5em;
    margin-bottom: 10px;
}

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

.services-closing {
    text-align: center;
    margin-top: 60px;
    font-style: italic;
    font-size: 1.1em;
    color: var(--dark-color);
}

/* How It Works Section (Timeline) */
.how-it-works-section {
    background-color: var(--white-color);
}

.timeline-container {
    position: relative;
    max-width: 900px;
    margin: 60px auto 0 auto;
    padding: 0 20px;
}

.timeline-container::after {
    content: '';
    position: absolute;
    width: 2px;
    background-color: var(--primary-color);
    top: 0;
    bottom: 0;
    left: 50%;
    margin-left: -1px;
}

.timeline-item {
    padding: 10px 40px;
    position: relative;
    background-color: inherit;
    width: 50%;
    margin-bottom: 50px;
}

.timeline-item:nth-child(odd) {
    left: 0;
}

.timeline-item:nth-child(even) {
    left: 50%;
}

.timeline-item::after {
    content: '';
    position: absolute;
    width: 25px;
    height: 25px;
    right: -14px;
    background-color: var(--primary-color);
    border: 2px solid var(--white-color);
    top: 15px;
    border-radius: 50%;
    z-index: 1;
}

.timeline-item:nth-child(even)::after {
    left: -14px;
}

.timeline-step-icon {
    position: absolute;
    width: 50px;
    height: 50px;
    background-color: var(--primary-color);
    border-radius: 50%;
    top: -30px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white-color);
    font-size: 1.8em;
    left: 50%;
    margin-left: -25px;
    z-index: 2;
    box-shadow: 0 0 0 5px var(--white-color);
}

.timeline-content {
    padding: 20px 30px;
    background-color: var(--gray-light);
    position: relative;
    border-radius: 6px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.timeline-item:nth-child(odd) .timeline-content {
    text-align: right;
}

.timeline-item:nth-child(even) .timeline-content {
    text-align: left;
}

/* Destinations Section */
.destinations-section {
    background-color: var(--light-color);
}

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

.destination-card {
    background-color: var(--white-color);
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
    cursor: pointer;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.destination-card img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    display: block;
}

.card-caption {
    padding: 20px;
    flex-grow: 1;
}

.card-caption h3 {
    font-size: 1.5em;
    margin-bottom: 10px;
}

.card-caption p {
    color: var(--text-color);
}

/* Why Choose Us Section */
.why-choose-us-section {
    background-color: var(--white-color);
}

.value-props-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    margin-top: 60px;
}

@media (max-width: 576px) {
    .value-props-grid {
  grid-template-columns: 1fr;
    }
}


.value-prop-item {
    background-color: var(--light-color);
    padding: 30px;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.03);
}

.value-prop-item i {
    font-size: 2.5em;
    color: var(--secondary-color);
    margin-bottom: 15px;
}

.value-prop-item h3 {
    font-size: 1.4em;
    margin-bottom: 10px;
}

.value-prop-item p {
    color: var(--text-color);
}

/* Testimonials Section */
.testimonials-section {
    background-color: var(--gray-light);
}

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

.testimonial-card {
    background-color: var(--white-color);
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    height: 100%;
}

.testimonial-avatar {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    object-fit: cover;
    margin-bottom: 20px;
    border: 3px solid var(--primary-color);
}

.testimonial-quote {
    font-size: 1.1em;
    font-style: italic;
    margin-bottom: 15px;
    color: var(--dark-color);
}

.testimonial-author {
    font-weight: 600;
    color: var(--primary-color);
    margin-top: auto;
}

/* FAQ Section */
.faq-section {
    background-color: var(--white-color);
}

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

.faq-item {
    border: 1px solid var(--border-color);
    border-radius: 8px;
    margin-bottom: 15px;
    overflow: hidden;
}

.faq-question {
    width: 100%;
    background-color: var(--light-color);
    border: none;
    padding: 20px 25px;
    text-align: left;
    font-size: 1.2em;
    font-weight: 600;
    color: var(--dark-color);
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

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

.faq-question i {
    transition: transform 0.3s ease;
}

.faq-question[aria-expanded="true"] i {
    transform: rotate(180deg);
}

.faq-answer {
    padding: 0 25px;
    background-color: var(--white-color);
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out, padding 0.3s ease-out;
}

.faq-answer p {
    padding: 15px 0;
    border-top: 1px solid var(--border-color);
    color: var(--text-color);
}

/* CTA Strip Section */
.cta-strip-section {
    background-image: linear-gradient(135deg, var(--primary-color) 0%, #004d99 100%);
    color: var(--white-color);
    padding: 60px 0;
    text-align: center;
}

.cta-strip-content {
    max-width: 900px;
    margin: 0 auto;
}

.cta-strip-headline {
    font-size: 2.5em;
    margin-bottom: 15px;
    color: var(--white-color);
}

.cta-strip-subheadline {
    font-size: 1.2em;
    margin-bottom: 30px;
    color: var(--white-color);
}

.cta-strip-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
}

.cta-strip-buttons .button-primary {
    background-color: var(--accent-color);
    border-color: var(--accent-color);
    color: var(--dark-color);
}

.cta-strip-buttons .button-primary:hover {
    background-color: #e6a800;
    border-color: #e6a800;
}

.cta-strip-buttons .button-secondary {
    color: var(--white-color);
    border-color: var(--white-color);
}

.cta-strip-buttons .button-secondary:hover {
    background-color: rgba(255, 255, 255, 0.2);
    color: var(--white-color);
}

/* Form Section */
.form-section {
    background-color: var(--white-color);
}

.custom-trip-form {
    max-width: 700px;
    margin: 60px auto 0 auto;
    padding: 40px;
    background-color: var(--light-color);
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
}

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

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: var(--dark-color);
}

.form-group .required {
    color: var(--secondary-color);
    margin-left: 4px;
}

.form-group input[type="text"],
.form-group input[type="email"],
.form-group input[type="tel"],
.form-group input[type="number"],
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 12px;
    border: 1px solid var(--border-color);
    border-radius: 5px;
    font-size: 1em;
    font-family: var(--font-open-sans);
    color: var(--text-color);
    background-color: var(--white-color);
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(58, 134, 255, 0.2);
}

.form-group textarea {
    resize: vertical;
}

.checkbox-group {
    display: flex;
    align-items: flex-start;
    margin-bottom: 30px;
}

.checkbox-group input[type="checkbox"] {
    margin-top: 5px;
    margin-right: 10px;
    width: 18px;
    height: 18px;
}

.checkbox-group label {
    margin-bottom: 0;
    font-weight: 400;
    line-height: 1.4;
}

.recaptcha-placeholder {
    background-color: var(--gray-medium);
    color: var(--white-color);
    padding: 15px;
    text-align: center;
    border-radius: 5px;
    margin-top: 10px;
    font-size: 0.9em;
}

.custom-trip-form .button-primary {
    width: 100%;
    padding: 15px;
    font-size: 1.1em;
}

/* Contact Section */
.contact-section {
    background-color: var(--gray-light);
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.contact-info {
    padding-right: 20px;
}

.contact-info .section-title {
    text-align: left;
}

.contact-info .section-subtitle {
    text-align: left;
    margin-left: 0;
    margin-right: 0;
    margin-bottom: 30px;
}

.contact-info p {
    margin-bottom: 10px;
    font-size: 1.1em;
}

.contact-details p {
    display: flex;
    align-items: center;
    gap: 10px;
}

.contact-details i {
    color: var(--primary-color);
    font-size: 1.2em;
}

.contact-details a {
    color: var(--text-color);
    text-decoration: none;
}

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

.map-container {
    height: 450px;
    width: 100%;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

/* Footer */
.footer {
    background-color: var(--dark-color);
    color: var(--gray-light);
    padding: 60px 0;
    font-size: 0.95em;
}

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

.footer-brand .logo {
    filter: brightness(0) invert(1);
}

.footer-brand .site-name {
    color: var(--white-color);
}

.footer-logo-link {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
    text-decoration: none;
}

.company-tagline {
    margin-top: 10px;
    margin-bottom: 15px;
}

.copyright {
    font-size: 0.85em;
    color: var(--gray-medium);
}

.footer h3 {
    color: var(--white-color);
    font-size: 1.3em;
    margin-bottom: 20px;
}

.footer ul {
    list-style: none;
    padding: 0;
}

.footer ul li {
    margin-bottom: 10px;
}

.footer ul li a {
    color: var(--gray-light);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer ul li a:hover {
    color: var(--primary-color);
    text-decoration: underline;
}

.footer-contact-cta .button-primary {
    background-color: var(--accent-color);
    border-color: var(--accent-color);
    color: var(--dark-color);
    padding: 10px 20px;
    font-size: 1em;
    margin-top: 15px;
}

.footer-contact-cta .button-primary:hover {
    background-color: #e6a800;
    border-color: #e6a800;
}

.footer-phone {
    margin-top: 20px;
    font-size: 1.1em;
}

.footer-phone a {
    color: var(--white-color);
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 8px;
}

.footer-phone a:hover {
    color: var(--primary-color);
    text-decoration: underline;
}

/* Mobile Adaptations */
@media (max-width: 992px) {
    .navbar-brand .site-name {
        font-size: 1.2em;
    }

    .nav-menu {
        display: none;
        flex-direction: column;
        position: absolute;
        top: 70px; /* Adjust based on header height */
        left: 0;
        width: 100%;
        background-color: var(--white-color);
        box-shadow: 0 5px 10px rgba(0, 0, 0, 0.1);
        padding: 20px 0;
        border-top: 1px solid var(--border-color);
    }

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

    .nav-menu li {
        text-align: center;
        margin: 10px 0;
    }

    .nav-toggle {
        display: block;
    }

    .hero-badge-container {
        padding: 30px;
        max-width: 90%;
    }

    .hero-headline {
        font-size: 3em;
    }

    .hero-subheadline {
        font-size: 1.1em;
    }

    .hero-ctas {
        flex-direction: column;
        gap: 15px;
    }

    .hero-ctas .button {
        width: 100%;
    }

    .section-title {
        font-size: 2.2em;
    }

    .section-subtitle {
        font-size: 1em;
        margin-bottom: 40px;
    }

    .timeline-container::after {
        left: 30px;
    }

    .timeline-item {
        width: 100%;
        padding-left: 60px;
        padding-right: 15px;
        left: 0 !important;
    }

    .timeline-item::after {
        display: none;
    }

    .timeline-step-icon {
        left: 10px;
        top: 30%;
    }

    .timeline-item:nth-child(odd) .timeline-content,
    .timeline-item:nth-child(even) .timeline-content {
        text-align: left;
    }

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

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

    .cta-strip-headline {
        font-size: 2em;
    }

    .cta-strip-subheadline {
        font-size: 1em;
    }

    .cta-strip-buttons {
        flex-direction: column;
    }

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

    .contact-info {
        padding-right: 0;
        text-align: center;
    }

    .contact-info .section-title,
    .contact-info .section-subtitle {
        text-align: center;
    }

    .contact-details {
        text-align: left;
        display: inline-block;
    }

    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .footer-logo-link {
        justify-content: center;
    }

    .footer h3 {
        margin-top: 30px;
    }

    .footer ul li a {
        display: block;
    }
}

@media (max-width: 768px) {
    .hero-headline {
        font-size: 2.5em;
    }
    .hero-subheadline {
        font-size: 1em;
    }
    .hero-badge-container {
        padding: 20px;
    }
    .logo {
        height: 30px;
    }
    .site-name {
        font-size: 1.1em;
    }
    .navbar {
        padding: 10px 20px;
    }
    .nav-toggle {
        font-size: 1.8em;
    }
    .section-title {
        font-size: 1.8em;
    }
    .section-subtitle {
        font-size: 0.9em;
    }
    .button {
        padding: 10px 20px;
        font-size: 0.9em;
    }
    .cta-strip-headline {
        font-size: 1.8em;
    }
    .custom-trip-form {
        padding: 25px;
    }
    .map-container {
        height: 350px;
    }
    .footer h3 {
        font-size: 1.2em;
    }
    .footer-phone a {
        justify-content: center;
    }
}
/* Styles for the main content wrapper */
.policyScopeWrap {
    padding-top: 2.5rem; /* Top padding for the content area */
    padding-left: 1.5rem; /* Left padding for the content area */
    padding-right: 1.5rem; /* Right padding for the content area */
    padding-bottom: 2.5rem; /* Bottom padding for the content area */
    /* Optional: max-width and margin auto for centering on large screens */
    /* max-width: 960px; */
    /* margin-left: auto; */
    /* margin-right: auto; */
}

/* Heading 1 styles within the policy scope */
.policyScopeWrap h1 {
    font-size: 2rem; /* Moderate font size for H1 */
    margin-top: 2.5rem; /* Top margin for spacing */
    margin-bottom: 1.5rem; /* Bottom margin for spacing */
    line-height: 1.2; /* Line height for better readability */
    color: #222; /* Darker text color */
}

/* Heading 2 styles within the policy scope */
.policyScopeWrap h2 {
    font-size: 1.75rem; /* Moderate font size for H2 */
    margin-top: 2.2rem; /* Top margin for spacing */
    margin-bottom: 1.2rem; /* Bottom margin for spacing */
    line-height: 1.2; /* Line height for better readability */
    color: #333; /* Darker text color */
}

/* Heading 3 styles within the policy scope */
.policyScopeWrap h3 {
    font-size: 1.5rem; /* Moderate font size for H3 */
    margin-top: 2rem; /* Top margin for spacing */
    margin-bottom: 1rem; /* Bottom margin for spacing */
    line-height: 1.3; /* Line height for better readability */
    color: #444; /* Darker text color */
}

/* Heading 4 styles within the policy scope */
.policyScopeWrap h4 {
    font-size: 1.25rem; /* Moderate font size for H4 */
    margin-top: 1.8rem; /* Top margin for spacing */
    margin-bottom: 0.8rem; /* Bottom margin for spacing */
    line-height: 1.4; /* Line height for better readability */
    color: #555; /* Darker text color */
}

/* Heading 5 styles within the policy scope */
.policyScopeWrap h5 {
    font-size: 1.1rem; /* Moderate font size for H5 */
    margin-top: 1.5rem; /* Top margin for spacing */
    margin-bottom: 0.6rem; /* Bottom margin for spacing */
    line-height: 1.4; /* Line height for better readability */
    color: #666; /* Darker text color */
}

/* Paragraph styles within the policy scope */
.policyScopeWrap p {
    font-size: 1rem; /* Base font size for paragraphs */
    line-height: 1.6; /* Line height for readability */
    margin-bottom: 1rem; /* Bottom margin for paragraph spacing */
    color: #444; /* Slightly lighter text color for body */
}

/* Unordered list styles within the policy scope */
.policyScopeWrap ul {
    font-size: 1rem; /* Inherit base font size */
    margin-top: 1rem; /* Top margin for list spacing */
    margin-bottom: 1rem; /* Bottom margin for list spacing */
    padding-left: 1.5rem; /* Padding for bullet points */
    list-style-type: disc; /* Default bullet style */
    color: #444; /* Text color for list items */
}

/* List item styles within the policy scope */
.policyScopeWrap li {
    margin-bottom: 0.5rem; /* Spacing between list items */
    line-height: 1.5; /* Line height for list item readability */
}
@media screen and (width < 768px) {
    .hero-section {
        height: unset;
        padding: 150px 0;
    }
}