/* Country Info Page Styles - Matches travelforms.org design */
.country-info-page {
    font-family: 'Noto Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    color: #1e293b;
    line-height: 1.6;
}

/* Hero Section */
.ci-hero {
    position: relative;
    min-height: 480px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-size: cover;
    background-position: center;
    padding: 80px 20px 60px;
}
.ci-hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(15, 23, 42, 0.85) 0%, rgba(30, 58, 95, 0.7) 50%, rgba(15, 23, 42, 0.65) 100%);
}
.ci-hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}
.ci-hero-flag {
    font-size: 3rem;
    display: block;
    margin-bottom: 12px;
}
.ci-hero-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #ffffff;
    margin: 0 0 16px;
    line-height: 1.2;
}
.ci-hero-tagline {
    font-size: 1.15rem;
    color: #dbeafe;
    max-width: 600px;
    margin: 0 auto 32px;
    font-weight: 400;
}
.ci-hero-stats {
    display: flex;
    justify-content: center;
    gap: 40px;
    margin-bottom: 32px;
    flex-wrap: wrap;
}
.ci-stat {
    text-align: center;
}
.ci-stat-value {
    display: block;
    font-size: 1.5rem;
    font-weight: 700;
    color: #ffffff;
}
.ci-stat-label {
    display: block;
    font-size: 0.85rem;
    color: #93c5fd;
    margin-top: 4px;
}
.ci-hero-buttons {
    display: flex;
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap;
}

/* Buttons */
.ci-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;
}
.ci-btn-primary {
    background-color: #2563eb;
    color: #ffffff;
}
.ci-btn-primary:hover {
    background-color: #1d4ed8;
    color: #ffffff;
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(37, 99, 235, 0.3);
}
.ci-btn-secondary {
    background-color: rgba(255, 255, 255, 0.1);
    color: #ffffff;
    border: 1px solid rgba(255, 255, 255, 0.3);
}
.ci-btn-secondary:hover {
    background-color: rgba(255, 255, 255, 0.2);
    border-color: rgba(255, 255, 255, 0.6);
    color: #ffffff;
}
.ci-btn-outline {
    background-color: transparent;
    color: #ffffff;
    border: 1px solid rgba(255, 255, 255, 0.4);
}
.ci-btn-outline:hover {
    background-color: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.7);
    color: #ffffff;
}

/* Sections */
.ci-section {
    padding: 80px 20px;
}
.ci-section-white {
    background-color: #ffffff;
}
.ci-section-light {
    background-color: #f8fafc;
}
.ci-section-dark {
    background-color: #0f172a;
}
.ci-section-cta {
    background-color: #0f172a;
    text-align: center;
    padding: 80px 20px;
}
.ci-container {
    max-width: 1200px;
    margin: 0 auto;
}
.ci-container-narrow {
    max-width: 800px;
    margin: 0 auto;
}

/* Section Headers */
.ci-section-header {
    text-align: center;
    margin-bottom: 48px;
}
.ci-section-label {
    display: inline-block;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: #2563eb;
    margin-bottom: 8px;
}
.ci-section-label.ci-label-light {
    color: #60a5fa;
}
.ci-section-title {
    font-size: 2rem;
    font-weight: 700;
    color: #0f172a;
    margin: 8px 0 12px;
}
.ci-section-title.ci-title-light {
    color: #ffffff;
}
.ci-section-desc {
    font-size: 1.05rem;
    color: #64748b;
    max-width: 600px;
    margin: 0 auto;
}
.ci-section-desc.ci-desc-light {
    color: #94a3b8;
}

/* Grid Layouts */
.ci-grid {
    display: grid;
    gap: 24px;
}
.ci-grid-3 {
    grid-template-columns: repeat(3, 1fr);
}
.ci-grid-4 {
    grid-template-columns: repeat(4, 1fr);
}

/* Attraction Cards */
.ci-card {
    background: #ffffff;
    border-radius: 16px;
    overflow: hidden;
    border: 1px solid #e2e8f0;
    transition: box-shadow 0.3s ease, transform 0.3s ease;
}
.ci-card:hover {
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    transform: translateY(-2px);
}
.ci-card-image {
    height: 200px;
    overflow: hidden;
}
.ci-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}
.ci-card:hover .ci-card-image img {
    transform: scale(1.05);
}
.ci-card-body {
    padding: 24px;
}
.ci-card-tag {
    display: inline-block;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: #2563eb;
    margin-bottom: 8px;
}
.ci-card-title {
    font-size: 1.2rem;
    font-weight: 700;
    color: #0f172a;
    margin: 0 0 8px;
}
.ci-card-text {
    font-size: 0.9rem;
    color: #64748b;
    line-height: 1.6;
    margin: 0;
}

/* Activity Cards (dark section) */
.ci-activity-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    padding: 28px;
    transition: background 0.3s ease;
}
.ci-activity-card:hover {
    background: rgba(255, 255, 255, 0.1);
}
.ci-activity-icon {
    width: 48px;
    height: 48px;
    background: rgba(37, 99, 235, 0.2);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 16px;
}
.ci-activity-icon i {
    font-size: 1.2rem;
    color: #60a5fa;
}
.ci-activity-title {
    font-size: 1.1rem;
    font-weight: 600;
    color: #ffffff;
    margin: 0 0 8px;
}
.ci-activity-text {
    font-size: 0.9rem;
    color: #94a3b8;
    line-height: 1.6;
    margin: 0;
}

/* Beaches Grid */
.ci-beaches-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto auto;
    gap: 24px;
}
.ci-beach-card {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    min-height: 220px;
}
.ci-beach-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: absolute;
    inset: 0;
    transition: transform 0.5s ease;
}
.ci-beach-card:hover img {
    transform: scale(1.05);
}
.ci-beach-featured {
    grid-row: span 2;
    min-height: 460px;
}
.ci-beach-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 24px;
    background: linear-gradient(to top, rgba(15, 23, 42, 0.85) 0%, rgba(15, 23, 42, 0.3) 60%, transparent 100%);
    z-index: 2;
}
.ci-beach-tag {
    display: inline-block;
    background: #2563eb;
    color: #ffffff;
    font-size: 0.7rem;
    font-weight: 600;
    padding: 4px 10px;
    border-radius: 20px;
    margin-bottom: 8px;
}
.ci-beach-title {
    font-size: 1.3rem;
    font-weight: 700;
    color: #ffffff;
    margin: 0 0 6px;
}
.ci-beach-text {
    font-size: 0.85rem;
    color: #e2e8f0;
    line-height: 1.5;
    margin: 0;
}

/* Culture Section */
.ci-culture-grid {
    max-width: 800px;
    margin: 0 auto;
}
.ci-culture-list {
    display: flex;
    flex-direction: column;
    gap: 24px;
}
.ci-culture-item {
    display: flex;
    gap: 16px;
    align-items: flex-start;
}
.ci-culture-icon {
    width: 48px;
    height: 48px;
    min-width: 48px;
    background: #dbeafe;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.ci-culture-icon i {
    font-size: 1.2rem;
    color: #2563eb;
}
.ci-culture-content h3 {
    font-size: 1.1rem;
    font-weight: 700;
    color: #0f172a;
    margin: 0 0 4px;
}
.ci-culture-content p {
    font-size: 0.9rem;
    color: #64748b;
    line-height: 1.6;
    margin: 0;
}

/* Travel Tips Cards */
.ci-tip-card {
    background: #ffffff;
    border-radius: 16px;
    padding: 24px;
    border: 1px solid #e2e8f0;
    transition: box-shadow 0.3s ease;
}
.ci-tip-card:hover {
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.06);
}
.ci-tip-icon {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 16px;
}
.ci-tip-icon i {
    font-size: 1.2rem;
}
.ci-tip-title {
    font-size: 1rem;
    font-weight: 700;
    color: #0f172a;
    margin: 0 0 8px;
}
.ci-tip-text {
    font-size: 0.85rem;
    color: #64748b;
    line-height: 1.6;
    margin: 0;
}

/* FAQ */
.ci-faq-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
}
.ci-faq-item {
    border: 1px solid #e2e8f0;
    border-radius: 12px;
    overflow: hidden;
    background: #ffffff;
}
.ci-faq-question {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 18px 20px;
    background: none;
    border: none;
    cursor: pointer;
    text-align: left;
    font-size: 1rem;
    font-weight: 600;
    color: #0f172a;
    transition: background 0.2s ease;
    font-family: inherit;
}
.ci-faq-question:hover {
    background: #f8fafc;
}
.ci-faq-arrow {
    width: 20px;
    height: 20px;
    color: #64748b;
    flex-shrink: 0;
    margin-left: 16px;
    transition: transform 0.3s ease;
}
.ci-faq-open .ci-faq-arrow {
    transform: rotate(180deg);
}
.ci-faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
}
.ci-faq-open .ci-faq-answer {
    max-height: 500px;
    padding: 0 20px 18px;
}
.ci-faq-answer p {
    font-size: 0.95rem;
    color: #64748b;
    line-height: 1.7;
    margin: 0;
}

/* CTA Section */
.ci-cta-title {
    font-size: 2rem;
    font-weight: 700;
    color: #ffffff;
    margin: 0 0 12px;
}
.ci-cta-desc {
    font-size: 1.1rem;
    color: #94a3b8;
    max-width: 600px;
    margin: 0 auto 32px;
}
.ci-cta-buttons {
    display: flex;
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap;
}

/* Responsive */
@media (max-width: 1024px) {
    .ci-grid-4 {
        grid-template-columns: repeat(2, 1fr);
    }
}
@media (max-width: 768px) {
    .ci-hero-title {
        font-size: 1.8rem;
    }
    .ci-hero-tagline {
        font-size: 1rem;
    }
    .ci-section {
        padding: 60px 16px;
    }
    .ci-section-title {
        font-size: 1.6rem;
    }
    .ci-grid-3 {
        grid-template-columns: 1fr;
    }
    .ci-grid-4 {
        grid-template-columns: 1fr;
    }
    .ci-beaches-grid {
        grid-template-columns: 1fr;
    }
    .ci-beach-featured {
        grid-row: span 1;
        min-height: 280px;
    }
    .ci-beach-card {
        min-height: 220px;
    }
    .ci-hero-stats {
        gap: 24px;
    }
    .ci-hero-buttons {
        flex-direction: column;
        align-items: center;
    }
    .ci-cta-buttons {
        flex-direction: column;
        align-items: center;
    }
}
