/* Home Page Modern Design - Similar to CPL */

/* Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    line-height: 1.6;
    color: #f0f0f0;
    background-color: #121212;
}

.home-hero-subtitle,
.home-hero-description {
    font-family: 'Khmer OS Koulen', 'Koulen', system-ui, sans-serif;
}

.home-hero-tagline {
    font-family: 'Poppins', system-ui, -apple-system, 'Segoe UI', Roboto, sans-serif;
}

/* Modern Hero Section */
.home-hero {
    position: relative;
    min-height: 70vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: transparent;
    overflow: hidden;
    margin-top: 76px;
}

.home-hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('assets/Champions2025.jpg') center/cover;
    opacity: 0.3;
    z-index: 1;
}

.home-hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: white;
    max-width: 900px;
    padding: 0 20px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.home-hero-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    margin: 0 auto 30px auto;
    background: rgba(0, 0, 0, 0.55);
    backdrop-filter: blur(10px);
    border-radius: 50px;
    padding: 15px 30px;
    border: 2px solid rgba(255, 255, 255, 0.2);
    width: fit-content;
}

.home-tournament-logo {
    width: 50px;
    height: 50px;
    object-fit: contain;
    border-radius: 8px;
}

.home-season-text {
    font-size: 0.9rem;
    font-weight: 600;
    letter-spacing: 2px;
    color: #FFD700;
}

.home-hero-title {
    font-size: 3.5rem;
    font-weight: 900;
    margin-bottom: 15px;
    letter-spacing: -1px;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.home-hero-subtitle {
    font-size: 1.4rem;
    font-weight: 500;
    margin-bottom: 15px;
    opacity: 0.95;
}

.home-hero-description {
    font-size: 1.1rem;
    margin-bottom: 10px;
    opacity: 0.9;
}

.home-hero-tagline {
    font-size: 1rem;
    margin-bottom: 40px;
    opacity: 0.8;
    font-style: italic;
}

.home-hero-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.home-btn {
    padding: 15px 30px;
    border-radius: 8px;
    font-weight: 700;
    font-size: 0.9rem;
    text-decoration: none;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.home-btn-primary {
    background: linear-gradient(90deg, #00C851, #FFD700);
    color: #0a0a0a;
}

.home-btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(0, 200, 81, 0.35);
    color: #0a0a0a;
}

.home-btn-secondary {
    background: transparent;
    color: white;
    border: 2px solid white;
}

.home-btn-secondary:hover {
    background: white;
    color: #00A041;
}

/* Tournament Info Section */
.home-tournament-info {
    background: transparent;
    padding: 50px 0;
    box-shadow: none;
}

.home-info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.home-info-card {
    text-align: center;
    padding: 30px 20px;
    border-radius: 12px;
    background: linear-gradient(135deg, #1a1a1a 0%, #111111 100%);
    border: 1px solid rgba(0, 200, 81, 0.18);
    transition: all 0.3s ease;
}

.home-info-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 200, 81, 0.15);
    background: linear-gradient(135deg, #1f1f1f 0%, #141414 100%);
}

.home-info-icon {
    font-size: 2.5rem;
    color: #00C851;
    margin-bottom: 20px;
}

.home-info-title {
    font-size: 1.2rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 10px;
}

.home-info-text {
    color: #adb5bd;
    font-size: 0.95rem;
}

/* Tournament Stages Section */
.home-tournament-stages {
    padding: 60px 0;
    background: transparent;
}

/* Latest Results Section */
.home-results {
    padding: 10px 0 40px;
    background: transparent;
}

@media (max-width: 768px) {
    .home-results {
        margin-left: -15px;
        margin-right: -15px;
    }

    .home-results .container {
        max-width: 100%;
        padding-left: 0;
        padding-right: 0;
    }

    .home-results-header {
        padding-left: 12px;
        padding-right: 12px;
    }

    .home-results-list {
        padding-left: 12px;
        padding-right: 12px;
    }

    .home-results-ads {
        padding-left: 12px;
        padding-right: 12px;
    }
}

.home-results-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    margin-bottom: 14px;
}

.home-results-title {
    margin: 0;
    font-size: 1.25rem;
    font-weight: 800;
    color: #ffffff;
}

.home-results-viewall {
    color: #0d6efd;
    text-decoration: none;
    font-size: 0.85rem;
    font-weight: 600;
}

.home-results-viewall:hover {
    text-decoration: underline;
}

.home-results-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.home-result-card {
    position: relative;
    border-radius: 10px;
    padding: 14px 16px;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.1);
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto minmax(0, 1fr) auto;
    align-items: center;
    gap: 14px;
}

.home-result-team {
    display: flex;
    align-items: center;
    gap: 10px;
    min-width: 0;
}

.home-result-team-right {
    justify-content: flex-end;
}

.home-result-team-name {
    color: #ffffff;
    font-size: 0.8rem;
    font-weight: 800;
    letter-spacing: 0.3px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.home-result-team-badge {
    width: 30px;
    height: 30px;
    border-radius: 6px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.95);
    flex: 0 0 30px;
}

.home-result-team-logo {
    width: 22px;
    height: 22px;
    object-fit: contain;
}

.home-result-score {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: #0d6efd;
    font-weight: 900;
    font-size: 1.05rem;
    letter-spacing: 0.5px;
}

.home-result-score-sep {
    opacity: 0.7;
}

.home-result-meta {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 6px;
}

@media (max-width: 576px) {
    .home-result-card {
        padding: 10px 12px;
        gap: 10px;
    }

    .home-result-team {
        gap: 8px;
    }

    .home-result-team-badge {
        width: 26px;
        height: 26px;
        flex: 0 0 26px;
    }

    .home-result-team-logo {
        width: 18px;
        height: 18px;
    }

    .home-result-team-name {
        font-size: 0.72rem;
        letter-spacing: 0.2px;
    }

    .home-result-score {
        font-size: 0.95rem;
        gap: 4px;
    }

    .home-result-meta {
        gap: 4px;
    }

    .home-result-status {
        width: 24px;
        height: 16px;
        font-size: 0.65rem;
    }

    .home-result-date {
        font-size: 0.7rem;
    }
}

@media (max-width: 420px) {
    .home-result-card {
        grid-template-columns: minmax(0, 1fr) auto;
        grid-template-areas:
            "left score"
            "right meta";
        gap: 8px 12px;
    }

    .home-result-team-left {
        grid-area: left;
    }

    .home-result-score {
        grid-area: score;
        justify-self: end;
    }

    .home-result-team-right {
        grid-area: right;
        justify-self: start;
        justify-content: flex-start;
    }

    .home-result-meta {
        grid-area: meta;
        justify-self: end;
    }

    .home-result-team-name {
        white-space: normal;
        overflow: hidden;
        text-overflow: clip;
        display: -webkit-box;
        -webkit-line-clamp: 2;
        line-clamp: 2;
        -webkit-box-orient: vertical;
    }
}

@media (max-width: 360px) {
    .home-result-card {
        grid-template-columns: 1fr;
        grid-template-areas:
            "left"
            "score"
            "right"
            "meta";
        gap: 10px;
        padding: 12px;
    }

    .home-result-team {
        justify-content: center;
    }

    .home-result-team-right {
        justify-content: center;
        justify-self: center;
    }

    .home-result-score {
        justify-self: center;
        font-size: 1rem;
    }

    .home-result-meta {
        align-items: center;
        justify-self: center;
        flex-direction: row;
        gap: 10px;
    }
}

.home-result-status {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 26px;
    height: 18px;
    border-radius: 4px;
    background: #00C851;
    color: #ffffff;
    font-size: 0.7rem;
    font-weight: 900;
}

.home-result-date {
    color: #adb5bd;
    font-size: 0.75rem;
    white-space: nowrap;
}

.home-results-ads {
    margin-top: 14px;
}

.home-results-ad {
    display: block;
    border-radius: 12px;
    overflow: hidden;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.home-results-ad-img {
    width: 100%;
    height: auto;
    display: block;
}

.home-section-header {
    text-align: center;
    margin-bottom: 50px;
}

.home-section-title {
    font-size: 2.5rem;
    font-weight: 800;
    color: #ffffff;
    margin-bottom: 15px;
}

.home-section-divider {
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, #00C851, #FFD700);
    margin: 0 auto 15px;
    border-radius: 2px;
}

.home-section-subtitle {
    font-size: 1.1rem;
    color: #adb5bd;
}

.home-match-carousel {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
}

.home-carousel-container {
    overflow: hidden;
    border-radius: 16px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.45);
}

.home-carousel-track {
    display: flex;
    transition: transform 0.6s ease-in-out;
}

.home-carousel-slide {
    width: 100%;
    flex-shrink: 0;
}

.home-match-card {
    background: linear-gradient(135deg, #1a1a1a 0%, #0f0f0f 100%);
    padding: 40px;
    border: 1px solid rgba(0, 200, 81, 0.16);
}

.home-match-date {
    text-align: center;
    margin-bottom: 30px;
}

.home-match-day {
    font-size: 1.1rem;
    color: #adb5bd;
    margin-bottom: 5px;
}

.home-match-time {
    font-size: 1.3rem;
    font-weight: 700;
    color: #00C851;
}

.home-teams-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 30px;
}

.home-team {
    text-align: center;
    flex: 1;
}

.home-team-logo {
    width: 70px;
    height: 70px;
    object-fit: contain;
    margin-bottom: 15px;
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.95);
    padding: 8px;
}

.home-team-name {
    font-size: 1.1rem;
    font-weight: 700;
    color: #ffffff;
}

.home-vs {
    margin: 0 30px;
    font-size: 1.5rem;
    font-weight: 800;
    color: #FFD700;
}

.home-match-venue {
    text-align: center;
    color: #adb5bd;
    font-size: 0.95rem;
}

.home-match-venue i {
    color: #00C851;
    margin-right: 8px;
}

.home-carousel-indicators {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 25px;
}

.home-indicator {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    border: none;
    background: rgba(255, 255, 255, 0.25);
    cursor: pointer;
    transition: all 0.3s ease;
}

.home-indicator.active {
    background: #00C851;
    transform: scale(1.3);
}

/* Why Bet Section */
.home-why-bet {
    padding: 80px 0;
    background: linear-gradient(180deg, #121212 0%, #0f0f0f 100%);
}

.home-why-content {
    padding-right: 30px;
}

.home-why-title {
    font-size: 2rem;
    font-weight: 800;
    color: #ffffff;
    line-height: 1.2;
    margin-bottom: 14px;
}

.home-why-description {
    color: #adb5bd;
    font-size: 0.95rem;
    line-height: 1.7;
    margin-bottom: 16px;
}

.home-why-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.home-why-list li {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #ffffff;
    font-weight: 600;
    margin-top: 6px;
    font-size: 0.95rem;
}

.home-why-list li i {
    color: #ffffff;
    font-size: 0.95rem;
    opacity: 0.95;
}

.home-features-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 22px 34px;
}

.home-feature-card {
    display: flex;
    gap: 12px;
    align-items: flex-start;
    padding: 8px 0;
}

.home-feature-icon {
    width: 24px;
    flex: 0 0 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 2px;
}

.home-feature-icon i {
    color: #ffffff;
    font-size: 1rem;
}

.home-feature-content h5 {
    color: #ffffff;
    font-size: 1rem;
    font-weight: 800;
    margin: 0 0 6px;
}

.home-feature-content p {
    color: #adb5bd;
    font-size: 0.9rem;
    line-height: 1.6;
    margin: 0;
}

.home-news-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.home-news-card {
    background: linear-gradient(135deg, #1a1a1a 0%, #0f0f0f 100%);
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid rgba(0, 200, 81, 0.16);
    transition: all 0.3s ease;
    height: 100%;
}

.home-news-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
}

.home-news-image {
    position: relative;
    height: 200px;
    overflow: hidden;
}

.home-news-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.home-news-card:hover .home-news-image img {
    transform: scale(1.05);
}

.home-news-badges {
    position: absolute;
    top: 15px;
    left: 15px;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.home-news-date-badge,
.home-news-views-badge {
    background: rgba(0, 0, 0, 0.85);
    color: #ffffff;
    padding: 6px 10px;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 500;
    border: 1px solid rgba(255, 255, 255, 0.15);
}

.home-news-category {
    position: absolute;
    bottom: 15px;
    left: 15px;
    display: flex;
    gap: 5px;
}

.home-category-badge {
    background: #00C851;
    color: white;
    padding: 4px 8px;
    border-radius: 12px;
    font-size: 0.7rem;
    font-weight: 600;
    text-transform: uppercase;
}

.home-news-content {
    padding: 25px;
}

.home-news-title {
    font-size: 1.2rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 12px;
    line-height: 1.4;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.home-news-desc {
    color: #adb5bd;
    line-height: 1.6;
    font-size: 0.9rem;
}

/* Sponsor Section */
.home-sponsors {
    padding: 60px 0;
    background: transparent;
}

.home-sponsors-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 40px;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.home-sponsor-card {
    background: linear-gradient(135deg, #1a1a1a 0%, #0f0f0f 100%);
    border-radius: 12px;
    border: 1px solid rgba(0, 200, 81, 0.16);
    padding: 30px 20px;
    height: 140px;
    width: 100%;
    min-width: 250px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.35);
}

.home-sponsor-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 200, 81, 0.15);
    border-color: rgba(0, 200, 81, 0.28);
}

.home-sponsor-card img {
    width: 120px;
    height: 80px;
    object-fit: contain;
    filter: grayscale(20%);
    transition: filter 0.3s ease;
}

.home-sponsor-card:hover img {
    filter: grayscale(0%);
}

/* Responsive Design */
@media (max-width: 991px) {
    .home-hero-title {
        font-size: 2.8rem;
    }
    
    .home-teams-container {
        flex-direction: column;
        gap: 20px;
    }
    
    .home-vs {
        margin: 0;
    }
    
    .home-team-logo {
        width: 60px;
        height: 60px;
    }
    
    .home-sponsors-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
        max-width: 600px;
    }
    
    .home-sponsor-card {
        height: 120px;
        width: 100%;
        min-width: 200px;
        padding: 25px 15px;
    }

    .home-why-content {
        padding-right: 0;
    }
}

@media (max-width: 767px) {
    .home-hero {
        min-height: 60vh;
        padding: 40px 0;
    }
    
    .home-hero-title {
        font-size: 2.2rem;
    }
    
    .home-hero-subtitle {
        font-size: 1.2rem;
    }
    
    .home-hero-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .home-btn {
        width: 100%;
        max-width: 300px;
    }
    
    .home-match-card {
        padding: 25px;
    }
    
    .home-section-title {
        font-size: 2rem;
    }

    .home-features-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .home-result-card {
        grid-template-columns: 1fr auto;
        grid-template-rows: auto auto;
        gap: 10px;
    }

    .home-result-score {
        justify-self: end;
        grid-column: 2;
        grid-row: 1;
    }

    .home-result-team-right {
        grid-column: 1;
        grid-row: 2;
        justify-content: flex-start;
    }

    .home-result-meta {
        grid-column: 2;
        grid-row: 2;
    }
}

@media (max-width: 575px) {
    .home-hero-badge {
        flex-direction: column;
        gap: 10px;
        padding: 20px;
    }
    
    .home-tournament-logo {
        width: 40px;
        height: 40px;
    }
    
    .home-hero-title {
        font-size: 1.8rem;
    }
    
    .home-info-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .home-news-grid {
        grid-template-columns: 1fr;
    }
    
    .home-sponsors-grid {
        grid-template-columns: 1fr;
        gap: 15px;
        max-width: 400px;
    }
    
    .home-sponsor-card {
        height: 100px;
        width: 100%;
        min-width: 280px;
        padding: 20px 15px;
    }
    
    .home-sponsor-card img {
        max-width: 100px;
        max-height: 60px;
    }
}

/* Home Footer */
.home-footer {
    background: #0b0b0b;
    padding: 55px 0 25px;
}

.home-footer-logo h3 {
    margin: 0 0 10px;
    font-weight: 900;
}

.home-footer-logo h3 strong {
    color: #00C851; /* EM Green - matching header */
}

.home-gold {
    background: linear-gradient(45deg, #FFD700, #FFA500, #FFD700, #FF8C00);
    background-size: 300% 300%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: goldShimmer 3s ease-in-out infinite;
}

.home-footer-logo p {
    color: #adb5bd;
    margin: 0;
    font-size: 0.9rem;
    line-height: 1.6;
}

.home-footer-section h4 {
    color: #ffffff;
    font-size: 1.05rem;
    font-weight: 800;
    margin: 0 0 12px;
}

.home-footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.home-footer-links li {
    margin: 6px 0;
}

.home-footer-links a {
    color: #0d6efd;
    text-decoration: none;
    font-size: 0.92rem;
}

.home-footer-links a:hover {
    text-decoration: underline;
}

.home-footer-links i {
    margin-right: 10px;
    color: #0d6efd;
}

.home-footer-social {
    display: flex;
    gap: 10px;
    margin-top: 14px;
}

.home-social-btn {
    display: inline-flex;
    width: 34px;
    height: 34px;
    border-radius: 6px;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.06);
    color: #0d6efd;
    text-decoration: none;
}

.home-social-btn:hover {
    background: rgba(255, 255, 255, 0.1);
    color: #0d6efd;
}

.home-footer-bottom {
    margin-top: 22px;
    padding-top: 18px;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.home-footer-bottom p {
    margin: 0;
    color: #adb5bd;
    font-size: 0.9rem;
}

.home-footer-cta {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #ffffff;
    font-weight: 900;
    font-size: 0.9rem;
    letter-spacing: 0.5px;
}

.home-cta-text {
    color: #ffffff;
    font-weight: 900;
}

.home-cta-brand {
    color: #ffffff;
}

/* Footer Responsive Design */
/* Large Desktop (1200px and up) */
@media (min-width: 1200px) {
    .home-footer {
        padding: 60px 0 30px;
    }
    
    .home-footer-logo h3 {
        font-size: 2rem;
    }
    
    .home-footer-section h4 {
        font-size: 1.1rem;
    }
}

/* Desktop/Laptop (992px to 1199px) */
@media (max-width: 1199px) and (min-width: 992px) {
    .home-footer {
        padding: 50px 0 25px;
    }
    
    .home-footer-logo h3 {
        font-size: 1.8rem;
    }
}

/* Tablet (768px to 991px) */
@media (max-width: 991px) and (min-width: 768px) {
    .home-footer {
        padding: 45px 0 25px;
    }
    
    .home-footer-logo {
        text-align: center;
        margin-bottom: 30px;
    }
    
    .home-footer-logo h3 {
        font-size: 1.7rem;
        margin-bottom: 15px;
    }
    
    .home-footer-social {
        justify-content: center;
        margin-top: 20px;
    }
    
    .home-footer-section {
        margin-bottom: 30px;
        text-align: center;
    }
    
    .home-footer-section h4 {
        font-size: 1.1rem;
        margin-bottom: 15px;
    }
    
    .home-footer-bottom {
        text-align: center;
        margin-top: 30px;
        padding-top: 25px;
    }
    
    .home-footer-bottom .row > div {
        margin-bottom: 15px;
    }
    
    .home-footer-cta {
        justify-content: center;
    }
}

/* Small Tablet/Large Mobile (576px to 767px) */
@media (max-width: 767px) and (min-width: 576px) {
    .home-footer {
        padding: 40px 0 20px;
    }
    
    .home-footer-content .row {
        text-align: center;
    }
    
    .home-footer-logo {
        margin-bottom: 25px;
    }
    
    .home-footer-logo h3 {
        font-size: 1.6rem;
        margin-bottom: 12px;
    }
    
    .home-footer-logo p {
        font-size: 0.85rem;
        max-width: 300px;
        margin: 0 auto;
    }
    
    .home-footer-social {
        justify-content: center;
        gap: 12px;
        margin-top: 18px;
    }
    
    .home-social-btn {
        width: 36px;
        height: 36px;
    }
    
    .home-footer-section {
        margin-bottom: 25px;
    }
    
    .home-footer-section h4 {
        font-size: 1.05rem;
        margin-bottom: 12px;
    }
    
    .home-footer-links a {
        font-size: 0.9rem;
    }
    
    .home-footer-bottom {
        text-align: center;
        margin-top: 25px;
        padding-top: 20px;
    }
    
    .home-footer-bottom .row > div {
        margin-bottom: 12px;
    }
    
    .home-footer-bottom p {
        font-size: 0.85rem;
    }
    
    .home-footer-cta {
        justify-content: center;
        font-size: 0.85rem;
    }
}

/* Mobile (up to 575px) */
@media (max-width: 575px) {
    .home-footer {
        padding: 35px 15px 20px;
    }
    
    .home-footer .container {
        padding: 0;
    }
    
    .home-footer-content .row {
        margin: 0;
        text-align: center;
    }
    
    .home-footer-content .row > div {
        padding: 0 10px;
        margin-bottom: 25px;
    }
    
    .home-footer-logo {
        margin-bottom: 20px;
    }
    
    .home-footer-logo h3 {
        font-size: 1.5rem;
        margin-bottom: 10px;
    }
    
    .home-footer-logo p {
        font-size: 0.8rem;
        line-height: 1.5;
        max-width: 280px;
        margin: 0 auto;
    }
    
    .home-footer-social {
        justify-content: center;
        gap: 10px;
        margin-top: 15px;
        flex-wrap: wrap;
    }
    
    .home-social-btn {
        width: 38px;
        height: 38px;
        border-radius: 8px;
    }
    
    .home-footer-section h4 {
        font-size: 1rem;
        margin-bottom: 10px;
        color: #00C851;
        font-weight: 700;
    }
    
    .home-footer-links {
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 8px;
    }
    
    .home-footer-links li {
        margin: 0;
        width: 100%;
        text-align: center;
    }
    
    .home-footer-links a {
        font-size: 0.88rem;
        display: inline-block;
        padding: 8px 12px;
        border-radius: 6px;
        transition: background-color 0.3s ease;
    }
    
    .home-footer-links a:hover {
        background-color: rgba(0, 200, 81, 0.1);
        text-decoration: none;
    }
    
    .home-footer-links i {
        margin-right: 8px;
        width: 16px;
        text-align: center;
    }
    
    .home-footer-bottom {
        text-align: center;
        margin-top: 20px;
        padding-top: 18px;
        border-top: 1px solid rgba(255, 255, 255, 0.1);
    }
    
    .home-footer-bottom .row {
        margin: 0;
    }
    
    .home-footer-bottom .row > div {
        padding: 0;
        margin-bottom: 10px;
    }
    
    .home-footer-bottom p {
        font-size: 0.8rem;
        line-height: 1.4;
    }
    
    .home-footer-cta {
        justify-content: center;
        font-size: 0.8rem;
        gap: 6px;
        flex-wrap: wrap;
    }
    
    .home-cta-text {
        font-weight: 800;
    }
}

/* Extra Small Mobile (up to 375px) */
@media (max-width: 375px) {
    .home-footer {
        padding: 30px 10px 15px;
    }
    
    .home-footer-logo h3 {
        font-size: 1.4rem;
    }
    
    .home-footer-logo p {
        font-size: 0.75rem;
        max-width: 250px;
    }
    
    .home-footer-section h4 {
        font-size: 0.95rem;
    }
    
    .home-footer-links a {
        font-size: 0.85rem;
        padding: 6px 10px;
    }
    
    .home-social-btn {
        width: 36px;
        height: 36px;
    }
    
    .home-footer-bottom p {
        font-size: 0.75rem;
    }
    
    .home-footer-cta {
        font-size: 0.75rem;
    }
}

/* Landscape Mobile Optimization */
@media (max-height: 500px) and (orientation: landscape) {
    .home-footer {
        padding: 25px 0 15px;
    }
    
    .home-footer-logo {
        margin-bottom: 15px;
    }
    
    .home-footer-section {
        margin-bottom: 15px;
    }
    
    .home-footer-bottom {
        margin-top: 15px;
        padding-top: 15px;
    }
}
