/* ============================================
   CSS Variables - Futuristic Design System
   Dynamic Color Transitions Theme
   ============================================ */

:root {
    /* Primary Colors - Complementary Scheme */
    --primary-color: #00d4ff;
    --primary-dark: #0099cc;
    --primary-light: #66e5ff;
    --secondary-color: #ff6b35;
    --secondary-dark: #cc4422;
    --secondary-light: #ff9966;
    
    /* Accent Colors */
    --accent-1: #7b2cbf;
    --accent-2: #ffbe0b;
    --accent-3: #fb5607;
    --accent-4: #3a86ff;
    
    /* Neutral Colors */
    --text-primary: #0d1b2a;
    --text-secondary: #415a77;
    --text-light: #778da9;
    --text-white: #ffffff;
    
    /* Background Colors */
    --bg-primary: #ffffff;
    --bg-secondary: #f8f9fa;
    --bg-dark: #0d1b2a;
    --bg-overlay: rgba(13, 27, 42, 0.85);
    
    /* Gradient Backgrounds */
    --gradient-primary: linear-gradient(135deg, #00d4ff 0%, #7b2cbf 100%);
    --gradient-secondary: linear-gradient(135deg, #ff6b35 0%, #ffbe0b 100%);
    --gradient-accent: linear-gradient(135deg, #3a86ff 0%, #00d4ff 100%);
    --gradient-dark: linear-gradient(135deg, rgba(13, 27, 42, 0.95) 0%, rgba(123, 44, 191, 0.85) 100%);
    
    /* Glassmorphism */
    --glass-bg: rgba(255, 255, 255, 0.1);
    --glass-border: rgba(255, 255, 255, 0.2);
    --glass-shadow: 0 8px 32px 0 rgba(31, 38, 135, 0.37);
    
    /* Shadows */
    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.1);
    --shadow-md: 0 4px 16px rgba(0, 0, 0, 0.12);
    --shadow-lg: 0 8px 32px rgba(0, 0, 0, 0.15);
    --shadow-xl: 0 16px 48px rgba(0, 0, 0, 0.2);
    
    /* Typography */
    --font-heading: 'Poppins', sans-serif;
    --font-body: 'Work Sans', sans-serif;
    
    /* Spacing */
    --spacing-xs: 0.5rem;
    --spacing-sm: 1rem;
    --spacing-md: 2rem;
    --spacing-lg: 3rem;
    --spacing-xl: 4rem;
    --spacing-xxl: 6rem;
    
    /* Border Radius */
    --radius-sm: 8px;
    --radius-md: 16px;
    --radius-lg: 24px;
    --radius-full: 50%;
    
    /* Transitions */
    --transition-fast: 0.2s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-base: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-slow: 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-bounce: 0.6s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

/* ============================================
   Global Styles & Reset
   ============================================ */

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

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

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

/* ============================================
   Typography
   ============================================ */

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: var(--spacing-md);
    color: var(--text-primary);
}

h1 {
    font-size: clamp(2.5rem, 5vw, 4rem);
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: gradientShift 3s ease infinite;
}

h2 {
    font-size: clamp(2rem, 4vw, 3rem);
    position: relative;
    padding-bottom: var(--spacing-sm);
}

h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 80px;
    height: 4px;
    background: var(--gradient-primary);
    border-radius: 2px;
}

h3 {
    font-size: clamp(1.5rem, 3vw, 2rem);
}

h4 {
    font-size: clamp(1.25rem, 2.5vw, 1.5rem);
}

p {
    font-size: clamp(1rem, 1.5vw, 1.125rem);
    line-height: 1.8;
    margin-bottom: var(--spacing-sm);
    color: var(--text-secondary);
}

a {
    color: var(--primary-color);
    text-decoration: none;
    transition: var(--transition-base);
}

a:hover {
    color: var(--primary-dark);
}

/* ============================================
   Container & Layout
   ============================================ */

.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 var(--spacing-md);
}

.section {
    padding: var(--spacing-xxl) 0;
    position: relative;
}

.section-title {
    text-align: center;
    margin-bottom: var(--spacing-lg);
}

.section-description {
    text-align: center;
    max-width: 800px;
    margin: 0 auto var(--spacing-xl);
    font-size: 1.125rem;
    color: var(--text-secondary);
}

/* ============================================
   Global Button Styles
   ============================================ */

.btn,
button:not(.navbar-burger),
input[type="submit"] {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 1rem 2.5rem;
    font-family: var(--font-heading);
    font-size: 1rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    border: none;
    border-radius: var(--radius-md);
    cursor: pointer;
    transition: var(--transition-base);
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.btn::before,
button:not(.navbar-burger)::before,
input[type="submit"]::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: var(--transition-slow);
    z-index: -1;
}

.btn:hover::before,
button:not(.navbar-burger):hover::before,
input[type="submit"]:hover::before {
    left: 100%;
}

.btn-primary {
    background: var(--gradient-primary);
    color: var(--text-white);
    box-shadow: var(--shadow-md);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
    color: var(--text-white);
}

.btn-secondary {
    background: var(--gradient-secondary);
    color: var(--text-white);
    box-shadow: var(--shadow-md);
}

.btn-secondary:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
    color: var(--text-white);
}

.btn-submit {
    background: var(--gradient-primary);
    color: var(--text-white);
    width: 100%;
    padding: 1.25rem;
    font-size: 1.125rem;
}

.btn-submit:hover {
    transform: scale(1.02);
    box-shadow: var(--shadow-xl);
}

/* ============================================
   Header & Navigation
   ============================================ */

.site-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: var(--glass-bg);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--glass-border);
    box-shadow: var(--shadow-sm);
    transition: var(--transition-base);
    background-color: #fff;
}

.navbar {
    padding: var(--spacing-sm) 0;
}

.logo-text {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 700;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.navbar-item {
    font-family: var(--font-heading);
    font-weight: 500;
    color: var(--text-primary);
    padding: 0.5rem 1rem;
    transition: var(--transition-base);
    position: relative;
}

.navbar-item::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 2px;
    background: var(--gradient-primary);
    transform: translateX(-50%);
    transition: var(--transition-base);
}

.navbar-item:hover {
    color: var(--primary-color);
}

.navbar-item:hover::after {
    width: 80%;
}

.navbar-burger span {
    background-color: var(--primary-color);
}

/* ============================================
   Hero Section
   ============================================ */

.hero-section,
.page-hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: fixed;
    overflow: hidden;
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
    padding: var(--spacing-xl);
}

.hero-title {
    color: var(--text-white) !important;
    -webkit-text-fill-color: var(--text-white) !important;
    text-shadow: 0 4px 16px rgba(0, 0, 0, 0.3);
    margin-bottom: var(--spacing-md);
    animation: fadeInUp 1s var(--transition-bounce);
}

.hero-subtitle {
    font-size: clamp(1.125rem, 2vw, 1.5rem);
    color: var(--text-white) !important;
    margin-bottom: var(--spacing-lg);
    line-height: 1.8;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
    animation: fadeInUp 1s var(--transition-bounce) 0.2s backwards;
}

.hero-buttons {
    display: flex;
    gap: var(--spacing-md);
    justify-content: center;
    flex-wrap: wrap;
    animation: fadeInUp 1s var(--transition-bounce) 0.4s backwards;
}

.page-title {
    color: var(--text-white) !important;
    -webkit-text-fill-color: var(--text-white) !important;
    text-shadow: 0 4px 16px rgba(0, 0, 0, 0.3);
    margin-bottom: var(--spacing-sm);
}

.page-subtitle {
    font-size: 1.25rem;
    color: var(--text-white) !important;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
}

/* ============================================
   Cards - Universal Styles
   ============================================ */

.card,
.fish-card,
.challenge-card,
.support-card,
.resource-card,
.story-card,
.accolade-card,
.methodology-card,
.team-member,
.feature-box,
.stat-widget {
    display: flex;
    flex-direction: column;
    align-items: center;
    background: var(--bg-primary);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
    overflow: hidden;
    transition: var(--transition-base);
    height: 100%;
    text-align: center;
}

.card:hover,
.fish-card:hover,
.challenge-card:hover,
.support-card:hover,
.resource-card:hover,
.story-card:hover,
.accolade-card:hover,
.methodology-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-xl);
}

.card-image {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.image-container {
    width: 100%;
    height: 250px;
    overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: center;
    background: var(--bg-secondary);
}

.image-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-slow);
}

.card:hover .image-container img {
    transform: scale(1.1);
}

.card-content {
    padding: var(--spacing-md);
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    flex-grow: 1;
}

.card-title {
    font-size: 1.5rem;
    margin-bottom: var(--spacing-sm);
    color: var(--text-primary);
}

.card-description {
    color: var(--text-secondary);
    margin-bottom: var(--spacing-md);
    flex-grow: 1;
}

/* ============================================
   Fish Section
   ============================================ */

.fish-section {
    background: var(--bg-secondary);
}

.fish-grid {
    margin-top: var(--spacing-lg);
}

.card-stats {
    display: flex;
    gap: var(--spacing-sm);
    flex-wrap: wrap;
    justify-content: center;
}

.stat-badge {
    padding: 0.5rem 1rem;
    background: var(--gradient-accent);
    color: var(--text-white);
    border-radius: var(--radius-sm);
    font-size: 0.875rem;
    font-weight: 600;
}

/* ============================================
   Challenge Section
   ============================================ */

.challenge-section {
    background: var(--bg-primary);
}

.challenge-grid {
    margin-top: var(--spacing-lg);
}

.challenge-rewards {
    display: flex;
    gap: var(--spacing-sm);
    flex-wrap: wrap;
    justify-content: center;
    margin-top: var(--spacing-sm);
}

.reward-badge {
    padding: 0.5rem 1rem;
    background: var(--gradient-secondary);
    color: var(--text-white);
    border-radius: var(--radius-sm);
    font-size: 0.875rem;
    font-weight: 600;
}

/* ============================================
   Levels Section
   ============================================ */

.levels-section {
    background: var(--bg-secondary);
}

.levels-timeline {
    max-width: 900px;
    margin: var(--spacing-xl) auto 0;
    position: relative;
}

.levels-timeline::before {
    content: '';
    position: absolute;
    left: 50px;
    top: 0;
    bottom: 0;
    width: 4px;
    background: var(--gradient-primary);
}

.level-item {
    display: flex;
    gap: var(--spacing-md);
    margin-bottom: var(--spacing-xl);
    position: relative;
}

.level-marker {
    flex-shrink: 0;
    width: 100px;
    height: 100px;
    border-radius: var(--radius-full);
    background: var(--gradient-primary);
    color: var(--text-white);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    font-weight: 700;
    box-shadow: var(--shadow-lg);
    z-index: 2;
}

.level-content {
    flex: 1;
    background: var(--bg-primary);
    padding: var(--spacing-md);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
    transition: var(--transition-base);
}

.level-content:hover {
    transform: translateX(8px);
    box-shadow: var(--shadow-lg);
}

.level-title {
    font-size: 1.75rem;
    margin-bottom: var(--spacing-sm);
}

.level-description {
    color: var(--text-secondary);
    margin-bottom: var(--spacing-sm);
}

.level-badge {
    display: inline-block;
    padding: 0.5rem 1rem;
    background: var(--gradient-accent);
    color: var(--text-white);
    border-radius: var(--radius-sm);
    font-size: 0.875rem;
    font-weight: 600;
}

/* ============================================
   Statistics Section
   ============================================ */

.stats-section {
    background: var(--gradient-primary);
    color: var(--text-white);
}

.stats-section .section-title {
    color: var(--text-white);
}

.stats-grid {
    margin-top: var(--spacing-lg);
}

.stat-widget {
    background: var(--glass-bg);
    backdrop-filter: blur(20px);
    border: 1px solid var(--glass-border);
    padding: var(--spacing-lg);
    border-radius: var(--radius-lg);
    transition: var(--transition-base);
}

.stat-widget:hover {
    transform: translateY(-8px) scale(1.05);
    background: rgba(255, 255, 255, 0.15);
}

.stat-icon {
    font-size: 3rem;
    margin-bottom: var(--spacing-sm);
}

.stat-number {
    font-size: 3rem;
    font-weight: 700;
    color: var(--text-white);
    margin-bottom: var(--spacing-xs);
}

.stat-label {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.9);
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* ============================================
   Gameplay Section
   ============================================ */

.gameplay-section {
    background: var(--bg-primary);
}

.gameplay-features {
    margin-top: var(--spacing-lg);
}

.feature-box {
    padding: var(--spacing-lg);
    background: var(--bg-secondary);
    border-radius: var(--radius-lg);
    transition: var(--transition-base);
}

.feature-box:hover {
    background: var(--bg-primary);
    box-shadow: var(--shadow-lg);
}

.feature-icon {
    font-size: 3rem;
    margin-bottom: var(--spacing-md);
}

.feature-title {
    font-size: 1.5rem;
    margin-bottom: var(--spacing-sm);
}

.feature-text {
    color: var(--text-secondary);
}

/* ============================================
   Resources Section
   ============================================ */

.resources-section {
    background: var(--bg-secondary);
}

.resources-grid {
    margin-top: var(--spacing-lg);
}

.resource-card {
    padding: var(--spacing-lg);
    background: var(--bg-primary);
}

.resource-title {
    font-size: 1.5rem;
    margin-bottom: var(--spacing-sm);
}

.resource-description {
    color: var(--text-secondary);
    margin-bottom: var(--spacing-md);
}

.resource-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--primary-color);
    font-weight: 600;
    transition: var(--transition-base);
}

.resource-link:hover {
    color: var(--primary-dark);
    transform: translateX(4px);
}

/* ============================================
   Contact Section
   ============================================ */

.contact-section,
.contact-main-section {
    background: var(--bg-primary);
    padding: var(--spacing-xxl) 0;
}

.contact-form-wrapper {
    background: var(--bg-secondary);
    padding: var(--spacing-xl);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
}

.form-title {
    font-size: 2rem;
    margin-bottom: var(--spacing-sm);
}

.form-description {
    color: var(--text-secondary);
    margin-bottom: var(--spacing-lg);
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-md);
}

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

.form-label {
    font-family: var(--font-heading);
    font-weight: 600;
    margin-bottom: var(--spacing-xs);
    color: var(--text-primary);
}

.form-input,
.form-textarea,
.form-select {
    padding: 1rem;
    border: 2px solid transparent;
    border-radius: var(--radius-sm);
    background: var(--bg-primary);
    font-family: var(--font-body);
    font-size: 1rem;
    transition: var(--transition-base);
}

.form-input:focus,
.form-textarea:focus,
.form-select:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(0, 212, 255, 0.1);
}

.contact-sidebar {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-lg);
}

.contact-info-box,
.faq-box {
    background: var(--bg-secondary);
    padding: var(--spacing-lg);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
}

.info-title,
.faq-title {
    font-size: 1.5rem;
    margin-bottom: var(--spacing-md);
}

.contact-item {
    display: flex;
    gap: var(--spacing-md);
    margin-bottom: var(--spacing-md);
    padding: var(--spacing-md);
    background: var(--bg-primary);
    border-radius: var(--radius-sm);
}

.contact-icon {
    font-size: 2rem;
    flex-shrink: 0;
}

.contact-details h4 {
    font-size: 1rem;
    margin-bottom: var(--spacing-xs);
}

.contact-details p {
    font-size: 0.875rem;
    color: var(--text-secondary);
    margin: 0;
}

.faq-list {
    list-style: none;
}

.faq-list li {
    margin-bottom: var(--spacing-sm);
}

.faq-list a {
    display: block;
    padding: var(--spacing-sm);
    background: var(--bg-primary);
    border-radius: var(--radius-sm);
    transition: var(--transition-base);
}

.faq-list a:hover {
    background: var(--primary-color);
    color: var(--text-white);
    transform: translateX(4px);
}

/* ============================================
   Support Section
   ============================================ */

.support-section {
    background: var(--bg-secondary);
}

.support-grid {
    margin-top: var(--spacing-lg);
}

.support-card {
    padding: var(--spacing-lg);
    background: var(--bg-primary);
}

.support-icon {
    font-size: 3rem;
    margin-bottom: var(--spacing-md);
}

.support-title {
    font-size: 1.5rem;
    margin-bottom: var(--spacing-sm);
}

.support-text {
    color: var(--text-secondary);
}

/* ============================================
   Map Section
   ============================================ */

.map-section {
    background: var(--bg-primary);
}

.map-placeholder {
    margin-top: var(--spacing-lg);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.map-placeholder .image-container {
    height: 600px;
}

/* ============================================
   History & Vision Sections
   ============================================ */

.history-section,
.vision-section {
    background: var(--bg-primary);
}

.history-section:nth-child(even),
.vision-section:nth-child(even) {
    background: var(--bg-secondary);
}

.content-text {
    padding: var(--spacing-md);
}

.content-text p {
    margin-bottom: var(--spacing-md);
}

/* ============================================
   Methodology Section
   ============================================ */

.methodology-section {
    background: var(--bg-secondary);
}

.methodology-grid {
    margin-top: var(--spacing-lg);
}

.methodology-card {
    padding: var(--spacing-lg);
    background: var(--bg-primary);
}

.methodology-icon {
    font-size: 3rem;
    margin-bottom: var(--spacing-md);
}

.methodology-title {
    font-size: 1.5rem;
    margin-bottom: var(--spacing-sm);
}

.methodology-text {
    color: var(--text-secondary);
}

/* ============================================
   Accolades Section
   ============================================ */

.accolades-section {
    background: var(--bg-primary);
}

.accolades-grid {
    margin-top: var(--spacing-lg);
}

.accolade-card {
    padding: var(--spacing-lg);
    background: var(--bg-secondary);
}

.accolade-icon {
    font-size: 3rem;
    margin-bottom: var(--spacing-md);
}

.accolade-title {
    font-size: 1.5rem;
    margin-bottom: var(--spacing-xs);
}

.accolade-year {
    font-size: 1rem;
    color: var(--primary-color);
    font-weight: 600;
    margin-bottom: var(--spacing-sm);
}

.accolade-text {
    color: var(--text-secondary);
}

/* ============================================
   Success Stories Section
   ============================================ */

.success-stories-section {
    background: var(--bg-secondary);
}

.stories-grid {
    margin-top: var(--spacing-lg);
}

.story-card .image-container {
    height: 350px;
}

.story-title {
    font-size: 1.5rem;
    margin-bottom: var(--spacing-sm);
}

.story-text {
    color: var(--text-secondary);
    font-style: italic;
}

/* ============================================
   Team Section
   ============================================ */

.team-section {
    background: var(--bg-primary);
}

.team-grid {
    margin-top: var(--spacing-lg);
}

.team-member {
    padding: var(--spacing-lg);
    background: var(--bg-secondary);
    transition: var(--transition-base);
}

.team-member:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-xl);
}

.member-avatar {
    font-size: 5rem;
    margin-bottom: var(--spacing-md);
}

.member-name {
    font-size: 1.5rem;
    margin-bottom: var(--spacing-xs);
}

.member-role {
    color: var(--primary-color);
    font-weight: 600;
}

/* ============================================
   Legal Content Pages
   ============================================ */

.legal-content-section {
    background: var(--bg-primary);
    padding-top: 100px;
}

.legal-content {
    max-width: 900px;
    margin: 0 auto;
    padding: var(--spacing-xl);
    background: var(--bg-secondary);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
}

.legal-content h2 {
    font-size: 1.75rem;
    margin-top: var(--spacing-lg);
    margin-bottom: var(--spacing-md);
}

.legal-content p {
    margin-bottom: var(--spacing-md);
}

.legal-content ul {
    margin-left: var(--spacing-lg);
    margin-bottom: var(--spacing-md);
}

.legal-content li {
    margin-bottom: var(--spacing-sm);
    color: var(--text-secondary);
}

/* ============================================
   Success Page
   ============================================ */

.success-section {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--bg-secondary);
    padding: var(--spacing-xl);
}

.success-content {
    max-width: 700px;
    text-align: center;
    background: var(--bg-primary);
    padding: var(--spacing-xl);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-xl);
}

.success-icon {
    font-size: 5rem;
    margin-bottom: var(--spacing-md);
    animation: bounceIn 1s var(--transition-bounce);
}

.success-title {
    font-size: 2.5rem;
    margin-bottom: var(--spacing-md);
    color: var(--primary-color);
}

.success-message {
    font-size: 1.25rem;
    margin-bottom: var(--spacing-md);
    color: var(--text-secondary);
}

.success-info {
    margin-bottom: var(--spacing-lg);
    color: var(--text-secondary);
}

.success-actions {
    display: flex;
    gap: var(--spacing-md);
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: var(--spacing-lg);
}

.success-next-steps {
    background: var(--bg-secondary);
    padding: var(--spacing-lg);
    border-radius: var(--radius-md);
    margin-top: var(--spacing-lg);
}

.success-next-steps h3 {
    margin-bottom: var(--spacing-md);
}

.success-next-steps ul {
    list-style: none;
    text-align: left;
}

.success-next-steps li {
    padding: var(--spacing-sm);
    margin-bottom: var(--spacing-sm);
    background: var(--bg-primary);
    border-radius: var(--radius-sm);
    position: relative;
    padding-left: var(--spacing-lg);
}

.success-next-steps li::before {
    content: '✓';
    position: absolute;
    left: var(--spacing-sm);
    color: var(--primary-color);
    font-weight: 700;
}

/* ============================================
   Footer
   ============================================ */

.site-footer {
    background: var(--bg-dark);
    color: rgba(255, 255, 255, 0.8);
    padding: var(--spacing-xl) 0 var(--spacing-md);
}

.footer-content {
    padding-bottom: var(--spacing-lg);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-title {
    color: var(--text-white);
    font-size: 1.25rem;
    margin-bottom: var(--spacing-md);
}

.footer-text {
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.8;
}

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

.footer-links li {
    margin-bottom: var(--spacing-sm);
}

.footer-links a {
    color: rgba(255, 255, 255, 0.7);
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: var(--transition-base);
    position: relative;
    padding-left: 0;
}

.footer-links a:hover {
    color: var(--primary-color);
    transform: translateX(4px);
}

.footer-links a::before {
    content: '';
    display: inline-block;
    width: 4px;
    height: 4px;
    background: var(--primary-color);
    border-radius: 50%;
    margin-right: 8px;
    transition: var(--transition-base);
}

.footer-links a:hover::before {
    width: 8px;
    height: 8px;
}

.footer-bottom {
    text-align: center;
    padding-top: var(--spacing-md);
}

.footer-bottom p {
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.875rem;
}

/* ============================================
   Animations
   ============================================ */

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes bounceIn {
    0% {
        opacity: 0;
        transform: scale(0.3);
    }
    50% {
        opacity: 1;
        transform: scale(1.05);
    }
    70% {
        transform: scale(0.9);
    }
    100% {
        transform: scale(1);
    }
}

@keyframes gradientShift {
    0%, 100% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
}

/* ============================================
   Responsive Design
   ============================================ */

@media (max-width: 1024px) {
    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .levels-timeline::before {
        left: 30px;
    }
    
    .level-marker {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
    }
}

@media (max-width: 768px) {
    .section {
        padding: var(--spacing-xl) 0;
    }
    
    h1 {
        font-size: 2.5rem;
    }
    
    h2 {
        font-size: 2rem;
    }
    
    .hero-section,
    .page-hero {
        min-height: 70vh;
    }
    
    .hero-content {
        padding: var(--spacing-md);
    }
    
    .btn {
        padding: 0.875rem 2rem;
        font-size: 0.875rem;
    }
    
    .image-container {
        height: 200px;
    }
    
    .levels-timeline::before {
        display: none;
    }
    
    .level-item {
        flex-direction: column;
    }
    
    .level-marker {
        width: 80px;
        height: 80px;
    }
    
    .contact-sidebar {
        margin-top: var(--spacing-lg);
    }
    
    .map-placeholder .image-container {
        height: 400px;
    }
}

@media (max-width: 480px) {
    :root {
        font-size: 14px;
    }
    
    .container {
        padding: 0 var(--spacing-sm);
    }
    
    .hero-buttons {
        width: 100%;
    }
    
    .btn {
        width: 100%;
    }
    
    .stat-number {
        font-size: 2rem;
    }
    
    .success-content {
        padding: var(--spacing-md);
    }
    
    .success-actions {
        flex-direction: column;
        width: 100%;
    }
}

/* ============================================
   Utility Classes
   ============================================ */

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

.text-left {
    text-align: left;
}

.text-right {
    text-align: right;
}

.mt-0 { margin-top: 0; }
.mt-1 { margin-top: var(--spacing-xs); }
.mt-2 { margin-top: var(--spacing-sm); }
.mt-3 { margin-top: var(--spacing-md); }
.mt-4 { margin-top: var(--spacing-lg); }

.mb-0 { margin-bottom: 0; }
.mb-1 { margin-bottom: var(--spacing-xs); }
.mb-2 { margin-bottom: var(--spacing-sm); }
.mb-3 { margin-bottom: var(--spacing-md); }
.mb-4 { margin-bottom: var(--spacing-lg); }

.pt-0 { padding-top: 0; }
.pt-1 { padding-top: var(--spacing-xs); }
.pt-2 { padding-top: var(--spacing-sm); }
.pt-3 { padding-top: var(--spacing-md); }
.pt-4 { padding-top: var(--spacing-lg); }

.pb-0 { padding-bottom: 0; }
.pb-1 { padding-bottom: var(--spacing-xs); }
.pb-2 { padding-bottom: var(--spacing-sm); }
.pb-3 { padding-bottom: var(--spacing-md); }
.pb-4 { padding-bottom: var(--spacing-lg); }

/* ============================================
   Print Styles
   ============================================ */

@media print {
    .site-header,
    .site-footer,
    .btn,
    button {
        display: none;
    }
    
    body {
        color: #000;
        background: #fff;
    }
}