:root {
    --primary-sky: #87CEEB;
    --primary-white: #FFFFFF;
    --primary-dark-blue: #003366;
    --accent-violet: #8A2BE2;
    --text-dark: #333333;
    --text-light: #F8F9FA;
    --glass-bg: rgba(255, 255, 255, 0.15);
    --glass-border: rgba(255, 255, 255, 0.2);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    color: var(--text-dark);
    line-height: 1.6;
    background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
    min-height: 100vh;
}

h1,
h2,
h3,
h4 {
    font-family: 'Outfit', sans-serif;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* --- CRITICAL UTILITY CLASSES (Missing previously) --- */
.d-none {
    display: none !important;
}

.d-block {
    display: block !important;
}

.d-flex {
    display: flex !important;
}

.w-100 {
    width: 100% !important;
}

.text-center {
    text-align: center !important;
}

@media (min-width: 576px) {
    .d-sm-inline {
        display: inline !important;
    }

    .d-sm-none {
        display: none !important;
    }
}

@media (min-width: 992px) {
    .d-lg-block {
        display: block !important;
    }

    .d-lg-none {
        display: none !important;
    }
}

@media (min-width: 1200px) {
    .d-xl-flex {
        display: flex !important;
    }

    .d-xl-none {
        display: none !important;
    }
}

/* --- GMAK Custom Navigation System --- */
.gmak-main-navbar {
    position: sticky;
    top: 0;
    width: 100%;
    z-index: 9999;
    background: #ffffff;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    padding: 12px 0;
    transition: all 0.4s ease;
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.05);
}

.gmak-container {
    max-width: 1300px;
    margin: 0 auto;
    padding: 0 20px;
}

.gmak-nav-flex {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

/* Logo Styling */
.gmak-logo-box {
    display: flex;
    flex-direction: column;
    text-decoration: none;
    line-height: 1.2;
}

.gmak-logo-top {
    font-size: 22px;
    font-weight: 800;
    font-family: 'Outfit', sans-serif;
    color: var(--primary-dark-blue);
}

.gmak-logo-top .g {
    color: var(--accent-violet);
}

.gmak-logo-top .care {
    color: var(--primary-sky);
}

.gmak-logo-sub {
    font-size: 9px;
    color: var(--text-dark);
    opacity: 0.7;
    font-weight: 500;
    margin-top: 2px;
}

/* Desktop Navigation Links */
.gmak-desktop-nav {
    display: flex;
    gap: 30px;
}

.gmak-desktop-nav a {
    text-decoration: none;
    color: var(--primary-dark-blue);
    font-weight: 700;
    font-size: 0.85rem;
    text-transform: uppercase;
    transition: all 0.3s ease;
    padding: 5px 0;
}

.gmak-desktop-nav a:hover,
.gmak-desktop-nav a.active {
    color: var(--accent-violet);
}

/* Header Actions */
.gmak-header-actions {
    display: flex;
    align-items: center;
    gap: 15px;
}

.gmak-btn-donate {
    background: linear-gradient(135deg, var(--accent-violet), var(--primary-sky));
    color: #fff !important;
    text-decoration: none;
    padding: 10px 24px;
    border-radius: 50px;
    font-weight: 800;
    font-size: 0.85rem;
    text-transform: uppercase;
    box-shadow: 0 10px 20px rgba(138, 43, 226, 0.2);
    transition: all 0.3s ease;
    border: none;
    display: inline-block;
}

/* Mobile Toggle */
.gmak-mobile-toggle {
    background: none;
    border: none;
    display: flex;
    flex-direction: column;
    gap: 5px;
    width: 30px;
    cursor: pointer;
    padding: 5px;
}

.gmak-mobile-toggle .bar {
    height: 3px;
    width: 100%;
    background: var(--primary-dark-blue);
    border-radius: 10px;
}

/* Mobile Drawer */
.gmak-mobile-drawer {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: #ffffff;
    z-index: 10000;
    transform: translateX(100%);
    transition: transform 0.4s ease;
    visibility: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.gmak-mobile-drawer.active {
    transform: translateX(0);
    visibility: visible;
}

.gmak-drawer-inner {
    padding: 30px;
    width: 100%;
    display: flex;
    flex-direction: column;
}

.gmak-drawer-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 50px;
}

.gmak-close-drawer {
    font-size: 40px;
    background: none;
    border: none;
    color: var(--primary-dark-blue);
    cursor: pointer;
}

.gmak-drawer-links {
    display: flex;
    flex-direction: column;
    gap: 20px;
    flex: 1;
    text-align: center;
}

.gmak-drawer-links a {
    font-size: 1.8rem;
    font-weight: 800;
    text-decoration: none;
    color: var(--primary-dark-blue);
    text-transform: uppercase;
}

/* --- Rest of Original Website Styles --- */

/* Hero Section */
.hero-3d {
    min-height: 90vh;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 100px 0;
    background: linear-gradient(135deg, #003366 0%, #001f3f 100%);
    color: white;
    overflow: hidden;
    position: relative;
}

.hero-3d::before {
    content: '';
    position: absolute;
    width: 500px;
    height: 500px;
    background: var(--accent-violet);
    filter: blur(150px);
    opacity: 0.2;
    top: -100px;
    right: -100px;
    border-radius: 50%;
}

.hero-content {
    max-width: 600px;
    z-index: 2;
}

.hero-content h1 {
    font-size: 3.5rem;
    line-height: 1.1;
    margin-bottom: 25px;
    font-weight: 800;
}

.hero-content .highlight {
    background: linear-gradient(to right, var(--primary-sky), var(--accent-violet));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero-btns {
    display: flex;
    gap: 20px;
    margin-top: 40px;
}

.btn-primary {
    background: linear-gradient(45deg, var(--accent-violet), var(--primary-sky));
    color: white;
    padding: 15px 35px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    transition: all 0.3s ease;
}

.btn-secondary {
    background: rgba(255, 255, 255, 0.1);
    color: white;
    padding: 15px 35px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    backdrop-filter: blur(5px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
}

.hero-visual {
    flex: 1;
    display: flex;
    justify-content: flex-end;
    z-index: 2;
}

.glass-card.floating {
    width: 380px;
    padding: 40px;
    border-radius: 30px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    animation: float 6s ease-in-out infinite;
}

@keyframes float {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-20px);
    }
}

/* Page Header */
.page-header {
    background: var(--primary-dark-blue);
    padding: 100px 0 150px;
    color: white;
    text-align: center;
}

.page-header h1 {
    font-size: 3rem;
    margin-bottom: 15px;
}

/* Footer Styles */
.main-footer {
    background: var(--primary-dark-blue);
    color: white;
    padding: 60px 0 20px;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.logo-footer {
    display: block;
    font-size: 28px;
    font-weight: 700;
    color: white;
    text-decoration: none;
    margin-bottom: 20px;
}

.footer-links ul {
    list-style: none;
}

.footer-links li {
    margin-bottom: 10px;
}

.footer-links a:hover {
    color: var(--primary-sky);
    padding-left: 5px;
}

.footer-newsletter h4 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    background: linear-gradient(to right, #fff, var(--primary-sky));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    font-weight: 800;
}

.newsletter-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
    background: rgba(255, 255, 255, 0.08);
    padding: 30px;
    border-radius: 30px;
    border: 1px solid rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(15px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.newsletter-form input {
    background: rgba(255, 255, 255, 0.05);
    border: 2px solid rgba(255, 255, 255, 0.1);
    padding: 18px 25px;
    border-radius: 20px;
    color: white;
    width: 100%;
}

.btn-subscribe {
    background: linear-gradient(45deg, var(--accent-violet), var(--primary-sky));
    border: none;
    padding: 20px 30px;
    border-radius: 20px;
    color: white;
    font-weight: 900;
    cursor: pointer;
    text-transform: uppercase;
    box-shadow: 0 10px 20px rgba(138, 43, 226, 0.3);
}

/* Contact Form Styling */
.contact-section {
    position: relative;
    z-index: 5;
    margin-top: -100px;
    margin-bottom: 100px;
}

.contact-form-panel {
    background: white;
    padding: 50px;
    border-radius: 40px;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.1);
}

.form-group {
    margin-bottom: 30px;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 20px 25px;
    border: 2px solid #f0f0f0;
    border-radius: 20px;
    background: #fafafa;
}

.btn-submit {
    width: 100%;
    padding: 22px;
    background: linear-gradient(135deg, var(--primary-dark-blue), var(--accent-violet));
    color: white;
    border: none;
    border-radius: 20px;
    font-weight: 800;
    text-transform: uppercase;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.animate-up {
    animation: fadeInUp 0.8s ease forwards;
}

.no-scroll {
    overflow: hidden;
}