/* Base Styles & Variables */
:root {
    --primary: #f97316;
    --primary-hover: #ea580c;
    --slate-900: #0f172a;
    --slate-800: #1e293b;
    --slate-600: #475569;
    --slate-400: #94a3b8;
    --stone-50: #fafaf9;
    --white: #ffffff;
    --gradient: linear-gradient(135deg, #f97316 0%, #f43f5e 100%);
    --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
    --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
    --shadow-orange: 0 10px 30px -5px rgba(249, 115, 22, 0.3);
    --radius-xl: 1.5rem;
    --radius-2xl: 2rem;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Outfit', sans-serif;
    background-color: var(--stone-50);
    color: var(--slate-900);
    line-height: 1.6;
    overflow-x: hidden;
}

h1,
h2,
h3 {
    font-family: 'Outfit', sans-serif;
    font-weight: 800;
    line-height: 1.1;
}

a {
    text-decoration: none;
    color: inherit;
    transition: all 0.3s ease;
}

ul {
    list-style: none;
}

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

/* Utilities */
.accent {
    color: var(--primary);
}

.italic {
    font-family: 'Playfair Display', serif;
    font-style: italic;
    border-bottom: 6px solid var(--primary);
    display: inline-block;
}

.gradient-text {
    background: var(--gradient);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.btn-primary {
    background: var(--gradient);
    color: var(--white);
    padding: 0.8rem 1.5rem;
    border-radius: 1rem;
    font-weight: 600;
    box-shadow: var(--shadow-orange);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 15px 40px -5px rgba(249, 115, 22, 0.4);
}

.btn-primary-large {
    background: var(--gradient);
    color: var(--white);
    padding: 1.2rem 2.5rem;
    border-radius: 1.25rem;
    font-size: 1.1rem;
    font-weight: 700;
    box-shadow: var(--shadow-orange);
    display: inline-block;
    border: none;
    cursor: pointer;
}

.btn-secondary-large {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    color: var(--white);
    padding: 1.2rem 2.5rem;
    border-radius: 1.25rem;
    font-size: 1.1rem;
    font-weight: 700;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

/* Navbar */
.navbar {
    height: 90px;
    display: flex;
    align-items: center;
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    background: transparent;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.navbar.scrolled {
    height: 70px;
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(15px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

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

.logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 1.6rem;
    font-weight: 800;
    color: var(--white);
    transition: color 0.3s ease;
}

.navbar.scrolled .logo {
    color: var(--slate-900);
}

.logo i {
    background: var(--gradient);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    font-size: 1.75rem;
}

.nav-links {
    display: flex;
    gap: 2.5rem;
}

.nav-links a {
    font-weight: 600;
    color: var(--white);
    opacity: 0.9;
    letter-spacing: 0.5px;
    font-size: 0.95rem;
}

.navbar.scrolled .nav-links a {
    color: var(--slate-600);
    opacity: 1;
}

.nav-links a:hover {
    color: var(--primary) !important;
    opacity: 1;
}

.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    font-size: 1.5rem;
    cursor: pointer;
    color: var(--white);
}

.navbar.scrolled .mobile-menu-btn {
    color: var(--slate-900);
}

/* Hero Section */
.hero {
    position: relative;
    height: 100vh;
    display: flex;
    align-items: center;
    color: var(--white);
}

.hero-image-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    overflow: hidden;
}

.hero-image-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform: scale(1.1);
    animation: zoomOut 20s infinite alternate;
}

@keyframes zoomOut {
    from {
        transform: scale(1.1);
    }

    to {
        transform: scale(1.0);
    }
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom,
            rgba(15, 23, 42, 0.4) 0%,
            rgba(15, 23, 42, 0.1) 50%,
            var(--slate-900) 100%);
}

.hero-badge {
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(8px);
    padding: 0.6rem 1.25rem;
    border-radius: 100px;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.85rem;
    font-weight: 700;
    border: 1px solid rgba(255, 255, 255, 0.3);
    margin-bottom: 2rem;
    animation: fadeInDown 0.8s ease-out;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.hero h1 {
    font-size: 6rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    line-height: 1.05;
    animation: fadeInUp 0.8s ease-out 0.2s both;
    letter-spacing: -2px;
}

.hero h1 .italic {
    display: block;
    border: none;
    margin-top: 0.5rem;
}

.hero p {
    font-size: 1.25rem;
    max-width: 600px;
    opacity: 0.9;
    margin-bottom: 3rem;
    animation: fadeInUp 0.8s ease-out 0.4s both;
}

.hero-btns {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 4rem;
    animation: fadeInUp 0.8s ease-out 0.6s both;
}

.hero-stats {
    display: flex;
    gap: 4rem;
    animation: fadeIn 1s ease-out 0.8s both;
}

.stat-number {
    display: block;
    font-size: 2rem;
    font-weight: 800;
    color: var(--primary);
}

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

/* Search Bar */
.search-bar {
    background: var(--white);
    padding: 1.5rem;
    border-radius: var(--radius-2xl);
    box-shadow: var(--shadow-xl);
    display: grid;
    grid-template-columns: 1fr 1fr auto;
    gap: 1.5rem;
    margin-top: -3.5rem;
    position: relative;
    z-index: 10;
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.search-field {
    display: flex;
    align-items: center;
    gap: 1rem;
    background: var(--stone-50);
    padding: 1rem 1.5rem;
    border-radius: 1.25rem;
}

.search-field i {
    color: var(--slate-400);
}

.search-field input,
.search-field select {
    border: none;
    background: none;
    width: 100%;
    font-family: inherit;
    font-weight: 600;
    color: var(--slate-900);
    outline: none;
}

.btn-search {
    background: var(--gradient);
    color: var(--white);
    border: none;
    padding: 1rem 2.5rem;
    border-radius: 1.25rem;
    font-weight: 700;
    font-family: inherit;
    cursor: pointer;
    box-shadow: var(--shadow-orange);
}

/* Destinations */
.destinations {
    padding-top: 8rem;
    padding-bottom: 8rem;
}

.section-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 4rem;
}

.subtitle {
    color: var(--primary);
    text-transform: uppercase;
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 2px;
    display: block;
    margin-bottom: 1rem;
}

.section-header h2 {
    font-size: 3rem;
    color: var(--slate-900);
}

.view-all {
    font-weight: 700;
    color: var(--slate-900);
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.view-all:hover {
    color: var(--primary);
}

.destinations-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2.5rem;
}

.destination-card {
    background: var(--white);
    border-radius: var(--radius-2xl);
    overflow: hidden;
    border: 1px solid rgba(0, 0, 0, 0.05);
    transition: all 0.4s ease;
}

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

.card-img {
    position: relative;
    height: 250px;
    overflow: hidden;
}

.card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.destination-card:hover .card-img img {
    transform: scale(1.1);
}

.card-badge {
    position: absolute;
    top: 1.5rem;
    left: 1.5rem;
    background: rgba(255, 255, 255, 0.9);
    padding: 0.4rem 1rem;
    border-radius: 100px;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
}

.wishlist-btn {
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    background: rgba(255, 255, 255, 0.9);
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    color: #f43f5e;
}

.card-body {
    padding: 2rem;
}

.card-rating {
    display: flex;
    align-items: center;
    gap: 0.25rem;
    margin-bottom: 1rem;
}

.card-rating i {
    color: #fbbf24;
    font-size: 0.85rem;
}

.card-rating span {
    font-weight: 600;
    margin-left: 0.5rem;
    color: var(--slate-600);
}

.card-body h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.card-body p {
    color: var(--slate-600);
    font-size: 0.95rem;
    margin-bottom: 2rem;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.card-footer {
    padding-top: 1.5rem;
    border-top: 1px solid var(--stone-50);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.duration {
    color: var(--slate-400);
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.price-from {
    display: block;
    font-size: 0.75rem;
    color: var(--slate-400);
    text-transform: uppercase;
    font-weight: 700;
}

.price-amount {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--slate-900);
}

/* Newsletter */
.newsletter {
    padding-bottom: 8rem;
}

.newsletter-box {
    background: var(--slate-900);
    background-image: radial-gradient(circle at top right, rgba(249, 115, 22, 0.1), transparent), radial-gradient(circle at bottom left, rgba(244, 63, 94, 0.15), transparent);
    border-radius: var(--radius-2xl);
    padding: 5rem 4rem;
    color: var(--white);
    text-align: center;
}

.newsletter-icon {
    font-size: 3rem;
    display: block;
    margin-bottom: 1.5rem;
}

.newsletter h2 {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.newsletter p {
    font-size: 1.25rem;
    opacity: 0.8;
    margin-bottom: 3rem;
}

.newsletter-form {
    display: flex;
    gap: 1rem;
    max-width: 600px;
    margin: 0 auto;
}

.newsletter-form input {
    flex: 1;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    padding: 1.2rem 2rem;
    border-radius: 1.25rem;
    color: var(--white);
    font-family: inherit;
    outline: none;
}

/* Footer */
.footer {
    background: #0a0f1c;
    color: var(--white);
    padding-top: 6rem;
    padding-bottom: 3rem;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1.5fr;
    gap: 6rem;
    margin-bottom: 6rem;
}

.footer-info p {
    color: var(--slate-400);
    margin-top: 1.5rem;
    margin-bottom: 2rem;
    max-width: 300px;
}

.logo.light {
    color: var(--white);
}

.social-links {
    display: flex;
    gap: 1.5rem;
}

.social-links a {
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    transition: all 0.3s ease;
}

.social-links a:hover {
    background: var(--gradient);
    transform: translateY(-5px);
}

.footer h3 {
    margin-bottom: 2rem;
}

.footer-nav ul li {
    margin-bottom: 1.25rem;
}

.footer-nav ul li a,
.footer-nav ul li {
    color: var(--slate-400);
}

.footer-nav ul li i {
    color: var(--primary);
    margin-right: 0.75rem;
}

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

.footer-bottom {
    display: flex;
    justify-content: space-between;
    padding-top: 3rem;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    color: var(--slate-600);
    font-size: 0.9rem;
}

.footer-legal {
    display: flex;
    gap: 2rem;
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

/* Tablet & Mobile Responsive */
/* About Section */
.about {
    padding: 10rem 2rem;
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 6rem;
    align-items: center;
}

.about-image {
    position: relative;
}

.rounded-img {
    width: 100%;
    border-radius: var(--radius-2xl);
    box-shadow: var(--shadow-xl);
}

.experience-badge {
    position: absolute;
    bottom: -2rem;
    right: -2rem;
    background: var(--white);
    padding: 2rem;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-xl);
    text-align: center;
}

.exp-years {
    display: block;
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--primary);
    line-height: 1;
}

.exp-text {
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--slate-600);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.about-list {
    margin-top: 2.5rem;
    margin-bottom: 3rem;
}

.about-list li {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.25rem;
    font-weight: 500;
    color: var(--slate-800);
}

.about-list li i {
    color: #10b981;
}

.about-quote {
    padding-left: 2rem;
    border-left: 4px solid var(--primary);
}

.about-quote p {
    font-family: 'Playfair Display', serif;
    font-style: italic;
    font-size: 1.25rem;
    color: var(--slate-600);
    margin-bottom: 0.5rem;
}

.quote-author {
    font-weight: 700;
    font-size: 0.9rem;
    color: var(--slate-400);
    text-transform: uppercase;
}

/* Services / Process Section */
.services {
    padding-bottom: 10rem;
}

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

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 3rem;
}

.service-card {
    background: var(--white);
    padding: 3.5rem 2.5rem;
    border-radius: var(--radius-2xl);
    text-align: center;
    border: 1px solid rgba(0, 0, 0, 0.05);
    transition: all 0.4s ease;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-xl);
    border-color: var(--primary);
}

.service-icon {
    width: 80px;
    height: 80px;
    background: var(--stone-50);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 2rem;
    font-size: 2rem;
    color: var(--primary);
    transition: all 0.4s ease;
}

.service-card:hover .service-icon {
    background: var(--gradient);
    color: var(--white);
    transform: rotate(10deg);
}

.service-card h3 {
    margin-bottom: 1rem;
}

.service-card p {
    color: var(--slate-600);
    font-size: 0.95rem;
}

@media (max-width: 1024px) {
    .destinations-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .hero h1 {
        font-size: 4rem;
    }
}

@media (max-width: 768px) {
    .about-grid {
        grid-template-columns: 1fr;
        gap: 4rem;
    }

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

    .experience-badge {
        right: 0;
        bottom: 0;
        padding: 1.5rem;
    }

    .nav-links,
    .btn-primary {
        display: none;
    }

    .mobile-menu-btn {
        display: block;
    }

    .hero h1 {
        font-size: 3rem;
    }

    .hero-image-container {
        height: 100%;
    }

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

    .search-bar {
        grid-template-columns: 1fr;
        margin-top: -5rem;
    }

    .hero-stats {
        gap: 2rem;
    }

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

    .newsletter-box {
        padding: 3rem 2rem;
    }

    .newsletter-form {
        flex-direction: column;
    }

    .section-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 1rem;
    }
}