:root {
    --teal: #00AFAB;
    --magenta: #E6007E;
    --yellow: #FFD400;
    --green: #8CC63F;
    --dark: #1A1A1A;
    --light: #FFFFFF;
    --bg-soft: #F4F7F6;
    --font-main: 'Inter', sans-serif;
    --font-heading: 'Sora', sans-serif;
    --shadow: 0 10px 30px rgba(0,0,0,0.08);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-main);
    color: var(--dark);
    background-color: var(--light);
    line-height: 1.6;
}

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

/* Navbar */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    height: 80px;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    display: flex;
    align-items: center;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.nav-container {
    width: 100%;
    max-width: 1240px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-logo {
    height: 50px;
    object-fit: contain;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 30px;
    align-items: center;
}

.nav-links a {
    text-decoration: none;
    color: var(--dark);
    font-weight: 600;
    font-size: 14px;
    transition: color 0.3s;
}

.nav-links a:hover {
    color: var(--teal);
}

.btn-primary-nav {
    background-color: var(--teal);
    color: #fff !important;
    padding: 10px 20px;
    border-radius: 50px;
}

.mobile-menu-btn {
    display: none;
    font-size: 24px;
    background: none;
    border: none;
    cursor: pointer;
}

/* Hero Section */
.hero {
    height: 85vh;
    min-height: 600px;
    background: linear-gradient(135deg, #001211 0%, #004d4b 100%), 
                url('https://images.unsplash.com/photo-1489599849927-2ee91cede3ba?q=80&w=1200') center/cover;
    background-blend-mode: overlay;
    display: flex;
    align-items: center;
    position: relative;
    padding-top: 80px;
    color: #fff;
    text-align: center;
    overflow: hidden;
}

.hero-content {
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 20px;
    z-index: 2;
}

.badge {
    background: var(--magenta);
    padding: 5px 15px;
    border-radius: 50px;
    font-size: 12px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 20px;
    display: inline-block;
}

.hero h1 {
    font-family: var(--font-heading);
    font-size: clamp(32px, 6vw, 64px);
    line-height: 1.1;
    margin-bottom: 20px;
    font-weight: 800;
}

.text-gradient {
    background: linear-gradient(90deg, var(--teal), #5affec);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero p {
    font-size: clamp(16px, 2vw, 20px);
    max-width: 700px;
    margin: 0 auto 40px;
    opacity: 0.9;
    font-weight: 300;
}

.hero-actions {
    display: flex;
    gap: 20px;
    justify-content: center;
}

.btn {
    padding: 15px 30px;
    border-radius: 12px;
    text-decoration: none;
    font-weight: 700;
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    display: inline-block;
}

.btn-main {
    background-color: var(--teal);
    color: #fff;
    box-shadow: 0 10px 20px rgba(0, 175, 171, 0.3);
}

.btn-main:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 175, 171, 0.4);
}

.btn-outline {
    border: 2px solid #fff;
    color: #fff;
}

.btn-outline:hover {
    background: #fff;
    color: var(--teal);
}

/* Stats Bar */
.stats-bar {
    background: var(--light);
    box-shadow: var(--shadow);
    max-width: 900px;
    margin: -50px auto 0;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    padding: 30px;
    border-radius: 20px;
    z-index: 10;
    position: relative;
    text-align: center;
}

.stat-item h3 {
    font-family: var(--font-heading);
    font-size: 32px;
    color: var(--magenta);
}

.stat-item p {
    font-size: 13px;
    color: var(--text-secondary);
    font-weight: 600;
}

/* Sections Common */
.services-section, .events-section {
    padding: 100px 0;
}

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

.section-header h2 {
    font-family: var(--font-heading);
    font-size: 36px;
    margin-bottom: 10px;
}

.section-header p {
    color: #666;
}

.text-teal { color: var(--teal); }
.text-magenta { color: var(--magenta); }

/* About Us Section */
.about-section {
    padding: 100px 0;
    background-color: var(--light);
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 80px;
    align-items: center;
}

.about-image {
    position: relative;
}

.profile-photo {
    width: 100%;
    border-radius: 40px;
    box-shadow: 20px 20px 0px var(--teal);
}

.about-text-content h2 {
    font-size: 42px;
    margin-bottom: 25px;
    font-family: var(--font-heading);
}

.dynamic-text {
    white-space: pre-line;
    color: #444;
    font-size: 18px;
    line-height: 1.8;
}

/* Services Grid */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.service-card {
    background: var(--bg-soft);
    padding: 50px 30px;
    border-radius: 30px;
    text-align: center;
    transition: transform 0.3s;
}

.service-card:hover {
    transform: translateY(-10px);
}

.service-card .icon {
    font-size: 50px;
    margin-bottom: 20px;
}

.service-card h3 {
    margin-bottom: 15px;
    font-family: var(--font-heading);
}

/* Events Grid */
.events-container {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 30px;
}

.post-item {
    background: #fff;
    border-radius: 24px;
    overflow: hidden;
    position: relative;
    box-shadow: var(--shadow);
    cursor: pointer;
    aspect-ratio: 4/5;
}

.post-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s;
}

.post-item .post-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 40px 20px 20px;
    background: linear-gradient(to top, rgba(0,0,0,0.8), transparent);
    color: #fff;
    opacity: 1;
}

.post-item:hover img {
    transform: scale(1.1);
}

/* Footer & Form */
.main-footer {
    background: var(--dark);
    color: #fff;
    padding: 80px 0 20px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 60px;
    margin-bottom: 60px;
}

.footer-logo {
    height: 60px;
    margin-bottom: 20px;
    filter: brightness(0) invert(1);
}

.footer-brand p {
    max-width: 300px;
    margin-bottom: 30px;
}

.social-links {
    display: flex;
    gap: 20px;
}

.social-links a {
    color: #fff;
    font-size: 24px;
}

.footer-form {
    background: rgba(255,255,255,0.05);
    padding: 40px;
    border-radius: 24px;
}

.footer-form input {
    width: 100%;
    padding: 15px;
    background: rgba(255,255,255,0.1);
    border: 1px solid rgba(255,255,255,0.2);
    border-radius: 12px;
    color: #fff;
    margin-bottom: 15px;
}

.btn-submit {
    width: 100%;
    background-color: var(--teal);
    color: #fff;
    border: none;
    cursor: pointer;
}

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.1);
    padding-top: 20px;
    text-align: center;
    font-size: 13px;
    opacity: 0.6;
}

/* Floating Elements */
.whatsapp-fixed {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background: #25D366;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    color: #fff;
    font-size: 30px;
    box-shadow: 0 10px 20px rgba(0,0,0,0.2);
    z-index: 1000;
}

/* Mobile Rules */
@media (max-width: 768px) {
    .nav-links { display: none; }
    .mobile-menu-btn { display: block; }
    
    .hero { height: auto; padding: 120px 0 60px; }
    .hero h1 { font-size: 36px; }
    .hero p { font-size: 16px; margin-bottom: 25px; }
    .hero-actions { flex-direction: column; gap: 10px; }
    .btn { width: 100%; text-align: center; }

    .stats-bar { 
        grid-template-columns: 1fr; 
        gap: 20px; 
        width: calc(100% - 40px); 
        margin-top: -30px;
    }

    .about-grid { 
        grid-template-columns: 1fr; 
        gap: 30px; 
        text-align: center;
    }

    .about-text-content h2 { font-size: 32px; }
    .profile-photo { max-width: 300px; margin: 0 auto; display: block; }

    .footer-grid { grid-template-columns: 1fr; gap: 40px; }
    .events-container { grid-template-columns: 1fr; }
}
