/* ===== RESET & BASE ===== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --red-600: #dc2626;
    --red-700: #b91c1c;
    --red-50: #fef2f2;
    --red-100: #fee2e2;
    --red-200: #fecaca;
    --blue-100: #dbeafe;
    --blue-600: #2563eb;
    --green-100: #dcfce7;
    --green-600: #16a34a;
    --purple-100: #f3e8ff;
    --purple-600: #9333ea;
    --orange-100: #ffedd5;
    --orange-600: #ea580c;
    --indigo-100: #e0e7ff;
    --indigo-600: #4f46e5;
    --gray-50: #f9fafb;
    --gray-100: #f3f4f6;
    --gray-200: #e5e7eb;
    --gray-400: #9ca3af;
    --gray-500: #6b7280;
    --gray-600: #4b5563;
    --gray-700: #374151;
    --gray-800: #1f2937;
    --gray-900: #111827;
    --white: #ffffff;
    --black: #000000;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    line-height: 1.6;
    color: var(--gray-900);
    background: var(--white);
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    text-decoration: none;
    color: inherit;
}

ul {
    list-style: none;
}

.hidden {
    display: none !important;
}

.w-full {
    width: 100%;
}

/* ===== CONTAINERS ===== */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
}

.container-large {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 1rem;
}

/* ===== BUTTONS ===== */
.btn {
    display: inline-block;
    padding: 0.75rem 1.5rem;
    border-radius: 0.5rem;
    font-weight: 600;
    text-align: center;
    cursor: pointer;
    border: none;
    transition: all 0.3s ease;
    font-size: 1rem;
}

.btn-primary {
    background: var(--red-600);
    color: var(--white);
}

    .btn-primary:hover {
        background: var(--red-700);
        transform: translateY(-2px);
        box-shadow: 0 10px 20px rgba(220, 38, 38, 0.2);
    }

.btn-outline {
    background: transparent;
    color: var(--white);
    border: 2px solid var(--white);
}

    .btn-outline:hover {
        background: rgba(255, 255, 255, 0.1);
        backdrop-filter: blur(10px);
    }

.btn-outline-red {
    background: transparent;
    color: var(--red-600);
    border: 2px solid var(--red-600);
}

    .btn-outline-red:hover {
        background: var(--red-50);
    }

.btn-lg {
    padding: 1rem 2rem;
    font-size: 1.125rem;
}

.btn-icon {
    width: 2.5rem;
    height: 2.5rem;
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 0.5rem;
    background: transparent;
    border: 2px solid var(--red-600);
    color: var(--red-600);
    cursor: pointer;
    transition: all 0.3s ease;
}

    .btn-icon:hover {
        background: var(--red-50);
    }

/* ===== NAVIGATION ===== */
.nav-fixed {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.nav-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 1rem;
}

.nav-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 5rem;
}

.logo-img {
    height: 3.5rem;
    width: auto;
}

.desktop-nav {
    display: none;
}

@media (min-width: 768px) {
    .desktop-nav {
        display: flex;
        align-items: center;
        gap: 2rem;
    }
}

.nav-link {
    color: var(--gray-700);
    font-weight: 500;
    transition: color 0.3s ease;
}

    .nav-link:hover {
        color: var(--red-600);
    }

.mobile-menu-btn {
    display: block;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
}

@media (min-width: 768px) {
    .mobile-menu-btn {
        display: none;
    }
}

.mobile-nav {
    padding: 1rem 0;
    border-top: 1px solid var(--gray-200);
}

.mobile-nav-link {
    display: block;
    padding: 0.75rem 0;
    color: var(--gray-700);
    font-weight: 500;
    transition: color 0.3s ease;
}

    .mobile-nav-link:hover {
        color: var(--red-600);
    }

/* ===== HERO SLIDER ===== */
.hero-section {
    margin-top: 5rem;
    height: calc(100vh - 5rem);
    position: relative;
    overflow: hidden;
}

.hero-slider {
    height: 100%;
}

.hero-slide {
    position: relative;
    height: calc(100vh - 5rem);
}

.hero-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, rgba(0,0,0,0.6), rgba(0,0,0,0.4), rgba(0,0,0,0.7));
}

.hero-content {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    color: var(--white);
    padding: 2rem;
    z-index: 10;
}

.hero-title {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    animation: fadeIn 1s ease-in;
}

@media (min-width: 768px) {
    .hero-title {
        font-size: 4rem;
    }
}

@media (min-width: 1024px) {
    .hero-title {
        font-size: 5rem;
    }
}

.hero-subtitle {
    font-size: 1.25rem;
    margin-bottom: 2.5rem;
    max-width: 48rem;
    opacity: 0.9;
}

@media (min-width: 768px) {
    .hero-subtitle {
        font-size: 1.5rem;
    }
}

@media (min-width: 1024px) {
    .hero-subtitle {
        font-size: 1.875rem;
    }
}

.hero-buttons {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

@media (min-width: 640px) {
    .hero-buttons {
        flex-direction: row;
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Slick Slider Custom Styles */
.slick-dots {
    bottom: 30px !important;
}

    .slick-dots li button:before {
        font-size: 12px;
        color: rgba(255, 255, 255, 0.5);
    }

    .slick-dots li.slick-active button:before {
        color: var(--white);
    }

.slick-prev, .slick-next {
    width: 48px;
    height: 48px;
    z-index: 20;
    background: rgba(255, 255, 255, 0.2) !important;
    border-radius: 50%;
    backdrop-filter: blur(10px);
}

    .slick-prev:hover, .slick-next:hover {
        background: rgba(255, 255, 255, 0.3) !important;
    }

.slick-prev {
    left: 1rem;
}

.slick-next {
    right: 1rem;
}

@media (min-width: 768px) {
    .slick-prev {
        left: 2rem;
    }

    .slick-next {
        right: 2rem;
    }
}

/* ===== SECTIONS ===== */
.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
}

@media (min-width: 768px) {
    .section-title {
        font-size: 3rem;
    }
}

.section-description {
    font-size: 1.25rem;
    color: var(--gray-700);
    max-width: 48rem;
    margin: 0 auto;
}

/* ===== ABOUT SECTION ===== */
.section-about {
    padding: 5rem 1rem;
    background: linear-gradient(to bottom, var(--white), var(--red-50));
}

.values-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
}

@media (min-width: 768px) {
    .values-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.value-card {
    background: var(--white);
    padding: 2rem;
    border-radius: 1rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

    .value-card:hover {
        box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
        transform: translateY(-5px);
    }

.value-icon {
    width: 4rem;
    height: 4rem;
    background: var(--red-100);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    color: var(--red-600);
}

    .value-icon svg {
        width: 2rem;
        height: 2rem;
    }

.value-title {
    font-size: 1.5rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 1rem;
}

.value-description {
    text-align: center;
    color: var(--gray-600);
    line-height: 1.7;
}

/* ===== SERVICES SECTION ===== */
.section-services {
    padding: 5rem 1rem;
    background: var(--white);
}

.services-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin-bottom: 4rem;
}

@media (min-width: 768px) {
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .services-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.service-card {
    background: var(--white);
    padding: 2rem;
    border-radius: 1rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    border: 1px solid var(--gray-100);
    transition: all 0.3s ease;
}

    .service-card:hover {
        box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
        transform: translateY(-8px);
    }

.service-icon {
    width: 4rem;
    height: 4rem;
    border-radius: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    transition: transform 0.3s ease;
}

.service-card:hover .service-icon {
    transform: rotate(12deg);
}

.service-icon svg {
    width: 2rem;
    height: 2rem;
}

.service-icon.red {
    background: var(--red-100);
    color: var(--red-600);
}

.service-icon.blue {
    background: var(--blue-100);
    color: var(--blue-600);
}

.service-icon.green {
    background: var(--green-100);
    color: var(--green-600);
}

.service-icon.purple {
    background: var(--purple-100);
    color: var(--purple-600);
}

.service-icon.orange {
    background: var(--orange-100);
    color: var(--orange-600);
}

.service-icon.indigo {
    background: var(--indigo-100);
    color: var(--indigo-600);
}

.service-title {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
}

.service-description {
    color: var(--gray-600);
    margin-bottom: 1rem;
    line-height: 1.7;
}

.service-time {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--gray-500);
    font-size: 0.875rem;
    padding-top: 1rem;
    border-top: 1px solid var(--gray-200);
    margin-bottom: 1.5rem;
}

    .service-time svg {
        width: 1rem;
        height: 1rem;
    }

.cta-box {
    background: linear-gradient(to right, var(--red-50), #ffedd5);
    border-radius: 1.5rem;
    padding: 3rem 2rem;
    text-align: center;
}

.cta-title {
    font-size: 1.875rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.cta-description {
    font-size: 1.25rem;
    color: var(--gray-700);
    max-width: 42rem;
    margin: 0 auto 2rem;
}

/* ===== EDIFICATION SECTION ===== */
.section-edification {
    padding: 5rem 1rem;
    background: linear-gradient(to bottom, var(--gray-50), var(--white));
}

.resources-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin-bottom: 4rem;
}

@media (min-width: 768px) {
    .resources-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.resource-card {
    border-radius: 1rem;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

    .resource-card:hover {
        box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
    }

.resource-image {
    position: relative;
    height: 16rem;
    overflow: hidden;
}

    .resource-image img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        transition: transform 0.5s ease;
    }

.resource-card:hover .resource-image img {
    transform: scale(1.1);
}

.resource-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.8), rgba(0,0,0,0.4), transparent);
}

.resource-icon-top {
    position: absolute;
    top: 1rem;
    left: 1rem;
    width: 3rem;
    height: 3rem;
    background: var(--red-600);
    border-radius: 0.75rem;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
}

    .resource-icon-top svg {
        width: 1.5rem;
        height: 1.5rem;
    }

.resource-content {
    padding: 1.5rem;
    background: var(--white);
}

.resource-title {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
}

.resource-description {
    color: var(--gray-600);
    margin-bottom: 1rem;
    line-height: 1.7;
}

.recent-teachings {
    background: var(--white);
    border-radius: 1.5rem;
    padding: 2rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

@media (min-width: 768px) {
    .recent-teachings {
        padding: 3rem;
    }
}

.teachings-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
}

.teachings-title {
    font-size: 1.875rem;
    font-weight: 700;
}

.teachings-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
}

@media (min-width: 768px) {
    .teachings-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

.teaching-item {
    display: flex;
    align-items: center;
    padding: 1.5rem;
    border: 1px solid var(--gray-200);
    border-radius: 0.75rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

    .teaching-item:hover {
        border-color: #fca5a5;
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    }

.teaching-icon {
    width: 3rem;
    height: 3rem;
    background: var(--red-100);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 1rem;
    color: var(--red-600);
    flex-shrink: 0;
    transition: all 0.3s ease;
}

.teaching-item:hover .teaching-icon {
    background: var(--red-600);
    color: var(--white);
}

.teaching-icon svg {
    width: 1.5rem;
    height: 1.5rem;
}

.teaching-info {
    flex: 1;
}

.teaching-name {
    font-weight: 600;
    margin-bottom: 0.25rem;
    transition: color 0.3s ease;
}

.teaching-item:hover .teaching-name {
    color: var(--red-600);
}

.teaching-meta {
    display: flex;
    align-items: center;
    gap: 1rem;
    font-size: 0.875rem;
    color: var(--gray-500);
}

.teaching-badge {
    padding: 0.25rem 0.5rem;
    background: var(--gray-100);
    border-radius: 9999px;
    font-size: 0.75rem;
}

/* ===== MEDIATHEQUE SECTION ===== */
.section-mediatheque {
    padding: 5rem 1rem;
    background: var(--white);
}

.tabs {
    margin-top: 3rem;
}

.tabs-list {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    max-width: 42rem;
    margin: 0 auto 3rem;
    gap: 0.5rem;
}

.tab-trigger {
    padding: 0.75rem 1rem;
    font-size: 1.125rem;
    font-weight: 600;
    background: var(--gray-100);
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    border-radius: 0.5rem;
}

    .tab-trigger.active {
        background: var(--red-600);
        color: var(--white);
    }

.tab-content {
    display: none;
}

    .tab-content.active {
        display: block;
    }

.media-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
}

@media (min-width: 768px) {
    .media-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .media-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

.video-card {
    background: var(--white);
    border-radius: 0.75rem;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

    .video-card:hover {
        box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
        transform: translateY(-8px);
    }

.video-thumbnail {
    position: relative;
    height: 12rem;
    overflow: hidden;
}

    .video-thumbnail img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        transition: transform 0.5s ease;
    }

.video-card:hover .video-thumbnail img {
    transform: scale(1.1);
}

.video-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.4);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.video-card:hover .video-overlay {
    opacity: 1;
}

.play-button {
    width: 4rem;
    height: 4rem;
    background: var(--red-600);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    transform: scale(0.9);
    transition: transform 0.3s ease;
}

.video-card:hover .play-button {
    transform: scale(1);
}

.play-button svg {
    width: 2rem;
    height: 2rem;
    margin-left: 0.25rem;
}

.video-duration {
    position: absolute;
    bottom: 0.5rem;
    right: 0.5rem;
    background: rgba(0, 0, 0, 0.8);
    color: var(--white);
    padding: 0.25rem 0.5rem;
    border-radius: 0.25rem;
    font-size: 0.75rem;
}

.video-info {
    padding: 1rem;
}

.video-title {
    font-weight: 600;
    margin-bottom: 0.5rem;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.video-views {
    font-size: 0.875rem;
    color: var(--gray-500);
}

/* Audio List */
.audio-list {
    max-width: 56rem;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.audio-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1.5rem;
    background: var(--white);
    border-radius: 0.75rem;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    border: 1px solid var(--gray-100);
    transition: all 0.3s ease;
}

    .audio-item:hover {
        box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
    }

.audio-play {
    width: 3rem;
    height: 3rem;
    background: var(--red-100);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 1rem;
    color: var(--red-600);
    flex-shrink: 0;
}

    .audio-play svg {
        width: 1.25rem;
        height: 1.25rem;
    }

.audio-info {
    flex: 1;
}

.audio-title {
    font-weight: 600;
    margin-bottom: 0.25rem;
}

.audio-meta {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 0.875rem;
    color: var(--gray-500);
}

.audio-actions {
    display: flex;
    gap: 0.5rem;
}

/* Photo Grid */
.photo-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
}

@media (min-width: 768px) {
    .photo-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .photo-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

.photo-album {
    background: linear-gradient(to bottom right, var(--red-100), var(--orange-100));
    padding: 2rem;
    border-radius: 0.75rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    cursor: pointer;
    transition: all 0.3s ease;
}

    .photo-album:hover {
        box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
        transform: translateY(-8px);
    }

.album-icon {
    width: 4rem;
    height: 4rem;
    background: var(--white);
    border-radius: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    color: var(--red-600);
    transition: transform 0.3s ease;
}

.photo-album:hover .album-icon {
    transform: scale(1.1);
}

.album-icon svg {
    width: 2rem;
    height: 2rem;
}

.album-title {
    font-weight: 600;
    text-align: center;
    margin-bottom: 0.5rem;
}

.album-count {
    text-align: center;
    font-size: 0.875rem;
    color: var(--gray-600);
}

.media-cta {
    margin-top: 3rem;
    text-align: center;
}

/* ===== TESTIMONIALS SECTION ===== */
.section-testimonials {
    padding: 5rem 1rem;
    background: linear-gradient(to bottom, var(--red-50), var(--white));
}

.testimonials-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
}

@media (min-width: 768px) {
    .testimonials-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.testimonial-card {
    background: var(--white);
    padding: 2rem;
    border-radius: 1rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    position: relative;
}

.testimonial-quote {
    font-size: 4rem;
    color: var(--red-200);
    position: absolute;
    top: 1rem;
    left: 1rem;
    line-height: 1;
}

.testimonial-text {
    position: relative;
    padding-top: 2rem;
    color: var(--gray-700);
    font-style: italic;
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.testimonial-author {
    padding-top: 1rem;
    border-top: 1px solid var(--gray-200);
}

.author-name {
    font-weight: 600;
    margin-bottom: 0.25rem;
}

.author-role {
    font-size: 0.875rem;
    color: var(--gray-500);
}

/* ===== CONTACT SECTION ===== */
.section-contact {
    padding: 5rem 1rem;
    background: var(--white);
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
}

@media (min-width: 768px) {
    .contact-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

.form-title, .info-title {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.form-input, .form-textarea {
    width: 100%;
    padding: 0.75rem 1rem;
    border: 2px solid var(--gray-200);
    border-radius: 0.5rem;
    font-family: inherit;
    font-size: 1rem;
    transition: border-color 0.3s ease;
}

    .form-input:focus, .form-textarea:focus {
        outline: none;
        border-color: var(--red-500);
    }

.form-textarea {
    resize: none;
}

.contact-info-list {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.info-item {
    display: flex;
    align-items: flex-start;
}

.info-icon {
    width: 3rem;
    height: 3rem;
    background: var(--red-100);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 1rem;
    color: var(--red-600);
    flex-shrink: 0;
}

    .info-icon svg {
        width: 1.5rem;
        height: 1.5rem;
    }

.info-label {
    font-weight: 600;
    margin-bottom: 0.25rem;
}

.info-text {
    color: var(--gray-600);
    line-height: 1.7;
}

.hours-box {
    background: var(--red-50);
    padding: 1.5rem;
    border-radius: 1rem;
}

.hours-title {
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.hours-text {
    color: var(--gray-700);
    line-height: 1.5;
}

/* ===== FOOTER ===== */
.footer {
    background: var(--gray-900);
    color: var(--white);
    padding: 3rem 1rem;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin-bottom: 2rem;
}

@media (min-width: 768px) {
    .footer-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

.footer-logo {
    height: 4rem;
    width: auto;
    margin-bottom: 1rem;
}

.footer-text {
    color: var(--gray-400);
    font-size: 0.875rem;
    line-height: 1.7;
}

.footer-title {
    font-weight: 600;
    margin-bottom: 1rem;
}

.footer-links {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

    .footer-links a {
        color: var(--gray-400);
        font-size: 0.875rem;
        transition: color 0.3s ease;
    }

        .footer-links a:hover {
            color: var(--white);
        }

.social-links {
    display: flex;
    gap: 1rem;
}

.social-link {
    width: 2.5rem;
    height: 2.5rem;
    background: var(--gray-800);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-center;
    transition: all 0.3s ease;
}

    .social-link:hover {
        background: var(--red-600);
        transform: translateY(-3px);
    }

    .social-link svg {
        width: 1.25rem;
        height: 1.25rem;
    }

.footer-bottom {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    padding-top: 2rem;
    border-top: 1px solid var(--gray-800);
    font-size: 0.875rem;
    color: var(--gray-400);
}

@media (min-width: 768px) {
    .footer-bottom {
        flex-direction: row;
        justify-content: space-between;
    }
}

.footer-heart {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

    .footer-heart svg {
        width: 1rem;
        height: 1rem;
        color: #ef4444;
    }
