:root {
    --primary: #00A86B; /* Emerald Green */
    --primary-deep: #004d32;
    --primary-glow: rgba(0, 168, 107, 0.4);
    --gold: #D4AF37; /* Champagne Gold for Luxury accent */
    --gold-glow: rgba(212, 175, 55, 0.2);
    --bg-dark: #030508;
    --bg-card: rgba(10, 14, 20, 0.95);
    --text-main: #ffffff;
    --text-muted: #8a949e;
    --border: rgba(255, 255, 255, 0.08);
    --border-bright: rgba(0, 168, 107, 0.3);
    --font-heading: 'Playfair Display', serif;
    --font-body: 'Inter', sans-serif;
}

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

body {
    background-color: var(--bg-dark);
    color: var(--text-main);
    font-family: var(--font-body);
    line-height: 1.8;
    overflow-x: hidden;
}

/* Background Gradients */
body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 5% 5%, var(--primary-deep) 0%, transparent 40%),
                radial-gradient(circle at 95% 95%, var(--primary-deep) 0%, transparent 40%);
    opacity: 0.15;
    z-index: -2;
    pointer-events: none;
}

.container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 24px;
}

/* Typography */
h1, h2, h3, h4 {
    font-family: var(--font-heading);
    font-weight: 700;
    letter-spacing: -0.01em;
}

h1 { font-size: 4rem; line-height: 1.1; margin-bottom: 30px; text-transform: uppercase; }
h2 { font-size: 2.8rem; margin-bottom: 40px; }
h3 { font-size: 2rem; margin-bottom: 20px; }

.gradient-text {
    background: linear-gradient(135deg, #fff 40%, var(--primary) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.highlight { color: var(--primary); }
.gold-text { color: var(--gold); }

/* Sections */
section { padding: 120px 0; }

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 22px 50px;
    border-radius: 4px;
    text-decoration: none;
    font-weight: 700;
    font-size: 0.9rem;
    letter-spacing: 2px;
    transition: all 0.5s cubic-bezier(0.19, 1, 0.22, 1);
    text-transform: uppercase;
    position: relative;
    cursor: pointer;
    border: none;
}

.btn-primary {
    background: var(--primary);
    color: #000;
    box-shadow: 0 10px 30px var(--primary-glow);
}

.btn-primary:hover {
    transform: translateY(-5px);
    background: #fff;
    box-shadow: 0 15px 40px rgba(255,255,255,0.2);
}

/* Highlight Bar */
.highlight-bar {
    background: rgba(255,255,255,0.03);
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
    padding: 60px 0;
}

.highlight-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 40px;
    text-align: center;
}

.highlight-item h4 { font-size: 2.2rem; color: var(--primary); margin-bottom: 5px; }
.highlight-item p { font-size: 0.85rem; color: var(--text-muted); text-transform: uppercase; letter-spacing: 1px; }

/* Pillars & Cards */
.pillar-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.glass-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    padding: 40px;
    transition: all 0.4s ease;
}

.glass-card:hover { border-color: var(--primary); }

/* Accordion */
.accordion {
    margin-top: 40px;
}

.acc-item {
    border-bottom: 1px solid var(--border);
    margin-bottom: 10px;
}

.acc-header {
    width: 100%;
    padding: 25px 0;
    background: none;
    border: none;
    color: #fff;
    text-align: left;
    font-family: var(--font-heading);
    font-size: 1.4rem;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.acc-header::after {
    content: '+';
    font-family: var(--font-body);
    font-size: 1.5rem;
    color: var(--primary);
}

.acc-item.opened .acc-header::after { content: '-'; }

.acc-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.5s ease-out;
}

.acc-item.opened .acc-content { max-height: 1000px; padding-bottom: 30px; }

/* Modal */
.modal-overlay {
    position: fixed;
    top: 0; left: 0; width: 100%; height: 100%;
    background: rgba(0,0,0,0.9);
    backdrop-filter: blur(10px);
    z-index: 2000;
    display: none;
    align-items: center;
    justify-content: center;
}

.modal-overlay.active { display: flex; }

.modal-content {
    background: var(--bg-dark);
    padding: 40px;
    max-width: 650px;
    width: 90%;
    border: 1px solid var(--primary);
    position: relative;
    max-height: 90vh;
    overflow-y: auto;
}

.close-modal {
    position: absolute;
    top: 20px; right: 20px;
    color: #fff;
    font-size: 2rem;
    cursor: pointer;
}

/* Image Grids */
.image-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin: 40px 0;
}

.image-placeholder {
    width: 100%;
    height: 300px;
    background: #111;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--border);
    color: var(--text-muted);
}

/* Helper Utilities */
.text-center { text-align: center; }
.mb-20 { margin-bottom: 20px; }
.mb-60 { margin-bottom: 60px; }
.mt-40 { margin-top: 40px; }

/* Form Styles */
.qualification-form label {
    display: block;
    font-size: 0.9rem;
    color: var(--gold);
    margin-bottom: 10px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.qualification-form input, 
.qualification-form select, 
.qualification-form textarea {
    width: 100%;
    padding: 15px;
    background: rgba(255,255,255,0.05);
    border: 1px solid var(--border);
    color: #fff;
    margin-bottom: 25px;
    font-family: var(--font-body);
}

.qualification-form input:focus { border-color: var(--primary); outline: none; }

@media (max-width: 768px) {
    h1 { font-size: 2.8rem; }
    h2 { font-size: 2.2rem; }
    .highlight-grid { grid-template-columns: 1fr 1fr; }
}
