/* ============================================
   CSS Variables & Theme Configuration
   ============================================ */
:root {
    /* Complementary Color Scheme - Neo-Brutalism with Neumorphism */
    --primary-color: #FF6B35;
    --primary-dark: #E55A2B;
    --primary-light: #FF8C5F;
    
    --secondary-color: #35D0FF;
    --secondary-dark: #2BB8E5;
    --secondary-light: #5FDAFF;
    
    --accent-color: #FFD335;
    --accent-dark: #E5BD2B;
    --accent-light: #FFDC5F;
    
    --complementary: #3568FF;
    --complementary-dark: #2B56E5;
    --complementary-light: #5F88FF;
    
    /* Neutral Colors */
    --bg-primary: #F5F5F5;
    --bg-secondary: #FFFFFF;
    --bg-dark: #1A1A1A;
    --bg-light: #FAFAFA;
    
    --text-primary: #2D2D2D;
    --text-secondary: #5A5A5A;
    --text-light: #8A8A8A;
    --text-white: #FFFFFF;
    
    /* Neumorphic Shadows */
    --shadow-light: 8px 8px 16px rgba(163, 177, 198, 0.6), -8px -8px 16px rgba(255, 255, 255, 0.8);
    --shadow-dark: inset 8px 8px 16px rgba(163, 177, 198, 0.3), inset -8px -8px 16px rgba(255, 255, 255, 0.5);
    --shadow-brutal: 8px 8px 0px #2D2D2D;
    --shadow-hover: 12px 12px 0px #2D2D2D;
    
    /* Gradients */
    --gradient-primary: linear-gradient(135deg, var(--primary-color) 0%, var(--complementary) 100%);
    --gradient-secondary: linear-gradient(135deg, var(--secondary-color) 0%, var(--accent-color) 100%);
    --gradient-overlay: linear-gradient(135deg, rgba(255, 107, 53, 0.9) 0%, rgba(53, 104, 255, 0.9) 100%);
    --gradient-subtle: linear-gradient(180deg, var(--bg-light) 0%, var(--bg-primary) 100%);
    
    /* Typography */
    --font-heading: 'Space Grotesk', sans-serif;
    --font-body: 'DM Sans', sans-serif;
    
    /* Spacing */
    --spacing-xs: 0.5rem;
    --spacing-sm: 1rem;
    --spacing-md: 2rem;
    --spacing-lg: 4rem;
    --spacing-xl: 6rem;
    
    /* Transitions */
    --transition-fast: 0.2s ease-in-out;
    --transition-medium: 0.4s ease-in-out;
    --transition-slow: 0.6s ease-in-out;
    
    /* Border Radius */
    --radius-sm: 8px;
    --radius-md: 16px;
    --radius-lg: 24px;
    --radius-brutal: 0px;
}

/* ============================================
   Global Styles & Resets
   ============================================ */
@import url('https://fonts.googleapis.com/css2?family=Space+Grotesk:wght@400;500;600;700&family=DM+Sans:wght@400;500;700&display=swap');

* {
    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.7;
    overflow-x: hidden;
}

/* ============================================
   Typography
   ============================================ */
h1, h2, h3, h4, h5, h6,
.title {
    font-family: var(--font-heading);
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: var(--spacing-sm);
    color: var(--text-primary);
    letter-spacing: -0.02em;
}

.title.is-1, h1 {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 700;
}

.title.is-2, h2 {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 700;
}

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

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

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

.subtitle {
    font-family: var(--font-body);
    color: var(--text-secondary);
    margin-bottom: var(--spacing-md);
    line-height: 1.6;
}

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

/* ============================================
   Global Button Styles
   ============================================ */
.btn,
.button,
button,
input[type='submit'],
a.button {
    font-family: var(--font-heading);
    font-weight: 600;
    padding: 1rem 2.5rem;
    border: 3px solid var(--text-primary);
    background: var(--primary-color);
    color: var(--text-white);
    text-decoration: none;
    display: inline-block;
    transition: all var(--transition-medium);
    cursor: pointer;
    position: relative;
    overflow: hidden;
    box-shadow: var(--shadow-brutal);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    font-size: 1rem;
}

.btn:hover,
.button:hover,
button:hover,
input[type='submit']:hover {
    transform: translate(-4px, -4px);
    box-shadow: var(--shadow-hover);
    background: var(--primary-dark);
    color: var(--text-white);
}

.btn:active,
.button:active,
button:active,
input[type='submit']:active {
    transform: translate(0, 0);
    box-shadow: 4px 4px 0px var(--text-primary);
}

.button.is-primary {
    background: var(--primary-color);
    border-color: var(--text-primary);
}

.button.is-primary:hover {
    background: var(--primary-dark);
}

.button.is-light {
    background: var(--text-white);
    color: var(--text-primary);
    border-color: var(--text-primary);
}

.button.is-light:hover {
    background: var(--bg-light);
    color: var(--text-primary);
}

.button.is-large {
    padding: 1.25rem 3rem;
    font-size: 1.125rem;
}

.btn-glow {
    animation: morphGlow 3s ease-in-out infinite;
}

@keyframes morphGlow {
    0%, 100% {
        box-shadow: var(--shadow-brutal), 0 0 20px rgba(255, 107, 53, 0.3);
    }
    50% {
        box-shadow: var(--shadow-brutal), 0 0 40px rgba(53, 104, 255, 0.5);
    }
}

/* ============================================
   Links & Read More
   ============================================ */
a {
    color: var(--primary-color);
    text-decoration: none;
    transition: color var(--transition-fast);
}

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

.read-more,
.link-more {
    display: inline-flex;
    align-items: center;
    gap: var(--spacing-xs);
    font-family: var(--font-heading);
    font-weight: 600;
    color: var(--primary-color);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    font-size: 0.95rem;
    padding: 0.5rem 0;
    border-bottom: 2px solid transparent;
    transition: all var(--transition-fast);
}

.read-more:hover,
.link-more:hover {
    color: var(--primary-dark);
    border-bottom-color: var(--primary-dark);
    transform: translateX(4px);
}

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

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

/* ============================================
   Header & Navigation
   ============================================ */
.site-header {
    background: var(--bg-secondary);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    transition: transform var(--transition-medium);
}

.navbar {
    padding: 1rem 0;
}

.navbar-brand .logo-text {
    font-family: var(--font-heading);
    font-size: 1.75rem;
    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-primary);
    padding: 0.75rem 1.25rem;
    transition: all var(--transition-fast);
    position: relative;
}

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

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

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

.navbar-burger {
    color: var(--text-primary);
    border: 2px solid var(--text-primary);
    background: transparent;
}

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

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

.navbar-burger:hover span {
    background-color: var(--text-white);
}

/* ============================================
   Hero Section
   ============================================ */
.hero {
    position: relative;
    overflow: hidden;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.hero-section {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--gradient-overlay);
    z-index: 1;
}

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

.hero-title {
    color: var(--text-white);
    text-shadow: 4px 4px 0px rgba(0, 0, 0, 0.3);
    margin-bottom: var(--spacing-sm);
    animation: morphSlideIn 1s ease-out;
}

.hero-subtitle {
    color: var(--text-white);
    font-size: clamp(1.25rem, 3vw, 2rem);
    margin-bottom: var(--spacing-md);
    text-shadow: 2px 2px 0px rgba(0, 0, 0, 0.3);
    animation: morphSlideIn 1.2s ease-out;
}

.hero-description {
    color: var(--text-white);
    font-size: 1.25rem;
    max-width: 700px;
    margin: 0 auto var(--spacing-md);
    line-height: 1.8;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
    animation: morphSlideIn 1.4s ease-out;
}

.hero-buttons {
    display: flex;
    gap: var(--spacing-sm);
    justify-content: center;
    flex-wrap: wrap;
    animation: morphSlideIn 1.6s ease-out;
}

.page-hero {
    min-height: 50vh;
}

@keyframes morphSlideIn {
    0% {
        opacity: 0;
        transform: translateY(30px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

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

.section-title {
    text-align: center;
    margin-bottom: var(--spacing-sm);
    position: relative;
    display: inline-block;
    left: 50%;
    transform: translateX(-50%);
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 100%;
    height: 5px;
    background: var(--gradient-primary);
    border-radius: 3px;
}

.section-subtitle {
    text-align: center;
    max-width: 700px;
    margin: 0 auto var(--spacing-lg);
    font-size: 1.25rem;
    color: var(--text-secondary);
}

/* ============================================
   Services Section
   ============================================ */
.services-section {
    background: var(--gradient-subtle);
}

.service-card {
    height: 100%;
    border: 3px solid var(--text-primary);
    box-shadow: var(--shadow-brutal);
    transition: all var(--transition-medium);
    background: var(--bg-secondary);
    display: flex;
    flex-direction: column;
}

.service-card:hover {
    transform: translate(-6px, -6px);
    box-shadow: 12px 12px 0px var(--text-primary);
}

.service-card .card-image {
    overflow: hidden;
    border-bottom: 3px solid var(--text-primary);
}

.service-card .image-container {
    width: 100%;
    height: 280px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

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

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

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

.service-card .title {
    color: var(--primary-color);
    margin-bottom: var(--spacing-sm);
}

.service-card p {
    flex-grow: 1;
}

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

.event-slider-wrapper {
    position: relative;
    overflow: hidden;
}

.event-slider {
    position: relative;
}

.event-slide {
    opacity: 0;
    visibility: hidden;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    transition: opacity var(--transition-slow), visibility var(--transition-slow);
}

.event-slide.active {
    opacity: 1;
    visibility: visible;
    position: relative;
}

.event-slide img {
    width: 100%;
    height: 450px;
    object-fit: cover;
    border: 3px solid var(--text-primary);
    box-shadow: var(--shadow-brutal);
}

.event-content {
    padding: var(--spacing-md);
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.event-content .title {
    color: var(--primary-color);
    margin-bottom: var(--spacing-sm);
}

.slider-controls {
    display: flex;
    justify-content: center;
    gap: var(--spacing-sm);
    margin-top: var(--spacing-md);
}

.slider-btn {
    width: 50px;
    height: 50px;
    border: 3px solid var(--text-primary);
    background: var(--secondary-color);
    color: var(--text-white);
    font-size: 2rem;
    cursor: pointer;
    transition: all var(--transition-fast);
    box-shadow: 4px 4px 0px var(--text-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
}

.slider-btn:hover {
    transform: translate(-2px, -2px);
    box-shadow: 6px 6px 0px var(--text-primary);
    background: var(--secondary-dark);
}

/* ============================================
   Portfolio Section
   ============================================ */
.portfolio-section {
    background: var(--gradient-subtle);
}

.portfolio-card {
    height: 100%;
    border: 3px solid var(--text-primary);
    box-shadow: var(--shadow-brutal);
    transition: all var(--transition-medium);
    background: var(--bg-secondary);
    display: flex;
    flex-direction: column;
}

.portfolio-card:hover {
    transform: translate(-6px, -6px);
    box-shadow: 12px 12px 0px var(--text-primary);
}

.portfolio-card .card-image {
    overflow: hidden;
    border-bottom: 3px solid var(--text-primary);
}

.portfolio-card .image-container {
    width: 100%;
    height: 250px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.portfolio-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all var(--transition-slow);
}

.portfolio-card:hover img {
    transform: scale(1.15) rotate(2deg);
}

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

.portfolio-card .title {
    color: var(--complementary);
    margin-bottom: var(--spacing-xs);
}

/* ============================================
   Gallery Section
   ============================================ */
.gallery-section {
    background: var(--bg-secondary);
    overflow: hidden;
}

.gallery-carousel {
    position: relative;
    overflow: hidden;
    padding: var(--spacing-md) 0;
}

.gallery-track {
    display: flex;
    gap: var(--spacing-md);
    animation: galleryScroll 30s linear infinite;
}

.gallery-item {
    flex-shrink: 0;
    width: 350px;
    height: 250px;
    border: 3px solid var(--text-primary);
    box-shadow: var(--shadow-brutal);
    overflow: hidden;
    transition: all var(--transition-medium);
    display: flex;
    align-items: center;
    justify-content: center;
}

.gallery-item:hover {
    transform: translate(-4px, -4px);
    box-shadow: 8px 8px 0px var(--text-primary);
    animation-play-state: paused;
}

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

.gallery-item:hover img {
    transform: scale(1.1);
}

@keyframes galleryScroll {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

.gallery-carousel:hover .gallery-track {
    animation-play-state: paused;
}

/* ============================================
   Team Section
   ============================================ */
.team-section {
    background: var(--gradient-subtle);
}

.team-card {
    height: 100%;
    border: 3px solid var(--text-primary);
    box-shadow: var(--shadow-brutal);
    transition: all var(--transition-medium);
    background: var(--bg-secondary);
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.team-card:hover {
    transform: translate(-6px, -6px);
    box-shadow: 12px 12px 0px var(--text-primary);
}

.team-card .card-image {
    overflow: hidden;
    border-bottom: 3px solid var(--text-primary);
    width: 100%;
}

.team-card .image-container {
    width: 100%;
    height: 300px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.team-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all var(--transition-slow);
}

.team-card:hover img {
    transform: scale(1.1);
    filter: brightness(1.1);
}

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

.team-card .title {
    color: var(--primary-color);
    margin-bottom: var(--spacing-xs);
}

.team-card .subtitle {
    color: var(--secondary-color);
    font-weight: 600;
    margin-bottom: var(--spacing-sm);
}

/* ============================================
   Values & Mission Sections
   ============================================ */
.mission-section,
.values-section {
    background: var(--bg-secondary);
}

.mission-content,
.mission-section img {
    border: 3px solid var(--text-primary);
    box-shadow: var(--shadow-brutal);
}

.mission-section img {
    width: 100%;
    height: 400px;
    object-fit: cover;
}

.mission-content {
    padding: var(--spacing-md);
    background: var(--bg-light);
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: var(--spacing-md);
    margin-top: var(--spacing-md);
}

.value-item {
    padding: var(--spacing-md);
    background: var(--bg-secondary);
    border: 3px solid var(--text-primary);
    box-shadow: var(--shadow-brutal);
    transition: all var(--transition-medium);
}

.value-item:hover {
    transform: translate(-4px, -4px);
    box-shadow: 8px 8px 0px var(--text-primary);
    background: var(--bg-light);
}

.value-item .title {
    color: var(--complementary);
    margin-bottom: var(--spacing-xs);
}

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

.contact-form-wrapper {
    background: var(--bg-secondary);
    padding: var(--spacing-lg);
    border: 3px solid var(--text-primary);
    box-shadow: var(--shadow-brutal);
}

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

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

.contact-form .input,
.contact-form .textarea,
.contact-form .select select {
    width: 100%;
    padding: 0.875rem 1.25rem;
    border: 3px solid var(--text-primary);
    background: var(--bg-light);
    font-family: var(--font-body);
    font-size: 1rem;
    transition: all var(--transition-fast);
    box-shadow: none;
}

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

.contact-form .select {
    width: 100%;
}

.contact-form .select::after {
    border-color: var(--primary-color);
    border-width: 3px;
    right: 1.25rem;
}

.contact-form .checkbox {
    font-family: var(--font-body);
    color: var(--text-secondary);
}

.contact-form .checkbox input[type="checkbox"] {
    margin-right: var(--spacing-xs);
}

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

.info-card {
    padding: var(--spacing-md);
    background: var(--bg-light);
    border: 3px solid var(--text-primary);
    box-shadow: var(--shadow-brutal);
    transition: all var(--transition-medium);
    height: 100%;
}

.info-card:hover {
    transform: translate(-4px, -4px);
    box-shadow: 8px 8px 0px var(--text-primary);
}

.info-card .title {
    color: var(--primary-color);
    margin-bottom: var(--spacing-sm);
}

.info-card p {
    color: var(--text-secondary);
    line-height: 1.8;
}

.map-section {
    background: var(--gradient-subtle);
}

.map-placeholder {
    border: 3px solid var(--text-primary);
    box-shadow: var(--shadow-brutal);
    overflow: hidden;
}

.map-placeholder img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    display: block;
}

/* ============================================
   FAQ Section
   ============================================ */
.faq-section {
    background: var(--bg-secondary);
}

.faq-item {
    padding: var(--spacing-md);
    margin-bottom: var(--spacing-md);
    background: var(--bg-light);
    border: 3px solid var(--text-primary);
    box-shadow: var(--shadow-brutal);
    transition: all var(--transition-medium);
}

.faq-item:hover {
    transform: translate(-4px, -4px);
    box-shadow: 8px 8px 0px var(--text-primary);
}

.faq-item .title {
    color: var(--complementary);
    margin-bottom: var(--spacing-sm);
    font-size: 1.25rem;
}

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

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

.resource-item {
    padding: var(--spacing-md);
    background: var(--bg-secondary);
    border: 3px solid var(--text-primary);
    box-shadow: var(--shadow-brutal);
    transition: all var(--transition-medium);
    display: block;
    text-decoration: none;
}

.resource-item:hover {
    transform: translate(-4px, -4px);
    box-shadow: 8px 8px 0px var(--text-primary);
}

.resource-item .title {
    color: var(--primary-color);
    margin-bottom: var(--spacing-xs);
}

.resource-description {
    color: var(--text-secondary);
    margin: 0;
}

/* ============================================
   CTA Section
   ============================================ */
.cta-section {
    background: var(--gradient-overlay);
    padding: var(--spacing-xl) var(--spacing-md);
}

.cta-content {
    padding: var(--spacing-lg);
}

.cta-content .title,
.cta-content .subtitle {
    color: var(--text-white);
    text-shadow: 2px 2px 0px rgba(0, 0, 0, 0.3);
}

/* ============================================
   Legal Pages (Privacy, Terms)
   ============================================ */
.legal-content-section {
    background: var(--bg-secondary);
    padding-top: 100px;
}

.legal-document {
    background: var(--bg-light);
    padding: var(--spacing-lg);
    border: 3px solid var(--text-primary);
    box-shadow: var(--shadow-brutal);
}

.legal-date {
    color: var(--text-light);
    font-style: italic;
    margin-bottom: var(--spacing-md);
}

.legal-document h2 {
    color: var(--primary-color);
    margin-top: var(--spacing-lg);
    margin-bottom: var(--spacing-sm);
    padding-bottom: var(--spacing-xs);
    border-bottom: 3px solid var(--primary-color);
}

.legal-document p {
    margin-bottom: var(--spacing-md);
    text-align: justify;
}

.content-section {
    padding-top: 100px;
}

.content-box {
    background: var(--bg-light);
    padding: var(--spacing-lg);
    border: 3px solid var(--text-primary);
    box-shadow: var(--shadow-brutal);
}

/* ============================================
   Success Page
   ============================================ */
.success-hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--gradient-subtle);
}

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

.success-icon {
    width: 100px;
    height: 100px;
    margin: 0 auto var(--spacing-md);
    background: var(--primary-color);
    border: 3px solid var(--text-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
    color: var(--text-white);
    font-weight: 700;
    animation: successPulse 2s ease-in-out infinite;
}

@keyframes successPulse {
    0%, 100% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(255, 107, 53, 0.7);
    }
    50% {
        transform: scale(1.05);
        box-shadow: 0 0 0 20px rgba(255, 107, 53, 0);
    }
}

.success-message {
    margin: var(--spacing-md) 0;
}

.success-message p {
    margin-bottom: var(--spacing-sm);
    font-size: 1.125rem;
}

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

/* ============================================
   Footer
   ============================================ */
.site-footer {
    background: var(--bg-dark);
    color: var(--text-white);
    padding: var(--spacing-lg) var(--spacing-md) var(--spacing-md);
    margin-top: var(--spacing-xl);
}

.site-footer .title {
    color: var(--text-white);
    margin-bottom: var(--spacing-sm);
}

.site-footer p {
    color: rgba(255, 255, 255, 0.8);
}

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

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

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

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

.footer-links a::before {
    content: '›';
    margin-right: var(--spacing-xs);
    opacity: 0;
    transition: opacity var(--transition-fast);
}

.footer-links a:hover::before {
    opacity: 1;
}

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

.social-link {
    padding: 0.75rem 1.25rem;
    background: transparent;
    border: 2px solid var(--text-white);
    color: var(--text-white);
    font-family: var(--font-heading);
    font-weight: 600;
    text-transform: uppercase;
    font-size: 0.875rem;
    letter-spacing: 0.05em;
    transition: all var(--transition-fast);
    display: inline-block;
}

.social-link:hover {
    background: var(--primary-color);
    border-color: var(--primary-color);
    color: var(--text-white);
    transform: translateY(-2px);
}

.footer-bottom {
    margin-top: var(--spacing-md);
    padding-top: var(--spacing-md);
    border-top: 2px solid rgba(255, 255, 255, 0.2);
}

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

/* ============================================
   Utility Classes
   ============================================ */
.has-text-centered {
    text-align: center;
}

.is-vcentered {
    align-items: center;
}

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

.columns {
    display: flex;
    flex-wrap: wrap;
    margin: 0 calc(-1 * var(--spacing-sm));
}

.column {
    padding: var(--spacing-sm);
    flex: 1;
}

.is-one-third {
    flex: none;
    width: 33.3333%;
}

.is-half {
    flex: none;
    width: 50%;
}

.is-two-thirds {
    flex: none;
    width: 66.6667%;
}

.is-full {
    flex: none;
    width: 100%;
}

.is-multiline {
    flex-wrap: wrap;
}

/* ============================================
   Responsive Design
   ============================================ */
@media screen and (max-width: 1024px) {
    :root {
        --spacing-lg: 3rem;
        --spacing-xl: 4rem;
    }
    
    .is-one-third,
    .is-half,
    .is-two-thirds {
        width: 100%;
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .event-slide .columns {
        flex-direction: column;
    }
    
    .navbar-menu {
        background: var(--bg-secondary);
        border-top: 2px solid var(--text-primary);
    }
}

@media screen and (max-width: 768px) {
    :root {
        --spacing-md: 1.5rem;
        --spacing-lg: 2.5rem;
        --spacing-xl: 3rem;
    }
    
    .section {
        padding: var(--spacing-lg) var(--spacing-sm);
    }
    
    .hero-section {
        min-height: 70vh;
    }
    
    .gallery-item {
        width: 280px;
        height: 200px;
    }
    
    .service-card .image-container,
    .portfolio-card .image-container {
        height: 220px;
    }
    
    .team-card .image-container {
        height: 250px;
    }
    
    .event-slide img {
        height: 300px;
    }
    
    .contact-form-wrapper,
    .legal-document,
    .content-box {
        padding: var(--spacing-md);
    }
    
    .success-content {
        padding: var(--spacing-md);
    }
    
    .success-icon {
        width: 80px;
        height: 80px;
        font-size: 2.5rem;
    }
}

@media screen and (max-width: 480px) {
    .button,
    .btn {
        padding: 0.875rem 1.75rem;
        font-size: 0.95rem;
    }
    
    .button.is-large {
        padding: 1rem 2rem;
        font-size: 1rem;
    }
    
    .navbar-brand .logo-text {
        font-size: 1.5rem;
    }
    
    .section-title::after {
        height: 3px;
    }
    
    .social-links {
        flex-direction: column;
    }
    
    .social-link {
        width: 100%;
        text-align: center;
    }
}

/* ============================================
   Print Styles
   ============================================ */
@media print {
    .site-header,
    .site-footer,
    .hero-buttons,
    .slider-controls,
    .navbar-burger {
        display: none;
    }
    
    .section {
        page-break-inside: avoid;
    }
    
    a {
        text-decoration: underline;
    }
}

/* ============================================
   Accessibility
   ============================================ */
.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border-width: 0;
}

*:focus-visible {
    outline: 3px solid var(--primary-color);
    outline-offset: 3px;
}

button:focus-visible,
a:focus-visible,
input:focus-visible,
textarea:focus-visible,
select:focus-visible {
    outline: 3px solid var(--primary-color);
    outline-offset: 2px;
}

/* ============================================
   Performance Optimizations
   ============================================ */
.hero,
.page-hero {
    will-change: transform;
}

.service-card img,
.portfolio-card img,
.team-card img,
.gallery-item img {
    will-change: transform;
}

@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}
/* ============================================
   ABOUT & CONTACT PAGES STYLES
   ============================================ */

/* About Hero */
.about-hero-section {
  padding: 7rem 0 3rem;
  background: var(--gradient-primary);
}

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

.about-hero-section .section-subtitle {
  color: rgba(255, 255, 255, 0.85);
}

/* Story Section */
.story-section {
  background: var(--bg-light);
}

.story-section .section-title {
  color: var(--primary-color);
}

.story-text {
  color: var(--text-secondary);
  line-height: 1.8;
  margin-bottom: 1rem;
}

.story-section img {
  width: 100%;
  border-radius: 12px;
  box-shadow: var(--shadow-brutal);
}

/* Mission Section */
.mission-section {
  background: var(--bg-secondary);
}

.mission-section .section-title {
  color: var(--primary-color);
}

.mission-section .section-subtitle {
  color: var(--text-secondary);
}

.value-card {
  background: var(--bg-secondary);
  border-radius: 12px;
  padding: 2rem;
  height: 100%;
  box-shadow: var(--shadow-light);
  border-left: 4px solid var(--primary-color);
  transition: transform 0.3s ease;
}

.value-card:hover {
  transform: translateY(-4px);
}

.value-card h3 {
  color: var(--text-primary);
  margin-bottom: 0.75rem;
}

.value-card p {
  color: var(--text-secondary);
  line-height: 1.7;
}

/* Team Section */
.team-section {
  background: var(--bg-light);
}

.team-section .section-title {
  color: var(--primary-color);
}

.team-section .section-subtitle {
  color: var(--text-secondary);
}

.team-grid {
  margin-top: 1rem;
}

.team-card {
  border-radius: 12px;
  overflow: hidden;
  box-shadow: var(--shadow-light);
  border: 3px solid var(--text-primary);
  height: 100%;
  transition: transform 0.3s ease;
}

.team-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-hover);
}

.team-card .image-container {
  overflow: hidden;
}

.team-card .image-container img {
  width: 100%;
  height: 260px;
  object-fit: cover;
  display: block;
}

.team-card .card-content .subtitle {
  color: var(--primary-color);
  font-weight: 600;
}

/* Achievements Section */
.achievements-section {
  background: var(--bg-secondary);
}

.achievements-section .section-title {
  color: var(--primary-color);
}

.achievements-section .section-subtitle {
  color: var(--text-secondary);
}

.achievement-item {
  background: var(--bg-secondary);
  border-radius: 12px;
  padding: 2rem;
  box-shadow: var(--shadow-light);
  border: 3px solid var(--text-primary);
  height: 100%;
  text-align: center;
}

.achievement-number {
  font-size: 2.5rem;
  font-weight: 800;
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 0.5rem;
  font-family: var(--font-heading);
}

.achievement-item h3 {
  color: var(--text-primary);
}

.achievement-item p {
  color: var(--text-secondary);
  line-height: 1.7;
}

/* Testimonials Section */
.testimonials-section {
  background: var(--bg-light);
}

.testimonials-section .section-title {
  color: var(--primary-color);
}

.testimonials-section .section-subtitle {
  color: var(--text-secondary);
}

.testimonial-card {
  border-radius: 12px;
  box-shadow: var(--shadow-light);
  border: 3px solid var(--text-primary);
  height: 100%;
  transition: transform 0.3s ease;
}

.testimonial-card:hover {
  transform: translateY(-4px);
}

.testimonial-header {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1rem;
}

.testimonial-image {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid var(--primary-color);
}

.testimonial-info .title {
  margin-bottom: 0;
}

.testimonial-text {
  color: var(--text-secondary);
  line-height: 1.8;
  font-style: italic;
}

/* Gallery Section */
.gallery-section .section-title {
  color: var(--primary-color);
}

.gallery-section .section-subtitle {
  color: var(--text-secondary);
}

.about-gallery {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
  margin-top: 2rem;
}

.gallery-item-about {
  border-radius: 12px;
  overflow: hidden;
  box-shadow: var(--shadow-light);
  border: 3px solid var(--text-primary);
}

.gallery-item-about img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  display: block;
  transition: transform 0.4s ease;
}

.gallery-item-about:hover img {
  transform: scale(1.05);
}

/* CTA Section */
.cta-section {
  background: var(--gradient-primary);
}

.cta-content {
  padding: 2rem 0;
}

.cta-content .title {
  color: var(--text-white);
}

.cta-content .subtitle {
  color: rgba(255, 255, 255, 0.85);
  margin-bottom: 2rem;
}

/* Contact Page */
.page-hero {
  padding: 7rem 0 3rem;
  background: var(--gradient-primary);
}

.page-title {
  color: var(--text-white) !important;
}

.page-hero .subtitle {
  color: rgba(255, 255, 255, 0.85);
}

/* Contact Info Cards */
.contact-info-section {
  background: var(--bg-light);
}

.contact-info-card {
  border-radius: 12px;
  box-shadow: var(--shadow-light);
  border: 3px solid var(--text-primary);
  height: 100%;
  transition: transform 0.3s ease;
}

.contact-info-card:hover {
  transform: translateY(-4px);
}

.contact-detail {
  margin-bottom: 1rem;
}

.contact-label {
  color: var(--text-light);
  font-size: 0.85rem;
  font-weight: 600;
  text-transform: uppercase;
  margin-bottom: 0.15rem;
}

.contact-value {
  color: var(--text-primary);
  font-weight: 500;
}

/* Map Section */
.map-section .section-title {
  color: var(--primary-color);
}

.map-wrapper {
  border-radius: 12px;
  overflow: hidden;
  box-shadow: var(--shadow-brutal);
  margin-top: 2rem;
}

.map-wrapper iframe {
  display: block;
}

/* Contact Form */
.contact-form-section {
  background: var(--bg-light);
}

.contact-form-section .section-title {
  color: var(--primary-color);
}

.contact-form-wrapper {
  background: var(--bg-secondary);
  border-radius: 12px;
  padding: 2.5rem;
  box-shadow: var(--shadow-light);
  border: 3px solid var(--text-primary);
}

.contact-form .input,
.contact-form .textarea,
.contact-form .select select {
  border: 2px solid var(--bg-primary);
  border-radius: 8px;
  transition: border-color 0.2s ease;
}

.contact-form .input:focus,
.contact-form .textarea:focus,
.contact-form .select select:focus {
  border-color: var(--primary-color);
  box-shadow: 0 0 0 3px rgba(255, 107, 53, 0.15);
}

.contact-form .label {
  color: var(--text-primary);
  font-weight: 600;
}

/* Why Contact Section */
.why-contact-section {
  background: var(--bg-secondary);
}

.why-contact-section .section-title {
  color: var(--primary-color);
}

.feature-card {
  border-radius: 12px;
  box-shadow: var(--shadow-light);
  border: 3px solid var(--text-primary);
  height: 100%;
  transition: transform 0.3s ease;
}

.feature-card:hover {
  transform: translateY(-4px);
}

/* Responsive */
@media (max-width: 768px) {
  .about-hero-section,
  .page-hero {
    padding: 5rem 0 2rem;
  }

  .about-gallery {
    grid-template-columns: 1fr;
  }
}
