/* CSS Variables */
:root {
    --font-sans: "Plus Jakarta Sans", sans-serif;
    --font-rounded: "Quicksand", sans-serif;

    --color-brand-main: #f27405;
    --color-brand-secondary: #009ca6;
    --color-brand-dark: #0f172a;
    --color-brand-light: #fff7ed;

    --color-text-main: #111827;
    --color-text-muted: #4b5563;
    --color-text-light: #9ca3af;
    --color-white: #ffffff;
    --color-bg-light: #f9fafb;

    --shadow-sm: 0 1px 2px 0 rgb(0 0 0 / 0.05);
    --shadow-md: 0 4px 6px -1px rgb(0 0 0 / 0.1), 0 2px 4px -2px rgb(0 0 0 / 0.1);
    --shadow-lg: 0 10px 15px -3px rgb(0 0 0 / 0.1), 0 4px 6px -4px rgb(0 0 0 / 0.1);
    --shadow-xl: 0 20px 25px -5px rgb(0 0 0 / 0.1), 0 8px 10px -6px rgb(0 0 0 / 0.1);
    --shadow-2xl: 0 25px 50px -12px rgb(0 0 0 / 0.25);

    --transition: all 0.3s ease;
}

/* Reset & Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-sans);
    color: var(--color-text-main);
    background-color: var(--color-white);
    line-height: 1.5;
    -webkit-font-smoothing: antialiased;
}

img {
    max-width: 100%;
    display: block;
}

a {
    text-decoration: none;
    color: inherit;
}

ul {
    list-style: none;
}

button {
    border: none;
    background: none;
    cursor: pointer;
    font-family: inherit;
}

.container {
    width: 100%;
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

/* Typography */
h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-rounded);
}

.text-gradient {
    color: transparent;
    background-clip: text;
    -webkit-background-clip: text;
    background-image: linear-gradient(to right, var(--color-brand-main), var(--color-brand-secondary));
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.75rem 1.5rem;
    font-weight: 700;
    border-radius: 9999px;
    transition: var(--transition);
    gap: 0.5rem;
}

.btn:active {
    transform: scale(0.95);
}

.btn-primary {
    background-color: var(--color-brand-main);
    color: var(--color-white);
    box-shadow: 0 10px 15px -3px rgba(242, 116, 5, 0.3);
}

.btn-primary:hover {
    background-color: #ea580c;
}

.btn-secondary {
    background-color: var(--color-white);
    color: var(--color-brand-dark);
    box-shadow: var(--shadow-lg);
}

.btn-secondary:hover {
    background-color: #f9fafb;
}

.btn-outline {
    border: 2px solid var(--color-brand-main);
    color: var(--color-brand-main);
    background-color: transparent;
}

.btn-outline:hover {
    background-color: var(--color-brand-main);
    color: var(--color-white);
}

.btn-whatsapp {
    background-color: #22c55e;
    color: var(--color-white);
    box-shadow: 0 10px 15px -3px rgba(34, 197, 94, 0.3);
}

.btn-whatsapp:hover {
    background-color: #16a34a;
}

.btn-sm {
    padding: 0.5rem 1.25rem;
    font-size: 0.875rem;
}

.btn-lg {
    padding: 0.75rem 2rem;
    font-size: 1.125rem;
}

.btn-full {
    width: 100%;
}

/* Navbar */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 50;
    transition: var(--transition);
    padding: 1.5rem 0;
}

.navbar.scrolled {
    background-color: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(12px);
    box-shadow: var(--shadow-sm);
    padding: 1rem 0;
}

.navbar-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo-group {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.logo-icon {
    height: 3rem;
    width: auto;
}

.logo-text {
    display: flex;
    flex-direction: column;
}

.logo-main {
    font-family: var(--font-rounded);
    font-size: 1.875rem;
    font-weight: 700;
    color: var(--color-brand-main);
    line-height: 1;
    letter-spacing: -0.025em;
}

.logo-tagline {
    font-size: 0.6rem;
    color: var(--color-brand-secondary);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-top: 0.25rem;
    display: none;
}

@media (min-width: 768px) {
    .logo-tagline {
        display: block;
    }
}

.desktop-menu {
    display: none;
    align-items: center;
    gap: 2rem;
}

@media (min-width: 768px) {
    .desktop-menu {
        display: flex;
    }
}

.nav-link {
    font-size: 0.875rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: rgba(255, 255, 255, 0.9);
    transition: var(--transition);
}

.navbar.scrolled .nav-link {
    color: var(--color-text-muted);
}

.nav-link:hover {
    color: var(--color-brand-main);
}

.navbar.scrolled .nav-link:hover {
    color: var(--color-brand-main);
}

/* Mobile Menu */
.mobile-toggle {
    display: block;
    color: var(--color-white);
}

.navbar.scrolled .mobile-toggle {
    color: var(--color-brand-dark);
}

@media (min-width: 768px) {
    .mobile-toggle {
        display: none;
    }
}

.mobile-menu {
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background-color: var(--color-white);
    padding: 2rem 1.5rem;
    box-shadow: var(--shadow-xl);
    flex-direction: column;
    gap: 1rem;
    display: none;
    animation: slideDown 0.3s ease-out;
}

.mobile-menu.active {
    display: flex;
}

@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.mobile-link {
    font-size: 1.125rem;
    font-weight: 700;
    color: var(--color-text-main);
    padding: 0.5rem 0;
    border-bottom: 1px solid #f3f4f6;
}

/* Hero Section */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding-top: 5rem;
    overflow: hidden;
    background-color: var(--color-brand-dark);
}

.hero-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.hero-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.6;
}

.hero-overlay-x {
    position: absolute;
    inset: 0;
    background: linear-gradient(to right, var(--color-brand-dark), rgba(15, 23, 42, 0.8), transparent);
}

.hero-overlay-y {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, var(--color-brand-dark), transparent);
}

.hero-content-wrapper {
    position: relative;
    z-index: 10;
    display: grid;
    gap: 3rem;
    align-items: center;
}

@media (min-width: 768px) {
    .hero-content-wrapper {
        grid-template-columns: 1fr 1fr;
    }
}

.hero-text-content {
    color: var(--color-white);
}

.hero-title {
    font-size: 3rem;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 2rem;
}

@media (min-width: 768px) {
    .hero-title {
        font-size: 4.5rem;
    }
}

.hero-description {
    font-size: 1.25rem;
    color: #d1d5db;
    max-width: 32rem;
    margin-bottom: 2rem;
    line-height: 1.6;
}

.hero-social-proof {
    margin-top: 2rem;
    display: flex;
    align-items: center;
    gap: 1rem;
    font-size: 0.875rem;
    color: #9ca3af;
    font-weight: 500;
}

.avatar-group {
    display: flex;
    margin-right: 0.5rem;
}

.avatar-group img {
    width: 2.5rem;
    height: 2.5rem;
    border-radius: 50%;
    border: 2px solid var(--color-brand-dark);
    object-fit: cover;
    margin-left: -0.75rem;
}

.avatar-group img:first-child {
    margin-left: 0;
}

/* Floating Cards & Animation */
.hero-visuals {
    position: relative;
    display: none;
    height: 600px;
}

@media (min-width: 768px) {
    .hero-visuals {
        display: block;
    }
}

.blob-pulse {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 500px;
    height: 500px;
    background-color: rgba(242, 116, 5, 0.2);
    border-radius: 50%;
    filter: blur(64px);
    animation: pulse 4s infinite;
}

@keyframes pulse {

    0%,
    100% {
        opacity: 1;
        transform: translate(-50%, -50%) scale(1);
    }

    50% {
        opacity: 0.5;
        transform: translate(-50%, -50%) scale(1.1);
    }
}

.floating-card {
    position: absolute;
    width: 16rem;
    animation: float 6s ease-in-out infinite;
    z-index: 20;
    transition: var(--transition);
}

.floating-card img {
    box-shadow: var(--shadow-2xl);
    border-radius: 0.5rem;
}



@keyframes float {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-10px);
    }
}

.card-1 {
    top: 2.5rem;
    right: 2.5rem;
}

.card-2 {
    bottom: 5rem;
    left: 2.5rem;
    animation-delay: 1s;
    z-index: 30;
}

.card-img {
    width: 100%;
    height: 10rem;
    object-fit: cover;
    border-radius: 1rem;
    margin-bottom: 1rem;
}

.card-info {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.card-info h3 {
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 0.25rem;
}

.card-info p {
    font-size: 0.75rem;
    color: var(--color-text-muted);
}

.card-badge {
    padding: 0.25rem 0.5rem;
    border-radius: 0.5rem;
    font-size: 0.75rem;
    font-weight: 700;
    background-color: var(--color-brand-light);
    color: var(--color-brand-main);
}

.badge-new {
    color: var(--color-brand-secondary);
}

/* Features Section */
.features-section {
    padding: 6rem 0;
    background-color: var(--color-brand-light);
    position: relative;
}

.section-heading {
    max-width: 48rem;
    margin: 0 auto 3rem;
}

.section-heading .subtitle {
    color: var(--color-brand-secondary);
    font-weight: 700;
    text-transform: uppercase;
    font-size: 0.875rem;
    letter-spacing: 0.1em;
    display: block;
    margin-bottom: 0.5rem;
}

.section-heading .title {
    font-size: 2.25rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    color: var(--color-brand-dark);
    line-height: 1.2;
}

@media (min-width: 768px) {
    .section-heading .title {
        font-size: 3rem;
    }
}

.section-heading .description {
    font-size: 1.125rem;
    color: var(--color-text-muted);
    line-height: 1.6;
}

.section-heading-left {
    text-align: left;
    max-width: 48rem;
}

.features-grid {
    display: grid;
    gap: 2rem;
}

@media (min-width: 768px) {
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .features-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

.feature-card {
    background-color: var(--color-white);
    padding: 2rem;
    border-radius: 1.5rem;
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.05), 0 8px 10px -6px rgba(0, 0, 0, 0.01);
    border: 1px solid #f3f4f6;
    transition: var(--transition);
}

.feature-card:hover {
    transform: translateY(-0.5rem);
}

.feature-icon {
    width: 4rem;
    height: 4rem;
    border-radius: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    transform: rotate(3deg);
    transition: var(--transition);
}

.feature-card:hover .feature-icon {
    transform: rotate(0);
}

.icon-bg-1 {
    background-color: var(--color-brand-main);
    box-shadow: 0 4px 6px -1px rgba(242, 116, 5, 0.2);
}

.icon-bg-2 {
    background-color: var(--color-brand-secondary);
    box-shadow: 0 4px 6px -1px rgba(0, 156, 166, 0.2);
}

.feature-card h3 {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
    color: var(--color-brand-dark);
}

.feature-card p {
    color: var(--color-text-muted);
    font-size: 0.875rem;
    line-height: 1.6;
}

/* Destinations Section */
.destinations-section {
    padding: 6rem 0;
    background-color: var(--color-white);
}

.flex-between-end {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    align-items: flex-start;
    margin-bottom: 3rem;
}

@media (min-width: 768px) {
    .flex-between-end {
        flex-direction: row;
        align-items: flex-end;
        justify-content: space-between;
    }
}

.destinations-grid {
    display: grid;
    gap: 2rem;
}

@media (min-width: 768px) {
    .destinations-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.destination-card {
    border-radius: 1.5rem;
    overflow: hidden;
    position: relative;
    box-shadow: var(--shadow-lg);
    cursor: pointer;
    transition: var(--transition);
}

.destination-card:hover {
    box-shadow: var(--shadow-2xl);
}

.dest-img-wrapper {
    aspect-ratio: 4 / 5;
    overflow: hidden;
}

.dest-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.7s ease;
}

.destination-card:hover .dest-img {
    transform: scale(1.1);
}

.dest-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8), rgba(0, 0, 0, 0.2), transparent);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 2rem;
    color: var(--color-white);
}

.dest-tags {
    display: flex;
    gap: 0.5rem;
    margin-bottom: 0.75rem;
}

.tag {
    background-color: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(12px);
    padding: 0.25rem 0.75rem;
    border-radius: 9999px;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.dest-title {
    font-size: 1.875rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.dest-desc {
    color: #d1d5db;
    margin-bottom: 1rem;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.dest-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    padding-top: 1rem;
}

.dest-price {
    font-weight: 600;
    color: var(--color-brand-main);
}

.dest-arrow {
    background-color: var(--color-white);
    color: var(--color-black);
    padding: 0.5rem;
    border-radius: 50%;
    transition: var(--transition);
    display: flex;
    align-items: center;
    justify-content: center;
}

.destination-card:hover .dest-arrow {
    background-color: var(--color-brand-main);
    color: var(--color-white);
}

.hidden-md {
    display: none;
}

@media (min-width: 768px) {
    .hidden-md {
        display: inline-flex;
    }
}

/* Testimonials Section */
.testimonials-section {
    padding: 6rem 0;
    background-color: var(--color-brand-dark);
    color: var(--color-white);
    position: relative;
    overflow: hidden;
}

.testimonials-blob-1 {
    position: absolute;
    top: 0;
    right: 0;
    width: 16rem;
    height: 16rem;
    background-color: var(--color-brand-main);
    border-radius: 50%;
    filter: blur(100px);
    opacity: 0.2;
}

.testimonials-blob-2 {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 16rem;
    height: 16rem;
    background-color: var(--color-brand-secondary);
    border-radius: 50%;
    filter: blur(100px);
    opacity: 0.2;
}

.testimonials-grid {
    display: grid;
    gap: 2rem;
}

@media (min-width: 768px) {
    .testimonials-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.testimonial-card {
    background-color: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 2rem;
    border-radius: 1.5rem;
    transition: var(--transition);
}

.testimonial-card:hover {
    background-color: rgba(255, 255, 255, 0.1);
}

.quote-icon {
    color: var(--color-brand-main);
    opacity: 0.8;
    margin-bottom: 1.5rem;
}

.testimonial-text {
    font-size: 1.125rem;
    color: #e5e7eb;
    margin-bottom: 2rem;
    font-style: italic;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.testimonial-author img {
    width: 3rem;
    height: 3rem;
    border-radius: 50%;
    border: 2px solid var(--color-brand-main);
    object-fit: cover;
}

.testimonial-author h4 {
    font-weight: 700;
}

.author-meta {
    font-size: 0.75rem;
    color: #9ca3af;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.stars {
    color: var(--color-brand-main);
    letter-spacing: 1px;
}

/* Contact / Lead Form */
.contact-section {
    padding: 6rem 0;
    background-color: var(--color-white);
}

.contact-card {
    background-color: var(--color-brand-main);
    border-radius: 3rem;
    padding: 2rem;
    position: relative;
    overflow: hidden;
    box-shadow: 0 25px 50px -12px rgba(242, 116, 5, 0.4);
}

@media (min-width: 768px) {
    .contact-card {
        padding: 4rem;
    }
}

.contact-bg-blob-1 {
    position: absolute;
    top: -5rem;
    right: -5rem;
    width: 24rem;
    height: 24rem;
    background-color: rgba(0, 156, 166, 0.3);
    border-radius: 50%;
    filter: blur(64px);
}

.contact-bg-blob-2 {
    position: absolute;
    bottom: -5rem;
    left: -5rem;
    width: 20rem;
    height: 20rem;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    filter: blur(64px);
}

.contact-content-grid {
    position: relative;
    z-index: 10;
    display: grid;
    gap: 3rem;
    align-items: center;
}

@media (min-width: 768px) {
    .contact-content-grid {
        grid-template-columns: 1fr 1fr;
    }
}

.contact-text {
    color: var(--color-white);
    text-align: center;
}

@media (min-width: 768px) {
    .contact-text {
        text-align: left;
    }
}

.contact-text h2 {
    font-size: 2rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
}

@media (min-width: 768px) {
    .contact-text h2 {
        font-size: 3rem;
    }
}

.contact-text .subtitle {
    color: #fff7ed;
    font-size: 1.125rem;
    margin-bottom: 2rem;
    max-width: 28rem;
    margin-left: auto;
    margin-right: auto;
}

@media (min-width: 768px) {
    .contact-text .subtitle {
        margin-left: 0;
    }
}

.contact-benefits {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    color: #fff7ed;
    font-size: 0.875rem;
}

.benefit-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    justify-content: center;
}

@media (min-width: 768px) {
    .benefit-item {
        justify-content: flex-start;
    }
}

.contact-form-wrapper {
    background-color: var(--color-white);
    padding: 2rem;
    border-radius: 1.5rem;
    box-shadow: var(--shadow-xl);
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.form-group label {
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--color-text-muted);
}

.form-group input,
.form-group select {
    width: 100%;
    padding: 0.75rem 1rem;
    border-radius: 0.75rem;
    background-color: var(--color-bg-light);
    border: 1px solid #e5e7eb;
    outline: none;
    transition: var(--transition);
    appearance: none;
    /* remove default arrow */
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%236b7280' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 1rem center;
    background-size: 1rem;
}

.form-group input {
    background-image: none;
}

.form-row {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

@media (min-width: 768px) {
    .form-row {
        flex-direction: row;
        gap: 1rem;
    }

    .form-row .form-group {
        flex: 1;
    }
}

.form-group input:focus,
.form-group select:focus {
    border-color: var(--color-brand-main);
    box-shadow: 0 0 0 2px rgba(242, 116, 5, 0.2);
}

.form-disclaimer {
    font-size: 0.75rem;
    color: #9ca3af;
    text-align: center;
    margin-top: 0.5rem;
}

/* Footer */
.footer {
    background-color: var(--color-brand-dark);
    color: var(--color-white);
    padding-top: 5rem;
    padding-bottom: 2.5rem;
}

.footer-grid {
    display: grid;
    gap: 3rem;
    margin-bottom: 4rem;
}

@media (min-width: 768px) {
    .footer-grid {
        grid-template-columns: 2fr 1fr 1fr;
    }
}

.footer-logo {
    font-family: var(--font-rounded);
    font-size: 1.875rem;
    font-weight: 700;
    color: var(--color-brand-main);
    margin-bottom: 1.5rem;
    display: block;
}

.footer-col-main p {
    color: #9ca3af;
    font-size: 0.875rem;
    line-height: 1.6;
    max-width: 20rem;
}

.footer-col h4 {
    font-size: 1.125rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
}

.footer-col ul {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.footer-col a,
.footer-col li {
    color: #9ca3af;
    font-size: 0.875rem;
    transition: var(--transition);
}

.footer-col a:hover {
    color: var(--color-brand-main);
}

.social-links {
    display: flex;
    gap: 1rem;
    margin-top: 0.5rem;
}

.social-links a {
    background-color: rgba(255, 255, 255, 0.1);
    padding: 0.5rem;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-white);
}

.social-links a:hover {
    background-color: var(--color-brand-main);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 2rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    font-size: 0.875rem;
    color: #6b7280;
}

@media (min-width: 768px) {
    .footer-bottom {
        flex-direction: row;
        justify-content: space-between;
    }

    .footer-bottom p {
        margin: 0;
    }
}

.footer-legal {
    display: flex;
    gap: 1.5rem;
}

.footer-legal a:hover {
    color: var(--color-white);
}