/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', sans-serif;
    line-height: 1.6;
    color: #2c3e50;
    background-color: #f8f9fa;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-weight: 600;
    line-height: 1.3;
    margin-bottom: 1rem;
}

h1 { font-size: 3.5rem; }
h2 { font-size: 2.5rem; }
h3 { font-size: 1.8rem; }
h4 { font-size: 1.4rem; }

p {
    margin-bottom: 1rem;
    color: #555;
}

/* Navigation */
.navbar {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    padding: 1rem 0;
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
    backdrop-filter: blur(10px);
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-logo {
    display: flex;
    align-items: center;
    color: white;
    font-size: 1.8rem;
    font-weight: 700;
}

.nav-logo i {
    font-size: 2rem;
    margin-right: 12px;
    color: #ffd700;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2.5rem;
}

.nav-link {
    color: white;
    text-decoration: none;
    font-weight: 500;
    font-size: 1rem;
    transition: all 0.3s ease;
    position: relative;
    padding: 0.5rem 0;
}

.nav-link:hover {
    color: #ffd700;
    transform: translateY(-2px);
}

.nav-link::after {
    content: '';
    position: absolute;
    width: 0;
    height: 3px;
    bottom: 0;
    left: 0;
    background: linear-gradient(90deg, #ffd700, #ffed4e);
    transition: width 0.3s ease;
    border-radius: 2px;
}

.nav-link:hover::after {
    width: 100%;
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.bar {
    width: 25px;
    height: 3px;
    background-color: white;
    margin: 3px 0;
    transition: 0.3s;
    border-radius: 2px;
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    padding: 140px 0 100px;
    color: white;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="50" cy="50" r="1" fill="white" opacity="0.1"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
    opacity: 0.3;
}

.hero-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
    z-index: 2;
    text-align: center;
}

.hero-content h1 {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
    font-weight: 700;
    line-height: 1.2;
    color: #ffd700;
    text-shadow: 0 2px 8px rgba(44,62,80,0.18), 0 1px 0 rgba(0,0,0,0.08);
}

.hero-content p {
    font-size: 1.3rem;
    margin-bottom: 2.5rem;
    opacity: 0.98;
    line-height: 1.8;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    color: #fff;
    text-shadow: 0 2px 8px rgba(44,62,80,0.18), 0 1px 0 rgba(0,0,0,0.08);
}

.hero-stats {
    display: flex;
    gap: 2rem;
    margin-bottom: 2.5rem;
    justify-content: center;
}

.stat-item {
    text-align: center;
}

.stat-number {
    display: block;
    font-size: 2.5rem;
    font-weight: 700;
    color: #ffd700;
    margin-bottom: 0.5rem;
    text-shadow: 0 1px 3px rgba(0,0,0,0.1);
}

.stat-label {
    font-size: 0.9rem;
    opacity: 1;
    color: #fff;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.hero-buttons {
    display: flex;
    gap: 1.5rem;
    flex-wrap: wrap;
    justify-content: center;
}

.btn {
    padding: 15px 35px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    position: relative;
    overflow: hidden;
}

.btn-primary {
    background: linear-gradient(45deg, #ffd700, #ffed4e);
    color: #2c3e50;
    box-shadow: 0 8px 25px rgba(255, 215, 0, 0.3);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(255, 215, 0, 0.4);
}

.btn-secondary {
    background: transparent;
    color: white;
    border: 2px solid white;
}

.btn-secondary:hover {
    background: white;
    color: #2c3e50;
    transform: translateY(-3px);
}

.btn-outline {
    background: transparent;
    color: #667eea;
    border: 2px solid #667eea;
    padding: 12px 25px;
    font-size: 0.9rem;
}

.btn-outline:hover {
    background: #667eea;
    color: white;
    transform: translateY(-2px);
}

/* Section Headers */
.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-header h2 {
    font-size: 2.8rem;
    color: #2c3e50;
    margin-bottom: 1rem;
    position: relative;
}

.section-header h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(45deg, #667eea, #764ba2);
    border-radius: 2px;
}

.section-header p {
    font-size: 1.2rem;
    color: #666;
    max-width: 600px;
    margin: 0 auto;
}

/* Featured News Section */
.featured-news {
    padding: 100px 0;
    background: white;
}

.news-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 3rem;
    align-items: start;
}

.news-card {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
    margin-bottom: 2rem;
}

.news-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.15);
}

.news-card.featured {
    margin-bottom: 0;
}

.news-content {
    padding: 2rem;
}

.news-category {
    background: linear-gradient(45deg, #667eea, #764ba2);
    color: white;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    display: inline-block;
    margin-bottom: 1rem;
}

.news-content h3 {
    font-size: 1.6rem;
    margin-bottom: 1rem;
    color: #2c3e50;
    line-height: 1.4;
}

.news-content h4 {
    font-size: 1.2rem;
    margin-bottom: 0.8rem;
    color: #2c3e50;
}

.news-content p {
    color: #666;
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.news-meta {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 1.5rem;
    font-size: 0.9rem;
    color: #888;
}

.news-meta span {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.read-more {
    color: #667eea;
    text-decoration: none;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.3s ease;
}

.read-more:hover {
    color: #764ba2;
    transform: translateX(5px);
}

/* Analysis Section */
.analysis-section {
    padding: 100px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.analysis-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2.5rem;
}

.analysis-card {
    background: white;
    border-radius: 20px;
    padding: 2.5rem;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.analysis-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(45deg, #667eea, #764ba2);
}

.analysis-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.15);
}

.analysis-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(45deg, #667eea, #764ba2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 2rem;
}

.analysis-icon i {
    font-size: 2rem;
    color: white;
}

.analysis-content h3 {
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    color: #2c3e50;
}

.analysis-content p {
    color: #666;
    line-height: 1.8;
    margin-bottom: 2rem;
}

.analysis-meta {
    display: flex;
    justify-content: space-between;
    margin-bottom: 1.5rem;
    font-size: 0.9rem;
    color: #888;
}

.analysis-meta span {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

/* League Information Section */
.league-info-section {
    padding: 100px 0;
    background: white;
}

.league-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2.5rem;
}

.league-card {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
}

.league-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.15);
}

.league-header {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    padding: 2rem;
    text-align: center;
    color: white;
}

.league-header i {
    font-size: 3rem;
    margin-bottom: 1rem;
    color: #ffd700;
}

.league-header h3 {
    font-size: 1.5rem;
    margin-bottom: 0;
}

.league-content {
    padding: 2rem;
}

.league-content p {
    color: #666;
    line-height: 1.7;
    margin-bottom: 2rem;
}

.league-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
    margin-bottom: 2rem;
}

.stat {
    text-align: center;
    padding: 1rem;
    background: #f8f9fa;
    border-radius: 10px;
}

.stat-number {
    display: block;
    font-size: 1.8rem;
    font-weight: 700;
    color: #667eea;
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 0.8rem;
    color: #666;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Statistics Section */
.statistics-section {
    padding: 100px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2.5rem;
}

.stats-card {
    background: white;
    border-radius: 20px;
    padding: 2rem;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
}

.stats-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0,0,0,0.15);
}

.stats-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 2rem;
    padding-bottom: 1rem;
    border-bottom: 2px solid #f1f3f4;
}

.stats-header i {
    font-size: 2rem;
    color: #667eea;
}

.stats-header h3 {
    margin-bottom: 0;
    color: #2c3e50;
}

.player-item, .team-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem 0;
    border-bottom: 1px solid #f1f3f4;
}

.player-item:last-child, .team-item:last-child {
    border-bottom: none;
}

.player-icon, .team-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(45deg, #667eea, #764ba2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.player-icon i, .team-icon i {
    font-size: 1.5rem;
    color: white;
}

.player-info h4, .team-info h4 {
    margin-bottom: 0.3rem;
    color: #2c3e50;
}

.player-info p, .team-info p {
    margin-bottom: 0.3rem;
    color: #666;
    font-size: 0.9rem;
}

.goals, .clean-sheets {
    font-weight: 600;
    color: #667eea;
}

.table-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1rem 0;
    border-bottom: 1px solid #f1f3f4;
}

.table-item:last-child {
    border-bottom: none;
}

.position {
    width: 30px;
    height: 30px;
    background: #667eea;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    font-size: 0.9rem;
}

.team-name {
    flex: 1;
    margin-left: 1rem;
    font-weight: 500;
    color: #2c3e50;
}

.points {
    font-weight: 600;
    color: #667eea;
}

/* Contact Section */
.contact-section {
    padding: 100px 0;
    background: white;
}

.contact-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 4rem;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    padding: 2rem;
    background: #f8f9fa;
    border-radius: 15px;
    transition: all 0.3s ease;
}

.contact-item:hover {
    transform: translateX(10px);
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
}

.contact-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(45deg, #667eea, #764ba2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.contact-icon i {
    font-size: 1.5rem;
    color: white;
}

.contact-details h4 {
    margin-bottom: 0.5rem;
    color: inherit;
}

.contact-details p {
    margin-bottom: 0.3rem;
    color: inherit;
}

.contact-details span {
    font-size: 0.9rem;
    opacity: 0.8;
}

.contact-details a {
    color: inherit;
    text-decoration: none;
}

.social-media {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    padding: 2.5rem;
    border-radius: 20px;
    color: white;
    text-align: center;
}

.social-media h4 {
    margin-bottom: 2rem;
    font-size: 1.5rem;
}

.social-links {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
}

.social-link {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    padding: 1rem;
    background: rgba(255,255,255,0.1);
    border-radius: 10px;
    color: white;
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-link:hover {
    background: rgba(255,255,255,0.2);
    transform: translateY(-3px);
}

.social-link i {
    font-size: 1.2rem;
}

/* Footer */
.footer {
    background: #2c3e50;
    color: white;
    padding: 60px 0 20px;
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer-logo {
    display: flex;
    align-items: center;
    margin-bottom: 1.5rem;
}

.footer-logo i {
    font-size: 2rem;
    margin-right: 12px;
    color: #ffd700;
}

.footer-logo span {
    font-size: 1.5rem;
    font-weight: 700;
}

.footer-section p {
    color: #bdc3c7;
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.footer-social {
    display: flex;
    gap: 1rem;
}

.footer-social a {
    width: 40px;
    height: 40px;
    background: rgba(255,255,255,0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none;
    transition: all 0.3s ease;
}

.footer-social a:hover {
    background: #667eea;
    transform: translateY(-3px);
}

.footer-section h3 {
    margin-bottom: 1.5rem;
    color: white;
    font-size: 1.2rem;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 0.8rem;
}

.footer-section ul li a {
    color: #bdc3c7;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section ul li a:hover {
    color: #667eea;
}

.footer-bottom {
    border-top: 1px solid #34495e;
    padding-top: 2rem;
}

.footer-bottom-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.footer-bottom p {
    color: #bdc3c7;
    margin-bottom: 0;
}

.footer-bottom a {
    color: #667eea;
    text-decoration: none;
}

.footer-links {
    display: flex;
    gap: 2rem;
}

.footer-links a {
    color: #bdc3c7;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: #667eea;
}

/* Responsive Design */
@media (max-width: 768px) {
    .hamburger {
        display: flex;
    }

    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background-color: rgba(102, 126, 234, 0.95);
        width: 100%;
        text-align: center;
        transition: 0.3s;
        backdrop-filter: blur(10px);
        padding: 2rem 0;
    }

    .nav-menu.active {
        left: 0;
    }

    .hero-content h1 {
        font-size: 2.5rem;
    }

    .hero-stats {
        justify-content: center;
    }

    .hero-buttons {
        justify-content: center;
    }

    .news-grid {
        grid-template-columns: 1fr;
    }

    .contact-grid {
        grid-template-columns: 1fr;
    }

    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .footer-bottom-content {
        flex-direction: column;
        text-align: center;
    }

    .analysis-grid,
    .league-grid,
    .stats-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .hero-content h1 {
        font-size: 2rem;
    }

    .hero-content p {
        font-size: 1.1rem;
    }

    .section-header h2 {
        font-size: 2rem;
    }

    .hero-stats {
        flex-direction: column;
        gap: 1rem;
    }

    .news-card,
    .analysis-card,
    .league-card,
    .stats-card {
        margin-bottom: 1.5rem;
    }

    .contact-item {
        flex-direction: column;
        text-align: center;
    }

    .social-links {
        grid-template-columns: 1fr;
    }
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.news-card,
.analysis-card,
.league-card,
.stats-card {
    animation: fadeInUp 0.6s ease forwards;
}

/* Smooth Scrolling */
html {
    scroll-behavior: smooth;
}

/* Loading Animation */
.loading {
    display: inline-block;
    width: 20px;
    height: 20px;
    border: 3px solid rgba(255,255,255,.3);
    border-radius: 50%;
    border-top-color: #fff;
    animation: spin 1s ease-in-out infinite;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

.info-section {
    padding: 80px 0 60px;
    background: #f8f9fa;
}

.info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2.5rem;
}

.info-card {
    background: #fff;
    border-radius: 18px;
    box-shadow: 0 6px 24px rgba(102,126,234,0.08);
    padding: 2.2rem 2rem 1.5rem 2rem;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    min-height: 320px;
    transition: box-shadow 0.3s;
}

.info-card:hover {
    box-shadow: 0 12px 32px rgba(102,126,234,0.16);
}

.info-card h3 {
    color: #667eea;
    font-size: 1.35rem;
    font-weight: 700;
    margin-bottom: 1.1rem;
}

.info-card h4 {
    color: #764ba2;
    font-size: 1.1rem;
    font-weight: 600;
    margin: 1.1rem 0 0.5rem 0;
}

.info-card ul, .info-card ol {
    margin-left: 1.2rem;
    margin-bottom: 0.5rem;
    color: #444;
    font-size: 1rem;
    line-height: 1.7;
}

.info-card li {
    margin-bottom: 0.5rem;
}

.info-card p {
    color: #444;
    font-size: 1rem;
    line-height: 1.7;
    margin-bottom: 0.7rem;
}

@media (max-width: 768px) {
    .info-section {
        padding: 50px 0 30px;
    }
    .info-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    .info-card {
        min-height: 0;
        padding: 1.5rem 1rem;
    }
}

/* --- Contact Page Modern Styles --- */
.contact-info-section, .contact-form-section {
    padding: 80px 0;
    background: #fff;
}

.contact-info-section h2,
.contact-form-section h2 {
    text-align: center;
    color: #2c3e50;
    font-size: 2.5rem;
    margin-bottom: 2.5rem;
    font-weight: 700;
    letter-spacing: 1px;
}

.contact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 2.5rem;
    margin-bottom: 2rem;
}

.contact-card {
    background: linear-gradient(135deg, #f8f9fa 60%, #e9ecef 100%);
    border-radius: 18px;
    box-shadow: 0 6px 24px rgba(102,126,234,0.08);
    padding: 2.5rem 2rem;
    text-align: center;
    transition: box-shadow 0.3s, transform 0.3s;
    position: relative;
}
.contact-card:hover {
    box-shadow: 0 12px 32px rgba(102,126,234,0.18);
    transform: translateY(-6px) scale(1.03);
}
.contact-card .contact-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(45deg, #667eea, #764ba2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.2rem auto;
    font-size: 2rem;
    color: #ffd700;
    box-shadow: 0 2px 8px rgba(102,126,234,0.10);
}
.contact-card h3 {
    color: #764ba2;
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
    font-weight: 600;
}
.contact-card p {
    color: #2c3e50;
    margin-bottom: 0.3rem;
    font-size: 1rem;
}
.contact-card .response-time {
    display: block;
    margin-top: 0.7rem;
    font-size: 0.95rem;
    color: #667eea;
    opacity: 0.85;
}

.form-container {
    display: flex;
    gap: 3rem;
    align-items: flex-start;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 2.5rem;
}
.contact-form {
    background: #f8f9fa;
    border-radius: 18px;
    box-shadow: 0 6px 24px rgba(102,126,234,0.08);
    padding: 2.5rem 2rem;
    flex: 1 1 350px;
    min-width: 320px;
    max-width: 500px;
}
.contact-form h2 {
    color: #764ba2;
    font-size: 1.7rem;
    margin-bottom: 1.5rem;
    text-align: left;
}
.form-group {
    margin-bottom: 1.5rem;
    text-align: left;
}
.form-group label {
    display: block;
    margin-bottom: 0.6rem;
    color: #667eea;
    font-weight: 500;
    font-size: 1rem;
}
.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.9rem 1.1rem;
    border: 1.5px solid #d1d5db;
    border-radius: 10px;
    font-size: 1rem;
    background: #fff;
    color: #2c3e50;
    transition: border 0.2s, box-shadow 0.2s;
    outline: none;
    box-shadow: 0 1px 4px rgba(102,126,234,0.04);
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: #764ba2;
    box-shadow: 0 0 0 2px #667eea33;
}
.form-group textarea {
    resize: vertical;
    min-height: 120px;
    font-family: inherit;
}
.contact-form button[type="submit"] {
    width: 100%;
    padding: 1rem 0;
    background: linear-gradient(45deg, #ffd700, #ffed4e);
    color: #2c3e50;
    font-weight: 700;
    font-size: 1.1rem;
    border: none;
    border-radius: 50px;
    cursor: pointer;
    box-shadow: 0 4px 16px rgba(255,215,0,0.13);
    transition: background 0.2s, transform 0.2s;
}
.contact-form button[type="submit"]:hover {
    background: linear-gradient(45deg, #ffed4e, #ffd700);
    transform: translateY(-2px) scale(1.03);
}

.form-info {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: #fff;
    border-radius: 18px;
    box-shadow: 0 6px 24px rgba(102,126,234,0.10);
    padding: 2.5rem 2rem;
    flex: 1 1 260px;
    min-width: 260px;
    max-width: 350px;
    margin-top: 0;
}
.form-info h3 {
    color: #ffd700;
    font-size: 1.2rem;
    margin-bottom: 1.2rem;
    font-weight: 600;
}
.form-info ul {
    list-style: none;
    padding: 0;
}
.form-info li {
    margin-bottom: 1.1rem;
    font-size: 1rem;
    display: flex;
    align-items: center;
    gap: 0.7rem;
}
.form-info i {
    color: #ffd700;
    font-size: 1.1rem;
}

@media (max-width: 900px) {
    .form-container {
        flex-direction: column;
        gap: 2rem;
        align-items: stretch;
    }
    .contact-form, .form-info {
        max-width: 100%;
        min-width: 0;
    }
}

/* --- Social Media Section Modern Styles --- */
.social-media-section {
    padding: 80px 0 60px 0;
    background: #f8f9fa;
}
.social-media-section h2 {
    text-align: center;
    color: #2c3e50;
    font-size: 2.5rem;
    margin-bottom: 2.5rem;
    font-weight: 700;
    letter-spacing: 1px;
}
.social-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 2.5rem;
    max-width: 900px;
    margin: 0 auto;
}
.social-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: #fff;
    border-radius: 18px;
    box-shadow: 0 6px 24px rgba(102,126,234,0.08);
    padding: 2.5rem 1.5rem 2rem 1.5rem;
    text-align: center;
    text-decoration: none;
    color: #2c3e50;
    transition: box-shadow 0.3s, transform 0.3s, color 0.2s;
    position: relative;
}
.social-card:hover {
    box-shadow: 0 12px 32px rgba(102,126,234,0.18);
    transform: translateY(-6px) scale(1.03);
    color: #764ba2;
}
.social-card i {
    font-size: 2.5rem;
    margin-bottom: 1.2rem;
    color: #667eea;
    transition: color 0.2s;
}
.social-card:hover i {
    color: #ffd700;
}
.social-card h3 {
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: #2c3e50;
    transition: color 0.2s;
}
.social-card:hover h3 {
    color: #764ba2;
}
.social-card p {
    color: #667eea;
    font-size: 1rem;
    margin-bottom: 0;
}
@media (max-width: 600px) {
    .social-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    .social-card {
        padding: 2rem 1rem 1.5rem 1rem;
    }
} 