/* Core Variables */
:root {
    /* Neomorphic Pastel Color Palette */
    --primary-color: #94c7f5;
    --primary-dark: #7ab0e8;
    --primary-light: #b4deff;
    --secondary-color: #ffafcc;
    --secondary-dark: #f598b8;
    --secondary-light: #ffc8dd;
    --accent-color: #a2d2ff;
    --accent-dark: #8bbce9;
    --accent-light: #bde0ff;
    
    /* Text Colors */
    --text-dark: #42526e;
    --text-medium: #5e6c84;
    --text-light: #97a4bb;
    --text-white: #ffffff;
    
    /* Background Colors */
    --bg-primary: #f0f5ff;
    --bg-secondary: #fff5f9;
    --bg-accent: #f5faff;
    --bg-light: #ffffff;
    
    /* Shadow Colors */
    --shadow-light: rgba(255, 255, 255, 0.7);
    --shadow-dark: rgba(174, 174, 192, 0.2);
    --shadow-darker: rgba(174, 174, 192, 0.4);
    
    /* Font Families */
    --heading-font: 'Playfair Display', serif;
    --body-font: 'Source Sans Pro', sans-serif;
    
    /* Spacing */
    --space-xs: 0.5rem;
    --space-sm: 1rem;
    --space-md: 2rem;
    --space-lg: 4rem;
    --space-xl: 8rem;
    
    /* Border Radius */
    --radius-sm: 8px;
    --radius-md: 16px;
    --radius-lg: 24px;
    --radius-xl: 32px;
    --radius-circle: 50%;
    
    /* Container Width */
    --container-max-width: 1200px;
    --container-padding: 1.5rem;
    
    /* Transitions */
    --transition-fast: 0.2s ease-out;
    --transition-medium: 0.3s ease-out;
    --transition-slow: 0.5s ease-out;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--body-font);
    font-size: 1rem;
    line-height: 1.6;
    color: var(--text-dark);
    background-color: var(--bg-primary);
    overflow-x: hidden;
    min-height: 100vh;
}

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

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

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

ul {
    list-style: none;
}

.container {
    width: 100%;
    max-width: var(--container-max-width);
    padding: 0 var(--container-padding);
    margin: 0 auto;
}

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

h1 {
    font-size: 2.75rem;
}

h2 {
    font-size: 2.25rem;
    margin-bottom: var(--space-md);
    position: relative;
    display: inline-block;
}

h2:after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 60px;
    height: 3px;
    background: var(--accent-color);
    border-radius: 3px;
}

h3 {
    font-size: 1.75rem;
}

h4 {
    font-size: 1.5rem;
}

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

section {
    padding: var(--space-lg) 0;
    position: relative;
}

section h2 {
    text-align: center;
    display: block;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: var(--space-lg);
}

section h2:after {
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
}

/* Neomorphic Elements */
.neomorph {
    border-radius: var(--radius-md);
    background: var(--bg-light);
    box-shadow: 
        8px 8px 16px var(--shadow-dark), 
        -8px -8px 16px var(--shadow-light);
}

.neomorph-inset {
    border-radius: var(--radius-md);
    background: var(--bg-light);
    box-shadow: 
        inset 5px 5px 10px var(--shadow-dark), 
        inset -5px -5px 10px var(--shadow-light);
}

.neomorph-button {
    border-radius: var(--radius-md);
    background: var(--bg-light);
    box-shadow: 
        5px 5px 10px var(--shadow-dark), 
        -5px -5px 10px var(--shadow-light);
    transition: var(--transition-medium);
}

.neomorph-button:hover, .neomorph-button:focus {
    box-shadow: 
        3px 3px 6px var(--shadow-dark), 
        -3px -3px 6px var(--shadow-light);
}

.neomorph-button:active {
    box-shadow: 
        inset 3px 3px 6px var(--shadow-dark), 
        inset -3px -3px 6px var(--shadow-light);
}

/* Buttons */
.btn, 
button, 
input[type="submit"] {
    display: inline-block;
    font-family: var(--body-font);
    font-weight: 600;
    font-size: 1rem;
    line-height: 1;
    text-align: center;
    padding: 1rem 2rem;
    border-radius: var(--radius-md);
    border: none;
    cursor: pointer;
    transition: var(--transition-medium);
    box-shadow: 
        5px 5px 10px var(--shadow-dark), 
        -5px -5px 10px var(--shadow-light);
    background-color: var(--bg-light);
    color: var(--text-dark);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.btn:hover, 
button:hover, 
input[type="submit"]:hover {
    transform: translateY(-2px);
    box-shadow: 
        6px 6px 12px var(--shadow-dark), 
        -6px -6px 12px var(--shadow-light);
}

.btn:active, 
button:active, 
input[type="submit"]:active {
    transform: translateY(0);
    box-shadow: 
        inset 3px 3px 6px var(--shadow-dark), 
        inset -3px -3px 6px var(--shadow-light);
}

.btn.primary {
    background: linear-gradient(135deg, var(--primary-light), var(--primary-color));
    color: var(--text-white);
}

.btn.secondary {
    background: linear-gradient(135deg, var(--secondary-light), var(--secondary-color));
    color: var(--text-white);
}

.btn.submit-btn {
    background: linear-gradient(135deg, var(--accent-light), var(--accent-color));
    color: var(--text-white);
    width: 100%;
}

/* Read More Links */
.resource-link, .read-more-link {
    color: var(--primary-dark);
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    transition: var(--transition-medium);
}

.resource-link:after, .read-more-link:after {
    content: '→';
    margin-left: 5px;
    transition: var(--transition-medium);
}

.resource-link:hover, .read-more-link:hover {
    color: var(--primary-color);
}

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

/* Header & Navigation */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    transition: var(--transition-medium);
}

.header-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 80px;
}

.logo a {
    display: flex;
    align-items: center;
    color: var(--text-dark);
}

.logo h1 {
    font-size: 1.5rem;
    margin-bottom: 0;
}

.navigation ul {
    display: flex;
}

.navigation li {
    margin-left: var(--space-md);
}

.navigation a {
    color: var(--text-medium);
    font-weight: 600;
    position: relative;
}

.navigation a:before {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary-color);
    transition: var(--transition-medium);
}

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

.navigation a:hover:before {
    width: 100%;
}

.burger-menu {
    display: none!important;
    flex-direction: column;
    justify-content: space-between;
    width: 30px;
    height: 21px;
    cursor: pointer;
}

.burger-menu span {
    display: block;
    width: 100%;
    height: 3px;
    background: var(--text-dark);
    border-radius: 3px;
    transition: var(--transition-medium);
}

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

.hero:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to right, rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.3));
}

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

.hero-content {
    max-width: 650px;
    color: var(--text-white);
}

.hero-content h1 {
    font-size: 3.5rem;
    margin-bottom: var(--space-md);
    color: var(--text-white);
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.hero-content p {
    font-size: 1.25rem;
    margin-bottom: var(--space-md);
    text-shadow: 0 1px 5px rgba(0, 0, 0, 0.2);
}

.hero-buttons {
    display: flex;
    gap: var(--space-sm);
    flex-wrap: wrap;
}

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

.feature-slider {
    display: flex;
    flex-wrap: wrap;
    gap: var(--space-md);
}

.feature-card {
    flex: 1 1 calc(33.333% - var(--space-md));
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: var(--space-md);
    border-radius: var(--radius-md);
    background: var(--bg-light);
    box-shadow: 
        8px 8px 16px var(--shadow-dark), 
        -8px -8px 16px var(--shadow-light);
    transition: var(--transition-medium);
}

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

.card-image {
    text-align: center;
    margin-bottom: var(--space-sm);
    width: 100%;
}

.image-container {
    height: 250px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    border-radius: var(--radius-md);
}

.image-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    margin: 0 auto;
}

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

.card-content h3 {
    font-size: 1.5rem;
    margin-bottom: var(--space-sm);
    color: var(--text-dark);
}

.slider-controls {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: var(--space-md);
}

.prev-btn, .next-btn {
    background: none;
    border: none;
    font-size: 1.5rem;
    cursor: pointer;
    color: var(--primary-color);
    padding: 0.5rem;
    box-shadow: none;
}

.slider-dots {
    display: flex;
    gap: 8px;
    margin: 0 var(--space-sm);
}

.dot {
    width: 10px;
    height: 10px;
    border-radius: var(--radius-circle);
    background-color: var(--text-light);
    cursor: pointer;
    transition: var(--transition-fast);
}

.dot.active {
    background-color: var(--primary-color);
    transform: scale(1.3);
}

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

.gallery-wrapper {
    position: relative;
}

.gallery-carousel {
    display: flex;
    gap: var(--space-md);
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
    -ms-overflow-style: none;
    padding-bottom: var(--space-sm);
}

.gallery-carousel::-webkit-scrollbar {
    display: none;
}

.gallery-item {
    flex: 0 0 calc(50% - var(--space-md));
    scroll-snap-align: start;
    background: var(--bg-light);
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: 
        8px 8px 16px var(--shadow-dark), 
        -8px -8px 16px var(--shadow-light);
    display: flex;
    flex-direction: column;
    align-items: center;
}

.gallery-item .image-container {
    width: 100%;
    height: 300px;
    border-radius: 0;
    border-top-left-radius: var(--radius-md);
    border-top-right-radius: var(--radius-md);
}

.gallery-caption {
    padding: var(--space-md);
    text-align: center;
    width: 100%;
}

.gallery-caption h3 {
    font-size: 1.25rem;
    margin-bottom: var(--space-xs);
}

.gallery-controls {
    display: flex;
    justify-content: center;
    gap: var(--space-md);
    margin-top: var(--space-md);
}

.gallery-prev, .gallery-next {
    width: 50px;
    height: 50px;
    border-radius: var(--radius-circle);
    background-color: var(--bg-light);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: 
        5px 5px 10px var(--shadow-dark), 
        -5px -5px 10px var(--shadow-light);
    border: none;
    font-size: 1.25rem;
    transition: var(--transition-medium);
}

.gallery-prev:hover, .gallery-next:hover {
    transform: scale(1.05);
}

.gallery-prev:before, .gallery-next:before {
    content: '';
    display: block;
    width: 12px;
    height: 12px;
    border-top: 3px solid var(--primary-color);
    border-right: 3px solid var(--primary-color);
}

.gallery-prev:before {
    transform: rotate(-135deg);
}

.gallery-next:before {
    transform: rotate(45deg);
}

/* Statistics Section */
.statistics {
    background: linear-gradient(135deg, var(--bg-accent), var(--bg-secondary));
}

.stats-container {
    display: flex;
    flex-wrap: wrap;
    gap: var(--space-md);
    justify-content: space-between;
}

.stat-card {
    flex: 1 1 calc(25% - var(--space-md));
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: var(--space-md);
    background: var(--bg-light);
    border-radius: var(--radius-md);
    box-shadow: 
        8px 8px 16px var(--shadow-dark), 
        -8px -8px 16px var(--shadow-light);
}

.stat-number {
    font-size: 3rem;
    font-weight: 700;
    color: var(--primary-color);
    font-family: var(--heading-font);
    margin-bottom: var(--space-xs);
    line-height: 1;
}

.stat-title {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: var(--space-sm);
}

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

.resources-grid {
    display: flex;
    flex-wrap: wrap;
    gap: var(--space-md);
}

.resource-card {
    flex: 1 1 calc(50% - var(--space-md));
    padding: var(--space-md);
    background: var(--bg-light);
    border-radius: var(--radius-md);
    box-shadow: 
        8px 8px 16px var(--shadow-dark), 
        -8px -8px 16px var(--shadow-light);
}

.resource-card h3 {
    font-size: 1.25rem;
    margin-bottom: var(--space-xs);
}

.resource-card p {
    margin-bottom: var(--space-sm);
}

/* Research Section */
.research {
    background-color: var(--bg-accent);
}

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

.research-image {
    flex: 1 1 40%;
}

.research-image img {
    border-radius: var(--radius-md);
    box-shadow: 
        10px 10px 20px var(--shadow-dark), 
        -10px -10px 20px var(--shadow-light);
    object-fit: cover;
    margin: 0 auto;
}

.research-text {
    flex: 1 1 50%;
}

.research-text h3 {
    margin-bottom: var(--space-md);
}

.research-accordion {
    margin-top: var(--space-md);
}

.accordion-item {
    margin-bottom: var(--space-sm);
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: 
        5px 5px 10px var(--shadow-dark), 
        -5px -5px 10px var(--shadow-light);
}

.accordion-header {
    padding: var(--space-sm) var(--space-md);
    background: var(--bg-light);
    font-weight: 600;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.accordion-header:after {
    content: '+';
    font-size: 1.5rem;
}

.accordion-item.active .accordion-header:after {
    content: '-';
}

.accordion-content {
    padding: 0;
    max-height: 0;
    overflow: hidden;
    background: var(--bg-light);
    transition: var(--transition-medium);
}

.accordion-item.active .accordion-content {
    padding: var(--space-sm) var(--space-md);
    max-height: 300px;
}

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

.testimonials-slider {
    position: relative;
    overflow: hidden;
}

.testimonial-card {
    border-radius: var(--radius-md);
    padding: var(--space-md);
    margin: 0 var(--space-md);
    background: var(--bg-light);
    box-shadow: 
        8px 8px 16px var(--shadow-dark), 
        -8px -8px 16px var(--shadow-light);
}

.testimonial-content {
    position: relative;
    padding-top: var(--space-md);
}

.quote-icon {
    position: absolute;
    top: -10px;
    left: -10px;
    font-size: 4rem;
    color: var(--primary-light);
    opacity: 0.5;
    line-height: 1;
}

.testimonial-author {
    display: flex;
    align-items: center;
    margin-top: var(--space-md);
}

.author-image {
    width: 80px;
    height: 80px;
    overflow: hidden;
    border-radius: var(--radius-circle);
    margin-right: var(--space-sm);
    box-shadow: 
        5px 5px 10px var(--shadow-dark), 
        -5px -5px 10px var(--shadow-light);
}

.author-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    margin: 0 auto;
}

.author-details h4 {
    margin-bottom: 0;
}

.author-details p {
    color: var(--text-light);
    margin-bottom: 0;
}

.testimonial-controls {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: var(--space-md);
}

.testimonial-prev, .testimonial-next {
    background: none;
    border: none;
    font-size: 1.5rem;
    cursor: pointer;
    color: var(--primary-color);
    padding: 0.5rem;
    box-shadow: none;
}

.testimonial-dots {
    display: flex;
    gap: 8px;
    margin: 0 var(--space-sm);
}

/* Community Section */
.community {
    background-color: var(--bg-light);
}

.community-content {
    display: flex;
    flex-wrap: wrap;
    gap: var(--space-lg);
    margin-bottom: var(--space-lg);
    align-items: center;
}

.community-text {
    flex: 1 1 50%;
}

.community-image {
    flex: 1 1 40%;
}

.community-image img {
    border-radius: var(--radius-md);
    box-shadow: 
        10px 10px 20px var(--shadow-dark), 
        -10px -10px 20px var(--shadow-light);
    object-fit: cover;
    margin: 0 auto;
}

.community-highlights {
    margin-bottom: var(--space-md);
    padding-left: var(--space-md);
}

.community-highlights li {
    position: relative;
    margin-bottom: var(--space-xs);
    padding-left: var(--space-sm);
}

.community-highlights li:before {
    content: '';
    position: absolute;
    left: -15px;
    top: 10px;
    width: 8px;
    height: 8px;
    background: var(--primary-color);
    border-radius: var(--radius-circle);
}

.community-events h3 {
    text-align: center;
    margin-bottom: var(--space-md);
}

.events-grid {
    display: flex;
    flex-wrap: wrap;
    gap: var(--space-md);
}

.event-card {
    flex: 1 1 calc(33.333% - var(--space-md));
    display: flex;
    align-items: center;
    padding: var(--space-sm) var(--space-md);
    background: var(--bg-light);
    border-radius: var(--radius-md);
    box-shadow: 
        8px 8px 16px var(--shadow-dark), 
        -8px -8px 16px var(--shadow-light);
}

.event-date {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    background: var(--primary-color);
    color: var(--text-white);
    border-radius: var(--radius-md);
    margin-right: var(--space-sm);
    flex-shrink: 0;
}

.event-date .month {
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
}

.event-date .day {
    font-size: 1.5rem;
    font-weight: 700;
    line-height: 1;
}

.event-details {
    flex-grow: 1;
}

.event-details h4 {
    font-size: 1rem;
    margin-bottom: 5px;
}

.event-details p {
    font-size: 0.9rem;
    color: var(--text-medium);
    margin-bottom: 0;
}

/* Contact Section */
.contact {
    background-color: var(--bg-accent);
}

.contact-container {
    display: flex;
    flex-wrap: wrap;
    gap: var(--space-lg);
}

.contact-info {
    flex: 1 1 40%;
}

.contact-form {
    flex: 1 1 50%;
}

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

.info-icon {
    width: 40px;
    height: 40px;
    background: var(--primary-light);
    border-radius: var(--radius-circle);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: var(--space-sm);
    color: var(--primary-dark);
    flex-shrink: 0;
}

.info-text h4 {
    margin-bottom: 5px;
    font-size: 1rem;
}

.info-text p {
    margin-bottom: 0;
    color: var(--text-medium);
}

.studio-image {
    margin-top: var(--space-md);
}

.studio-image img {
    border-radius: var(--radius-md);
    box-shadow: 
        8px 8px 16px var(--shadow-dark), 
        -8px -8px 16px var(--shadow-light);
    object-fit: cover;
    margin: 0 auto;
}

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

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

.form-group input, 
.form-group textarea {
    width: 100%;
    padding: 1rem;
    border: none;
    background: var(--bg-light);
    border-radius: var(--radius-md);
    box-shadow: 
        inset 3px 3px 6px var(--shadow-dark), 
        inset -3px -3px 6px var(--shadow-light);
    font-family: var(--body-font);
    resize: none;
    transition: var(--transition-medium);
}

.form-group input:focus, 
.form-group textarea:focus {
    outline: none;
    box-shadow: 
        inset 4px 4px 8px var(--shadow-dark), 
        inset -4px -4px 8px var(--shadow-light);
}

/* Footer */
.footer {
    background-color: var(--bg-primary);
    padding: var(--space-lg) 0 var(--space-sm);
}

.footer-content {
    display: flex;
    flex-wrap: wrap;
    gap: var(--space-lg);
    margin-bottom: var(--space-lg);
}

.footer-logo {
    flex: 1 1 30%;
}

.footer-logo h2 {
    font-size: 1.75rem;
    margin-bottom: var(--space-xs);
}

.footer-links {
    flex: 1 1 60%;
    display: flex;
    flex-wrap: wrap;
    gap: var(--space-md);
}

.footer-column {
    flex: 1 1 calc(33.333% - var(--space-md));
}

.footer-column h3 {
    font-size: 1.25rem;
    margin-bottom: var(--space-sm);
}

.footer-column ul li {
    margin-bottom: var(--space-xs);
}

.social-links a {
    display: flex;
    align-items: center;
    color: var(--text-medium);
}

.social-links a:before {
    content: '';
    width: 24px;
    height: 24px;
    margin-right: 8px;
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
}

.social-links li:nth-child(1) a:before {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='%2394c7f5' d='M12 2C6.477 2 2 6.477 2 12c0 4.991 3.657 9.128 8.438 9.879V14.89h-2.54V12h2.54V9.797c0-2.506 1.492-3.89 3.777-3.89 1.094 0 2.238.195 2.238.195v2.46h-1.26c-1.243 0-1.63.771-1.63 1.562V12h2.773l-.443 2.89h-2.33v6.989C18.343 21.129 22 16.99 22 12c0-5.523-4.477-10-10-10z'/%3E%3C/svg%3E");
}

.social-links li:nth-child(2) a:before {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='%2394c7f5' d='M23.953 4.57a10 10 0 01-2.825.775 4.958 4.958 0 002.163-2.723c-.951.555-2.005.959-3.127 1.184a4.92 4.92 0 00-8.384 4.482C7.69 8.095 4.067 6.13 1.64 3.162a4.822 4.822 0 00-.666 2.475c0 1.71.87 3.213 2.188 4.096a4.904 4.904 0 01-2.228-.616v.06a4.923 4.923 0 003.946 4.827 4.996 4.996 0 01-2.212.085 4.936 4.936 0 004.604 3.417 9.867 9.867 0 01-6.102 2.105c-.39 0-.779-.023-1.17-.067a13.995 13.995 0 007.557 2.209c9.053 0 14-7.496 14-13.986 0-.21 0-.42-.015-.63A9.935 9.935 0 0024 4.59l-.047-.02z'/%3E%3C/svg%3E");
}

.social-links li:nth-child(3) a:before {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='%2394c7f5' d='M12 2c2.717 0 3.056.01 4.122.06 1.065.05 1.79.217 2.428.465.66.254 1.216.598 1.772 1.153a4.908 4.908 0 011.153 1.772c.247.637.415 1.363.465 2.428.047 1.066.06 1.405.06 4.122 0 2.717-.01 3.056-.06 4.122-.05 1.065-.218 1.79-.465 2.428a4.883 4.883 0 01-1.153 1.772 4.915 4.915 0 01-1.772 1.153c-.637.247-1.363.415-2.428.465-1.066.047-1.405.06-4.122.06-2.717 0-3.056-.01-4.122-.06-1.065-.05-1.79-.218-2.428-.465a4.89 4.89 0 01-1.772-1.153 4.904 4.904 0 01-1.153-1.772c-.248-.637-.415-1.363-.465-2.428C2.013 15.056 2 14.717 2 12c0-2.717.01-3.056.06-4.122.05-1.066.217-1.79.465-2.428a4.88 4.88 0 011.153-1.772A4.897 4.897 0 015.45 2.525c.638-.248 1.362-.415 2.428-.465C8.944 2.013 9.283 2 12 2zm0 1.802c-2.67 0-2.986.01-4.04.059-.976.045-1.505.207-1.858.344-.466.182-.8.398-1.15.748-.35.35-.566.683-.748 1.15-.137.353-.3.882-.344 1.857-.048 1.054-.058 1.37-.058 4.04 0 2.67.01 2.986.058 4.04.045.977.207 1.504.344 1.857.182.466.399.8.748 1.15.35.35.683.565 1.15.747.353.137.882.3 1.857.345 1.054.048 1.37.058 4.04.058 2.67 0 2.987-.01 4.04-.058.976-.046 1.505-.208 1.858-.345.466-.182.8-.398 1.15-.748.35-.35.566-.683.748-1.15.137-.352.3-.88.345-1.856.048-1.054.058-1.37.058-4.04 0-2.67-.01-2.986-.058-4.04-.046-.977-.208-1.505-.345-1.858a3.097 3.097 0 00-.748-1.15 3.098 3.098 0 00-1.15-.747c-.353-.137-.882-.3-1.857-.344-1.054-.048-1.37-.058-4.04-.058zm0 3.064A5.139 5.139 0 0117.138 12 5.139 5.139 0 0112 17.138 5.139 5.139 0 016.862 12 5.139 5.139 0 0112 6.862zm0 1.802A3.334 3.334 0 008.667 12 3.334 3.334 0 0012 15.333 3.334 3.334 0 0015.333 12 3.334 3.334 0 0012 8.667zM17.664 6.8a1.15 1.15 0 11-2.299 0 1.15 1.15 0 012.299 0z'/%3E%3C/svg%3E");
}

.footer-bottom {
    text-align: center;
    padding-top: var(--space-md);
    border-top: 1px solid rgba(0, 0, 0, 0.05);
    color: var(--text-light);
    font-size: 0.9rem;
}

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

.success-content {
    max-width: 600px;
    padding: var(--space-lg);
    background: var(--bg-light);
    border-radius: var(--radius-md);
    box-shadow: 
        10px 10px 20px var(--shadow-dark), 
        -10px -10px 20px var(--shadow-light);
}

.success-icon {
    width: 80px;
    height: 80px;
    background: var(--primary-color);
    border-radius: var(--radius-circle);
    margin: 0 auto var(--space-md);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-white);
    font-size: 2rem;
}

/* Terms and Privacy Pages */
.terms-page, .privacy-page {
    padding-top: 100px;
}

.terms-content, .privacy-content {
    background: var(--bg-light);
    padding: var(--space-lg);
    border-radius: var(--radius-md);
    box-shadow: 
        8px 8px 16px var(--shadow-dark), 
        -8px -8px 16px var(--shadow-light);
}

/* Animations */
@keyframes float {
    0% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
    100% { transform: translateY(0); }
}

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

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

.animated-float {
    animation: float 4s ease-in-out infinite;
}

.animated-pulse {
    animation: pulse 2s ease-in-out infinite;
}

.animated-fade {
    opacity: 0;
    animation: fadeIn 0.8s forwards;
}

/* Responsive Styles */
@media screen and (max-width: 1200px) {
    h1 {
        font-size: 2.5rem;
    }
    
    h2 {
        font-size: 2rem;
    }
    
    h3 {
        font-size: 1.5rem;
    }
    
    .hero-content h1 {
        font-size: 3rem;
    }
}

@media screen and (max-width: 992px) {
    .feature-card, 
    .stat-card {
        flex: 1 1 calc(50% - var(--space-md));
    }
    
    .gallery-item {
        flex: 0 0 calc(70% - var(--space-md));
    }
    
    .research-content, 
    .community-content, 
    .contact-container {
        flex-direction: column;
    }
    
    .research-image, 
    .community-image, 
    .contact-info, 
    .contact-form {
        flex: 1 1 100%;
    }
    
    .navigation {
        display: none;
    }
    
    .burger-menu {
        display: flex;
    }
}

@media screen and (max-width: 768px) {
    h1 {
        font-size: 2.25rem;
    }
    
    h2 {
        font-size: 1.75rem;
    }
    
    h3 {
        font-size: 1.25rem;
    }
    
    .hero-content h1 {
        font-size: 2.5rem;
    }
    
    .feature-card, 
    .stat-card, 
    .resource-card,
    .event-card {
        flex: 1 1 100%;
    }
    
    .gallery-item {
        flex: 0 0 calc(90% - var(--space-md));
    }
    
    .footer-content {
        flex-direction: column;
        gap: var(--space-md);
    }
    
    .footer-logo, 
    .footer-links {
        flex: 1 1 100%;
    }
}

@media screen and (max-width: 576px) {
    .hero-buttons {
        flex-direction: column;
    }
    
    .btn {
        width: 100%;
        margin-bottom: var(--space-sm);
    }
    
    .footer-column {
        flex: 1 1 100%;
        margin-bottom: var(--space-md);
    }
}

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

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

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

.mb-1 {
    margin-bottom: var(--space-xs);
}

.mb-2 {
    margin-bottom: var(--space-sm);
}

.mb-3 {
    margin-bottom: var(--space-md);
}

.mb-4 {
    margin-bottom: var(--space-lg);
}

.mt-1 {
    margin-top: var(--space-xs);
}

.mt-2 {
    margin-top: var(--space-sm);
}

.mt-3 {
    margin-top: var(--space-md);
}

.mt-4 {
    margin-top: var(--space-lg);
}

.hidden {
    display: none;
}

.visible {
    display: block;
}