:root {
    --primary: #273f2a;
    --secondary: #a38065;
    --ternary: #f9ecda;
    --accent: #ff6b8b;
    --dark: #070a08;
    --light: #f0f7f4;
    --glass: rgba(255, 255, 255, 0.08);
}

* {
    scroll-behavior: smooth;
}

body {
    font-family: "Inter", sans-serif;
    background-color: var(--dark);
    color: var(--light);
    overflow-x: hidden;
    background-image:
        radial-gradient(
            circle at 20% 80%,
            rgba(0, 212, 170, 0.05) 0%,
            transparent 20%
        ),
        radial-gradient(
            circle at 80% 20%,
            rgba(255, 107, 139, 0.05) 0%,
            transparent 20%
        );
}

.font-heading {
    font-family: "Space Grotesk", sans-serif;
    font-weight: 700;
    letter-spacing: -0.02em;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: "Space Grotesk", sans-serif;
    font-weight: 700;
}

/* Futuristic Navbar */
nav {
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

nav.scrolled {
    background-color: var(--ternary) !important;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.nav-glow {
    position: absolute;
    bottom: -1px;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--secondary), var(--accent));
    transition: width 0.3s ease;
}

.scrolled .nav-link span {
    color: var(--primary) !important;
}

.nav-link:hover .nav-glow {
    width: 100%;
}
.scrolled .mobile-menu-bars {
    color: var(--primary) !important;
}

.hero-section {
    background:
        linear-gradient(rgba(0, 0, 0, 0.6), rgba(2, 2, 2, 0.7)),
        url("../images/hero-bg.webp") center/cover;
    min-height: 100vh;
    position: relative;
    display: flex;
    align-items: center;
}

.hero-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 80vw;
    height: 80vh;
    /*background: radial-gradient(circle, rgba(0, 212, 170, 0.1) 0%, transparent 70%);*/
    z-index: 0;
}

.title-gradient {
    background: linear-gradient(
        135deg,
        var(--secondary) 0%,
        #00ffcc 50%,
        var(--accent) 100%
    );
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}
.logo-link img {
    height: 80px !important;
    width: auto !important;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    filter: brightness(0) invert(1);
}
.scrolled .logo-link img {
    filter: unset;
    height: 50px !important;
}

/* Glassmorphism Cards */
.glass-card {
    background: var(--glass);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 40px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.glass-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(
        90deg,
        transparent,
        var(--secondary),
        transparent
    );
}

.glass-card:hover {
    transform: translateY(-10px);
    border-color: var(--secondary);
    box-shadow: 0 20px 40px rgba(0, 212, 170, 0.2);
}

/* Glowing Buttons */
.btn-primary {
    background: linear-gradient(135deg, var(--secondary) 0%, #00b894 100%);
    color: var(--dark);
    padding: 16px 40px;
    border-radius: 50px;
    font-weight: 600;
    text-decoration: none;
    display: inline-block;
    position: relative;
    overflow: hidden;
    border: none;
    transition: all 0.3s ease;
}

.btn-primary:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 212, 170, 0.3);
}

.btn-secondary {
    background: transparent;
    color: var(--light);
    padding: 16px 40px;
    border-radius: 50px;
    font-weight: 600;
    text-decoration: none;
    display: inline-block;
    position: relative;
    overflow: hidden;
    border: 2px solid var(--secondary);
    transition: all 0.3s ease;
}

.btn-secondary:hover {
    background: var(--secondary);
    color: var(--dark);
    transform: translateY(-5px);
}

/* Trust Section Cards */
.trust-card {
    background: var(--glass);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 30px;
    transition: all 0.3s ease;
    text-align: center;
    position: relative;
}

.trust-card:hover {
    transform: translateY(-10px);
    border-color: var(--secondary);
    box-shadow: 0 15px 40px rgba(0, 212, 170, 0.2);
}

.trust-icon-circle {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: rgba(0, 212, 170, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    border: 3px solid var(--secondary);
    transition: all 0.3s ease;
}

.trust-card:hover .trust-icon-circle {
    transform: scale(1.1);
    background: rgba(0, 212, 170, 0.2);
}

.experience-card {
    transition: all 0.4s ease;
    overflow: hidden;
    position: relative;
    cursor: pointer;
    border-radius: 20px;
}

.experience-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to bottom, transparent, rgba(10, 31, 12, 0.9));
    transition: opacity 0.4s ease;
    z-index: 1;
}

.experience-card:hover::before {
    background: linear-gradient(to bottom, transparent, rgba(10, 31, 12, 0.95));
}

.experience-card:hover {
    transform: translateY(-15px);
    box-shadow: 0 25px 50px rgba(0, 212, 170, 0.3);
}

.experience-card:hover .card-content {
    transform: translateY(-10px);
}

.card-content {
    position: relative;
    z-index: 2;
    transition: transform 0.4s ease;
}

/* Why Section */
.why-icon-circle {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    background: rgba(0, 212, 170, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    border: 3px solid var(--secondary);
    transition: all 0.3s ease;
}

.why-icon-circle:hover {
    transform: scale(1.1);
    background: rgba(0, 212, 170, 0.2);
}

/* Testimonial Carousel - 3 cards at once */
.testimonial-carousel {
    position: relative;
    overflow: hidden;
}

.testimonial-track {
    display: flex;
    transition: transform 0.5s ease;
}

.testimonial-slide {
    min-width: 33.333%;
    padding: 0 15px;
}

@media (max-width: 768px) {
    .testimonial-slide {
        min-width: 100%;
    }
}

.testimonial-card {
    background: white;
    border-left: 4px solid var(--secondary);
    border-radius: 15px;
    padding: 40px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    height: 100%;
}

.carousel-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: var(--primary);
    color: white;
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    cursor: pointer;
    z-index: 10;
    transition: all 0.3s ease;
}

.carousel-btn:hover {
    background: var(--secondary);
}

.carousel-btn.prev {
    left: 0;
}

.carousel-btn.next {
    right: 0;
}

/* Gallery Carousel */
.gallery-carousel {
    position: relative;
    overflow: hidden;
}

.gallery-track {
    display: flex;
    transition: transform 0.5s ease;
}

.gallery-slide {
    min-width: 25%;
    padding: 10px;
}

.gallery-item {
    cursor: pointer;
    transition: transform 0.3s ease;
    border-radius: 15px;
    overflow: hidden;
}

.gallery-item:hover {
    transform: scale(1.05);
}

/* Lightbox */
.lightbox {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.95);
    z-index: 2000;
    align-items: center;
    justify-content: center;
}

.lightbox.active {
    display: flex;
}

.lightbox img {
    max-width: 90%;
    max-height: 90%;
    object-fit: contain;
}

.lightbox-close {
    position: absolute;
    top: 30px;
    right: 30px;
    color: white;
    font-size: 40px;
    cursor: pointer;
    z-index: 2001;
}

/* Futuristic Mobile Menu */
.mobile-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 85%;
    max-width: 300px;
    height: 100vh;
    background: var(--glass);
    backdrop-filter: blur(30px);
    z-index: 999;
    transition: right 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: -5px 0 15px rgba(0, 0, 0, 0.2);
    overflow-y: auto;
    display: flex;
    flex-direction: column;
}

.mobile-menu.active {
    right: 0;
}

.mobile-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    z-index: 998;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.mobile-overlay.active {
    opacity: 1;
    visibility: visible;
}

.mobile-nav {
    flex: 1;
    padding: 20px;
    display: flex;
    flex-direction: column;
}

.mobile-nav-link {
    padding: 18px 15px;
    font-size: 18px;
    font-weight: 600;
    color: var(--light);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    transition: all 0.2s ease;
}

.mobile-nav-link:hover {
    background: rgba(0, 212, 170, 0.1);
    padding-left: 25px;
    color: var(--secondary);
}

.mobile-nav-link i {
    width: 30px;
    margin-right: 15px;
    text-align: center;
    color: var(--secondary);
}

/* Parallax Section */
.parallax-section {
    background:
        linear-gradient(rgba(10, 31, 12, 0.9), rgba(7, 10, 8, 0.95)),
        url("../images/about-bg.webp") center/cover fixed;
    background-attachment: fixed;
    position: relative;
}

/* Floating Animation */
.float-animation {
    animation: float 6s ease-in-out infinite;
}

@keyframes float {
    0%,
    100% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-20px);
    }
}

/* Glow Effect */
.glow {
    filter: drop-shadow(0 0 20px rgba(0, 212, 170, 0.3));
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero-section h1 {
        font-size: 2.5rem;
    }

    .hero-section p {
        font-size: 1.1rem;
    }

    .btn-primary,
    .btn-secondary {
        padding: 14px 30px;
        font-size: 0.9rem;
        width: 100%;
        margin-bottom: 10px;
    }

    .trust-card h3 {
        font-size: 1.2rem;
    }

    .trust-card p {
        font-size: 0.9rem;
    }

    /*
    .experience-card h3 {
        font-size: 1.5rem;
    }

    .experience-card p {
        font-size: 1rem;
    }
        */

    /*
    .testimonial-card p {
        font-size: 1rem;
    }
    */

    .why-icon-circle {
        width: 90px;
        height: 90px;
    }
    /*
    .why-icon-circle i {
        font-size: 2.5rem;
    }
    */
    .why-icon-circle h3 {
        font-size: 1rem;
    }

    .mobile-nav-link {
        font-size: 16px;
        padding: 16px 15px;
    }

    .parallax-section {
        background-attachment: scroll;
    }
    .gallery-slide {
        min-width: 100%;
    }
    .carousel-btn {
        width: 40px;
        height: 40px;
    }
}

@media (max-width: 480px) {
    .hero-section h1 {
        font-size: 2rem;
    }

    .hero-section p {
        font-size: 1rem;
    }

    .btn-primary,
    .btn-secondary {
        padding: 12px 25px;
        font-size: 0.85rem;
    }
}

@media (max-width: 1024px) {
    /*.gallery-slide {
        min-width: 50%;
    }*/
}

/* Carousel buttons */
.carousel-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: var(--primary);
    color: white;
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    cursor: pointer;
    z-index: 10;
    transition: all 0.3s ease;
    border: 1px solid var(--secondary);
}

.carousel-btn:hover {
    background: var(--secondary);
}

/* Lightbox */
.lightbox {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.95);
    z-index: 2000;
    align-items: center;
    justify-content: center;
}

.lightbox.active {
    display: flex;
}

/* Sticky Contact */
.sticky-contact {
    position: fixed;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
    z-index: 1000;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.sticky-contact a {
    width: 55px;
    height: 55px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    background: var(--primary);
    border: 1px solid var(--secondary);
}

.sticky-contact a:hover {
    transform: scale(1.1);
    background: var(--secondary);
}

/* Section Spacing */
section {
    position: relative;
}

section::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(
        90deg,
        transparent,
        var(--secondary),
        transparent
    );
}

/* Hero Section */
.about-hero {
    background:
        linear-gradient(rgba(0, 0, 0, 0.6), rgba(2, 2, 2, 0.7)),
        url("../images/about-bg.webp") center/cover;
    min-height: 100vh;
    position: relative;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.hero-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 80vw;
    height: 80vh;
    background: radial-gradient(
        circle,
        rgba(0, 212, 170, 0.1) 0%,
        transparent 70%
    );
    z-index: 0;
    animation: pulse 8s infinite alternate;
}

@keyframes pulse {
    0% {
        opacity: 0.3;
    }
    100% {
        opacity: 0.7;
    }
}

.title-gradient {
    background: linear-gradient(
        135deg,
        var(--secondary) 0%,
        #00ffcc 50%,
        var(--accent) 100%
    );
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Geometric Background Elements */
.geometric-bg {
    position: absolute;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 0;
    overflow: hidden;
}

.geometric-shape {
    position: absolute;
    border: 1px solid rgba(0, 212, 170, 0.1);
    border-radius: 20px;
}

.shape-1 {
    top: 10%;
    left: 5%;
    width: 150px;
    height: 150px;
    transform: rotate(45deg);
    animation: float 15s infinite ease-in-out;
}

.shape-2 {
    bottom: 20%;
    right: 10%;
    width: 100px;
    height: 100px;
    transform: rotate(20deg);
    animation: float 20s infinite ease-in-out reverse;
}

.shape-3 {
    top: 40%;
    right: 20%;
    width: 80px;
    height: 80px;
    transform: rotate(60deg);
    animation: float 25s infinite ease-in-out;
}

/* Content Layouts */
.split-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.content-text {
    position: relative;
    z-index: 2;
}

.content-visual {
    position: relative;
    z-index: 1;
}

/* Floating Elements */
.floating-element {
    /*animation: float 8s ease-in-out infinite;
    position: relative;*/
}

@keyframes float {
    0%,
    100% {
        transform: translateY(0px) rotate(0deg);
    }
    50% {
        transform: translateY(-20px) rotate(5deg);
    }
}

/* Story Timeline */
.story-timeline {
    position: relative;
    padding-left: 40px;
    margin: 40px 0;
}

.story-timeline::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 2px;
    background: linear-gradient(to bottom, var(--secondary), var(--accent));
}

.timeline-item {
    position: relative;
    margin-bottom: 30px;
    padding-left: 30px;
}

.timeline-item::before {
    content: "";
    position: absolute;
    left: -10px;
    top: 8px;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: var(--secondary);
    border: 4px solid var(--dark);
}

/* Visual Showcase */
.visual-showcase {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin: 40px 0;
}

.visual-item {
    border-radius: 15px;
    overflow: hidden;
    position: relative;
    height: 250px;
    transition: all 0.4s ease;
}

.visual-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
}

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

.visual-item:hover img {
    transform: scale(1.1);
}

.visual-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(10, 31, 12, 0.9), transparent);
    padding: 20px;
    color: white;
    transform: translateY(20px);
    opacity: 0;
    transition: all 0.4s ease;
}

.visual-item:hover .visual-overlay {
    transform: translateY(0);
    opacity: 1;
}

/* Philosophy Grid */
.philosophy-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    margin: 40px 0;
}

.philosophy-card {
    background: rgba(0, 212, 170, 0.05);
    border-radius: 20px;
    padding: 30px;
    position: relative;
    overflow: hidden;
    transition: all 0.4s ease;
    border: 1px solid rgba(0, 212, 170, 0.1);
}

.philosophy-card:hover {
    border-color: var(--secondary);
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 212, 170, 0.2);
}

.philosophy-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: linear-gradient(to bottom, var(--secondary), var(--accent));
}

/* Traveler Profile Cards */
.traveler-profile {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 25px;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 20px;
    margin: 20px 0;
    transition: all 0.3s ease;
    border-left: 4px solid transparent;
}

.traveler-profile:hover {
    background: rgba(0, 212, 170, 0.05);
    border-left-color: var(--secondary);
    transform: translateX(10px);
}

.profile-icon {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--secondary), var(--accent));
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    color: var(--dark);
    flex-shrink: 0;
}

/* Promise Section */
.promise-section {
    position: relative;
    padding: 60px;
    border-radius: 30px;
    overflow: hidden;
    background: linear-gradient(
        135deg,
        rgba(0, 212, 170, 0.1),
        rgba(255, 107, 139, 0.1)
    );
    border: 1px solid rgba(255, 255, 255, 0.1);
}

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

.promise-item {
    text-align: center;
    padding: 25px;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 15px;
    transition: all 0.3s ease;
}

.promise-item:hover {
    background: rgba(255, 255, 255, 0.07);
    transform: translateY(-5px);
}

.promise-icon {
    font-size: 40px;
    margin-bottom: 15px;
    background: linear-gradient(135deg, var(--secondary), var(--accent));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* Responsive Design */
@media (max-width: 768px) {
    .split-layout {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .visual-showcase {
        grid-template-columns: 1fr;
    }

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

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

    .traveler-profile {
        flex-direction: column;
        text-align: center;
    }

    .about-hero h1 {
        font-size: 2.5rem;
    }

    .about-hero p {
        font-size: 1.1rem;
    }

    .btn-primary {
        padding: 14px 30px;
        font-size: 0.9rem;
        width: 100%;
        margin-bottom: 10px;
    }

    .mobile-nav-link {
        font-size: 16px;
        padding: 16px 15px;
    }
}

@media (max-width: 480px) {
    .about-hero h1 {
        font-size: 2rem;
    }

    .about-hero p {
        font-size: 1rem;
    }

    .btn-primary {
        padding: 12px 25px;
        font-size: 0.85rem;
    }
}

/* Section Styles */
.content-section {
    position: relative;
    padding: 100px 0;
}

.section-heading {
    position: relative;
    display: inline-block;
    margin-bottom: 40px;
}

.section-heading::after {
    content: "";
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, var(--secondary), var(--accent));
    border-radius: 2px;
}

/* Background Gradients */
.gradient-bg-1 {
    background: linear-gradient(to bottom, var(--dark), #0a150b);
}

.gradient-bg-2 {
    background: linear-gradient(to bottom, #0a150b, var(--dark));
}

/* Hero Section */
.packages-hero {
    background:
        linear-gradient(rgba(0, 0, 0, 0.6), rgba(2, 2, 2, 0.7)),
        url("../images/package-bg.webp") center/cover;
    min-height: 100vh;
    position: relative;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.hero-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 80vw;
    height: 80vh;
    background: radial-gradient(
        circle,
        rgba(0, 212, 170, 0.1) 0%,
        transparent 70%
    );
    z-index: 0;
    animation: pulse 8s infinite alternate;
}

@keyframes pulse {
    0% {
        opacity: 0.3;
    }
    100% {
        opacity: 0.7;
    }
}

.title-gradient {
    background: linear-gradient(
        135deg,
        var(--secondary) 0%,
        #00ffcc 50%,
        var(--accent) 100%
    );
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Clean Tabs */
.clean-tabs {
    display: flex;
    justify-content: center;
    gap: 2px;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 12px;
    padding: 4px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.clean-tab {
    flex: 1;
    padding: 20px 30px;
    background: transparent;
    color: rgba(255, 255, 255, 0.6);
    border: none;
    font-size: 18px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-align: center;
    border-radius: 10px;
}

.clean-tab:hover {
    color: var(--secondary);
}

.clean-tab.active {
    background: linear-gradient(135deg, var(--secondary) 0%, #00b894 100%);
    color: var(--dark);
    box-shadow: 0 5px 15px rgba(0, 212, 170, 0.3);
}

/* Full Package Layout */
.full-package-layout {
    position: relative;
    padding: 50px 0;
}

.full-package-content {
    margin: 0 auto;
    position: relative;
}

.package-title {
    text-align: center;
    margin-bottom: 40px;
}

.package-badge {
    display: inline-block;
    padding: 8px 24px;
    background: linear-gradient(135deg, var(--accent) 0%, #ff8ba0 100%);
    color: var(--dark);
    border-radius: 20px;
    font-weight: 600;
    font-size: 14px;
    margin-bottom: 20px;
}

/* Destinations Grid */
.destinations-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 25px;
    margin-bottom: 50px;
}

.destination-item {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    transition: all 0.4s ease;
}

.destination-item:hover {
    transform: translateY(-10px);
}

.destination-image {
    width: 100%;
    height: 220px;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.destination-item:hover .destination-image {
    transform: scale(1.05);
}

.destination-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(10, 31, 12, 0.95), transparent);
    padding: 25px;
}

.destination-name {
    font-size: 20px;
    font-weight: 700;
    color: white;
    margin-bottom: 5px;
}

.destination-location {
    color: var(--secondary);
    font-size: 14px;
    font-weight: 500;
}

/* Pricing Section - Clean Layout */
.clean-pricing {
    background: linear-gradient(
        135deg,
        rgba(0, 212, 170, 0.03),
        rgba(255, 107, 139, 0.03)
    );
    border-radius: 20px;
    padding: 40px;
    margin: 40px 0;
    position: relative;
    overflow: hidden;
}

.clean-pricing::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--secondary), var(--accent));
}

.pricing-header {
    text-align: center;
    margin-bottom: 40px;
}

.pricing-options {
    display: flex;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
}

.price-option {
    text-align: center;
    padding: 30px;
    min-width: 250px;
    position: relative;
}

.price-option::after {
    content: "";
    position: absolute;
    right: -20px;
    top: 50%;
    transform: translateY(-50%);
    width: 1px;
    height: 80%;
    background: rgba(255, 255, 255, 0.1);
}

.price-option:last-child::after {
    display: none;
}

.option-label {
    font-size: 14px;
    color: var(--secondary);
    font-weight: 600;
    margin-bottom: 10px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.price-amount {
    font-size: 48px;
    font-weight: 800;
    color: #fff;
    margin-bottom: 5px;
    line-height: 1;
}

.price-duration {
    color: rgba(255, 255, 255, 0.6);
    font-size: 14px;
    margin-bottom: 15px;
}

.price-note {
    color: rgba(255, 255, 255, 0.4);
    font-size: 12px;
    margin-top: 10px;
}

/* Features List */
.features-section {
    margin: 40px 0;
}

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

.feature-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    padding: 20px;
    background: rgba(255, 255, 255, 0.02);
    border-radius: 12px;
    transition: all 0.3s ease;
}

.feature-item:hover {
    background: rgba(255, 255, 255, 0.05);
    transform: translateX(5px);
}

.feature-icon {
    width: 40px;
    height: 40px;
    border-radius: 10px;
    background: linear-gradient(135deg, var(--secondary), var(--accent));
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--dark);
    font-size: 18px;
    flex-shrink: 0;
}

/* Individual Packages */
.individual-packages {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.individual-package {
    background: rgba(255, 255, 255, 0.02);
    border-radius: 20px;
    overflow: hidden;
    transition: all 0.4s ease;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.individual-package:hover {
    transform: translateY(-10px);
    border-color: var(--secondary);
    box-shadow: 0 20px 40px rgba(0, 212, 170, 0.1);
}

.package-image {
    width: 100%;
    height: 220px;
    object-fit: cover;
}

.package-content {
    padding: 30px;
}

.package-subtitle {
    color: var(--secondary);
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 10px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.package-description {
    color: rgba(255, 255, 255, 0.7);
    margin: 20px 0;
    line-height: 1.6;
}

/* Individual Pricing */
.individual-pricing {
    display: flex;
    gap: 10px;
    margin: 25px 0;
    padding: 10px;
    background: rgba(0, 0, 0, 0.2);
    border-radius: 12px;
}

.individual-price {
    flex: 1;
    text-align: center;
    padding: 15px;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 10px;
}

.individual-price:hover {
    background: rgba(255, 255, 255, 0.06);
}

.price-type {
    font-size: 12px;
    color: var(--secondary);
    margin-bottom: 5px;
    font-weight: 600;
}

.individual-amount {
    font-size: 28px;
    font-weight: 700;
    color: white;
    margin-bottom: 5px;
}

/* Booking Button */
.booking-btn {
    display: inline-block;
    width: 100%;
    padding: 18px;
    background: linear-gradient(135deg, var(--secondary) 0%, #00b894 100%);
    color: var(--dark);
    border: none;
    border-radius: 12px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-align: center;
    text-decoration: none;
    margin-top: 20px;
}

.booking-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(0, 212, 170, 0.3);
}

/* Note Section */
.note-section {
    background: linear-gradient(
        135deg,
        rgba(255, 107, 139, 0.05),
        rgba(0, 212, 170, 0.05)
    );
    border-left: 4px solid var(--accent);
    padding: 25px;
    border-radius: 0 12px 12px 0;
    margin: 40px 0;
}

/* Responsive Design */
@media (max-width: 768px) {
    .clean-tabs {
        flex-direction: row;
    }

    .clean-tab {
        padding: 15px;
    }

    .pricing-options {
        flex-direction: column;
        gap: 30px;
    }

    .price-option::after {
        display: none;
    }

    .individual-packages {
        grid-template-columns: 1fr;
    }

    .individual-pricing {
        flex-direction: column;
    }

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

    .packages-hero h1 {
        font-size: 2.5rem;
    }
}

@media (max-width: 480px) {
    .packages-hero h1 {
        font-size: 2rem;
    }

    .clean-pricing {
        padding: 25px;
    }

    .price-amount {
        font-size: 36px;
    }
}

/* Section Styles */
.content-section {
    position: relative;
    padding: 80px 0;
}

.section-heading {
    position: relative;
    display: inline-block;
    margin-bottom: 15px;
}

.section-heading::after {
    content: "";
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 40px;
    height: 3px;
    background: linear-gradient(90deg, var(--secondary), var(--accent));
    border-radius: 2px;
}

/* Background Gradients */
.gradient-bg-1 {
    background: linear-gradient(to bottom, var(--dark), #0a150b);
}

.gradient-bg-2 {
    background: linear-gradient(to bottom, #0a150b, var(--dark));
}

@keyframes float {
    0%,
    100% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-10px);
    }
}

/* Hero Section */
.gallery-hero {
    background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(2, 2, 2, 0.7));
    min-height: 30vh;
    position: relative;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.hero-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 80vw;
    height: 80vh;
    background: radial-gradient(
        circle,
        rgba(0, 212, 170, 0.1) 0%,
        transparent 70%
    );
    z-index: 0;
    animation: pulse 8s infinite alternate;
}

@keyframes pulse {
    0% {
        opacity: 0.3;
    }
    100% {
        opacity: 0.7;
    }
}

.title-gradient {
    background: linear-gradient(
        135deg,
        var(--secondary) 0%,
        #00ffcc 50%,
        var(--accent) 100%
    );
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Gallery Tabs */
.gallery-tabs {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
    margin: 40px 0;
    position: relative;
}
.tab-pane {
    display: none;
}
.tab-pane.active {
    display: block;
}

.tab-button {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(0, 212, 170, 0.2);
    color: var(--light);
    padding: 12px 24px;
    border-radius: 50px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.tab-button:hover {
    background: rgba(0, 212, 170, 0.1);
    border-color: var(--secondary);
    transform: translateY(-2px);
}

.tab-button.active {
    background: linear-gradient(135deg, var(--secondary) 0%, #00b894 100%);
    border-color: transparent;
    color: var(--dark);
    box-shadow: 0 10px 20px rgba(0, 212, 170, 0.3);
}

/* Gallery Grid */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin: 40px 0;
}

.gallery-item {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    cursor: pointer;
    height: 250px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.gallery-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 212, 170, 0.2);
}

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

.gallery-item:hover img {
    transform: scale(1.05);
}

.gallery-overlay {
    display: none;
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(10, 31, 12, 0.9), transparent);
    padding: 20px;
    color: white;
    transform: translateY(20px);
    opacity: 0;
    transition: all 0.4s ease;
}

.gallery-item:hover .gallery-overlay {
    transform: translateY(0);
    opacity: 1;
}

/* Image Modal */
.image-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(7, 10, 8, 0.98);
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    padding: 20px;
}

.image-modal.active {
    opacity: 1;
    visibility: visible;
}

.modal-content {
    position: relative;
    width: 90%;
    max-width: 1000px;
    max-height: 90vh;
}

.modal-image-container {
    width: 100%;
    height: 70vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.modal-image-container img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    border-radius: 10px;
}

.modal-close {
    position: absolute;
    top: 30px;
    right: 30px;
    color: white;
    font-size: 20px;
    cursor: pointer;
    z-index: 2001;
    transition: all 0.3s ease;
}

.modal-close:hover {
    /*background: var(--secondary);
    color: var(--dark); */
}

.modal-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(10, 31, 12, 0.8);
    color: var(--light);
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    font-size: 20px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    z-index: 10;
}

.modal-nav:hover {
    background: var(--secondary);
    color: var(--dark);
}

.modal-prev {
    left: 20px;
}

.modal-next {
    right: 20px;
}

.modal-info {
    background: rgba(10, 31, 12, 0.8);
    padding: 20px;
    border-radius: 0 0 10px 10px;
    margin-top: -5px;
}

.modal-counter {
    position: absolute;
    top: -50px;
    left: 0;
    color: white;
    font-size: 16px;
}

/* Mobile Menu */
.mobile-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 85%;
    max-width: 300px;
    height: 100vh;
    background: rgba(10, 31, 12, 0.95);
    backdrop-filter: blur(30px);
    z-index: 999;
    transition: right 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: -5px 0 15px rgba(0, 0, 0, 0.2);
    overflow-y: auto;
    display: flex;
    flex-direction: column;
}

.mobile-menu.active {
    right: 0;
}

.mobile-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    z-index: 998;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.mobile-overlay.active {
    opacity: 1;
    visibility: visible;
}

/* Responsive */
@media (max-width: 1024px) {
    .gallery-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

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

    .tab-button {
        padding: 10px 18px;
        font-size: 0.9rem;
    }

    .modal-nav {
        width: 40px;
        height: 40px;
        font-size: 18px;
    }

    .modal-prev {
        left: 10px;
    }

    .modal-next {
        right: 10px;
    }
}

@media (max-width: 480px) {
    /*.gallery-grid {
        grid-template-columns: 1fr;
    }*/

    .gallery-item {
        height: 150px;
    }

    .tab-button {
        padding: 8px;
        font-size: 0.5rem;
    }
}

.gradient-bg-1 {
    background: linear-gradient(to bottom, var(--dark), #0a150b);
}

/* Property Detail Page */
/* Property Hero Section */
.property-hero {
    background:
        linear-gradient(rgba(0, 0, 0, 0.6), rgba(2, 2, 2, 0.7)),
        url("https://images.unsplash.com/photo-1566073771259-6a8506099945?ixlib=rb-4.0.3&auto=format&fit=crop&w=2070&q=80")
            center/cover;
    min-height: 100vh;
    position: relative;
    display: flex;
    align-items: center;
    overflow: hidden;
}

@keyframes pulse {
    0% {
        opacity: 0.3;
    }
    100% {
        opacity: 0.7;
    }
}

/* Property Tabs Navigation */
.property-tabs {
    position: sticky;
    top: 0;
    z-index: 100;
    background: rgba(10, 31, 12, 0.95);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(0, 212, 170, 0.2);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.3);
}

.property-tabs-container {
    display: flex;
    overflow-x: auto;
    padding: 0;
    scrollbar-width: none;
}

.property-tabs-container::-webkit-scrollbar {
    display: none;
}

.property-tab {
    padding: 20px 30px;
    background: transparent;
    border: none;
    font-weight: 600;
    color: rgba(240, 247, 244, 0.7);
    cursor: pointer;
    white-space: nowrap;
    transition: all 0.3s ease;
    position: relative;
    font-family: "Space Grotesk", sans-serif;
}

.property-tab:hover {
    color: var(--secondary);
}

.property-tab.active {
    color: var(--secondary);
}

.property-tab.active::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, var(--secondary), var(--accent));
}

/* Geometric Background Elements */
.geometric-bg {
    position: absolute;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 0;
    overflow: hidden;
}

.geometric-shape {
    position: absolute;
    border: 1px solid rgba(0, 212, 170, 0.1);
    border-radius: 20px;
}

.shape-1 {
    top: 10%;
    left: 5%;
    width: 150px;
    height: 150px;
    transform: rotate(45deg);
    animation: float 15s infinite ease-in-out;
}

.shape-2 {
    bottom: 20%;
    right: 10%;
    width: 100px;
    height: 100px;
    transform: rotate(20deg);
    animation: float 20s infinite ease-in-out reverse;
}

/* Floating Elements */
.floating-element {
    animation: float 8s ease-in-out infinite;
    position: relative;
}

@keyframes float {
    0%,
    100% {
        transform: translateY(0px) rotate(0deg);
    }
    50% {
        transform: translateY(-20px) rotate(5deg);
    }
}

/* Overview Gallery */
.overview-gallery {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin: 30px 0;
}

.property-gallery-item {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    cursor: pointer;
    height: 250px;
    transition: all 0.4s ease;
    border: 1px solid rgba(0, 212, 170, 0.2);
}

.property-gallery-item:hover {
    transform: translateY(-10px);
    border-color: var(--secondary);
    box-shadow: 0 20px 40px rgba(0, 212, 170, 0.2);
}

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

.property-gallery-item:hover img {
    transform: scale(1.1);
}

/* Full Gallery Modal */
.full-gallery-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(7, 10, 8, 0.98);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2000;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.full-gallery-modal.active {
    opacity: 1;
    visibility: visible;
}

.full-gallery-content {
    position: relative;
    max-width: 90%;
    max-height: 90%;
}

.full-gallery-img {
    max-width: 100%;
    max-height: 85vh;
    object-fit: contain;
    border-radius: 15px;
    border: 1px solid rgba(0, 212, 170, 0.3);
}

.gallery-close {
    position: absolute;
    top: -60px;
    right: 0;
    color: var(--secondary);
    font-size: 40px;
    cursor: pointer;
    background: none;
    border: none;
    outline: none;
    transition: color 0.3s ease;
}

.gallery-close:hover {
    color: var(--accent);
}

.gallery-nav {
    position: absolute;
    top: 50%;
    width: 100%;
    display: flex;
    justify-content: space-between;
    padding: 0 20px;
    transform: translateY(-50%);
}

.gallery-nav-btn {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: rgba(0, 212, 170, 0.2);
    border: 1px solid rgba(0, 212, 170, 0.3);
    color: var(--light);
    font-size: 24px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.gallery-nav-btn:hover {
    background: var(--secondary);
    transform: scale(1.1);
    color: var(--dark);
}

/* Rooms Grid Layout */
.rooms-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    margin: 40px 0;
}

@media (max-width: 768px) {
    .rooms-grid {
        grid-template-columns: 1fr;
    }
}

.room-card {
    background: rgba(255, 255, 255, 0.03);
    border-radius: 20px;
    overflow: hidden;
    border: 1px solid rgba(0, 212, 170, 0.2);
    transition: all 0.4s ease;
}

.room-card:hover {
    border-color: var(--secondary);
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 212, 170, 0.2);
}

.room-slider {
    position: relative;
    height: 300px;
    overflow: hidden;
}

.room-slides {
    display: flex;
    transition: transform 0.5s ease;
    height: 100%;
}

.room-slide {
    min-width: 100%;
    height: 100%;
    position: relative;
}

.room-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.room-slide-nav {
    position: absolute;
    top: 50%;
    width: 100%;
    display: flex;
    justify-content: space-between;
    padding: 0 20px;
    transform: translateY(-50%);
}

.room-slide-btn {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: rgba(0, 212, 170, 0.2);
    border: 1px solid rgba(0, 212, 170, 0.3);
    color: var(--light);
    font-size: 20px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.room-slide-btn:hover {
    background: var(--secondary);
    color: var(--dark);
}

.room-dots {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
}

.room-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
}

.room-dot.active {
    background: var(--secondary);
    transform: scale(1.2);
}

.room-info {
    padding: 30px;
}

/* Amenities Grid */
.amenities-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin: 40px 0;
}

@media (min-width: 768px) {
    .amenities-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (min-width: 1024px) {
    .amenities-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

.amenity-item {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 20px;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 15px;
    border: 1px solid rgba(0, 212, 170, 0.1);
    transition: all 0.3s ease;
}

.amenity-item:hover {
    border-color: var(--secondary);
    transform: translateY(-5px);
    background: rgba(0, 212, 170, 0.05);
}

.amenity-icon {
    width: 50px;
    height: 50px;
    border-radius: 12px;
    background: linear-gradient(135deg, var(--secondary), var(--accent));
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--dark);
    font-size: 22px;
}

/* Map Container */
.map-container {
    border-radius: 20px;
    overflow: hidden;
    border: 1px solid rgba(0, 212, 170, 0.2);
    height: 400px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

/* Reviews */
.review-card {
    background: rgba(255, 255, 255, 0.03);
    border-radius: 20px;
    padding: 30px;
    border: 1px solid rgba(0, 212, 170, 0.1);
    transition: all 0.3s ease;
}

.review-card:hover {
    border-color: var(--secondary);
    transform: translateY(-5px);
}

/* FAQ Accordion */
.faq-item {
    background: rgba(255, 255, 255, 0.03);
    border-radius: 15px;
    margin-bottom: 15px;
    overflow: hidden;
    border: 1px solid rgba(0, 212, 170, 0.1);
    transition: all 0.3s ease;
}

.faq-item:hover {
    border-color: rgba(0, 212, 170, 0.3);
}

.faq-question {
    padding: 25px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    font-weight: 600;
    font-size: 18px;
}

.faq-answer {
    padding: 0 25px;
    max-height: 0;
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item.active .faq-answer {
    padding: 0 25px 25px;
    max-height: 500px;
}

.faq-toggle {
    transition: transform 0.3s ease;
    color: var(--secondary);
}

.faq-item.active .faq-toggle {
    transform: rotate(45deg);
}

/* Booking Modal */
.booking-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(7, 10, 8, 0.95);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2000;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.booking-modal.active {
    opacity: 1;
    visibility: visible;
}

.booking-content {
    background: linear-gradient(
        135deg,
        rgba(10, 31, 12, 0.95),
        rgba(7, 10, 8, 0.95)
    );
    border-radius: 30px;
    padding: 40px;
    max-width: 500px;
    width: 90%;
    max-height: 90vh;
    overflow-y: auto;
    border: 1px solid rgba(0, 212, 170, 0.3);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
}

/* Sticky booking widget */
.sticky-booking {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(10, 31, 12, 0.95);
    backdrop-filter: blur(20px);
    border-top: 1px solid rgba(0, 212, 170, 0.3);
    padding: 20px 0;
    z-index: 100;
    box-shadow: 0 -5px 30px rgba(0, 0, 0, 0.3);
}

/* Glowing Buttons */
.btn-primary {
    background: linear-gradient(135deg, var(--secondary) 0%, #00b894 100%);
    color: var(--dark);
    padding: 16px 40px;
    border-radius: 50px;
    font-weight: 600;
    text-decoration: none;
    display: inline-block;
    position: relative;
    overflow: hidden;
    border: none;
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(0, 212, 170, 0.3);
    cursor: pointer;
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(0, 212, 170, 0.4);
}

.btn-accent {
    background: linear-gradient(135deg, var(--accent) 0%, #ff8ba0 100%);
    color: var(--light);
    padding: 16px 40px;
    border-radius: 50px;
    font-weight: 600;
    text-decoration: none;
    display: inline-block;
    position: relative;
    overflow: hidden;
    border: none;
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(255, 107, 139, 0.3);
    cursor: pointer;
}

.btn-accent:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(255, 107, 139, 0.4);
}

/* Content Layouts */
.split-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.content-text {
    position: relative;
    z-index: 2;
}

.content-visual {
    position: relative;
    z-index: 1;
}

/* Responsive Design */
@media (max-width: 768px) {
    .split-layout {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .overview-gallery {
        grid-template-columns: 1fr;
    }

    .property-tab {
        padding: 15px 20px;
        font-size: 14px;
    }

    .room-slider {
        height: 250px;
    }

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

    .booking-content {
        padding: 25px;
    }

    .mobile-nav-link {
        font-size: 16px;
        padding: 16px 15px;
    }
}

@media (max-width: 480px) {
    .property-hero h1 {
        font-size: 2.5rem;
    }

    .property-hero p {
        font-size: 1rem;
    }

    .btn-primary,
    .btn-accent {
        padding: 14px 30px;
        font-size: 0.9rem;
        width: 100%;
        margin-bottom: 10px;
    }
}

/* Checkout Layout */
.checkout-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 40px 20px;
}

.checkout-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    position: relative;
    z-index: 2;
}

@media (max-width: 1024px) {
    .checkout-grid {
        grid-template-columns: 1fr;
    }
}

/* Checkout Cards */
.checkout-card {
    background: rgba(255, 255, 255, 0.03);
    border-radius: 25px;
    border: 1px solid rgba(0, 212, 170, 0.2);
    padding: 40px;
    transition: all 0.3s ease;
}

.checkout-card:hover {
    border-color: rgba(0, 212, 170, 0.4);
    box-shadow: 0 20px 40px rgba(0, 212, 170, 0.1);
}

.btn-outline {
    background: transparent;
    color: var(--secondary);
    padding: 16px 40px;
    border-radius: 50px;
    font-weight: 600;
    text-decoration: none;
    display: inline-block;
    position: relative;
    overflow: hidden;
    border: 2px solid var(--secondary);
    transition: all 0.3s ease;
    cursor: pointer;
}

.btn-outline:hover {
    background: rgba(0, 212, 170, 0.1);
    transform: translateY(-3px);
}

/* Form Styles */
.form-group {
    margin-bottom: 25px;
}

.form-label {
    display: block;
    font-weight: 600;
    margin-bottom: 10px;
    color: var(--light);
    font-size: 16px;
}

.form-input {
    width: 100%;
    padding: 16px 20px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    color: var(--light);
    font-size: 16px;
    transition: all 0.3s ease;
}

.form-input:focus {
    outline: none;
    border-color: var(--secondary);
    box-shadow: 0 0 0 3px rgba(0, 212, 170, 0.1);
    background: rgba(255, 255, 255, 0.08);
}

.form-input::placeholder {
    color: rgba(255, 255, 255, 0.4);
}

/* Booking Summary */
.booking-summary {
    background: rgba(255, 255, 255, 0.03);
    border-radius: 20px;
    padding: 30px;
    border: 1px solid rgba(0, 212, 170, 0.2);
    margin-bottom: 30px;
}

.summary-item {
    display: flex;
    justify-content: space-between;
    padding: 15px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.summary-item:last-child {
    border-bottom: none;
}

.summary-item.total {
    font-size: 24px;
    font-weight: 700;
    color: var(--secondary);
    padding-top: 20px;
    margin-top: 20px;
    border-top: 2px solid rgba(0, 212, 170, 0.3);
}

/* Coupon Section */
.coupon-section {
    background: rgba(255, 107, 139, 0.05);
    border-radius: 20px;
    padding: 30px;
    border: 1px solid rgba(255, 107, 139, 0.2);
    margin-bottom: 30px;
}

.coupon-input-group {
    display: flex;
    gap: 15px;
    margin-bottom: 20px;
}

.coupon-input {
    flex: 1;
    padding: 16px 20px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    color: var(--light);
    font-size: 16px;
}

.coupon-input:focus {
    outline: none;
    border-color: var(--accent);
}

/* Payment Options */
.payment-options {
    margin-bottom: 30px;
}

.payment-method {
    display: flex;
    align-items: center;
    padding: 20px;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 15px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    margin-bottom: 15px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.payment-method:hover {
    border-color: var(--secondary);
    background: rgba(0, 212, 170, 0.05);
}

.payment-method.selected {
    border-color: var(--secondary);
    background: rgba(0, 212, 170, 0.1);
}

.payment-icon {
    width: 50px;
    height: 50px;
    border-radius: 12px;
    background: linear-gradient(135deg, var(--secondary), var(--accent));
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--dark);
    font-size: 22px;
    margin-right: 20px;
}

/* Coupons Modal */
.coupons-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(7, 10, 8, 0.95);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2000;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.coupons-modal.active {
    opacity: 1;
    visibility: visible;
}

.coupons-content {
    background: linear-gradient(
        135deg,
        rgba(10, 31, 12, 0.95),
        rgba(7, 10, 8, 0.95)
    );
    border-radius: 30px;
    padding: 40px;
    max-width: 600px;
    width: 90%;
    max-height: 80vh;
    overflow-y: auto;
    border: 1px solid rgba(0, 212, 170, 0.3);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
}

.coupon-card {
    background: rgba(255, 255, 255, 0.03);
    border-radius: 15px;
    padding: 25px;
    margin-bottom: 20px;
    border: 1px solid rgba(0, 212, 170, 0.2);
    transition: all 0.3s ease;
    cursor: pointer;
}

.coupon-card:hover {
    border-color: var(--secondary);
    transform: translateY(-5px);
    background: rgba(0, 212, 170, 0.05);
}

.coupon-card.active {
    border-color: var(--secondary);
    background: rgba(0, 212, 170, 0.1);
}
