/* ===================================
   AURÉLIA - Luxury Travel Website
   Premium Dark & Gold Theme
   =================================== */

/* === ROOT VARIABLES === */
:root {
    --primary-dark: #0f0f0f;
    --secondary-dark: #1a1a1a;
    --gold: #c9a96e;
    --gold-light: #d4b989;
    --gold-dark: #b8935d;
    --white: #ffffff;
    --light-gray: #f5f5f5;
    --medium-gray: #999999;
    --dark-gray: #333333;
    
    --font-heading: 'Playfair Display', serif;
    --font-body: 'Poppins', sans-serif;
    
    --transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    --shadow-soft: 0 10px 40px rgba(0, 0, 0, 0.3);
    --shadow-hover: 0 20px 60px rgba(0, 0, 0, 0.5);
}

/* === GLOBAL STYLES === */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    font-size: 16px;
    line-height: 1.8;
    color: var(--white);
    background-color: var(--primary-dark);
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 600;
    line-height: 1.3;
    color: var(--white);
}

a {
    text-decoration: none;
    transition: var(--transition);
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

.section-padding {
    padding: 120px 0;
}

.section-title {
    font-size: 3.5rem;
    font-weight: 700;
    letter-spacing: 2px;
    margin-bottom: 20px;
    color: var(--white);
}

.section-subtitle {
    font-size: 1.1rem;
    color: var(--gold);
    letter-spacing: 3px;
    text-transform: uppercase;
    font-weight: 500;
    margin-bottom: 15px;
}

.text-gold {
    color: var(--gold) !important;
}

.bg-dark-section {
    background-color: var(--secondary-dark);
}

/* === NAVIGATION === */
.navbar {
    padding: 25px 0;
    transition: var(--transition);
    background: transparent;
}

.navbar.scrolled {
    background: rgba(15, 15, 15, 0.98);
    padding: 15px 0;
    backdrop-filter: blur(10px);
    box-shadow: 0 5px 30px rgba(0, 0, 0, 0.5);
}

.navbar-brand .brand-name {
    font-family: var(--font-heading);
    font-size: 2rem;
    font-weight: 700;
    letter-spacing: 4px;
    color: var(--gold);
    text-transform: uppercase;
}

.navbar-nav .nav-link {
    color: var(--white);
    font-size: 0.95rem;
    font-weight: 400;
    letter-spacing: 1px;
    padding: 8px 20px !important;
    margin: 0 5px;
    position: relative;
    text-transform: uppercase;
}

.navbar-nav .nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 2px;
    background: var(--gold);
    transition: var(--transition);
}

.navbar-nav .nav-link:hover::after,
.navbar-nav .nav-link.active::after {
    width: 60%;
}

.navbar-nav .nav-link:hover,
.navbar-nav .nav-link.active {
    color: var(--gold);
}

.navbar-toggler {
    border: 2px solid var(--gold);
    padding: 8px 12px;
}

.navbar-toggler:focus {
    box-shadow: 0 0 0 0.2rem rgba(201, 169, 110, 0.3);
}

/* Dropdown Menu Styling */
.navbar-nav .dropdown-menu {
    background: var(--secondary-dark);
    border: 1px solid var(--gold);
    border-radius: 0;
    padding: 10px 0;
    margin-top: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    display: none;
}

/* Show dropdown on hover */
.navbar-nav .dropdown:hover .dropdown-menu {
    display: block;
}

/* Show dropdown when clicked (Bootstrap's .show class) */
.navbar-nav .dropdown-menu.show {
    display: block;
}

.navbar-nav .dropdown-item {
    color: var(--white);
    padding: 10px 25px;
    font-size: 0.9rem;
    letter-spacing: 1px;
    transition: var(--transition);
}

.navbar-nav .dropdown-item:hover {
    background: var(--gold);
    color: var(--primary-dark);
}

.navbar-nav .dropdown-divider {
    border-color: rgba(201, 169, 110, 0.3);
    margin: 5px 0;
}

.navbar-nav .dropdown-toggle::after {
    margin-left: 8px;
    vertical-align: middle;
}

/* Remove underline animation from dropdown toggle */
.navbar-nav .dropdown .nav-link::after {
    display: none;
}

/* Dropdown toggle hover state */
.navbar-nav .dropdown .nav-link:hover {
    color: var(--gold) !important;
}

/* Dropdown toggle active state - only when on luxury-tours page */
.navbar-nav .dropdown .nav-link.active {
    color: var(--gold) !important;
}

/* Dropdown toggle when menu is open */
.navbar-nav .dropdown .nav-link.show {
    color: var(--gold) !important;
}

/* Default state - ensure it's white */
.navbar-nav .dropdown .nav-link {
    color: var(--white) !important;
}

/* === HERO SECTION === */
.hero-section {
    position: relative;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

/* Carousel Styles */
.hero-section .carousel {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.hero-section .carousel-inner,
.hero-section .carousel-item {
    height: 100%;
}

.hero-video,
.hero-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(15, 15, 15, 0.7) 0%, rgba(15, 15, 15, 0.4) 100%);
    z-index: 2;
}

/* Carousel Controls */
.hero-section .carousel-control-prev,
.hero-section .carousel-control-next {
    width: 60px;
    height: 60px;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(201, 169, 110, 0.3);
    border-radius: 50%;
    opacity: 0.8;
    transition: var(--transition);
    z-index: 4;
}

.hero-section .carousel-control-prev {
    left: 40px;
}

.hero-section .carousel-control-next {
    right: 40px;
}

.hero-section .carousel-control-prev:hover,
.hero-section .carousel-control-next:hover {
    background: rgba(201, 169, 110, 0.6);
    opacity: 1;
}

.hero-section .carousel-control-prev-icon,
.hero-section .carousel-control-next-icon {
    width: 30px;
    height: 30px;
}

/* Carousel Indicators */
.hero-section .carousel-indicators {
    bottom: 40px;
    z-index: 4;
    margin-bottom: 0;
}

.hero-section .carousel-indicators button {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    margin: 0 8px;
    background-color: rgba(255, 255, 255, 0.5);
    border: 2px solid var(--gold);
    opacity: 0.7;
    transition: var(--transition);
}

.hero-section .carousel-indicators button.active {
    background-color: var(--gold);
    opacity: 1;
    transform: scale(1.2);
}

.hero-section .carousel-indicators button:hover {
    opacity: 1;
    background-color: var(--gold-light);
}

/* Carousel Fade Effect */
.carousel-fade .carousel-item {
    opacity: 0;
    transition: opacity 1.5s ease-in-out;
}

.carousel-fade .carousel-item.active {
    opacity: 1;
}

.hero-content {
    position: relative;
    z-index: 3;
    text-align: center;
    max-width: 900px;
    padding: 0 20px;
}

.hero-title {
    font-size: 5rem;
    font-weight: 800;
    letter-spacing: 6px;
    margin-bottom: 25px;
    text-transform: uppercase;
    animation: fadeInUp 1s ease-out;
}

.hero-tagline {
    font-size: 1.5rem;
    color: var(--gold);
    letter-spacing: 4px;
    margin-bottom: 40px;
    font-weight: 300;
    animation: fadeInUp 1s ease-out 0.3s both;
}

.hero-description {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 50px;
    line-height: 1.8;
    animation: fadeInUp 1s ease-out 0.6s both;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(40px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* === BUTTONS === */
.btn-gold {
    background: var(--gold);
    color: var(--primary-dark);
    padding: 15px 45px;
    font-size: 0.95rem;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    border: 2px solid var(--gold);
    border-radius: 0;
    transition: var(--transition);
    display: inline-block;
}

.btn-gold:hover {
    background: transparent;
    color: var(--gold);
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(201, 169, 110, 0.3);
}

.btn-whatsapp {
    background: var(--gold);
    color: var(--primary-dark) !important;
    width: 100%;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 18px;
    font-size: 1.1rem;
    text-decoration: none;
    border: 2px solid var(--gold);
    transition: all 0.3s ease;
    font-weight: 600;
}

.btn-whatsapp:hover {
    background: transparent;
    color: var(--gold) !important;
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(201, 169, 110, 0.3);
}

.btn-whatsapp i {
    font-size: 1.5rem;
    color: var(--primary-dark) !important;
    transition: transform 0.3s ease;
}

.btn-whatsapp:hover i {
    transform: scale(1.2);
    color: var(--gold) !important;
}

.btn-outline-gold {
    background: transparent;
    color: var(--gold);
    padding: 15px 45px;
    font-size: 0.95rem;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    border: 2px solid var(--gold);
    border-radius: 0;
    transition: var(--transition);
    display: inline-block;
}

.btn-outline-gold:hover {
    background: var(--gold);
    color: var(--primary-dark);
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(201, 169, 110, 0.3);
}

/* === EXPERIENCE CARDS === */
.experience-card {
    position: relative;
    height: 500px;
    overflow: hidden;
    margin-bottom: 30px;
    cursor: pointer;
}

.experience-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

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

.experience-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to top, rgba(15, 15, 15, 0.95) 0%, rgba(15, 15, 15, 0.3) 60%, transparent 100%);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 40px;
    transition: var(--transition);
}

.experience-card:hover .experience-overlay {
    background: linear-gradient(to top, rgba(15, 15, 15, 0.98) 0%, rgba(15, 15, 15, 0.5) 70%, rgba(15, 15, 15, 0.2) 100%);
}

.experience-title {
    font-size: 2.2rem;
    font-weight: 700;
    margin-bottom: 10px;
    color: var(--white);
}

.experience-description {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 20px;
    opacity: 0;
    transform: translateY(20px);
    transition: var(--transition);
}

.experience-card:hover .experience-description {
    opacity: 1;
    transform: translateY(0);
}

.experience-link {
    color: var(--gold);
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    font-size: 0.9rem;
}

.experience-link i {
    margin-left: 10px;
    transition: var(--transition);
}

.experience-card:hover .experience-link i {
    margin-left: 15px;
}

/* === DESTINATION GRID === */
.destination-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.destination-card {
    position: relative;
    height: 450px;
    overflow: hidden;
    cursor: pointer;
    box-shadow: var(--shadow-soft);
}

.destination-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

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

.destination-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, transparent 0%, rgba(15, 15, 15, 0.9) 100%);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 35px;
}

.destination-name {
    font-size: 2rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 8px;
}

.destination-country {
    font-size: 1rem;
    color: var(--gold);
    letter-spacing: 2px;
    text-transform: uppercase;
}

/* === LUXURY TOUR CARDS === */
.tour-card {
    background: var(--secondary-dark);
    overflow: hidden;
    transition: var(--transition);
    margin-bottom: 30px;
    box-shadow: var(--shadow-soft);
}

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

.tour-image {
    position: relative;
    height: 350px;
    overflow: hidden;
}

.tour-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

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

.tour-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background: var(--gold);
    color: var(--primary-dark);
    padding: 8px 20px;
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.tour-content {
    padding: 35px;
}

.tour-title {
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 15px;
    color: var(--white);
}

.tour-meta {
    display: flex;
    gap: 25px;
    margin-bottom: 20px;
    flex-wrap: wrap;
}

.tour-meta-item {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--medium-gray);
    font-size: 0.9rem;
}

.tour-meta-item i {
    color: var(--gold);
}

.tour-description {
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 25px;
    line-height: 1.8;
}

.tour-price {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 25px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.price-label {
    font-size: 0.9rem;
    color: var(--medium-gray);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.price-amount {
    font-size: 2rem;
    font-weight: 700;
    color: var(--gold);
}

/* === SPLIT SECTION === */
.split-section {
    display: flex;
    align-items: center;
    min-height: 600px;
}

.split-image {
    flex: 1;
    height: 600px;
    background-size: cover;
    background-position: center;
}

.split-content {
    flex: 1;
    padding: 80px;
    background: var(--secondary-dark);
}

.split-content h2 {
    font-size: 3rem;
    margin-bottom: 25px;
}

.split-content p {
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 20px;
    font-size: 1.05rem;
}

/* === TESTIMONIALS === */
.testimonial-slider {
    max-width: 900px;
    margin: 60px auto;
    text-align: center;
}

.testimonial-item {
    padding: 50px;
}

.testimonial-text {
    font-size: 1.4rem;
    font-style: italic;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 30px;
    line-height: 1.8;
}

.testimonial-author {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--gold);
    margin-bottom: 5px;
}

.testimonial-location {
    font-size: 0.95rem;
    color: var(--medium-gray);
}

.testimonial-stars {
    color: var(--gold);
    font-size: 1.2rem;
    margin-bottom: 20px;
}

/* === GALLERY === */
.gallery-strip {
    display: flex;
    gap: 15px;
    overflow-x: auto;
    padding: 20px 0;
    scroll-behavior: smooth;
}

.gallery-strip::-webkit-scrollbar {
    height: 8px;
}

.gallery-strip::-webkit-scrollbar-track {
    background: var(--secondary-dark);
}

.gallery-strip::-webkit-scrollbar-thumb {
    background: var(--gold);
    border-radius: 4px;
}

.gallery-item {
    flex: 0 0 300px;
    height: 300px;
    position: relative;
    overflow: hidden;
    cursor: pointer;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

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

/* Masonry Gallery */
.masonry-gallery {
    column-count: 3;
    column-gap: 20px;
}

.masonry-item {
    break-inside: avoid;
    margin-bottom: 20px;
    position: relative;
    overflow: hidden;
    cursor: pointer;
}

.masonry-item img {
    width: 100%;
    display: block;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

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

.masonry-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(15, 15, 15, 0.7);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: var(--transition);
}

.masonry-item:hover .masonry-overlay {
    opacity: 1;
}

.masonry-overlay i {
    font-size: 2.5rem;
    color: var(--gold);
}

/* === CTA SECTION === */
.cta-section {
    position: relative;
    padding: 150px 0;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.cta-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(15, 15, 15, 0.85);
}

.cta-content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.cta-content h2 {
    font-size: 3.5rem;
    margin-bottom: 25px;
}

.cta-content p {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 40px;
}

/* === CONTACT FORM === */
.contact-section {
    padding: 120px 0;
}

.contact-form {
    background: var(--secondary-dark);
    padding: 60px;
    box-shadow: var(--shadow-soft);
}

.form-control {
    background: rgba(255, 255, 255, 0.05);
    border: 2px solid rgba(255, 255, 255, 0.1);
    color: var(--white);
    padding: 15px 20px;
    font-size: 1rem;
    border-radius: 0;
    transition: var(--transition);
}

.form-control:focus {
    background: rgba(255, 255, 255, 0.08);
    border-color: var(--gold);
    color: var(--white);
    box-shadow: 0 0 0 0.2rem rgba(201, 169, 110, 0.2);
}

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

textarea.form-control {
    min-height: 180px;
    resize: vertical;
}

.form-label {
    color: var(--gold);
    font-weight: 500;
    letter-spacing: 1px;
    text-transform: uppercase;
    font-size: 0.9rem;
    margin-bottom: 10px;
}

.contact-info {
    padding: 60px;
}

.contact-info-item {
    margin-bottom: 40px;
}

.contact-info-item i {
    font-size: 2rem;
    color: var(--gold);
    margin-bottom: 15px;
}

.contact-info-item h4 {
    font-size: 1.3rem;
    margin-bottom: 10px;
}

.contact-info-item p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 1.05rem;
}

/* === FOOTER === */
.footer {
    background: var(--primary-dark);
    padding: 80px 0 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.newsletter-section {
    max-width: 700px;
    margin: 0 auto 60px;
}

.newsletter-form .input-group {
    max-width: 600px;
    margin: 0 auto;
}

.newsletter-form .form-control {
    background: rgba(255, 255, 255, 0.05);
    border: 2px solid rgba(255, 255, 255, 0.1);
    border-right: none;
    color: var(--white);
    padding: 18px 25px;
}

.newsletter-form .btn-gold {
    border-radius: 0;
    padding: 18px 40px;
}

.footer-divider {
    height: 1px;
    background: rgba(255, 255, 255, 0.1);
    margin: 50px 0;
}

.footer-content {
    margin-bottom: 40px;
}

.footer-text {
    color: rgba(255, 255, 255, 0.6);
    line-height: 1.8;
    margin-bottom: 15px;
}

.footer-heading {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 25px;
    color: var(--gold);
}

.footer-links {
    list-style: none;
    padding: 0;
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.95rem;
    transition: var(--transition);
}

.footer-links a:hover {
    color: var(--gold);
    padding-left: 5px;
}

.footer-contact {
    list-style: none;
    padding: 0;
}

.footer-contact li {
    color: rgba(255, 255, 255, 0.6);
    margin-bottom: 15px;
    display: flex;
    align-items: flex-start;
    gap: 12px;
}

.footer-contact i {
    color: var(--gold);
    margin-top: 5px;
    font-size: 1.1rem;
}

.social-links {
    display: flex;
    gap: 15px;
}

.social-links a {
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid rgba(255, 255, 255, 0.2);
    color: var(--white);
    font-size: 1.1rem;
    transition: var(--transition);
}

.social-links a:hover {
    background: var(--gold);
    border-color: var(--gold);
    color: var(--primary-dark);
    transform: translateY(-3px);
}

.footer-bottom {
    padding-top: 30px;
}

.footer-bottom p {
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.9rem;
}

.footer-link-small {
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.9rem;
    transition: var(--transition);
}

.footer-link-small:hover {
    color: var(--gold);
}

/* === SCROLL TO TOP BUTTON === */
.scroll-top-btn {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: var(--gold);
    color: var(--primary-dark);
    border: none;
    font-size: 1.2rem;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
    z-index: 1000;
    box-shadow: var(--shadow-soft);
}

.scroll-top-btn.visible {
    opacity: 1;
    visibility: visible;
}

.scroll-top-btn:hover {
    background: var(--gold-dark);
    transform: translateY(-5px);
}

/* === PAGE HEADER === */
.page-header {
    position: relative;
    height: 60vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background-size: cover;
    background-position: center;
    margin-top: 80px;
}

.page-header-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(15, 15, 15, 0.7);
}

.page-header-content {
    position: relative;
    z-index: 2;
    text-align: center;
}

.page-title {
    font-size: 4rem;
    font-weight: 800;
    letter-spacing: 4px;
    margin-bottom: 15px;
}

.page-subtitle {
    font-size: 1.2rem;
    color: var(--gold);
    letter-spacing: 3px;
}

/* === MODAL === */
.modal-content {
    background: var(--secondary-dark);
    border: none;
    border-radius: 0;
}

.modal-header {
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    padding: 25px 30px;
}

.modal-title {
    color: var(--gold);
    font-size: 1.8rem;
}

.btn-close {
    filter: invert(1);
    opacity: 0.7;
}

.modal-body {
    padding: 30px;
    color: rgba(255, 255, 255, 0.8);
}

/* === ALERT === */
.alert {
    border-radius: 0;
    border: none;
    padding: 20px 25px;
    font-size: 1rem;
}

.alert-success {
    background: rgba(201, 169, 110, 0.2);
    color: var(--gold);
    border-left: 4px solid var(--gold);
}

.alert-danger {
    background: rgba(220, 53, 69, 0.2);
    color: #ff6b6b;
    border-left: 4px solid #ff6b6b;
}

/* === RESPONSIVE === */
@media (max-width: 1200px) {
    .section-title {
        font-size: 3rem;
    }
    
    .hero-title {
        font-size: 4rem;
    }
}

@media (max-width: 992px) {
    .section-padding {
        padding: 80px 0;
    }
    
    .hero-title {
        font-size: 3.5rem;
    }
    
    .split-section {
        flex-direction: column;
    }
    
    .split-image {
        width: 100%;
        height: 400px;
    }
    
    .split-content {
        padding: 60px 30px;
    }
    
    .masonry-gallery {
        column-count: 2;
    }
    
    .contact-form,
    .contact-info {
        padding: 40px;
    }
}

@media (max-width: 768px) {
    .section-title {
        font-size: 2.5rem;
    }
    
    .hero-title {
        font-size: 2.5rem;
        letter-spacing: 3px;
    }
    
    .hero-tagline {
        font-size: 1.2rem;
    }
    
    .page-title {
        font-size: 2.8rem;
    }
    
    .experience-title {
        font-size: 1.8rem;
    }
    
    .destination-grid {
        grid-template-columns: 1fr;
    }
    
    .masonry-gallery {
        column-count: 1;
    }
    
    .cta-content h2 {
        font-size: 2.5rem;
    }
    
    .contact-form,
    .contact-info {
        padding: 30px 20px;
    }
}

@media (max-width: 576px) {
    .btn-gold,
    .btn-outline-gold {
        padding: 12px 30px;
        font-size: 0.85rem;
    }
    
    .navbar-brand .brand-name {
        font-size: 1.5rem;
    }
    
    .experience-overlay,
    .destination-overlay {
        padding: 25px;
    }
    
    .tour-content {
        padding: 25px;
    }
    
    .testimonial-text {
        font-size: 1.1rem;
    }
    
    /* WhatsApp Button Mobile */
    .btn-whatsapp {
        font-size: 0.95rem;
        padding: 15px;
    }
    
    /* Dropdown Menu Mobile */
    .navbar-nav .dropdown-menu {
        border: none;
        margin-top: 0;
        padding: 0;
    }
    
    .navbar-nav .dropdown-item {
        padding: 12px 20px;
        font-size: 0.85rem;
    }
    
    /* Hero Carousel Mobile */
    .carousel-item {
        height: 70vh;
        min-height: 500px;
    }
    
    /* Page Header Mobile */
    .page-header {
        height: 50vh;
        min-height: 350px;
    }
    
    .page-title {
        font-size: 2rem;
    }
    
    .page-subtitle {
        font-size: 1rem;
    }
    
    /* Tour Cards Mobile */
    .tour-card {
        margin-bottom: 30px;
    }
    
    .tour-price {
        flex-direction: column;
        gap: 15px;
    }
    
    .tour-price a,
    .tour-price button {
        width: 100% !important;
    }
    
    /* Contact Form Mobile */
    .contact-info-item {
        margin-bottom: 25px;
    }
    
    /* Social Links Mobile */
    .social-links a {
        width: 50px;
        height: 50px;
        font-size: 1.3rem;
    }
    
    /* Footer Mobile */
    .footer-content {
        text-align: center;
    }
    
    .footer-links,
    .footer-contact {
        text-align: center;
    }
    
    /* Sticky Elements Mobile - Remove sticky on mobile */
    .col-lg-4 > div[style*="position: sticky"],
    .col-lg-6 > div[style*="position: sticky"] {
        position: relative !important;
        top: auto !important;
    }
    
    /* Package Details Mobile */
    .package-details img {
        height: 300px !important;
    }
    
    /* Tailormade Form Mobile */
    .row > .col-md-6 {
        margin-bottom: 15px;
    }
    
    /* CTA Section Mobile */
    .cta-content h2 {
        font-size: 2rem;
    }
    
    .cta-content p {
        font-size: 1rem;
    }
    
    /* Statistics Mobile */
    .stats-item h3 {
        font-size: 2.5rem;
    }
    
    /* Booking Form Mobile */
    .booking-form {
        padding: 25px !important;
    }
    
    /* Price Box Mobile */
    .price-amount {
        font-size: 2.5rem !important;
    }
}

/* Extra Small Devices (Portrait Phones) */
@media (max-width: 480px) {
    .section-title {
        font-size: 2rem;
    }
    
    .hero-title {
        font-size: 2rem;
        letter-spacing: 2px;
    }
    
    .page-title {
        font-size: 1.8rem;
    }
    
    .btn-gold,
    .btn-outline-gold,
    .btn-whatsapp {
        padding: 12px 20px;
        font-size: 0.8rem;
        letter-spacing: 1px;
    }
    
    .navbar-brand .brand-name {
        font-size: 1.3rem;
    }
    
    /* Form Inputs Mobile */
    .form-control {
        font-size: 0.9rem;
        padding: 10px 15px;
    }
    
    .form-label {
        font-size: 0.8rem;
    }
    
    /* Tour Meta Mobile */
    .tour-meta {
        flex-direction: column;
        gap: 8px;
    }
    
    .tour-meta-item {
        font-size: 0.8rem;
    }
    
    /* Experience Cards Mobile */
    .experience-title {
        font-size: 1.5rem;
    }
    
    /* Destination Cards Mobile */
    .destination-title {
        font-size: 1.5rem;
    }
    
    /* Testimonial Mobile */
    .testimonial-text {
        font-size: 1rem;
    }
    
    /* Footer Mobile */
    .footer {
        padding: 40px 0 20px;
    }
    
    .brand-name {
        font-size: 1.5rem;
    }
    
    /* Social Icons Mobile */
    .social-links a {
        width: 45px;
        height: 45px;
        font-size: 1.1rem;
    }
    
    /* Contact Follow Us Icons */
    div[style*="width: 60px; height: 60px"] {
        width: 50px !important;
        height: 50px !important;
    }
    
    div[style*="width: 60px; height: 60px"] i {
        font-size: 1.5rem !important;
    }
    
    /* Package Details Itinerary Mobile */
    div[style*="padding: 25px"][style*="border-left"] {
        padding: 20px !important;
    }
    
    /* How It Works Numbers Mobile */
    div[style*="width: 80px; height: 80px"] {
        width: 60px !important;
        height: 60px !important;
        font-size: 1.5rem !important;
    }
    
    /* Spacing Adjustments */
    .section-padding {
        padding: 60px 0;
    }
    
    .mb-5 {
        margin-bottom: 2rem !important;
    }
    
    /* Image Heights Mobile */
    img[style*="height: 400px"],
    img[style*="height: 500px"],
    img[style*="height: 550px"] {
        height: 250px !important;
    }
}

/* Landscape Mobile Devices */
@media (max-width: 768px) and (orientation: landscape) {
    .hero-section,
    .carousel-item {
        height: 100vh;
    }
    
    .page-header {
        height: 60vh;
    }
}

/* Tablet Specific */
@media (min-width: 768px) and (max-width: 991px) {
    .tour-card {
        margin-bottom: 30px;
    }
    
    .experience-card,
    .destination-card {
        margin-bottom: 30px;
    }
    
    /* Two Column Layout for Tablets */
    .col-md-6 {
        flex: 0 0 50%;
        max-width: 50%;
    }
}
