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

:root {
    --primary-color: #1a1a2e;
    --secondary-color: #16213e;
    --accent-color: #e94560;
    --text-light: #f1f1f1;
    --text-dark: #333;
    --bg-light: #ffffff;
    --bg-dark: #0f0f1e;
}

body {
    font-family: 'Montserrat', sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    background: var(--bg-light);
}

h1, h2, h3, h4 {
    font-family: 'Playfair Display', serif;
    font-weight: 700;
}

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

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(26, 26, 46, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    padding: 1rem 0;
}

.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-brand h1 {
    font-size: 1.5rem;
    color: var(--text-light);
    letter-spacing: 2px;
}

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

.nav-menu a {
    color: var(--text-light);
    text-decoration: none;
    font-weight: 400;
    transition: color 0.3s ease;
    text-transform: uppercase;
    font-size: 0.9rem;
    letter-spacing: 1px;
}

.nav-menu a:hover {
    color: var(--accent-color);
}

/* Hero Section */
.hero {
    position: relative;
    height: 100vh;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    overflow: hidden;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: repeating-linear-gradient(
        45deg,
        transparent,
        transparent 10px,
        rgba(255,255,255,0.03) 10px,
        rgba(255,255,255,0.03) 20px
    );
    animation: slide 20s linear infinite;
}

@keyframes slide {
    0% { background-position: 0 0; }
    100% { background-position: 100px 100px; }
}

.hero-content {
    position: relative;
    z-index: 2;
    color: var(--text-light);
}

.hero-title {
    font-size: 5rem;
    margin-bottom: 1rem;
    line-height: 1.1;
    text-shadow: 2px 2px 20px rgba(0,0,0,0.3);
}

.hero-subtitle {
    font-size: 1.5rem;
    margin-bottom: 2rem;
    opacity: 0.9;
    font-weight: 300;
}

.hero-tagline {
    font-size: 1rem;
    opacity: 0.7;
    letter-spacing: 2px;
    text-transform: uppercase;
}

/* Sections */
section {
    padding: 5rem 0;
}

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

/* About Section */
.about-section {
    background: var(--bg-light);
}

.about-text {
    text-align: center;
    font-size: 1.2rem;
    max-width: 800px;
    margin: 0 auto 3rem;
    line-height: 1.8;
    color: var(--text-dark);
}

.stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    max-width: 600px;
    margin: 0 auto;
}

.stat {
    text-align: center;
}

.stat h3 {
    font-size: 3rem;
    color: var(--accent-color);
    margin-bottom: 0.5rem;
}

.stat p {
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    opacity: 0.7;
}

/* Team Section */
.team-section {
    background: var(--primary-color);
    color: var(--text-light);
}

.team-section .section-title {
    color: var(--text-light);
}

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

.team-member {
    background: rgba(255,255,255,0.05);
    padding: 2rem;
    border-radius: 10px;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.team-member:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 30px rgba(233,69,96,0.3);
}

.member-image {
    margin-bottom: 1.5rem;
}

.placeholder-img {
    width: 150px;
    height: 150px;
    background: linear-gradient(135deg, var(--accent-color), #ff6b9d);
    border-radius: 50%;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 4rem;
    color: white;
    font-weight: 700;
}

.team-member h3 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}

.team-member h4 {
    color: var(--accent-color);
    font-size: 1rem;
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.team-member p {
    opacity: 0.9;
    line-height: 1.6;
    margin-bottom: 1rem;
}

.member-link {
    color: var(--accent-color);
    text-decoration: none;
    font-weight: 600;
    display: inline-block;
    margin-top: 1rem;
    transition: transform 0.3s ease;
}

.member-link:hover {
    transform: translateX(5px);
}

/* Coverage Section */
.coverage-section {
    background: var(--bg-light);
}

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

.coverage-item {
    text-align: center;
    padding: 2rem;
    border: 2px solid var(--primary-color);
    border-radius: 10px;
    transition: all 0.3s ease;
}

.coverage-item:hover {
    background: var(--primary-color);
    color: var(--text-light);
    transform: scale(1.05);
}

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

.coverage-item h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.coverage-item p {
    opacity: 0.8;
}

/* Credentials Section */
.credentials-section {
    background: linear-gradient(135deg, var(--secondary-color) 0%, var(--primary-color) 100%);
    color: var(--text-light);
}

.credentials-section .section-title {
    color: var(--text-light);
}

.credentials-text {
    text-align: center;
    font-size: 1.2rem;
    max-width: 700px;
    margin: 0 auto 2rem;
    opacity: 0.9;
}

.credentials-goals {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 1rem;
    margin-top: 2rem;
}

.goal-item {
    background: rgba(255,255,255,0.1);
    padding: 1rem 2rem;
    border-radius: 30px;
    font-weight: 600;
    letter-spacing: 1px;
}

/* Contact Section */
.contact-section {
    background: var(--bg-light);
    text-align: center;
}

.contact-text {
    font-size: 1.2rem;
    max-width: 700px;
    margin: 0 auto 2rem;
    opacity: 0.8;
}

.contact-info {
    margin-top: 3rem;
}

.contact-button {
    display: inline-block;
    background: var(--accent-color);
    color: white;
    padding: 1rem 2rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    margin-bottom: 1.5rem;
}

.contact-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(233,69,96,0.4);
}

.social-links {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1rem;
}

.social-links a {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
}

.social-links a:hover {
    color: var(--accent-color);
}

/* Footer */
.footer {
    background: var(--primary-color);
    color: var(--text-light);
    text-align: center;
    padding: 2rem 0;
}

.footer p {
    opacity: 0.7;
}

/* Responsive */
@media (max-width: 768px) {
    /* Container */
    .container {
        padding: 0 15px;
    }
    
    /* Navigation */
    .navbar {
        padding: 0.8rem 0;
    }
    
    .navbar .container {
        flex-direction: column;
        gap: 1rem;
    }
    
    .nav-brand h1 {
        font-size: 1.2rem;
    }
    
    .nav-menu {
        flex-wrap: wrap;
        justify-content: center;
        gap: 1rem;
    }
    
    .nav-menu a {
        font-size: 0.75rem;
    }
    
    /* Hero */
    .hero {
        height: 60vh;
    }
    
    .hero-title {
        font-size: 2.5rem;
        margin-bottom: 0.8rem;
    }
    
    .hero-subtitle {
        font-size: 1rem;
        margin-bottom: 1.5rem;
    }
    
    .hero-tagline {
        font-size: 0.85rem;
    }
    
    /* Sections */
    section {
        padding: 3rem 0;
    }
    
    .section-title {
        font-size: 1.8rem;
        margin-bottom: 2rem;
    }
    
    /* About */
    .about-text {
        font-size: 1rem;
        padding: 0 1rem;
    }
    
    .stats {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .stat h3 {
        font-size: 2.5rem;
    }
    
    /* Team */
    .team-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .team-member {
        padding: 1.5rem;
    }
    
    .placeholder-img {
        width: 120px;
        height: 120px;
        font-size: 3rem;
    }
    
    .team-member h3 {
        font-size: 1.3rem;
    }
    
    .team-member h4 {
        font-size: 0.9rem;
    }
    
    .team-member p {
        font-size: 0.9rem;
    }
    
    /* Coverage */
    .coverage-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .coverage-item {
        padding: 1.5rem;
    }
    
    .coverage-icon {
        font-size: 2.5rem;
    }
    
    .coverage-item h3 {
        font-size: 1.3rem;
    }
    
    /* Credentials */
    .credentials-text {
        font-size: 1rem;
        padding: 0 1rem;
    }
    
    .credentials-goals {
        gap: 0.8rem;
    }
    
    .goal-item {
        padding: 0.8rem 1.5rem;
        font-size: 0.9rem;
    }
    
    /* Contact */
    .contact-text {
        font-size: 1rem;
        padding: 0 1rem;
    }
    
    .contact-button {
        padding: 0.9rem 1.8rem;
        font-size: 1rem;
    }
    
    /* Footer */
    .footer {
        padding: 1.5rem 0;
    }
    
    .footer p {
        font-size: 0.85rem;
    }
}

@media (max-width: 480px) {
    .nav-brand h1 {
        font-size: 1rem;
        letter-spacing: 1px;
    }
    
    .nav-menu a {
        font-size: 0.7rem;
        letter-spacing: 0.5px;
    }
    
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-subtitle {
        font-size: 0.9rem;
    }
    
    .hero-tagline {
        font-size: 0.75rem;
    }
    
    .section-title {
        font-size: 1.5rem;
    }
    
    .about-text {
        font-size: 0.95rem;
    }
    
    .stat h3 {
        font-size: 2rem;
    }
    
    .placeholder-img {
        width: 100px;
        height: 100px;
        font-size: 2.5rem;
    }
}