/* ============================================
   CSS Variables - Bright Color Scheme
   ============================================ */
:root {
    /* Primary Colors - Bright & Vibrant */
    --primary-color: #FF6B6B;
    --primary-dark: #E85454;
    --primary-light: #FF8787;
    --primary-gradient: linear-gradient(135deg, #FF6B6B 0%, #FFD93D 100%);
    
    /* Secondary Colors */
    --secondary-color: #4ECDC4;
    --secondary-dark: #3BB5AC;
    --secondary-light: #6ED9D1;
    
    /* Accent Colors */
    --accent-color: #FFD93D;
    --accent-dark: #F5C526;
    --accent-light: #FFE56B;
    
    /* Additional Vibrant Colors */
    --purple: #A78BFA;
    --purple-dark: #8B5CF6;
    --blue: #60A5FA;
    --blue-dark: #3B82F6;
    --green: #34D399;
    --green-dark: #10B981;
    --pink: #F472B6;
    --orange: #FB923C;
    
    /* Neutral Colors */
    --dark-bg: #1A1A2E;
    --darker-bg: #16213E;
    --light-bg: #F8F9FA;
    --white: #FFFFFF;
    --text-dark: #2D3748;
    --text-light: #718096;
    --text-white: #FFFFFF;
    
    /* Gradients */
    --gradient-primary: linear-gradient(135deg, #FF6B6B 0%, #4ECDC4 100%);
    --gradient-secondary: linear-gradient(135deg, #A78BFA 0%, #60A5FA 100%);
    --gradient-accent: linear-gradient(135deg, #FFD93D 0%, #FB923C 100%);
    --gradient-overlay: linear-gradient(135deg, rgba(255, 107, 107, 0.9) 0%, rgba(78, 205, 196, 0.9) 100%);
    
    /* Shadows */
    --shadow-sm: 0 2px 4px rgba(0, 0, 0, 0.1);
    --shadow-md: 0 4px 12px rgba(0, 0, 0, 0.15);
    --shadow-lg: 0 8px 24px rgba(0, 0, 0, 0.2);
    --shadow-xl: 0 12px 36px rgba(0, 0, 0, 0.25);
    --shadow-colored: 0 8px 24px rgba(255, 107, 107, 0.3);
    
    /* Typography */
    --font-heading: 'Space Grotesk', sans-serif;
    --font-body: 'DM Sans', sans-serif;
    
    /* Spacing */
    --spacing-xs: 0.5rem;
    --spacing-sm: 1rem;
    --spacing-md: 1.5rem;
    --spacing-lg: 2rem;
    --spacing-xl: 3rem;
    --spacing-xxl: 4rem;
    
    /* Border Radius - Biomorphic */
    --radius-sm: 12px;
    --radius-md: 20px;
    --radius-lg: 30px;
    --radius-xl: 50px;
    --radius-blob: 60% 40% 30% 70% / 60% 30% 70% 40%;
    
    /* Transitions - Bouncy */
    --transition-fast: 0.2s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    --transition-medium: 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    --transition-slow: 0.6s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    --transition-bounce: 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
}

/* ============================================
   Global Styles
   ============================================ */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    overflow-x: hidden;
}

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

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

h1, .title.is-1 {
    font-size: clamp(2.5rem, 5vw, 4rem);
    letter-spacing: -0.02em;
}

h2, .title.is-2 {
    font-size: clamp(2rem, 4vw, 3rem);
    letter-spacing: -0.01em;
}

h3, .title.is-3 {
    font-size: clamp(1.5rem, 3vw, 2.25rem);
}

h4, .title.is-4 {
    font-size: clamp(1.25rem, 2.5vw, 1.75rem);
}

h5, .title.is-5 {
    font-size: clamp(1.1rem, 2vw, 1.5rem);
}

p {
    margin-bottom: var(--spacing-sm);
    color: var(--text-light);
    font-size: 1.1rem;
}

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

a:hover {
    color: var(--primary-dark);
    transform: translateY(-2px);
}

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

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

/* ============================================
   Button Styles - GLOBAL
   ============================================ */
.btn,
.button,
button,
input[type='submit'] {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 32px;
    font-family: var(--font-heading);
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: var(--radius-xl);
    border: none;
    cursor: pointer;
    transition: all var(--transition-bounce);
    text-decoration: none;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.btn::before,
.button::before,
button::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    transform: translate(-50%, -50%);
    transition: width var(--transition-medium), height var(--transition-medium);
    z-index: -1;
}

.btn:hover::before,
.button:hover::before,
button:hover::before {
    width: 300px;
    height: 300px;
}

.btn-animated,
.button.is-primary {
    background: var(--gradient-primary);
    color: var(--white);
    box-shadow: var(--shadow-colored);
}

.btn-animated:hover,
.button.is-primary:hover {
    transform: translateY(-4px) scale(1.05);
    box-shadow: 0 12px 32px rgba(255, 107, 107, 0.4);
    color: var(--white);
}

.button.is-light {
    background: var(--white);
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
    box-shadow: var(--shadow-md);
}

.button.is-light:hover {
    background: var(--primary-color);
    color: var(--white);
    transform: translateY(-4px) scale(1.05);
    box-shadow: var(--shadow-colored);
}

.button.is-large {
    padding: 18px 42px;
    font-size: 1.2rem;
}

/* Read More Links */
.read-more,
a.read-more {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--primary-color);
    font-weight: 600;
    font-size: 1.05rem;
    padding: 8px 16px;
    border-radius: var(--radius-md);
    transition: all var(--transition-fast);
}

.read-more::after {
    content: '→';
    transition: transform var(--transition-fast);
}

.read-more:hover {
    background: var(--primary-light);
    color: var(--white);
    transform: translateX(4px);
}

.read-more:hover::after {
    transform: translateX(4px);
}

/* ============================================
   Section Styles
   ============================================ */
.section {
    padding: var(--spacing-xxl) 0;
    position: relative;
}

.section-title {
    text-align: center;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: var(--spacing-sm);
    position: relative;
    display: inline-block;
}

.title-underline {
    width: 100px;
    height: 6px;
    background: var(--gradient-accent);
    margin: 0 auto var(--spacing-lg);
    border-radius: var(--radius-sm);
    animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% { transform: scaleX(1); }
    50% { transform: scaleX(1.2); }
}

.subtitle {
    color: var(--text-light);
    font-size: 1.25rem;
    text-align: center;
    margin-bottom: var(--spacing-lg);
}

/* ============================================
   Header & Navigation
   ============================================ */
.header-main {
    position: relative;
    z-index: 1000;
}

.navbar {
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(10px);
    box-shadow: var(--shadow-md);
    transition: all var(--transition-fast);
}

.navbar.is-fixed-top {
    animation: slideDown 0.4s ease-out;
}

@keyframes slideDown {
    from {
        transform: translateY(-100%);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

.logo-text {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    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: 600;
    color: var(--text-dark);
    transition: all var(--transition-fast);
    position: relative;
    padding: 0.75rem 1rem;
}

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

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

.navbar-item:hover {
    color: var(--primary-color);
    transform: translateY(-2px);
}

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

/* ============================================
   Hero Section
   ============================================ */
.hero-main {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    z-index: 0;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(255, 107, 107, 0.85) 0%, rgba(78, 205, 196, 0.85) 100%);
    z-index: 1;
}

.hero-body {
    position: relative;
    z-index: 2;
    padding: var(--spacing-xxl) var(--spacing-md);
}

.hero-title {
    color: var(--white);
    text-shadow: 2px 4px 12px rgba(0, 0, 0, 0.3);
    margin-bottom: var(--spacing-md);
    animation: fadeInUp 0.8s ease-out;
}

.hero-subtitle {
    color: var(--white);
    text-shadow: 1px 2px 8px rgba(0, 0, 0, 0.3);
    font-size: 1.5rem;
    margin-bottom: var(--spacing-md);
    animation: fadeInUp 1s ease-out;
}

.hero-description {
    color: var(--white);
    font-size: 1.2rem;
    max-width: 800px;
    margin: 0 auto var(--spacing-xl);
    text-shadow: 1px 2px 6px rgba(0, 0, 0, 0.3);
    animation: fadeInUp 1.2s ease-out;
}

.hero-buttons {
    display: flex;
    gap: var(--spacing-md);
    flex-wrap: wrap;
    animation: fadeInUp 1.4s ease-out;
}

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

/* ============================================
   History Section
   ============================================ */
.section-history {
    background: var(--white);
}

.image-container {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    transition: all var(--transition-slow);
}

.image-container::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--gradient-overlay);
    opacity: 0;
    transition: opacity var(--transition-medium);
    z-index: 1;
}

.image-container:hover::before {
    opacity: 0.3;
}

.image-container:hover {
    transform: scale(1.05) rotate(2deg);
    box-shadow: var(--shadow-xl);
}

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

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

.content-box {
    background: linear-gradient(135deg, rgba(255, 107, 107, 0.05) 0%, rgba(78, 205, 196, 0.05) 100%);
    padding: var(--spacing-xl);
    border-radius: var(--radius-lg);
    border-left: 5px solid var(--primary-color);
    box-shadow: var(--shadow-md);
}

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

/* ============================================
   Features Section
   ============================================ */
.section-features {
    background: var(--light-bg);
}

.feature-card {
    background: var(--white);
    padding: var(--spacing-xl);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
    transition: all var(--transition-bounce);
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: var(--gradient-primary);
    opacity: 0;
    transform: rotate(45deg);
    transition: opacity var(--transition-medium);
    z-index: 0;
}

.feature-card:hover::before {
    opacity: 0.05;
}

.feature-card:hover {
    transform: translateY(-12px) scale(1.03);
    box-shadow: var(--shadow-xl);
}

.feature-icon {
    font-size: 4rem;
    margin-bottom: var(--spacing-md);
    position: relative;
    z-index: 1;
    animation: bounce 2s ease-in-out infinite;
}

@keyframes bounce {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

.icon-animated {
    display: inline-block;
    transition: all var(--transition-bounce);
}

.feature-card:hover .icon-animated {
    transform: scale(1.2) rotate(10deg);
}

.feature-card .title,
.feature-card p {
    position: relative;
    z-index: 1;
}

/* ============================================
   Process Section with Timeline
   ============================================ */
.section-process {
    background: var(--white);
    position: relative;
}

.section-process::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        radial-gradient(circle at 20% 30%, rgba(255, 107, 107, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(78, 205, 196, 0.1) 0%, transparent 50%);
    pointer-events: none;
}

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

.timeline-container::before {
    content: '';
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 4px;
    background: var(--gradient-primary);
    transform: translateX(-50%);
    border-radius: var(--radius-sm);
}

.timeline-item {
    display: flex;
    align-items: center;
    margin-bottom: var(--spacing-xl);
    position: relative;
}

.timeline-item:nth-child(odd) {
    flex-direction: row;
}

.timeline-item:nth-child(even) {
    flex-direction: row-reverse;
}

.timeline-marker {
    width: 60px;
    height: 60px;
    background: var(--gradient-primary);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    font-family: var(--font-heading);
    box-shadow: var(--shadow-colored);
    flex-shrink: 0;
    z-index: 2;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    transition: all var(--transition-bounce);
}

.timeline-item:hover .timeline-marker {
    transform: translateX(-50%) scale(1.2) rotate(360deg);
}

.timeline-content {
    background: var(--white);
    padding: var(--spacing-lg);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
    width: calc(50% - 60px);
    transition: all var(--transition-bounce);
}

.timeline-item:nth-child(odd) .timeline-content {
    margin-right: auto;
    margin-left: 0;
}

.timeline-item:nth-child(even) .timeline-content {
    margin-left: auto;
    margin-right: 0;
}

.timeline-content:hover {
    transform: scale(1.05);
    box-shadow: var(--shadow-xl);
}

/* ============================================
   Events Section
   ============================================ */
.section-events {
    background: var(--light-bg);
}

.event-card {
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: all var(--transition-bounce);
    height: 100%;
    display: flex;
    flex-direction: column;
    background: var(--white);
}

.event-card:hover {
    transform: translateY(-12px) rotate(-2deg);
    box-shadow: var(--shadow-xl);
}

.event-card .card-image {
    position: relative;
    overflow: hidden;
    height: 250px;
}

.event-card .image-container {
    height: 100%;
}

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

.event-card:hover .image-container img {
    transform: scale(1.15) rotate(3deg);
}

.event-card .card-content {
    padding: var(--spacing-lg);
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.event-card .title {
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* ============================================
   Innovation Section
   ============================================ */
.section-innovation {
    background: var(--white);
}

/* ============================================
   Success Stories Section
   ============================================ */
.section-success {
    background: var(--light-bg);
}

.success-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    transition: all var(--transition-bounce);
    height: 100%;
    display: flex;
    flex-direction: column;
}

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

.success-card .card-image {
    position: relative;
    overflow: hidden;
    height: 280px;
}

.success-card .image-container {
    height: 100%;
}

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

.success-card .card-content {
    padding: var(--spacing-lg);
    flex-grow: 1;
}

.success-quote {
    font-style: italic;
    font-size: 1.15rem;
    color: var(--text-dark);
    background: linear-gradient(135deg, rgba(255, 107, 107, 0.1) 0%, rgba(78, 205, 196, 0.1) 100%);
    padding: var(--spacing-md);
    border-left: 4px solid var(--primary-color);
    border-radius: var(--radius-md);
    margin-bottom: var(--spacing-md);
}

.success-author {
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: var(--spacing-md);
}

/* ============================================
   Clientele Section
   ============================================ */
.section-clientele {
    background: var(--white);
}

.clientele-grid {
    margin-top: var(--spacing-xl);
}

.client-box {
    background: linear-gradient(135deg, rgba(255, 107, 107, 0.05) 0%, rgba(78, 205, 196, 0.05) 100%);
    padding: var(--spacing-lg);
    border-radius: var(--radius-lg);
    text-align: center;
    box-shadow: var(--shadow-sm);
    transition: all var(--transition-bounce);
    border: 2px solid transparent;
    height: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.client-box:hover {
    transform: translateY(-8px) scale(1.05);
    box-shadow: var(--shadow-md);
    border-color: var(--primary-color);
    background: var(--white);
}

.client-box p {
    margin: 0;
    color: var(--text-dark);
    font-size: 1.1rem;
}

/* ============================================
   Awards Section
   ============================================ */
.section-awards {
    background: var(--light-bg);
}

.award-card {
    background: var(--white);
    padding: var(--spacing-xl);
    border-radius: var(--radius-lg);
    text-align: center;
    box-shadow: var(--shadow-md);
    transition: all var(--transition-bounce);
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.award-card:hover {
    transform: translateY(-12px) scale(1.05);
    box-shadow: var(--shadow-xl);
}

.award-icon {
    font-size: 4rem;
    margin-bottom: var(--spacing-md);
    animation: bounce 2s ease-in-out infinite;
}

.award-card:hover .award-icon {
    animation: spin 0.6s ease-in-out;
}

@keyframes spin {
    0% { transform: rotate(0deg) scale(1); }
    50% { transform: rotate(180deg) scale(1.2); }
    100% { transform: rotate(360deg) scale(1); }
}

.award-card .title {
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: var(--spacing-sm);
}

.award-card p {
    color: var(--text-light);
    margin: 0;
}

/* ============================================
   Resources Section
   ============================================ */
.section-resources {
    background: var(--white);
}

.resource-card {
    background: linear-gradient(135deg, rgba(255, 107, 107, 0.05) 0%, rgba(78, 205, 196, 0.05) 100%);
    padding: var(--spacing-lg);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
    transition: all var(--transition-bounce);
    height: 100%;
    display: flex;
    flex-direction: column;
}

.resource-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-md);
    background: var(--white);
}

.resource-card .title a {
    color: var(--primary-color);
    transition: all var(--transition-fast);
}

.resource-card .title a:hover {
    color: var(--primary-dark);
}

/* ============================================
   News Section
   ============================================ */
.section-news {
    background: var(--light-bg);
}

.news-card {
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: all var(--transition-bounce);
    height: 100%;
    display: flex;
    flex-direction: column;
    background: var(--white);
}

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

.news-card .card-image {
    position: relative;
    overflow: hidden;
    height: 220px;
}

.news-card .image-container {
    height: 100%;
}

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

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

.news-card .card-content {
    padding: var(--spacing-lg);
    flex-grow: 1;
}

.news-date {
    color: var(--primary-color);
    font-weight: 600;
    font-size: 0.95rem;
    margin-bottom: var(--spacing-sm);
}

.news-card .title {
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: var(--spacing-sm);
}

/* ============================================
   Contact Section
   ============================================ */
.section-contact {
    background: var(--white);
}

.contact-form-container {
    background: linear-gradient(135deg, rgba(255, 107, 107, 0.05) 0%, rgba(78, 205, 196, 0.05) 100%);
    padding: var(--spacing-xl);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
}

.contact-form .field {
    margin-bottom: var(--spacing-md);
}

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

.contact-form .input,
.contact-form .textarea,
.contact-form .select select {
    width: 100%;
    padding: 14px 18px;
    border: 2px solid transparent;
    border-radius: var(--radius-md);
    font-family: var(--font-body);
    font-size: 1rem;
    background: var(--white);
    box-shadow: var(--shadow-sm);
    transition: all var(--transition-fast);
}

.contact-form .input:focus,
.contact-form .textarea:focus,
.contact-form .select select:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 4px rgba(255, 107, 107, 0.1);
    transform: translateY(-2px);
}

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

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

.info-item {
    margin-bottom: var(--spacing-lg);
    padding-bottom: var(--spacing-lg);
    border-bottom: 2px solid rgba(255, 107, 107, 0.1);
}

.info-item:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

.info-item .title {
    color: var(--primary-color);
    margin-bottom: var(--spacing-sm);
    font-size: 1.2rem;
}

.info-item p {
    margin: 0;
    color: var(--text-light);
}

.info-item a {
    color: var(--text-dark);
    font-weight: 500;
}

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

/* ============================================
   Footer
   ============================================ */
.footer-main {
    background: var(--dark-bg);
    color: var(--text-white);
    padding: var(--spacing-xxl) 0 var(--spacing-md);
}

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

.footer-main p {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.8;
}

.social-links {
    display: flex;
    gap: var(--spacing-md);
    margin-top: var(--spacing-md);
    flex-wrap: wrap;
}

.social-links a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 10px 20px;
    background: rgba(255, 255, 255, 0.1);
    color: var(--white);
    border-radius: var(--radius-md);
    font-weight: 600;
    transition: all var(--transition-bounce);
    backdrop-filter: blur(10px);
}

.social-links a:hover {
    background: var(--primary-color);
    transform: translateY(-4px) scale(1.1);
    box-shadow: var(--shadow-colored);
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

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

.footer-links a {
    color: rgba(255, 255, 255, 0.8);
    transition: all var(--transition-fast);
    display: inline-block;
}

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

.contact-footer {
    margin-top: var(--spacing-md);
}

.contact-footer p {
    margin-bottom: var(--spacing-xs);
}

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

.footer-bottom p {
    color: rgba(255, 255, 255, 0.6);
    margin: 0;
}

/* ============================================
   Success Page Styles
   ============================================ */
.success-page {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--gradient-primary);
    padding: var(--spacing-xl);
}

.success-content {
    text-align: center;
    background: var(--white);
    padding: var(--spacing-xxl);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-xl);
    max-width: 600px;
    animation: bounceIn 0.8s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

@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);
    }
}

.success-icon {
    font-size: 5rem;
    margin-bottom: var(--spacing-lg);
    animation: bounce 2s ease-in-out infinite;
}

.success-content .title {
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* ============================================
   Privacy & Terms Pages
   ============================================ */
.legal-page {
    padding-top: 100px;
}

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

.legal-content .title {
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: var(--spacing-xl);
}

.legal-content h2,
.legal-content h3 {
    color: var(--text-dark);
    margin-top: var(--spacing-xl);
    margin-bottom: var(--spacing-md);
}

.legal-content p,
.legal-content ul,
.legal-content ol {
    color: var(--text-light);
    margin-bottom: var(--spacing-md);
    line-height: 1.8;
}

.legal-content ul,
.legal-content ol {
    padding-left: var(--spacing-lg);
}

.legal-content li {
    margin-bottom: var(--spacing-xs);
}

/* ============================================
   Responsive Design
   ============================================ */
@media screen and (max-width: 1024px) {
    .timeline-container::before {
        left: 30px;
    }
    
    .timeline-item {
        flex-direction: row !important;
    }
    
    .timeline-marker {
        left: 30px;
        transform: translateX(0);
    }
    
    .timeline-item:hover .timeline-marker {
        transform: scale(1.2) rotate(360deg);
    }
    
    .timeline-content {
        width: calc(100% - 100px);
        margin-left: 100px !important;
        margin-right: 0 !important;
    }
}

@media screen and (max-width: 768px) {
    :root {
        --spacing-xl: 2rem;
        --spacing-xxl: 3rem;
    }
    
    h1, .title.is-1 {
        font-size: 2.5rem;
    }
    
    h2, .title.is-2 {
        font-size: 2rem;
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .hero-buttons .button {
        width: 100%;
        max-width: 300px;
    }
    
    .section {
        padding: var(--spacing-xl) 0;
    }
    
    .content-box {
        padding: var(--spacing-md);
    }
    
    .feature-card,
    .award-card,
    .success-card,
    .event-card,
    .news-card {
        margin-bottom: var(--spacing-lg);
    }
    
    .navbar-menu {
        background: var(--white);
        box-shadow: var(--shadow-md);
    }
    
    .timeline-marker {
        width: 50px;
        height: 50px;
        font-size: 1.2rem;
    }
    
    .legal-content {
        padding: var(--spacing-lg);
    }
    
    .contact-form-container {
        padding: var(--spacing-lg);
    }
    
    .success-content {
        padding: var(--spacing-lg);
    }
}

@media screen and (max-width: 480px) {
    .logo-text {
        font-size: 1.4rem;
    }
    
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-subtitle {
        font-size: 1.2rem;
    }
    
    .hero-description {
        font-size: 1rem;
    }
    
    .btn,
    .button {
        padding: 12px 24px;
        font-size: 1rem;
    }
    
    .timeline-content {
        font-size: 0.95rem;
    }
    
    .feature-icon,
    .award-icon {
        font-size: 3rem;
    }
}

/* ============================================
   Utility Classes
   ============================================ */
.text-gradient {
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

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

.shadow-sm {
    box-shadow: var(--shadow-sm);
}

.shadow-md {
    box-shadow: var(--shadow-md);
}

.shadow-lg {
    box-shadow: var(--shadow-lg);
}

.rounded-sm {
    border-radius: var(--radius-sm);
}

.rounded-md {
    border-radius: var(--radius-md);
}

.rounded-lg {
    border-radius: var(--radius-lg);
}

.mb-6 {
    margin-bottom: var(--spacing-xxl);
}

/* ============================================
   Animations
   ============================================ */
.animate-on-scroll {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease-out;
}

.animate-on-scroll.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Loading Animation */
.loading {
    display: inline-block;
    width: 20px;
    height: 20px;
    border: 3px solid rgba(255, 107, 107, 0.3);
    border-radius: 50%;
    border-top-color: var(--primary-color);
    animation: spin-loading 1s ease-in-out infinite;
}

@keyframes spin-loading {
    to { transform: rotate(360deg); }
}

/* Blob Animation for Biomorphic Design */
@keyframes blob {
    0% {
        border-radius: 60% 40% 30% 70% / 60% 30% 70% 40%;
    }
    50% {
        border-radius: 30% 60% 70% 40% / 50% 60% 30% 60%;
    }
    100% {
        border-radius: 60% 40% 30% 70% / 60% 30% 70% 40%;
    }
}

.blob-animated {
    animation: blob 8s ease-in-out infinite;
}

/* Floating Animation */
@keyframes floating {
    0% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-20px);
    }
    100% {
        transform: translateY(0px);
    }
}

.floating {
    animation: floating 3s ease-in-out infinite;
}

/* Glow Effect */
.glow {
    box-shadow: 0 0 20px rgba(255, 107, 107, 0.5);
    animation: glow-pulse 2s ease-in-out infinite;
}

@keyframes glow-pulse {
    0%, 100% {
        box-shadow: 0 0 20px rgba(255, 107, 107, 0.5);
    }
    50% {
        box-shadow: 0 0 30px rgba(255, 107, 107, 0.8);
    }
}