:root {
    /* Color Palette - Premium Dark & Nature Inspired */
    --color-bg-dark: #0a0e12;
    --color-bg-card: rgba(255, 255, 255, 0.05);
    --color-text-primary: #ffffff;
    --color-text-secondary: #a0a0a0;
    --color-accent-gold: #d4af37;
    /* Luxury */
    --color-accent-blue: #00f0ff;
    /* Glaciers/Futuristic */
    --color-overlay-dark: rgba(0, 0, 0, 0.7);

    /* Glassmorphism */
    --glass-bg: rgba(255, 255, 255, 0.05);
    --glass-border: 1px solid rgba(255, 255, 255, 0.1);
    --glass-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
    --glass-backdrop: blur(10px);

    /* Typography */
    --font-heading: 'Outfit', sans-serif;
    --font-body: 'Inter', sans-serif;

    /* Spacing */
    --padding-container: 5%;
    --padding-section: 80px 5%;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    scroll-behavior: smooth;
}

body {
    background-color: var(--color-bg-dark);
    color: var(--color-text-primary);
    font-family: var(--font-body);
    overflow-x: hidden;
    line-height: 1.6;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-heading);
    color: var(--color-text-primary);
    margin-bottom: 1rem;
}

a {
    text-decoration: none;
    color: inherit;
    transition: 0.3s;
}

ul {
    list-style: none;
}

/* Utilities */
.container {
    padding: var(--padding-container);
    max-width: 1440px;
    margin: 0 auto;
}

.section-padding {
    padding: var(--padding-section);
}

.flex-center {
    display: flex;
    justify-content: center;
    align-items: center;
}

.flex-between {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.grid-3 {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

/* Buttons */
.btn-primary {
    background: linear-gradient(135deg, var(--color-accent-gold), #b8860b);
    color: #fff;
    padding: 12px 30px;
    border-radius: 50px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    border: none;
    cursor: pointer;
    box-shadow: 0 0 15px rgba(212, 175, 55, 0.4);
    transition: transform 0.3s, box-shadow 0.3s;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 0 25px rgba(212, 175, 55, 0.6);
}

.btn-secondary {
    background: transparent;
    border: 1px solid var(--color-text-primary);
    color: var(--color-text-primary);
    padding: 10px 25px;
    border-radius: 50px;
    cursor: pointer;
}

.btn-secondary:hover {
    background: var(--color-text-primary);
    color: var(--color-bg-dark);
}

/* Navigation - Placeholder */
nav {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    background: rgba(10, 14, 18, 0.8);
    backdrop-filter: blur(15px);
    border-bottom: var(--glass-border);
    padding: 1rem 5%;
}

.nav-links {
    display: flex;
    gap: 2rem;
}

.nav-links a:hover {
    color: var(--color-accent-gold);
}

.logo {
    display: inline-flex;
    align-items: center;
}

.logo img {
    height: 45px;
    width: auto;
}

/* Hero Section */
.hero-section {
    position: relative;
    height: 90vh;
    /* Updated height from ref */
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.hero-slider {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    opacity: 0;
    transition: opacity 1s ease-in-out;
}

.slide.active {
    opacity: 1;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.1), rgba(10, 14, 18, 0.2));
    z-index: 2;
}

.hero-content {
    position: relative;
    z-index: 3;
    color: #fff;
    max-width: 900px;
}

.hero-title {
    font-size: 4.5rem;
    font-weight: 400;
    /* Thinner elegant font */
    line-height: 1.2;
    text-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
    margin-bottom: 1rem;
    animation: fadeInUp 1s ease-out;
}

.hero-title em {
    font-style: italic;
    font-family: serif;
    /* Differentiate "Pakistan experience" */
    font-weight: 400;
}

.hero-subtitle {
    font-size: 1.2rem;
    color: #e0e0e0;
    margin-bottom: 2.5rem;
    font-weight: 300;
    animation: fadeInUp 1.2s ease-out;
}

.hero-buttons {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    margin-bottom: 2rem;
    animation: fadeInUp 1.4s ease-out;
}

.btn-secondary-glass {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.5);
    color: #fff;
    padding: 12px 30px;
    border-radius: 50px;
    font-weight: 600;
    backdrop-filter: blur(5px);
    transition: 0.3s;
}

.btn-secondary-glass:hover {
    background: #fff;
    color: #000;
}

/* Traveler Types Section */
.bg-light {
    background-color: #f8f9fa;
    /* Light paper color */
    color: #333;
}

.section-title-center {
    text-align: center;
    font-size: 2rem;
    color: inherit;
    margin-bottom: 3rem;
    font-family: serif;
    font-style: italic;
}

.grid-4 {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
}

.traveler-card {
    position: relative;
    border-radius: 0;
    /* Square/Clean cut look */
    overflow: hidden;
    height: 350px;
    transition: 0.3s;
}

.traveler-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s;
}

.traveler-card:hover img {
    transform: scale(1.05);
}

.traveler-info {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8), transparent);
    padding: 2rem 1rem 1rem;
    color: #fff;
    text-align: center;
}

.traveler-info h3 {
    font-size: 1.2rem;
    margin-bottom: 0.3rem;
    font-weight: 600;
    color: #fff;
}

.traveler-info p {
    font-size: 0.8rem;
    opacity: 0.8;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Destinations Section */
.bg-paper {
    background-color: #f0f2f5;
    color: #333;
}

.destination-card {
    position: relative;
    height: 300px;
    overflow: hidden;
    border-radius: 4px;
}

.destination-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.destination-overlay {
    position: absolute;
    bottom: 20px;
    left: 20px;
    right: 20px;
    background: rgba(10, 14, 18, 0.85);
    padding: 1.5rem;
    text-align: center;
    color: #fff;
    backdrop-filter: blur(5px);
}

.destination-overlay h3 {
    font-size: 1rem;
    margin-bottom: 0.5rem;
    color: #fff;
}

.destination-overlay p {
    font-size: 0.7rem;
    color: #aaa;
    margin-bottom: 1rem;
    text-transform: uppercase;
}

.btn-micro {
    background: var(--color-accent-green, #2e5d4b);
    color: #fff;
    padding: 5px 15px;
    border-radius: 3px;
    font-size: 0.75rem;
    text-transform: uppercase;
    display: inline-block;
}

/* Steps Section */
.steps-grid {
    text-align: center;
}

.step-item {
    padding: 2rem;
}

.step-icon {
    font-size: 3rem;
    color: var(--color-accent-green, #2e5d4b);
    margin-bottom: 1rem;
}

.step-item h3 {
    font-family: inherit;
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
    color: #333;
}

.step-item p {
    color: #666;
    font-size: 0.9rem;
}

/* Why Us Section */
.bg-dark-overlay {
    background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url('https://images.unsplash.com/photo-1549646067-152e97193f0b?q=80&w=2938&auto=format&fit=crop');
    background-size: cover;
    background-attachment: fixed;
    color: #fff;
}

.text-white {
    color: #fff;
}

.features-grid {
    text-align: center;
}

.feature-item {
    padding: 2rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
    background: rgba(255, 255, 255, 0.05);
    /* Glassy */
    backdrop-filter: blur(10px);
}

.feature-icon {
    font-size: 2.5rem;
    color: #d4af37;
    margin-bottom: 1rem;
}

/* Stories / Testimonials */
.bg-image-bottom {
    background: #fff;
    /* Could be image */
    background: linear-gradient(to bottom, #dbeae5, #f0f2f5);
}

.stories-grid {
    /* reuse grid-3 */
}

.story-card {
    position: relative;
    height: 300px;
    border-radius: 8px;
    overflow: hidden;
}

.story-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.story-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.9), transparent);
    padding: 2rem;
    color: #fff;
    text-align: center;
}

.story-overlay p {
    font-style: italic;
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
    font-family: serif;
}

.story-overlay h4 {
    font-size: 0.8rem;
    opacity: 0.8;
}

/* Activity Cards */
.glass-panel {
    background: var(--glass-bg);
    border: var(--glass-border);
    backdrop-filter: var(--glass-backdrop);
    border-radius: 15px;
    overflow: hidden;
    transition: 0.3s;
}

.glass-panel:hover {
    transform: translateY(-5px);
    box-shadow: var(--glass-shadow);
    border-color: rgba(255, 255, 255, 0.2);
}

.card-img {
    height: 200px;
    background-size: cover;
    background-position: center;
}

.card-content {
    padding: 1.5rem;
}

.card-content h3 {
    margin-bottom: 0.5rem;
    color: var(--color-accent-blue);
}

.card-content p {
    font-size: 0.9rem;
    color: var(--color-text-secondary);
    margin-bottom: 1.5rem;
}

.btn-primary.small {
    padding: 8px 20px;
    font-size: 0.9rem;
}

/* Customize Section */
.customize-section {
    position: relative;
    height: 60vh;
    background: url('https://images.unsplash.com/photo-1548588627-f978862b85e1?q=80&w=2072&auto=format&fit=crop') center/cover fixed;
    text-align: center;
}

.customize-section .overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.6);
}

.customize-section .content {
    position: relative;
    z-index: 2;
    padding: 2rem;
    background: rgba(0, 0, 0, 0.4);
    backdrop-filter: blur(5px);
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

/* Testimonials */
.testimonial-card {
    background: var(--color-bg-card);
    padding: 2rem;
    border-radius: 15px;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.testimonial-card p {
    font-style: italic;
    margin-bottom: 1rem;
    opacity: 0.8;
}

.testimonial-card h4 {
    color: var(--color-accent-gold);
}

/* Modal */
.modal {
    display: none;
    position: fixed;
    inset: 0;
    z-index: 2000;
    justify-content: center;
    align-items: center;
    background: rgba(0, 0, 0, 0.8);
    opacity: 0;
    transition: opacity 0.3s;
}

.modal.show {
    opacity: 1;
}

.modal-content {
    width: 90%;
    max-width: 500px;
    padding: 2rem;
    position: relative;
    background: rgba(20, 25, 30, 0.9);
}

.close-modal {
    position: absolute;
    top: 15px;
    right: 20px;
    font-size: 1.5rem;
    cursor: pointer;
    color: #fff;
}

.close-modal:hover {
    color: var(--color-accent-gold);
}

form {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-top: 1.5rem;
}

input,
select {
    padding: 12px;
    border-radius: 8px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    background: rgba(255, 255, 255, 0.05);
    color: #fff;
    outline: none;
}

input:focus,
select:focus {
    border-color: var(--color-accent-gold);
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Mobile Responsiveness */
@media (max-width: 768px) {
    .hero-title {
        font-size: 2.5rem;
    }

    .grid-2 {
        grid-template-columns: 1fr;
    }

    .nav-links {
        display: none;
    }

    /* TODO: Mobile Menu */
    .flex-between {
        flex-wrap: wrap;
    }
}

/* Footer - Reference Design Implementation */
/* Footer - Reference Design Implementation */
footer {
    background: #0d1216;
    /* Slightly different from body #0a0e12 */
    color: #b0b0b0;
    padding-top: 5rem;
    padding-bottom: 0;
    font-size: 0.9rem;
}

.footer-bottom {
    background: var(--color-accent-gold);
    padding: 10px 0;
    margin-top: 0;
    text-align: center;
    border-top: none;
}

.footer-bottom p {
    margin: 0;
    padding: 0;
    font-size: 0.9rem;
    color: #0a0e12;
    /* Dark color for contrast */
    font-weight: 600;
}

.footer-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 3rem;
    margin-bottom: 0;
    align-items: start;
}

.footer-col h3 {
    color: #fff;
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
    font-weight: 600;
    font-family: var(--font-heading);
    display: flex;
    align-items: center;
    gap: 10px;
}

/* Vertical Accent Bar matching reference */
.footer-col h3::before {
    content: '';
    display: block;
    width: 4px;
    height: 18px;
    background: var(--color-accent-blue);
    border-radius: 2px;
}

.footer-col p {
    line-height: 1.6;
    margin-bottom: 1rem;
}

/* Recent Posts - Dotted Divider Style */
.footer-blog-list {
    display: flex;
    flex-direction: column;
}

.footer-blog-item-ref {
    padding-bottom: 1rem;
    margin-bottom: 1rem;
    border-bottom: 1px dashed rgba(255, 255, 255, 0.1);
}

.footer-blog-item-ref:last-child {
    border-bottom: none;
    padding-bottom: 0;
    margin-bottom: 0;
}

.footer-blog-item-ref h4 {
    font-size: 0.95rem;
    color: #fff;
    margin-bottom: 0.3rem;
    line-height: 1.4;
    transition: color 0.3s;
}

.footer-blog-item-ref h4:hover {
    color: var(--color-accent-blue);
    cursor: pointer;
}

.footer-blog-item-ref span {
    font-size: 0.75rem;
    color: #888;
}

/* Quick Links - Bullet Style */
.footer-links ul {
    list-style: none;
}

.footer-links ul li {
    margin-bottom: 0.8rem;
    padding-bottom: 0.8rem;
    border-bottom: 1px dashed rgba(255, 255, 255, 0.05);
}

.footer-links ul li:last-child {
    border-bottom: none;
}

.footer-links ul li a {
    color: #b0b0b0;
    transition: 0.3s;
    display: flex;
    align-items: center;
    gap: 8px;
}

.footer-links ul li a::before {
    content: '•';
    color: var(--color-accent-gold);
}

.footer-links ul li a:hover {
    color: #fff;
    padding-left: 5px;
}

/* Contact Info with Icons */
.footer-contact-row {
    display: flex;
    gap: 15px;
    margin-bottom: 1.2rem;
}

.footer-contact-row i {
    font-size: 1.2rem;
    color: var(--color-accent-blue);
    margin-top: 3px;
}

.footer-contact-row div span {
    display: block;
    color: #fff;
    margin-bottom: 0.2rem;
    font-weight: 500;
}

.footer-contact-row div {
    font-size: 0.9rem;
    color: #b0b0b0;
}

/* Connect Socials */
.footer-socials {
    margin-top: 2rem;
}

.footer-socials h4 {
    color: #fff;
    font-size: 0.9rem;
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.social-icons-ref {
    display: flex;
    gap: 1rem;
}

.social-icons-ref a {
    width: 36px;
    height: 36px;
    background: rgba(255, 255, 255, 0.05);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 4px;
    color: #fff;
    transition: 0.3s;
}

.social-icons-ref a:hover {
    background: var(--color-accent-blue);
    transform: translateY(-3px);
}

/* New Contact Split Section Styles */
.contact-split-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.contact-text-side h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: #fff;
}

.contact-text-side p.subtitle {
    font-size: 1.1rem;
    color: #a0a0a0;
    margin-bottom: 3rem;
}

.contact-detail-item {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.contact-icon-box {
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: var(--color-accent-gold);
}

.contact-info h3 {
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
    color: #fff;
}

.contact-info p {
    color: #a0a0a0;
    line-height: 1.5;
}

.contact-form-side {
    background: rgba(255, 255, 255, 0.02);
    padding: 3rem;
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.contact-form-side form {
    margin-top: 0;
}

.contact-form-side input,
.contact-form-side textarea {
    width: 100%;
    padding: 15px;
    background: rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: #fff;
    margin-bottom: 1rem;
    border-radius: 8px;
}

.contact-form-side input:focus,
.contact-form-side textarea:focus {
    border-color: var(--color-accent-blue);
}

@media (max-width: 768px) {
    .contact-split-wrapper {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .contact-form-side {
        padding: 1.5rem;
    }
}