/* Base Styles and Variables */
@import url('https://fonts.googleapis.com/css2?family=Roboto:wght@300;400;500;600;700;800&family=Montserrat:wght@400;500;600;700;800&display=swap');

:root {
    --primary-color: #e2692b;
    --primary-dark: #c15a26;
    --primary-light: #f08c5a;
    --secondary-color: #ff6b6b;
    --secondary-dark: #ff5252;
    --accent-color: #4a6bff;
    --dark-bg: #0c1524;
    --darker-bg: #0a121f;
    --light-text: #f8f9fa;
    --gray-text: #e0e0e0;
    --card-bg: #1a2332;
    --card-hover: #2a3544;
    --border-color: #2a3544;
    --border-light: #475569;
    --success-color: #51cf66;
    --warning-color: #ffd43b;
    --danger-color: #ff6b6b;
    --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
    --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
    --shadow-2xl: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Roboto', 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background-color: var(--dark-bg);
    color: var(--light-text);
    line-height: 1.6;
    overflow-x: hidden;
    padding-top: 116px; /* Account for fixed nav height */
}

/* Typography */
h1, h2, h3, h4 {
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    margin-bottom: 1.5rem;
    line-height: 1.2;
    letter-spacing: -0.02em;
}

h1 {
    font-size: 3.5rem;
    font-weight: 800;
    color: var(--primary-color);
    text-shadow: var(--shadow-lg);
    line-height: 1.1;
}

h2 {
    font-size: 2.8rem;
    font-weight: 700;
    color: var(--light-text);
    text-align: center;
    margin-bottom: 2.5rem;
    position: relative;
}

h2::after {
    content: '';
    display: block;
    width: 100px;
    height: 5px;
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
    margin: 1.5rem auto;
    border-radius: 3px;
}

h3 {
    font-size: 2rem;
    font-weight: 600;
    color: var(--light-text);
    margin-bottom: 1.5rem;
    line-height: 1.3;
}

h4 {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--light-text);
    margin-bottom: 1rem;
    line-height: 1.4;
}

p {
    margin-bottom: 1.5rem;
    color: var(--gray-text);
    font-weight: 400;
    line-height: 1.8;
    font-size: 1.1rem;
}

.subtitle {
    font-size: 1.4rem;
    font-weight: 500;
    color: var(--gray-text);
    max-width: 800px;
    margin: 0 auto 3rem;
    line-height: 1.7;
}

/* Container */
.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 2rem 0;
}

/* Navigation */
nav {
    background: linear-gradient(135deg, rgba(10, 18, 31, 0.95), rgba(12, 21, 36, 0.98));
    padding: 0.8rem 2.5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--border-color);
}

.logo {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.logo-image {
    height: 90px;
    width: 90px;
    border-radius: 50%;
    box-shadow: var(--shadow-lg);
    animation: none;
}

.logo span {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-color);
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-links li {
    position: relative;
}

.nav-links a {
    color: var(--light-text);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s;
    position: relative;
}

.nav-links a:hover {
    color: var(--primary-color);
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    transition: width 0.3s;
}

.nav-links a:hover::after {
    width: 100%;
}

/* Dropdown indicator */
.nav-links li:has(ul) a::after {
    content: ' ▼';
    position: static;
    font-size: 0.8em;
    margin-left: 0.2rem;
    opacity: 0.7;
}

/* Dropdown Menu */
.nav-links ul {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    background: var(--darker-bg);
    min-width: 200px;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.3);
    border-radius: 8px;
    padding: 0.5rem 0;
    z-index: 1001;
}

.nav-links li:hover > ul {
    display: block;
}

.nav-links ul li {
    display: block;
    margin: 0;
    position: static;
}

.nav-links ul li a {
    padding: 0.75rem 1.5rem;
    display: block;
    white-space: nowrap;
}

.nav-links ul li a:hover {
    background: var(--card-bg);
}

.nav-links ul li a::after {
    display: none;
}

/* CTA buttons removed from nav */

/* Mobile Menu */
.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    color: var(--light-text);
    font-size: 1.5rem;
    cursor: pointer;
    padding: 0.5rem;
    border-radius: 4px;
    transition: background-color 0.3s;
    z-index: 1001;
}

.mobile-menu-btn:hover {
    background-color: var(--card-bg);
}

.nav-links.active {
    display: flex !important;
    flex-direction: column;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--darker-bg);
    padding: 1rem;
    box-shadow: var(--shadow-xl);
    border-top: 1px solid var(--border-color);
}

/* Mobile Navigation Layout */
@media (max-width: 768px) {
    nav {
        flex-direction: row;
        gap: 1rem;
        padding: 1rem;
    }
    
    .logo {
        order: 1;
        margin: 0;
        align-self: center;
        margin-bottom: 0;
        margin-left: 0;
    }
    
    .logo-image {
        height: 60px;
        width: 60px;
    }
    
    .nav-links {
        order: 3;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: var(--darker-bg);
        padding: 1rem;
        box-shadow: var(--shadow-xl);
        border-top: 1px solid var(--border-color);
        display: none;
        flex-direction: column;
        gap: 1rem;
        text-align: center;
        z-index: 999;
    }
    
    .nav-links.active {
        display: flex !important;
    }
    
    .mobile-menu-btn {
        display: block;
        order: 2;
        margin: 0;
        align-self: center;
        padding: 0.5rem;
        font-size: 1.8rem;
        margin-right: 0;
    }
    
    .cta-buttons {
        display: none;
    }
}

/* Modern Professional Button Design */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding-top: 10px;
    padding-bottom: 10px;
    padding-left: 18px;
    padding-right: 18px;
    border: none;
    border-radius: 15px;
    font-weight: 600;
    font-size: 15px;
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    cursor: pointer;
    min-width: 160px;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    letter-spacing: 0.5px;
    line-height: 1.4;
    box-shadow:
        0 2px 4px rgba(0, 0, 0, 0.1),
        0 4px 12px rgba(0, 0, 0, 0.15);
    text-transform: none;
    backdrop-filter: blur(8px);
}

.btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
    transition: left 0.8s ease;
    z-index: 1;
}

.btn::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.3) 0%, transparent 70%);
    transition: all 0.6s ease;
    transform: translate(-50%, -50%);
    border-radius: 50%;
    z-index: 1;
}

.btn:hover {
    transform: translateY(-2px);
    box-shadow:
        0 8px 20px rgba(0, 0, 0, 0.2),
        0 4px 10px rgba(0, 0, 0, 0.1);
}

.btn:active {
    transform: translateY(0px);
    box-shadow:
        0 2px 4px rgba(0, 0, 0, 0.1),
        0 4px 12px rgba(0, 0, 0, 0.15);
}

.btn span {
    position: relative;
    z-index: 2;
    text-decoration: none !important;
}

/* Ensure no underline on buttons and their children */
.btn,
.btn *,
.btn-text,
.btn-arrow,
a.btn,
a.btn-primary,
a.btn-secondary,
a.btn-outline,
a.btn:hover,
a.btn-primary:hover,
a.btn-secondary:hover,
a.btn-outline:hover {
    text-decoration: none !important;
}

/* Remove any border that might look like underline */
.btn {
    border-bottom: none !important;
}

/* Specifically target anchor tags with button classes to override browser defaults */
a.btn,
a.btn-primary,
a.btn-secondary,
a.btn-outline,
a.btn:-webkit-any-link,
a.btn-primary:-webkit-any-link,
a.btn-secondary:-webkit-any-link,
a.btn-outline:-webkit-any-link {
    text-decoration: none !important;
}

/* Ensure no underline on hover for anchor buttons */
a.btn:hover,
a.btn-primary:hover,
a.btn-secondary:hover,
a.btn-outline:hover,
a.btn:-webkit-any-link:hover,
a.btn-primary:-webkit-any-link:hover,
a.btn-secondary:-webkit-any-link:hover,
a.btn-outline:-webkit-any-link:hover {
    text-decoration: none !important;
}

/* Arrow styling for buttons */
.btn-arrow {
    font-size: 18px;
    font-weight: bold;
    margin-left: 8px;
    transition: transform 0.3s ease;
}

.btn:hover .btn-arrow {
    transform: translateX(4px);
}

/* Primary Button - Clean Professional Gradient */
.btn-primary {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
    color: white;
    border: 1px solid var(--primary-color);
    padding-top: 10px;
    padding-bottom: 10px;
    padding-left: 18px;
    padding-right: 18px;
    border-radius: 15px;
    transition: all 0.3s ease;
}

.btn-primary:hover {
    background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary-color) 100%);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(226, 105, 43, 0.3);
}

/* Secondary Button - Elegant Red Gradient */
.btn-secondary {
    background: linear-gradient(135deg,
        var(--secondary-color) 0%,
        color-mix(in srgb, var(--secondary-color) 80%, #000 20%) 50%,
        var(--secondary-color) 100%
    );
    color: white;
    border: 2px solid transparent;
    padding-top: 10px;
    padding-bottom: 10px;
    padding-left: 18px;
    padding-right: 18px;
    border-radius: 15px;
    position: relative;
}

.btn-secondary::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg,
        rgba(255, 255, 255, 0.15) 0%,
        rgba(255, 255, 255, 0.05) 30%,
        rgba(255, 255, 255, 0) 50%,
        rgba(0, 0, 0, 0.2) 100%
    );
    border-radius: 50px;
    pointer-events: none;
}

.btn-secondary::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg,
        rgba(255, 255, 255, 0.1) 0%,
        rgba(255, 255, 255, 0) 50%,
        rgba(0, 0, 0, 0.1) 100%
    );
    border-radius: 50px;
    pointer-events: none;
}

.btn-secondary:hover {
    background: linear-gradient(135deg,
        color-mix(in srgb, var(--secondary-color) 85%, #000 15%) 0%,
        var(--secondary-color) 100%
    );
    transform: translateY(-2px);
    box-shadow:
        0 15px 40px rgba(244, 67, 54, 0.4),
        0 8px 20px rgba(244, 67, 54, 0.2),
        0 0 0 2px rgba(244, 67, 54, 0.1),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

/* Outline Button - Clean and Professional */
.btn-outline {
    background: rgba(255, 255, 255, 0.08);
    color: var(--primary-color);
    border: 3px solid var(--primary-color);
    backdrop-filter: blur(15px);
    position: relative;
    padding-top: 10px;
    padding-bottom: 10px;
    padding-left: 18px;
    padding-right: 18px;
    border-radius: 15px;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.btn-outline::before {
    background: linear-gradient(135deg,
        rgba(226, 105, 43, 0.15),
        rgba(255, 107, 107, 0.15),
        rgba(74, 107, 255, 0.15)
    );
}

.btn-outline::after {
    background: linear-gradient(135deg,
        rgba(226, 105, 43, 0.2) 0%,
        rgba(255, 255, 255, 0.1) 50%,
        rgba(74, 107, 255, 0.2) 100%
    );
}

.btn-outline:hover {
    background: linear-gradient(135deg,
        var(--primary-color) 0%,
        color-mix(in srgb, var(--primary-color) 80%, var(--secondary-color) 20%) 100%
    );
    color: white;
    border-color: var(--primary-color);
    box-shadow:
        0 8px 20px rgba(226, 105, 43, 0.3);
    transform: translateY(-2px);
}

/* Add focus states for accessibility */
.btn:focus-visible {
    outline: 2px solid var(--primary-color);
    outline-offset: 2px;
}

/* Disabled state */
.btn:disabled {
    opacity: 0.6;
    cursor: not-allowed;
    transform: none !important;
    box-shadow: none !important;
}

/* Loading state */
.btn.loading {
    position: relative;
    color: transparent;
}

.btn.loading::after {
    content: '';
    position: absolute;
    width: 16px;
    height: 16px;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    border-top-color: white;
    animation: spin 0.8s linear infinite;
}

.btn-outline.loading::after {
    border: 2px solid rgba(226, 105, 43, 0.3);
    border-top-color: var(--primary-color);
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

/* Size variants */
.btn-sm {
    padding: 10px 20px;
    font-size: 13px;
    min-width: 120px;
    gap: 8px;
}

.btn-lg {
    padding: 18px 36px;
    font-size: 16px;
    min-width: 160px;
    gap: 12px;
    border-radius: 10px;
}

/* Full width button */
.btn-block {
    width: 100%;
    display: flex;
    justify-content: center;
}

/* Icon alignment */
.btn .btn-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.3s ease;
}

.btn:hover .btn-icon {
    transform: translateX(4px);
}

/* Button group styling */
.btn-group {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

@media (max-width: 640px) {
    .btn-group {
        flex-direction: column;
        width: 100%;
    }

    .btn-group .btn {
        width: 100%;
    }
}

/* Hero Section */
.hero {
    position: relative;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.hero-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.hero-main-image {
    width: 100%;
    height: 100%;
    object-fit: contain;
    display: block;
    filter: brightness(0.8);
}

@media (min-width: 769px) {
    .hero-main-image {
        object-fit: contain !important;
    }
}

/* Mobile-specific hero adjustments */
@media (max-width: 768px) {
    .hero {
        height: auto; /* Allow content to determine height */
    }

    .hero-image {
        position: relative;
        width: 100%;
        padding-top: 250px;
    }

    .hero-main-image {
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        width: 100%;
        height: 100%;
        object-fit: contain;
    }

    .hero-content-section {
        padding: 2rem 0; /* Reduced padding for mobile */
    }

    .hero-tagline {
        font-size: 2rem; /* Reduced font size for mobile */
    }

    .hero-welcome {
        font-size: 1rem; /* Reduced font size for mobile */
    }
}

/* Hero Content Section */
.hero-content-section {
    position: relative;
    padding: 4rem 0;
    background: linear-gradient(135deg, var(--dark-bg) 0%, var(--darker-bg) 100%);
    z-index: 2;
}

.hero-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
    padding: 0 2rem;
    z-index: 3;
}

.hero-text {
    margin-bottom: 2rem;
}

.hero-welcome {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    color: var(--gray-text);
    line-height: 1.6;
    font-weight: 400;
}

.hero-tagline {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin: 0.5rem 0;
    font-weight: 700;
    text-shadow: 0 4px 15px rgba(226, 105, 43, 0.3);
}

.hero-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    justify-content: center;
    margin-top: 2rem;
}

/* Ensure hero content is properly spaced from the image */
.hero-content-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--primary-color), transparent);
    z-index: 4;
}

.hero-text {
    margin-bottom: 2rem;
}

.hero-intro {
    font-size: 1.2rem;
    margin-bottom: 1.5rem;
}

.hero-welcome {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    color: var(--gray-text);
}

.hero-tagline {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin: 0.5rem 0;
    font-weight: 700;
}

.hero-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    margin-top: 2rem;
    justify-content: center;
}

.hero-visual {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}

.hero-image-container {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
    transition: transform 0.3s ease;
}

.hero-image-container:hover {
    transform: scale(1.02);
}

.hero-main-image {
    width: 100%;
    height: 100%;
    object-fit: cover !important;
    display: block;
}

.hero-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.8));
    padding: 2rem 1.5rem 1.5rem;
    display: flex;
    justify-content: space-around;
    gap: 1rem;
}

.hero-stat {
    text-align: center;
    color: white;
}

.stat-number {
    font-size: 2rem;
    font-weight: 700;
    display: block;
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 0.9rem;
    opacity: 0.9;
}

/* Section Styling */
section {
    padding: 6rem 0;
}

.section-intro {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 4rem;
    font-size: 1.1rem;
    font-weight: 500;
    color: var(--gray-text);
    line-height: 1.8;
}

/* Section Headers */
.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-header h2 {
    font-size: 2.2rem;
    margin-bottom: 1.5rem;
    text-align: center;
}

.section-header h2 i {
    color: var(--primary-color);
    font-size: 3rem;
    margin-right: 15px;
}

/* About Section */
.about-content {
    display: flex;
    gap: 3rem;
    align-items: center;
    margin-bottom: 3rem;
}

.about-text {
    flex: 1;
}

.about-image {
    flex: 1;
}

.about-image .about-img {
    width: 100%;
    height: 300px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    object-fit: cover;
    transition: transform 0.3s ease;
}

.about-image:hover .about-img {
    transform: scale(1.02);
}

.about-placeholder {
    background: linear-gradient(135deg, var(--secondary-color), var(--primary-color));
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.5rem;
    font-weight: bold;
    text-shadow: 0 2px 10px rgba(0,0,0,0.5);
}

.footer-logo .logo-image {
    height: 120px;
    width: 120px;
    margin-bottom: 1rem;
}

.about-overview {
    text-align: center;
    margin-bottom: 3rem;
    font-size: 1.1rem;
}

.story-section {
    margin-bottom: 3rem;
}

.story-content-wrapper {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.story-text {
    order: 2;
}

.story-image {
    order: 1;
}

.story-img {
    width: 100%;
    height: 700px;
    border-radius: 15px;
    object-fit: cover;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease;
}

.story-img:hover {
    transform: scale(1.05);
}

.story-content p {
    margin-bottom: 1.5rem;
}

.story-questions {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1rem;
    margin: 2rem 0;
}

.question-card {
    background: linear-gradient(135deg, var(--card-bg) 0%, var(--card-hover) 100%);
    padding: 1.5rem;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    border: 1px solid var(--border-color);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
    overflow: hidden;
}

.question-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
    border-radius: 15px 15px 0 0;
}

.question-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
}

.question-card i {
    font-size: 2rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
    display: block;
}

.question-card p {
    font-style: italic;
    color: var(--light-text);
    margin: 0;
    font-size: 1rem;
    line-height: 1.6;
}

/* Mobile-specific adjustments for story images */
@media (max-width: 768px) {
    .story-img {
        object-fit: contain;
        height: 250px;
    }
}

/* Mobile layout is already column, no changes needed */

.vision-mission {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    margin-bottom: 3rem;
}

.vision, .mission {
    background: var(--card-bg);
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.vision h3, .mission h3 {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
}

.vision h3 i, .mission h3 i {
    color: var(--primary-color);
}

.mission ul li {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 1rem;
}

.values {
    background: var(--card-bg);
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.values h3 {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
}

.values h3 i {
    color: var(--primary-color);
}

/* Phygital Sport Section */
.phygital-description {
    text-align: center;
    margin-bottom: 3rem;
    font-size: 1.1rem;
}

/* Examples Section */
.examples-section h3 {
    text-align: center;
    margin-bottom: 2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    color: var(--light-text);
    font-size: 1.6rem;
    font-weight: 600;
}

.examples-section h3 i {
    color: var(--primary-color);
    font-size: 1.8rem;
}

.examples-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.example-card {
    background: linear-gradient(135deg, var(--card-bg) 0%, var(--card-hover) 100%);
    padding: 2.5rem 2rem;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid var(--border-color);
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
}

.example-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
    border-radius: 20px 20px 0 0;
}

.example-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
    border-color: var(--primary-light);
}

.example-icon {
    font-size: 3.5rem;
    color: var(--primary-color);
    transition: transform 0.3s ease;
    background: rgba(226, 105, 43, 0.1);
    width: 100px;
    height: 100px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid rgba(226, 105, 43, 0.2);
}

.example-card:hover .example-icon {
    transform: scale(1.1) rotate(5deg);
    background: rgba(226, 105, 43, 0.2);
    border-color: var(--primary-color);
}

.example-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
}

.example-content h4 {
    color: var(--light-text);
    margin-bottom: 0.5rem;
    font-size: 1.4rem;
    font-weight: 600;
    text-align: center;
}

.example-content p {
    color: var(--gray-text);
    margin: 0;
    font-size: 1.1rem;
    line-height: 1.6;
    text-align: center;
    font-weight: 500;
}

/* Responsive Design for Examples Section */
@media (max-width: 768px) {
    .examples-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .example-card {
        padding: 2rem 1.5rem;
    }

    .example-icon {
        font-size: 3rem;
        width: 80px;
        height: 80px;
    }
}

/* Why Phygital Sport is for You Section */
.why-phygital {
    background: linear-gradient(135deg, var(--darker-bg) 0%, var(--dark-bg) 100%);
    padding: 4rem 0;
    position: relative;
    overflow: hidden;
}

.why-phygital::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 20% 50%, rgba(226, 105, 43, 0.05) 0%, transparent 50%),
                radial-gradient(circle at 80% 80%, rgba(255, 107, 107, 0.05) 0%, transparent 50%);
    pointer-events: none;
}

.why-content {
    max-width: 900px;
    margin: 0 auto;
    background: var(--card-bg);
    padding: 3rem;
    border-radius: 25px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
    border: 1px solid var(--border-color);
    position: relative;
    overflow: hidden;
}

.why-content::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 6px;
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
    border-radius: 25px 25px 0 0;
}

.why-content p {
    margin-bottom: 2rem;
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--gray-text);
}

/* Why Intro Section */
.why-intro {
    margin-bottom: 2rem;
}

.why-intro p {
    margin-bottom: 1.5rem;
}

/* Why Symptoms Section */
.why-symptoms {
    margin-bottom: 3rem;
}

.symptom-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
}

.symptom-item {
    background: var(--card-bg);
    padding: 1.5rem;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    border: 1px solid var(--border-color);
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
    min-height: 180px;
}

.symptom-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
    border-radius: 15px 15px 0 0;
}

.symptom-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.3);
    border-color: var(--primary-light);
}

.symptom-item i {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
    transition: transform 0.3s ease;
}

.symptom-item:hover i {
    transform: scale(1.1) rotate(5deg);
}

.symptom-item h4 {
    color: var(--light-text);
    margin-bottom: 0.5rem;
    font-size: 1.2rem;
    font-weight: 600;
    line-height: 1.3;
}

.symptom-item p {
    color: var(--gray-text);
    margin: 0;
    font-size: 1rem;
    line-height: 1.4;
    font-weight: 500;
}

/* Why Relevance Section */
.why-relevance {
    margin-bottom: 3rem;
    background: rgba(255, 255, 255, 0.03);
    padding: 2rem;
    border-radius: 15px;
    border: 1px solid var(--border-light);
}

.why-relevance p {
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
    line-height: 1.7;
}

/* Why Solution Section */
.why-solution {
    margin-bottom: 3rem;
}

.solution-content {
    display: flex;
    align-items: center;
    gap: 2rem;
    background: var(--card-bg);
    padding: 2.5rem;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    border: 1px solid var(--border-color);
    position: relative;
    overflow: hidden;
}

.solution-content::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
    border-radius: 20px 20px 0 0;
}

.solution-text {
    flex: 1;
}

.solution-text h3 {
    color: var(--light-text);
    margin-bottom: 1.5rem;
    font-size: 1.6rem;
    font-weight: 600;
}

.solution-text p {
    color: var(--gray-text);
    line-height: 1.7;
    font-size: 1.1rem;
    margin: 0;
}

.solution-visual {
    flex-shrink: 0;
    width: 120px;
    height: 120px;
    position: relative;
}

.visual-icon {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(226, 105, 43, 0.1), rgba(255, 107, 107, 0.1));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.visual-icon i {
    font-size: 3rem;
    color: var(--primary-color);
    position: relative;
    z-index: 2;
}

.visual-icon i:first-child {
    margin-right: 1rem;
}

/* Why Key Points Section */
.why-key-points {
    margin-bottom: 3rem;
}

.key-points-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
}

.key-point {
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
    padding: 1.5rem;
    background: var(--card-bg);
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    border: 1px solid var(--border-color);
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.key-point::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
    border-radius: 15px 15px 0 0;
}

.key-point:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.3);
    border-color: var(--primary-light);
}

.key-point-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, rgba(226, 105, 43, 0.1), rgba(255, 107, 107, 0.1));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-color);
    font-size: 1.2rem;
    transition: all 0.3s ease;
    flex-shrink: 0;
}

.key-point:hover .key-point-icon {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: white;
    transform: scale(1.1);
}

.key-point-content h4 {
    color: var(--light-text);
    margin-bottom: 0.5rem;
    font-size: 1.2rem;
    font-weight: 600;
}

.key-point-content p {
    color: var(--gray-text);
    margin: 0;
    font-size: 1rem;
    line-height: 1.6;
}

/* Why Benefits Section */
.why-benefits {
    margin-bottom: 3rem;
}

.why-benefits h3 {
    color: var(--light-text);
    margin-bottom: 2rem;
    text-align: center;
    font-size: 1.6rem;
    font-weight: 600;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 1.5rem;
}

.benefit-item {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    padding: 1.5rem;
    background: var(--card-bg);
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    border: 1px solid var(--border-color);
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.benefit-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
    border-radius: 15px 15px 0 0;
}

.benefit-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.3);
    border-color: var(--primary-light);
}

.benefit-item i {
    font-size: 2.5rem;
    color: var(--primary-color);
    flex-shrink: 0;
    transition: transform 0.3s ease;
}

.benefit-item:hover i {
    transform: scale(1.1) rotate(5deg);
}

.benefit-item h4 {
    color: var(--light-text);
    margin: 0;
    font-size: 1.2rem;
    font-weight: 600;
}

/* Why CTA Section */
.why-cta {
    background: linear-gradient(135deg, rgba(226, 105, 43, 0.1) 0%, rgba(255, 107, 107, 0.1) 100%);
    padding: 2.5rem;
    border-radius: 20px;
    border: 2px solid var(--primary-color);
}

.cta-content {
    text-align: center;
}

.cta-content h3 {
    color: var(--primary-color);
    margin-bottom: 1.5rem;
    font-size: 1.8rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
}

.cta-content h3 i {
    color: var(--primary-color);
    font-size: 2.5rem;
}

.cta-benefits {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    align-items: center;
}

.cta-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem 2rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 25px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
    width: 100%;
    max-width: 500px;
}

.cta-item:hover {
    background: rgba(226, 105, 43, 0.1);
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(226, 105, 43, 0.2);
}

.cta-item i {
    font-size: 1.5rem;
    color: var(--primary-color);
    flex-shrink: 0;
}

.cta-item span {
    color: var(--light-text);
    font-weight: 600;
    font-size: 1.1rem;
}

/* Responsive Design for Why Phygital Section */
@media (max-width: 768px) {
    .why-content {
        padding: 2rem;
    }

    .why-content p {
        font-size: 1rem;
        line-height: 1.7;
    }

    .symptom-grid {
        grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
        gap: 1rem;
    }

    .symptom-item {
        padding: 1.2rem;
    }

    .symptom-item i {
        font-size: 2rem;
    }

    .solution-content {
        flex-direction: column;
        text-align: center;
        gap: 1.5rem;
    }

    .key-points-grid {
        grid-template-columns: 1fr;
    }

    .key-point {
        flex-direction: column;
        align-items: flex-start;
        text-align: left;
    }

    .key-point-icon {
        align-self: center;
    }

    .benefits-grid {
        grid-template-columns: 1fr;
    }

    .benefit-item {
        flex-direction: column;
        align-items: flex-start;
        text-align: left;
    }

    .benefit-item i {
        align-self: center;
    }

    .cta-benefits {
        gap: 0.5rem;
    }

    .cta-item {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
}

/* Why Phygital Sport is for You Section - Minimalist Design */
.why-phygital-minimal {
    background: linear-gradient(135deg, var(--darker-bg) 0%, var(--dark-bg) 100%);
    padding: 4rem 0;
    position: relative;
    overflow: hidden;
}

.why-phygital-minimal::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 10% 20%, rgba(226, 105, 43, 0.02) 0%, transparent 50%),
                radial-gradient(circle at 90% 80%, rgba(255, 107, 107, 0.02) 0%, transparent 50%);
    pointer-events: none;
}

.minimal-subtitle {
    text-align: center;
    font-size: 1.2rem;
    color: var(--gray-text);
    margin-bottom: 3rem;
    font-weight: 500;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    font-style: italic;
}

.minimal-content-wrapper {
    display: flex;
    gap: 3rem;
    margin-bottom: 4rem;
}

.minimal-main-content {
    flex: 1;
    background: var(--card-bg);
    padding: 3rem;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    border: 1px solid var(--border-color);
    position: relative;
    overflow: hidden;
}

.minimal-main-content::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
    border-radius: 20px 20px 0 0;
}

.minimal-section {
    margin-bottom: 2.5rem;
}

.minimal-section:last-child {
    margin-bottom: 0;
}

.minimal-section h3 {
    color: var(--light-text);
    margin-bottom: 1rem;
    font-size: 1.6rem;
    display: flex;
    align-items: center;
    gap: 0.8rem;
}

.minimal-section h3 i {
    color: var(--primary-color);
    font-size: 1.8rem;
}

.minimal-section p {
    color: var(--gray-text);
    margin-bottom: 1.5rem;
    line-height: 1.7;
    font-size: 1.1rem;
}

.minimal-symptoms {
    margin: 1.5rem 0;
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
}

.minimal-symptom {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    color: var(--light-text);
    font-size: 1.1rem;
    line-height: 1.6;
    transition: all 0.3s ease;
}

.minimal-symptom:hover {
    color: var(--primary-color);
    transform: translateX(5px);
}

.symptom-dot {
    color: var(--primary-color);
    font-size: 1.2rem;
    margin-top: 0.2rem;
    font-weight: bold;
}

.minimal-keys {
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
    margin-top: 1.5rem;
}

.minimal-key {
    padding: 0.8rem 1rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 8px;
    border-left: 3px solid var(--primary-color);
    color: var(--light-text);
    font-weight: 500;
    transition: all 0.3s ease;
    font-size: 1.1rem;
}

.minimal-key:hover {
    background: rgba(226, 105, 43, 0.1);
    transform: translateX(5px);
    box-shadow: 0 5px 15px rgba(226, 105, 43, 0.2);
}

.minimal-benefits {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-top: 1.5rem;
}

.minimal-benefit {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 10px;
    transition: all 0.3s ease;
    border: 1px solid var(--border-light);
}

.minimal-benefit:hover {
    background: rgba(226, 105, 43, 0.05);
    border-color: var(--primary-color);
    transform: translateX(5px);
}

.benefit-icon {
    color: var(--primary-color);
    font-size: 1.3rem;
    flex-shrink: 0;
}

.minimal-benefit span {
    color: var(--light-text);
    font-weight: 500;
    font-size: 1.1rem;
}

/* Side Accent */
.minimal-side-accent {
    width: 250px;
    flex-shrink: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 1.5rem;
    background: linear-gradient(135deg, rgba(226, 105, 43, 0.1) 0%, rgba(255, 107, 107, 0.1) 100%);
    border-radius: 20px;
    padding: 2rem;
    border: 2px solid var(--primary-color);
    text-align: center;
    animation: pulse 2s ease-in-out infinite;
}

.accent-icon {
    font-size: 4rem;
    color: var(--primary-color);
}

.accent-text {
    color: var(--light-text);
    font-size: 1.2rem;
    font-weight: 600;
    font-style: italic;
}

/* Minimal CTA */
.minimal-cta {
    background: var(--card-bg);
    padding: 3rem;
    border-radius: 20px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
    border: 1px solid var(--border-color);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.minimal-cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 6px;
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
    border-radius: 20px 20px 0 0;
}

.cta-icon {
    font-size: 3.5rem;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
    animation: bounceIn 1s ease-out infinite;
}

.minimal-cta h3 {
    color: var(--light-text);
    margin-bottom: 1rem;
    font-size: 1.8rem;
}

.minimal-cta p {
    color: var(--gray-text);
    margin-bottom: 2rem;
    font-size: 1.2rem;
    line-height: 1.6;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.cta-divider {
    width: 100px;
    height: 3px;
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
    margin: 0 auto 1.5rem;
    border-radius: 3px;
}

.cta-final {
    color: var(--light-text);
    font-size: 1.3rem;
    font-weight: 600;
    font-style: italic;
    animation: pulse 1.5s ease-in-out infinite;
}

/* Responsive Design for Minimalist Section */
@media (max-width: 768px) {
    .minimal-content-wrapper {
        flex-direction: column;
    }

    .minimal-side-accent {
        width: 100%;
        flex-direction: row;
        gap: 2rem;
        text-align: left;
    }

    .accent-icon {
        font-size: 3rem;
    }

    .minimal-section h3 {
        font-size: 1.4rem;
    }

    .minimal-section h3 i {
        font-size: 1.6rem;
    }
}

/* Why Phygital Sport is for You Section - Alternative Design */
.why-phygital-alt {
    background: linear-gradient(135deg, var(--darker-bg) 0%, var(--dark-bg) 100%);
    padding: 4rem 0;
    position: relative;
    overflow: hidden;
}

.why-phygital-alt::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 20% 50%, rgba(226, 105, 43, 0.03) 0%, transparent 50%),
                radial-gradient(circle at 80% 80%, rgba(255, 107, 107, 0.03) 0%, transparent 50%);
    pointer-events: none;
}

.section-subtitle {
    text-align: center;
    font-size: 1.2rem;
    color: var(--gray-text);
    margin-bottom: 3rem;
    font-weight: 500;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

/* Problem Section */
.problem-section {
    display: flex;
    align-items: center;
    gap: 2rem;
    margin-bottom: 4rem;
    background: var(--card-bg);
    padding: 2.5rem;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    border: 1px solid var(--border-color);
    position: relative;
    overflow: hidden;
}

.problem-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
    border-radius: 20px 20px 0 0;
}

.problem-icon {
    font-size: 4rem;
    color: var(--primary-color);
    flex-shrink: 0;
    animation: float 3s ease-in-out infinite;
}

.problem-content {
    flex: 1;
}

.problem-content h3 {
    color: var(--light-text);
    margin-bottom: 1rem;
    font-size: 1.8rem;
}

/* Symptoms Grid */
.symptoms-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
    margin-bottom: 4rem;
}

.symptom-card {
    background: var(--card-bg);
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
    border: 1px solid var(--border-color);
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.symptom-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
    border-radius: 15px 15px 0 0;
}

.symptom-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    border-color: var(--primary-light);
}

.symptom-icon {
    font-size: 3rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
    transition: transform 0.3s ease;
}

.symptom-card:hover .symptom-icon {
    transform: scale(1.1) rotate(5deg);
}

.symptom-card h4 {
    color: var(--light-text);
    margin-bottom: 0.8rem;
    font-size: 1.3rem;
}

.symptom-card p {
    color: var(--gray-text);
    margin: 0;
    font-size: 1rem;
    line-height: 1.5;
}

/* Solution Section */
.solution-section {
    display: flex;
    align-items: center;
    gap: 2rem;
    margin-bottom: 4rem;
    background: var(--card-bg);
    padding: 2.5rem;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    border: 1px solid var(--border-color);
    position: relative;
    overflow: hidden;
}

.solution-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
    border-radius: 20px 20px 0 0;
}

.solution-icon {
    font-size: 4rem;
    color: var(--secondary-color);
    flex-shrink: 0;
    animation: pulse 2s ease-in-out infinite;
}

.solution-content {
    flex: 1;
}

.solution-content h3 {
    color: var(--light-text);
    margin-bottom: 1rem;
    font-size: 1.8rem;
}

.solution-points {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-top: 1.5rem;
}

.solution-point {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    padding: 0.8rem 1rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 10px;
    border-left: 3px solid var(--primary-color);
    transition: all 0.3s ease;
}

.solution-point:hover {
    background: rgba(226, 105, 43, 0.1);
    transform: translateX(5px);
    box-shadow: 0 5px 15px rgba(226, 105, 43, 0.2);
}

.solution-point i {
    color: var(--success-color);
    font-size: 1.2rem;
}

.solution-point span {
    color: var(--light-text);
    font-weight: 500;
}

/* Benefits Section */
.benefits-section {
    margin-bottom: 4rem;
    background: var(--card-bg);
    padding: 2.5rem;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    border: 1px solid var(--border-color);
    position: relative;
    overflow: hidden;
}

.benefits-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
    border-radius: 20px 20px 0 0;
}

.benefits-section h3 {
    color: var(--light-text);
    margin-bottom: 2rem;
    text-align: center;
}

.benefits-section h3 i {
    color: var(--primary-color);
    font-size: 2rem;
    margin-right: 10px;
}

.benefits-timeline {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.timeline-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1.5rem;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 15px;
    border: 1px solid var(--border-light);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.timeline-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
    border-radius: 15px 15px 0 0;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.timeline-item:hover {
    background: rgba(226, 105, 43, 0.05);
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(226, 105, 43, 0.2);
    border-color: var(--primary-color);
}

.timeline-item:hover::before {
    opacity: 1;
}

.timeline-icon {
    font-size: 2rem;
    color: var(--primary-color);
    flex-shrink: 0;
    margin-top: 0.2rem;
    transition: transform 0.3s ease;
}

.timeline-item:hover .timeline-icon {
    transform: scale(1.2) rotate(10deg);
}

.timeline-content h4 {
    color: var(--light-text);
    margin-bottom: 0.5rem;
    font-size: 1.2rem;
}

.timeline-content p {
    color: var(--gray-text);
    margin: 0;
    font-size: 1rem;
    line-height: 1.5;
}

/* Final CTA */
.final-cta {
    display: flex;
    align-items: center;
    gap: 2rem;
    padding: 3rem;
    background: linear-gradient(135deg, rgba(226, 105, 43, 0.1) 0%, rgba(255, 107, 107, 0.1) 100%);
    border-radius: 25px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
    border: 2px solid var(--primary-color);
    position: relative;
    overflow: hidden;
}

.final-cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 6px;
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
    border-radius: 25px 25px 0 0;
}

.cta-icon {
    font-size: 4rem;
    color: var(--primary-color);
    flex-shrink: 0;
    animation: bounceIn 1s ease-out infinite;
}

.cta-text {
    flex: 1;
}

.cta-text h3 {
    color: var(--light-text);
    margin-bottom: 1rem;
    font-size: 1.8rem;
}

.cta-text p {
    color: var(--gray-text);
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
    line-height: 1.6;
}

.cta-highlight {
    padding: 0.8rem 1.5rem;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border-radius: 10px;
    display: inline-block;
    animation: pulse 1.5s ease-in-out infinite;
}

.cta-highlight span {
    color: white;
    font-weight: 600;
    font-size: 1.1rem;
}

/* Responsive Design for Alternative Section */
@media (max-width: 768px) {
    .problem-section,
    .solution-section,
    .final-cta {
        flex-direction: column;
        text-align: center;
    }

    .problem-icon,
    .solution-icon,
    .cta-icon {
        margin-bottom: 1.5rem;
    }

    .symptoms-grid {
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
        gap: 1rem;
    }

    .benefits-timeline {
        grid-template-columns: 1fr;
    }

    .section-subtitle {
        font-size: 1.1rem;
    }
}

/* Original Why Phygital Section (kept for reference) */
.why-phygital {
    background: linear-gradient(135deg, var(--darker-bg) 0%, var(--dark-bg) 100%);
    padding: 4rem 0;
    position: relative;
    overflow: hidden;
}

.why-phygital::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 20% 50%, rgba(226, 105, 43, 0.05) 0%, transparent 50%),
                radial-gradient(circle at 80% 80%, rgba(255, 107, 107, 0.05) 0%, transparent 50%);
    pointer-events: none;
}

.why-content {
    max-width: 900px;
    margin: 0 auto;
    background: var(--card-bg);
    padding: 3rem;
    border-radius: 25px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
    border: 1px solid var(--border-color);
    position: relative;
    overflow: hidden;
}

.why-content::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 6px;
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
    border-radius: 25px 25px 0 0;
}

.why-content p {
    margin-bottom: 2rem;
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--gray-text);
}

.symptoms-list ul,
.benefits-list ul {
    list-style: none;
    padding-left: 0;
    margin: 2rem 0;
}

.symptoms-list li,
.benefits-list li {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 1rem;
    padding: 0.8rem 1rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 10px;
    border-left: 4px solid var(--primary-color);
    transition: all 0.3s ease;
}

.symptoms-list li:hover,
.benefits-list li:hover {
    background: rgba(226, 105, 43, 0.1);
    transform: translateX(5px);
    box-shadow: 0 5px 15px rgba(226, 105, 43, 0.2);
}

.symptoms-list li::before,
.benefits-list li::before {
    content: '•';
    color: var(--primary-color);
    font-size: 1.2rem;
    margin-top: 0.2rem;
    font-weight: bold;
}

.key-points {
    background: rgba(255, 255, 255, 0.03);
    padding: 2rem;
    border-radius: 15px;
    margin: 2rem 0;
    border: 1px solid var(--border-light);
}

.key-points p {
    margin: 1rem 0;
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--light-text);
    text-align: center;
}

.call-to-action {
    background: linear-gradient(135deg, rgba(226, 105, 43, 0.1) 0%, rgba(255, 107, 107, 0.1) 100%);
    padding: 2rem;
    border-radius: 15px;
    margin-top: 2rem;
    border: 2px solid var(--primary-color);
    text-align: center;
}

.call-to-action h3 {
    color: var(--primary-color);
    margin-bottom: 1rem;
    font-size: 1.8rem;
}

.call-to-action h3 i {
    color: var(--primary-color);
    font-size: 2rem;
    margin-right: 10px;
}

.call-to-action p {
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--light-text);
    margin: 0;
}

/* Responsive Design for Why Phygital Section */
@media (max-width: 768px) {
    .why-content {
        padding: 2rem;
    }

    .why-content p {
        font-size: 1rem;
        line-height: 1.7;
    }

    .key-points p {
        font-size: 1.1rem;
    }

    .call-to-action h3 {
        font-size: 1.5rem;
    }

    .call-to-action p {
        font-size: 1.1rem;
    }
}

.examples-section h3 {
    text-align: center;
    margin-bottom: 2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.examples-section h3 i {
    color: var(--primary-color);
}

.examples-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.example-card {
    background: var(--card-bg);
    padding: 2.5rem 2rem;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid var(--border-color);
    position: relative;
    overflow: hidden;
}

.example-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
    border-radius: 20px 20px 0 0;
}

.example-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
    border-color: var(--primary-light);
}

.example-icon {
    font-size: 3.5rem;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
    transition: transform 0.3s ease;
}

.example-card:hover .example-icon {
    transform: scale(1.1);
}

/* Programs Section */
.program-sections {
    margin-top: 3rem;
}

.program-section {
    margin-bottom: 4rem;
}

.program-section:last-child {
    margin-bottom: 0;
}

.program-content {
    display: flex;
    align-items: center;
    gap: 3rem;
    background: var(--card-bg);
    border-radius: 20px;
    padding: 3rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.program-content:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.program-text {
    flex: 1;
    padding: 1rem;
}

.program-section.reverse .program-content {
    flex-direction: row-reverse;
}

.program-image {
    flex: 1;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease;
}

.program-image:hover {
    transform: scale(1.02);
}

.program-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.program-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.program-icon {
    font-size: 3rem;
    color: var(--primary-color);
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.program-details {
    color: var(--gray-text);
    line-height: 1.8;
}

.program-details ul {
    list-style: none;
    padding-left: 0;
    margin: 0;
}

.program-details li {
    display: flex;
    align-items: flex-start;
    gap: 0.5rem;
    margin-bottom: 1rem;
    padding-left: 0;
}

.program-details li i {
    color: var(--primary-color);
    margin-top: 0.2rem;
    font-size: 1rem;
}

.program-details strong {
    color: var(--primary-color);
    font-weight: 600;
}

.program-details p {
    margin: 0;
    font-size: 1.1rem;
    line-height: 1.7;
}

/* Responsive Design for Programs */
@media (max-width: 768px) {
    .program-content {
        flex-direction: column !important;
        gap: 2rem;
        padding: 2rem;
    }

    .program-text {
        padding: 0;
        text-align: center;
    }

    .program-image {
        width: 100%;
        height: 250px;
    }

    .program-header {
        justify-content: center;
    }

    .program-details li {
        justify-content: center;
        text-align: left;
    }
}

/* Carnival Page Styles */

/* Carnival Hero */
.carnival-hero {
    background: var(--dark-bg);
    padding: 6rem 2rem 4rem;
    text-align: center;
    border-bottom: 1px solid var(--border-color);
}

.carnival-hero .hero-content {
    max-width: 900px;
    margin: 0 auto;
}

.hero-icon {
    margin-bottom: 2rem;
}

.hero-icon i {
    font-size: 4rem;
    color: var(--primary-color);
    opacity: 0.8;
}

.carnival-hero h1 {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
    color: var(--light-text);
    font-weight: 700;
}

.hero-subtitle {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-bottom: 2rem;
    flex-wrap: wrap;
}

.hero-subtitle span {
    font-size: 1.8rem;
    font-weight: 600;
    color: var(--primary-color);
    padding: 0.5rem 1rem;
    border: 2px solid var(--primary-color);
    border-radius: 50px;
    background: rgba(226, 105, 43, 0.1);
    transition: all 0.3s ease;
}

.hero-subtitle span:hover {
    background: var(--primary-color);
    color: white;
    transform: translateY(-2px);
}

.carnival-hero p {
    font-size: 1.2rem;
    color: var(--gray-text);
    line-height: 1.7;
    margin-bottom: 3rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.hero-features {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.feature-item {
    text-align: center;
    padding: 1rem;
}

.feature-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
    display: block;
}

.feature-text {
    font-size: 1rem;
    color: var(--gray-text);
    font-weight: 500;
}

.feature-divider {
    width: 1px;
    height: 60px;
    background: var(--border-color);
    margin: 0 1rem;
}

/* Carnival Tabs */
.carnival-tabs-section {
    padding: 6rem 0;
    background: var(--dark-bg);
}

.tabs-container {
    max-width: 1200px;
    margin: 0 auto;
}

.tabs-header {
    display: flex;
    justify-content: center;
    margin-bottom: 3rem;
    border-bottom: 2px solid var(--border-color);
}

.tab-button {
    background: none;
    border: none;
    padding: 1rem 2rem;
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--gray-text);
    cursor: pointer;
    transition: all 0.3s ease;
    border-bottom: 3px solid transparent;
    position: relative;
}

.tab-button:hover {
    color: var(--primary-color);
}

.tab-button.active {
    color: var(--primary-color);
    border-bottom-color: var(--primary-color);
}

.tab-button.active::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
    border-radius: 2px 2px 0 0;
}

.tabs-content {
    position: relative;
}

.tab-panel {
    display: none;
    animation: fadeIn 0.5s ease-out;
}

.tab-panel.active {
    display: block;
}

/* Overview Tab */
.overview-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    margin-bottom: 2rem;
}

.overview-card {
    background: var(--card-bg);
    padding: 2.5rem;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
    border: 1px solid var(--border-color);
}

.overview-card h3 {
    color: var(--primary-color);
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    gap: 1rem;
    font-size: 1.3rem;
}

.overview-card ul {
    list-style: none;
    padding: 0;
}

.overview-card li {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 1rem;
    padding: 0.5rem 0;
    border-bottom: 1px solid var(--border-light);
}

.overview-card li:last-child {
    border-bottom: none;
    margin-bottom: 0;
}

.overview-card li i {
    color: var(--primary-color);
    margin-top: 0.2rem;
    font-size: 1.1rem;
}

.impact-stats {
    display: flex;
    justify-content: space-around;
    gap: 2rem;
}

.impact-item {
    text-align: center;
}

.impact-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.impact-text {
    color: var(--gray-text);
    font-size: 0.9rem;
    font-weight: 500;
}

/* Timeline */
.timeline {
    position: relative;
    padding-left: 2rem;
}

.timeline-item {
    position: relative;
    margin-bottom: 2rem;
    padding-left: 2rem;
}

.timeline-marker {
    position: absolute;
    left: -1.5rem;
    top: 0;
    width: 1rem;
    height: 1rem;
    background: var(--primary-color);
    border-radius: 50%;
    border: 3px solid var(--dark-bg);
    box-shadow: 0 0 0 3px rgba(226, 105, 43, 0.2);
}

.timeline-content {
    background: var(--card-bg);
    padding: 1.5rem;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
    border: 1px solid var(--border-color);
    transition: transform 0.3s ease;
}

.timeline-content:hover {
    transform: translateX(10px);
}

.timeline-content .time {
    color: var(--primary-color);
    font-weight: 700;
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
}

.timeline-content h4 {
    color: var(--light-text);
    margin-bottom: 0.5rem;
    font-size: 1.3rem;
}

.timeline-content p {
    color: var(--gray-text);
    margin: 0;
    line-height: 1.6;
}

/* Features Grid */
.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-bottom: 2rem;
}

.features-grid .feature-card:nth-child(4),
.features-grid .feature-card:nth-child(5) {
    grid-column: span 1;
}

.feature-card {
    background: linear-gradient(135deg, var(--card-bg) 0%, var(--card-hover) 100%);
    padding: 2rem;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 8px 25px rgba(0,0,0,0.3);
    border: 1px solid var(--border-color);
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
    border-radius: 20px 20px 0 0;
}

.feature-card:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 20px 40px rgba(0,0,0,0.4);
    border-color: var(--primary-light);
}

.feature-icon {
    width: 100px;
    height: 100px;
    background: linear-gradient(145deg, var(--primary-color), var(--secondary-color));
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    color: white;
    box-shadow: 0 12px 30px rgba(226, 105, 43, 0.5);
    position: relative;
    transition: all 0.3s ease;
}

.feature-icon:hover {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 15px 35px rgba(226, 105, 43, 0.6);
}

.feature-icon svg {
    width: 48px;
    height: 48px;
    filter: drop-shadow(0 2px 4px rgba(0,0,0,0.2));
}

.feature-card h4 {
    color: var(--light-text);
    margin-bottom: 1rem;
    font-size: 1.4rem;
    font-weight: 700;
    position: relative;
    z-index: 1;
}

.feature-card p {
    color: var(--gray-text);
    line-height: 1.6;
    margin: 0;
    font-size: 1rem;
    position: relative;
    z-index: 1;
}

/* Add subtle background pattern */
.feature-card::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 150px;
    height: 150px;
    background: radial-gradient(circle, rgba(226, 105, 43, 0.05) 0%, transparent 70%);
    border-radius: 50%;
    z-index: 0;
}

/* Execution Process */
.execution-process {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
}

.process-step {
    position: relative;
    margin-bottom: 3rem;
    display: flex;
    align-items: flex-start;
    gap: 2rem;
}

.step-number {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.5rem;
    font-weight: 700;
    box-shadow: 0 10px 30px rgba(226, 105, 43, 0.4);
    z-index: 2;
    position: relative;
    flex-shrink: 0;
}

.step-connector {
    position: absolute;
    left: 40px;
    top: 80px;
    width: 4px;
    height: calc(100% - 40px);
    background: linear-gradient(to bottom, var(--primary-color), var(--secondary-color));
    z-index: 1;
}

.process-step:last-child .step-connector {
    display: none;
}

.step-content {
    flex: 1;
    background: var(--card-bg);
    padding: 2rem;
    border-radius: 20px;
    box-shadow: 0 8px 25px rgba(0,0,0,0.2);
    border: 1px solid var(--border-color);
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.step-content::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
    border-radius: 20px 20px 0 0;
}

.step-content:hover {
    transform: translateY(-5px) scale(1.02);
    box-shadow: 0 20px 40px rgba(0,0,0,0.3);
    border-color: var(--primary-light);
}

.step-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, rgba(226, 105, 43, 0.1), rgba(255, 107, 107, 0.1));
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
    transition: all 0.3s ease;
}

.step-icon:hover {
    transform: scale(1.1) rotate(5deg);
    background: linear-gradient(135deg, rgba(226, 105, 43, 0.2), rgba(255, 107, 107, 0.2));
}

.step-content h3 {
    color: var(--light-text);
    margin-bottom: 1rem;
    font-size: 1.4rem;
    font-weight: 700;
    position: relative;
    z-index: 1;
}

.step-content p {
    color: var(--gray-text);
    line-height: 1.6;
    margin-bottom: 1.5rem;
    position: relative;
    z-index: 1;
}

.step-details {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    position: relative;
    z-index: 1;
}

.detail-tag {
    background: linear-gradient(135deg, rgba(226, 105, 43, 0.1), rgba(255, 107, 107, 0.1));
    color: var(--primary-color);
    padding: 0.4rem 0.8rem;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    border: 1px solid rgba(226, 105, 43, 0.2);
    transition: all 0.3s ease;
}

.detail-tag:hover {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: white;
    transform: translateY(-2px);
}

/* Add subtle background pattern */
.step-content::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 200px;
    height: 200px;
    background: radial-gradient(circle, rgba(226, 105, 43, 0.03) 0%, transparent 70%);
    border-radius: 50%;
    z-index: 0;
}

/* Mobile Responsive for Carnival */
@media (max-width: 768px) {
    .carnival-hero {
        padding: 6rem 1rem 4rem;
    }

    .carnival-hero h1 {
        font-size: 2.8rem;
    }

    .carnival-hero h2 {
        font-size: 2rem;
    }

    .hero-stats {
        flex-direction: column;
        gap: 2rem;
    }

    .tabs-header {
        flex-direction: column;
        gap: 0.5rem;
    }

    .tab-button {
        padding: 0.8rem 1.5rem;
        font-size: 1rem;
    }

    .overview-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .features-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .execution-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .timeline {
        padding-left: 1rem;
    }

    .timeline-item {
        padding-left: 1.5rem;
    }

    .timeline-marker {
        left: -1rem;
    }

    .impact-stats {
        flex-direction: column;
        gap: 1.5rem;
    }
}

/* Carnival Section */
.carnival-timeline {
    margin: 3rem 0;
}

.timeline {
    position: relative;
    padding-left: 3rem;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 1rem;
    top: 0;
    bottom: 0;
    width: 2px;
    background: var(--border-color);
}

.timeline-item {
    position: relative;
    margin-bottom: 2rem;
    padding-left: 1.5rem;
}

.timeline-item::before {
    content: '';
    position: absolute;
    left: -3.5rem;
    top: 0;
    width: 15px;
    height: 15px;
    background: var(--primary-color);
    border-radius: 50%;
    border: 3px solid var(--dark-bg);
}

.time {
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.event {
    background: var(--card-bg);
    padding: 1rem;
    border-radius: 10px;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.2);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
    margin-top: 2rem;
}

.feature-card {
    background: var(--card-bg);
    padding: 1.5rem;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.2);
}

.feature-card i {
    font-size: 2rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

/* Impact Section - Process Design */
.impact-process {
    position: relative;
    max-width: 1000px;
    margin: 3rem auto 0;
    padding: 0 2rem;
}

.process-step {
    position: relative;
    margin-bottom: 4rem;
    display: flex;
    align-items: flex-start;
    gap: 3rem;
}

.step-number {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 2rem;
    font-weight: 700;
    box-shadow: 0 12px 30px rgba(226, 105, 43, 0.4);
    position: relative;
    z-index: 3;
    flex-shrink: 0;
    transition: all 0.3s ease;
}

.step-number:hover {
    transform: scale(1.1);
    box-shadow: 0 15px 40px rgba(226, 105, 43, 0.6);
}

.step-connector {
    position: absolute;
    left: 40px;
    top: 80px;
    width: 4px;
    height: calc(100% - 40px);
    background: linear-gradient(to bottom, var(--primary-color), var(--secondary-color));
    border-radius: 2px;
    z-index: 1;
}

.process-step:last-child .step-connector {
    display: none;
}

.step-content {
    flex: 1;
    background: linear-gradient(135deg, var(--card-bg) 0%, var(--card-hover) 100%);
    padding: 2.5rem;
    border-radius: 25px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
    border: 1px solid var(--border-color);
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.step-content::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 6px;
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
    border-radius: 25px 25px 0 0;
}

.step-content:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.4);
}

.step-year {
    color: var(--primary-color);
    font-weight: 700;
    font-size: 1.1rem;
    margin-bottom: 0.8rem;
    display: inline-block;
    background: rgba(226, 105, 43, 0.1);
    padding: 0.5rem 1rem;
    border-radius: 25px;
    border: 1px solid rgba(226, 105, 43, 0.2);
}

.step-content h3 {
    color: var(--light-text);
    margin-bottom: 1.2rem;
    font-size: 1.8rem;
    font-weight: 600;
}

.step-content p {
    color: var(--gray-text);
    margin-bottom: 2rem;
    line-height: 1.7;
    font-size: 1.1rem;
}

.step-metrics {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 1.5rem;
}

.metric {
    background: rgba(255, 255, 255, 0.05);
    padding: 1.5rem;
    border-radius: 15px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 1rem;
}

.metric:hover {
    background: rgba(226, 105, 43, 0.1);
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(226, 105, 43, 0.2);
}

.metric-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, rgba(226, 105, 43, 0.2), rgba(255, 107, 107, 0.2));
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-color);
    font-size: 1.3rem;
    transition: all 0.3s ease;
}

.metric:hover .metric-icon {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: white;
    transform: scale(1.1);
}

.metric-text {
    flex: 1;
}

.metric-value {
    display: block;
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--primary-color);
    line-height: 1.2;
}

.metric-label {
    display: block;
    font-size: 1rem;
    font-weight: 600;
    color: var(--light-text);
    margin-bottom: 0.3rem;
}

.metric-detail {
    display: block;
    font-size: 0.85rem;
    color: var(--gray-text);
    line-height: 1.3;
}

/* Get Involved Section - Tabbed Interface */
.text-center {
    text-align: center;
}

.involvement-tabs {
    max-width: 1000px;
    margin: 4rem auto 0;
    background: var(--card-bg);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
    border: 1px solid var(--border-color);
}

.tabs-header {
    display: flex;
    background: linear-gradient(135deg, var(--darker-bg) 0%, var(--card-bg) 100%);
    border-bottom: 2px solid var(--border-color);
}

.tab-button {
    flex: 1;
    background: none;
    border: none;
    padding: 2rem 1.5rem;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    text-align: center;
}

.tab-button::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.tab-button:hover {
    background: rgba(226, 105, 43, 0.05);
}

.tab-button.active {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: white;
}

.tab-button.active::before {
    transform: scaleX(1);
}

.tab-icon {
    width: 60px;
    height: 60px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    transition: all 0.3s ease;
}

.tab-button.active .tab-icon {
    background: rgba(255, 255, 255, 0.2);
    transform: scale(1.1);
}

.tab-button:hover .tab-icon {
    transform: scale(1.05);
}

.tab-info h4 {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 0.25rem;
    transition: color 0.3s ease;
}

.tab-info span {
    font-size: 0.85rem;
    opacity: 0.8;
}

.tab-button.active .tab-info h4,
.tab-button.active .tab-info span {
    color: white;
}

.tabs-content {
    position: relative;
    min-height: 400px;
}

.tab-panel {
    display: none;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.4s ease;
}

.tab-panel.active {
    display: block;
    opacity: 1;
    transform: translateY(0);
}

.tab-content-wrapper {
    display: flex;
    gap: 3rem;
    padding: 3rem;
}

.tab-main-content {
    flex: 1;
}

.content-header h3 {
    color: var(--primary-color);
    margin-bottom: 0.5rem;
    font-size: 1.8rem;
    font-weight: 600;
}

.content-subtitle {
    color: var(--gray-text);
    font-size: 1.1rem;
    margin-bottom: 2rem;
    font-style: italic;
}

.content-body p {
    color: var(--light-text);
    margin-bottom: 2rem;
    line-height: 1.7;
    font-size: 1.1rem;
}

.feature-highlights {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
}

.highlight-item {
    background: rgba(255, 255, 255, 0.05);
    padding: 1.5rem;
    border-radius: 15px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.highlight-item:hover {
    background: rgba(226, 105, 43, 0.1);
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(226, 105, 43, 0.2);
}

.highlight-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.2rem;
    flex-shrink: 0;
}

.highlight-text h5 {
    color: var(--light-text);
    margin-bottom: 0.5rem;
    font-size: 1.1rem;
    font-weight: 600;
}

.highlight-text p {
    color: var(--gray-text);
    margin: 0;
    font-size: 0.95rem;
    line-height: 1.5;
}

.tab-sidebar {
    width: 300px;
    flex-shrink: 0;
}

.sidebar-widget {
    background: linear-gradient(135deg, var(--darker-bg) 0%, var(--card-bg) 100%);
    padding: 2rem;
    border-radius: 15px;
    margin-bottom: 2rem;
    border: 1px solid var(--border-color);
}

.sidebar-widget h5 {
    color: var(--primary-color);
    margin-bottom: 1rem;
    font-size: 1.2rem;
    font-weight: 600;
}

.facts-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.facts-list li {
    color: var(--gray-text);
    margin-bottom: 0.8rem;
    padding-bottom: 0.8rem;
    border-bottom: 1px solid var(--border-light);
    line-height: 1.5;
}

.facts-list li:last-child {
    border-bottom: none;
    margin-bottom: 0;
}

.facts-list strong {
    color: var(--light-text);
    font-weight: 600;
}

.tab-sidebar .btn-primary {
    width: 100%;
    text-align: center;
}

.involvement-cta {
    background: linear-gradient(135deg, var(--darker-bg) 0%, var(--card-bg) 100%);
    padding: 3rem;
    border-radius: 20px;
    margin-top: 4rem;
    text-align: center;
    border: 1px solid var(--border-color);
}

.cta-content h3 {
    color: var(--primary-color);
    margin-bottom: 1rem;
    font-size: 2rem;
    font-weight: 700;
}

.cta-content p {
    color: var(--gray-text);
    margin-bottom: 2rem;
    font-size: 1.1rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.involved-buttons {
    display: flex;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
}

/* Contact Section */
.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: start;
    margin-top: 3rem;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    height: 100%;
}

.info-card {
    background: var(--card-bg);
    padding: 1rem;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease;
    flex: 1;
}

.info-card:hover {
    transform: translateY(-5px);
}

.info-card i {
    font-size: 2rem;
    color: var(--primary-color);
    margin-bottom: 0.8rem;
}

.info-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.contact-form {
    background: var(--card-bg);
    padding: 2.5rem;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.contact-subtitle {
    text-align: center;
    font-size: 1.2rem;
    font-weight: 500;
    color: var(--gray-text);
    margin-bottom: 1rem;
}

.contact-form h3 {
    text-align: center;
    margin-bottom: 1.5rem;
    color: var(--primary-color);
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 1rem;
    border: 1px solid var(--border-color);
    border-radius: 8px;
    background: var(--darker-bg);
    color: var(--light-text);
    font-size: 1rem;
    transition: border-color 0.3s;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
}

.form-group textarea {
    min-height: 150px;
    resize: vertical;
}

/* Footer */
footer {
    background: linear-gradient(135deg, var(--darker-bg) 0%, rgba(10, 18, 31, 0.95) 100%);
    padding: 3rem 0 1rem;
    border-top: 3px solid var(--primary-color);
    position: relative;
}

footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--primary-color), transparent);
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-logo img {
    height: 60px;
    width: 60px;
    border-radius: 50%;
    margin-bottom: 1rem;
}

.footer-links h4,
.footer-social h4 {
    color: var(--primary-color);
    margin-bottom: 1rem;
    font-size: 1.2rem;
}

.footer-links ul {
    list-style: none;
    padding-left: 0;
}

.footer-links li {
    margin-bottom: 0.5rem;
}

.footer-links a {
    color: var(--light-text);
    text-decoration: none;
    transition: color 0.3s;
}

.footer-links a:hover {
    color: var(--primary-color);
}

.social-icons {
    display: flex;
    gap: 1rem;
}

.social-icons a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: var(--card-bg);
    border-radius: 50%;
    color: var(--light-text);
    transition: all 0.3s;
}

.social-icons a:hover {
    background: var(--primary-color);
    color: white;
    transform: translateY(-3px);
}

.footer-bottom {
    text-align: center;
    padding-top: 1rem;
    border-top: 1px solid var(--border-color);
    color: #888;
    font-size: 0.9rem;
}

/* Responsive Design */
@media (max-width: 768px) {
    .mobile-menu-btn {
        display: block;
    }

    nav {
        flex-direction: row;
        gap: 1rem;
        padding: 1rem;
    }

    .nav-links {
        display: none;
        flex-direction: column;
        width: 100%;
        gap: 1rem;
        text-align: center;
    }

    .cta-buttons {
        display: none;
    }

    .hero {
        flex-direction: column;
        text-align: center;
    }

    .hero-content {
        margin-bottom: 3rem;
    }

    .about-content {
        flex-direction: column;
    }

    .vision-mission {
        grid-template-columns: 1fr;
    }

    .timeline {
        padding-left: 1.5rem;
    }

    .timeline-item::before {
        left: -2.5rem;
    }

    .involved-buttons {
        flex-direction: column;
        align-items: center;
    }

    .contact-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .btn {
        width: 100%;
        max-width: 300px;
    }

    h1 {
        font-size: 2.5rem;
    }

    h2 {
        font-size: 2rem;
    }

    .container {
        width: 95%;
        padding: 1rem 0;
    }

    section {
        padding: 3rem 0;
    }
}

/* Animations */
@keyframes fadeIn {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

@keyframes slideInLeft {
    from { opacity: 0; transform: translateX(-50px); }
    to { opacity: 1; transform: translateX(0); }
}

@keyframes slideInRight {
    from { opacity: 0; transform: translateX(50px); }
    to { opacity: 1; transform: translateX(0); }
}

@keyframes bounceIn {
    0% { opacity: 0; transform: scale(0.3); }
    50% { opacity: 1; transform: scale(1.05); }
    70% { transform: scale(0.9); }
    100% { opacity: 1; transform: scale(1); }
}

@keyframes pulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.05); }
    100% { transform: scale(1); }
}

@keyframes float {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-10px); }
}

@keyframes glow {
    0%, 100% { box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2); }
    50% { box-shadow: 0 5px 25px rgba(226, 105, 43, 0.3); }
}

@keyframes typewriter {
    from { width: 0; }
    to { width: 100%; }
}

@keyframes blink {
    50% { border-color: transparent; }
}

section {
    animation: fadeIn 0.8s ease-out;
}

.hero-content {
    animation: slideInLeft 1s ease-out;
}

.hero-image {
    animation: slideInRight 1s ease-out 0.3s both;
}

.example-card, .program-card, .feature-card, .option-card, .goal-card, .info-card {
    animation: bounceIn 0.6s ease-out;
    animation-fill-mode: both;
}

.example-card:nth-child(1) { animation-delay: 0.1s; }
.example-card:nth-child(2) { animation-delay: 0.2s; }
.example-card:nth-child(3) { animation-delay: 0.3s; }

.program-card:nth-child(1) { animation-delay: 0.1s; }
.program-card:nth-child(2) { animation-delay: 0.2s; }
.program-card:nth-child(3) { animation-delay: 0.3s; }
.program-card:nth-child(4) { animation-delay: 0.4s; }

.feature-card:nth-child(1) { animation-delay: 0.1s; }
.feature-card:nth-child(2) { animation-delay: 0.2s; }
.feature-card:nth-child(3) { animation-delay: 0.3s; }
.feature-card:nth-child(4) { animation-delay: 0.4s; }
.feature-card:nth-child(5) { animation-delay: 0.5s; }

.option-card:nth-child(1) { animation-delay: 0.1s; }
.option-card:nth-child(2) { animation-delay: 0.2s; }
.option-card:nth-child(3) { animation-delay: 0.3s; }
.option-card:nth-child(4) { animation-delay: 0.4s; }


.logo-image {
    animation: float 3s ease-in-out infinite;
}

.vision, .mission {
    animation: slideInLeft 0.8s ease-out;
    animation-fill-mode: both;
}

.vision { animation-delay: 0.2s; }
.mission { animation-delay: 0.4s; }

.timeline-item {
    animation: slideInLeft 0.6s ease-out;
    animation-fill-mode: both;
}

.timeline-item:nth-child(1) { animation-delay: 0.1s; }
.timeline-item:nth-child(2) { animation-delay: 0.2s; }
.timeline-item:nth-child(3) { animation-delay: 0.3s; }
.timeline-item:nth-child(4) { animation-delay: 0.4s; }
.timeline-item:nth-child(5) { animation-delay: 0.5s; }
.timeline-item:nth-child(6) { animation-delay: 0.6s; }
.timeline-item:nth-child(7) { animation-delay: 0.7s; }
.timeline-item:nth-child(8) { animation-delay: 0.8s; }
.timeline-item:nth-child(9) { animation-delay: 0.9s; }

.contact-form {
    animation: fadeIn 1s ease-out 0.5s both;
}

.footer-content {
    animation: slideInLeft 0.8s ease-out;
    animation-fill-mode: both;
}

.social-icons a:hover {
    animation: bounceIn 0.3s ease-in-out;
}

/* Particle Effects */
.particle {
    pointer-events: none;
    z-index: 1;
}

/* Enhanced Animation Classes */
.animate-in {
    opacity: 1 !important;
    transform: translateY(0) !important;
}

.animate-in:nth-child(odd) {
    animation: slideInLeft 0.6s ease-out;
}

.animate-in:nth-child(even) {
    animation: slideInRight 0.6s ease-out;
}

/* Loading Animation */
@keyframes loadingPulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.5; }
}

.loading {
    animation: loadingPulse 1.5s ease-in-out infinite;
}

/* Gradient Text Effect */
.gradient-text {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Glass Morphism Effect */
.glass {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

/* Enhanced Button Effects */
.btn-glow:hover {
    box-shadow: 0 0 20px rgba(226, 105, 43, 0.6);
    animation: glow 0.6s ease-in-out;
}

/* Image Overlay Effects */
.image-overlay {
    position: relative;
    overflow: hidden;
}

.image-overlay::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(226, 105, 43, 0.1), rgba(255, 107, 107, 0.1));
    opacity: 0;
    transition: opacity 0.3s ease;
}

.image-overlay:hover::before {
    opacity: 1;
}

/* Scroll to top button */
.scroll-top {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    width: 50px;
    height: 50px;
    background: var(--primary-color);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    cursor: pointer;
    opacity: 0;
    transition: opacity 0.3s, transform 0.3s;
    z-index: 100;
}

.scroll-top:hover {
    background: var(--primary-dark);
    transform: translateY(-3px);
}

/* Home Page Additional Sections */
.about-preview {
    background: var(--card-bg);
    padding: 5rem 0;
}

.about-preview-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
    justify-content: center;
    max-width: 100%;
}

.about-preview-text {
    text-align: left;
}

.about-preview-text p {
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
    line-height: 1.6;
    text-align: left;
}

.about-preview-image {
    display: flex;
    justify-content: center;
    align-items: center;
}

.preview-img {
    width: 100%;
    max-width: 400px;
    height: 250px;
    object-fit: cover;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease;
}

.preview-img:hover {
    transform: scale(1.05);
}

.programs-preview {
    background: linear-gradient(135deg, var(--darker-bg) 0%, var(--dark-bg) 100%);
    padding: 5rem 0;
}

.programs-preview-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
    justify-items: center;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}

.program-preview-card {
    background: var(--card-bg);
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s, box-shadow 0.3s;
    width: 100%;
    max-width: 280px;
}

.program-preview-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
}

.program-preview-icon {
    font-size: 3rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
    display: block;
}

.program-preview-card h3 {
    margin-bottom: 1rem;
    color: var(--light-text);
    text-align: center;
}

.program-preview-card p {
    color: var(--gray-text);
    line-height: 1.6;
    text-align: center;
}

.programs-preview-footer {
    text-align: center;
    margin-top: 3rem;
}

.carnival-preview {
    background: var(--card-bg);
    padding: 5rem 0;
}

.carnival-preview-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: start;
    margin-top: 3rem;
    justify-content: center;
}

.carnival-preview-features {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    justify-items: center;
}

.carnival-preview-features-vertical {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    max-width: 800px;
    margin: 0 auto;
}

.carnival-feature-vertical {
    background: linear-gradient(135deg, var(--card-bg) 0%, var(--card-hover) 100%);
    padding: 2.5rem;
    border-radius: 25px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid var(--border-color);
    width: 100%;
    position: relative;
    overflow: hidden;
}

.carnival-feature-vertical::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
    border-radius: 25px 25px 0 0;
}

.carnival-feature-vertical:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
}

.carnival-feature-vertical i {
    font-size: 3.5rem;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
    display: block;
    transition: transform 0.3s ease;
}

.carnival-feature-vertical:hover i {
    transform: scale(1.2) rotate(5deg);
}

.carnival-feature-vertical h4 {
    margin-bottom: 1.2rem;
    color: var(--light-text);
    text-align: center;
    font-size: 1.4rem;
    font-weight: 600;
}

.carnival-feature-vertical p {
    color: var(--gray-text);
    font-size: 1rem;
    line-height: 1.7;
    text-align: center;
    margin: 0;
}

.carnival-feature {
    background: linear-gradient(135deg, var(--card-bg) 0%, var(--card-hover) 100%);
    padding: 2rem;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid var(--border-color);
    width: 100%;
    max-width: 250px;
    position: relative;
    overflow: hidden;
}

.carnival-feature::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
    border-radius: 20px 20px 0 0;
}

.carnival-feature:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.4);
}

.carnival-feature i {
    font-size: 3rem;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
    display: block;
    transition: transform 0.3s ease;
}

.carnival-feature:hover i {
    transform: scale(1.1);
}

.carnival-feature h4 {
    margin-bottom: 1rem;
    color: var(--light-text);
    text-align: center;
    font-size: 1.2rem;
    font-weight: 600;
}

.carnival-feature p {
    color: var(--gray-text);
    font-size: 0.95rem;
    line-height: 1.6;
    text-align: center;
    margin: 0;
}

.carnival-preview-image {
    display: flex;
    justify-content: center;
    align-items: center;
}

.carnival-vr-image {
    width: 400px;
    height: 600px;
    object-fit: cover;
    border-radius: 20px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.4);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.carnival-vr-image:hover {
    transform: scale(1.05);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
}

.carnival-preview-footer {
    text-align: center;
    margin-top: 3rem;
}



.cta-section {
    background: var(--darker-bg);
    padding: 5rem 0;
}

.cta-content {
    text-align: center;
    max-width: 600px;
    margin: 0 auto;
}

.cta-content h2 {
    margin-bottom: 1.5rem;
    color: var(--light-text);
    text-align: center;
}

.cta-content p {
    font-size: 1.2rem;
    margin-bottom: 2.5rem;
    color: var(--gray-text);
    line-height: 1.6;
    text-align: center;
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
}

/* Responsive adjustments for new sections */
@media (max-width: 768px) {
    .about-preview-content,
    .carnival-preview-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }

    .about-preview-text {
        text-align: center;
    }

    .about-preview-text p {
        text-align: center;
    }

    .programs-preview-grid {
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
        gap: 1.5rem;
        justify-items: center;
    }

    .program-preview-card {
        max-width: 250px;
    }



    .carnival-preview-features {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }

    .carnival-feature {
        max-width: 150px;
    }

    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }

    .btn {
        width: 100%;
        max-width: 300px;
    }
}
