/* Base Variables and Reset */
:root {
    /* Tetrad Color Scheme */
    --primary-color: #FF3366;
    --secondary-color: #33CCFF;
    --tertiary-color: #FFCC33;
    --quaternary-color: #66FF99;
    
    /* Dark and Light Variants */
    --primary-dark: #CC2952;
    --secondary-dark: #2AA3CC;
    --tertiary-dark: #CCA329;
    --quaternary-dark: #52CC7A;
    
    --primary-light: #FF6688;
    --secondary-light: #66DDFF;
    --tertiary-light: #FFDD66;
    --quaternary-light: #99FFBB;
    
    /* Neutral Colors */
    --dark: #1A1A1A;
    --medium-dark: #333333;
    --medium: #777777;
    --light-medium: #AAAAAA;
    --light: #F4F4F4;
    --white: #FFFFFF;
    
    /* Shadows for Neuromorphic Design */
    --nm-shadow-small: 4px 4px 8px rgba(0, 0, 0, 0.1), -4px -4px 8px rgba(255, 255, 255, 0.9);
    --nm-shadow-medium: 8px 8px 16px rgba(0, 0, 0, 0.1), -8px -8px 16px rgba(255, 255, 255, 0.9);
    --nm-shadow-large: 16px 16px 32px rgba(0, 0, 0, 0.1), -16px -16px 32px rgba(255, 255, 255, 0.9);
    
    --nm-shadow-inset: inset 4px 4px 8px rgba(0, 0, 0, 0.1), inset -4px -4px 8px rgba(255, 255, 255, 0.9);
    
    /* Typography */
    --header-font: 'Archivo Black', sans-serif;
    --body-font: 'Roboto', sans-serif;
    
    /* Border Radius */
    --border-radius-small: 6px;
    --border-radius-medium: 12px;
    --border-radius-large: 24px;
    
    /* Spacing */
    --space-xs: 0.25rem;
    --space-sm: 0.5rem;
    --space-md: 1rem;
    --space-lg: 2rem;
    --space-xl: 3rem;
    --space-xxl: 5rem;
    
    /* Container Widths */
    --container-sm: 640px;
    --container-md: 768px;
    --container-lg: 1024px;
    --container-xl: 1280px;
    
    /* Z-index layers */
    --z-background: -10;
    --z-normal: 1;
    --z-dropdown: 10;
    --z-fixed: 100;
    --z-modal: 1000;
}

/* Reset & Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

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

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

body.menu-open {
    overflow: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--header-font);
    margin-bottom: var(--space-md);
    color: var(--medium-dark);
    line-height: 1.2;
}

h1 {
    font-size: 3rem;
    margin-bottom: var(--space-lg);
}

h2 {
    font-size: 2.25rem;
}

h3 {
    font-size: 1.75rem;
}

h4 {
    font-size: 1.5rem;
}

h5 {
    font-size: 1.25rem;
}

h6 {
    font-size: 1rem;
}

p {
    margin-bottom: var(--space-md);
}

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

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

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

ul, ol {
    margin-bottom: var(--space-md);
    padding-left: var(--space-lg);
}

/* Container */
.container {
    width: 100%;
    max-width: var(--container-xl);
    margin: 0 auto;
    padding: 0 var(--space-lg);
}

/* Section Styles */
section {
    padding: var(--space-xl) 0;
    position: relative;
    overflow: hidden;
}

.section-title {
    text-align: center;
    margin-bottom: var(--space-xl);
    position: relative;
}

.section-title::after {
    content: "";
    display: block;
    width: 80px;
    height: 4px;
    background: var(--primary-color);
    margin: var(--space-sm) auto 0;
    border-radius: var(--border-radius-small);
}

.section-description {
    text-align: center;
    max-width: 800px;
    margin: -1rem auto var(--space-xl);
    color: var(--medium);
    font-size: 1.1rem;
}

/* Header Styles */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: var(--z-fixed);
    background-color: rgba(255, 255, 255, 0.95);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    padding: var(--space-md) 0;
    backdrop-filter: blur(10px);
    transition: background-color 0.3s ease, padding 0.3s ease;
}

.header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-weight: bold;
    font-size: 1.5rem;
}

.logo a {
    display: block;
    color: var(--dark);
    text-decoration: none;
}

.logo h1 {
    margin: 0;
    font-size: 1.8rem;
    line-height: 1;
    transition: color 0.3s ease;
}

.logo a:hover h1 {
    color: var(--primary-color);
}

.desktop-nav ul {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
}

.desktop-nav ul li {
    margin-left: var(--space-lg);
}

.desktop-nav ul li a {
    position: relative;
    color: var(--medium-dark);
    text-decoration: none;
    font-weight: 500;
    padding: var(--space-xs) 0;
    transition: color 0.3s ease;
}

.desktop-nav ul li a::after {
    content: "";
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--primary-color);
    transition: width 0.3s ease;
}

.desktop-nav ul li a:hover {
    color: var(--primary-color);
}

.desktop-nav ul li a:hover::after {
    width: 100%;
}

.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 30px;
    height: 21px;
    cursor: pointer;
    z-index: 250;
    position: relative;
}

.mobile-menu-toggle span {
    display: block;
    width: 100%;
    height: 3px;
    background-color: var(--dark);
    border-radius: 3px;
    transition: all 0.3s ease;
}

.mobile-menu-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(7px, 7px);
    background-color: var(--white);
}

.mobile-menu-toggle.active span:nth-child(2) {
    opacity: 0;
}

.mobile-menu-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -7px);
    background-color: var(--white);
}

.mobile-nav {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: var(--primary-color);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.4s ease, visibility 0.4s ease;
    z-index: 200;
}

.mobile-nav.active {
    opacity: 1;
    visibility: visible;
    min-height: 100vh;
}

.mobile-nav ul {
    list-style: none;
    padding: 0;
    margin: 0;
    text-align: center;
}

.mobile-nav ul li {
    margin-bottom: var(--space-lg);
}

.mobile-nav ul li a {
    color: var(--white);
    font-size: 1.5rem;
    text-decoration: none;
    font-weight: bold;
    transition: color 0.3s ease;
}

.mobile-nav ul li a:hover {
    color: var(--light);
}

/* Button Styles */
.btn {
    display: inline-block;
    padding: 0.75rem 1.5rem;
    font-family: var(--body-font);
    font-weight: 600;
    text-align: center;
    text-decoration: none;
    cursor: pointer;
    border: none;
    border-radius: var(--border-radius-small);
    transition: all 0.3s ease;
    box-shadow: var(--nm-shadow-small);
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.btn::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 0;
    background-color: rgba(0, 0, 0, 0.1);
    transition: height 0.3s ease;
    z-index: -1;
}

.btn:hover::after {
    height: 100%;
}

.btn:active {
    box-shadow: var(--nm-shadow-inset);
    transform: translateY(2px);
}

.btn-primary {
    background-color: var(--primary-color);
    color: var(--white);
}

.btn-primary:hover {
    background-color: var(--primary-dark);
    color: var(--white);
    text-decoration: none;
}

.btn-secondary {
    background-color: var(--secondary-color);
    color: var(--white);
}

.btn-secondary:hover {
    background-color: var(--secondary-dark);
    color: var(--white);
    text-decoration: none;
}

.btn-tertiary {
    background-color: var(--tertiary-color);
    color: var(--dark);
}

.btn-tertiary:hover {
    background-color: var(--tertiary-dark);
    color: var(--dark);
    text-decoration: none;
}

.btn-text {
    background: none;
    box-shadow: none;
    color: var(--primary-color);
    padding: 0.5rem 0;
    position: relative;
}

.btn-text::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background-color: var(--primary-color);
    transform: scaleX(0);
    transform-origin: right;
    transition: transform 0.3s ease;
}

.btn-text:hover {
    color: var(--primary-dark);
    text-decoration: none;
}

.btn-text:hover::after {
    transform: scaleX(1);
    transform-origin: left;
}

.btn-text:active {
    transform: translateY(0);
}

/* Hero Section */
.hero {
    position: relative;
    padding: 0;
    height: 100vh;
    min-height: 600px;
    display: flex;
    align-items: center;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    color: var(--white);
}

.hero .overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.4));
    z-index: 1;
}

.hero .container {
    position: relative;
    z-index: 2;
}

.hero-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.hero-content h1 {
    color: var(--white);
    font-size: 3.5rem;
    margin-bottom: var(--space-lg);
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    animation: fadeInDown 1s ease forwards;
}

.hero-content p {
    color: var(--white);
    font-size: 1.5rem;
    margin-bottom: var(--space-xl);
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.5);
    animation: fadeInUp 1s ease forwards 0.3s;
    opacity: 0;
    animation-fill-mode: forwards;
}

.hero-buttons {
    display: flex;
    justify-content: center;
    gap: var(--space-md);
    animation: fadeIn 1s ease forwards 0.6s;
    opacity: 0;
    animation-fill-mode: forwards;
}

/* About Section */
.about {
    background-color: var(--white);
}

.about-content {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: var(--space-xl);
}

.about-text {
    flex: 1;
    min-width: 300px;
}

.about-text h3 {
    color: var(--primary-color);
    margin-bottom: var(--space-md);
}

.about-image {
    flex: 1;
    min-width: 300px;
    border-radius: var(--border-radius-medium);
    overflow: hidden;
    box-shadow: var(--nm-shadow-medium);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.about-image:hover {
    transform: translateY(-10px);
    box-shadow: var(--nm-shadow-large);
}

.about-image img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.5s ease;
}

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

/* Features Section */
.features {
    background-color: var(--light);
    position: relative;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: var(--space-xl);
}

.feature-card {
    background-color: var(--white);
    border-radius: var(--border-radius-medium);
    padding: var(--space-xl);
    box-shadow: var(--nm-shadow-small);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--nm-shadow-medium);
}

.feature-icon {
    width: 80px;
    height: 80px;
    margin-bottom: var(--space-lg);
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
    background-color: var(--light);
    box-shadow: var(--nm-shadow-small);
}

.feature-icon img {
    width: 60%;
    height: 60%;
    object-fit: contain;
    margin: 0 auto;
}

.feature-card h3 {
    margin-bottom: var(--space-md);
    color: var(--primary-color);
}

.feature-card p {
    color: var(--medium);
}

/* Statistics Section */
.statistics {
    background-color: var(--dark);
    color: var(--white);
    padding: var(--space-xxl) 0;
}

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

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: var(--space-xl);
    text-align: center;
}

.stat-card {
    background-color: rgba(255, 255, 255, 0.05);
    border-radius: var(--border-radius-medium);
    padding: var(--space-xl);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(5px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: transform 0.3s ease;
}

.stat-card:hover {
    transform: translateY(-10px);
}

.stat-number {
    font-size: 3rem;
    font-weight: bold;
    margin-bottom: var(--space-md);
    color: var(--primary-color);
    font-family: var(--header-font);
    text-shadow: 0 0 10px rgba(255, 51, 102, 0.3);
}

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

/* Gallery Section */
.gallery {
    background-color: var(--white);
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: var(--space-lg);
}

.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: var(--border-radius-medium);
    box-shadow: var(--nm-shadow-small);
    transition: transform 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.gallery-item:hover {
    transform: translateY(-10px);
    box-shadow: var(--nm-shadow-medium);
}

.image-container {
    width: 100%;
    height: 300px;
    overflow: hidden;
}

.image-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

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

.gallery-caption {
    background-color: var(--white);
    padding: var(--space-md) var(--space-lg);
    text-align: center;
    font-weight: 500;
    width: 100%;
}

/* Case Studies Section */
.case-studies {
    background-color: var(--light);
}

.case-studies-grid {
    display: flex;
    flex-direction: column;
    gap: var(--space-xl);
}

.case-study-card {
    display: flex;
    flex-wrap: wrap;
    background-color: var(--white);
    border-radius: var(--border-radius-medium);
    overflow: hidden;
    box-shadow: var(--nm-shadow-small);
    transition: transform 0.3s ease;
}

.case-study-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--nm-shadow-medium);
}

.card-image {
    flex: 1;
    min-width: 300px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.card-image img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    margin: 0 auto;
}

.card-content {
    flex: 2;
    padding: var(--space-xl);
}

.card-content h3 {
    color: var(--primary-color);
}

.case-meta {
    color: var(--medium);
    margin-bottom: var(--space-md);
    font-style: italic;
}

/* External Resources Section */
.external-resources {
    background-color: var(--white);
}

.resources-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: var(--space-lg);
}

.resource-card {
    background-color: var(--light);
    border-radius: var(--border-radius-medium);
    padding: var(--space-xl);
    box-shadow: var(--nm-shadow-small);
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.resource-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--nm-shadow-medium);
}

.resource-card h3 {
    color: var(--dark);
    margin-bottom: var(--space-md);
}

.resource-link {
    margin-top: auto;
    font-weight: 600;
    color: var(--primary-color);
    text-decoration: none;
    position: relative;
    display: inline-block;
}

.resource-link::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 2px;
    bottom: -4px;
    left: 0;
    background-color: var(--primary-color);
    transform: scaleX(0);
    transform-origin: right;
    transition: transform 0.3s ease;
}

.resource-link:hover::after {
    transform: scaleX(1);
    transform-origin: left;
}

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

.events-timeline {
    display: flex;
    flex-direction: column;
    gap: var(--space-xl);
}

.event-card {
    display: flex;
    flex-wrap: wrap;
    background-color: var(--white);
    border-radius: var(--border-radius-medium);
    box-shadow: var(--nm-shadow-small);
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.event-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--nm-shadow-medium);
}

.event-date {
    background-color: var(--primary-color);
    color: var(--white);
    padding: var(--space-lg);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    min-width: 150px;
}

.month {
    font-size: 1.5rem;
    font-weight: 700;
    line-height: 1;
}

.day {
    font-size: 2.5rem;
    font-weight: 900;
    margin: var(--space-xs) 0;
    line-height: 1;
}

.year {
    font-size: 1.2rem;
    line-height: 1;
}

.event-content {
    flex: 1;
    padding: var(--space-lg);
    min-width: 300px;
}

.event-location {
    color: var(--medium);
    margin-bottom: var(--space-md);
    font-style: italic;
}

/* Behind the Scenes Section */
.behind-scenes {
    background-color: var(--white);
}

.scenes-content {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: var(--space-xl);
}

.scenes-text {
    flex: 1;
    min-width: 300px;
}

.scenes-image {
    flex: 1;
    min-width: 300px;
    border-radius: var(--border-radius-medium);
    overflow: hidden;
    box-shadow: var(--nm-shadow-small);
}

.scenes-image img {
    width: 100%;
    transition: transform 0.5s ease;
}

.scenes-image:hover img {
    transform: scale(1.05);
}

/* FAQ Section */
.faq {
    background-color: var(--light);
}

.faq-container {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background-color: var(--white);
    border-radius: var(--border-radius-small);
    margin-bottom: var(--space-md);
    box-shadow: var(--nm-shadow-small);
    overflow: hidden;
}

.faq-question {
    padding: var(--space-lg);
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    position: relative;
}

.faq-question h3 {
    margin: 0;
    font-size: 1.25rem;
    flex: 1;
    font-family: var(--body-font);
    font-weight: 600;
}

.toggle-icon {
    font-size: 1.5rem;
    color: var(--primary-color);
    transition: transform 0.3s ease;
}

.faq-item.active .toggle-icon {
    transform: rotate(45deg);
}

.faq-answer {
    padding: 0 var(--space-lg);
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.5s ease, padding 0.5s ease;
}

.faq-item.active .faq-answer {
    padding: 0 var(--space-lg) var(--space-lg);
    max-height: 1000px;
}

.faq-answer p {
    margin-bottom: var(--space-md);
}

.faq-answer p:last-child {
    margin-bottom: 0;
}

/* Contact Section */
.contact {
    background-color: var(--white);
    position: relative;
}

.contact-grid {
    display: flex;
    flex-wrap: wrap;
    gap: var(--space-xl);
}

.contact-form {
    flex: 1;
    min-width: 300px;
}

.contact-info {
    flex: 1;
    min-width: 300px;
}

.form-group {
    margin-bottom: var(--space-lg);
}

.form-group label {
    display: block;
    margin-bottom: var(--space-xs);
    font-weight: 500;
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: var(--space-md);
    border: 2px solid var(--light-medium);
    border-radius: var(--border-radius-small);
    background-color: var(--light);
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 2px rgba(255, 51, 102, 0.2);
    outline: none;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: var(--light-medium);
}

.info-card {
    display: flex;
    margin-bottom: var(--space-lg);
    align-items: flex-start;
}

.info-icon {
    margin-right: var(--space-md);
    width: 40px;
    height: 40px;
    background-color: var(--primary-light);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.info-icon img {
    width: 20px;
    height: 20px;
    object-fit: contain;
}

.info-content h4 {
    margin-bottom: var(--space-xs);
    font-size: 1.1rem;
}

.info-content p {
    color: var(--medium);
    margin-bottom: var(--space-xs);
}

/* Footer Section */
.footer {
    background-color: var(--medium-dark);
    color: var(--white);
    padding: var(--space-xl) 0 var(--space-md);
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: var(--space-xl);
    margin-bottom: var(--space-xl);
}

.footer h3 {
    color: var(--white);
    margin-bottom: var(--space-lg);
    position: relative;
    display: inline-block;
}

.footer h3::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -8px;
    width: 40px;
    height: 3px;
    background-color: var(--primary-color);
}

.footer-about p {
    color: var(--light-medium);
    margin-bottom: var(--space-md);
}

.contact-details p {
    margin-bottom: var(--space-xs);
    color: var(--light-medium);
}

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

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

.footer-links ul li a {
    color: var(--light-medium);
    text-decoration: none;
    transition: color 0.3s ease, padding-left 0.3s ease;
}

.footer-links ul li a:hover {
    color: var(--white);
    padding-left: var(--space-xs);
}

.footer-newsletter p {
    color: var(--light-medium);
    margin-bottom: var(--space-md);
}

.newsletter-form {
    display: flex;
    flex-wrap: wrap;
    gap: var(--space-sm);
}

.newsletter-form input {
    flex: 1;
    min-width: 200px;
    padding: var(--space-md);
    border: none;
    border-radius: var(--border-radius-small);
}

.footer-social {
    display: flex;
    flex-direction: column;
}

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

.social-links a {
    color: var(--light-medium);
    text-decoration: none;
    transition: color 0.3s ease;
    margin-right: var(--space-md);
}

.social-links a:hover {
    color: var(--white);
    text-decoration: none;
}

.footer-bottom {
    text-align: center;
    padding-top: var(--space-lg);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-bottom p {
    color: var(--light-medium);
    margin: 0;
}

/* Page Banner Styles */
.page-banner {
    position: relative;
    height: 300px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    color: var(--white);
    text-align: center;
    margin-top: 80px;
}

.page-banner .overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.4));
    z-index: 1;
}

.page-banner .container {
    position: relative;
    z-index: 2;
}

.page-banner h1 {
    color: var(--white);
    margin-bottom: var(--space-sm);
}

.page-banner p {
    color: var(--white);
    font-size: 1.25rem;
    max-width: 800px;
    margin: 0 auto;
}

/* Success Page */
.success-section {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 100vh;
    padding: var(--space-xxl) 0;
}

.success-content {
    max-width: 700px;
    margin: 0 auto;
    text-align: center;
}

.success-icon {
    margin-bottom: var(--space-lg);
}

.success-message {
    font-size: 1.25rem;
    margin-bottom: var(--space-md);
}

.response-time {
    color: var(--medium);
    margin-bottom: var(--space-xl);
}

.next-steps {
    margin-bottom: var(--space-xl);
    background-color: var(--light);
    padding: var(--space-lg);
    border-radius: var(--border-radius-medium);
}

.next-steps h2 {
    margin-bottom: var(--space-md);
}

.next-steps ul {
    text-align: left;
    list-style-position: inside;
}

.success-buttons {
    display: flex;
    justify-content: center;
    gap: var(--space-md);
    margin-top: var(--space-lg);
}

/* Privacy Policy & Terms Pages */
.privacy-policy,
.terms-of-service {
    padding-top: 120px;
}

.policy-content,
.terms-content {
    max-width: 900px;
    margin: 0 auto;
}

.policy-introduction,
.terms-introduction,
.policy-section,
.terms-section {
    margin-bottom: var(--space-xl);
}

.policy-section h2,
.terms-section h2 {
    color: var(--primary-color);
    margin-bottom: var(--space-md);
}

.policy-section h3,
.terms-section h3 {
    margin-top: var(--space-lg);
    margin-bottom: var(--space-sm);
    font-size: 1.3rem;
}

/* Mission & Vision Section */
.mission-vision {
    padding: var(--space-xxl) 0;
}

.mission-vision-grid {
    display: flex;
    flex-wrap: wrap;
    gap: var(--space-xl);
}

.mission-card,
.vision-card {
    flex: 1;
    min-width: 300px;
    background-color: var(--white);
    border-radius: var(--border-radius-medium);
    padding: var(--space-xl);
    box-shadow: var(--nm-shadow-medium);
    transition: transform 0.3s ease;
}

.mission-card:hover,
.vision-card:hover {
    transform: translateY(-10px);
}

.mission-card h2,
.vision-card h2 {
    color: var(--primary-color);
    text-align: center;
    margin-bottom: var(--space-lg);
}

/* Our Journey Section */
.our-journey {
    background-color: var(--light);
}

.timeline {
    position: relative;
    max-width: 1000px;
    margin: 0 auto;
}

.timeline::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 4px;
    height: 100%;
    background-color: var(--primary-color);
}

.timeline-item {
    position: relative;
    margin-bottom: var(--space-xxl);
}

.timeline-dot {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background-color: var(--primary-color);
    box-shadow: 0 0 0 4px rgba(255, 51, 102, 0.2);
}

.timeline-content {
    position: relative;
    width: 45%;
    background-color: var(--white);
    border-radius: var(--border-radius-medium);
    padding: var(--space-lg);
    box-shadow: var(--nm-shadow-small);
}

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

.timeline-content::before {
    content: '';
    position: absolute;
    top: 0;
    width: 20px;
    height: 20px;
    background-color: var(--white);
    transform: rotate(45deg);
}

.timeline-item:nth-child(odd) .timeline-content::before {
    left: -10px;
}

.timeline-item:nth-child(even) .timeline-content::before {
    right: -10px;
}

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

.timeline-content h4 {
    margin-bottom: var(--space-md);
}

/* Core Values Section */
.core-values {
    background-color: var(--white);
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: var(--space-xl);
}

.value-card {
    background-color: var(--light);
    border-radius: var(--border-radius-medium);
    padding: var(--space-xl);
    box-shadow: var(--nm-shadow-small);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.value-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--nm-shadow-medium);
}

.value-icon {
    width: 80px;
    height: 80px;
    margin-bottom: var(--space-lg);
    border-radius: 50%;
    background-color: var(--white);
    display: flex;
    justify-content: center;
    align-items: center;
    box-shadow: var(--nm-shadow-small);
}

.value-card h3 {
    color: var(--primary-color);
    margin-bottom: var(--space-md);
}

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

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: var(--space-xl);
}

.team-member {
    background-color: var(--white);
    border-radius: var(--border-radius-medium);
    overflow: hidden;
    box-shadow: var(--nm-shadow-small);
    transition: transform 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.team-member:hover {
    transform: translateY(-10px);
    box-shadow: var(--nm-shadow-medium);
}

.team-member .card-image {
    width: 100%;
    height: 300px;
    overflow: hidden;
}

.team-member .card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

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

.team-member .card-content {
    padding: var(--space-lg);
    text-align: center;
}

.team-member .member-position {
    color: var(--primary-color);
    font-weight: 500;
    margin-bottom: var(--space-md);
}

/* Partners Section */
.partners {
    background-color: var(--white);
}

.partners-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: var(--space-xl);
    align-items: center;
}

.partner-logo {
    padding: var(--space-md);
    display: flex;
    justify-content: center;
    align-items: center;
    filter: grayscale(100%);
    opacity: 0.7;
    transition: filter 0.3s ease, opacity 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.partner-logo:hover {
    filter: grayscale(0);
    opacity: 1;
}

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

/* Contact CTA */
.contact-cta {
    background: linear-gradient(135deg, var(--primary-color), var(--quaternary-color));
    color: var(--white);
    padding: var(--space-xxl) 0;
    text-align: center;
}

.cta-content {
    max-width: 800px;
    margin: 0 auto;
}

.cta-content h2 {
    color: var(--white);
    margin-bottom: var(--space-md);
}

.cta-content p {
    margin-bottom: var(--space-xl);
    font-size: 1.2rem;
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: var(--space-md);
}

/* Contact Information */
.contact-information {
    padding: var(--space-xxl) 0;
}

.contact-details {
    margin-bottom: var(--space-xl);
}

.contact-details h2 {
    margin-bottom: var(--space-lg);
}

.contact-form-wrapper {
    background-color: var(--light);
    padding: var(--space-xl);
    border-radius: var(--border-radius-medium);
    box-shadow: var(--nm-shadow-small);
}

.contact-form-wrapper h2 {
    margin-bottom: var(--space-md);
}

.contact-form-wrapper p {
    margin-bottom: var(--space-lg);
    color: var(--medium);
}

.social-connect {
    margin-top: var(--space-xl);
}

.social-connect h3 {
    margin-bottom: var(--space-md);
}

/* Map Section */
.map-section {
    background-color: var(--light);
    padding: var(--space-xl) 0;
}

.map-wrapper {
    border-radius: var(--border-radius-medium);
    overflow: hidden;
    box-shadow: var(--nm-shadow-small);
}

.map-wrapper img {
    width: 100%;
    height: auto;
    display: block;
}

/* Regional Offices */
.regional-offices {
    padding: var(--space-xxl) 0;
}

.offices-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: var(--space-xl);
}

.office-card {
    background-color: var(--white);
    border-radius: var(--border-radius-medium);
    overflow: hidden;
    box-shadow: var(--nm-shadow-small);
    transition: transform 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.office-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--nm-shadow-medium);
}

.office-card .card-image {
    width: 100%;
    height: 200px;
    overflow: hidden;
}

.office-card .card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

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

.office-card .card-content {
    padding: var(--space-lg);
    width: 100%;
}

.office-card h3 {
    color: var(--primary-color);
    margin-bottom: var(--space-md);
}

/* Contact FAQ */
.contact-faq {
    background-color: var(--light);
    padding-bottom: var(--space-xxl);
}

/* Related Resources */
.related-resources {
    background-color: var(--light);
}

.resources-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: var(--space-xl);
}

.resource-card {
    background-color: var(--white);
    border-radius: var(--border-radius-medium);
    overflow: hidden;
    box-shadow: var(--nm-shadow-small);
    transition: transform 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.resource-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--nm-shadow-medium);
}

.resource-card .card-image {
    width: 100%;
    height: 200px;
    overflow: hidden;
}

.resource-card .card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

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

.resource-card .card-content {
    padding: var(--space-lg);
    text-align: center;
}

.resource-card h3 {
    color: var(--primary-color);
    margin-bottom: var(--space-md);
}

/* Newsletter Section */
.newsletter-section {
    background: linear-gradient(135deg, var(--secondary-color), var(--primary-color));
    padding: var(--space-xxl) 0;
    color: var(--white);
}

.newsletter-content {
    max-width: 700px;
    margin: 0 auto;
    text-align: center;
}

.newsletter-content h2 {
    color: var(--white);
    margin-bottom: var(--space-md);
}

.newsletter-content p {
    margin-bottom: var(--space-lg);
    font-size: 1.2rem;
}

.newsletter-form .form-group {
    display: flex;
    gap: var(--space-md);
    max-width: 500px;
    margin: 0 auto;
}

.newsletter-form input {
    flex: 1;
    padding: var(--space-md);
    border: none;
    border-radius: var(--border-radius-small);
}

/* Animations */
@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

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

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

@keyframes pulse {
    0% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
    100% {
        transform: scale(1);
    }
}

/* Responsive Design */
@media (max-width: 1024px) {
    .container {
        padding: 0 var(--space-md);
    }
    
    .hero-content h1 {
        font-size: 2.8rem;
    }
    
    .hero-content p {
        font-size: 1.2rem;
    }
    
    .timeline::before {
        left: 30px;
    }
    
    .timeline-dot {
        left: 30px;
    }
    
    .timeline-content {
        width: calc(100% - 60px);
        margin-left: 60px !important;
    }
    
    .timeline-item:nth-child(odd) .timeline-content::before,
    .timeline-item:nth-child(even) .timeline-content::before {
        left: -10px;
        right: auto;
    }
}

@media (max-width: 768px) {
    html {
        font-size: 14px;
    }
    
    .desktop-nav {
        display: none;
    }
    
    .mobile-menu-toggle {
        display: flex;
        z-index: 999;
    }
    
    .hero-buttons {
        flex-direction: column;
        gap: var(--space-md);
    }
    
    .about-content,
    .scenes-content,
    .contact-grid {
        flex-direction: column;
    }
    
    .stats-grid,
    .features-grid,
    .gallery-grid,
    .values-grid,
    .team-grid,
    .partners-grid,
    .offices-grid {
        grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
    }
    
    .page-banner {
        height: 250px;
    }
    
    .cta-buttons,
    .success-buttons {
        flex-direction: column;
        gap: var(--space-md);
    }
}

@media (max-width: 480px) {
    .stats-grid,
    .features-grid,
    .gallery-grid,
    .values-grid,
    .team-grid,
    .partners-grid,
    .offices-grid,
    .resources-grid {
        grid-template-columns: 1fr;
    }
    
    .hero-content h1 {
        font-size: 2.2rem;
    }
    
    .hero-content p {
        font-size: 1rem;
    }
    
    .event-card {
        flex-direction: column;
    }
    
    .event-date {
        width: 100%;
        flex-direction: row;
        justify-content: center;
        align-items: center;
        padding: var(--space-md);
    }
    
    .month, .day, .year {
        margin: 0 var(--space-xs);
    }
}