:root {
    --primary: hsl(210, 100%, 30%);
    --primary-light: hsl(210, 100%, 45%);
    --secondary: hsl(180, 100%, 25%);
    --accent: hsl(140, 50%, 45%);
    --bg: hsl(210, 30%, 98%);
    --text: hsl(210, 20%, 20%);
    --white: #ffffff;
    --glass: rgba(255, 255, 255, 0.7);
    --glass-border: rgba(255, 255, 255, 0.3);
    --shadow: 0 8px 32px 0 rgba(31, 38, 135, 0.1);
}

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

body {
    font-family: 'Outfit', sans-serif;
    background-color: var(--bg);
    color: var(--text);
    line-height: 1.6;
    overflow-x: hidden;
}

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

/* Navbar */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: var(--glass);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--glass-border);
    z-index: 1000;
    padding: 1rem 0;
    transition: 0.3s;
}

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

.logo {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary);
}

.logo span {
    color: var(--accent);
    font-weight: 300;
}

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

.nav-links a {
    text-decoration: none;
    color: var(--text);
    font-weight: 500;
    transition: 0.3s;
}

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

/* Hero Section */
.hero {
    padding: 180px 0 100px;
    background: linear-gradient(135deg, hsl(210, 100%, 95%) 0%, hsl(180, 100%, 95%) 100%);
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, var(--primary-light) 0%, transparent 70%);
    opacity: 0.1;
    z-index: 0;
}

.hero-content {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 4rem;
    align-items: center;
    position: relative;
    z-index: 1;
}

.hero-text h1 {
    font-size: 4rem;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    color: var(--primary);
}

.hero-text h1 span {
    background: linear-gradient(to right, var(--primary), var(--accent));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero-text p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    opacity: 0.8;
}

.hero-btns {
    display: flex;
    gap: 1rem;
}

.btn {
    padding: 0.8rem 2rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: 0.3s transform, 0.3s background;
    display: inline-block;
}

.btn:hover {
    transform: translateY(-3px);
}

.btn-primary {
    background: var(--primary);
    color: var(--white);
}

.btn-secondary {
    background: var(--white);
    color: var(--primary);
    border: 2px solid var(--primary);
}

.hero-image {
    perspective: 1000px;
}

.map-container {
    background: var(--white);
    padding: 1rem;
    border-radius: 20px;
    box-shadow: var(--shadow);
    transform: rotateY(-15deg) rotateX(10deg);
    transition: 0.5s;
    border: 1px solid var(--glass-border);
}

.map-container:hover {
    transform: rotateY(0) rotateX(0);
}

.map-container img {
    width: 100%;
    border-radius: 15px;
    display: block;
}

/* Sections */
.section {
    padding: 100px 0;
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-header h2 {
    font-size: 2.5rem;
    color: var(--primary);
    margin-bottom: 1rem;
}

.underline {
    width: 60px;
    height: 4px;
    background: var(--accent);
    margin: 0 auto;
    border-radius: 2px;
}

/* About Grid */
.about-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.about-card {
    background: var(--white);
    padding: 2.5rem;
    border-radius: 20px;
    box-shadow: var(--shadow);
    transition: 0.3s;
    border: 1px solid transparent;
}

.about-card:hover {
    border-color: var(--accent);
    transform: translateY(-10px);
}

.about-card .icon {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
}

/* Federation Grid */
.fed-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
}

.fed-card {
    padding: 3rem;
    border-radius: 24px;
    color: var(--white);
    position: relative;
    overflow: hidden;
    transition: 0.4s;
    cursor: pointer;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    min-height: 350px;
}

.fed-logo {
    position: absolute;
    top: 2rem;
    left: 2rem;
    font-size: 1.2rem;
    font-weight: 700;
    opacity: 0.8;
    background: rgba(0,0,0,0.1);
    padding: 0.5rem 1rem;
    border-radius: 8px;
    letter-spacing: 1px;
}

.fed-card::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 200px;
    height: 200px;
    background: rgba(255,255,255,0.1);
    border-radius: 50%;
    transition: 0.4s;
}

.fed-card:hover::before {
    transform: scale(1.5);
}

.fed-card h3 {
    font-size: 2rem;
    margin-bottom: 0.5rem;
}

.fed-card .subtitle {
    font-weight: 300;
    margin-bottom: 1.5rem;
    opacity: 0.9;
    font-size: 1.1rem;
}

.mbpcc { background: linear-gradient(135deg, #1e3c72 0%, #2a5298 100%); }
.lpc { background: linear-gradient(135deg, #00b09b 0%, #96c93d 100%); }
.owls { background: linear-gradient(135deg, #6a11cb 0%, #2575fc 100%); }
.ela { background: linear-gradient(135deg, #ff9966 0%, #ff5e62 100%); }

/* Strategy Section */
.strategy-section {
    background: var(--white);
}

.strategy-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.strategy-text h2 {
    font-size: 2.5rem;
    color: var(--primary);
    margin-bottom: 1.5rem;
}

.strategy-text ul {
    list-style: none;
    margin-top: 2rem;
}

.strategy-text li {
    margin-bottom: 1.5rem;
    padding-left: 2rem;
    position: relative;
}

.strategy-text li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--accent);
    font-weight: 700;
}

.strategy-image {
    height: 400px;
    background: url('https://images.unsplash.com/photo-1576091160550-2173dba999ef?ixlib=rb-1.2.1&auto=format&fit=crop&w=1000&q=80') center/cover;
    border-radius: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem;
}

.glass-box {
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(15px);
    padding: 2rem;
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: var(--white);
    text-align: center;
}

/* Footer */
footer {
    background: var(--primary);
    color: var(--white);
    padding: 80px 0 40px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1.5fr;
    gap: 4rem;
    margin-bottom: 4rem;
}

.footer-info .logo {
    color: var(--white);
    margin-bottom: 1.5rem;
}

.footer-links h4, .footer-contact h4 {
    margin-bottom: 1.5rem;
}

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

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

.footer-links a {
    color: var(--white);
    text-decoration: none;
    opacity: 0.7;
    transition: 0.3s;
}

.footer-links a:hover { opacity: 1; }

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

/* Responsive */
@media (max-width: 968px) {
    .hero-content, .strategy-content, .about-grid, .footer-grid {
        grid-template-columns: 1fr;
    }
    
    .hero-text h1 { font-size: 3rem; }
    
    .hero-image { order: -1; }
    
    .fed-grid { grid-template-columns: 1fr; }
}
