:root {
    --primary: #1a3a5f;
    --primary-dark: #0f2140;
    --secondary: #c9a227;
    --secondary-light: #d4af37;
    --accent: #2d5a87;
    --background: #fafaf8;
    --background-alt: #f0ede4;
    --dark-bg: #0a1628;
    --text-primary: #1a1a1a;
    --text-secondary: #4a4a4a;
    --text-light: #fdfbf7;
    --shadow: 0 10px 40px rgba(26, 58, 95, 0.12);
    --shadow-hover: 0 25px 60px rgba(26, 58, 95, 0.2);
    --transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    --font-heading: 'Playfair Display', serif;
    --font-body: 'Outfit', sans-serif;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    font-size: 16px;
    line-height: 1.7;
    color: var(--text-primary);
    background-color: var(--background);
    overflow-x: hidden;
}

.container {
    max-width: 1300px;
    margin: 0 auto;
    padding: 0 30px;
}

.section {
    padding: 120px 0;
}

.section-header {
    text-align: center;
    margin-bottom: 70px;
}

.section-tag {
    display: inline-block;
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 4px;
    color: var(--secondary);
    margin-bottom: 15px;
    padding: 8px 20px;
    background: rgba(201, 162, 39, 0.1);
    border-radius: 30px;
}

.section-title {
    font-family: var(--font-heading);
    font-size: 3rem;
    color: var(--primary);
    position: relative;
    font-weight: 600;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -18px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: linear-gradient(90deg, transparent, var(--secondary), transparent);
}

.preloader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--dark-bg);
    z-index: 10000;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: opacity 0.5s ease, visibility 0.5s ease;
}

.preloader.hidden {
    opacity: 0;
    visibility: hidden;
}

.preloader-content {
    text-align: center;
    color: var(--text-light);
}

.cross-animation {
    font-size: 4rem;
    color: var(--secondary);
    animation: pulse 1.5s ease infinite;
}

@keyframes pulse {
    0%, 100% { transform: scale(1); opacity: 1; }
    50% { transform: scale(1.1); opacity: 0.8; }
}

.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(10, 22, 40, 0.95);
    backdrop-filter: blur(20px);
    padding: 18px 0;
    transition: var(--transition);
}

.header.scrolled {
    padding: 12px 0;
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.15);
    background: rgba(10, 22, 40, 0.98);
}

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

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
}

.logo-img {
    height: 50px;
    width: auto;
    border-radius: 8px;
    object-fit: cover;
}

.logo-text {
    font-family: var(--font-heading);
    font-size: 1.15rem;
    font-weight: 600;
    color: var(--text-light);
    text-transform: uppercase;
    letter-spacing: 2px;
}

.nav-list {
    display: flex;
    list-style: none;
    gap: 45px;
}

.nav-link {
    color: rgba(253, 251, 247, 0.85);
    text-decoration: none;
    font-weight: 500;
    font-size: 0.95rem;
    position: relative;
    padding: 8px 0;
    transition: var(--transition);
    letter-spacing: 0.5px;
}

.nav-link::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 2px;
    background: var(--secondary);
    transition: var(--transition);
    transform: translateX(-50%);
}

.nav-link:hover::before,
.nav-link.active::before {
    width: 100%;
}

.nav-link:hover {
    color: var(--text-light);
}

.mobile-toggle {
    display: none;
    flex-direction: column;
    gap: 6px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
}

.mobile-toggle span {
    width: 28px;
    height: 2px;
    background: var(--text-light);
    transition: var(--transition);
}

.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background: var(--dark-bg);
}

.hero-slides {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.hero-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    visibility: hidden;
    transition: opacity 1s ease, visibility 1s ease;
}

.hero-slide.active {
    opacity: 1;
    visibility: visible;
}

.hero-slide.active .slide-img {
    transform: scale(1.15);
    transition: transform 10s ease forwards;
}

.slide-img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform: scale(1);
    transition: transform 10s ease;
}

.hero-slide .hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, 
        rgba(10, 22, 40, 0.85) 0%, 
        rgba(26, 58, 95, 0.6) 50%,
        rgba(10, 22, 40, 0.75) 100%);
    z-index: 1;
}

.hero-slide .slide-content {
    position: relative;
    z-index: 2;
    text-align: left;
    max-width: 950px;
    margin: 0;
    padding: 0 60px;
}

.hero-slide.active .slide-content > * {
    animation: fadeInUp 1s ease forwards;
}

.hero-slide:nth-child(1) .slide-content > *:nth-child(1) { animation-delay: 0.2s; }
.hero-slide:nth-child(1) .slide-content > *:nth-child(2) { animation-delay: 0.4s; }
.hero-slide:nth-child(1) .slide-content > *:nth-child(3) { animation-delay: 0.6s; }
.hero-slide:nth-child(1) .slide-content > *:nth-child(4) { animation-delay: 0.8s; }

.hero-controls {
    position: absolute;
    bottom: 40px;
    left: 60px;
    z-index: 10;
}

.slide-dots {
    display: flex;
    gap: 12px;
}

.slide-dot {
    width: 14px;
    height: 14px;
    border-radius: 50%;
    background: rgba(253, 251, 247, 0.25);
    border: 2px solid var(--secondary);
    cursor: pointer;
    transition: var(--transition);
    padding: 0;
}

.slide-dot.active {
    background: var(--secondary);
    transform: scale(1.3);
}

.slide-dot:hover {
    background: rgba(253, 251, 247, 0.5);
}

.hero-arrows {
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    transform: translateY(-50%);
    display: flex;
    justify-content: space-between;
    padding: 0 30px;
    z-index: 10;
    pointer-events: auto;
}

.slide-arrow {
    width: 55px;
    height: 55px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(201, 162, 39, 0.15);
    border: 2px solid var(--secondary);
    color: var(--secondary);
    font-size: 1.3rem;
    cursor: pointer;
    transition: var(--transition);
    pointer-events: auto;
    backdrop-filter: blur(10px);
}

.slide-arrow:hover {
    background: var(--secondary);
    color: var(--dark-bg);
}

.hero-icon {
    font-size: 5rem;
    color: var(--secondary);
    margin-bottom: 35px;
    opacity: 0;
}

.hero-title {
    font-family: var(--font-heading);
    font-size: 3.8rem;
    font-weight: 700;
    color: var(--text-light);
    line-height: 1.15;
    margin-bottom: 15px;
    opacity: 0;
    text-align: left;
}

.hero-subtitle {
    font-family: var(--font-heading);
    font-size: 2rem;
    color: var(--secondary);
    margin-bottom: 25px;
    opacity: 0;
    font-weight: 500;
}

.hero-tagline {
    font-size: 1.3rem;
    color: rgba(253, 251, 247, 0.75);
    font-style: italic;
    margin-bottom: 45px;
    opacity: 0;
}

.hero-buttons {
    position: absolute;
    bottom: 130px;
    left: 60px;
    display: flex;
    gap: 25px;
    justify-content: flex-start;
    flex-wrap: wrap;
    z-index: 10;
    opacity: 0;
}

.scroll-indicator {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    color: rgba(253, 251, 247, 0.5);
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 3px;
    animation: fadeInUp 1s ease 1.2s both;
}

.scroll-arrow {
    width: 24px;
    height: 24px;
    border-right: 2px solid rgba(253, 251, 247, 0.5);
    border-bottom: 2px solid rgba(253, 251, 247, 0.5);
    transform: rotate(45deg);
    animation: scrollBounce 2s ease infinite;
}

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

@keyframes scrollBounce {
    0%, 100% { transform: rotate(45deg) translateY(0); }
    50% { transform: rotate(45deg) translateY(12px); }
}

.btn {
    display: inline-block;
    padding: 16px 40px;
    font-family: var(--font-body);
    font-size: 0.95rem;
    font-weight: 600;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    border: 2px solid transparent;
    cursor: pointer;
    transition: var(--transition);
}

.btn-primary {
    background: var(--secondary);
    color: var(--dark-bg);
    border-color: var(--secondary);
}

.btn-primary:hover {
    background: transparent;
    color: var(--secondary);
    transform: translateY(-4px);
    box-shadow: 0 10px 30px rgba(201, 162, 39, 0.3);
}

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

.btn-secondary:hover {
    background: var(--secondary);
    color: var(--dark-bg);
    transform: translateY(-4px);
    box-shadow: 0 10px 30px rgba(201, 162, 39, 0.3);
}

.about {
    background: var(--background);
    position: relative;
    overflow: hidden;
}

.about::before {
    content: '';
    position: absolute;
    top: -100px;
    right: -100px;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(201, 162, 39, 0.08) 0%, transparent 70%);
    border-radius: 50%;
}

.about-grid {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 80px;
    align-items: center;
}

.about-content {
    color: var(--text-primary);
}

.about-lead {
    font-size: 1.35rem;
    font-weight: 600;
    color: var(--primary);
    margin-bottom: 30px;
    line-height: 1.8;
}

.about-content p {
    margin-bottom: 25px;
    font-size: 1.05rem;
    color: var(--text-secondary);
}

.about-features {
    display: flex;
    flex-direction: column;
    gap: 30px;
    margin-top: 40px;
}

.feature-item {
    display: flex;
    gap: 22px;
    align-items: flex-start;
    padding: 25px;
    background: white;
    border-radius: 12px;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.feature-item:hover {
    transform: translateX(8px);
    box-shadow: var(--shadow-hover);
}

.feature-icon {
    font-size: 1.8rem;
    color: var(--secondary);
    flex-shrink: 0;
}

.feature-item h4 {
    font-family: var(--font-heading);
    font-size: 1.2rem;
    color: var(--primary);
    margin-bottom: 8px;
}

.feature-item p {
    margin: 0;
    font-size: 0.95rem;
    color: var(--text-secondary);
}

.about-image {
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}

.image-frame {
    position: relative;
    width: 100%;
    max-width: 420px;
}

.about-img {
    width: 100%;
    height: 520px;
    object-fit: cover;
    border-radius: 12px;
    box-shadow: var(--shadow-hover);
}

.image-overlay {
    position: absolute;
    top: 20px;
    left: 20px;
    right: -20px;
    bottom: -20px;
    border: 3px solid var(--secondary);
    border-radius: 12px;
    z-index: -1;
}

.services {
    background: linear-gradient(180deg, var(--background) 0%, var(--background-alt) 100%);
    position: relative;
}

.services::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(201, 162, 39, 0.3), transparent);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.service-card {
    background: white;
    padding: 45px 32px;
    text-align: center;
    box-shadow: 0 4px 25px rgba(26, 58, 95, 0.08);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
    border-radius: 12px;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--secondary);
    transform: scaleX(0);
    transition: var(--transition);
}

.service-card:hover {
    transform: translateY(-12px);
    box-shadow: var(--shadow-hover);
}

.service-card:hover::before {
    transform: scaleX(1);
}

.service-icon {
    font-size: 2.8rem;
    color: var(--secondary);
    margin-bottom: 22px;
}

.service-card h3 {
    font-family: var(--font-heading);
    font-size: 1.35rem;
    color: var(--primary);
    margin-bottom: 12px;
}

.service-time {
    font-weight: 600;
    color: var(--accent);
    margin-bottom: 18px;
    font-size: 0.95rem;
}

.service-desc {
    font-size: 0.9rem;
    color: var(--text-secondary);
}

.events {
    background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary) 100%);
    position: relative;
}

.events::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 150px;
    background: linear-gradient(to top, var(--background) 0%, transparent 100%);
}

.events .section-tag,
.events .section-title {
    color: var(--text-light);
}

.events .section-title::after {
    background: var(--secondary);
}

.events-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 35px;
    position: relative;
    z-index: 1;
}

.event-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(201, 162, 39, 0.25);
    padding: 35px;
    display: flex;
    gap: 28px;
    transition: var(--transition);
    border-radius: 12px;
}

.event-card:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: var(--secondary);
    transform: translateY(-8px);
}

.event-date {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-width: 80px;
    height: 80px;
    background: var(--secondary);
    color: var(--dark-bg);
    border-radius: 12px;
    flex-shrink: 0;
}

.date-day {
    font-family: var(--font-heading);
    font-size: 2rem;
    font-weight: 700;
    line-height: 1;
}

.date-month {
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.event-content h3 {
    font-family: var(--font-heading);
    font-size: 1.25rem;
    color: var(--text-light);
    margin-bottom: 10px;
}

.event-location {
    font-size: 0.9rem;
    color: var(--secondary);
    margin-bottom: 12px;
}

.event-desc {
    font-size: 0.95rem;
    color: rgba(253, 251, 247, 0.7);
    line-height: 1.6;
}

.gallery {
    background: var(--background);
}

.gallery-description {
    margin-top: 20px;
    color: var(--text-secondary);
    font-size: 1.1rem;
}

.gallery-filter {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-bottom: 50px;
    flex-wrap: wrap;
}

.filter-btn {
    padding: 12px 28px;
    font-family: var(--font-body);
    font-size: 0.9rem;
    font-weight: 500;
    background: transparent;
    border: 2px solid rgba(26, 58, 95, 0.2);
    color: var(--primary);
    cursor: pointer;
    transition: var(--transition);
    border-radius: 30px;
}

.filter-btn:hover,
.filter-btn.active {
    background: var(--secondary);
    border-color: var(--secondary);
    color: var(--dark-bg);
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 12px;
    cursor: pointer;
    aspect-ratio: 1;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.gallery-item:hover img {
    transform: scale(1.15);
}

.gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to top, rgba(10, 22, 40, 0.85) 0%, transparent 50%);
    display: flex;
    align-items: flex-end;
    justify-content: center;
    padding: 20px;
    opacity: 0;
    transition: var(--transition);
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

.gallery-overlay span {
    color: var(--text-light);
    font-size: 0.9rem;
}

.gallery-lightbox {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(10, 22, 40, 0.95);
    z-index: 5000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
}

.gallery-lightbox.active {
    opacity: 1;
    visibility: visible;
}

.lightbox-close {
    position: absolute;
    top: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: transparent;
    border: 2px solid var(--secondary);
    color: var(--secondary);
    font-size: 1.8rem;
    cursor: pointer;
    transition: var(--transition);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.lightbox-close:hover {
    background: var(--secondary);
    color: var(--dark-bg);
}

.lightbox-image {
    max-width: 90%;
    max-height: 85vh;
    object-fit: contain;
    border-radius: 12px;
}

.lightbox-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 55px;
    height: 55px;
    background: rgba(201, 162, 39, 0.15);
    border: 2px solid var(--secondary);
    color: var(--secondary);
    font-size: 1.3rem;
    cursor: pointer;
    transition: var(--transition);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.lightbox-nav:hover {
    background: var(--secondary);
    color: var(--dark-bg);
}

.lightbox-nav.prev {
    left: 30px;
}

.lightbox-nav.next {
    right: 30px;
}

.testimony {
    background: var(--dark-bg);
    padding: 100px 0;
    position: relative;
    overflow: hidden;
}

.testimony::before {
    content: '"';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-family: var(--font-heading);
    font-size: 25rem;
    color: rgba(201, 162, 39, 0.05);
    line-height: 1;
}

.testimony-content {
    text-align: center;
    max-width: 850px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.testimony-icon {
    font-size: 3.5rem;
    color: var(--secondary);
    margin-bottom: 30px;
}

.testimony blockquote {
    font-family: var(--font-heading);
    font-size: 2.2rem;
    font-style: italic;
    color: var(--text-light);
    line-height: 1.6;
    margin-bottom: 25px;
}

.testimony cite {
    color: var(--secondary);
    font-size: 1.1rem;
    font-style: normal;
}

.contact {
    background: var(--background);
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.3fr;
    gap: 70px;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 35px;
}

.info-item {
    display: flex;
    gap: 22px;
    align-items: flex-start;
}

.info-icon {
    font-size: 1.6rem;
    width: 55px;
    height: 55px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(201, 162, 39, 0.1);
    color: var(--secondary);
    border-radius: 12px;
    flex-shrink: 0;
}

.info-item h4 {
    font-family: var(--font-heading);
    font-size: 1.15rem;
    color: var(--primary);
    margin-bottom: 6px;
}

.info-item p {
    font-size: 1rem;
    color: var(--text-secondary);
    line-height: 1.6;
}

.social-links {
    display: flex;
    gap: 18px;
    margin-top: 15px;
}

.social-link {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--primary);
    color: var(--text-light);
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    transition: var(--transition);
    border-radius: 12px;
}

.social-link:hover {
    background: var(--secondary);
    color: var(--dark-bg);
    transform: translateY(-5px);
}

.contact-form {
    background: white;
    padding: 50px;
    box-shadow: var(--shadow);
    border-radius: 16px;
}

.form-group {
    margin-bottom: 22px;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 16px 22px;
    font-family: var(--font-body);
    font-size: 1rem;
    border: 2px solid #e8e8e8;
    background: var(--background);
    transition: var(--transition);
    border-radius: 10px;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--secondary);
    background: white;
}

.form-group textarea {
    resize: vertical;
    min-height: 140px;
}

.contact-form .btn {
    width: 100%;
    text-align: center;
}

.footer {
    background: var(--dark-bg);
    padding: 60px 0;
    text-align: center;
    position: relative;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(201, 162, 39, 0.3), transparent);
}

.footer-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 22px;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 12px;
}

.footer-logo .logo-img-footer {
    height: 55px;
    width: auto;
    border-radius: 8px;
    object-fit: cover;
}

.footer-logo .logo-text {
    font-family: var(--font-heading);
    font-size: 1.25rem;
    color: var(--text-light);
}

.footer-address {
    color: rgba(253, 251, 247, 0.7);
    font-size: 1rem;
}

.footer-copy {
    color: rgba(253, 251, 247, 0.45);
    font-size: 0.9rem;
}

@media (max-width: 1200px) {
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .events-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .gallery-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 992px) {
    .hero-title {
        font-size: 2.8rem;
    }
    
    .hero-subtitle {
        font-size: 1.6rem;
    }
    
    .about-grid {
        grid-template-columns: 1fr;
        gap: 50px;
    }
    
    .about-image {
        order: -1;
    }
    
    .image-frame {
        max-width: 350px;
        margin: 0 auto;
    }
    
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 50px;
    }
}

@media (max-width: 768px) {
    .section {
        padding: 80px 0;
    }
    
    .section-title {
        font-size: 2.2rem;
    }
    
    .section-tag {
        font-size: 0.75rem;
        letter-spacing: 2px;
    }
    
    .mobile-toggle {
        display: flex;
    }
    
    .nav {
        position: fixed;
        top: 0;
        right: -100%;
        width: 300px;
        height: 100vh;
        background: var(--primary-dark);
        padding: 90px 30px 30px;
        transition: var(--transition);
    }
    
    .nav.active {
        right: 0;
    }
    
    .nav-list {
        flex-direction: column;
        gap: 30px;
    }
    
    .nav-link {
        font-size: 1.15rem;
    }
    
    .hero-title {
        font-size: 2.2rem;
    }
    
    .hero-subtitle {
        font-size: 1.3rem;
    }
    
    .hero-buttons {
        bottom: 160px;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
    }
    
    .events-grid {
        grid-template-columns: 1fr;
    }
    
    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .testimony blockquote {
        font-size: 1.6rem;
    }
    
    .contact-form {
        padding: 35px;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 20px;
    }
    
    .hero-title {
        font-size: 1.9rem;
    }
    
    .hero-subtitle {
        font-size: 1.15rem;
    }
    
    .hero-buttons {
        flex-direction: column;
        width: 90%;
    }
    
    .btn {
        width: 100%;
        text-align: center;
    }
    
    .filter-btn {
        padding: 10px 20px;
        font-size: 0.85rem;
    }
    
    .gallery-grid {
        grid-template-columns: 1fr;
    }
    
    .event-card {
        flex-direction: column;
        text-align: center;
    }
    
    .event-date {
        width: 100%;
        height: 55px;
        flex-direction: row;
        gap: 12px;
    }
}