* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
}

body {
    overflow-x: hidden;
    background: #ffffff; /* Luxury white background */
    color: #333333;
}

/* ================= HEADER ================= */
.header {
    width: 100%;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 1000;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 22px 60px;
    background: transparent; /* Transparent header by default */
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    transition: 0.4s ease;
}

.header.scrolled {
    background: rgba(255, 255, 255, 0.98);
    padding: 16px 60px;
    backdrop-filter: blur(14px);
    box-shadow: 0 5px 30px rgba(0, 0, 0, 0.08);
}

.header.scrolled .navbar ul li a {
    color: #121212;
}

.header.scrolled .navbar ul li a:hover {
    color: #D4AF37; /* Luxury Gold */
}

/* scrolled logo overrides handled below in LOGO section */

/* ================= LOGO ================= */
.logo {
    display: flex;
    align-items: center;
}

.logo a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.92);
    border-radius: 10px;
    padding: 6px 14px;
    box-shadow: 0 4px 18px rgba(0, 0, 0, 0.18);
    backdrop-filter: blur(6px);
    transition: 0.4s ease;
}

.logo a:hover {
    background: #ffffff;
    box-shadow: 0 6px 24px rgba(0, 0, 0, 0.22);
}

.logo img {
    width: auto;
    height: auto;
    max-height: 130px;
    object-fit: contain;
    display: block;
    transition: 0.4s ease;
}

.logo img:hover {
    transform: scale(1.04);
}

.header.scrolled .logo a {
    background: rgba(255, 255, 255, 0.96);
    box-shadow: 0 3px 12px rgba(0, 0, 0, 0.1);
}

.header.scrolled .logo img {
    max-height: 130px;
}

/* ================= NAVBAR ================= */
.navbar ul {
    display: flex;
    align-items: center;
    gap: 36px;
    list-style: none;
}

.navbar ul li {
    position: relative;
}

.navbar ul li a {
    text-decoration: none;
    color: #ffffff; /* White text for transparent header */
    font-size: 15px;
    font-weight: 600;
    letter-spacing: 0.6px;
    position: relative;
    transition: 0.3s ease;
    padding: 8px 0;
    text-transform: uppercase;
}

.navbar ul li a::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 0;
    height: 2px;
    background: #D4AF37; /* Gold */
    border-radius: 10px;
    transition: 0.3s ease;
}

.navbar ul li a:hover {
    color: #D4AF37;
}

.navbar ul li a:hover::after {
    width: 100%;
}

.navbar ul li a span {
    margin-left: 6px;
    font-size: 10px;
    display: inline-block;
    color: #D4AF37;
}

/* ================= DROPDOWN PANELS ================= */
.dropdown .dropdown-menu,
.dropdown .mega-menu {
    position: absolute;
    left: 50%;
    top: calc(100% + 8px);
    transform: translateX(-50%) translateY(12px);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    background: #ffffff;
    border-top: 3px solid #D4AF37; /* Gold Top Border */
    border-radius: 0 0 18px 18px;
    box-shadow: 0 24px 60px rgba(0, 0, 0, 0.1);
    transition: opacity 0.25s ease, transform 0.25s ease, visibility 0.25s ease;
    z-index: 999;
}

.dropdown:hover .dropdown-menu,
.dropdown:hover .mega-menu {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translateX(-50%) translateY(0);
}

.dropdown .dropdown-menu {
    width: 240px;
    padding: 18px 20px;
}

.dropdown .dropdown-menu a {
    display: block;
    margin-bottom: 10px;
    color: #333333;
    font-size: 14px;
    text-decoration: none;
    padding: 10px 15px;
    border-radius: 6px;
    transition: all 0.25s ease;
    font-weight: 500;
}

.dropdown .dropdown-menu a:last-child {
    margin-bottom: 0;
}

.dropdown .dropdown-menu a:hover {
    color: #D4AF37;
    background: #fafafa;
    padding-left: 20px;
}

.mega-menu {
    left: 50%;
    width: 600px;
    max-width: 90vw;
    padding: 30px 40px;
    display: flex;
    justify-content: space-between;
}

.mega-menu .mega-links {
    width: 100%;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

.mega-menu .mega-links ul {
    list-style: none;
    display: block;
}

.mega-menu .mega-links ul li {
    margin-bottom: 12px;
}

.mega-menu .mega-links ul li a {
    color: #333333 !important;
    font-size: 15px;
    text-decoration: none;
    transition: all 0.2s ease;
    text-transform: none;
    font-weight: 500;
}

.mega-menu .mega-links ul li a:hover {
    color: #D4AF37 !important;
    padding-left: 5px;
}

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

/* Parallax background layer */
.hero-bg {
    position: absolute;
    inset: -15% 0;          /* extra height top & bottom for parallax travel */
    background-image: linear-gradient(rgba(0, 0, 0, 0.42), rgba(0, 0, 0, 0.42)), var(--hero-bg, url('images/London__Home.avif'));
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    will-change: transform;
    transition: transform 0.05s linear;
    z-index: 0;
}

.hero-content {
    position: relative;
    z-index: 5;
    color: white;
    max-width: 1200px;
    padding: 20px;
    animation: fadeUp 1.5s ease;
}

.hero-content h2 {
    font-size: 58px;
    font-family: 'Playfair Display', serif;
    font-weight: 400;
    margin-bottom: 18px;
    line-height: 1.2;
    color: #D4AF37; /* Gold accent on hero */
    text-shadow: 0 4px 10px rgba(0, 0, 0, 0.5);
}

.hero-content h1 {
    font-size: 80px;
    line-height: 1.1;
    font-family: 'Playfair Display', serif;
    font-weight: 700;
    margin-bottom: 24px;
    letter-spacing: 1px;
    text-shadow: 0 5px 15px rgba(0, 0, 0, 0.6);
}

.hero-content p {
    font-size: 24px;
    font-weight: 300;
    line-height: 1.7;
    text-shadow: 0 3px 8px rgba(0, 0, 0, 0.5);
}

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

/* ================= ARROWS ================= */
.arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 70px;
    height: 70px;
    border: 1px solid rgba(212, 175, 55, 0.5);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    color: white;
    font-size: 24px;
    cursor: pointer;
    z-index: 20;
    backdrop-filter: blur(8px);
    background: rgba(255, 255, 255, 0.1);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
    transition: 0.4s ease;
}

.arrow:hover {
    background: #D4AF37;
    border-color: #D4AF37;
    color: white;
    transform: translateY(-50%) scale(1.1);
}

.left-arrow { left: 40px; }
.right-arrow { right: 40px; }

/* ================= COMMON SECTIONS ================= */
.section-title {
    text-align: center;
    margin-bottom: 60px;
}

.section-title h2 {
    font-size: 50px;
    font-family: 'Playfair Display', serif;
    color: #111111;
    font-weight: 700;
    position: relative;
    display: inline-block;
}

.section-title h2::after {
    content: '';
    display: block;
    width: 60%;
    height: 3px;
    background: #D4AF37;
    margin: 15px auto 0;
    border-radius: 2px;
}

/* ================= ABOUT SECTION ================= */
.about-section {
    width: 100%;
    padding: 120px 8%;
    background: #ffffff;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 80px;
}

.about-image {
    flex: 1;
    display: flex;
    justify-content: center;
}

.about-image img {
    width: 100%;
    max-width: 520px;
    height: 650px;
    object-fit: cover;
    border-radius: 12px;
    box-shadow: 0 15px 45px rgba(0, 0, 0, 0.1);
    transition: 0.5s ease;
}

.about-image img:hover {
    transform: scale(1.02);
}

.about-content {
    flex: 1;
    max-width: 650px;
}

.about-content h4 {
    font-size: 24px;
    color: #D4AF37;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 15px;
    font-weight: 600;
}

.about-content h2 {
    font-size: 46px;
    line-height: 1.25;
    margin-bottom: 28px;
    font-family: 'Playfair Display', serif;
    font-weight: 700;
    color: #111111;
}

.about-content p {
    font-size: 17px;
    line-height: 1.9;
    color: #555555;
    margin-bottom: 40px;
}

.about-btn {
    display: inline-block;
    padding: 16px 38px;
    background: #D4AF37;
    color: white;
    text-decoration: none;
    font-size: 16px;
    font-weight: 600;
    border-radius: 4px;
    transition: 0.4s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.about-btn:hover {
    background: #111111;
    transform: translateY(-4px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
}

/* ================= SERVICES SECTION ================= */
.services-section {
    width: 100%;
    background: #fafafa;
    padding: 100px 5%;
}

.services-container {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.service-card, .place-card {
    background: #ffffff;
    border-radius: 8px;
    overflow: hidden;
    transition: 0.5s ease;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.06);
    border: 1px solid rgba(0,0,0,0.03);
}

.service-card:hover, .place-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(212, 175, 55, 0.15);
}

.service-card img, .place-card img {
    width: 100%;
    height: 240px;
    object-fit: cover;
    transition: 0.5s ease;
}

.service-card:hover img, .place-card:hover img {
    transform: scale(1.05);
}

.service-content, .place-content {
    padding: 30px 25px;
    text-align: center;
}

.service-content h3, .place-content h3 {
    font-size: 24px;
    font-family: 'Playfair Display', serif;
    margin-bottom: 15px;
    color: #111111;
    font-weight: 700;
}

.service-content p, .place-content p {
    font-size: 15px;
    line-height: 1.7;
    color: #666666;
}

/* ================= DESTINATION INFO ================= */
.destination-section {
    padding: 120px 8%;
    background: #ffffff;
}

.destination-container {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.destination-container h2 {
    font-size: 48px;
    font-family: 'Playfair Display', serif;
    color: #111;
    margin-bottom: 30px;
}

.destination-container p {
    font-size: 18px;
    color: #555;
    line-height: 1.8;
    margin-bottom: 20px;
}

/* ================= PLACES ================= */
.places-section {
    padding: 100px 5%;
    background: #fafafa;
}

.places-container {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

/* ================= SERVICE BOXES ================= */
.service-box {
    background: #fff;
    padding: 40px 30px;
    text-align: center;
    border-radius: 8px;
    box-shadow: 0 5px 25px rgba(0,0,0,0.05);
    transition: 0.4s;
    border: 1px solid #eaeaea;
}

.service-box:hover {
    transform: translateY(-8px);
    border-color: #D4AF37;
    box-shadow: 0 10px 30px rgba(212, 175, 55, 0.1);
}

.service-box i {
    font-size: 45px;
    color: #D4AF37;
    margin-bottom: 20px;
}

.service-box h3 {
    font-size: 22px;
    color: #111;
    margin-bottom: 15px;
    font-family: 'Playfair Display', serif;
}

.service-box p {
    color: #666;
    font-size: 15px;
    line-height: 1.6;
}

/* ================= CONTACT STRIP ================= */
.contact-strip {
    background: linear-gradient(rgba(0,0,0,0.7), rgba(0,0,0,0.7)), url('images/Global_Home.avif');
    background-size: cover;
    background-position: center;
    padding: 100px 20px;
    text-align: center;
    color: #fff;
}

.contact-strip h2 {
    font-size: 45px;
    font-family: 'Playfair Display', serif;
    margin-bottom: 20px;
    color: #D4AF37;
}

.contact-strip p {
    font-size: 20px;
    margin-bottom: 30px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.contact-info {
    display: flex;
    justify-content: center;
    gap: 40px;
    font-size: 18px;
}

.contact-info i {
    color: #D4AF37;
    margin-right: 10px;
}

/* ================= INQUIRY FORM ================= */
.inquiry-section {
    padding: 100px 5%;
    background: #ffffff;
}

.inquiry-container {
    max-width: 800px;
    margin: 0 auto;
    background: #fafafa;
    padding: 50px;
    border-radius: 12px;
    box-shadow: 0 15px 40px rgba(0,0,0,0.06);
    border-top: 4px solid #D4AF37;
}

.inquiry-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.form-group {
    display: flex;
    gap: 20px;
}

.form-group input, .inquiry-form select, .inquiry-form textarea {
    width: 100%;
    padding: 15px;
    border: 1px solid #ddd;
    border-radius: 6px;
    font-size: 15px;
    background: #fff;
    font-family: 'Poppins', sans-serif;
}

.form-group input:focus, .inquiry-form select:focus, .inquiry-form textarea:focus {
    outline: none;
    border-color: #D4AF37;
}

.inquiry-btn {
    padding: 16px;
    background: #D4AF37;
    color: #fff;
    border: none;
    border-radius: 6px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: 0.3s;
    text-transform: uppercase;
}

.inquiry-btn:hover {
    background: #111;
}

/* ================= GALLERY ================= */
.gallery-section {
    padding: 100px 5%;
    background: #ffffff;
}
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 15px;
}
.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 8px;
    height: 250px;
}
.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: 0.5s;
}
.gallery-item:hover img {
    transform: scale(1.1);
}

/* ================= TESTIMONIALS ================= */
.testimonials-section {
    padding: 100px 5%;
    background: #fafafa;
    text-align: center;
}
.testi-container {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}
.testi-card {
    background: #fff;
    padding: 40px;
    border-radius: 8px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
}
.testi-card i {
    font-size: 30px;
    color: #D4AF37;
    margin-bottom: 20px;
}
.testi-card p {
    font-size: 16px;
    font-style: italic;
    color: #666;
    margin-bottom: 20px;
}
.testi-card h5 {
    font-size: 18px;
    color: #111;
}

/* ================= FLOAT BUTTON ================= */
.whatsapp-float {
    position: fixed;
    bottom: 40px;
    right: 40px;
    background: #25d366;
    color: white;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 35px;
    box-shadow: 0 10px 20px rgba(0,0,0,0.2);
    z-index: 1000;
    transition: 0.3s;
    text-decoration: none;
}
.whatsapp-float:hover {
    transform: scale(1.1);
    background: #1ebd5a;
}

/* ================= FOOTER ================= */
.footer {
    width: 100%;
    background: #111111; /* Keep footer dark for contrast */
    color: #ffffff;
    padding-top: 90px;
}

.footer-container {
    width: 100%;
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 60px;
    padding: 0 7% 70px;
}

.footer-box img {
    width: 180px;
    margin-bottom: 25px;
    background: white;
    padding: 10px;
    border-radius: 4px;
}

.footer-box p {
    color: #bbbbbb;
    font-size: 15px;
    line-height: 1.9;
    margin-bottom: 20px;
}

.footer-box h3 {
    font-size: 24px;
    margin-bottom: 28px;
    color: #D4AF37;
    font-family: 'Playfair Display', serif;
}

.footer-box ul {
    list-style: none;
}

.footer-box ul li {
    margin-bottom: 16px;
}

.footer-box ul li a {
    text-decoration: none;
    color: #bbbbbb;
    font-size: 15px;
    transition: 0.3s ease;
}

.footer-box ul li a:hover {
    color: #D4AF37;
    padding-left: 6px;
}

.footer-contact p {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 16px;
    color: #ffffff;
}

.footer-contact i {
    color: #D4AF37;
    font-size: 18px;
}

.footer-social {
    display: flex;
    gap: 14px;
    margin-top: 25px;
}

.footer-social a {
    width: 45px;
    height: 45px;
    background: rgba(255, 255, 255, 0.1);
    color: white;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    text-decoration: none;
    font-size: 18px;
    transition: 0.4s ease;
}

.footer-social a:hover {
    background: #D4AF37;
    transform: translateY(-5px);
}

.footer-destination-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.footer-destination-grid ul li {
    margin-bottom: 10px;
}

.footer-btn {
    display: inline-block;
    padding: 12px 25px;
    background: #D4AF37;
    color: white;
    text-decoration: none;
    margin-top: 10px;
    border-radius: 4px;
    transition: 0.4s ease;
}

.footer-btn:hover {
    background: white;
    color: #111;
}

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.1);
    padding: 25px 7%;
    text-align: center;
    background: #0a0a0a;
}

.footer-bottom p {
    font-size: 14px;
    color: #777;
}

/* ================= MOBILE RESPONSIVE ================= */
@media(max-width: 1200px) {
    .services-container, .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media(max-width: 992px) {
    .header { padding: 15px 25px; }
    .about-section { flex-direction: column; text-align: center; }
    .footer-container { grid-template-columns: 1fr 1fr; gap: 40px; }
    .mega-menu { display: none; } /* Need a proper mobile menu JS setup */
}

@media(max-width: 768px) {
    .hero-content h1 { font-size: 45px; }
    .hero-content h2 { font-size: 32px; }
    .services-container, .places-container, .testi-container, .gallery-grid { grid-template-columns: 1fr; }
    .footer-container { grid-template-columns: 1fr; }
    .form-group { flex-direction: column; gap: 10px; }
}