/* Color Palette & Variables */
:root {
    /* Colors */
    --clr-emerald-dark: #121212;
    /* Off-black for main backgrounds */
    --clr-emerald: #1e1e1e;
    /* Medium-dark gray for sections/cards */
    --clr-emerald-light: #2c2c2c;
    /* Lighter gray for alternating sections */
    --clr-gold: #d4af37;
    /* Metallic Gold */
    --clr-gold-light: #f3e5ab;
    --clr-white: #ffffff;
    --clr-off-white: #1a1a1a;
    /* Soft dark background */
    --clr-text-main: #f0f0f0;
    /* Brighter text for readability */
    --clr-text-light: #b0b0b0;
    /* Softer muted gray text */

    /* Typography */
    --font-heading: 'Playfair Display', serif;
    --font-body: 'Montserrat', sans-serif;

    /* Transitions & Shadows */
    --transition-smooth: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
    --shadow-sm: 0 4px 6px rgba(0, 0, 0, 0.3);
    --shadow-md: 0 10px 20px rgba(0, 0, 0, 0.5);
    --shadow-lg: 0 20px 40px rgba(212, 175, 55, 0.1);
    /* Subtle gold shadow */
}

/* Reset & Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: var(--font-body);
    color: var(--clr-text-main);
    background-color: var(--clr-off-white);
    line-height: 1.6;
    overflow-x: hidden;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-heading);
    color: var(--clr-text-main);
    font-weight: 600;
}

a {
    text-decoration: none;
    color: inherit;
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

/* Typography Utilities */
.text-white {
    color: var(--clr-white) !important;
}

/* Layout */
.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.section-padding {
    padding: 6rem 0;
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-title {
    font-size: 2.5rem;
    margin-bottom: 0.5rem;
}

.section-subtitle {
    color: var(--clr-text-light);
    max-width: 600px;
    margin: 0 auto;
    font-size: 1.1rem;
}

.divider {
    height: 3px;
    width: 60px;
    background-color: var(--clr-gold);
    margin: 1rem auto 1.5rem;
}

.divider.left {
    margin-left: 0;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 0.8rem 2rem;
    font-family: var(--font-body);
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 0.9rem;
    cursor: pointer;
    transition: var(--transition-smooth);
    border: 2px solid transparent;
    border-radius: 4px;
}

.btn-primary {
    background-color: var(--clr-gold);
    color: var(--clr-white);
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.3);
}

.btn-primary:hover {
    background-color: #c5a02c;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(212, 175, 55, 0.4);
}


.full-width {
    width: 100%;
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: 1.5rem 0;
    transition: var(--transition-smooth);
}

.navbar.scrolled {
    background-color: rgba(0, 0, 0, 0.95);
    backdrop-filter: blur(10px);
    padding: 1rem 0;
    box-shadow: var(--shadow-md);
    border-bottom: 1px solid rgba(212, 175, 55, 0.2);
}


.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    gap: 1rem;
    color: var(--clr-white);
}

.logo-typography {
    display: flex;
    flex-direction: column;
}

.logo-img {
    height: 65px;
    width: auto;
    object-fit: contain;
    transition: var(--transition-smooth);
}

.logo-img:hover {
    transform: scale(1.05);
}

.logo-text {
    font-family: var(--font-heading);
    font-size: 1.6rem;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    line-height: 1;
    color: var(--clr-gold);
}

.logo-subtext {
    font-size: 0.8rem;
    letter-spacing: 5px;
    text-transform: uppercase;
    color: var(--clr-white);
    margin-top: 0.2rem;
    opacity: 0.9;
}

.nav-links {
    display: flex;
    gap: 2.5rem;
}

.nav-links li a {
    color: var(--clr-white);
    font-weight: 500;
    font-size: 0.95rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    position: relative;
    transition: var(--transition-smooth);
}

.nav-links li a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--clr-gold);
    transition: var(--transition-smooth);
}

.nav-links li a:hover {
    color: var(--clr-gold);
}

.nav-links li a:hover::after {
    width: 100%;
}

.mobile-menu-btn {
    display: none;
    color: var(--clr-white);
    font-size: 1.8rem;
    cursor: pointer;
}

/* Hero Section */
.hero {
    height: 100vh;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: var(--clr-white);
    overflow: hidden;
}

.hero-bg-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -2;
}

.hero-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.8) 0%, rgba(0, 0, 0, 0.5) 100%);
    z-index: -1;
}

.hero-content {
    max-width: 800px;
    padding: 0 2rem;
}

.hero-subtitle {
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 5px;
    color: var(--clr-gold);
    margin-bottom: 1rem;
    animation: fadeInUp 1s ease-out 0.2s both;
}

.hero-title {
    font-size: 4.5rem;
    line-height: 1.1;
    color: var(--clr-white);
    margin-bottom: 1.5rem;
    animation: fadeInUp 1s ease-out 0.4s both;
}

.hero-description {
    font-size: 1.2rem;
    margin-bottom: 2.5rem;
    color: rgba(255, 255, 255, 0.9);
    animation: fadeInUp 1s ease-out 0.6s both;
}

.hero-content .btn {
    animation: fadeInUp 1s ease-out 0.8s both;
}

/* Destinations Grid */
.destinations-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 2rem;
}

.destination-card {
    background: var(--clr-emerald);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 8px;
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: var(--transition-smooth);
}

.destination-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
}

.destination-img {
    position: relative;
    height: 250px;
    overflow: hidden;
}

.destination-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s ease;
}

.destination-card:hover .destination-img img {
    transform: scale(1.1);
}

.destination-badge {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: var(--clr-gold);
    color: #000;
    padding: 0.4rem 1rem;
    border-radius: 4px;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    z-index: 2;
}

.destination-img-title {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 3rem 1.5rem 1.5rem;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.9), transparent);
    color: var(--clr-white);
    font-size: 1.8rem;
    margin: 0;
    z-index: 1;
}

.destination-info {
    padding: 2rem;
}

.destination-info h3 {
    font-size: 1.5rem;
    margin-bottom: 0.8rem;
}

.destination-info p {
    color: var(--clr-text-light);
    font-size: 0.95rem;
    margin-bottom: 1.5rem;
    line-height: 1.5;
}

.explore-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--clr-gold);
    font-weight: 600;
    text-transform: uppercase;
    font-size: 0.85rem;
    letter-spacing: 1px;
}

.explore-link i {
    transition: transform 0.3s ease;
}

.explore-link:hover i {
    transform: translateX(5px);
}

/* Benefits Section */
.benefits {
    background-color: var(--clr-emerald);
}

.benefits-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.benefits-image-wrapper {
    position: relative;
}

.benefits-image-container {
    position: relative;
    height: 600px;
}

.primary-image {
    width: 80%;
    height: 80%;
    object-fit: cover;
    border-radius: 8px;
    box-shadow: var(--shadow-md);
    position: absolute;
    top: 0;
    left: 0;
}

.secondary-image {
    width: 60%;
    height: 50%;
    object-fit: cover;
    border-radius: 8px;
    box-shadow: var(--shadow-lg);
    position: absolute;
    bottom: 0;
    right: 0;
    border: 10px solid var(--clr-emerald);
}

.benefits-intro {
    font-size: 1.1rem;
    color: var(--clr-text-light);
    margin-bottom: 2.5rem;
}

.benefits-list {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.benefit-item {
    display: flex;
    gap: 1.5rem;
    background: var(--clr-off-white);
    padding: 1.5rem;
    border-radius: 8px;
    transition: var(--transition-smooth);
    border-left: 4px solid transparent;
}

.benefit-item:hover {
    background: var(--clr-white);
    box-shadow: var(--shadow-md);
    border-left-color: var(--clr-gold);
    transform: translateX(5px);
}

.benefit-icon {
    width: 50px;
    height: 50px;
    background: rgba(212, 175, 55, 0.1);
    color: var(--clr-gold);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    flex-shrink: 0;
}

.benefit-text h4 {
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
    color: var(--clr-emerald-dark);
}

.benefit-text p {
    color: var(--clr-text-light);
    font-size: 0.95rem;
}

/* Testimonials */
.testimonials {
    background-color: var(--clr-emerald-light);
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.testimonial-card {
    background: var(--clr-off-white);
    padding: 3rem 2rem;
    border-radius: 8px;
    border: 1px solid rgba(212, 175, 55, 0.2);
    box-shadow: var(--shadow-sm);
    transition: var(--transition-smooth);
    display: flex;
    flex-direction: column;
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
    border-color: var(--clr-gold);
}

.quote-icon {
    font-size: 2.5rem;
    color: var(--clr-gold);
    opacity: 0.3;
    margin-bottom: 1rem;
}

.testimonial-text {
    font-style: italic;
    color: var(--clr-text-main);
    margin-bottom: 2rem;
    flex-grow: 1;
}

.testimonial-author h4 {
    color: var(--clr-gold);
    font-size: 1.1rem;
    margin-bottom: 0.2rem;
}

.testimonial-author span {
    font-size: 0.85rem;
    color: var(--clr-text-light);
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Contact Section */
.contact {
    background-image: url('https://images.unsplash.com/photo-1571896349842-33c89424de2d?auto=format&fit=crop&q=80&w=2000');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    position: relative;
}

.contact::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.9);
}

.contact-box {
    position: relative;
    background: var(--clr-white);
    border-radius: 12px;
    overflow: hidden;
    display: grid;
    grid-template-columns: 2fr 3fr;
    box-shadow: var(--shadow-lg);
}

.contact-info {
    background: var(--clr-emerald);
    padding: 4rem 3rem;
    color: var(--clr-white);
    border-right: 1px solid rgba(212, 175, 55, 0.2);
}

.contact-details {
    margin-top: 3rem;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.detail-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    font-size: 1rem;
}

.detail-item i {
    font-size: 1.5rem;
    color: var(--clr-gold);
}

.contact-form-wrapper {
    padding: 4rem 3rem;
    background: var(--clr-emerald-dark);
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 500;
    color: var(--clr-gold);
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 1rem;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-family: var(--font-body);
    font-size: 1rem;
    background-color: var(--clr-off-white);
    transition: var(--transition-smooth);
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--clr-gold);
    background-color: var(--clr-emerald-light);
    box-shadow: 0 0 0 3px rgba(212, 175, 55, 0.1);
    color: var(--clr-white);
}

/* Footer */
.footer {
    background: #000000;
    color: #a0a0a0;
    padding: 5rem 0 2rem;
    border-top: 1px solid rgba(212, 175, 55, 0.2);
}

.footer-container {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 3rem;
    margin-bottom: 4rem;
}

.footer-brand .logo {
    margin-bottom: 1.5rem;
    display: inline-block;
}

.footer-logo-img {
    height: 80px;
    width: auto;
    object-fit: contain;
    margin-bottom: 0.5rem;
}

.footer-brand .logo {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
}

.footer-brand .logo-text {
    font-size: 1.8rem;
}

.footer-desc {
    font-size: 0.95rem;
    line-height: 1.6;
    max-width: 300px;
}

.footer-links h4,
.footer-social h4 {
    color: var(--clr-white);
    font-family: var(--font-heading);
    font-size: 1.2rem;
    margin-bottom: 1.5rem;
}

.footer-links ul {
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
}

.footer-links a {
    transition: var(--transition-smooth);
}

.footer-links a:hover {
    color: var(--clr-gold);
    padding-left: 5px;
}

.social-icons {
    display: flex;
    gap: 1rem;
}

.social-icons a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.05);
    color: var(--clr-white);
    font-size: 1.2rem;
    transition: var(--transition-smooth);
}

.social-icons a:hover {
    background: var(--clr-gold);
    transform: translateY(-3px);
}

.footer-bottom {
    text-align: center;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 2rem;
    font-size: 0.85rem;
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.reveal {
    opacity: 0;
    transform: translateY(40px);
    transition: all 0.8s cubic-bezier(0.5, 0, 0, 1);
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

.delay-1 {
    transition-delay: 0.1s;
}

.delay-2 {
    transition-delay: 0.2s;
}

.delay-3 {
    transition-delay: 0.3s;
}

/* Modal Styles */
.destination-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background-color: rgba(0, 0, 0, 0.85);
    backdrop-filter: blur(8px);
    z-index: 2000;
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease-in-out;
}

.destination-modal.active {
    opacity: 1;
    visibility: visible;
}

.modal-content {
    background-color: var(--clr-emerald);
    width: 90%;
    max-width: 800px;
    max-height: 90vh;
    border-radius: 12px;
    overflow-y: auto;
    position: relative;
    border: 1px solid rgba(212, 175, 55, 0.3);
    box-shadow: 0 25px 50px -12px rgba(212, 175, 55, 0.25);
    transform: translateY(20px) scale(0.95);
    transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.destination-modal.active .modal-content {
    transform: translateY(0) scale(1);
}

.modal-close {
    position: absolute;
    top: 20px;
    right: 20px;
    background: rgba(0, 0, 0, 0.5);
    border: 1px solid var(--clr-gold);
    color: var(--clr-gold);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 1.5rem;
    cursor: pointer;
    z-index: 10;
    transition: var(--transition-smooth);
}

.modal-close:hover {
    background: var(--clr-gold);
    color: var(--clr-emerald-dark);
}

.modal-header {
    position: relative;
    height: 300px;
    width: 100%;
}

.modal-hero-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.modal-title-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 2rem;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.9));
}

.modal-title-overlay h2 {
    color: var(--clr-gold);
    font-size: 2.5rem;
    margin-bottom: 0.5rem;
}

.modal-subtitle {
    color: var(--clr-white);
    font-size: 1.1rem;
}

.modal-body {
    padding: 3rem 2rem;
}

.modal-section {
    margin-bottom: 2.5rem;
}

.modal-section h3 {
    color: var(--clr-white);
    font-size: 1.3rem;
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    padding-bottom: 0.5rem;
}

.modal-section h3 i {
    color: var(--clr-gold);
}

.modal-list {
    list-style: none;
    padding: 0;
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
}

@media screen and (min-width: 600px) {
    .modal-list {
        grid-template-columns: 1fr 1fr;
    }
}

.modal-list li {
    background: rgba(255, 255, 255, 0.03);
    padding: 1rem;
    border-radius: 6px;
    border-left: 3px solid var(--clr-gold);
}

.modal-list li h4 {
    color: var(--clr-white);
    margin-bottom: 0.3rem;
    font-size: 1.05rem;
}

.modal-list li p {
    color: var(--clr-text-light);
    font-size: 0.9rem;
}

.modal-cta {
    text-align: center;
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(212, 175, 55, 0.2);
}

.modal-cta p {
    color: var(--clr-text-main);
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
}

/* Responsive Media Queries */
@media screen and (max-width: 992px) {

    .destinations-grid,
    .testimonials-grid {
        grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    }

    .benefits-layout {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .benefits-image-container {
        height: 400px;
        max-width: 600px;
        margin: 0 auto;
    }

    .contact-box {
        grid-template-columns: 1fr;
    }

    .contact-info {
        padding: 3rem 2rem;
    }

    .footer-container {
        grid-template-columns: 1fr 1fr;
    }
}

@media screen and (max-width: 768px) {
    .logo-img {
        height: 50px;
    }

    .hero-title {
        font-size: 3rem;
    }

    .section-title {
        font-size: 2rem;
    }

    .nav-links {
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background-color: rgba(0, 45, 37, 0.98);
        flex-direction: column;
        align-items: center;
        padding: 2rem 0;
        gap: 1.5rem;
        box-shadow: var(--shadow-md);
        transform: translateY(-20px);
        opacity: 0;
        visibility: hidden;
        transition: var(--transition-smooth);
    }

    .nav-links.active {
        transform: translateY(0);
        opacity: 1;
        visibility: visible;
    }

    .navbar .btn-outline {
        display: none;
    }

    .mobile-menu-btn {
        display: block;
    }

    .destinations-grid {
        grid-template-columns: 1fr;
    }

    .footer-container {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
}