/* Destination Page Common Styles */

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

/* Page Navigation */
.page-nav {
    background: white;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    position: sticky;
    top: 70px;
    z-index: 100;
    padding: 15px 0;
}

.nav-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 10px;
}

.nav-list li {
    display: inline-block;
}

.nav-list a {
    display: block;
    padding: 10px 20px;
    color: #555;
    text-decoration: none;
    font-weight: 600;
    border-radius: 25px;
    transition: all 0.3s ease;
}

.nav-list a:hover {
    background: #CD853F;
    color: white;
}

/* Country Hero */
.country-hero {
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    min-height: 70vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 120px 20px 60px;
    color: white;
    text-align: center;
}

.country-badge {
    display: inline-block;
    background: linear-gradient(135deg, #FFD700, #FFA500);
    color: #000;
    padding: 8px 20px;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 700;
    margin-bottom: 20px;
}

.country-hero h1 {
    font-size: 4rem;
    font-weight: 800;
    margin-bottom: 20px;
}

.hero-subtitle {
    font-size: 1.3rem;
    margin-bottom: 30px;
    opacity: 0.95;
}

.hero-stats {
    display: flex;
    gap: 30px;
    justify-content: center;
    flex-wrap: wrap;
}

.stat {
    display: flex;
    align-items: center;
    gap: 10px;
    background: rgba(255,255,255,0.2);
    padding: 10px 20px;
    border-radius: 25px;
    backdrop-filter: blur(10px);
}

.stat-icon {
    font-size: 1.5em;
}

/* Sections */
.section-white {
    padding: 80px 20px;
    background: white;
    color: #333;
}

.section-white h2,
.section-white h3,
.section-white h4 {
    color: #000 !important;
}

.section-white p,
.section-white li {
    color: #333 !important;
}

.section-gray {
    padding: 80px 20px;
    background: #f8f9fa;
    color: #333;
}

.section-gray h2,
.section-gray h3,
.section-gray h4 {
    color: #000 !important;
}

.section-gray p,
.section-gray li {
    color: #333 !important;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 50px;
    color: #000 !important;
}

/* Quick Info */
.quick-info {
    padding: 60px 20px;
    background: linear-gradient(135deg, #FDF5E6, #F5DEB3);
}

.info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.info-card {
    background: white;
    padding: 30px;
    border-radius: 16px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

.info-card h3 {
    font-size: 1.4rem;
    margin-bottom: 15px;
    color: #000;
}

.info-card ul {
    list-style: none;
    padding: 0;
}

.info-card li {
    padding: 5px 0;
    line-height: 1.6;
}

/* Content Boxes */
.content-box {
    max-width: 900px;
    margin: 0 auto;
    background: #f8f9fa;
    padding: 40px;
    border-radius: 16px;
}

.content-box h2 {
    font-size: 2rem;
    margin: 0 0 20px 0;
    color: #000 !important;
}

.content-box h3 {
    font-size: 1.5rem;
    margin: 30px 0 15px 0;
    color: #000 !important;
}

.content-box h3:first-child {
    margin-top: 0;
}

.content-box p {
    color: #333 !important;
    line-height: 1.8;
}

.content-box ul {
    color: #333 !important;
}

.content-box li {
    color: #333 !important;
    margin: 10px 0;
}

.content-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.content-card {
    background: white;
    padding: 30px;
    border-radius: 16px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.08);
}

.content-card h3 {
    font-size: 1.4rem;
    margin-bottom: 20px;
    color: #000;
}

/* Tip Boxes */
.tip-box {
    background: linear-gradient(135deg, #E3F2FD, #BBDEFB);
    padding: 20px;
    border-radius: 12px;
    margin: 20px 0;
    border-left: 4px solid #2196F3;
}

.tip-box h3 {
    color: #000 !important;
}

.tip-box p {
    color: #333 !important;
}

.warning-box {
    background: linear-gradient(135deg, #FFEBEE, #FFCDD2);
    padding: 20px;
    border-radius: 12px;
    margin: 20px 0;
    border-left: 4px solid #f44336;
}

/* Budget Table */
.budget-table {
    max-width: 900px;
    margin: 0 auto 50px;
}

.budget-table table {
    width: 100%;
    border-collapse: collapse;
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

.budget-table td {
    padding: 15px;
    border-bottom: 1px solid #e0e0e0;
}

.budget-table tr:last-child td {
    border-bottom: none;
}

.total-row {
    background: linear-gradient(135deg, #FDF5E6, #F5DEB3);
    font-size: 1.1rem;
}

/* Price Examples */
.price-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    margin-top: 30px;
}

.price-item {
    background: white;
    padding: 20px;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 4px 15px rgba(0,0,0,0.08);
}

.price-item h4 {
    color: #000 !important;
    font-size: 1.1rem;
    margin-bottom: 10px;
}

.price-item span {
    display: block;
    color: #4CAF50 !important;
    font-size: 1.1rem;
    font-weight: 600;
}

.price-item .price {
    display: block;
    font-size: 2rem;
    font-weight: 700;
    color: #4CAF50 !important;
    margin-bottom: 10px;
}

/* Places */
.places-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
    max-width: 1400px;
    margin: 0 auto;
}

.place-card {
    background: white;
    padding: 0;
    border-radius: 16px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.08);
    border-top: 4px solid #CD853F;
    overflow: hidden;
}

.place-image {
    width: 100%;
    height: 200px;
    overflow: hidden;
}

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

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

.place-card h3,
.place-card p,
.place-card ul,
.place-card .tip-box {
    padding: 0 30px;
}

.place-card h3 {
    padding-top: 20px;
}

.place-card .tip-box {
    margin: 20px 30px 30px 30px;
    padding: 20px;
}

.place-card.featured {
    border-top-color: #FFD700;
    box-shadow: 0 8px 25px rgba(255,215,0,0.3);
}

.place-card h3 {
    font-size: 1.6rem;
    margin-bottom: 15px;
    color: #000 !important;
}

.place-card p {
    color: #333 !important;
    line-height: 1.7;
    padding: 0 30px;
    margin-bottom: 15px;
}

.place-card ul {
    margin: 15px 0;
    color: #333 !important;
}

.place-card li {
    margin: 10px 0;
    line-height: 1.6;
    color: #333 !important;
}

/* Food Grid */
.food-intro {
    max-width: 900px;
    margin: 0 auto 40px;
    text-align: center;
    font-size: 1.2rem;
    color: #666;
}

.food-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 25px;
    max-width: 1200px;
    margin: 0 auto 40px;
}

.food-card {
    background: white;
    padding: 25px;
    border-radius: 16px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.08);
    text-align: center;
    transition: transform 0.3s ease;
}

.food-card:hover {
    transform: translateY(-5px);
}

.food-card h3 {
    font-size: 1.3rem;
    margin-bottom: 10px;
    color: #000;
}

/* Accommodation */
.accommodation-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.accommodation-card {
    background: white;
    padding: 30px;
    border-radius: 16px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.08);
}

.accommodation-card h3 {
    font-size: 1.4rem;
    margin-bottom: 20px;
    color: #000;
}

/* Tips Grid */
.tips-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.tip-card {
    padding: 30px;
    border-radius: 16px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

.tip-card.green {
    background: linear-gradient(135deg, #E8F5E9, #C8E6C9);
    border-left: 5px solid #4CAF50;
}

.tip-card.red {
    background: linear-gradient(135deg, #FFEBEE, #FFCDD2);
    border-left: 5px solid #f44336;
}

.tip-card h3 {
    font-size: 1.5rem;
    margin-bottom: 20px;
    color: #000;
}

.tip-card ul {
    list-style: none;
    padding: 0;
}

.tip-card li {
    padding: 8px 0;
    line-height: 1.6;
}

/* Personal Story */
.personal-story {
    max-width: 900px;
    margin: 50px auto 0;
    background: linear-gradient(135deg, #FFF3E0, #FFE0B2);
    padding: 40px;
    border-radius: 16px;
    border-left: 5px solid #FF9800;
}

.personal-story h3 {
    font-size: 1.8rem;
    margin-bottom: 20px;
    color: #000;
}

.personal-story p {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 15px;
}

/* FAQ */
.faq-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 25px;
    max-width: 1200px;
    margin: 0 auto;
}

.faq-item {
    background: white;
    padding: 25px;
    border-radius: 16px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.08);
    border-left: 4px solid #CD853F;
}

.faq-item h4 {
    font-size: 1.2rem;
    margin-bottom: 15px;
    color: #000;
}

.faq-item p {
    line-height: 1.7;
    color: #555;
}

/* Tours Section */
.tours-section {
    padding: 80px 20px;
    background: linear-gradient(135deg, #FFF3E0, #FFE0B2);
}

.tours-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    max-width: 1200px;
    margin: 0 auto;
    align-items: center;
}

.tour-info h3 {
    font-size: 2rem;
    margin-bottom: 20px;
    color: #000;
}

.tour-info p {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 15px;
    color: #555;
}

.tour-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
    margin: 30px 0;
}

.tour-feature {
    background: white;
    padding: 15px;
    border-radius: 12px;
    font-weight: 600;
    box-shadow: 0 2px 10px rgba(0,0,0,0.08);
}

.tour-cta-buttons {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.tour-btn {
    display: inline-block;
    padding: 15px 35px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.1rem;
    transition: all 0.3s ease;
}

.tour-btn.primary {
    background: #FF6B35;
    color: white;
}

.tour-btn.primary:hover {
    background: #E55A2B;
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(255, 107, 53, 0.3);
}

.tour-btn.secondary {
    background: white;
    color: #FF6B35;
    border: 2px solid #FF6B35;
}

.tour-btn.secondary:hover {
    background: #FF6B35;
    color: white;
}

.tour-image {
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
}

.tour-image img {
    width: 100%;
    height: auto;
    display: block;
}

/* CTA */
.cta-section {
    padding: 80px 20px;
    background: linear-gradient(135deg, #4CAF50, #2E7D32);
    color: white;
}

.cta-box {
    max-width: 700px;
    margin: 0 auto;
    text-align: center;
}

.cta-box h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.cta-box p {
    font-size: 1.2rem;
    margin-bottom: 30px;
    opacity: 0.95;
}

.cta-btn {
    display: inline-block;
    background: white;
    color: #4CAF50;
    padding: 15px 40px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.1rem;
    transition: all 0.3s ease;
}

.cta-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.2);
}

/* Button Links */
.btn-link {
    display: inline-block;
    margin-top: 15px;
    padding: 10px 20px;
    background: linear-gradient(135deg, #CD853F, #8B4513);
    color: white !important;
    text-decoration: none;
    border-radius: 25px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-link:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(205, 133, 63, 0.3);
}

@media (max-width: 768px) {
    .page-nav {
        top: 60px;
        padding: 10px 0;
    }

    .nav-list {
        gap: 5px;
    }

    .nav-list a {
        padding: 8px 15px;
        font-size: 0.85rem;
    }

    .country-hero h1 {
        font-size: 2.5rem;
    }

    .info-grid,
    .content-grid,
    .places-grid,
    .food-grid,
    .accommodation-grid,
    .tips-grid,
    .faq-grid {
        grid-template-columns: 1fr;
    }

    .hero-stats {
        flex-direction: column;
    }

    .tours-content {
        grid-template-columns: 1fr;
    }

    .tour-features {
        grid-template-columns: 1fr;
    }
}
