:root {
    --color-bg-dark: #0f172a;
    --color-bg-darker: #1a2742;
    --color-accent-gold: #3b82f6;
    --color-accent-hover: #2563eb;
    --color-text-main: #f1f5f9;
    --color-text-muted: #cbd5e1;
    --color-card-bg: rgba(30, 41, 59, 0.7);
    --font-heading: 'Outfit', sans-serif;
    --font-body: 'Roboto', sans-serif;
}

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

html {
    scroll-behavior: smooth;
}

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

h1, h2, h3, .logo {
    font-family: var(--font-heading);
}

/* Navbar */
.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem 5%;
    background-color: rgba(15, 23, 42, 0.95);
    backdrop-filter: blur(10px);
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    border-bottom: 1px solid rgba(59, 130, 246, 0.1);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

.logo {
    font-size: 1.8rem;
    font-weight: 800;
    color: var(--color-text-main);
}

.logo span {
    color: var(--color-accent-gold);
}

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

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

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

/* Buttons */
.btn-primary, .btn-accent, .btn-outline {
    padding: 0.75rem 1.5rem;
    border-radius: 6px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    border: none;
    font-family: var(--font-heading);
}

.btn-primary {
    background-color: transparent;
    color: var(--color-text-main);
    border: 1px solid var(--color-text-muted);
}

.btn-primary:hover {
    background-color: rgba(26, 58, 82, 0.1);
}

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

.btn-accent:hover {
    background-color: var(--color-accent-hover);
    transform: translateY(-2px);
}

.btn-outline {
    background-color: transparent;
    border: 1px solid var(--color-accent-gold);
    color: var(--color-accent-gold);
}

.btn-outline:hover {
    background-color: var(--color-accent-gold);
    color: white;
}

.w-100 {
    width: 100%;
}

/* Hero Section */
.hero {
    height: 100vh;
    background-image: url('assets/hero.png');
    background-size: cover;
    background-position: center;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 0 20px;
}

.hero-overlay {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background: linear-gradient(to bottom, rgba(26, 58, 82, 0.6) 0%, rgba(26, 58, 82, 0.5) 100%);
}

.hero-content {
    position: relative;
    z-index: 1;
    max-width: 800px;
}

.hero h1 {
    font-size: 4rem;
    margin-bottom: 1rem;
    line-height: 1.1;
    color: transparent;
    background: linear-gradient(135deg, #ffffff 0%, var(--color-accent-gold) 100%);
    -webkit-background-clip: text;
    background-clip: text;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.4);
}

.hero p {
    font-size: 1.25rem;
    color: #ffffff;
    margin-bottom: 2rem;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.6);
}

/* Page Hero */
.page-hero {
    height: 50vh;
    background-image: url('assets/hero.png');
    background-size: cover;
    background-position: center;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 0 20px;
}

.page-hero .hero-overlay {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background: linear-gradient(to bottom, rgba(26, 58, 82, 0.6) 0%, rgba(26, 58, 82, 0.5) 100%);
}

.page-hero .hero-content {
    position: relative;
    z-index: 1;
    max-width: 800px;
}

.page-hero h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
    line-height: 1.1;
    color: transparent;
    background: linear-gradient(135deg, #ffffff 0%, var(--color-accent-gold) 100%);
    -webkit-background-clip: text;
    background-clip: text;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.4);
}

.page-hero p {
    font-size: 1.1rem;
    color: #ffffff;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.6);
}

/* Main Content */
.main-content {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0;
}

.content-section {
    padding: 4rem 5%;
}

.content-section.alt-bg {
    background-color: var(--color-bg-darker);
}

.section-title {
    text-align: center;
    margin-bottom: 3rem;
}

.section-title h2 {
    font-size: 2.2rem;
    margin-bottom: 0.5rem;
    color: var(--color-accent-gold);
}

.section-title p {
    color: var(--color-text-muted);
    font-size: 1rem;
}

.content-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
}

.content-text {
    font-size: 1rem;
    line-height: 1.8;
    color: var(--color-text-muted);
}

.content-text p {
    margin-bottom: 1.5rem;
}

/* Values Grid */
.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.value-card {
    background: var(--color-card-bg);
    border: 1px solid rgba(59, 130, 246, 0.2);
    border-radius: 12px;
    padding: 2rem;
    text-align: center;
    transition: all 0.3s;
}

.value-card:hover {
    transform: translateY(-5px);
    border-color: rgba(59, 130, 246, 0.4);
}

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

.value-card h3 {
    font-size: 1.3rem;
    margin-bottom: 0.75rem;
    color: var(--color-accent-gold);
}

.value-card p {
    color: var(--color-text-muted);
}

/* Stats Grid Large */
.stats-grid-large {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 2rem;
}

.stat-card-large {
    background: var(--color-card-bg);
    border: 1px solid rgba(59, 130, 246, 0.2);
    border-radius: 12px;
    padding: 2rem;
    text-align: center;
    transition: all 0.3s;
}

.stat-card-large:hover {
    transform: translateY(-5px);
    border-color: rgba(59, 130, 246, 0.4);
    box-shadow: 0 10px 30px rgba(59, 130, 246, 0.15);
}

.stat-card-large .stat-number {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--color-accent-gold);
    margin-bottom: 0.5rem;
}

.stat-card-large .stat-label {
    font-size: 1rem;
    font-weight: 600;
    color: var(--color-text-main);
    margin-bottom: 0.5rem;
}

.stat-card-large p {
    color: var(--color-text-muted);
    font-size: 0.9rem;
}

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

.team-member {
    background: var(--color-card-bg);
    border: 1px solid rgba(100, 150, 180, 0.2);
    border-radius: 12px;
    padding: 2rem;
    text-align: center;
    transition: all 0.3s;
}

.team-member:hover {
    transform: translateY(-5px);
    border-color: rgba(0, 102, 204, 0.4);
}

.member-avatar {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    color: white;
    font-size: 1.3rem;
    margin: 0 auto 1rem;
}

.team-member h3 {
    font-size: 1.1rem;
    margin-bottom: 0.25rem;
    color: var(--color-text-main);
}

.team-member .role {
    color: var(--color-accent-gold);
    font-weight: 600;
    font-size: 0.9rem;
    margin-bottom: 0.75rem;
}

.team-member .bio {
    color: var(--color-text-muted);
    font-size: 0.9rem;
    line-height: 1.6;
}

/* Team Placeholder */
.team-placeholder {
    background: var(--color-card-bg);
    border: 2px dashed rgba(59, 130, 246, 0.3);
    border-radius: 12px;
    padding: 4rem 2rem;
    text-align: center;
    min-height: 300px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.team-placeholder p {
    color: var(--color-text-muted);
    font-size: 1.1rem;
    font-style: italic;
}

/* Features List */
.features-list {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
}

.feature-item {
    display: grid;
    grid-template-columns: 100px 1fr;
    gap: 2rem;
    align-items: flex-start;
    background: var(--color-card-bg);
    border: 1px solid rgba(100, 150, 180, 0.2);
    border-radius: 12px;
    padding: 2rem;
}

.feature-number {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--color-accent-gold);
}

.feature-content h3 {
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
    color: var(--color-text-main);
}

.feature-content p {
    color: var(--color-text-muted);
    line-height: 1.6;
}

/* CTA Section */
.cta-section {
    background: linear-gradient(135deg, var(--color-accent-gold) 0%, var(--color-accent-hover) 100%);
    padding: 4rem 5%;
    text-align: center;
    border-radius: 12px;
    margin: 4rem 5%;
}

.cta-section h2 {
    font-size: 2rem;
    color: white;
    margin-bottom: 0.5rem;
}

.cta-section p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.1rem;
}

/* Course Meta */
.course-meta {
    display: flex;
    gap: 1rem;
    margin: 1rem 0;
    font-size: 0.85rem;
    color: var(--color-text-muted);
    flex-wrap: wrap;
}

.meta-item {
    display: flex;
    align-items: center;
    gap: 0.25rem;
}

/* Course Card Detailed */
.course-card.detailed {
    height: 100%;
}

/* Highlights Grid */
.highlights-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
}

.highlight-box {
    background: var(--color-card-bg);
    border: 1px solid rgba(100, 150, 180, 0.2);
    border-radius: 12px;
    padding: 1.5rem;
    text-align: center;
    transition: all 0.3s;
}

.highlight-box:hover {
    transform: translateY(-5px);
    border-color: rgba(0, 102, 204, 0.4);
}

.highlight-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.highlight-box h3 {
    font-size: 1.05rem;
    margin-bottom: 0.5rem;
    color: var(--color-text-main);
}

.highlight-box p {
    color: var(--color-text-muted);
    font-size: 0.9rem;
}

/* Contact Form */
.contact-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    margin-top: 2rem;
}

.contact-form-wrapper {
    background: var(--color-card-bg);
    border: 1px solid rgba(59, 130, 246, 0.2);
    border-radius: 12px;
    padding: 2.5rem;
    transition: all 0.3s;
}

.contact-form-wrapper:hover {
    border-color: rgba(59, 130, 246, 0.4);
    box-shadow: 0 8px 24px rgba(59, 130, 246, 0.1);
}

.form-header {
    margin-bottom: 2rem;
}

.form-header h3 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
    color: var(--color-text-main);
}

.form-header p {
    color: var(--color-text-muted);
    font-size: 0.95rem;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-size: 0.9rem;
    color: var(--color-text-muted);
    font-weight: 500;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 0.85rem;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(59, 130, 246, 0.3);
    border-radius: 6px;
    color: var(--color-text-main);
    font-family: var(--font-body);
    font-size: 0.95rem;
    transition: all 0.3s;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: rgba(203, 213, 225, 0.5);
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--color-accent-gold);
    background: rgba(59, 130, 246, 0.05);
    box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.1);
}

.btn-submit {
    padding: 1rem;
    font-size: 1rem;
    margin-top: 0.5rem;
}

.form-note {
    font-size: 0.8rem;
    color: var(--color-text-muted);
    text-align: center;
    margin-top: 1rem;
}

/* Contact Info */
.contact-info-wrapper {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.info-header {
    margin-bottom: 0.5rem;
}

.info-header h3 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
    color: var(--color-text-main);
}

.info-header p {
    color: var(--color-text-muted);
    font-size: 0.95rem;
}

.info-box {
    background: var(--color-card-bg);
    border: 1px solid rgba(59, 130, 246, 0.2);
    border-radius: 12px;
    padding: 1.5rem;
    display: flex;
    gap: 1.5rem;
    align-items: flex-start;
    transition: all 0.3s;
}

.info-box:hover {
    border-color: rgba(59, 130, 246, 0.4);
    box-shadow: 0 4px 16px rgba(59, 130, 246, 0.1);
    transform: translateY(-2px);
}

.info-icon {
    font-size: 1.8rem;
    min-width: 50px;
    text-align: center;
}

.info-content h4 {
    font-size: 1.1rem;
    margin-bottom: 0.75rem;
    color: var(--color-text-main);
}

.info-content p {
    color: var(--color-text-muted);
    font-size: 0.95rem;
    margin-bottom: 0.5rem;
}

.info-content p:last-child {
    margin-bottom: 0;
}

.info-content a {
    color: var(--color-accent-gold);
    text-decoration: none;
    transition: color 0.3s;
}

.info-content a:hover {
    color: var(--color-text-main);
    text-decoration: underline;
}

.small-text {
    font-size: 0.85rem;
    color: rgba(203, 213, 225, 0.7);
    margin-bottom: 0.75rem !important;
}

/* Social Links */
.social-links-enhanced {
    background: var(--color-card-bg);
    border: 1px solid rgba(59, 130, 246, 0.2);
    border-radius: 12px;
    padding: 1.5rem;
    text-align: center;
}

.social-links-enhanced h4 {
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
    color: var(--color-text-main);
}

.social-links-enhanced p {
    color: var(--color-text-muted);
    font-size: 0.9rem;
    margin-bottom: 1.5rem;
}

.social-icons-contact {
    display: flex;
    gap: 1rem;
    justify-content: center;
}

.social-icon-contact {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 45px;
    height: 45px;
    background: rgba(59, 130, 246, 0.1);
    border: 1px solid rgba(59, 130, 246, 0.3);
    border-radius: 6px;
    color: var(--color-accent-gold);
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s;
}

.social-icon-contact:hover {
    background: var(--color-accent-gold);
    color: white;
    transform: translateY(-3px);
    box-shadow: 0 6px 16px rgba(59, 130, 246, 0.3);
}

/* Responsive Contact */
@media (max-width: 768px) {
    .contact-container {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .contact-form-wrapper,
    .info-box {
        padding: 1.5rem;
    }

    .form-header h3,
    .info-header h3 {
        font-size: 1.3rem;
    }
}

/* Filter Container */
.filter-container {
    margin-bottom: 2rem;
}

.filter-container h2 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: var(--color-text-main);
}

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

.section-title h2 {
    font-size: 2.5rem;
    margin-bottom: 0.5rem;
    color: var(--color-accent-gold);
}

.section-title p {
    color: var(--color-text-muted);
    font-size: 1.1rem;
}

/* Features */
.features {
    background-color: var(--color-bg-darker);
}

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

.feature-card {
    background: var(--color-card-bg);
    padding: 2.5rem;
    border-radius: 12px;
    border: 1px solid rgba(100, 150, 180, 0.2);
    transition: transform 0.3s;
}

.feature-card:hover {
    transform: translateY(-5px);
    border-color: rgba(0, 102, 204, 0.4);
}

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

.feature-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.feature-card p {
    color: var(--color-text-muted);
}

/* Courses */
.course-filters {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 3rem;
}

.filter-btn {
    background: transparent;
    border: 2px solid var(--color-text-muted);
    color: var(--color-text-main);
    padding: 0.75rem 2rem;
    border-radius: 25px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-weight: 600;
    font-size: 0.95rem;
    letter-spacing: 0.5px;
    position: relative;
    overflow: hidden;
}

.filter-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--color-accent-gold), var(--color-accent-hover));
    transition: left 0.3s ease;
    z-index: -1;
}

.filter-btn:hover::before {
    left: 0;
}

.filter-btn.active, .filter-btn:hover {
    background: var(--color-accent-gold);
    color: var(--color-bg-darker);
    border-color: var(--color-accent-gold);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(251, 191, 36, 0.3);
}

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

.course-card {
    background: var(--color-card-bg);
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid rgba(59, 130, 246, 0.2);
    transition: all 0.3s;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.course-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(59, 130, 246, 0.2);
    border-color: rgba(59, 130, 246, 0.4);
}

.card-image {
    height: 250px;
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background-color: rgba(255, 255, 255, 0.05);
    position: relative;
}

.card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.card-content {
    padding: 1.5rem;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.category-badge {
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.3) 0%, rgba(59, 130, 246, 0.1) 100%);
    color: #60a5fa;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    display: inline-block;
    margin-bottom: 1rem;
    letter-spacing: 0.5px;
    border: 1px solid rgba(96, 165, 250, 0.4);
    box-shadow: 0 4px 12px rgba(59, 130, 246, 0.15);
    transition: all 0.3s ease;
}

.hse-badge {
    background: linear-gradient(135deg, rgba(34, 197, 94, 0.3) 0%, rgba(34, 197, 94, 0.1) 100%);
    color: #4ade80;
    border-color: rgba(74, 222, 128, 0.4);
    box-shadow: 0 4px 12px rgba(34, 197, 94, 0.15);
}

.qhse-badge {
    background: linear-gradient(135deg, rgba(34, 197, 94, 0.3) 0%, rgba(34, 197, 94, 0.1) 100%);
    color: #4ade80;
    border-color: rgba(74, 222, 128, 0.4);
    box-shadow: 0 4px 12px rgba(34, 197, 94, 0.15);
}

.drilling-badge {
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.3) 0%, rgba(59, 130, 246, 0.1) 100%);
    color: #60a5fa;
    border-color: rgba(96, 165, 250, 0.4);
    box-shadow: 0 4px 12px rgba(59, 130, 246, 0.15);
}

.fe-badge {
    background: linear-gradient(135deg, rgba(168, 85, 247, 0.3) 0%, rgba(168, 85, 247, 0.1) 100%);
    color: #d8b4fe;
    border-color: rgba(196, 181, 253, 0.4);
    box-shadow: 0 4px 12px rgba(168, 85, 247, 0.15);
}

.wp-badge {
    background: linear-gradient(135deg, rgba(250, 204, 21, 0.3) 0%, rgba(250, 204, 21, 0.1) 100%);
    color: #fcd34d;
    border-color: rgba(253, 224, 71, 0.4);
    box-shadow: 0 4px 12px rgba(250, 204, 21, 0.15);
}

.mgmt-badge {
    background: linear-gradient(135deg, rgba(249, 115, 22, 0.3) 0%, rgba(249, 115, 22, 0.1) 100%);
    color: #fdba74;
    border-color: rgba(254, 215, 170, 0.4);
    box-shadow: 0 4px 12px rgba(249, 115, 22, 0.15);
}

.category-badge:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(59, 130, 246, 0.25);
}

.hse-promo {
    position: relative;
}

.hse-banner {
    position: relative;
    opacity: 0.7;
}

.hse-promo .card-content {
    background: linear-gradient(135deg, rgba(34, 197, 94, 0.1) 0%, rgba(74, 222, 128, 0.05) 100%);
}

.course-card h3 {
    font-size: 1.4rem;
    margin-bottom: 0.75rem;
    color: var(--color-text-main);
    flex-grow: 1;
}

.course-card p {
    color: var(--color-text-muted);
    margin-bottom: 1rem;
    font-size: 0.95rem;
    flex-grow: 1;
}

.card-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 1rem;
    margin-top: auto;
}

.card-footer.hse-footer {
    justify-content: center;
    border-top: none;
    padding-top: 0;
}

.card-footer.hse-footer .btn-accent {
    text-decoration: none;
    display: inline-block;
}

.price {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--color-accent-gold);
}

/* Footer */
.footer {
    background-color: var(--color-bg-darker);
    border-top: 1px solid rgba(59, 130, 246, 0.1);
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2.5rem;
    padding: 4rem 5%;
    max-width: 1400px;
    margin: 0 auto;
}

.footer-section h4 {
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
    color: var(--color-accent-gold);
    font-family: var(--font-heading);
}

.footer-section > p {
    color: var(--color-text-muted);
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 0;
}

.footer-logo {
    font-size: 1.8rem;
    font-weight: 800;
    color: var(--color-text-main);
    margin-bottom: 1rem;
    font-family: var(--font-heading);
}

.footer-links {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.footer-links li a {
    color: var(--color-text-muted);
    text-decoration: none;
    transition: color 0.3s;
    font-size: 0.95rem;
}

.footer-links li a:hover {
    color: var(--color-accent-gold);
}

.footer-contact {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.footer-contact li {
    color: var(--color-text-muted);
    font-size: 0.95rem;
    line-height: 1.6;
}

.footer-contact li a {
    color: var(--color-accent-gold);
    text-decoration: none;
    transition: color 0.3s;
}

.footer-contact li a:hover {
    color: var(--color-text-main);
    text-decoration: underline;
}

.social-icons {
    display: flex;
    gap: 1rem;
}

.social-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: rgba(59, 130, 246, 0.1);
    border: 1px solid rgba(59, 130, 246, 0.3);
    border-radius: 6px;
    color: var(--color-accent-gold);
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s;
}

.social-link:hover {
    background: var(--color-accent-gold);
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(59, 130, 246, 0.2);
}

.footer-divider {
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(59, 130, 246, 0.2), transparent);
}

.footer-bottom {
    padding: 2rem 5%;
    background-color: rgba(15, 23, 42, 0.5);
}

.footer-bottom-content {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 2rem;
}

.footer-bottom-content p {
    color: var(--color-text-muted);
    margin: 0;
    font-size: 0.9rem;
}

.footer-legal {
    display: flex;
    gap: 1rem;
    align-items: center;
    flex-wrap: wrap;
}

.footer-legal a {
    color: var(--color-text-muted);
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.3s;
}

.footer-legal a:hover {
    color: var(--color-accent-gold);
}

.footer-legal span {
    color: var(--color-text-muted);
}

/* Responsive Footer */
@media (max-width: 768px) {
    .footer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        padding: 2rem 5%;
    }

    .footer-bottom-content {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }

    .footer-legal {
        justify-content: center;
    }
}

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

.modal.active {
    display: flex;
}

.modal-content {
    background: var(--color-bg-dark);
    padding: 3rem;
    border-radius: 12px;
    width: 100%;
    max-width: 400px;
    position: relative;
    border: 1px solid rgba(59, 130, 246, 0.2);
}

.close-modal {
    position: absolute;
    top: 1rem; right: 1.5rem;
    font-size: 2rem;
    color: var(--color-text-muted);
    cursor: pointer;
    transition: color 0.3s;
}

.close-modal:hover {
    color: var(--color-text-main);
}

.modal-content h2 {
    margin-bottom: 0.5rem;
}

.modal-content p {
    color: var(--color-text-muted);
    margin-bottom: 2rem;
}

.input-group {
    margin-bottom: 1.5rem;
    text-align: left;
}

.input-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-size: 0.9rem;
    color: var(--color-text-muted);
}

.input-group input {
    width: 100%;
    padding: 0.75rem;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(59, 130, 246, 0.3);
    border-radius: 6px;
    color: var(--color-text-main);
    font-family: var(--font-body);
}

.input-group input:focus {
    outline: none;
    border-color: var(--color-accent-gold);
    background: rgba(59, 130, 246, 0.1);
}

.form-error {
    color: #ef4444;
    font-size: 0.85rem;
    margin-top: 1rem;
    text-align: center;
}

/* Responsive */
@media (max-width: 768px) {
    .hero h1 { font-size: 2.5rem; }
    .nav-links { display: none; }
    .about-content {
        grid-template-columns: 1fr;
    }
    .about-stats {
        grid-template-columns: 1fr;
    }
}
