/* AdventureCo - Beautiful & Clean CSS */

/* Colors */
:root {
    --primary: #2D5A4B;
    --primary-dark: #1e4035;
    --secondary: #E8B86D;
    --accent: #D4726A;
    --dark: #1a1a2e;
    --gray: #6b7280;
    --light: #f8f9fa;
    --white: #ffffff;
    --shadow: 0 4px 20px rgba(0,0,0,0.1);
    --shadow-hover: 0 8px 35px rgba(0,0,0,0.15);
    --radius: 12px;
}

/* Reset */
* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
    font-family: 'Poppins', sans-serif;
    line-height: 1.6;
    color: var(--dark);
    background: var(--white);
}
h1, h2, h3 { font-family: 'Playfair Display', serif; font-weight: 700; line-height: 1.3; }
a { text-decoration: none; color: inherit; transition: all 0.3s ease; }
img { max-width: 100%; height: auto; }

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

/* Logo - More Wonderful */
.logo {
    font-family: 'Playfair Display', serif;
    font-size: 28px;
    font-weight: 700;
    color: var(--primary);
    display: flex;
    align-items: center;
    gap: 8px;
}
.logo-icon {
    font-size: 32px;
    color: var(--secondary);
    animation: compassPulse 3s ease-in-out infinite;
}
@keyframes compassPulse {
    0%, 100% { transform: rotate(0deg); }
    50% { transform: rotate(15deg); }
}
.logo:hover { color: var(--primary-dark); }
.logo:hover .logo-icon { transform: rotate(25deg); }

/* Navbar */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(255,255,255,0.98);
    backdrop-filter: blur(10px);
    box-shadow: var(--shadow);
    z-index: 1000;
    padding: 15px 0;
}
.navbar .container { display: flex; justify-content: space-between; align-items: center; }
.nav-links { display: flex; gap: 30px; }
.nav-links a { font-weight: 500; font-size: 15px; position: relative; padding: 6px 0; color: var(--dark); }
.nav-links a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary);
    transition: all 0.3s ease;
}
.nav-links a:hover::after,
.nav-links a.active::after { width: 100%; }
.nav-auth { display: flex; gap: 15px; align-items: center; }

/* Buttons - More Beautiful */
.btn-login { 
    font-weight: 500; 
    padding: 10px 22px; 
    border-radius: 30px; 
    color: var(--dark);
}
.btn-login:hover { 
    background: var(--light);
    color: var(--primary);
}
.btn-primary {
    background: var(--primary);
    color: var(--white);
    padding: 12px 28px;
    border-radius: 30px;
    font-weight: 600;
    font-size: 14px;
    border: 2px solid var(--primary);
    box-shadow: 0 4px 15px rgba(45, 90, 75, 0.3);
}
.btn-primary:hover {
    background: var(--primary-dark);
    border-color: var(--primary-dark);
    transform: translateY(-3px);
    box-shadow: 0 6px 25px rgba(45, 90, 75, 0.4);
}
.btn-secondary {
    background: transparent;
    color: var(--primary);
    padding: 14px 32px;
    border-radius: 30px;
    font-weight: 600;
    border: 2px solid var(--primary);
}
.btn-secondary:hover {
    background: var(--primary);
    color: var(--white);
    transform: translateY(-3px);
}
.mobile-menu { display: none; font-size: 24px; cursor: pointer; }

/* Hero */
.hero {
    min-height: 100vh;
    background: linear-gradient(135deg, rgba(45, 90, 75, 0.92), rgba(26, 26, 46, 0.95)),
                url('https://images.unsplash.com/photo-1488646953014-85cb44e25828?w=1920') center/cover;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 120px 20px 80px;
    color: var(--white);
}
.hero h1 { font-size: 52px; margin-bottom: 18px; }
.hero p { font-size: 19px; opacity: 0.9; margin-bottom: 35px; }
.hero-search {
    display: flex;
    gap: 12px;
    background: var(--white);
    padding: 18px;
    border-radius: 50px;
    box-shadow: var(--shadow-hover);
    max-width: 850px;
    margin: 0 auto 45px;
}
.search-box {
    flex: 1;
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 18px;
    background: var(--light);
    border-radius: 25px;
}
.search-box input, .search-box select {
    border: none;
    background: transparent;
    font-size: 14px;
    width: 100%;
    outline: none;
    font-family: inherit;
}
.btn-search {
    background: var(--secondary);
    color: var(--dark);
    padding: 14px 30px;
    border-radius: 25px;
    font-weight: 600;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
}
.btn-search:hover { background: #d4a85a; transform: translateY(-2px); }
.hero-stats { display: flex; justify-content: center; gap: 70px; margin-top: 30px; }
.stat-number { display: block; font-size: 38px; font-weight: 700; color: var(--secondary); font-family: 'Playfair Display', serif; }
.stat-label { font-size: 13px; opacity: 0.8; text-transform: uppercase; letter-spacing: 1px; }

/* Page Hero */
.page-hero {
    background: linear-gradient(135deg, var(--primary), #1a3d32);
    padding: 130px 20px 50px;
    text-align: center;
    color: var(--white);
}
.page-hero h1 { font-size: 44px; margin-bottom: 10px; }
.page-hero p { font-size: 17px; opacity: 0.9; }

/* Sections */
section { padding: 70px 0; }
.section-header { text-align: center; margin-bottom: 45px; }
.section-header h2 { font-size: 36px; margin-bottom: 10px; }
.section-header p { font-size: 16px; color: var(--gray); }
.text-center { text-align: center; }

/* Destinations */
.destinations { background: var(--light); }
.destinations-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    grid-template-rows: repeat(2, 200px);
    gap: 18px;
    margin-bottom: 35px;
}
.destination-card { position: relative; border-radius: var(--radius); overflow: hidden; cursor: pointer; transition: all 0.4s ease; }
.destination-card.large { grid-column: span 2; grid-row: span 2; }
.destination-card:hover { transform: translateY(-8px); }
.destination-card img { width: 100%; height: 100%; object-fit: cover; transition: all 0.4s ease; }
.destination-card:hover img { transform: scale(1.1); }
.destination-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 25px;
    background: linear-gradient(transparent, rgba(0,0,0,0.8));
    color: var(--white);
}
.destination-overlay h3 { font-size: 20px; margin-bottom: 6px; }
.destination-overlay p { font-size: 13px; opacity: 0.9; margin-bottom: 8px; }
.destination-overlay .price { font-weight: 700; color: var(--secondary); font-size: 17px; }

/* Tours */
.tours-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 25px; margin-bottom: 35px; }
.tour-card { background: var(--white); border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow); transition: all 0.3s ease; }
.tour-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-hover); }
.tour-image { position: relative; height: 200px; overflow: hidden; }
.tour-image img { width: 100%; height: 100%; object-fit: cover; transition: all 0.4s ease; }
.tour-card:hover .tour-image img { transform: scale(1.1); }
.tour-badge {
    position: absolute;
    top: 12px;
    left: 12px;
    background: var(--accent);
    color: var(--white);
    padding: 5px 12px;
    border-radius: 15px;
    font-size: 11px;
    font-weight: 600;
}
.tour-badge.new { background: var(--primary); }
.wishlist-btn {
    position: absolute;
    top: 12px;
    right: 12px;
    background: var(--white);
    border: none;
    width: 35px;
    height: 35px;
    border-radius: 50%;
    cursor: pointer;
    font-size: 15px;
    transition: all 0.3s ease;
}
.wishlist-btn:hover { color: var(--accent); transform: scale(1.1); }
.tour-content { padding: 20px; }
.tour-meta { display: flex; gap: 15px; margin-bottom: 12px; font-size: 12px; color: var(--gray); }
.tour-content h3 { font-size: 18px; margin-bottom: 8px; }
.tour-content p { font-size: 13px; color: var(--gray); margin-bottom: 15px; }
.tour-footer { display: flex; justify-content: space-between; align-items: center; padding-top: 15px; border-top: 1px solid #eee; margin-bottom: 14px; }
.rating { display: flex; align-items: center; gap: 4px; font-size: 13px; }
.stars { color: var(--secondary); }
.rating span { color: var(--gray); font-size: 12px; margin-left: 5px; }
.price .from { font-size: 11px; color: var(--gray); display: block; }
.price .amount { font-size: 19px; font-weight: 700; color: var(--primary); }
.full-width { width: 100%; text-align: center; }

/* Why Choose Us - WITH IMAGES */
.why-choose-us { background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%); }
.features-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
}
.feature-card {
    background: var(--white);
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: all 0.4s ease;
}
.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-hover);
}
.feature-image {
    height: 150px;
    overflow: hidden;
}
.feature-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 0.4s ease;
}
.feature-card:hover .feature-image img { transform: scale(1.1); }
.feature-card-content { padding: 22px; text-align: center; }
.feature-icon {
    font-size: 40px;
    margin-bottom: 12px;
    display: block;
}
.feature-card h3 { font-size: 18px; margin-bottom: 10px; font-family: 'Poppins', sans-serif; }
.feature-card p { font-size: 13px; color: var(--gray); line-height: 1.6; }

/* Testimonials */
.testimonials { background: var(--light); }
.testimonials-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 25px; margin-bottom: 35px; }
.testimonial-card { background: var(--white); padding: 28px 22px; border-radius: var(--radius); box-shadow: var(--shadow); transition: all 0.3s ease; }
.testimonial-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-hover); }
.quote-icon { font-size: 22px; color: var(--secondary); margin-bottom: 15px; }
.testimonial-content p { font-size: 14px; line-height: 1.7; font-style: italic; margin-bottom: 22px; }
.testimonial-author { display: flex; align-items: center; gap: 12px; }
.testimonial-author img { width: 52px; height: 52px; border-radius: 50%; object-fit: cover; }
.author-info h4 { font-size: 15px; font-family: 'Poppins', sans-serif; }
.author-info span { font-size: 12px; color: var(--gray); }

/* Reviews Page */
.reviews-content { padding: 50px 0; }
.reviews-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 25px; }
.review-card { background: var(--white); padding: 25px; border-radius: var(--radius); box-shadow: var(--shadow); }
.review-card .rating { margin-bottom: 15px; }
.tour-name { display: inline-block; margin-top: 14px; padding: 5px 12px; background: var(--light); border-radius: 15px; font-size: 12px; color: var(--primary); }

/* About Page */
.about-content { padding: 50px 0; }
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 50px; align-items: center; }
.about-text h2 { font-size: 30px; margin-bottom: 18px; }
.about-text p { font-size: 15px; color: var(--gray); margin-bottom: 18px; line-height: 1.7; }
.about-image img { border-radius: var(--radius); box-shadow: var(--shadow); }
.stats-section { background: var(--primary); padding: 55px 0; }
.stats-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 35px; text-align: center; color: var(--white); }
.stat-item .stat-number { font-size: 44px; }
.stat-item .stat-label { font-size: 13px; opacity: 0.9; }

/* Contact Page */
.contact-content { padding: 50px 0; }
.contact-grid { display: grid; grid-template-columns: 1fr 1.2fr; gap: 50px; }
.contact-info h2 { font-size: 30px; margin-bottom: 12px; }
.contact-info > p { font-size: 15px; color: var(--gray); margin-bottom: 30px; }
.contact-details { display: flex; flex-direction: column; gap: 22px; }
.contact-item { display: flex; gap: 14px; align-items: flex-start; }
.contact-icon { font-size: 22px; }
.contact-item h4 { font-size: 15px; font-family: 'Poppins', sans-serif; margin-bottom: 3px; }
.contact-item p { font-size: 13px; color: var(--gray); }
.contact-form-wrapper h2 { font-size: 30px; margin-bottom: 20px; }
.contact-form { background: var(--light); padding: 30px; border-radius: var(--radius); }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.form-group { margin-bottom: 18px; }
.form-group label { display: block; font-size: 13px; font-weight: 600; margin-bottom: 6px; }
.form-group input, .form-group select, .form-group textarea {
    width: 100%;
    padding: 12px 16px;
    border: 1px solid #ddd;
    border-radius: 8px;
    font-size: 14px;
    font-family: inherit;
    transition: all 0.3s ease;
}
.form-group input:focus, .form-group select:focus, .form-group textarea:focus { outline: none; border-color: var(--primary); box-shadow: 0 0 0 3px rgba(45, 90, 75, 0.1); }
.form-group textarea { height: 120px; resize: vertical; }
.contact-form .btn-primary { width: 100%; cursor: pointer; }

/* Newsletter */
.newsletter {
    background: linear-gradient(135deg, var(--primary), #1a3d32);
    padding: 60px 0;
    text-align: center;
    color: var(--white);
}
.newsletter-content { max-width: 500px; margin: 0 auto; }
.newsletter h2 { font-size: 30px; margin-bottom: 12px; }
.newsletter p { font-size: 16px; opacity: 0.9; margin-bottom: 25px; }
.newsletter-form { display: flex; gap: 12px; max-width: 450px; margin: 0 auto; }
.newsletter-form input { flex: 1; padding: 12px 20px; border: none; border-radius: 25px; font-size: 14px; font-family: inherit; }
.newsletter-form .btn-primary { white-space: nowrap; }

/* Footer */
.footer { background: var(--dark); color: var(--white); padding: 60px 0 25px; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1.5fr; gap: 45px; margin-bottom: 45px; }
.footer-brand .logo { margin-bottom: 15px; display: inline-flex; color: var(--white); }
.footer-brand p { color: rgba(255,255,255,0.7); font-size: 13px; line-height: 1.7; margin-bottom: 20px; }
.social-links { display: flex; gap: 8px; }
.social-links a { width: 38px; height: 38px; background: rgba(255,255,255,0.1); border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 15px; transition: all 0.3s ease; }
.social-links a:hover { background: var(--primary); transform: translateY(-3px); }
.footer-links h4, .footer-contact h4 { font-size: 16px; font-family: 'Poppins', sans-serif; margin-bottom: 18px; }
.footer-links ul li { margin-bottom: 10px; }
.footer-links a { color: rgba(255,255,255,0.7); font-size: 13px; }
.footer-links a:hover { color: var(--secondary); padding-left: 4px; }
.footer-contact ul li { display: flex; align-items: flex-start; gap: 10px; color: rgba(255,255,255,0.7); font-size: 13px; margin-bottom: 12px; }
.footer-bottom { display: flex; justify-content: space-between; align-items: center; padding-top: 22px; border-top: 1px solid rgba(255,255,255,0.1); }
.footer-bottom p { color: rgba(255,255,255,0.6); font-size: 13px; }
.footer-legal { display: flex; gap: 22px; }
.footer-legal a { color: rgba(255,255,255,0.6); font-size: 13px; }
.footer-legal a:hover { color: var(--white); }

/* Responsive */
@media (max-width: 1024px) {
    .hero h1 { font-size: 40px; }
    .destinations-grid { grid-template-columns: repeat(3, 1fr); grid-template-rows: repeat(3, 180px); }
    .destination-card.large { grid-column: span 2; grid-row: span 2; }
    .features-grid { grid-template-columns: repeat(2, 1fr); }
    .footer-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 768px) {
    .nav-links, .nav-auth { display: none; }
    .mobile-menu { display: block; }
    .hero h1 { font-size: 30px; }
    .hero-search { flex-direction: column; border-radius: var(--radius); }
    .hero-stats { gap: 25px; }
    section { padding: 45px 0; }
    .section-header h2 { font-size: 26px; }
    .destinations-grid { grid-template-columns: 1fr; grid-template-rows: auto; }
    .destination-card.large { grid-column: 1; grid-row: 1; height: 250px; }
    .tours-grid, .testimonials-grid, .reviews-grid { grid-template-columns: 1fr; }
    .features-grid { grid-template-columns: 1fr; }
    .contact-grid { grid-template-columns: 1fr; }
    .form-row { grid-template-columns: 1fr; }
    .newsletter-form { flex-direction: column; }
    .footer-grid { grid-template-columns: 1fr; gap: 30px; }
    .footer-bottom { flex-direction: column; gap: 14px; text-align: center; }
    .stats-grid { grid-template-columns: repeat(2, 1fr); }
    .about-grid { grid-template-columns: 1fr; }
}
