@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400..900;1,400..900&family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');

/* Universal Reset & Luxury Dark Palette Variables */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
}

h1, h2, h3, h4 {
    font-family: 'Playfair Display', serif;
}

:root {
    --bg-dark-master: #090e10; /* Ultra-deep dark premium background with subtle teal undertone */
    --bg-card-dark: #11181b;   /* Slightly lighter polished surface dark for premium card look */
    --primary-teal: #1cb5be;   /* Glowing Teal from the original wave logo */
    --gold-accent: #d4ac0d;    /* Luxurious Gold reflecting the premium Tavodn typography */
    --gold-hover: #b7950b;
    --text-light: #f4f7f6;     /* Off-white for sleek and modern contrast, zero eye-strain */
    --text-muted: #8a9597;     /* Clean muted gray for secondary text hierarchies */
}

body {
    background-color: var(--bg-dark-master);
    color: var(--text-light);
    line-height: 1.6;
    overflow-x: hidden;
}

.container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 60px 20px;
}

/* Luxury Header / Navbar Style */
.navbar {
    background-color: rgba(9, 14, 16, 0.95);
    backdrop-filter: blur(12px); /* Modern frosted glass effect */
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 60px;
    border-bottom: 1px solid rgba(212, 172, 13, 0.15); /* Elegant ultra-thin gold separation line */
    position: sticky;
    top: 0;
    z-index: 1000;
    transition: padding 0.3s ease;
}

.navbar.scrolled {
    padding: 10px 60px;
}

.logo-container {
    display: flex;
    align-items: center;
    gap: 15px;
    cursor: pointer;
}

/* LOGO SIZE ENHANCED FOR EXCLUSIVE AND BOLD LUXURY APPEARANCE */
.nav-logo {
    height: 100px; /* Made double the size as requested! Bold & Premium */
    width: auto;
    object-fit: contain;
    filter: drop-shadow(0px 4px 15px rgba(28, 181, 190, 0.25)); /* High-end subtle teal glow */
    transition: height 0.3s ease;
}

.navbar.scrolled .nav-logo {
    height: 70px;
}

.brand-titles {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.logo-text-main {
    font-size: 26px;
    font-weight: 700;
    color: var(--gold-accent);
    letter-spacing: 2px;
    font-family: 'Playfair Display', serif;
    line-height: 1.1;
    text-transform: uppercase;
}

.logo-text-sub {
    font-size: 11px;
    font-weight: 600;
    color: var(--primary-teal);
    letter-spacing: 4px;
    font-family: 'Poppins', sans-serif;
    text-transform: uppercase;
}

.nav-links {
    list-style: none;
    display: flex;
}

.nav-links li {
    margin-left: 35px;
}

.nav-links a {
    text-decoration: none;
    color: var(--text-muted);
    font-weight: 500;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    font-size: 13px;
    transition: all 0.3s ease;
}

.nav-links a:hover, .nav-links a.active {
    color: var(--gold-accent);
    text-shadow: 0 0 10px rgba(212, 172, 13, 0.3);
}

/* Hero Section Container */
.hero-section {
    height: 85vh;
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: #ffffff;
    padding: 0 20px;
}

/* Background Slideshow Wrapper */
.slideshow-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

/* Individual Slide Styling with Luxury Shading Overlay */
.slideshow-bg .slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    opacity: 0;
    /* 7 Images x 5s per image = 35 Seconds for Total Loop Duration */
    animation: luxurySlideshow7 35s linear infinite; 
}

/* Image Delay Configurations (Perfectly timed intervals of 5 seconds) */
.slideshow-bg .slide:nth-child(1) { animation-delay: 0s; }
.slideshow-bg .slide:nth-child(2) { animation-delay: 5s; }
.slideshow-bg .slide:nth-child(3) { animation-delay: 10s; }
.slideshow-bg .slide:nth-child(4) { animation-delay: 15s; }
.slideshow-bg .slide:nth-child(5) { animation-delay: 20s; }
.slideshow-bg .slide:nth-child(6) { animation-delay: 25s; }
.slideshow-bg .slide:nth-child(7) { animation-delay: 30s; }

/* Precise Keyframes for a 7-Image Smooth Loop with Zoom Out */
@keyframes luxurySlideshow7 {
    0% {
        opacity: 0;
        transform: scale(1);
    }
    1.42% {
        opacity: 1; /* Smooth Fade-in */
    }
    14.28% {
        opacity: 1;
    }
    15.70% {
        opacity: 0; /* Smooth Fade-out */
        transform: scale(1.04); /* Suble Premium Zoom-out */
    }
    100% {
        opacity: 0;
    }
}

/* Luxury Dark Overlay Layer so text is crystal clear */
.slideshow-bg::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(rgba(9, 14, 16, 0.5), rgba(9, 14, 16, 0.95));
    z-index: 2;
}

/* Content over the slideshow */
.hero-content {
    position: relative;
    z-index: 3;
    max-width: 800px;
    animation: fadeInDown 1s cubic-bezier(0.16, 1, 0.3, 1);
}

.hero-subtitle {
    font-size: 14px;
    color: var(--primary-teal);
    letter-spacing: 4px;
    font-weight: 600;
    text-transform: uppercase;
    margin-bottom: 20px;
    font-family: 'Poppins', sans-serif;
}

.hero-content h1 {
    font-family: 'Playfair Display', serif;
    font-size: 56px;
    margin-bottom: 20px;
    font-weight: 700;
    color: #ffffff;
    letter-spacing: 1px;
    text-shadow: 0px 4px 25px rgba(0, 0, 0, 0.9);
}

.hero-content p {
    font-size: 20px;
    margin-bottom: 35px;
    max-width: 800px;
    color: var(--text-muted);
    font-weight: 300;
}

/* Premium Gold Action Buttons */
.btn-primary {
    background: linear-gradient(135deg, var(--gold-accent), #b7950b);
    color: #090e10;
    padding: 16px 42px;
    text-decoration: none;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    border-radius: 3px;
    box-shadow: 0 5px 20px rgba(212, 172, 13, 0.25);
    transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
    display: inline-block;
}

.btn-primary:hover {
    background: var(--gold-hover);
    box-shadow: 0 8px 25px rgba(212, 172, 13, 0.45);
    transform: translateY(-3px);
}

.btn-secondary {
    display: inline-block;
    background-color: transparent;
    color: var(--gold-accent);
    padding: 12px 28px;
    text-decoration: none;
    border: 1px solid var(--gold-accent);
    border-radius: 2px;
    font-weight: 600;
    margin-top: 20px;
    text-transform: uppercase;
    font-size: 12px;
    letter-spacing: 1px;
    transition: all 0.3s ease;
}

.btn-secondary:hover {
    background-color: var(--gold-accent);
    color: #090e10;
    box-shadow: 0 0 18px rgba(212, 172, 13, 0.3);
}

.btn-luxury {
    display: inline-block;
    padding: 16px 45px;
    background-color: transparent;
    color: var(--gold-accent);
    text-decoration: none;
    font-family: 'Playfair Display', serif;
    font-weight: 700;
    font-size: 16px;
    border: 1px solid var(--gold-accent);
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    text-transform: uppercase;
    letter-spacing: 2px;
}

.btn-luxury:hover {
    background-color: var(--gold-accent);
    color: var(--bg-dark-master);
    box-shadow: 0 10px 25px rgba(212, 172, 13, 0.2);
    transform: translateY(-2px);
}

.btn-luxury-secondary {
    display: inline-block;
    background-color: transparent;
    color: var(--primary-teal);
    padding: 12px 28px;
    text-decoration: none;
    border: 1px solid var(--primary-teal);
    font-weight: 600;
    margin-top: 25px;
    text-transform: uppercase;
    font-size: 13px;
    letter-spacing: 1.5px;
    transition: all 0.3s;
    font-family: 'Poppins', sans-serif;
}

.btn-luxury-secondary:hover {
    background-color: var(--primary-teal);
    color: var(--bg-dark-master);
    box-shadow: 0 0 20px rgba(28, 181, 190, 0.4);
}

/* Page Common Header Design */
.page-header {
    background-color: var(--bg-card-dark);
    border-bottom: 1px solid rgba(212, 172, 13, 0.08);
    color: white;
    text-align: center;
    padding: 80px 20px;
}

.page-header h1 {
    font-family: 'Playfair Display', serif;
    font-size: 44px;
    color: var(--gold-accent);
    margin-bottom: 15px;
}

.page-header p {
    color: var(--text-muted);
    font-size: 16px;
    font-weight: 300;
}

/* Section Titles */
.section-title {
    text-align: center;
    margin-bottom: 50px;
}

.section-title h2 {
    font-size: 40px;
    color: var(--text-light);
    margin-bottom: 20px;
    font-family: 'Playfair Display', serif;
}

.gold-line {
    height: 2px;
    width: 60px;
    background-color: var(--gold-accent);
    margin: 0 auto;
}

/* Introduction Features Grid */
.intro-section h2 {
    font-family: 'Playfair Display', serif;
    text-align: center;
    font-size: 36px;
    color: #ffffff;
    margin-bottom: 50px;
}

.features-grid {
    display: flex;
    gap: 25px;
}

.feature-card {
    background: var(--bg-card-dark);
    padding: 40px 30px;
    border-radius: 4px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.4);
    flex: 1;
    border: 1px solid rgba(28, 181, 190, 0.08);
    border-top: 4px solid var(--primary-teal); /* Beautiful sharp teal top-border accent */
    transition: all 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-8px);
    border-color: var(--gold-accent);
}

.feature-card h3 {
    font-family: 'Playfair Display', serif;
    color: var(--gold-accent);
    margin-bottom: 15px;
    font-size: 22px;
}

.feature-card p {
    color: var(--text-muted);
    font-size: 14px;
    font-weight: 300;
}

/* Tour Packages Content Layout */
.tours-container {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.tour-card {
    background: var(--bg-card-dark);
    border-radius: 4px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.5);
    padding: 45px;
    border: 1px solid rgba(212, 172, 13, 0.05);
    border-left: 6px solid var(--gold-accent); /* Signature luxury gold edge */
    transition: transform 0.3s ease;
}

.tour-card:hover {
    transform: scale(1.01);
}

.tour-badge {
    background: rgba(28, 181, 190, 0.12);
    color: var(--primary-teal);
    padding: 6px 18px;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    border-radius: 2px;
    border: 1px solid rgba(28, 181, 190, 0.3);
}

.tour-card h3 {
    font-family: 'Playfair Display', serif;
    font-size: 30px;
    margin: 20px 0 12px 0;
    color: #ffffff;
}

.tour-card p {
    color: var(--text-muted);
    font-weight: 300;
    font-size: 15px;
}

/* Contact Page Multi-Column Layout */
.contact-page-container {
    display: flex;
    gap: 50px;
    align-items: flex-start;
}

.contact-info-wrapper {
    flex: 1;
}

.contact-info-wrapper h2 {
    font-family: 'Playfair Display', serif;
    font-size: 30px;
    color: #ffffff;
    margin-bottom: 10px;
}

.info-subtitle {
    color: var(--text-muted);
    font-size: 14px;
    margin-bottom: 30px;
    font-weight: 300;
}

/* Contact Cards Grid */
.contact-cards-grid {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

/* Luxury Clickable Card Style */
.info-card {
    display: flex;
    align-items: center;
    gap: 20px;
    background-color: var(--bg-card-dark);
    padding: 25px;
    border-radius: 4px;
    text-decoration: none;
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: all 0.3s ease;
}

.info-card:hover {
    transform: translateX(5px);
    border-color: var(--gold-accent);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.4);
}

.card-icon {
    width: 50px;
    height: 50px;
    background-color: var(--bg-dark-master);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gold-accent);
    font-size: 20px;
    border: 1px solid rgba(212, 172, 13, 0.2);
    transition: all 0.3s ease;
}

.info-card:hover .card-icon {
    color: var(--bg-dark-master);
    background-color: var(--gold-accent);
}

/* Specific Card Hover Accents */
.whatsapp-card:hover {
    border-color: #25d366;
}
.whatsapp-card:hover .card-icon {
    background-color: #25d366;
    color: #fff;
    border-color: #25d366;
}

.facebook-card:hover {
    border-color: #1877f2;
}
.facebook-card:hover .card-icon {
    background-color: #1877f2;
    color: #fff;
    border-color: #1877f2;
}

.card-details h4 {
    color: #ffffff;
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 4px;
    letter-spacing: 0.5px;
}

.card-details p {
    color: var(--text-muted);
    font-size: 14px;
    font-weight: 300;
}

.form-container {
    flex: 1;
    background: var(--bg-card-dark);
    padding: 55px;
    border-radius: 4px;
    box-shadow: 0 20px 55px rgba(0, 0, 0, 0.6);
    border: 1px solid rgba(212, 172, 13, 0.12);
}

.form-container h2 {
    font-family: 'Playfair Display', serif;
    font-size: 34px;
    color: var(--text-light);
    margin-bottom: 30px;
}

.form-group {
    margin-bottom: 25px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: var(--gold-accent);
    font-size: 13px;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.form-group input, .form-group select, .form-group textarea {
    width: 100%;
    padding: 14px;
    background-color: var(--bg-dark-master);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 3px;
    font-size: 15px;
    color: #ffffff;
    transition: border-color 0.3s ease;
}

.form-group input:focus, .form-group select:focus, .form-group textarea:focus {
    outline: none;
    border-color: var(--primary-teal);
    box-shadow: 0 0 10px rgba(28, 181, 190, 0.15);
}

.hidden {
    display: none;
}

#formFeedback {
    margin-top: 25px;
    padding: 15px;
    border-radius: 3px;
    text-align: center;
    font-weight: bold;
}

.success {
    background-color: rgba(25, 111, 61, 0.15);
    color: #52be80;
    border: 1px solid rgba(39, 174, 96, 0.4);
}

/* Footer Section */
footer {
    background-color: #06090a;
    color: var(--text-muted);
    text-align: center;
    padding: 40px;
    margin-top: 60px;
    font-size: 13px;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    border-top: 1px solid rgba(212, 172, 13, 0.08);
}

/* Animations (Preserved from Premium Design) */
@keyframes fadeInDown {
    from { opacity: 0; transform: translateY(-30px); }
    to { opacity: 1; transform: translateY(0); }
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

.animate-on-scroll {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.animate-on-scroll.is-visible {
    opacity: 1;
    transform: translateY(0);
}

/* About Page Luxury Styles */
.about-page-wrapper {
    display: flex;
    flex-direction: column;
    gap: 60px;
}

.about-main-text h2 {
    font-family: 'Playfair Display', serif;
    font-size: 32px;
    color: var(--gold-accent);
    margin-bottom: 25px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.about-main-text p {
    font-size: 16px;
    color: var(--text-light);
    margin-bottom: 20px;
    font-weight: 300;
    text-align: justify;
}

/* Services section inside About */
.about-services-section {
    margin-top: 60px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    padding-top: 50px;
}

.about-services-section h3 {
    font-family: 'Playfair Display', serif;
    font-size: 28px;
    color: #ffffff;
    margin-bottom: 10px;
    text-align: center;
}

.section-desc {
    text-align: center;
    color: var(--text-muted);
    font-size: 15px;
    max-width: 800px;
    margin: 0 auto 40px auto;
    font-weight: 300;
}

/* Luxury 3-Column Services Grid */
.services-luxury-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
}

.service-luxury-card {
    background-color: var(--bg-card-dark);
    padding: 35px 25px;
    border-radius: 4px;
    border: 1px solid rgba(255, 255, 255, 0.03);
    transition: all 0.3s ease;
}

.service-luxury-card:hover {
    border-color: var(--primary-teal);
    transform: translateY(-5px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.4);
}

.service-luxury-card i {
    font-size: 26px;
    color: var(--primary-teal);
    margin-bottom: 20px;
    display: inline-block;
}

.service-luxury-card h4 {
    font-size: 17px;
    color: #ffffff;
    font-weight: 600;
    margin-bottom: 10px;
    letter-spacing: 0.5px;
}

.service-luxury-card p {
    color: var(--text-muted);
    font-size: 13.5px;
    font-weight: 300;
    line-height: 1.5;
}

/* ==========================================
   TESTIMONIALS STYLES (HOMEPAGE)
   ========================================== */
.testimonials-section {
    margin-top: 40px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    padding-top: 60px;
}

.testimonials-section h2 {
    font-family: 'Playfair Display', serif;
    text-align: center;
    font-size: 36px;
    color: #ffffff;
    margin-bottom: 10px;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
    margin-top: 20px;
}

.testimonial-card {
    background-color: var(--bg-card-dark);
    padding: 35px 25px;
    border-radius: 4px;
    border: 1px solid rgba(255, 255, 255, 0.03);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    transition: all 0.3s ease;
}

.testimonial-card:hover {
    border-color: var(--gold-accent);
    transform: translateY(-5px);
}

.client-rating {
    color: var(--gold-accent);
    font-size: 13px;
    margin-bottom: 20px;
}

.review-text {
    color: var(--text-light);
    font-size: 14.5px;
    font-weight: 300;
    font-style: italic;
    line-height: 1.6;
    margin-bottom: 25px;
}

.client-info h4 {
    color: #ffffff;
    font-size: 15px;
    font-weight: 600;
}

.client-info span {
    color: var(--text-muted);
    font-size: 12.5px;
    font-weight: 300;
}

/* FAQ Section */
.faq-section {
    padding-top: 40px;
    padding-bottom: 80px;
}

.faq-container {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background: var(--bg-card-dark);
    margin-bottom: 15px;
    border-radius: 4px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    overflow: hidden;
}

.faq-question {
    width: 100%;
    text-align: left;
    background: none;
    border: none;
    padding: 25px 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: var(--gold-accent);
    font-size: 18px;
    font-family: 'Playfair Display', serif;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.faq-question:hover {
    background: rgba(212, 172, 13, 0.05);
}

.faq-question i {
    color: var(--primary-teal);
    transition: transform 0.3s ease;
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease-out;
}

.faq-answer p {
    padding: 0 30px 25px 30px;
    color: var(--text-light);
    font-size: 15px;
    font-weight: 300;
    line-height: 1.6;
}

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

.faq-item.active .faq-question i {
    transform: rotate(180deg);
}

/* ==========================================
   EXCLUSIVE GALLERY PAGE STYLES
   ========================================== */
.gallery-section {
    padding-top: 50px;
    padding-bottom: 80px;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
}

.gallery-item {
    position: relative;
    border-radius: 4px;
    overflow: hidden;
    height: 250px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
    border: 1px solid rgba(255, 255, 255, 0.03);
}

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

/* Luxury Smooth Dark Gold Overlay on Hover */
.gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(transparent, rgba(9, 14, 16, 0.95));
    display: flex;
    align-items: flex-end;
    padding: 25px;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.gallery-overlay span {
    font-family: 'Playfair Display', serif;
    color: var(--gold-accent);
    font-size: 18px;
    font-weight: 600;
    letter-spacing: 0.5px;
    transform: translateY(15px);
    transition: transform 0.4s ease;
}

/* Hover States */
.gallery-item:hover img {
    transform: scale(1.08); /* Sophisticated subtle zoom */
}

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

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

/* ==========================================
   RESPONSIVE ADJUSTMENTS
   ========================================== */
@media (max-width: 900px) {
    .services-luxury-grid, .testimonials-grid, .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 600px) {
    .services-luxury-grid, .testimonials-grid, .gallery-grid {
        grid-template-columns: 1fr;
    }
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .navbar { padding: 15px 20px; }
    .nav-links { display: none; }
    .hero-content h1 { font-size: 42px; }
    .container { padding: 50px 20px; }
    .page-header h1 { font-size: 32px; }
    
    .contact-page-container {
        flex-direction: column;
        gap: 40px;
    }
    
    .contact-info-wrapper, .form-container {
        width: 100%;
    }
}
