/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-blue: #1e3a8a;
    --primary-yellow: #fde047;
    --secondary-blue: #3b82f6;
    --dark-blue: #0f172a;
    --light-yellow: #fef3c7;
    --white: #ffffff;
    --text-dark: #1e293b;
    --text-light: #475569;
    --shadow-blue: rgba(30, 58, 138, 0.2);
    --shadow-yellow: rgba(253, 224, 71, 0.3);
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    font-size: 16px;
    line-height: 1.6;
    color: var(--text-dark);
    background-color: var(--white);
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    text-decoration: none;
    color: var(--primary-blue);
    transition: color 0.3s ease;
}

a:hover {
    color: var(--primary-yellow);
}

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

/* Header and Navigation */
.header {
    background-color: var(--primary-blue);
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 10px var(--shadow-blue);
}

.nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 20px;
    max-width: 1200px;
    margin: 0 auto;
}

.nav-brand {
    display: flex;
    align-items: center;
    gap: 12px;
    color: var(--primary-yellow);
    font-weight: bold;
    font-size: 1.2rem;
}

.logo-placeholder {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--primary-yellow), var(--primary-blue));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    color: var(--white);
    font-size: 1.2rem;
}

.brand-text {
    color: var(--primary-yellow);
}

.nav-toggle {
    display: none;
}

.nav-toggle-label {
    display: none;
    flex-direction: column;
    gap: 4px;
    cursor: pointer;
}

.nav-toggle-label span {
    width: 25px;
    height: 3px;
    background-color: var(--primary-yellow);
    transition: all 0.3s ease;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-menu a {
    color: var(--primary-yellow);
    font-weight: 500;
    padding: 0.5rem 0;
    position: relative;
}

.nav-menu a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--primary-yellow);
    transition: width 0.3s ease;
}

.nav-menu a:hover::after,
.nav-menu a.active::after {
    width: 100%;
}

/* Mobile Menu */
@media (max-width: 768px) {
    .nav-toggle-label {
        display: flex;
    }

    .nav-menu {
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background-color: var(--primary-blue);
        flex-direction: column;
        gap: 0;
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.3s ease;
    }

    .nav-menu li {
        border-top: 1px solid rgba(253, 224, 71, 0.2);
    }

    .nav-menu a {
        display: block;
        padding: 1rem 20px;
    }

    .nav-toggle:checked ~ .nav-menu {
        max-height: 500px;
    }
}

/* Hero Section */
.hero {
    min-height: 70vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: var(--white);
    padding: 4rem 20px;
}

.gradient-bg {
    background: linear-gradient(135deg, var(--primary-blue) 0%, var(--secondary-blue) 50%, var(--primary-yellow) 100%);
    background-size: 200% 200%;
    animation: gradientMove 15s ease infinite;
}

@keyframes gradientMove {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

.hero-content {
    max-width: 800px;
}

.hero-logo {
    width: 100px;
    height: 100px;
    background: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    color: var(--primary-blue);
    font-size: 2rem;
    margin: 0 auto 2rem;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
}

.hero h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

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

/* Page Hero */
.page-hero {
    background: linear-gradient(135deg, var(--primary-blue), var(--secondary-blue));
    color: var(--white);
    padding: 4rem 20px;
    text-align: center;
}

.page-hero h1 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.page-hero-subtitle {
    font-size: 1.2rem;
    opacity: 0.9;
}

/* Sections */
.section {
    padding: 4rem 20px;
}

.section-alt {
    background-color: var(--light-yellow);
}

.section-title {
    text-align: center;
    font-size: 2.2rem;
    color: var(--primary-blue);
    margin-bottom: 3rem;
    position: relative;
}

.section-title::after {
    content: '';
    display: block;
    width: 60px;
    height: 4px;
    background-color: var(--primary-yellow);
    margin: 1rem auto 0;
}

/* Grid Layouts */
.grid {
    display: grid;
    gap: 2rem;
}

.grid-2 {
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
}

.grid-3 {
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
}

/* Cards */
.card {
    background: var(--white);
    border: 2px solid var(--primary-blue);
    border-radius: 10px;
    padding: 2rem;
    transition: all 0.3s ease;
    box-shadow: 0 2px 10px var(--shadow-blue);
}

.card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px var(--shadow-blue);
}

.card-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.card h3 {
    color: var(--primary-blue);
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

/* Info Cards */
.info-card {
    background: var(--white);
    border: 3px solid var(--primary-blue);
    border-radius: 15px;
    padding: 2.5rem;
    text-align: center;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px var(--shadow-blue);
}

.info-card:hover {
    transform: scale(1.05);
    box-shadow: 0 10px 30px var(--shadow-yellow);
    border-color: var(--primary-yellow);
}

.info-icon {
    font-size: 4rem;
    margin-bottom: 1rem;
}

.info-card h3 {
    color: var(--primary-blue);
    font-size: 1.8rem;
    margin-bottom: 0.5rem;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 1rem 2.5rem;
    border-radius: 50px;
    font-weight: bold;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    cursor: pointer;
    border: none;
    text-align: center;
}

.btn-primary {
    background-color: var(--primary-yellow);
    color: var(--primary-blue);
    box-shadow: 0 4px 15px var(--shadow-yellow);
}

.btn-primary:hover {
    background-color: #fbbf24;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px var(--shadow-yellow);
}

.btn-secondary {
    background-color: var(--primary-blue);
    color: var(--primary-yellow);
    box-shadow: 0 4px 15px var(--shadow-blue);
}

.btn-secondary:hover {
    background-color: var(--secondary-blue);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px var(--shadow-blue);
}

.btn-large {
    font-size: 1.4rem;
    padding: 1.5rem 3.5rem;
}

.btn-subtext {
    text-align: center;
    margin-top: 1rem;
    color: var(--text-light);
    font-size: 0.95rem;
}

/* Lottery Specific */
.lottery-hero {
    position: relative;
}

.license-badge {
    background-color: var(--primary-blue);
    color: var(--primary-yellow);
    padding: 0.5rem 1.5rem;
    border-radius: 25px;
    display: inline-block;
    margin-bottom: 2rem;
    font-weight: bold;
    font-size: 0.9rem;
}

.countdown {
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
    margin: 2rem 0;
}

.countdown-item {
    background-color: var(--primary-blue);
    color: var(--primary-yellow);
    padding: 2rem;
    border-radius: 15px;
    min-width: 120px;
    text-align: center;
    box-shadow: 0 5px 20px var(--shadow-blue);
}

.countdown-value {
    display: block;
    font-size: 3rem;
    font-weight: bold;
    line-height: 1;
}

.countdown-label {
    display: block;
    font-size: 1rem;
    margin-top: 0.5rem;
    text-transform: uppercase;
}

.goals-box {
    background: var(--white);
    border: 3px solid var(--primary-blue);
    border-radius: 15px;
    padding: 2.5rem;
    box-shadow: 0 5px 20px var(--shadow-blue);
}

.goals-list {
    list-style: none;
    font-size: 1.1rem;
}

.goals-list li {
    padding: 0.8rem 0;
    border-bottom: 1px solid var(--light-yellow);
}

.goals-list li:last-child {
    border-bottom: none;
}

.legal-box {
    background: var(--white);
    border: 2px solid var(--primary-blue);
    border-radius: 10px;
    padding: 2rem;
    display: grid;
    gap: 1rem;
}

.legal-item {
    padding: 0.8rem;
    background: var(--light-yellow);
    border-radius: 5px;
}

.legal-disclaimer {
    margin-top: 2rem;
    text-align: center;
    color: var(--text-light);
}

/* Event Cards */
.event-date {
    background-color: var(--primary-yellow);
    color: var(--primary-blue);
    display: inline-block;
    padding: 0.5rem 1rem;
    border-radius: 5px;
    font-weight: bold;
    margin-bottom: 1rem;
}

/* News Cards */
.news-card {
    background: var(--white);
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 2px 10px var(--shadow-blue);
    transition: transform 0.3s ease;
}

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

.news-image {
    width: 100%;
    height: 200px;
    background-size: cover;
    background-position: center;
}

.news-content {
    padding: 1.5rem;
}

.news-badge {
    background-color: var(--primary-yellow);
    color: var(--primary-blue);
    padding: 0.3rem 0.8rem;
    border-radius: 3px;
    font-size: 0.8rem;
    font-weight: bold;
}

.news-content h3 {
    color: var(--primary-blue);
    margin: 1rem 0 0.5rem;
}

/* CTA Box */
.cta-box {
    text-align: center;
    background: var(--white);
    padding: 3rem;
    border-radius: 15px;
    border: 3px solid var(--primary-blue);
    box-shadow: 0 5px 20px var(--shadow-blue);
}

.cta-box h2 {
    color: var(--primary-blue);
    font-size: 2rem;
    margin-bottom: 1rem;
}

/* Map */
.map-container {
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 20px var(--shadow-blue);
    margin: 2rem 0;
}

.contact-info-home {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
    margin-top: 2rem;
}

.contact-item {
    background: var(--white);
    padding: 1.5rem;
    border-left: 4px solid var(--primary-yellow);
    border-radius: 5px;
    box-shadow: 0 2px 10px var(--shadow-blue);
}

/* Timeline */
.timeline {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    width: 4px;
    height: 100%;
    background: var(--primary-blue);
}

.timeline-item {
    display: flex;
    gap: 2rem;
    margin-bottom: 3rem;
    position: relative;
}

.timeline-year {
    flex: 0 0 100px;
    background-color: var(--primary-yellow);
    color: var(--primary-blue);
    padding: 1rem;
    border-radius: 10px;
    font-weight: bold;
    text-align: center;
    height: fit-content;
}

.timeline-content {
    flex: 1;
    background: var(--white);
    padding: 1.5rem;
    border-radius: 10px;
    border: 2px solid var(--primary-blue);
    box-shadow: 0 2px 10px var(--shadow-blue);
}

.timeline-content h3 {
    color: var(--primary-blue);
    margin-bottom: 0.5rem;
}

@media (max-width: 768px) {
    .timeline::before {
        left: 50px;
    }

    .timeline-item {
        flex-direction: column;
        padding-left: 80px;
    }

    .timeline-year {
        position: absolute;
        left: 0;
    }
}

/* Team Cards */
.team-card {
    background: var(--white);
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 2px 10px var(--shadow-blue);
    text-align: center;
    transition: transform 0.3s ease;
}

.team-card:hover {
    transform: scale(1.05);
}

.team-photo {
    width: 100%;
    height: 300px;
    background-size: cover;
    background-position: center;
    background-color: var(--light-yellow);
}

.team-card h3 {
    color: var(--primary-blue);
    margin: 1rem 0 0.5rem;
    padding: 0 1rem;
}

.team-role {
    color: var(--primary-yellow);
    background-color: var(--primary-blue);
    padding: 0.3rem 1rem;
    font-weight: bold;
}

.team-card p {
    padding: 1rem;
}

/* Facility Cards */
.facility-card {
    background: var(--white);
    padding: 2rem;
    border-radius: 10px;
    border-left: 4px solid var(--primary-yellow);
    box-shadow: 0 2px 10px var(--shadow-blue);
}

.facility-card h3 {
    color: var(--primary-blue);
    margin-bottom: 0.5rem;
}

/* Achievements */
.achievements {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 2rem;
}

.achievement-badge {
    background: var(--white);
    border: 3px solid var(--primary-blue);
    border-radius: 15px;
    padding: 2rem;
    min-width: 200px;
    text-align: center;
    box-shadow: 0 5px 15px var(--shadow-blue);
}

.achievement-icon {
    font-size: 3rem;
    display: block;
    margin-bottom: 0.5rem;
}

.achievement-text {
    color: var(--primary-blue);
    font-weight: bold;
    font-size: 1.1rem;
}

/* Vision Box */
.vision-box {
    background: var(--white);
    border: 3px solid var(--primary-blue);
    border-radius: 15px;
    padding: 2.5rem;
    font-size: 1.2rem;
    line-height: 1.8;
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
    box-shadow: 0 5px 20px var(--shadow-blue);
}

/* Content Split */
.content-split {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 3rem;
    align-items: center;
}

.content-text h2 {
    color: var(--primary-blue);
    margin-bottom: 1rem;
}

.content-text p {
    margin-bottom: 1rem;
    line-height: 1.8;
}

.content-image img {
    border-radius: 10px;
    box-shadow: 0 5px 20px var(--shadow-blue);
}

/* Pricing */
.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    max-width: 1000px;
    margin: 0 auto;
}

.pricing-card {
    background: var(--white);
    border: 3px solid var(--primary-blue);
    border-radius: 15px;
    padding: 2rem;
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
    box-shadow: 0 5px 15px var(--shadow-blue);
}

.pricing-card:hover {
    transform: scale(1.05);
    box-shadow: 0 10px 30px var(--shadow-blue);
}

.pricing-featured {
    border-color: var(--primary-yellow);
    border-width: 4px;
    transform: scale(1.05);
}

.featured-badge {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background-color: var(--primary-yellow);
    color: var(--primary-blue);
    padding: 0.5rem 1.5rem;
    border-radius: 25px;
    font-weight: bold;
    font-size: 0.9rem;
}

.pricing-header h3 {
    color: var(--primary-blue);
    font-size: 1.8rem;
    margin-bottom: 1rem;
}

.price {
    font-size: 3rem;
    color: var(--primary-blue);
    font-weight: bold;
    margin-bottom: 2rem;
}

.price span {
    font-size: 1.2rem;
    color: var(--text-light);
}

.pricing-features {
    list-style: none;
    margin-bottom: 2rem;
    text-align: left;
}

.pricing-features li {
    padding: 0.8rem 0;
    border-bottom: 1px solid var(--light-yellow);
}

/* Forms */
.form-container {
    max-width: 700px;
    margin: 0 auto;
}

.contact-form {
    background: var(--white);
    padding: 2.5rem;
    border-radius: 10px;
    border: 2px solid var(--primary-blue);
    box-shadow: 0 5px 20px var(--shadow-blue);
}

.form-row {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    color: var(--primary-blue);
    font-weight: 600;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.8rem;
    border: 2px solid var(--primary-blue);
    border-radius: 5px;
    font-size: 1rem;
    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-yellow);
    box-shadow: 0 0 0 3px var(--shadow-yellow);
}

.form-group textarea {
    resize: vertical;
}

.contact-form button {
    width: 100%;
}

/* FAQ */
.faq-container {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background: var(--white);
    border: 2px solid var(--primary-blue);
    border-radius: 10px;
    margin-bottom: 1rem;
    overflow: hidden;
}

.faq-question {
    padding: 1.5rem;
    font-weight: bold;
    color: var(--primary-blue);
    background-color: var(--light-yellow);
    cursor: pointer;
}

.faq-answer {
    padding: 1.5rem;
    display: block;
}

/* Testimonials */
.testimonial-card {
    background: var(--white);
    border: 2px solid var(--primary-blue);
    border-radius: 10px;
    padding: 2rem;
    text-align: center;
    box-shadow: 0 2px 10px var(--shadow-blue);
}

.testimonial-stars {
    color: var(--primary-yellow);
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.testimonial-card p {
    font-style: italic;
    margin-bottom: 1rem;
    line-height: 1.8;
}

.testimonial-card strong {
    color: var(--primary-blue);
}

/* Benefit Cards */
.benefit-card {
    background: var(--white);
    border: 2px solid var(--primary-blue);
    border-radius: 10px;
    padding: 2rem;
    text-align: center;
    transition: all 0.3s ease;
    box-shadow: 0 2px 10px var(--shadow-blue);
}

.benefit-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px var(--shadow-blue);
}

.benefit-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.benefit-card h3 {
    color: var(--primary-blue);
    margin-bottom: 0.5rem;
}

/* Contact Page */
.contact-layout {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 3rem;
}

.contact-info-box {
    background: var(--white);
    border: 2px solid var(--primary-blue);
    border-radius: 10px;
    padding: 2rem;
    box-shadow: 0 5px 20px var(--shadow-blue);
}

.contact-info-box h2 {
    color: var(--primary-blue);
    margin-bottom: 2rem;
}

.contact-detail {
    display: flex;
    gap: 1rem;
    margin-bottom: 2rem;
}

.contact-icon {
    font-size: 2rem;
    flex-shrink: 0;
}

.contact-detail strong {
    display: block;
    color: var(--primary-blue);
    margin-bottom: 0.3rem;
}

.contact-social {
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 2px solid var(--light-yellow);
}

.contact-social h3 {
    color: var(--primary-blue);
    margin-bottom: 1rem;
}

.social-icons-large {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.social-icons-large .social-icon {
    background-color: var(--primary-blue);
    color: var(--primary-yellow);
    padding: 0.8rem 1.5rem;
    border-radius: 25px;
    font-weight: bold;
    transition: all 0.3s ease;
}

.social-icons-large .social-icon:hover {
    background-color: var(--primary-yellow);
    color: var(--primary-blue);
    transform: scale(1.05);
}

.contact-form-box {
    background: var(--white);
    border: 2px solid var(--primary-blue);
    border-radius: 10px;
    padding: 2rem;
    box-shadow: 0 5px 20px var(--shadow-blue);
}

.contact-form-box h2 {
    color: var(--primary-blue);
    margin-bottom: 1.5rem;
}

.emergency-box {
    background: var(--white);
    border: 3px solid var(--primary-yellow);
    border-radius: 10px;
    padding: 2rem;
    text-align: center;
    max-width: 600px;
    margin: 0 auto;
    box-shadow: 0 5px 20px var(--shadow-yellow);
}

.emergency-box strong {
    color: var(--primary-blue);
}

.emergency-box a {
    color: var(--primary-blue);
    font-weight: bold;
    font-size: 1.3rem;
}

.emergency-note {
    margin-top: 1rem;
    font-size: 0.9rem;
    color: var(--text-light);
}

/* Legal Pages */
.legal-content {
    max-width: 900px;
    margin: 0 auto;
}

.legal-section {
    margin-bottom: 3rem;
    background: var(--white);
    padding: 2rem;
    border-radius: 10px;
    border-left: 4px solid var(--primary-blue);
    box-shadow: 0 2px 10px var(--shadow-blue);
}

.legal-section h2 {
    color: var(--primary-blue);
    margin-bottom: 1rem;
    font-size: 1.8rem;
}

.legal-section h3 {
    color: var(--primary-blue);
    margin: 1.5rem 0 0.8rem;
    font-size: 1.3rem;
}

.legal-section ul {
    margin-left: 2rem;
    margin-top: 1rem;
}

.legal-section li {
    margin-bottom: 0.5rem;
    line-height: 1.8;
}

.legal-section p {
    margin-bottom: 1rem;
    line-height: 1.8;
}

.highlight-section {
    border-left-color: var(--primary-yellow);
    border-left-width: 6px;
}

.legal-footer {
    text-align: center;
    padding: 2rem;
    background: var(--light-yellow);
    border-radius: 10px;
}

/* Footer */
.footer {
    background-color: var(--primary-blue);
    color: var(--primary-yellow);
    padding: 3rem 20px 1rem;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-col h4 {
    margin-bottom: 1rem;
    font-size: 1.2rem;
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 0.5rem;
}

.footer-links a {
    color: var(--primary-yellow);
}

.footer-links a:hover {
    color: var(--white);
}

.social-icons {
    display: flex;
    gap: 1rem;
    margin-bottom: 1rem;
}

.social-icon {
    width: 40px;
    height: 40px;
    background-color: var(--primary-yellow);
    color: var(--primary-blue);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    font-weight: bold;
    transition: all 0.3s ease;
}

.social-icon:hover {
    background-color: var(--white);
    transform: scale(1.1);
}

.footer-logo {
    width: 60px;
    height: 60px;
    background: var(--primary-yellow);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    color: var(--primary-blue);
    font-size: 1.5rem;
    margin-top: 1rem;
}

.footer-bottom {
    border-top: 1px solid rgba(253, 224, 71, 0.3);
    padding-top: 2rem;
    text-align: center;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.footer-legal {
    display: flex;
    gap: 1rem;
    align-items: center;
}

.footer-legal a {
    color: var(--primary-yellow);
}

.footer-legal a:hover {
    color: var(--white);
}

/* Animations */
@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

@keyframes slideUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes pulse {
    0%, 100% {
        box-shadow: 0 4px 15px var(--shadow-yellow);
    }
    50% {
        box-shadow: 0 8px 30px var(--shadow-yellow);
    }
}

.fade-in {
    animation: fadeIn 1s ease-in;
}

.slide-up {
    animation: slideUp 0.6s ease-out;
}

.pulse {
    animation: pulse 2s ease-in-out infinite;
}

/* Utility Classes */
.text-center {
    text-align: center;
}

/* Responsive */
@media (max-width: 768px) {
    .hero h1 {
        font-size: 2rem;
    }

    .hero-subtitle {
        font-size: 1.1rem;
    }

    .section-title {
        font-size: 1.8rem;
    }

    .page-hero h1 {
        font-size: 2rem;
    }

    .countdown {
        gap: 1rem;
    }

    .countdown-item {
        min-width: 100px;
        padding: 1.5rem 1rem;
    }

    .countdown-value {
        font-size: 2rem;
    }

    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }

    .contact-layout {
        grid-template-columns: 1fr;
    }

    .pricing-featured {
        transform: scale(1);
    }
}

@media (max-width: 480px) {
    .hero h1 {
        font-size: 1.5rem;
    }

    .btn {
        padding: 0.8rem 1.5rem;
        font-size: 1rem;
    }

    .btn-large {
        padding: 1rem 2rem;
        font-size: 1.2rem;
    }
}
