/* Global Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    line-height: 1.6;
    color: #333;
    padding-top: 80px;
    background: white;
}

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

/* Hero Section */
.hero {
    position: relative;
    color: white;
    padding: 128px 0;
    padding-top: 160px;
    min-height: 500px;
    display: flex;
    align-items: center;
    background-image: url('../../../assets/florida-hero.jfif');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.65);
}

.hero-content {
    position: relative;
    z-index: 1;
}

.hero-text {
    max-width: 768px;
}

.hero-badge-top {
    background: rgba(249, 115, 22, 0.2);
    backdrop-filter: blur(8px);
    color: #fed7aa;
    padding: 8px 16px;
    border-radius: 9999px;
    font-size: 0.875rem;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 24px;
}

.hero-badge-top i {
    font-size: 1rem;
}

.hero h1 {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 24px;
    padding-top: 64px;
}

.hero p {
    font-size: 1.25rem;
    margin-bottom: 32px;
    color: #e5e7eb;
    line-height: 1.75;
}

.hero-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
}

.hero-badge {
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(8px);
    padding: 12px 24px;
    border-radius: 9999px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.hero-badge i {
    font-size: 1.25rem;
}

/* Cities Section */
.cities-section {
    padding: 80px 0;
    background: #f9fafb;
}

.section-header {
    text-align: center;
    margin-bottom: 64px;
}

.section-header h2 {
    font-size: 2.25rem;
    font-weight: 700;
    color: #111827;
    margin-bottom: 16px;
}

.section-header p {
    font-size: 1.25rem;
    color: #6b7280;
}

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

.city-card {
    background: white;
    border-radius: 12px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    padding: 24px;
    transition: box-shadow 0.3s ease;
}

.city-card:hover {
    box-shadow: 0 10px 15px rgba(0, 0, 0, 0.15);
}

.city-header {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    margin-bottom: 16px;
}

.city-info h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: #111827;
    margin-bottom: 4px;
}

.city-population {
    color: #6b7280;
    font-size: 1rem;
}

.city-icon {
    width: 48px;
    height: 48px;
    background: #ffedd5;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.city-icon i {
    font-size: 1.5rem;
    color: #ea580c;
}

.city-description {
    color: #374151;
    margin-bottom: 16px;
}

.city-features h4 {
    font-size: 0.875rem;
    font-weight: 600;
    color: #111827;
    margin-bottom: 8px;
}

.feature-item {
    display: flex;
    align-items: center;
    font-size: 0.875rem;
    color: #6b7280;
    margin-bottom: 8px;
}

.feature-item i {
    color: #16a34a;
    margin-right: 8px;
    font-size: 1rem;
}

/* FAQ Section */
.faq-section {
    padding: 80px 0;
    background: #f9fafb;
}

.faq-list {
    max-width: 896px;
    margin: 0 auto;
}

.faq-item {
    background: white;
    border-radius: 12px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    margin-bottom: 16px;
    overflow: hidden;
}

.faq-question {
    width: 100%;
    padding: 20px 24px;
    text-align: left;
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: white;
    border: none;
    cursor: pointer;
    transition: background 0.3s ease;
}

.faq-question:hover {
    background: #eff6ff;
}

.faq-question h3 {
    font-size: 1.125rem;
    font-weight: 600;
    color: #111827;
    padding-right: 16px;
    flex: 1;
}

.faq-question i {
    font-size: 1.25rem;
    color: #2563eb;
    flex-shrink: 0;
}

.faq-answer {
    padding: 0 24px;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
}

.faq-item.active .faq-answer {
    padding: 8px 24px 20px;
    max-height: 1000px;
}

.faq-answer-content {
    padding-top: 8px;
    border-top: 1px solid #f3f4f6;
}

.faq-answer p {
    color: #374151;
    line-height: 1.75;
}

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

@media (max-width: 768px) {
    .hero {
        padding: 80px 0;
        padding-top: 120px;
    }

    .hero h1 {
        font-size: 2rem;
        padding-top: 32px;
    }

    .hero p {
        font-size: 1rem;
    }

    .hero-badge-top {
        margin-bottom: 16px;
    }

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

    .section-header h2 {
        font-size: 1.75rem;
    }

    .section-header p {
        font-size: 1rem;
    }
}

