/* Reset & Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-gold: #C9A961;
    --dark-bg: #0a0a0a;
    --dark-section: #1a1a1a;
    --white: #ffffff;
    --light-gray: #f5f5f5;
    --text-gray: #888888;
    --border-dark: #2a2a2a;
}

body {
    font-family: 'Poppins', sans-serif;
    background-color: var(--white);
    color: #333;
    line-height: 1.6;
    overflow-x: hidden;
}

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

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

a {
    text-decoration: none;
    color: inherit;
}

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

/* Header & Navigation */
.header {
    background-color: var(--dark-bg);
    padding: 20px 0;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    transition: all 0.3s ease;
}

.header.scrolled {
    padding: 15px 0;
    box-shadow: 0 2px 20px rgba(0,0,0,0.5);
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo h1 {
    color: var(--white);
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 0;
    font-family: 'Playfair Display', serif;
}

.logo p {
    color: var(--primary-gold);
    font-size: 11px;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-top: -5px;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 40px;
}

.nav-menu a {
    color: var(--white);
    font-size: 14px;
    font-weight: 400;
    transition: color 0.3s ease;
    letter-spacing: 0.5px;
}

.nav-menu a:hover {
    color: var(--primary-gold);
}

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

.nav-social a {
    color: var(--white);
    font-size: 14px;
    transition: color 0.3s ease;
}

.nav-social a:hover {
    color: var(--primary-gold);
}

.mobile-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
}

.mobile-toggle span {
    width: 25px;
    height: 2px;
    background: var(--white);
}

/* Hero Section */
.hero {
    height: 100vh;
    background: linear-gradient(rgba(0,0,0,0.3), rgba(0,0,0,0.3)), url('https://images.unsplash.com/photo-1547471080-7cc2caa01a7e?w=1920') center/cover no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: var(--white);
    position: relative;
}

.hero-content {
    max-width: 800px;
    padding: 0 20px;
}

.hero-title {
    font-size: 80px;
    font-weight: 700;
    margin-bottom: 10px;
    font-family: 'Playfair Display', serif;
}

.hero-subtitle {
    font-size: 24px;
    font-weight: 300;
    color: var(--white);
    margin-bottom: 30px;
    letter-spacing: 1px;
}

.hero-divider {
    width: 80px;
    height: 2px;
    background: var(--primary-gold);
    margin: 0 auto 30px;
}

.hero-description {
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: 40px;
    color: rgba(255,255,255,0.9);
}

.btn-hero {
    display: inline-block;
    padding: 16px 50px;
    background: transparent;
    border: 2px solid var(--white);
    color: var(--white);
    font-size: 14px;
    font-weight: 500;
    letter-spacing: 1px;
    text-transform: uppercase;
    transition: all 0.3s ease;
}

.btn-hero:hover {
    background: var(--primary-gold);
    border-color: var(--primary-gold);
    color: var(--dark-bg);
}

.scroll-down {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 24px;
    color: var(--white);
    animation: bounce 2s infinite;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateX(-50%) translateY(0);
    }
    40% {
        transform: translateX(-50%) translateY(-10px);
    }
    60% {
        transform: translateX(-50%) translateY(-5px);
    }
}

/* About Section */
.about-section {
    padding: 100px 0;
    background: var(--white);
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.section-title {
    font-size: 42px;
    font-weight: 700;
    margin-bottom: 30px;
    color: var(--dark-bg);
    font-family: 'Playfair Display', serif;
}

.about-text {
    color: #666;
    font-size: 15px;
    line-height: 1.9;
    margin-bottom: 20px;
}

.btn-primary {
    display: inline-block;
    padding: 14px 40px;
    background: var(--primary-gold);
    color: var(--dark-bg);
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-top: 20px;
    transition: all 0.3s ease;
}

.btn-primary:hover {
    background: #b89851;
    transform: translateY(-2px);
}

.about-image img {
    width: 100%;
    height: 600px;
    object-fit: cover;
}

/* Tours Section */
.tours-section {
    padding: 100px 0;
    background: var(--dark-bg);
}

.section-title-center {
    text-align: center;
    font-size: 48px;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 60px;
    font-family: 'Playfair Display', serif;
}

.gallery-section .section-title-center {
    color: var(--dark-bg);
}

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

.tour-card {
    background: var(--dark-section);
    overflow: hidden;
    transition: transform 0.3s ease;
}

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

.tour-image {
    height: 280px;
    overflow: hidden;
}

.tour-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

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

.tour-info {
    padding: 30px;
}

.tour-info h3 {
    font-size: 24px;
    color: var(--white);
    margin-bottom: 15px;
    font-weight: 600;
}

.tour-info p {
    color: var(--text-gray);
    font-size: 14px;
    line-height: 1.7;
    margin-bottom: 20px;
}

.tour-meta {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    margin-bottom: 25px;
    padding-top: 20px;
    border-top: 1px solid var(--border-dark);
}

.tour-meta span {
    color: var(--text-gray);
    font-size: 13px;
}

.btn-tour {
    display: inline-block;
    padding: 12px 30px;
    background: transparent;
    border: 1px solid var(--primary-gold);
    color: var(--primary-gold);
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    transition: all 0.3s ease;
}

.btn-tour:hover {
    background: var(--primary-gold);
    color: var(--dark-bg);
}

/* Contact Form Section */
.contact-section {
    padding: 100px 0;
    background: var(--dark-bg);
    position: relative;
}

.contact-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, rgba(10,10,10,0.95) 50%, rgba(10,10,10,0.7) 100%);
    z-index: 1;
}

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

.contact-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    min-height: 600px;
}

.contact-form-wrapper {
    padding: 40px;
}

.form-title {
    font-size: 42px;
    color: var(--white);
    margin-bottom: 40px;
    font-family: 'Playfair Display', serif;
}

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

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 15px 20px;
    background: transparent;
    border: 1px solid var(--border-dark);
    color: var(--white);
    font-size: 14px;
    font-family: 'Poppins', sans-serif;
    transition: border-color 0.3s ease;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: var(--text-gray);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-gold);
}

.form-group select {
    color: var(--text-gray);
}

.form-group select option {
    background: var(--dark-bg);
    color: var(--white);
}

.form-group textarea {
    resize: vertical;
}

.btn-submit {
    padding: 16px 50px;
    background: var(--primary-gold);
    border: none;
    color: var(--dark-bg);
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    cursor: pointer;
    transition: all 0.3s ease;
    align-self: flex-start;
}

.btn-submit:hover {
    background: #b89851;
    transform: translateY(-2px);
}

/* Gallery Section */
.gallery-section {
    padding: 100px 0;
    background: var(--white);
}

.gallery-subtitle {
    text-align: center;
    color: #666;
    font-size: 16px;
    margin-top: -40px;
    margin-bottom: 50px;
}

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

.gallery-item {
    position: relative;
    height: 300px;
    overflow: hidden;
    cursor: pointer;
    border-radius: 5px;
}

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

.gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(201, 169, 97, 0.9);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.gallery-overlay i {
    font-size: 40px;
    color: var(--white);
}

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

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

/* Services Section */
.services-section {
    padding: 100px 0;
    background: var(--light-gray);
}

.services-title {
    text-align: center;
    font-size: 42px;
    font-weight: 700;
    color: var(--dark-bg);
    margin-bottom: 70px;
    font-family: 'Playfair Display', serif;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 40px;
}

.service-card {
    text-align: center;
    padding: 30px 20px;
}

.service-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 25px;
    background: var(--primary-gold);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    color: var(--dark-bg);
    transition: all 0.3s ease;
}

.service-card:hover .service-icon {
    transform: scale(1.1);
}

.service-card h3 {
    font-size: 18px;
    color: var(--dark-bg);
    margin-bottom: 15px;
    font-weight: 600;
}

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

/* Reasons Section */
.reasons-section {
    padding: 100px 0;
    background: var(--dark-bg);
}

.reasons-title {
    text-align: center;
    font-size: 42px;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 70px;
    font-family: 'Playfair Display', serif;
}

.reasons-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 40px;
}

.reason-card {
    text-align: center;
    padding: 30px 20px;
}

.reason-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 25px;
    background: transparent;
    border: 2px solid var(--primary-gold);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    color: var(--primary-gold);
    transition: all 0.3s ease;
}

.reason-card:hover .reason-icon {
    background: var(--primary-gold);
    color: var(--dark-bg);
    transform: scale(1.1);
}

.reason-card h3 {
    font-size: 18px;
    color: var(--white);
    margin-bottom: 15px;
    font-weight: 600;
}

.reason-card p {
    font-size: 13px;
    color: var(--text-gray);
    line-height: 1.6;
}

/* Footer */
.footer {
    background: var(--dark-section);
    padding: 80px 0 30px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 60px;
    margin-bottom: 50px;
}

.footer-col h3 {
    font-size: 24px;
    color: var(--white);
    margin-bottom: 20px;
    font-family: 'Playfair Display', serif;
}

.footer-col h4 {
    font-size: 18px;
    color: var(--white);
    margin-bottom: 20px;
    font-weight: 600;
}

.footer-col p {
    color: var(--text-gray);
    font-size: 14px;
    line-height: 1.8;
    margin-bottom: 25px;
}

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

.footer-social a {
    width: 40px;
    height: 40px;
    background: transparent;
    border: 1px solid var(--border-dark);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    transition: all 0.3s ease;
}

.footer-social a:hover {
    background: var(--primary-gold);
    border-color: var(--primary-gold);
    color: var(--dark-bg);
}

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

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

.footer-col ul li a {
    color: var(--text-gray);
    font-size: 14px;
    transition: color 0.3s ease;
}

.footer-col ul li a:hover {
    color: var(--primary-gold);
}

.footer-contact li {
    color: var(--text-gray);
    font-size: 14px;
}

.footer-contact li i {
    color: var(--primary-gold);
    margin-right: 10px;
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid var(--border-dark);
    color: var(--text-gray);
    font-size: 13px;
}

/* WhatsApp Float */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    background: #25D366;
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    box-shadow: 0 5px 20px rgba(37, 211, 102, 0.5);
    z-index: 999;
    transition: all 0.3s ease;
}

.whatsapp-float:hover {
    transform: scale(1.1);
}

/* Responsive Design */
@media (max-width: 992px) {
    .nav-menu {
        display: none;
    }

    .mobile-toggle {
        display: flex;
    }

    .hero-title {
        font-size: 56px;
    }

    .about-grid,
    .contact-grid {
        grid-template-columns: 1fr;
    }

    .tours-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .services-grid,
    .reasons-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
    }

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

@media (max-width: 768px) {
    .hero-title {
        font-size: 42px;
    }

    .tours-grid,
    .services-grid,
    .reasons-grid,
    .gallery-grid {
        grid-template-columns: 1fr;
    }

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

    .contact-image {
        display: none;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 36px;
    }

    .section-title,
    .section-title-center,
    .services-title,
    .reasons-title,
    .form-title {
        font-size: 32px;
    }
}