/* AERONTOGEL - Ultimate Gold Theme CSS */
:root {
    --gold: #FFD700;
    --gold-dark: #B8860B;
    --gold-light: #FFF8DC;
    --gold-glow: rgba(255, 215, 0, 0.3);
    --dark: #0a0a0a;
    --darker: #050505;
    --light: #ffffff;
    --gray: #cccccc;
    --card-bg: rgba(30, 30, 30, 0.95);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background: var(--darker);
    color: var(--light);
    font-family: 'Arial', sans-serif;
    line-height: 1.6;
    overflow-x: hidden;
}

/* Header */
.header {
    background: rgba(10, 10, 10, 0.95);
    padding: 1rem 2rem;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    border-bottom: 2px solid var(--gold);
    backdrop-filter: blur(10px);
}

.nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
}

.nav-brand {
    display: flex;
    align-items: center;
}

.nav-brand a {
    display: flex;
    align-items: center;
    text-decoration: none;
    color: var(--light);
}

.logo {
    height: 40px;
    margin-right: 10px;
}

.nav-brand span {
    font-size: 1.5rem;
    font-weight: bold;
    color: var(--gold);
    text-shadow: 0 0 10px var(--gold-glow);
}

.nav-menu {
    display: flex;
    gap: 2rem;
    list-style: none;
}

.nav-menu a {
    color: var(--light);
    text-decoration: none;
    padding: 0.5rem 1rem;
    border-radius: 5px;
    transition: all 0.3s ease;
    font-weight: 500;
}

.nav-menu a:hover {
    background: rgba(255, 215, 0, 0.1);
    color: var(--gold);
}

.nav-toggle {
    display: none;
    background: var(--gold);
    color: var(--dark);
    border: none;
    padding: 0.5rem 1rem;
    border-radius: 5px;
    cursor: pointer;
    font-size: 1.2rem;
    font-weight: bold;
}

/* Side Panel */
.side-panel {
    position: fixed;
    top: 0;
    right: -350px;
    width: 350px;
    height: 100%;
    background: linear-gradient(135deg, var(--dark) 0%, var(--darker) 100%);
    border-left: 2px solid var(--gold);
    z-index: 1100;
    transition: right 0.3s ease;
    padding: 2rem;
    box-shadow: -5px 0 25px rgba(0, 0, 0, 0.5);
}

.side-panel.active {
    right: 0;
}

.close-panel {
    background: var(--gold);
    color: var(--dark);
    border: none;
    width: 35px;
    height: 35px;
    border-radius: 50%;
    font-size: 1.5rem;
    cursor: pointer;
    margin-bottom: 2rem;
    transition: transform 0.3s ease;
}

.close-panel:hover {
    transform: rotate(90deg);
}

.panel-content h3 {
    color: var(--gold);
    margin-bottom: 1.5rem;
    font-size: 1.5rem;
    text-align: center;
}

.panel-content a {
    display: flex;
    align-items: center;
    color: var(--light);
    text-decoration: none;
    padding: 1rem 1.5rem;
    margin: 0.5rem 0;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    transition: all 0.3s ease;
    border: 1px solid transparent;
}

.panel-content a:hover {
    background: rgba(255, 215, 0, 0.2);
    border-color: var(--gold);
    transform: translateX(-5px);
}

/* Hero Section */
.hero {
    position: relative;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -2;
}

.hero-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(0.6) contrast(1.1);
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, rgba(10, 10, 10, 0.8) 0%, rgba(212, 175, 55, 0.1) 100%);
    z-index: -1;
}

.hero-content {
    max-width: 800px;
    padding: 0 2rem;
    z-index: 1;
}

.hero-content h1 {
    font-size: 3.5rem;
    color: var(--gold);
    margin-bottom: 1.5rem;
    text-shadow: 0 0 20px var(--gold-glow);
    animation: glow 2s ease-in-out infinite alternate;
}

@keyframes glow {
    from {
        text-shadow: 0 0 20px var(--gold-glow);
    }
    to {
        text-shadow: 0 0 30px var(--gold-glow), 0 0 40px rgba(255, 215, 0, 0.3);
    }
}

.hero-desc {
    font-size: 1.3rem;
    margin-bottom: 2rem;
    color: var(--light);
    line-height: 1.8;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.action-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
    margin: 2rem 0;
}

.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem 2rem;
    text-decoration: none;
    border-radius: 10px;
    font-weight: bold;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s;
}

.btn:hover::before {
    left: 100%;
}

.btn-primary { background: linear-gradient(135deg, var(--gold), var(--gold-dark)); color: var(--dark); }
.btn-success { background: linear-gradient(135deg, #28a745, #1e7e34); color: white; }
.btn-warning { background: linear-gradient(135deg, #ffc107, #e0a800); color: var(--dark); }
.btn-info { background: linear-gradient(135deg, #17a2b8, #138496); color: white; }
.btn-secondary { background: linear-gradient(135deg, #6c757d, #545b62); color: white; }

.btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
}

.btn-large {
    padding: 1.2rem 2.5rem;
    font-size: 1.1rem;
}

.btn-outline {
    background: transparent;
    border: 2px solid var(--gold);
    color: var(--gold);
}

.btn-outline:hover {
    background: var(--gold);
    color: var(--dark);
}

/* Page Hero */
.page-hero {
    background: linear-gradient(135deg, var(--dark) 0%, var(--darker) 100%);
    padding: 120px 2rem 4rem;
    text-align: center;
    border-bottom: 2px solid var(--gold);
}

.page-hero h1 {
    font-size: 3rem;
    color: var(--gold);
    margin-bottom: 1rem;
    text-shadow: 0 0 15px var(--gold-glow);
}

.page-hero p {
    font-size: 1.2rem;
    color: var(--gray);
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

/* Container */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* Features */
.features {
    padding: 5rem 2rem;
    background: var(--dark);
}

.features h2 {
    text-align: center;
    font-size: 2.5rem;
    color: var(--gold);
    margin-bottom: 3rem;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.feature {
    background: var(--card-bg);
    padding: 2.5rem 2rem;
    border-radius: 15px;
    text-align: center;
    border: 1px solid rgba(255, 215, 0, 0.2);
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.feature:hover {
    transform: translateY(-10px);
    border-color: var(--gold);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
}

.feature-icon {
    font-size: 3rem;
    margin-bottom: 1.5rem;
}

.feature h3 {
    color: var(--gold);
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

.feature p {
    color: var(--gray);
    line-height: 1.6;
}

/* Main Content */
.main-content {
    padding: 4rem 2rem;
    background: var(--darker);
}

.content-article {
    background: var(--card-bg);
    padding: 3rem;
    border-radius: 20px;
    border: 1px solid rgba(255, 215, 0, 0.2);
    backdrop-filter: blur(10px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.content-article h2 {
    color: var(--gold);
    font-size: 2.5rem;
    margin-bottom: 2rem;
    text-align: center;
    border-bottom: 2px solid rgba(255, 215, 0, 0.3);
    padding-bottom: 1rem;
}

.content-article h3 {
    color: var(--gold-light);
    margin: 2.5rem 0 1.5rem 0;
    font-size: 1.8rem;
    border-left: 4px solid var(--gold);
    padding-left: 1rem;
}

.content-article h4 {
    color: var(--gold);
    margin: 1.5rem 0 1rem 0;
    font-size: 1.3rem;
}

.content-article p {
    margin-bottom: 1.5rem;
    line-height: 1.8;
    color: var(--gray);
    font-size: 1.1rem;
}

.seo-link {
    color: var(--gold);
    text-decoration: none;
    font-weight: bold;
    transition: all 0.3s ease;
}

.seo-link:hover {
    text-decoration: underline;
    text-shadow: 0 0 10px var(--gold-glow);
}

/* Game Categories */
.game-categories {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
    margin: 2rem 0;
}

.category {
    background: rgba(255, 255, 255, 0.05);
    padding: 2rem 1.5rem;
    border-radius: 10px;
    border: 1px solid rgba(255, 215, 0, 0.2);
    text-align: center;
    transition: transform 0.3s ease;
}

.category:hover {
    transform: translateY(-5px);
    border-color: var(--gold);
}

.category h4 {
    color: var(--gold);
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

.category p {
    color: var(--gray);
    line-height: 1.6;
}

/* Blockquote */
blockquote {
    background: linear-gradient(135deg, rgba(255, 215, 0, 0.1), transparent);
    border-left: 4px solid var(--gold);
    padding: 2rem;
    margin: 2.5rem 0;
    font-style: italic;
    border-radius: 10px;
    font-size: 1.2rem;
    color: var(--light);
}

blockquote cite {
    display: block;
    margin-top: 1rem;
    color: var(--gold);
    font-style: normal;
    font-weight: bold;
    text-align: right;
}

/* Lists */
ul, ol {
    margin: 1.5rem 0;
    padding-left: 2rem;
}

li {
    margin-bottom: 0.8rem;
    color: var(--gray);
    line-height: 1.6;
}

/* Final CTA */
.cta-final {
    text-align: center;
    padding: 4rem 3rem;
    background: linear-gradient(135deg, rgba(255, 215, 0, 0.1), transparent);
    border-radius: 20px;
    margin: 4rem 0;
    border: 2px solid var(--gold);
}

.cta-final h3 {
    color: var(--gold);
    font-size: 2.2rem;
    margin-bottom: 1.5rem;
}

.cta-buttons {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    margin: 2.5rem 0;
    flex-wrap: wrap;
}

.word-count {
    text-align: center;
    padding: 1.5rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 10px;
    margin-top: 3rem;
    border: 1px solid rgba(255, 215, 0, 0.2);
}

/* Footer */
.footer {
    background: var(--dark);
    padding: 4rem 2rem 2rem;
    border-top: 2px solid rgba(255, 215, 0, 0.2);
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 3rem;
    margin-bottom: 3rem;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}

.footer-section h4 {
    color: var(--gold);
    margin-bottom: 1.5rem;
    font-size: 1.3rem;
}

.footer-section p {
    color: var(--gray);
    line-height: 1.6;
    margin-bottom: 1rem;
}

.footer-section a {
    display: block;
    color: var(--gray);
    text-decoration: none;
    margin-bottom: 0.8rem;
    transition: color 0.3s ease;
}

.footer-section a:hover {
    color: var(--gold);
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: var(--gray);
    max-width: 1200px;
    margin: 0 auto;
}

/* ===== NEW STYLES FOR ALL PAGES ===== */

/* Page Content */
.page-content {
    padding: 4rem 2rem;
    background: var(--darker);
}

/* Article Header */
.article-header {
    text-align: center;
    margin-bottom: 3rem;
    padding-bottom: 2rem;
    border-bottom: 2px solid rgba(255, 215, 0, 0.3);
}

.article-header h2 {
    font-size: 2.8rem;
    color: var(--gold);
    margin-bottom: 1.5rem;
}

.article-meta {
    display: flex;
    justify-content: center;
    gap: 2rem;
    color: var(--gray);
    font-size: 1rem;
    flex-wrap: wrap;
}

/* Mission Grid */
.mission-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin: 3rem 0;
}

.mission-item {
    background: rgba(255, 255, 255, 0.05);
    padding: 2.5rem 2rem;
    border-radius: 15px;
    border: 1px solid rgba(255, 215, 0, 0.2);
    text-align: center;
    transition: transform 0.3s ease;
}

.mission-item:hover {
    transform: translateY(-5px);
    border-color: var(--gold);
}

.mission-item h4 {
    color: var(--gold);
    margin-bottom: 1rem;
    font-size: 1.4rem;
}

.mission-item p {
    color: var(--gray);
    line-height: 1.6;
}

/* Timeline */
.timeline {
    position: relative;
    margin: 4rem 0;
    padding-left: 2rem;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 30px;
    top: 0;
    bottom: 0;
    width: 3px;
    background: linear-gradient(to bottom, var(--gold), transparent);
}

.timeline-item {
    display: flex;
    margin-bottom: 3rem;
    position: relative;
}

.timeline-year {
    background: var(--gold);
    color: var(--dark);
    padding: 0.8rem 1.5rem;
    border-radius: 25px;
    font-weight: bold;
    margin-right: 2rem;
    min-width: 100px;
    text-align: center;
    font-size: 1.1rem;
}

.timeline-content {
    flex: 1;
    background: rgba(255, 255, 255, 0.05);
    padding: 2rem;
    border-radius: 15px;
    border: 1px solid rgba(255, 215, 0, 0.2);
}

.timeline-content h4 {
    color: var(--gold);
    margin-bottom: 1rem;
    font-size: 1.4rem;
}

.timeline-content p {
    color: var(--gray);
    line-height: 1.6;
}

/* Values Grid */
.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin: 3rem 0;
}

.value-card {
    background: rgba(255, 255, 255, 0.05);
    padding: 2.5rem 2rem;
    border-radius: 15px;
    text-align: center;
    border: 1px solid rgba(255, 215, 0, 0.2);
    transition: all 0.3s ease;
}

.value-card:hover {
    transform: translateY(-10px);
    border-color: var(--gold);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
}

.value-icon {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
}

.value-card h4 {
    color: var(--gold);
    margin-bottom: 1rem;
    font-size: 1.4rem;
}

.value-card p {
    color: var(--gray);
    line-height: 1.6;
}

/* Stats Grid */
.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    margin: 3rem 0;
}

.stat-box {
    background: rgba(255, 255, 255, 0.05);
    padding: 2.5rem 2rem;
    border-radius: 15px;
    text-align: center;
    border: 1px solid rgba(255, 215, 0, 0.2);
    transition: transform 0.3s ease;
}

.stat-box:hover {
    transform: scale(1.05);
    border-color: var(--gold);
}

.stat-number {
    font-size: 3rem;
    font-weight: bold;
    color: var(--gold);
    margin-bottom: 0.5rem;
    text-shadow: 0 0 10px var(--gold-glow);
}

.stat-label {
    color: var(--gray);
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* News Grid */
.news-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(380px, 1fr));
    gap: 2.5rem;
    margin-bottom: 4rem;
}

.news-card {
    background: var(--card-bg);
    padding: 2.5rem;
    border-radius: 15px;
    border: 1px solid rgba(255, 215, 0, 0.2);
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.news-card:hover {
    transform: translateY(-10px);
    border-color: var(--gold);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
}

.news-date {
    color: var(--gold);
    font-size: 0.9rem;
    margin-bottom: 1rem;
    font-weight: bold;
}

.news-title {
    color: var(--light);
    font-size: 1.4rem;
    margin-bottom: 1.5rem;
    line-height: 1.4;
}

.news-excerpt {
    color: var(--gray);
    margin-bottom: 2rem;
    line-height: 1.6;
}

.news-link {
    color: var(--gold);
    text-decoration: none;
    font-weight: bold;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.3s ease;
}

.news-link:hover {
    color: var(--gold-light);
    gap: 1rem;
}

/* Newsletter */
.newsletter-section {
    text-align: center;
    padding: 4rem 3rem;
    background: linear-gradient(135deg, rgba(255, 215, 0, 0.1), transparent);
    border-radius: 20px;
    border: 2px solid var(--gold);
    margin: 4rem 0;
}

.newsletter-form {
    display: flex;
    gap: 1rem;
    max-width: 500px;
    margin: 2.5rem auto 0;
    flex-wrap: wrap;
    justify-content: center;
}

.newsletter-form input {
    flex: 1;
    min-width: 250px;
    padding: 1.2rem;
    border: 1px solid rgba(255, 215, 0, 0.3);
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.1);
    color: var(--light);
    font-size: 1rem;
}

.newsletter-form button {
    background: var(--gold);
    color: var(--dark);
    border: none;
    padding: 1.2rem 2.5rem;
    border-radius: 8px;
    font-weight: bold;
    cursor: pointer;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.newsletter-form button:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(255, 215, 0, 0.3);
}

/* Services Grid */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2.5rem;
    margin: 4rem 0;
}

.service-card {
    background: var(--card-bg);
    padding: 3rem 2.5rem;
    border-radius: 20px;
    border: 1px solid rgba(255, 215, 0, 0.2);
    text-align: center;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.service-card:hover {
    transform: translateY(-15px);
    border-color: var(--gold);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.service-icon {
    font-size: 4rem;
    margin-bottom: 2rem;
}

.service-card h3 {
    color: var(--gold);
    margin-bottom: 1.5rem;
    font-size: 1.6rem;
}

.service-card p {
    color: var(--gray);
    line-height: 1.6;
    margin-bottom: 2rem;
}

.service-features {
    list-style: none;
    margin-top: 2rem;
    text-align: left;
}

.service-features li {
    color: var(--gray);
    margin-bottom: 1rem;
    padding-left: 2rem;
    position: relative;
    line-height: 1.6;
}

.service-features li::before {
    content: '✓';
    color: var(--gold);
    position: absolute;
    left: 0;
    font-weight: bold;
    font-size: 1.2rem;
}

/* Pricing Grid */
.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2.5rem;
    margin: 4rem 0;
}

.pricing-card {
    background: var(--card-bg);
    padding: 3rem 2.5rem;
    border-radius: 20px;
    border: 1px solid rgba(255, 215, 0, 0.2);
    text-align: center;
    position: relative;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.pricing-card:hover {
    transform: translateY(-10px);
    border-color: var(--gold);
}

.pricing-card.featured {
    border-color: var(--gold);
    transform: scale(1.05);
    background: linear-gradient(135deg, var(--card-bg), rgba(255, 215, 0, 0.05));
}

.pricing-card.featured:hover {
    transform: scale(1.05) translateY(-10px);
}

.popular-badge {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--gold);
    color: var(--dark);
    padding: 0.8rem 2rem;
    border-radius: 25px;
    font-size: 0.9rem;
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.pricing-card h3 {
    color: var(--gold);
    margin-bottom: 1.5rem;
    font-size: 1.8rem;
}

.price {
    font-size: 3.5rem;
    font-weight: bold;
    color: var(--light);
    margin-bottom: 2.5rem;
}

.price span {
    font-size: 1.2rem;
    color: var(--gray);
}

.pricing-card ul {
    list-style: none;
    margin-bottom: 3rem;
    text-align: left;
}

.pricing-card li {
    color: var(--gray);
    margin-bottom: 1.2rem;
    padding-left: 2rem;
    position: relative;
    line-height: 1.6;
}

.pricing-card li::before {
    content: '✓';
    color: var(--gold);
    position: absolute;
    left: 0;
    font-weight: bold;
    font-size: 1.2rem;
}

/* Contact Grid */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    margin-bottom: 4rem;
}

.contact-info {
    background: var(--card-bg);
    padding: 3rem;
    border-radius: 20px;
    border: 1px solid rgba(255, 215, 0, 0.2);
    backdrop-filter: blur(10px);
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
    margin-bottom: 2.5rem;
    padding: 1.5rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    border: 1px solid rgba(255, 215, 0, 0.2);
    transition: all 0.3s ease;
}

.contact-item:hover {
    border-color: var(--gold);
    transform: translateX(5px);
}

.contact-icon {
    font-size: 2.5rem;
    min-width: 60px;
    text-align: center;
}

.contact-details h4 {
    color: var(--gold);
    margin-bottom: 0.5rem;
    font-size: 1.3rem;
}

.contact-details p {
    color: var(--gray);
    margin-bottom: 0.8rem;
    line-height: 1.6;
}

.contact-link {
    color: var(--gold);
    text-decoration: none;
    font-weight: bold;
    transition: all 0.3s ease;
}

.contact-link:hover {
    color: var(--gold-light);
    text-decoration: underline;
}

.social-links {
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
    flex-wrap: wrap;
}

.social-link {
    color: var(--gray);
    text-decoration: none;
    padding: 0.8rem 1.5rem;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    border: 1px solid transparent;
}

.social-link:hover {
    color: var(--gold);
    background: rgba(255, 215, 0, 0.1);
    border-color: var(--gold);
}

/* Contact Form */
.contact-form {
    background: var(--card-bg);
    padding: 3rem;
    border-radius: 20px;
    border: 1px solid rgba(255, 215, 0, 0.2);
    backdrop-filter: blur(10px);
}

.form-group {
    margin-bottom: 2rem;
}

.form-group label {
    display: block;
    color: var(--light);
    margin-bottom: 0.8rem;
    font-weight: bold;
    font-size: 1.1rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 1.2rem;
    border: 1px solid rgba(255, 215, 0, 0.3);
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.1);
    color: var(--light);
    font-size: 1rem;
    transition: all 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--gold);
    box-shadow: 0 0 0 3px rgba(255, 215, 0, 0.1);
}

.form-group textarea {
    resize: vertical;
    min-height: 150px;
}

/* FAQ Styles */
.faq-grid {
    margin: 3rem 0;
}

.faq-item {
    background: var(--card-bg);
    margin-bottom: 1.5rem;
    border-radius: 12px;
    border: 1px solid rgba(255, 215, 0, 0.2);
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item:hover {
    border-color: var(--gold);
}

.faq-question {
    padding: 2rem;
    background: rgba(255, 255, 255, 0.05);
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-weight: bold;
    font-size: 1.2rem;
    color: var(--light);
    transition: background 0.3s ease;
}

.faq-question:hover {
    background: rgba(255, 215, 0, 0.1);
}

.faq-answer {
    padding: 0 2rem;
    max-height: 0;
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-answer.active {
    padding: 2rem;
    max-height: 1000px;
}

.faq-answer p {
    color: var(--gray);
    line-height: 1.6;
    margin-bottom: 1rem;
}

.faq-answer ul, .faq-answer ol {
    margin: 1rem 0;
    padding-left: 2rem;
}

.faq-answer li {
    margin-bottom: 0.5rem;
    color: var(--gray);
}

/* Team Grid */
.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2.5rem;
    margin: 4rem 0;
}

.team-member {
    background: var(--card-bg);
    padding: 2.5rem;
    border-radius: 20px;
    border: 1px solid rgba(255, 215, 0, 0.2);
    text-align: center;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.team-member:hover {
    transform: translateY(-10px);
    border-color: var(--gold);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
}

.member-photo {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    margin: 0 auto 1.5rem;
    border: 3px solid var(--gold);
    background: linear-gradient(135deg, var(--gold), var(--gold-dark));
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    color: var(--dark);
    font-weight: bold;
}

.team-member h3 {
    color: var(--gold);
    margin-bottom: 0.5rem;
    font-size: 1.4rem;
}

.member-role {
    color: var(--gray);
    margin-bottom: 1.5rem;
    font-style: italic;
}

.member-bio {
    color: var(--gray);
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.member-skills {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    justify-content: center;
    margin-top: 1.5rem;
}

.skill-tag {
    background: rgba(255, 215, 0, 0.1);
    color: var(--gold);
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.9rem;
    border: 1px solid rgba(255, 215, 0, 0.3);
}

/* Career Styles */
.job-listings {
    margin: 3rem 0;
}

.job-card {
    background: var(--card-bg);
    padding: 2.5rem;
    margin-bottom: 2rem;
    border-radius: 15px;
    border: 1px solid rgba(255, 215, 0, 0.2);
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.job-card:hover {
    border-color: var(--gold);
    transform: translateX(10px);
}

.job-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 1.5rem;
    flex-wrap: wrap;
    gap: 1rem;
}

.job-title {
    color: var(--gold);
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}

.job-meta {
    display: flex;
    gap: 1.5rem;
    color: var(--gray);
    font-size: 0.9rem;
    flex-wrap: wrap;
}

.job-type {
    background: rgba(255, 215, 0, 0.1);
    color: var(--gold);
    padding: 0.3rem 1rem;
    border-radius: 15px;
    font-size: 0.8rem;
    border: 1px solid rgba(255, 215, 0, 0.3);
}

.job-description {
    color: var(--gray);
    line-height: 1.6;
    margin-bottom: 2rem;
}

.job-requirements {
    margin: 1.5rem 0;
}

.job-requirements h4 {
    color: var(--gold);
    margin-bottom: 1rem;
}

.job-requirements ul {
    margin: 0;
}

/* Benefits Section */
.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin: 3rem 0;
}

.benefit-card {
    background: rgba(255, 255, 255, 0.05);
    padding: 2rem;
    border-radius: 12px;
    border: 1px solid rgba(255, 215, 0, 0.2);
    text-align: center;
    transition: transform 0.3s ease;
}

.benefit-card:hover {
    transform: translateY(-5px);
    border-color: var(--gold);
}

.benefit-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.benefit-card h4 {
    color: var(--gold);
    margin-bottom: 1rem;
}

.benefit-card p {
    color: var(--gray);
    line-height: 1.6;
}

/* Security Features */
.security-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin: 2rem 0;
}

.security-item {
    background: rgba(255, 255, 255, 0.05);
    padding: 2rem;
    border-radius: 12px;
    border: 1px solid rgba(255, 215, 0, 0.2);
    transition: transform 0.3s ease;
}

.security-item:hover {
    transform: translateY(-5px);
    border-color: var(--gold);
}

.security-item h4 {
    color: var(--gold);
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

.security-item p {
    color: var(--gray);
    line-height: 1.6;
}

/* Compliance Badge */
.compliance-badge {
    background: linear-gradient(135deg, rgba(0, 255, 0, 0.1), transparent);
    border: 2px solid rgba(0, 255, 0, 0.3);
    padding: 2.5rem;
    border-radius: 15px;
    margin-top: 3rem;
    text-align: center;
}

.compliance-badge h3 {
    color: var(--gold);
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

.compliance-badge p {
    color: var(--gray);
    line-height: 1.6;
}

/* Support Hours */
.support-hours {
    background: var(--card-bg);
    padding: 2.5rem;
    border-radius: 15px;
    border: 1px solid rgba(255, 215, 0, 0.2);
    margin: 2rem 0;
}

.hours-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1rem;
    margin-top: 1.5rem;
}

.hour-item {
    background: rgba(255, 255, 255, 0.05);
    padding: 1.2rem;
    border-radius: 8px;
    border: 1px solid rgba(255, 215, 0, 0.2);
    text-align: center;
}

/* FAQ Preview */
.faq-preview {
    text-align: center;
    padding: 3rem;
    background: linear-gradient(135deg, rgba(255, 215, 0, 0.1), transparent);
    border-radius: 15px;
    border: 1px solid var(--gold);
    margin: 3rem 0;
}

/* Team Preview */
.team-preview {
    text-align: center;
    padding: 3rem;
    background: linear-gradient(135deg, rgba(255, 215, 0, 0.1), transparent);
    border-radius: 15px;
    border: 1px solid var(--gold);
    margin: 3rem 0;
}

/* Stats Showcase */
.stats-showcase {
    margin: 3rem 0;
    text-align: center;
}

/* CTA Section */
.cta-section {
    text-align: center;
    padding: 4rem 3rem;
    background: linear-gradient(135deg, rgba(255, 215, 0, 0.1), transparent);
    border-radius: 20px;
    border: 2px solid var(--gold);
    margin: 4rem 0;
}

/* Last Updated */
.last-updated {
    text-align: center;
    color: var(--gray);
    margin-bottom: 2rem;
    font-style: italic;
}

/* Services Intro */
.services-intro {
    text-align: center;
    margin-bottom: 3rem;
}

.services-intro h2 {
    color: var(--gold);
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
}

.services-intro p {
    color: var(--gray);
    font-size: 1.2rem;
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.6;
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav-menu {
        display: none;
    }
    
    .nav-toggle {
        display: block;
    }
    
    .hero-content h1 {
        font-size: 2.5rem;
    }
    
    .page-hero h1 {
        font-size: 2.2rem;
    }
    
    .action-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .btn {
        width: 100%;
        max-width: 300px;
    }
    
    .content-article {
        padding: 2rem 1.5rem;
    }
    
    .cta-buttons {
        flex-direction: column;
    }
    
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .pricing-grid {
        grid-template-columns: 1fr;
    }
    
    .pricing-card.featured {
        transform: none;
    }
    
    .pricing-card.featured:hover {
        transform: translateY(-10px);
    }
    
    .news-grid {
        grid-template-columns: 1fr;
    }
    
    .mission-grid,
    .values-grid,
    .services-grid,
    .team-grid,
    .benefits-grid {
        grid-template-columns: 1fr;
    }
    
    .article-meta {
        flex-direction: column;
        gap: 1rem;
    }
    
    .newsletter-form {
        flex-direction: column;
    }
    
    .job-header {
        flex-direction: column;
        align-items: flex-start;
    }
    
    .timeline::before {
        left: 20px;
    }
    
    .timeline-year {
        min-width: 80px;
        margin-right: 1rem;
    }
}

@media (max-width: 480px) {
    .hero-content h1 {
        font-size: 2rem;
    }
    
    .page-hero h1 {
        font-size: 1.8rem;
    }
    
    .article-header h2 {
        font-size: 1.8rem;
    }
    
    .content-article h2 {
        font-size: 2rem;
    }
    
    .content-article h3 {
        font-size: 1.5rem;
    }
    
    .side-panel {
        width: 100%;
        right: -100%;
    }
    
    .news-card,
    .service-card,
    .pricing-card,
    .contact-info,
    .contact-form {
        padding: 2rem 1.5rem;
    }
}

@media print {
    .side-panel-toggle,
    .side-panel,
    .nav-toggle,
    .action-buttons,
    .cta-buttons {
        display: none !important;
    }
    
    .header {
        position: static;
        background: white !important;
        color: black !important;
    }
    
    body {
        background: white !important;
        color: black !important;
    }
    
    .hero-bg {
        display: none;
    }
}

/* Reduced Motion for Accessibility */
@media (prefers-reduced-motion: reduce) {
    * {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}

/* High Contrast Mode Support */
@media (prefers-contrast: high) {
    :root {
        --gold: #000000;
        --gold-dark: #000000;
        --light: #000000;
        --gray: #333333;
    }
    
    .btn {
        border: 2px solid #000000;
    }
}

/* Dark Mode Support */
@media (prefers-color-scheme: dark) {
    /* Already optimized for dark mode */
}

/* Focus Styles for Accessibility */
a:focus,
button:focus,
.btn:focus {
    outline: 3px solid var(--gold);
    outline-offset: 2px;
}

/* Loading States */
.loading {
    opacity: 0.7;
    pointer-events: none;
}

.loading::after {
    content: 'Loading...';
    display: inline-block;
    margin-left: 10px;
}

/* Error States */
.error {
    border-color: #ff4444 !important;
    background: rgba(255, 68, 68, 0.1) !important;
}

.error-message {
    color: #ff4444;
    font-size: 0.9rem;
    margin-top: 0.5rem;
}

/* Success States */
.success {
    border-color: #00C851 !important;
    background: rgba(0, 200, 81, 0.1) !important;
}

.success-message {
    color: #00C851;
    font-size: 0.9rem;
    margin-top: 0.5rem;
}

/* Performance Optimizations */
.hero-bg img {
    fetchpriority: high;
}

.lazy {
    opacity: 0;
    transition: opacity 0.3s ease;
}

.lazy-loaded {
    opacity: 1;
}

/* Micro Interactions */
.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 2px;
    background: var(--gold);
    transition: all 0.3s ease;
    transform: translateX(-50%);
}

.nav-link:hover::after {
    width: 80%;
}

/* Selection Colors */
::selection {
    background: var(--gold);
    color: var(--dark);
}

::-moz-selection {
    background: var(--gold);
    color: var(--dark);
}