/* ========== Base Styles ========== */
:root {
    /* Main color palette */
    --primary-color: #00e6ff; /* Neon cyan */
    --primary-dark: #00a6b8;
    --secondary-color: #8c00ff; /* Neon purple */
    --accent-color: #ff2a6d; /* Neon pink */
    --background-dark: #0a0e17;
    --background-darker: #060a14;
    --background-light: #141b29;
    --text-color: #ffffff;
    --text-light: #d1d5db;
    --text-muted: #7c8a9d;
    --border-color: #1e293b;
    --card-bg: rgba(14, 18, 31, 0.7);
    --success-color: #05ffa1; /* Neon green */
    --warning-color: #ffb627; /* Neon yellow */
    --danger-color: #ff4747; /* Neon red */
    --glow-strength: 0 0 10px;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
    background-color: var(--background-dark);
    color: var(--text-color);
    line-height: 1.6;
    background-image: 
        radial-gradient(circle at 20% 30%, rgba(0, 230, 255, 0.1) 0%, transparent 30%),
        radial-gradient(circle at 80% 70%, rgba(140, 0, 255, 0.1) 0%, transparent 30%);
    background-attachment: fixed;
    font-size: 16px;
}

a {
    text-decoration: none;
    color: var(--primary-color);
    transition: color 0.3s, text-shadow 0.3s;
}

a:hover {
    color: #fff;
    text-shadow: var(--glow-strength) var(--primary-color);
}

img {
    max-width: 100%;
    height: auto;
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

/* ========== Typography ========== */
h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    margin-bottom: 1rem;
    line-height: 1.3;
}

h1 {
    font-size: 2.75rem;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    margin-bottom: 1.5rem;
    position: relative;
}

h1::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 80px;
    height: 4px;
    background: linear-gradient(to right, var(--primary-color), var(--secondary-color));
    border-radius: 2px;
}

h2 {
    font-size: 2.25rem;
    color: var(--text-color);
    margin-bottom: 2rem;
    text-align: center;
    position: relative;
}

h2::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: var(--primary-color);
    border-radius: 3px;
    box-shadow: 0 0 10px var(--primary-color);
}

h3 {
    font-size: 1.5rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

h4 {
    font-size: 1.25rem;
    color: var(--text-light);
}

p {
    margin-bottom: 1.5rem;
    color: var(--text-light);
}

/* ========== Header & Navigation ========== */
header {
    background-color: rgba(10, 14, 23, 0.9);
    padding: 1.25rem 2.5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: sticky;
    top: 0;
    z-index: 100;
    backdrop-filter: blur(10px);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
    border-bottom: 1px solid rgba(0, 230, 255, 0.3);
}

.logo-container {
    display: flex;
    align-items: center;
}

.logo-container a {
    display: flex;
    align-items: center;
    color: var(--text-color);
    font-weight: 700;
    font-size: 1.5rem;
}

.logo {
    height: 40px;
    width: auto;
    margin-right: 1rem;
    border-radius: 8px;
    box-shadow: 0 0 15px rgba(0, 230, 255, 0.5);
}

nav ul {
    display: flex;
    list-style-type: none;
    gap: 2rem;
}

nav ul li a {
    color: var(--text-light);
    font-weight: 600;
    padding: 0.5rem 0.75rem;
    border-radius: 6px;
    transition: all 0.3s;
    position: relative;
}

nav ul li a::before {
    content: '';
    position: absolute;
    bottom: -3px;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--primary-color);
    box-shadow: 0 0 8px var(--primary-color);
    transition: width 0.3s;
}

nav ul li a:hover {
    color: var(--primary-color);
    text-shadow: 0 0 8px rgba(0, 230, 255, 0.7);
}

nav ul li a:hover::before {
    width: 100%;
}

nav ul li a.active {
    color: var(--primary-color);
    text-shadow: 0 0 8px rgba(0, 230, 255, 0.7);
}

nav ul li a.active::before {
    width: 100%;
}

/* ========== Buttons ========== */
.btn {
    display: inline-block;
    padding: 0.8rem 1.8rem;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    border: none;
    transition: all 0.3s;
    font-size: 1rem;
    text-align: center;
}

.primary-btn {
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    color: #000;
    box-shadow: 0 0 15px rgba(0, 230, 255, 0.5);
}

.primary-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 0 25px rgba(0, 230, 255, 0.7);
    color: #000;
    text-shadow: none;
}

.secondary-btn {
    background-color: transparent;
    border: 2px solid var(--primary-color);
    color: var(--primary-color);
    box-shadow: 0 0 10px rgba(0, 230, 255, 0.3);
}

.secondary-btn:hover {
    background-color: var(--primary-color);
    color: #000;
    box-shadow: 0 0 20px rgba(0, 230, 255, 0.6);
    text-shadow: none;
}

.tertiary-btn {
    background-color: transparent;
    color: var(--text-light);
}

.tertiary-btn:hover {
    color: var(--primary-color);
    text-shadow: 0 0 8px var(--primary-color);
}

/* ========== Home Page Sections ========== */
.hero {
    padding: 6rem 2.5rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
    background: radial-gradient(circle at 30% 50%, rgba(0, 230, 255, 0.05) 0%, transparent 50%);
    min-height: 80vh;
}

.hero-content {
    flex: 1;
    max-width: 600px;
}

.hero-content h1 {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
}

.hero-content p {
    font-size: 1.25rem;
    margin-bottom: 2.5rem;
    color: var(--text-light);
}

.cta-buttons {
    display: flex;
    gap: 1rem;
}

.hero-image {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}

.hero-image img {
    max-width: 100%;
    border-radius: 16px;
    box-shadow: 0 0 30px rgba(0, 230, 255, 0.3);
    border: 1px solid rgba(0, 230, 255, 0.3);
    transition: transform 0.5s, box-shadow 0.5s;
}

.hero-image img:hover {
    transform: scale(1.03) rotate(-1deg);
    box-shadow: 0 0 50px rgba(0, 230, 255, 0.5);
}

/* Features Section */
.features {
    padding: 5rem 2rem;
    background-color: var(--background-darker);
}

.feature-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.feature-card {
    background-color: var(--card-bg);
    padding: 2rem;
    border-radius: 12px;
    transition: transform 0.3s, box-shadow 0.3s;
    border: 1px solid rgba(30, 41, 59, 0.5);
    position: relative;
    overflow: hidden;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
    opacity: 0.8;
    border-radius: 3px 3px 0 0;
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
}

.feature-icon {
    font-size: 2rem;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 70px;
    height: 70px;
    background-color: rgba(0, 230, 255, 0.1);
    border-radius: 50%;
    margin: 0 auto 1.5rem;
}

.feature-icon svg {
    width: 35px;
    height: 35px;
    stroke: var(--primary-color);
}

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

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

/* Latest Posts Section */
.latest-posts {
    padding: 5rem 2rem;
}

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

.post-card {
    background-color: var(--card-bg);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s, box-shadow 0.3s;
    border: 1px solid var(--border-color);
}

.post-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3), 0 0 20px rgba(0, 230, 255, 0.2);
}

.post-image {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-bottom: 1px solid var(--border-color);
}

.post-content {
    padding: 1.5rem;
}

.post-content h3 {
    font-size: 1.25rem;
    margin-bottom: 0.75rem;
    line-height: 1.4;
}

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

.read-more {
    color: var(--primary-color);
    font-weight: 600;
    font-size: 0.95rem;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.read-more:hover {
    padding-left: 5px;
}

.view-all {
    display: flex;
    justify-content: center;
    margin-top: 3rem;
}

/* ========== Blog Page Styles ========== */
.blog-hero {
    padding: 4rem 2rem;
    background: linear-gradient(to bottom, var(--background-darker), var(--background-dark));
    text-align: center;
}

.blog-hero-content h1 {
    max-width: 700px;
    margin: 0 auto 1rem;
}

.blog-hero-content p {
    max-width: 700px;
    margin: 0 auto;
    font-size: 1.1rem;
}

.blog-content {
    padding: 3rem 2rem;
}

.blog-post-grid {
    display: flex;
    flex-direction: column;
    gap: 3rem;
    max-width: 900px;
    margin: 0 auto;
}

.blog-post {
    background-color: var(--card-bg);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    display: flex;
    flex-direction: column;
    border: 1px solid var(--border-color);
    transition: box-shadow 0.3s;
}

.blog-post:hover {
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3), 0 0 20px rgba(0, 230, 255, 0.1);
}

.post-details {
    display: flex;
    justify-content: space-between;
    padding: 1rem 1.5rem;
    background-color: rgba(20, 27, 41, 0.7);
    border-bottom: 1px solid var(--border-color);
}

.post-date, .post-category {
    font-size: 0.875rem;
    color: var(--text-muted);
}

.post-category {
    color: var(--primary-color);
    font-weight: 600;
}

.post-text {
    padding: 1.5rem;
}

.post-text h2 {
    font-size: 1.75rem;
    text-align: left;
    margin-bottom: 1rem;
}

.post-text h2::after {
    left: 0;
    transform: none;
    bottom: -10px;
    width: 80px;
}

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

.post-text .btn {
    margin-top: 1rem;
}

.post-overview {
    background-color: rgba(0, 230, 255, 0.05);
    border-left: 3px solid var(--primary-color);
    padding: 1.25rem;
    margin: 1.5rem 0;
    border-radius: 0 8px 8px 0;
}

.post-overview h3 {
    color: var(--text-color);
    margin-bottom: 0.75rem;
    font-size: 1.1rem;
}

.post-overview ul {
    list-style-type: none;
    margin-left: 0.5rem;
}

.post-overview ul li {
    position: relative;
    padding-left: 1.25rem;
    margin-bottom: 0.5rem;
    color: var(--text-light);
}

.post-overview ul li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: var(--primary-color);
}

.editor-note {
    background-color: rgba(140, 0, 255, 0.05);
    border-left: 3px solid var(--secondary-color);
    padding: 1.25rem;
    margin: 1.5rem 0;
    border-radius: 0 8px 8px 0;
}

.editor-note h3 {
    color: var(--secondary-color);
    margin-bottom: 0.75rem;
    font-size: 1.1rem;
}

.editor-note p {
    margin-bottom: 0;
    color: var(--text-light);
    font-style: italic;
}

/* ========== About Page Styles ========== */
.about-hero {
    padding: 4rem 2rem;
    background: linear-gradient(to bottom, var(--background-darker), var(--background-dark));
    text-align: center;
}

.about-mission {
    padding: 5rem 2rem;
}

.mission-content {
    display: flex;
    align-items: center;
    gap: 3rem;
    margin-top: 3rem;
}

.mission-image {
    flex: 1;
    max-width: 450px;
}

.mission-image img {
    width: 100%;
    border-radius: 16px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3), 0 0 20px rgba(0, 230, 255, 0.2);
    border: 1px solid rgba(0, 230, 255, 0.3);
}

.mission-text {
    flex: 1;
}

.mission-text p {
    margin-bottom: 1.25rem;
    font-size: 1.1rem;
}

.about-stats {
    padding: 5rem 2rem;
    background-color: var(--background-darker);
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.stat-item {
    text-align: center;
    padding: 2rem;
    background-color: var(--card-bg);
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    border: 1px solid var(--border-color);
    transition: transform 0.3s, box-shadow 0.3s;
}

.stat-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3), 0 0 20px rgba(0, 230, 255, 0.2);
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    text-shadow: 0 0 15px rgba(0, 230, 255, 0.5);
}

.stat-label {
    color: var(--text-light);
    font-size: 1.1rem;
}

.about-history {
    padding: 5rem 2rem;
}

.timeline {
    margin-top: 3rem;
    position: relative;
}

.timeline::before {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    left: 20px;
    width: 2px;
    background: linear-gradient(to bottom, var(--primary-color), var(--secondary-color));
    box-shadow: 0 0 8px var(--primary-color);
}

.timeline-item {
    margin-bottom: 3rem;
    position: relative;
    padding-left: 60px;
}

.timeline-year {
    position: absolute;
    left: 0;
    top: 0;
    width: 40px;
    height: 40px;
    background-color: var(--primary-color);
    color: #000;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-weight: 700;
    font-size: 0.8rem;
    box-shadow: 0 0 10px var(--primary-color);
    z-index: 2;
}

.timeline-content {
    background-color: var(--card-bg);
    padding: 1.5rem;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    border: 1px solid var(--border-color);
}

.timeline-content h3 {
    color: var(--primary-color);
    margin-bottom: 0.75rem;
}

.timeline-content p {
    margin-bottom: 0;
    color: var(--text-muted);
}

.team-section {
    padding: 5rem 2rem;
    background-color: var(--background-darker);
}

.team-intro {
    max-width: 800px;
    margin: 0 auto 3rem;
    text-align: center;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
    gap: 2.5rem;
    margin-top: 3rem;
}

.team-card {
    background-color: var(--card-bg);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s, box-shadow 0.3s;
    border: 1px solid var(--border-color);
    text-align: center;
}

.team-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3), 0 0 20px rgba(0, 230, 255, 0.2);
}

.team-card img {
    width: 100%;
    aspect-ratio: 1/1;
    object-fit: cover;
}

.team-card h3 {
    font-size: 1.3rem;
    margin: 1.25rem 0 0.25rem;
}

.team-card p {
    padding: 0 1.5rem;
    margin-bottom: 1.25rem;
    color: var(--text-muted);
}

.team-card p:nth-of-type(1) {
    color: var(--primary-color);
    font-weight: 600;
    margin-bottom: 0.75rem;
}

.social-links {
    display: flex;
    justify-content: center;
    gap: 1rem;
    padding: 0 1.5rem 1.5rem;
}

.social-links a {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: rgba(0, 230, 255, 0.1);
    transition: all 0.3s;
}

.social-links a svg {
    width: 18px;
    height: 18px;
    stroke: var(--primary-color);
}

.social-links a:hover {
    background-color: var(--primary-color);
    box-shadow: 0 0 15px var(--primary-color);
}

.social-links a:hover svg {
    stroke: #000;
}

.values-section {
    padding: 5rem 2rem;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.value-card {
    background-color: var(--card-bg);
    padding: 2rem;
    border-radius: 12px;
    transition: transform 0.3s, box-shadow 0.3s;
    border: 1px solid var(--border-color);
    text-align: center;
}

.value-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3), 0 0 20px rgba(0, 230, 255, 0.2);
}

.value-icon {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 70px;
    height: 70px;
    background-color: rgba(0, 230, 255, 0.1);
    border-radius: 50%;
    margin: 0 auto 1.5rem;
}

.value-icon svg {
    width: 35px;
    height: 35px;
    stroke: var(--primary-color);
}

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

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

/* ========== Contact Page Styles ========== */
.contact-hero {
    padding: 4rem 2rem;
    background: linear-gradient(to bottom, var(--background-darker), var(--background-dark));
    text-align: center;
}

.contact-content {
    padding: 5rem 2rem;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
    max-width: 1200px;
    margin: 0 auto;
}

.contact-info h2 {
    text-align: left;
    margin-bottom: 1.5rem;
}

.contact-info h2::after {
    left: 0;
    transform: none;
}

.contact-info > p {
    margin-bottom: 2.5rem;
    font-size: 1.1rem;
}

.contact-methods {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin-bottom: 3rem;
}

.contact-method {
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
}

.contact-icon {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 50px;
    height: 50px;
    background-color: rgba(0, 230, 255, 0.1);
    border-radius: 50%;
    flex-shrink: 0;
}

.contact-icon svg {
    width: 24px;
    height: 24px;
    stroke: var(--primary-color);
}

.contact-details h3 {
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
}

.contact-details p {
    margin-bottom: 0.25rem;
    color: var(--text-muted);
}

.availability, .response-time {
    font-size: 0.9rem;
    color: var(--primary-color) !important;
    font-style: italic;
}

.social-contact h3 {
    margin-bottom: 1.25rem;
}

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

.social-icon {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: rgba(0, 230, 255, 0.1);
    transition: all 0.3s;
}

.social-icon svg {
    width: 20px;
    height: 20px;
    stroke: var(--primary-color);
}

.social-icon:hover {
    background-color: var(--primary-color);
    box-shadow: 0 0 15px var(--primary-color);
}

.social-icon:hover svg {
    stroke: #000;
}

/* Contact Form */
.contact-form-container {
    background-color: var(--card-bg);
    border-radius: 16px;
    padding: 2.5rem;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    border: 1px solid var(--border-color);
}

.contact-form-container h2 {
    text-align: left;
    margin-bottom: 2rem;
}

.contact-form-container h2::after {
    left: 0;
    transform: none;
}

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

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

.form-group label {
    font-size: 0.95rem;
    color: var(--text-light);
    font-weight: 600;
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 0.75rem 1rem;
    background-color: rgba(14, 18, 31, 0.8);
    border: 1px solid var(--border-color);
    border-radius: 8px;
    color: var(--text-color);
    font-size: 1rem;
    transition: border-color 0.3s, box-shadow 0.3s;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 10px rgba(0, 230, 255, 0.3);
}

.form-group textarea {
    resize: vertical;
    min-height: 150px;
}

.checkbox-group {
    flex-direction: row;
    align-items: flex-start;
    gap: 1rem;
}

.checkbox-group input {
    margin-top: 0.3rem;
}

.checkbox-group label {
    font-size: 0.9rem;
    color: var(--text-muted);
}

.checkbox-group label a {
    color: var(--primary-color);
    font-weight: 600;
}

.checkbox-group label a:hover {
    text-decoration: underline;
}

.submit-btn {
    align-self: flex-start;
    margin-top: 1rem;
}

/* Map Section */
.map-section {
    padding: 5rem 2rem;
    background-color: var(--background-darker);
}

.map-container {
    margin-top: 3rem;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    position: relative;
}

.map-placeholder {
    width: 100%;
    height: 400px;
    background-color: var(--background-light);
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.map-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.7;
}

.map-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 1rem;
    background-color: rgba(10, 14, 23, 0.7);
    text-align: center;
    padding: 2rem;
}

.map-overlay p {
    margin-bottom: 0;
    color: var(--text-light);
    font-size: 1.2rem;
}

/* FAQ Section */
.faq-section {
    padding: 5rem 2rem;
}

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

.faq-item {
    background-color: var(--card-bg);
    border-radius: 12px;
    padding: 1.5rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    border: 1px solid var(--border-color);
    transition: transform 0.3s, box-shadow 0.3s;
}

.faq-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.3), 0 0 15px rgba(0, 230, 255, 0.1);
}

.faq-item h3 {
    font-size: 1.2rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.faq-item p {
    margin-bottom: 0;
    color: var(--text-muted);
    font-size: 0.95rem;
}

.faq-more {
    text-align: center;
    margin-top: 3rem;
    font-size: 1.1rem;
}

.faq-more a {
    color: var(--primary-color);
    font-weight: 600;
}

.faq-more a:hover {
    text-decoration: underline;
}

/* Thank You Modal */
.modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.8);
    z-index: 1000;
    overflow: auto;
    backdrop-filter: blur(8px);
}

.modal-content {
    background-color: var(--background-light);
    margin: 10% auto;
    padding: 3rem;
    border-radius: 16px;
    width: 90%;
    max-width: 500px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3), 0 0 30px rgba(0, 230, 255, 0.2);
    border: 1px solid var(--border-color);
    position: relative;
}

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

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

.thank-you-message {
    text-align: center;
}

.thank-you-icon {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 80px;
    height: 80px;
    background-color: rgba(0, 230, 255, 0.1);
    border-radius: 50%;
    margin: 0 auto 2rem;
}

.thank-you-icon svg {
    width: 40px;
    height: 40px;
    stroke: var(--primary-color);
}

.thank-you-message h2 {
    margin-bottom: 1.25rem;
}

.thank-you-message p {
    margin-bottom: 1.5rem;
    color: var(--text-light);
    font-size: 1.1rem;
}

#referenceNumber {
    font-weight: 700;
    color: var(--primary-color);
    background-color: rgba(0, 230, 255, 0.1);
    padding: 0.25rem 0.5rem;
    border-radius: 4px;
}

#closeThankYou {
    margin-top: 1.5rem;
}

/* ========== Footer ========== */
footer {
    background-color: var(--background-darker);
    padding: 5rem 2rem 2rem;
    margin-top: 2rem;
    border-top: 1px solid var(--border-color);
}

.footer-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 3rem;
    max-width: 1200px;
    margin: 0 auto 3rem;
}

.footer-logo {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.footer-logo img {
    width: 60px;
    height: 60px;
    margin-bottom: 1rem;
    border-radius: 12px;
    box-shadow: 0 0 15px rgba(0, 230, 255, 0.3);
}

.footer-logo p {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.registration {
    font-size: 0.9rem;
    color: var(--text-muted);
    font-weight: normal;
}

.footer-links h3,
.footer-contact h3,
.footer-social h3 {
    font-size: 1.1rem;
    margin-bottom: 1.25rem;
    color: var(--text-color);
    position: relative;
    padding-bottom: 0.75rem;
}

.footer-links h3::after,
.footer-contact h3::after,
.footer-social h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 2px;
    background-color: var(--primary-color);
    border-radius: 2px;
}

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

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

.footer-links ul li a {
    color: var(--text-muted);
    transition: color 0.3s, padding 0.3s;
}

.footer-links ul li a:hover {
    color: var(--primary-color);
    padding-left: 5px;
}

.footer-contact p {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 1rem;
    color: var(--text-muted);
}

.footer-contact p svg {
    width: 18px;
    height: 18px;
    stroke: var(--primary-color);
    flex-shrink: 0;
    margin-top: 0.25rem;
}

.footer-social .social-icons {
    margin-top: 1rem;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-top: 1px solid var(--border-color);
    padding-top: 2rem;
    max-width: 1200px;
    margin: 0 auto;
    flex-wrap: wrap;
    gap: 1rem;
}

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

.legal-links {
    display: flex;
    gap: 1.5rem;
}

.legal-links a {
    color: var(--text-muted);
    font-size: 0.9rem;
}

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

/* Cookie Consent */
.cookie-consent {
    position: fixed;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    width: 90%;
    max-width: 900px;
    background-color: var(--background-light);
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
    padding: 1.5rem;
    z-index: 9999;
    display: none;
    border: 1px solid var(--border-color);
}

.cookie-content {
    text-align: center;
}

.cookie-content p {
    margin-bottom: 1.25rem;
    font-size: 0.95rem;
}

.cookie-buttons {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 1rem;
    flex-wrap: wrap;
}

.cookie-more-info {
    font-size: 0.85rem;
    color: var(--text-muted);
    margin-bottom: 0;
}

.cookie-more-info a {
    color: var(--primary-color);
    text-decoration: underline;
}

.cookie-more-info a:hover {
    text-decoration: none;
}

/* ========== Responsive Design ========== */
@media (max-width: 1200px) {
    .hero {
        padding: 5rem 2rem;
    }
    
    .hero-content h1 {
        font-size: 3rem;
    }
}

@media (max-width: 992px) {
    .hero {
        flex-direction: column;
    }
    
    .hero-content {
        text-align: center;
        max-width: 100%;
    }
    
    .hero-content h1::after {
        left: 50%;
        transform: translateX(-50%);
    }
    
    .cta-buttons {
        justify-content: center;
    }
    
    .mission-content {
        flex-direction: column;
        gap: 2rem;
    }
    
    .mission-image {
        max-width: 100%;
    }
    
    .mission-text {
        text-align: center;
    }
    
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
}

@media (max-width: 768px) {
    header {
        flex-direction: column;
        gap: 1rem;
        padding: 1rem;
    }
    
    nav ul {
        gap: 1rem;
    }
    
    .hero-content h1 {
        font-size: 2.5rem;
    }
    
    .feature-grid,
    .post-grid,
    .stats-grid,
    .values-grid,
    .faq-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-container {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }
    
    .footer-bottom {
        flex-direction: column;
        align-items: flex-start;
        gap: 1.5rem;
    }
    
    .legal-links {
        flex-direction: column;
        gap: 0.5rem;
    }
}

@media (max-width: 576px) {
    h1 {
        font-size: 2rem;
    }
    
    h2 {
        font-size: 1.75rem;
    }
    
    .hero {
        padding: 3rem 1.5rem;
    }
    
    .cta-buttons {
        flex-direction: column;
        gap: 1rem;
        width: 100%;
    }
    
    .cta-buttons .btn {
        width: 100%;
    }
    
    .contact-method {
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 1rem;
    }
    
    .social-contact {
        text-align: center;
    }
    
    .social-icons {
        justify-content: center;
    }
    
    .modal-content {
        padding: 2rem 1.5rem;
    }
    
    .cookie-buttons .btn {
        width: 100%;
    }
}
