/* CSS Variables - Modernized Premium Palette */
:root {
    --bg-main: #F9FFFF;
    --bg-secondary: #f0f7f7;
    --text-main: #1a202c;
    /* Softer, richer dark for better readability that pure #333 */
    --text-muted: #4a5568;
    --cta-color: #F26F41;
    --cta-hover: #e05b2e;
    --accent-color: #4B8CB6;
    --accent-hover: #3a7296;
    --white: #ffffff;
    --glass-bg: rgba(249, 255, 255, 0.85);

    --font-heading: 'Outfit', sans-serif;
    --font-body: 'Inter', sans-serif;

    /* Modern shadow system tinted with the accent color for harmony */
    --shadow-sm: 0 4px 6px -1px rgba(75, 140, 182, 0.05);
    --shadow-md: 0 10px 25px -5px rgba(75, 140, 182, 0.1), 0 8px 10px -6px rgba(75, 140, 182, 0.05);
    --shadow-lg: 0 25px 50px -12px rgba(75, 140, 182, 0.15);
    --shadow-cta: 0 10px 15px -3px rgba(242, 111, 65, 0.25);

    --transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

/* Reset & Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: 90px;
}

body {
    font-family: var(--font-body);
    background-color: var(--bg-main);
    color: var(--text-main);
    line-height: 1.7;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-heading);
    color: var(--text-main);
    line-height: 1.15;
    font-weight: 700;
    letter-spacing: -0.02em;
}

a {
    text-decoration: none;
    color: var(--accent-color);
    transition: var(--transition);
}

a:hover {
    color: var(--accent-hover);
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 5%;
}

.section-padding {
    padding: 120px 0;
}

.bg-light-accent {
    background-color: var(--bg-secondary);
}

.text-center {
    text-align: center;
}

.accent-text {
    color: var(--accent-color);
}

.lead-text {
    font-size: 1.25rem;
    color: var(--text-muted);
    margin-bottom: 2rem;
    font-weight: 400;
}

.mt-4 {
    margin-top: 2rem;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.85rem 1.75rem;
    border-radius: 50px;
    font-weight: 500;
    font-family: var(--font-heading);
    cursor: pointer;
    transition: var(--transition);
    border: 2px solid transparent;
    font-size: 1.05rem;
}

.btn-cta {
    background-color: var(--cta-color);
    color: var(--white);
    box-shadow: var(--shadow-sm);
}

.btn-cta:hover {
    background-color: var(--cta-hover);
    transform: translateY(-3px);
    box-shadow: var(--shadow-cta);
    color: var(--white);
}

.btn-outline {
    background-color: transparent;
    border-color: var(--accent-color);
    color: var(--accent-color);
}

.btn-outline:hover {
    background-color: var(--accent-color);
    color: var(--white);
    transform: translateY(-3px);
    box-shadow: var(--shadow-md);
}

.btn-large {
    padding: 1.1rem 2.5rem;
    font-size: 1.15rem;
}

/* Section Tags */
.section-tag {
    display: inline-block;
    text-transform: uppercase;
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 2px;
    color: var(--cta-color);
    margin-bottom: 1rem;
}

.section-header h2 {
    font-size: 3rem;
    margin-bottom: 3.5rem;
}

/* Navbar */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background: transparent;
    transition: var(--transition);
    padding: 1.5rem 0;
}

.navbar.scrolled {
    background: var(--glass-bg);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.4);
    padding: 0.85rem 0;
    box-shadow: var(--shadow-sm);
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo-img {
    height: 48px;
    width: auto;
    display: block;
    transition: var(--transition);
}

.navbar.scrolled .logo-img {
    height: 40px;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 2.2rem;
}

.nav-links a:not(.btn) {
    color: var(--text-main);
    font-weight: 500;
    font-size: 0.95rem;
    position: relative;
    padding: 0.5rem 0;
}

.lang-switch i {
    margin-right: 4px;
}

.nav-links a:not(.btn)::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--accent-color);
    transition: width 0.3s ease;
}

.nav-links a:not(.btn):hover::after,
.nav-links a.active:not(.btn)::after {
    width: 100%;
}

.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    font-size: 1.7rem;
    color: var(--text-main);
    cursor: pointer;
}

/* --- Hero Section (New Split Design) --- */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding-top: 100px;
    padding-bottom: 60px;
    position: relative;
    overflow: hidden;
}

.hero-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(75, 140, 182, 0.08);
    color: var(--accent-color);
    padding: 8px 16px;
    border-radius: 100px;
    font-weight: 600;
    font-size: 0.9rem;
    margin-bottom: 1.5rem;
    border: 1px solid rgba(75, 140, 182, 0.15);
}

.hero h1 {
    font-size: 4.5rem;
    margin-bottom: 1.5rem;
    line-height: 1.1;
    color: var(--text-main);
}

.hero-subtitle {
    font-size: 1.25rem;
    color: var(--text-muted);
    margin-bottom: 2.5rem;
    max-width: 550px;
}

.hero-buttons {
    display: flex;
    gap: 1.2rem;
    flex-wrap: wrap;
}

/* Hero Media (Right side) */
.hero-media {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.image-wrapper {
    position: relative;
    width: 100%;
    max-width: 500px;
}

.shape-blob {
    position: absolute;
    top: -5%;
    right: -10%;
    width: 110%;
    height: 110%;
    background: linear-gradient(135deg, rgba(75, 140, 182, 0.2) 0%, rgba(249, 255, 255, 0) 100%);
    border-radius: 60% 40% 30% 70% / 60% 30% 70% 40%;
    z-index: 0;
    animation: blobMorph 15s ease-in-out infinite alternate;
}

.hero-img {
    border-radius: 24px;
    position: relative;
    z-index: 1;
    box-shadow: var(--shadow-lg);
    width: 100%;
    aspect-ratio: 4/5;
    object-fit: cover;
}

.floating-card {
    position: absolute;
    bottom: 20px;
    left: -40px;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    padding: 1.2rem 1.5rem;
    border-radius: 16px;
    box-shadow: var(--shadow-md);
    display: flex;
    align-items: center;
    gap: 1rem;
    z-index: 2;
    border: 1px solid rgba(255, 255, 255, 0.5);
    animation: float 6s ease-in-out infinite;
}

.icon-circle {
    width: 45px;
    height: 45px;
    background: var(--cta-color);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
}

.floating-text strong {
    display: block;
    color: var(--text-main);
    font-size: 1rem;
    font-family: var(--font-heading);
}

.floating-text span {
    color: var(--text-muted);
    font-size: 0.85rem;
}

/* About Section */
.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: center;
}

.about-text h2 {
    font-size: 3rem;
    margin-bottom: 1.5rem;
}

.about-text p {
    margin-bottom: 1.5rem;
    color: var(--text-muted);
}

.about-image {
    position: relative;
}

.about-slider-wrapper {
    position: relative;
    border-radius: 24px;
    overflow: hidden;
    aspect-ratio: 4/3;
    background-color: var(--bg-secondary);
    box-shadow: var(--shadow-lg);
}

.about-slider {
    display: flex;
    width: 100%;
    height: 100%;
    transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.about-slider img {
    min-width: 100%;
    height: 100%;
    object-fit: cover;
    flex-shrink: 0;
}

.slider-dots {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 8px;
    z-index: 10;
}

.slider-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.5);
    cursor: pointer;
    transition: var(--transition);
    border: 1px solid rgba(0, 0, 0, 0.1);
}

.slider-dot.active {
    background: var(--white);
    transform: scale(1.3);
    border-color: white;
}

.image-accent {
    position: absolute;
    bottom: -30px;
    right: -30px;
    width: 200px;
    height: 200px;
    background: linear-gradient(135deg, var(--accent-color) 0%, transparent 100%);
    border-radius: 24px;
    z-index: -1;
    opacity: 0.15;
}

/* Values Section */
.values-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2.5rem;
}

.value-card {
    background: var(--white);
    padding: 3rem 2.5rem;
    border-radius: 28px;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
    z-index: 1;
    border: 1px solid rgba(75, 140, 182, 0.08);
    display: flex;
    gap: 1.8rem;
    align-items: flex-start;
}

.value-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background-color: var(--cta-color);
    transform: scaleY(0);
    transform-origin: bottom;
    transition: transform 0.4s cubic-bezier(0.86, 0, 0.07, 1);
}

.value-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
    border-color: transparent;
}

.value-card:hover::before {
    transform: scaleY(1);
    transform-origin: top;
}

.value-card:hover .value-icon {
    background-color: var(--cta-color);
    color: var(--white);
    transform: rotate(-10deg) scale(1.1);
}

.value-icon {
    width: 70px;
    height: 70px;
    background-color: rgba(242, 111, 65, 0.1);
    color: var(--cta-color);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    flex-shrink: 0;
    transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.value-card-content {
    flex: 1;
}

.value-card-content h3 {
    margin-bottom: 0.8rem;
    font-size: 1.5rem;
    color: var(--text-main);
}

.value-card-content p {
    color: var(--text-muted);
    font-size: 1.05rem;
    line-height: 1.6;
}

/* Services */
.services-content {
    max-width: 1000px;
    margin: 0 auto;
}

.service-item {
    margin-bottom: 2rem;
    background: var(--white);
    padding: 3rem;
    border-radius: 24px;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    border: 1px solid rgba(0, 0, 0, 0.02);
}

.service-item:hover {
    box-shadow: var(--shadow-md);
}

.service-item h3 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 1.2rem;
}

.service-item h3 i {
    background: rgba(242, 111, 65, 0.1);
    color: var(--cta-color);
    padding: 12px;
    border-radius: 12px;
    font-size: 1.2rem;
}

.styled-list {
    list-style: none;
    margin-top: 1.8rem;
}

.styled-list li {
    position: relative;
    padding-left: 2.5rem;
    margin-bottom: 1.2rem;
    color: var(--text-muted);
}

.styled-list li::before {
    content: '\f058';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    position: absolute;
    left: 0;
    top: 3px;
    color: var(--accent-color);
    font-size: 1.2rem;
}

.styled-list strong {
    color: var(--text-main);
}

.service-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
}

.service-card {
    background: var(--white);
    padding: 2.5rem 2rem;
    border-radius: 24px;
    box-shadow: var(--shadow-sm);
    text-align: center;
    border: 1px solid rgba(75, 140, 182, 0.08);
    transition: var(--transition);
}

.service-card:hover {
    box-shadow: var(--shadow-md);
    transform: translateY(-5px);
}

.service-card i {
    font-size: 2.5rem;
    color: var(--accent-color);
    margin-bottom: 1.5rem;
}

.service-card h4 {
    margin-bottom: 0.8rem;
    font-size: 1.3rem;
}

.service-card p {
    color: var(--text-muted);
    font-size: 1rem;
}

/* Gallery Section */
.gallery {
    background-color: var(--white);
}

.gallery-mosaic {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    grid-template-rows: 250px 250px;
    gap: 1.5rem;
    border-radius: 28px;
    overflow: hidden;
    box-shadow: var(--shadow-sm);
}

.gallery-item {
    position: relative;
    overflow: hidden;
    cursor: pointer;
    background-color: var(--text-main);
    width: 100%;
    height: 100%;
}

.gallery-item.large {
    grid-row: span 2;
}

.gallery-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to top, rgba(26, 32, 44, 0.8), rgba(26, 32, 44, 0.2));
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    opacity: 0;
    transition: var(--transition);
}

.gallery-overlay.always-show {
    opacity: 1;
    background: rgba(26, 32, 44, 0.7);
    flex-direction: column;
    gap: 0.2rem;
}

.gallery-overlay.always-show:hover {
    background: rgba(242, 111, 65, 0.85);
    /* CTA Hover */
}

.more-text {
    font-size: 2.5rem;
    font-family: var(--font-heading);
    font-weight: 700;
    line-height: 1.1;
}

.more-sub {
    font-size: 0.9rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.gallery-overlay i {
    font-size: 2.5rem;
    transform: scale(0.5);
    transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.gallery-item:hover {
    box-shadow: var(--shadow-md);
    transform: translateY(-5px);
}

.gallery-item:hover .gallery-img {
    transform: scale(1.08);
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

.gallery-item:hover .gallery-overlay i {
    transform: scale(1);
}

/* Lightbox Modal */
.lightbox {
    position: fixed;
    z-index: 2000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(17, 24, 39, 0.95);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.4s ease;
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
}

.lightbox.active {
    opacity: 1;
    pointer-events: auto;
}

.lightbox-content {
    max-width: 90%;
    max-height: 90vh;
    border-radius: 12px;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
    transform: scale(0.9);
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.lightbox.active .lightbox-content {
    transform: scale(1);
}

.lightbox-close {
    position: absolute;
    top: 30px;
    right: 40px;
    color: var(--white);
    font-size: 3.5rem;
    font-weight: 300;
    cursor: pointer;
    transition: var(--transition);
    z-index: 2001;
    line-height: 1;
}

.lightbox-close:hover {
    color: var(--cta-color);
    transform: rotate(90deg);
}

.lightbox-prev,
.lightbox-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.1);
    color: white;
    border: none;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    font-size: 1.5rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2001;
    transition: var(--transition);
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
}

.lightbox-prev {
    left: 40px;
}

.lightbox-next {
    right: 40px;
}

.lightbox-prev:hover,
.lightbox-next:hover {
    background: var(--cta-color);
    transform: translateY(-50%) scale(1.1);
}

.lightbox-counter {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    color: white;
    font-size: 1.1rem;
    font-weight: 500;
    letter-spacing: 2px;
    z-index: 2001;
}

/* Resources */
.resources-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: center;
}

.resources-text h2 {
    font-size: 3rem;
    margin-bottom: 1.5rem;
}

.resources-text p {
    color: var(--text-muted);
    margin-bottom: 2.5rem;
    font-size: 1.15rem;
}

.podcast-links {
    display: flex;
    flex-direction: column;
    gap: 1.2rem;
}

.podcast-btn {
    display: flex;
    align-items: center;
    gap: 1.2rem;
    padding: 1.2rem 1.8rem;
    background-color: var(--white);
    border-radius: 16px;
    color: var(--text-main);
    font-weight: 600;
    box-shadow: var(--shadow-sm);
    border: 1px solid rgba(0, 0, 0, 0.03);
    transition: var(--transition);
}

.podcast-btn:hover {
    transform: translateX(10px);
    box-shadow: var(--shadow-md);
    border-color: rgba(75, 140, 182, 0.2);
}

.podcast-btn i {
    font-size: 1.8rem;
}

.podcast-btn i.fa-apple {
    color: #000000;
}

.podcast-btn i.fa-spotify {
    color: #1DB954;
}

.podcast-btn i.fa-youtube {
    color: #FF0000;
}

.mockup-container {
    background: linear-gradient(135deg, var(--accent-color) 0%, #1e3c52 100%);
    border-radius: 40px;
    padding: 6rem;
    display: flex;
    justify-content: center;
    align-items: center;
    box-shadow: var(--shadow-lg);
    position: relative;
    overflow: hidden;
}

.mockup-container::after {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 60%);
}

.podcast-icon-large {
    font-size: 10rem;
    color: rgba(255, 255, 255, 0.9);
    filter: drop-shadow(0 15px 15px rgba(0, 0, 0, 0.2));
}

/* Donate CTA */
.donate-cta {
    background: linear-gradient(135deg, var(--cta-hover) 0%, var(--cta-color) 100%);
    position: relative;
    padding: 120px 0;
    overflow: hidden;
}

.donate-cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('data:image/svg+xml;utf8,<svg width="40" height="40" viewBox="0 0 40 40" xmlns="http://www.w3.org/2000/svg"><circle cx="20" cy="20" r="1" fill="rgba(255,255,255,0.2)"/></svg>');
}

.donate-cta .container {
    position: relative;
    z-index: 1;
}

.donate-cta h2,
.donate-cta p {
    color: var(--white);
}

.donate-cta h2 {
    font-size: 3.5rem;
}

.donate-cta p {
    opacity: 0.95;
    max-width: 750px;
    margin: 0 auto 2.5rem;
}

.donate-cta .btn-cta {
    background-color: var(--white);
    color: var(--cta-color);
    padding: 1.2rem 3rem;
}

.donate-cta .btn-cta:hover {
    background-color: var(--bg-main);
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
}

/* Footer */
.footer {
    background-color: #111827;
    color: #f3f4f6;
    padding: 100px 0 30px;
    font-size: 0.95rem;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 4rem;
    margin-bottom: 4rem;
}

.footer-img {
    height: 56px;
    opacity: 0.95;
    margin-bottom: 1.5rem;
}

.footer-brand p {
    color: #9ca3af;
    max-width: 320px;
}

.footer h3 {
    color: var(--white);
    margin-bottom: 1.8rem;
    font-size: 1.25rem;
}

.footer-links ul {
    list-style: none;
}

.footer-links li {
    margin-bottom: 0.85rem;
}

.footer-links a {
    color: #9ca3af;
    transition: var(--transition);
}

.footer-links a:hover {
    color: var(--cta-color);
    padding-left: 8px;
}

.social-icons {
    display: flex;
    gap: 1.2rem;
}

.social-icons a {
    width: 45px;
    height: 45px;
    background-color: rgba(255, 255, 255, 0.05);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    color: var(--white);
    font-size: 1.2rem;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.social-icons a:hover {
    background-color: var(--cta-color);
    transform: translateY(-4px);
    border-color: var(--cta-color);
}

.footer-partner {
    margin-top: 2.5rem;
    display: block;
}

.partner-img {
    height: 100px;
    max-width: 100%;
    object-fit: contain;
    opacity: 0.85;
    transition: var(--transition);
    filter: drop-shadow(0 4px 6px rgba(0, 0, 0, 0.1));
}

.partner-img:hover {
    opacity: 1;
    transform: translateY(-3px);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 30px;
    text-align: center;
    color: #6b7280;
    font-size: 0.9rem;
}

/* Animations */
.scroll-reveal {
    opacity: 0;
    transform: translateY(40px);
    transition: all 0.9s cubic-bezier(0.16, 1, 0.3, 1);
}

.scroll-reveal.visible {
    opacity: 1;
    transform: translateY(0);
}

.fade-in-up {
    animation: fadeInUp 0.9s cubic-bezier(0.16, 1, 0.3, 1) forwards;
    opacity: 0;
}

.delay-1 {
    animation-delay: 0.15s;
    transition-delay: 0.15s;
}

.delay-2 {
    animation-delay: 0.3s;
    transition-delay: 0.3s;
}

.delay-3 {
    animation-delay: 0.45s;
    transition-delay: 0.45s;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(40px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes float {
    0% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-15px);
    }

    100% {
        transform: translateY(0px);
    }
}

@keyframes blobMorph {
    0% {
        border-radius: 60% 40% 30% 70% / 60% 30% 70% 40%;
    }

    50% {
        border-radius: 30% 60% 70% 40% / 50% 60% 30% 60%;
    }

    100% {
        border-radius: 60% 40% 30% 70% / 60% 30% 70% 40%;
    }
}

/* Responsive */
@media (max-width: 1024px) {
    .container {
        padding: 0 6%;
    }

    .hero h1 {
        font-size: 3.5rem;
    }

    .about-grid,
    .resources-wrapper {
        gap: 3rem;
    }
}

@media (max-width: 992px) {
    .hero-container {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 4rem;
    }

    .hero-subtitle {
        margin: 0 auto 2.5rem;
    }

    .hero-buttons {
        justify-content: center;
    }

    .hero-media {
        padding: 0 2rem;
    }

    .floating-card {
        left: -10px;
        bottom: 10px;
    }

    .about-grid,
    .resources-wrapper,
    .values-grid {
        grid-template-columns: 1fr;
    }

    .gallery-mosaic {
        border-radius: 0;
    }

    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 768px) {
    .navbar {
        padding: 1.2rem 0;
    }

    .logo-img {
        height: 40px;
    }

    .mobile-menu-btn {
        display: block;
    }

    .nav-links {
        position: fixed;
        top: 70px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 70px);
        background-color: rgba(249, 249, 249, 0.98);
        backdrop-filter: blur(10px);
        -webkit-backdrop-filter: blur(10px);
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: flex-start;
        transition: var(--transition);
        padding: 2rem;
        gap: 1rem;
        z-index: 999;
        overflow-y: auto;
    }

    .nav-links.active {
        left: 0;
    }

    .nav-links a:not(.btn) {
        font-size: 1.25rem !important;
        padding: 0.5rem;
    }

    .value-card {
        flex-direction: column;
        padding: 2.5rem 2rem;
        gap: 1.2rem;
    }

    .service-grid {
        grid-template-columns: 1fr;
    }

    .gallery-mosaic {
        grid-template-columns: 1fr 1fr;
        grid-template-rows: 200px 200px 200px;
        border-radius: 16px;
    }

    .gallery-mosaic .gallery-item.large {
        grid-column: span 2;
        grid-row: span 1;
    }

    .lightbox-close {
        top: 20px;
        right: 20px;
        font-size: 2.5rem;
    }

    .lightbox-prev {
        left: 10px;
        width: 45px;
        height: 45px;
    }

    .lightbox-next {
        right: 10px;
        width: 45px;
        height: 45px;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }

    .hero {
        padding-top: 130px;
    }

    .hero h1 {
        font-size: 2.8rem;
    }

    .section-header h2 {
        font-size: 2.5rem;
    }
}