/* Travel Guides Homepage Styles - Matches country-info design system */
.tg-homepage {
    font-family: 'Noto Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    color: #1e293b;
    line-height: 1.6;
}

/* Hero Section */
.tg-hero {
    position: relative;
    min-height: 560px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: url('https://images.unsplash.com/photo-1488085061387-422e29b40080?w=1600&h=900&fit=crop') center/cover no-repeat;
    padding: 100px 20px 80px;
}

.tg-hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(15, 23, 42, 0.88) 0%, rgba(30, 58, 138, 0.75) 50%, rgba(15, 23, 42, 0.7) 100%);
}

.tg-hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.tg-hero-label {
    display: inline-block;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: #93c5fd;
    margin-bottom: 16px;
    background: rgba(37, 99, 235, 0.2);
    padding: 6px 16px;
    border-radius: 20px;
}

.tg-hero-title {
    font-size: 2.8rem;
    font-weight: 700;
    color: #ffffff;
    margin: 0 0 20px;
    line-height: 1.2;
}

.tg-hero-tagline {
    font-size: 1.15rem;
    color: #dbeafe;
    max-width: 620px;
    margin: 0 auto 36px;
    font-weight: 400;
    line-height: 1.7;
}

.tg-hero-buttons {
    display: flex;
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap;
    margin-bottom: 48px;
}

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

.tg-stat {
    text-align: center;
}

.tg-stat-value {
    display: block;
    font-size: 1.6rem;
    font-weight: 700;
    color: #ffffff;
}

.tg-stat-label {
    display: block;
    font-size: 0.85rem;
    color: #93c5fd;
    margin-top: 4px;
}

/* Buttons */
.tg-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 28px;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.2s ease;
    cursor: pointer;
}

.tg-btn-primary {
    background-color: #2563eb;
    color: #ffffff;
}

.tg-btn-primary:hover {
    background-color: #1d4ed8;
    color: #ffffff;
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(37, 99, 235, 0.3);
}

.tg-btn-outline {
    background-color: transparent;
    color: #ffffff;
    border: 1px solid rgba(255, 255, 255, 0.4);
}

.tg-btn-outline:hover {
    background-color: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.7);
    color: #ffffff;
}

/* Sections */
.tg-section {
    padding: 80px 20px;
}

.tg-section-white {
    background-color: #ffffff;
}

.tg-section-light {
    background-color: #f8fafc;
}

.tg-section-cta {
    background-color: #0f172a;
    text-align: center;
    padding: 80px 20px;
}

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

/* Section Headers */
.tg-section-header {
    text-align: center;
    margin-bottom: 48px;
}

.tg-section-label {
    display: inline-block;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: #2563eb;
    margin-bottom: 8px;
}

.tg-section-title {
    font-size: 2rem;
    font-weight: 700;
    color: #0f172a;
    margin: 8px 0 12px;
}

.tg-section-desc {
    font-size: 1.05rem;
    color: #64748b;
    max-width: 600px;
    margin: 0 auto;
}

/* Destinations Grid */
.tg-destinations-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}

.tg-destination-card {
    background: #ffffff;
    border-radius: 16px;
    overflow: hidden;
    border: 1px solid #e2e8f0;
    transition: box-shadow 0.3s ease, transform 0.3s ease;
    text-decoration: none;
    color: inherit;
    display: block;
}

.tg-destination-card:hover {
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.1);
    transform: translateY(-4px);
    color: inherit;
}

.tg-destination-coming-soon {
    opacity: 0.85;
    cursor: default;
}

.tg-destination-coming-soon:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.06);
}

.tg-destination-image {
    position: relative;
    height: 220px;
    overflow: hidden;
}

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

.tg-destination-card:hover .tg-destination-image img {
    transform: scale(1.05);
}

.tg-destination-badge {
    position: absolute;
    top: 16px;
    left: 16px;
    background: #2563eb;
    color: #ffffff;
    font-size: 0.7rem;
    font-weight: 600;
    padding: 5px 12px;
    border-radius: 20px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.tg-badge-soon {
    background: #64748b;
}

.tg-destination-body {
    padding: 24px;
}

.tg-destination-region {
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: #2563eb;
    margin-bottom: 6px;
}

.tg-destination-name {
    font-size: 1.3rem;
    font-weight: 700;
    color: #0f172a;
    margin: 0 0 8px;
}

.tg-destination-tagline {
    font-size: 0.9rem;
    color: #64748b;
    line-height: 1.6;
    margin: 0 0 16px;
}

.tg-destination-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 0.85rem;
    font-weight: 600;
    color: #2563eb;
    transition: gap 0.2s ease;
}

.tg-destination-card:hover .tg-destination-link {
    gap: 10px;
}

.tg-link-soon {
    color: #94a3b8;
}

/* Steps Grid */
.tg-steps-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
}

.tg-step-card {
    text-align: center;
    padding: 32px 24px;
    background: #f8fafc;
    border-radius: 16px;
    border: 1px solid #e2e8f0;
    transition: box-shadow 0.3s ease;
}

.tg-step-card:hover {
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.06);
}

.tg-step-icon {
    width: 56px;
    height: 56px;
    background: #dbeafe;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 16px;
    color: #2563eb;
}

.tg-step-number {
    font-size: 0.75rem;
    font-weight: 700;
    color: #2563eb;
    margin-bottom: 12px;
    letter-spacing: 0.05em;
}

.tg-step-title {
    font-size: 1.1rem;
    font-weight: 700;
    color: #0f172a;
    margin: 0 0 8px;
}

.tg-step-text {
    font-size: 0.9rem;
    color: #64748b;
    line-height: 1.6;
    margin: 0;
}

/* Features Grid */
.tg-features-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.tg-feature-card {
    background: #ffffff;
    border-radius: 16px;
    padding: 28px;
    border: 1px solid #e2e8f0;
    transition: box-shadow 0.3s ease;
}

.tg-feature-card:hover {
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.06);
}

.tg-feature-icon {
    width: 48px;
    height: 48px;
    background: #dbeafe;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 16px;
    color: #2563eb;
}

.tg-feature-title {
    font-size: 1rem;
    font-weight: 700;
    color: #0f172a;
    margin: 0 0 8px;
}

.tg-feature-text {
    font-size: 0.85rem;
    color: #64748b;
    line-height: 1.6;
    margin: 0;
}

/* CTA Section */
.tg-cta-title {
    font-size: 2rem;
    font-weight: 700;
    color: #ffffff;
    margin: 0 0 12px;
}

.tg-cta-desc {
    font-size: 1.1rem;
    color: #94a3b8;
    max-width: 600px;
    margin: 0 auto 32px;
}

.tg-cta-buttons {
    display: flex;
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap;
}

/* Responsive */
@media (max-width: 1024px) {
    .tg-destinations-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .tg-features-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .tg-hero {
        min-height: 480px;
        padding: 80px 16px 60px;
    }
    .tg-hero-title {
        font-size: 1.9rem;
    }
    .tg-hero-tagline {
        font-size: 1rem;
    }
    .tg-hero-stats {
        gap: 24px;
    }
    .tg-section {
        padding: 60px 16px;
    }
    .tg-section-title {
        font-size: 1.6rem;
    }
    .tg-destinations-grid {
        grid-template-columns: 1fr;
    }
    .tg-steps-grid {
        grid-template-columns: 1fr;
    }
    .tg-features-grid {
        grid-template-columns: 1fr;
    }
    .tg-hero-buttons {
        flex-direction: column;
        align-items: center;
    }
    .tg-cta-buttons {
        flex-direction: column;
        align-items: center;
    }
}
