/* Reset & Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary: #d4af37;
    --primary-dark: #b8941f;
    --secondary: #1a1a2e;
    --accent: #c9a961;
    --gold: #f4e4c1;
    --dark: #0f0f1e;
    --light: #f8f9fa;
    --white: #ffffff;
    --text: #2c3e50;
    --text-light: #6c757d;
    --gradient: linear-gradient(135deg, #d4af37 0%, #c9a961 50%, #b8941f 100%);
    --gradient-dark: linear-gradient(135deg, #1a1a2e 0%, #0f0f1e 100%);
    --shadow: 0 5px 20px rgba(212, 175, 55, 0.15);
    --shadow-lg: 0 15px 40px rgba(212, 175, 55, 0.25);
    --transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Poppins', sans-serif;
    line-height: 1.7;
    color: var(--text);
    overflow-x: hidden;
    background: var(--white);
    position: relative;
}

body.menu-open {
    overflow: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Playfair Display', serif;
    font-weight: 700;
    line-height: 1.3;
    color: var(--secondary);
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

ul {
    list-style: none;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Preloader */
.preloader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--secondary);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    transition: opacity 0.5s, visibility 0.5s;
}

.preloader.hide {
    opacity: 0;
    visibility: hidden;
}

.loader .plane {
    font-size: 50px;
    color: var(--primary);
    animation: fly 2s ease-in-out infinite;
}

@keyframes fly {
    0%, 100% {
        transform: translateY(0) rotate(0deg);
    }
    50% {
        transform: translateY(-30px) rotate(10deg);
    }
}

/* Top Bar */
.top-bar {
    background: var(--gradient-dark);
    color: var(--white);
    padding: 5px 0;
    font-size: 13px;
    border-bottom: 1px solid rgba(212, 175, 55, 0.2);
}

.top-bar-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 15px;
}

.contact-info {
    display: flex;
    gap: 25px;
    flex-wrap: wrap;
}

.contact-info a {
    color: var(--white);
    transition: var(--transition);
    display: flex;
    align-items: center;
    gap: 8px;
}

.contact-info a:hover {
    color: var(--primary);
}

.contact-info i {
    color: var(--white);
    font-size: 14px;
}

.social-links {
    display: flex;
    gap: 12px;
}

.social-links a {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    transition: var(--transition);
}

.social-links a:hover {
    background: var(--primary);
    transform: translateY(-3px);
}

/* Header */
.header {
    background: var(--white);
    box-shadow: var(--shadow);
    position: sticky;
    top: 0;
    z-index: 1000;
    transition: var(--transition);
}

.header.scrolled {
    box-shadow: var(--shadow-lg);
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 0;
    gap: 20px;
    position: relative;
}

.logo {
    display: flex;
    align-items: center;
    gap: 15px;
    z-index: 1001;
}

.logo img {
    height: 80px;
    width: auto;
}

.logo-text h1 {
    font-size: 24px;
    color: var(--secondary);
    margin: 0;
    line-height: 1.2;
}

.logo-text span {
    font-size: 11px;
    color: var(--primary);
    font-weight: 500;
    letter-spacing: 2px;
    text-transform: uppercase;
    display: block;
}

.nav-menu {
    display: flex;
    gap: 35px;
    align-items: center;
    list-style: none;
}

.nav-menu a {
    color: var(--secondary);
    font-weight: 500;
    font-size: 15px;
    position: relative;
    padding: 8px 0;
}

dl, ol, ul {
    margin-top: 0;
    margin-bottom: 0rem !important;
}

/* .nav-menu a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gradient);
    transition: var(--transition);
} */

.nav-menu a:hover::after,
.nav-menu a.active::after {
    width: 100%;
}

.nav-menu a:hover,
.nav-menu a.active {
    color: var(--primary);
}

.nav-actions {
    display: flex;
    gap: 15px;
}

.btn-quote {
    padding: 10px 25px;
    background: var(--gradient);
    color: var(--white);
    border-radius: 50px;
    font-weight: 600;
    font-size: 14px;
    transition: var(--transition);
}

.btn-quote:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-lg);
}

/* ===== HAMBURGER MENU FIX ===== */
.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 5px;
    z-index: 1001;
    position: relative;
}

.hamburger span {
    width: 28px;
    height: 3px;
    background: var(--secondary);
    border-radius: 3px;
    transition: var(--transition);
}

/* FIXED: Cross button now visible in dark color */
.hamburger.active span {
    background: var(--secondary);
}

.hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(7px, 7px);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
}

.hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -7px);
}

/* Menu Overlay */
.menu-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s;
    z-index: 999;
}

.menu-overlay.active {
    opacity: 1;
    visibility: visible;
}

/* Hero Section */
.hero {
    position: relative;
    height: 100vh;
    overflow: hidden;
}

.hero-slide {
    position: relative;
    height: 100vh;
}

.hero-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(26, 26, 46, 0.8) 0%, rgba(15, 15, 30, 0.6) 100%);
    z-index: 1;
}

.hero .container {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    z-index: 2;
}

.hero-content {
    text-align: center;
    color: var(--white);
    max-width: 900px;
    margin: 0 auto;
    padding: 0 20px;
}

.hero-label {
    display: inline-block;
    padding: 8px 25px;
    background: rgba(212, 175, 55, 0.2);
    border: 1px solid var(--primary);
    border-radius: 50px;
    color: var(--primary);
    font-size: 13px;
    font-weight: 500;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 25px;
    backdrop-filter: blur(10px);
}

.hero-title {
    font-size: 4rem;
    font-weight: 800;
    color: var(--white);
    margin-bottom: 25px;
    line-height: 1.2;
    text-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.hero-subtitle {
    font-size: 1.3rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 40px;
    font-weight: 300;
}

.hero-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 14px 35px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 15px;
    transition: var(--transition);
    border: 2px solid transparent;
    cursor: pointer;
}

.btn-primary {
    background: var(--gradient);
    color: var(--white);
    border-color: var(--primary);
}

.btn-primary:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.btn-outline {
    background: transparent;
    color: var(--white);
    border-color: var(--white);
}

.btn-outline:hover {
    background: var(--white);
    color: var(--primary);
}

.btn-light {
    background: var(--white);
    color: var(--primary);
}

.btn-light:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(255, 255, 255, 0.3);
}

.btn-large {
    padding: 16px 45px;
    font-size: 16px;
}

.btn-block {
    width: 100%;
}

.scroll-indicator {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
    text-align: center;
    color: var(--white);
    animation: bounce 2s infinite;
}

.scroll-indicator .mouse {
    width: 26px;
    height: 40px;
    border: 2px solid var(--primary);
    border-radius: 20px;
    margin: 0 auto 10px;
    position: relative;
}

.scroll-indicator .wheel {
    width: 3px;
    height: 8px;
    background: var(--primary);
    border-radius: 3px;
    position: absolute;
    top: 8px;
    left: 50%;
    transform: translateX(-50%);
    animation: scroll 2s infinite;
}

@keyframes scroll {
    0% {
        opacity: 1;
        top: 8px;
    }
    100% {
        opacity: 0;
        top: 24px;
    }
}

@keyframes bounce {
    0%, 100% {
        transform: translateX(-50%) translateY(0);
    }
    50% {
        transform: translateX(-50%) translateY(-10px);
    }
}

.scroll-indicator span {
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 500;
}

/* Features Section */
.features {
    padding: 80px 0;
    background: linear-gradient(180deg, var(--light) 0%, var(--white) 100%);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 30px;
}

.feature-card {
    background: var(--white);
    padding: 45px 35px;
    border-radius: 20px;
    text-align: center;
    box-shadow: var(--shadow);
    transition: var(--transition);
    border: 1px solid rgba(212, 175, 55, 0.1);
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
    border-color: var(--primary);
}

.feature-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 25px;
    background: var(--gradient);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 35px;
    color: var(--white);
    transition: var(--transition);
}

.feature-card:hover .feature-icon {
    transform: rotateY(360deg);
}

.feature-card h3 {
    font-size: 20px;
    color: var(--secondary);
    margin-bottom: 15px;
}

.feature-card p {
    color: var(--text-light);
    font-size: 14px;
    line-height: 1.8;
}

/* About Section */
.about {
    padding: 100px 0;
    background: var(--white);
}

.about-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.about-images {
    position: relative;
    min-height: 500px;
}

.about-image-main {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.about-image-main img {
    width: 100%;
    height: 500px;
    object-fit: cover;
}

.experience-badge {
    position: absolute;
    bottom: 30px;
    right: 30px;
    background: var(--gradient);
    padding: 30px;
    border-radius: 15px;
    text-align: center;
    color: var(--white);
    box-shadow: var(--shadow-lg);
    z-index: 2;
}

.experience-badge .number {
    display: block;
    font-size: 45px;
    font-weight: 800;
    line-height: 1;
}

.experience-badge .text {
    font-size: 14px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.about-image-small {
    position: absolute;
    top: 50px;
    left: -50px;
    width: 250px;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    border: 5px solid var(--white);
}

.about-image-small img {
    width: 100%;
    height: 280px;
    object-fit: cover;
}

.section-label {
    display: inline-block;
    color: var(--primary);
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 3px;
    margin-bottom: 15px;
}

.section-title {
    font-size: 2.8rem;
    color: var(--secondary);
    margin-bottom: 20px;
    line-height: 1.3;
}

.title-line {
    width: 80px;
    height: 4px;
    background: var(--gradient);
    margin-bottom: 25px;
    border-radius: 2px;
}

.about-text {
    color: var(--text-light);
    font-size: 15px;
    line-height: 1.9;
    margin-bottom: 20px;
}

.about-features {
    margin: 35px 0;
}

.about-feature {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 15px;
}

.about-feature i {
    color: var(--primary);
    font-size: 20px;
}

.about-feature span {
    color: var(--text);
    font-weight: 500;
    font-size: 15px;
}

.about-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin: 40px 0;
}

.stat-item {
    text-align: center;
    padding: 25px;
    background: var(--light);
    border-radius: 15px;
    transition: var(--transition);
}

.stat-item:hover {
    background: var(--gradient);
    transform: translateY(-5px);
}

.stat-number {
    font-size: 2.5rem;
    color: var(--primary);
    margin-bottom: 10px;
    font-weight: 800;
}

.stat-item:hover .stat-number {
    color: var(--white);
}

.stat-item p {
    color: var(--text);
    font-size: 14px;
    font-weight: 500;
}

.stat-item:hover p {
    color: var(--white);
}

/* Services Section */
.services {
    padding: 100px 0;
    background: linear-gradient(180deg, var(--light) 0%, var(--white) 100%);
}

.section-header {
    text-align: center;
    margin-bottom: 70px;
}

.section-subtitle {
    color: var(--text-light);
    font-size: 16px;
    max-width: 600px;
    margin: 0 auto;
}

.section-header .title-line {
    margin-left: auto;
    margin-right: auto;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 40px;
}

.service-card {
    background: var(--white);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
    border: 1px solid rgba(212, 175, 55, 0.1);
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
    border-color: var(--primary);
}

.service-image {
    position: relative;
    height: 250px;
    overflow: hidden;
}

.service-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.service-card:hover .service-image img {
    transform: scale(1.1);
}

.service-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, transparent 0%, rgba(26, 26, 46, 0.7) 100%);
    opacity: 0;
    transition: var(--transition);
}

.service-card:hover .service-overlay {
    opacity: 1;
}

.service-content {
    padding: 35px 30px;
}

.service-icon {
    width: 70px;
    height: 70px;
    background: var(--gradient);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 30px;
    color: var(--white);
    margin-bottom: 25px;
    transition: var(--transition);
}

.service-card:hover .service-icon {
    transform: rotateY(180deg);
}

.service-content h3 {
    font-size: 22px;
    color: var(--secondary);
    margin-bottom: 15px;
}

.service-content p {
    color: var(--text-light);
    font-size: 14px;
    line-height: 1.8;
    margin-bottom: 20px;
}

.service-list {
    margin-bottom: 25px;
}

.service-list li {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--text);
    font-size: 14px;
    margin-bottom: 10px;
}

.service-list i {
    color: var(--primary);
    font-size: 12px;
}

.service-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--primary);
    font-weight: 600;
    font-size: 14px;
    transition: var(--transition);
}

.service-link:hover {
    gap: 12px;
    color: var(--primary-dark);
}

/* Tour Packages Section */
.tour-packages {
    padding: 100px 0;
    background: var(--white);
}

.package-card {
    background: var(--white);
    border-radius: 25px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
    margin: 15px;
    border: 1px solid rgba(212, 175, 55, 0.1);
    position: relative;
}

.package-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
}

.package-ribbon {
    position: absolute;
    top: 20px;
    right: -35px;
    background: var(--gradient);
    color: var(--white);
    padding: 8px 45px;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    z-index: 2;
    transform: rotate(45deg);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.package-image {
    position: relative;
    height: 320px;
    overflow: hidden;
}

.package-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.package-card:hover .package-image img {
    transform: scale(1.15);
}

.package-badge {
    position: absolute;
    top: 20px;
    left: 20px;
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.95);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    color: var(--primary);
    z-index: 2;
    cursor: pointer;
    transition: var(--transition);
}

.package-badge:hover {
    background: var(--primary);
    color: var(--white);
    transform: scale(1.1);
}

.package-content {
    padding: 35px;
}

.package-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 20px;
    gap: 15px;
}

.package-header h3 {
    font-size: 23px;
    color: var(--secondary);
    flex: 1;
}

.package-rating {
    display: flex;
    align-items: center;
    gap: 3px;
    white-space: nowrap;
}

.package-rating i {
    color: #ffa500;
    font-size: 14px;
}

.package-rating span {
    margin-left: 8px;
    color: var(--text);
    font-weight: 600;
    font-size: 14px;
}

.package-meta {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 20px;
    padding: 20px;
    background: var(--light);
    border-radius: 12px;
}

.meta-item {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--text);
    font-size: 14px;
}

.meta-item i {
    color: var(--primary);
    font-size: 16px;
}

.package-description {
    color: var(--text-light);
    font-size: 14px;
    line-height: 1.8;
    margin-bottom: 25px;
}

.package-highlights {
    margin-bottom: 25px;
    padding: 20px;
    background: rgba(212, 175, 55, 0.05);
    border-radius: 12px;
    border-left: 4px solid var(--primary);
}

.package-highlights h4 {
    font-size: 16px;
    color: var(--secondary);
    margin-bottom: 15px;
}

.package-highlights ul li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    color: var(--text);
    font-size: 13px;
    margin-bottom: 10px;
    line-height: 1.6;
}

.package-highlights i {
    color: var(--primary);
    font-size: 12px;
    margin-top: 3px;
}

.package-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 25px;
    border-top: 2px solid rgba(212, 175, 55, 0.2);
    gap: 20px;
}

.package-price .label {
    display: block;
    font-size: 12px;
    color: var(--text-light);
    margin-bottom: 5px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.price-box {
    display: flex;
    align-items: baseline;
    gap: 3px;
}

.currency {
    font-size: 20px;
    color: var(--primary);
    font-weight: 700;
}

.amount {
    font-size: 32px;
    color: var(--secondary);
    font-weight: 800;
    line-height: 1;
}

.per {
    font-size: 14px;
    color: var(--text-light);
}

/* Promo Banner */
.promo-banner {
    padding: 100px 0;
    background: linear-gradient(135deg, rgba(26, 26, 46, 0.95) 0%, rgba(15, 15, 30, 0.95) 100%), 
                url('https://images.unsplash.com/photo-1469854523086-cc02fe5d8800?w=1600') center/cover fixed;
    position: relative;
    color: var(--white);
    text-align: center;
}

.promo-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.1) 0%, rgba(201, 169, 97, 0.05) 100%);
}

.promo-content {
    position: relative;
    z-index: 1;
}

.promo-icon {
    width: 90px;
    height: 90px;
    background: var(--gradient);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 40px;
    color: var(--white);
    margin: 0 auto 30px;
    box-shadow: 0 10px 40px rgba(212, 175, 55, 0.4);
}

.promo-content h2 {
    font-size: 2rem;
    color: var(--primary);
    margin-bottom: 15px;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.promo-content h3 {
    font-size: 3rem;
    color: var(--white);
    margin-bottom: 20px;
    font-weight: 800;
}

.promo-content > p {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 40px;
}

.promo-benefits {
    display: flex;
    justify-content: center;
    gap: 40px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.benefit-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 15px 30px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(212, 175, 55, 0.3);
}

.benefit-item i {
    color: var(--primary);
    font-size: 20px;
}

.benefit-item span {
    color: var(--white);
    font-weight: 500;
    font-size: 15px;
}

/* Destinations Section */
.destinations {
    padding: 100px 0;
    background: linear-gradient(180deg, var(--white) 0%, var(--light) 100%);
}

.destinations-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
}

.destination-card {
    position: relative;
    height: 400px;
    border-radius: 20px;
    overflow: hidden;
    cursor: pointer;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.destination-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
}

.dest-image {
    height: 100%;
}

.dest-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.destination-card:hover .dest-image img {
    transform: scale(1.15);
}

.dest-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, transparent 0%, rgba(26, 26, 46, 0.85) 100%);
    transition: var(--transition);
}

.destination-card:hover .dest-overlay {
    background: linear-gradient(180deg, rgba(26, 26, 46, 0.3) 0%, rgba(15, 15, 30, 0.9) 100%);
}

.dest-content {
    position: absolute;
    bottom: 30px;
    left: 30px;
    right: 30px;
    color: var(--white);
    z-index: 2;
}

.dest-content h3 {
    font-size: 28px;
    color: var(--white);
    margin-bottom: 8px;
}

.dest-content p {
    font-size: 15px;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 15px;
}

.dest-info {
    display: flex;
    gap: 20px;
    font-size: 13px;
    color: rgba(255, 255, 255, 0.8);
}

.dest-info span {
    display: flex;
    align-items: center;
    gap: 6px;
}

.dest-info i {
    color: var(--primary);
}

.dest-link {
    position: absolute;
    bottom: 30px;
    right: 30px;
    background: var(--gradient);
    color: var(--white);
    padding: 12px 25px;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 600;
    opacity: 0;
    transform: translateY(20px);
    transition: var(--transition);
    display: flex;
    align-items: center;
    gap: 8px;
    z-index: 3;
}

.destination-card:hover .dest-link {
    opacity: 1;
    transform: translateY(0);
}

/* Gallery Section */
.gallery {
    padding: 100px 0;
    background: var(--white);
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
}

.gallery-item {
    position: relative;
    height: 300px;
    border-radius: 15px;
    overflow: hidden;
    cursor: pointer;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.gallery-item:hover {
    transform: scale(1.05);
    box-shadow: var(--shadow-lg);
    z-index: 10;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.gallery-item:hover img {
    transform: scale(1.2);
}

.gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(26, 26, 46, 0.7);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: var(--transition);
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

.gallery-overlay i {
    font-size: 40px;
    color: var(--primary);
    transform: scale(0);
    transition: var(--transition);
}

.gallery-item:hover .gallery-overlay i {
    transform: scale(1);
}

/* Testimonials Section */
.testimonials {
    padding: 100px 0;
    background: linear-gradient(135deg, var(--secondary) 0%, var(--dark) 100%);
    position: relative;
}

.testimonials .section-label,
.testimonials .section-title,
.testimonials .section-subtitle {
    color: var(--white);
}

.testimonials .title-line {
    background: var(--gradient);
    margin-left: auto;
    margin-right: auto;
}

.testimonial-card {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    padding: 40px;
    border-radius: 20px;
    border: 1px solid rgba(212, 175, 55, 0.2);
    margin: 15px;
    transition: var(--transition);
}

.testimonial-card:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: var(--primary);
    transform: translateY(-5px);
}

.testimonial-header {
    display: flex;
    gap: 20px;
    align-items: center;
    margin-bottom: 25px;
}

.testimonial-header img {
    width: 70px !important;
    height: 70px;
    border-radius: 50%;
    border: 3px solid var(--primary);
    object-fit: cover;
}

.client-info h4 {
    color: var(--white);
    font-size: 18px;
    margin-bottom: 5px;
}

.client-info p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 13px;
    margin-bottom: 8px;
}

.rating {
    display: flex;
    gap: 3px;
}

.rating i {
    color: #ffa500;
    font-size: 14px;
}

.testimonial-content {
    position: relative;
}

.quote-icon {
    font-size: 30px;
    color: var(--primary);
    margin-bottom: 15px;
}

.testimonial-content p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 15px;
    line-height: 1.9;
    font-style: italic;
}

/* CTA Section */
.cta-section {
    padding: 80px 0;
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.1) 0%, rgba(201, 169, 97, 0.05) 100%);
}

.cta-wrapper {
    background: var(--gradient);
    padding: 60px;
    border-radius: 25px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 40px;
    box-shadow: var(--shadow-lg);
}

.cta-content h2 {
    font-size: 2.5rem;
    color: var(--white);
    margin-bottom: 15px;
}

.cta-content p {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.9);
}

.cta-buttons {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

/* Contact Section */
.contact {
    padding: 100px 0;
    background: var(--white);
}

.contact-wrapper {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 60px;
    margin-top: 50px;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.contact-card {
    display: flex;
    gap: 20px;
    padding: 25px;
    background: var(--light);
    border-radius: 15px;
    transition: var(--transition);
    border: 1px solid transparent;
}

.contact-card:hover {
    background: var(--white);
    border-color: var(--primary);
    transform: translateX(10px);
    box-shadow: var(--shadow);
}

.contact-icon {
    width: 60px;
    height: 60px;
    min-width: 60px;
    background: var(--gradient);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    color: var(--white);
}

.contact-details h3 {
    font-size: 18px;
    color: var(--secondary);
    margin-bottom: 10px;
}

.contact-details p,
.contact-details a {
    color: var(--text-light);
    font-size: 14px;
    line-height: 1.8;
}

.contact-details a:hover {
    color: var(--primary);
}

.contact-social h3 {
    font-size: 18px;
    color: var(--secondary);
    margin-bottom: 15px;
}

.social-icons {
    display: flex;
    gap: 12px;
}

.social-icons a {
    width: 45px;
    height: 45px;
    background: var(--gradient);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 18px;
    transition: var(--transition);
}

.social-icons a:hover {
    transform: translateY(-5px) rotate(360deg);
    box-shadow: var(--shadow);
}

.contact-form-wrapper {
    background: var(--light);
    padding: 45px;
    border-radius: 20px;
    box-shadow: var(--shadow);
}

.contact-form h3 {
    font-size: 26px;
    color: var(--secondary);
    margin-bottom: 30px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.form-group {
    position: relative;
    margin-bottom: 25px;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 15px 45px 15px 15px;
    border: 2px solid rgba(212, 175, 55, 0.2);
    border-radius: 10px;
    font-size: 14px;
    font-family: 'Poppins', sans-serif;
    color: var(--text);
    background: var(--white);
    transition: var(--transition);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 4px rgba(212, 175, 55, 0.1);
}

.form-group i {
    position: absolute;
    right: 15px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--primary);
    font-size: 16px;
    pointer-events: none;
}

.form-group textarea + i {
    top: 20px;
    transform: none;
}

.form-group select {
    cursor: pointer;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%23d4af37' d='M6 9L1 4h10z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 15px center;
}

/* Footer */
.footer {
    background: var(--gradient-dark);
    color: var(--white);
    padding: 80px 0 0;
}

.footer-top {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 50px;
    margin-bottom: 50px;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 20px;
}

.footer-logo img {
    height: 45px;
}

.footer-logo h3 {
    color: var(--white);
    font-size: 22px;
}

.footer-desc {
    color: rgba(255, 255, 255, 0.8);
    font-size: 14px;
    line-height: 1.8;
    margin-bottom: 25px;
}

.footer-social {
    display: flex;
    gap: 12px;
}

.footer-social a {
    width: 40px;
    height: 40px;
    background: rgba(212, 175, 55, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    transition: var(--transition);
    border: 1px solid rgba(212, 175, 55, 0.3);
}

.footer-social a:hover {
    background: var(--primary);
    color: var(--white);
    transform: translateY(-5px);
}

.footer-col h3 {
    color: var(--white);
    font-size: 20px;
    margin-bottom: 25px;
    position: relative;
    padding-bottom: 15px;
}

.footer-col h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50px;
    height: 3px;
    background: var(--gradient);
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.8);
    font-size: 14px;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: var(--transition);
}

.footer-links a:hover {
    color: var(--primary);
    padding-left: 5px;
}

.footer-links i {
    color: var(--primary);
    font-size: 12px;
}

.newsletter-form {
    position: relative;
    margin-bottom: 25px;
}

.newsletter-form input {
    width: 100%;
    padding: 14px 50px 14px 18px;
    border: 2px solid rgba(212, 175, 55, 0.3);
    border-radius: 50px;
    background: rgba(255, 255, 255, 0.1);
    color: var(--white);
    font-size: 14px;
    transition: var(--transition);
}

.newsletter-form input::placeholder {
    color: rgba(255, 255, 255, 0.6);
}

.newsletter-form input:focus {
    outline: none;
    border-color: var(--primary);
    background: rgba(255, 255, 255, 0.15);
}

.newsletter-form button {
    position: absolute;
    right: 5px;
    top: 50%;
    transform: translateY(-50%);
    width: 40px;
    height: 40px;
    background: var(--gradient);
    border: none;
    border-radius: 50%;
    color: var(--white);
    cursor: pointer;
    transition: var(--transition);
}

.newsletter-form button:hover {
    transform: translateY(-50%) scale(1.1);
}

.footer-contact {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-contact-item {
    display: flex;
    align-items: center;
    gap: 10px;
    color: rgba(255, 255, 255, 0.8);
    font-size: 14px;
}

.footer-contact-item i {
    color: var(--primary);
}

.footer-contact-item a {
    color: rgba(255, 255, 255, 0.8);
    transition: var(--transition);
}

.footer-contact-item a:hover {
    color: var(--primary);
}

.footer-bottom {
    border-top: 1px solid rgba(212, 175, 55, 0.2);
    padding: 30px 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.footer-bottom p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 14px;
}

.footer-bottom-links {
    display: flex;
    gap: 15px;
    align-items: center;
}

.footer-bottom-links a {
    color: rgba(255, 255, 255, 0.7);
    font-size: 14px;
    transition: var(--transition);
}

.footer-bottom-links a:hover {
    color: var(--primary);
}

.footer-bottom-links span {
    color: rgba(255, 255, 255, 0.5);
}

/* ===== WHATSAPP BUTTON FIX ===== */
.whatsapp-float {
    position: fixed;
    bottom: 20px;
    right: 20px;
    width: 55px;
    height: 55px;
    background: #25D366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    color: var(--white);
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.4);
    z-index: 998;
    transition: var(--transition);
    animation: pulse 2s infinite;
}

.whatsapp-float:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 25px rgba(37, 211, 102, 0.6);
}

@keyframes pulse {
    0%, 100% {
        box-shadow: 0 4px 15px rgba(37, 211, 102, 0.4);
    }
    50% {
        box-shadow: 0 4px 20px rgba(37, 211, 102, 0.6);
    }
}

/* Scroll To Top Button */
.scroll-top {
    position: fixed;
    bottom: 20px;
    left: 20px;
    width: 45px;
    height: 45px;
    background: var(--gradient);
    border: none;
    border-radius: 50%;
    color: var(--white);
    font-size: 18px;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
    z-index: 998;
    box-shadow: var(--shadow);
    display: flex;
    align-items: center;
    justify-content: center;
}

.scroll-top.active {
    opacity: 1;
    visibility: visible;
}

.scroll-top:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

/* Owl Carousel Customization */
.owl-theme .owl-nav {
    margin-top: 30px;
}

.owl-theme .owl-nav [class*='owl-'] {
    width: 50px;
    height: 50px;
    background: var(--gradient) !important;
    border-radius: 50%;
    color: var(--white) !important;
    font-size: 24px;
    margin: 0 8px;
    transition: var(--transition);
}

.owl-theme .owl-nav [class*='owl-']:hover {
    transform: scale(1.1);
    box-shadow: var(--shadow-lg);
}

.owl-theme .owl-dots {
    margin-top: 30px;
}

.owl-theme .owl-dots .owl-dot span {
    width: 12px;
    height: 12px;
    background: rgba(212, 175, 55, 0.3);
    border-radius: 50%;
    transition: var(--transition);
}

.owl-theme .owl-dots .owl-dot.active span,
.owl-theme .owl-dots .owl-dot:hover span {
    background: var(--primary);
    width: 30px;
    border-radius: 10px;
}

/* ============================================
   RESPONSIVE DESIGN
   ============================================ */
@media (max-width: 1024px) {
    .hero-title {
        font-size: 3rem;
    }

    .section-title {
        font-size: 2.3rem;
    }

    .about-wrapper,
    .contact-wrapper {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .about-image-small {
        left: 20px;
        width: 200px;
    }

    .footer-top {
        grid-template-columns: repeat(2, 1fr);
        gap: 40px;
    }

    .cta-wrapper {
        flex-direction: column;
        text-align: center;
    }

    .cta-buttons {
        justify-content: center;
    }

    .services-grid,
    .destinations-grid {
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    }
}

@media (max-width: 768px) {
    .top-bar {
        display: none;
    }

    .navbar {
        padding: 12px 0;
    }

    .logo-text h1 {
        font-size: 20px;
    }

    .logo-text span {
        font-size: 10px;
    }

    .logo img {
        height: 40px;
    }

    /* Mobile Menu Styles */
    .nav-menu {
        position: fixed;
        top: 0;
        left: -100%;
        width: 280px;
        height: 100vh;
        background: var(--white);
        flex-direction: column;
        padding: 100px 30px 30px;
        box-shadow: 5px 0 20px rgba(0, 0, 0, 0.1);
        transition: left 0.4s ease;
        z-index: 1000;
        overflow-y: auto;
        gap: 0;
    }

    .nav-menu.active {
        left: 0;
    }

    .nav-menu li {
        width: 100%;
        margin-bottom: 5px;
    }

    .nav-menu a {
        display: block;
        padding: 15px 20px;
        font-size: 16px;
        color: var(--secondary);
        border-radius: 10px;
        transition: all 0.3s;
    }

    .nav-menu a:hover,
    .nav-menu a.active {
        background: var(--light);
        color: var(--primary);
    }

    .nav-menu a::after {
        display: none;
    }

    .nav-actions {
        display: none;
    }

    .hamburger {
        display: flex;
        z-index: 1001;
    }

    .hero {
        height: 75vh;
    }

    .hero-slide {
        height: 75vh;
    }

    .hero-title {
        font-size: 2rem;
    }

    .hero-subtitle {
        font-size: 1rem;
    }

    .hero-buttons {
        flex-direction: column;
        width: 100%;
        max-width: 300px;
        margin: 0 auto;
    }

    .hero-buttons .btn {
        width: 100%;
    }

    .scroll-indicator {
        display: none;
    }

    .features-grid,
    .services-grid,
    .destinations-grid,
    .gallery-grid {
        grid-template-columns: 1fr;
    }

    .section-title {
        font-size: 1.8rem;
    }

    .about-image-small {
        display: none;
    }

    .about-stats {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .footer-top {
        grid-template-columns: 1fr;
    }

    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }

    /* FIXED: WhatsApp button mobile size */
    .whatsapp-float {
        width: 50px;
        height: 50px;
        font-size: 24px;
        bottom: 15px;
        right: 15px;
    }

    .scroll-top {
        width: 40px;
        height: 40px;
        font-size: 16px;
        bottom: 15px;
        left: 15px;
    }

    .package-header {
        flex-direction: column;
    }

    .package-footer {
        flex-direction: column;
        align-items: stretch;
        text-align: center;
    }

    .package-footer .btn {
        width: 100%;
    }

    .promo-benefits {
        flex-direction: column;
        align-items: stretch;
        gap: 15px;
    }

    .promo-content h2 {
        font-size: 1.3rem;
    }

    .promo-content h3 {
        font-size: 1.8rem;
    }

    .cta-wrapper {
        padding: 40px 30px;
    }

    .cta-content h2 {
        font-size: 1.6rem;
    }

    .cta-content p {
        font-size: 0.95rem;
    }

    .cta-buttons {
        flex-direction: column;
        width: 100%;
    }

    .cta-buttons .btn {
        width: 100%;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }

    .hero-title {
        font-size: 1.6rem;
    }

    .hero-subtitle {
        font-size: 0.9rem;
    }

    .section-title {
        font-size: 1.5rem;
    }

    .btn {
        padding: 12px 25px;
        font-size: 14px;
    }

    .btn-large {
        padding: 14px 30px;
        font-size: 15px;
    }

    .feature-card,
    .service-card,
    .package-card,
    .testimonial-card {
        margin: 10px 0;
    }

    .contact-form-wrapper {
        padding: 30px 20px;
    }

    .package-content {
        padding: 25px 20px;
    }

    .service-content {
        padding: 25px 20px;
    }

    .dest-content {
        left: 20px;
        right: 20px;
        bottom: 20px;
    }

    .dest-content h3 {
        font-size: 22px;
    }

    .nav-menu {
        width: 100%;
        left: -100%;
    }

    .logo-text h1 {
        font-size: 18px;
    }

    /* Smaller WhatsApp on very small screens */
    .whatsapp-float {
        width: 48px;
        height: 48px;
        font-size: 22px;
        bottom: 12px;
        right: 12px;
    }

    .scroll-top {
        width: 38px;
        height: 38px;
        font-size: 15px;
        bottom: 12px;
        left: 12px;
    }
}

/* AOS Animation Support */
[data-aos] {
    opacity: 0;
    transition-property: opacity, transform;
}

[data-aos].aos-animate {
    opacity: 1;
}



/* ============================================
   COMPACT SERVICE BOOKING MODAL
   ============================================ */

/* Service Button as button element */
.service-link.service-book-btn {
    background: none;
    border: none;
    padding: 0;
    cursor: pointer;
}

/* Modal Compact Styles */
#serviceBookingModal .modal-dialog {
    max-width: 450px;
}

#serviceBookingModal .modal-content {
    border-radius: 15px;
    border: none;
    box-shadow: 0 15px 40px rgba(212, 175, 55, 0.25);
}

#serviceBookingModal .modal-header {
    background: var(--gradient);
    color: var(--white);
    border-radius: 15px 15px 0 0;
    padding: 15px 20px;
    border: none;
}

#serviceBookingModal .modal-title {
    font-size: 1.1rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 8px;
}

#serviceBookingModal .modal-header .btn-close {
    filter: brightness(0) invert(1);
    opacity: 1;
    font-size: 12px;
}

#serviceBookingModal .modal-body {
    padding: 20px;
}

.selected-service-badge {
    background: var(--light);
    padding: 10px 15px;
    border-radius: 8px;
    margin-bottom: 15px;
    border-left: 3px solid var(--primary);
}

.selected-service-badge span {
    font-weight: 600;
    color: var(--secondary);
    font-size: 14px;
}

/* Compact Form Styles */
.compact-form .form-control-sm,
.compact-form .form-select-sm {
    border: 1px solid rgba(212, 175, 55, 0.3);
    border-radius: 6px;
    padding: 8px 12px;
    font-size: 13px;
    transition: all 0.3s ease;
}

.compact-form .form-control-sm:focus,
.compact-form .form-select-sm:focus {
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(212, 175, 55, 0.1);
    outline: none;
}

.compact-form textarea.form-control-sm {
    resize: none;
}

.modal-footer-actions {
    display: flex;
    justify-content: flex-end;
    gap: 10px;
    margin-top: 15px;
    padding-top: 15px;
    border-top: 1px solid rgba(212, 175, 55, 0.15);
}

.btn-cancel-sm {
    padding: 8px 20px;
    background: var(--light);
    color: var(--text);
    border: 1px solid rgba(212, 175, 55, 0.3);
    border-radius: 6px;
    font-weight: 600;
    font-size: 13px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-cancel-sm:hover {
    background: var(--white);
    border-color: var(--primary);
    color: var(--primary);
}

.btn-submit-sm {
    padding: 8px 25px;
    background: var(--gradient);
    color: var(--white);
    border: none;
    border-radius: 6px;
    font-weight: 600;
    font-size: 13px;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 6px;
}

.btn-submit-sm:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(212, 175, 55, 0.3);
}

.btn-submit-sm i {
    font-size: 12px;
}

/* Toast Styling */
.toast {
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.15);
}

.toast-body {
    padding: 12px 15px;
    font-size: 14px;
    font-weight: 500;
}

/* Responsive */
@media (max-width: 576px) {
    #serviceBookingModal .modal-dialog {
        margin: 10px;
    }
    
    #serviceBookingModal .modal-body {
        padding: 15px;
    }
    
    .modal-footer-actions {
        flex-direction: column;
    }
    
    .btn-cancel-sm,
    .btn-submit-sm {
        width: 100%;
        justify-content: center;
    }
}



/* Rotate icon class */
.rotate-180 {
    transform: rotate(180deg) !important;
}

/* Ensure smooth transition for icon */
.dropdown-toggle i {
    transition: transform 0.3s ease !important;
}


/* ============================================
   MULTI-LEVEL DROPDOWN MENU
   ============================================ */

/* Main Navigation */
.nav-menu {
    display: flex;
    gap: 35px;
    align-items: center;
    list-style: none;
    margin: 0;
    padding: 0;
    position: relative;
}

.nav-menu > li {
    position: relative;
    list-style: none;
}

.nav-menu > li > a {
    color: var(--secondary);
    font-weight: 500;
    font-size: 15px;
    position: relative;
    padding: 8px 0;
    display: block;
    text-decoration: none;
}

/* Remove underline for dropdown parents */
.nav-menu > li.has-dropdown > a::after {
    display: none !important;
}

/* Only add underline to non-dropdown items */
.nav-menu > li:not(.has-dropdown) > a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gradient);
    transition: width 0.3s ease;
}

.nav-menu > li:not(.has-dropdown) > a:hover::after,
.nav-menu > li:not(.has-dropdown) > a.active::after {
    width: 100%;
}

.nav-menu > li:not(.has-dropdown) > a:hover,
.nav-menu > li:not(.has-dropdown) > a.active {
    color: var(--primary);
}

/* Dropdown Parent */
.has-dropdown {
    position: relative;
}

.dropdown-toggle {
    display: flex;
    align-items: center;
    gap: 5px;
    cursor: pointer;
    padding: 8px 0 !important;
}

.has-dropdown:hover > .dropdown-toggle {
    color: var(--primary);
}

.dropdown-toggle i {
    font-size: 10px;
    transition: transform 0.3s ease;
}

.has-dropdown:hover .dropdown-toggle i {
    transform: rotate(180deg);
}

/* First Level Dropdown Menu */
.dropdown-menu {
    position: absolute !important;
    top: 100% !important;
    left: 0 !important;
    min-width: 260px;
    background: var(--white) !important;
    border-radius: 12px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15) !important;
    padding: 15px 0;
    margin: 0;
    list-style: none;
    opacity: 0 !important;
    visibility: hidden !important;
    transform: translateY(-10px);
    z-index: 9999 !important;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1) !important;
    pointer-events: none;
}

.has-dropdown:hover > .dropdown-menu {
    opacity: 1 !important;
    visibility: visible !important;
    transform: translateY(5px) !important;
    pointer-events: auto !important;
}

.dropdown-menu:hover {
    opacity: 1 !important;
    visibility: visible !important;
    pointer-events: auto !important;
}

/* Dropdown Items */
.dropdown-menu > li {
    padding: 0;
    margin: 0;
    list-style: none;
    position: relative;
}

.dropdown-menu > li > a {
    padding: 12px 25px;
    color: var(--text) !important;
    font-size: 14px;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 12px;
    transition: all 0.3s ease;
    border-left: 3px solid transparent;
    text-decoration: none;
    background: transparent;
    position: relative;
}

.dropdown-menu > li > a i.submenu-arrow {
    margin-left: auto;
    font-size: 10px;
    opacity: 0.6;
}

.dropdown-menu > li > a:hover {
    background: var(--light) !important;
    color: var(--primary) !important;
    border-left-color: var(--primary);
    padding-left: 30px;
}

/* Second Level Submenu */
.has-submenu {
    position: relative;
}

.submenu {
    position: absolute !important;
    top: 0 !important;
    left: 100% !important;
    min-width: 220px;
    background: var(--white) !important;
    border-radius: 12px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15) !important;
    padding: 10px 0;
    margin-left: 5px;
    list-style: none;
    opacity: 0 !important;
    visibility: hidden !important;
    transform: translateX(-10px);
    z-index: 10000 !important;
    transition: all 0.3s ease !important;
    pointer-events: none;
}

.has-submenu:hover > .submenu {
    opacity: 1 !important;
    visibility: visible !important;
    transform: translateX(0) !important;
    pointer-events: auto !important;
}

.submenu:hover {
    opacity: 1 !important;
    visibility: visible !important;
    pointer-events: auto !important;
}

/* Submenu Items */
.submenu li {
    padding: 0;
    margin: 0;
    list-style: none;
}

.submenu li a {
    padding: 10px 20px;
    color: var(--text) !important;
    font-size: 13px;
    font-weight: 500;
    display: block;
    transition: all 0.3s ease;
    text-decoration: none;
    border-left: 3px solid transparent;
}

.submenu li a:hover {
    background: var(--light) !important;
    color: var(--primary) !important;
    border-left-color: var(--primary);
    padding-left: 25px;
}

/* View All Link */
.dropdown-menu > li > a.view-all {
    margin-top: 10px;
    padding-top: 15px;
    border-top: 1px solid rgba(212, 175, 55, 0.2);
    font-weight: 600;
    color: var(--primary) !important;
}

.dropdown-menu > li > a.view-all:hover {
    background: var(--gradient) !important;
    color: var(--white) !important;
}

/* Dropdown Arrows */
.dropdown-menu::before {
    content: '';
    position: absolute;
    top: -8px;
    left: 30px;
    width: 16px;
    height: 16px;
    background: var(--white);
    transform: rotate(45deg);
    box-shadow: -3px -3px 8px rgba(0, 0, 0, 0.05);
    z-index: -1;
}

.submenu::before {
    content: '';
    position: absolute;
    top: 20px;
    left: -8px;
    width: 16px;
    height: 16px;
    background: var(--white);
    transform: rotate(45deg);
    box-shadow: -3px -3px 8px rgba(0, 0, 0, 0.05);
    z-index: -1;
}

/* ============================================
   MOBILE RESPONSIVE
   ============================================ */

@media (max-width: 768px) {
    .nav-menu {
        position: fixed;
        top: 0;
        left: -100%;
        width: 280px;
        height: 100vh;
        background: var(--white);
        flex-direction: column;
        padding: 100px 30px 30px;
        box-shadow: 5px 0 20px rgba(0, 0, 0, 0.1);
        transition: left 0.4s ease;
        z-index: 1000;
        overflow-y: auto;
        gap: 0;
        align-items: flex-start;
    }

    .nav-menu.active {
        left: 0;
    }

    .nav-menu > li {
        width: 100%;
        margin-bottom: 5px;
    }

    .nav-menu > li > a {
        padding: 15px 20px;
        font-size: 16px;
        border-radius: 10px;
    }

    .nav-menu > li > a::after {
        display: none !important;
    }

    /* Mobile Dropdown */
    .has-dropdown .dropdown-toggle {
        width: 100%;
        justify-content: space-between;
        padding: 15px 20px !important;
    }

    .dropdown-menu {
        position: static !important;
        opacity: 1 !important;
        visibility: visible !important;
        max-height: 0 !important;
        overflow: hidden;
        padding: 0 !important;
        background: rgba(212, 175, 55, 0.05) !important;
        box-shadow: none !important;
        border-radius: 0;
        transform: none !important;
        transition: max-height 0.4s ease !important;
        pointer-events: auto !important;
    }

    .dropdown-menu.active {
        max-height: 600px !important;
        padding: 10px 0 !important;
    }

    .dropdown-menu::before {
        display: none;
    }

    /* Mobile Submenu */
    .submenu {
        position: static !important;
        opacity: 1 !important;
        visibility: visible !important;
        max-height: 0;
        overflow: hidden;
        margin: 0;
        padding: 0 !important;
        background: rgba(212, 175, 55, 0.08) !important;
        box-shadow: none !important;
        border-radius: 0;
        transform: none !important;
        transition: max-height 0.3s ease !important;
        pointer-events: auto !important;
    }

    .submenu.active {
        max-height: 300px;
        padding: 5px 0 !important;
    }

    .submenu::before {
        display: none;
    }

    .dropdown-menu > li > a {
        padding: 12px 25px 12px 40px;
        border-left: none;
    }

    .submenu li a {
        padding: 10px 20px 10px 60px;
        font-size: 13px;
    }

    .submenu-arrow {
        transition: transform 0.3s ease;
    }

    .has-submenu.active > a .submenu-arrow {
        transform: rotate(90deg);
    }

    .hamburger {
        display: flex;
    }

    .nav-actions {
        display: none;
    }
}

@media (min-width: 769px) {
    .hamburger {
        display: none;
    }
}




