/* ===== ELITE WALLPAPERING SERVICES - Main Stylesheet ===== */
/* Color Palette:
   Primary: #20354B (coastal navy)
   Secondary: #35516A (weathered slate blue)
   Light: #F8F7F2 (shell ivory)
   Accent: #7DA9C7 (muted sea blue)
   Text dark: #243342
   Text light: #FFFFFF
*/

@import url('https://fonts.googleapis.com/css2?family=Manrope:wght@400;500;600;700;800&family=Inter:wght@300;400;500;600&display=swap');

/* ===== RESET & BASE ===== */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

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

body {
    font-family: 'Inter', sans-serif;
    font-weight: 400;
    line-height: 1.7;
    color: #243342;
    background-color: #F8F7F2;
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Manrope', sans-serif;
    font-weight: 700;
    line-height: 1.3;
    color: #20354B;
}

a {
    text-decoration: none;
    color: #7DA9C7;
    transition: color 0.3s ease;
}

a:hover {
    color: #628EAF;
}

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

ul, ol {
    list-style: none;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* ===== HEADER ===== */
.site-header {
    background: #20354B;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 20px rgba(0,0,0,0.15);
}

.header-top {
    background: #1a2d40;
    padding: 8px 0;
    border-bottom: 1px solid rgba(125,169,199,0.2);
}

.header-top .container {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    gap: 24px;
}

.header-top a {
    color: #F8F7F2;
    font-size: 0.875rem;
    display: flex;
    align-items: center;
    gap: 6px;
    transition: color 0.3s ease;
}

.header-top a:hover {
    color: #7DA9C7;
}

.header-top .icon {
    width: 16px;
    height: 16px;
    fill: #7DA9C7;
}

.header-main {
    padding: 16px 0;
}

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

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

.logo a {
    color: #FFFFFF;
    font-family: 'Manrope', sans-serif;
    font-size: 1.35rem;
    font-weight: 800;
    letter-spacing: -0.5px;
}

.logo a span {
    color: #7DA9C7;
}

/* ===== NAVIGATION ===== */
.main-nav {
    display: flex;
    align-items: center;
}

.nav-list {
    display: flex;
    align-items: center;
    gap: 4px;
}

.nav-list > li {
    position: relative;
}

.nav-list > li > a {
    color: #F8F7F2;
    font-family: 'Manrope', sans-serif;
    font-weight: 500;
    font-size: 0.95rem;
    padding: 10px 16px;
    border-radius: 6px;
    transition: background 0.3s ease, color 0.3s ease;
    display: flex;
    align-items: center;
    gap: 5px;
}

.nav-list > li > a:hover,
.nav-list > li > a.active {
    background: rgba(125,169,199,0.15);
    color: #7DA9C7;
}

.nav-arrow {
    width: 10px;
    height: 10px;
    fill: currentColor;
    transition: transform 0.3s ease;
}

.nav-list > li:hover .nav-arrow {
    transform: rotate(180deg);
}

/* ===== DROPDOWN ===== */
.dropdown {
    position: absolute;
    top: 100%;
    left: 0;
    background: #FFFFFF;
    border-radius: 10px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.12);
    min-width: 240px;
    padding: 12px 0;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all 0.3s ease;
    z-index: 100;
}

.nav-list > li:hover .dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown li {
    opacity: 0;
    transform: translateX(-10px);
    transition: opacity 0.3s ease, transform 0.3s ease;
}

.nav-list > li:hover .dropdown li {
    opacity: 1;
    transform: translateX(0);
}

.nav-list > li:hover .dropdown li:nth-child(1) { transition-delay: 0.05s; }
.nav-list > li:hover .dropdown li:nth-child(2) { transition-delay: 0.1s; }
.nav-list > li:hover .dropdown li:nth-child(3) { transition-delay: 0.15s; }
.nav-list > li:hover .dropdown li:nth-child(4) { transition-delay: 0.2s; }
.nav-list > li:hover .dropdown li:nth-child(5) { transition-delay: 0.25s; }
.nav-list > li:hover .dropdown li:nth-child(6) { transition-delay: 0.3s; }
.nav-list > li:hover .dropdown li:nth-child(7) { transition-delay: 0.35s; }
.nav-list > li:hover .dropdown li:nth-child(8) { transition-delay: 0.4s; }
.nav-list > li:hover .dropdown li:nth-child(9) { transition-delay: 0.45s; }
.nav-list > li:hover .dropdown li:nth-child(10) { transition-delay: 0.5s; }

.dropdown a {
    display: block;
    padding: 10px 20px;
    color: #243342;
    font-size: 0.9rem;
    font-weight: 500;
    transition: background 0.2s ease, padding-left 0.2s ease;
}

.dropdown a:hover {
    background: #F8F7F2;
    padding-left: 26px;
    color: #7DA9C7;
}

/* ===== MOBILE MENU ===== */
.mobile-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    z-index: 1100;
}

.mobile-toggle span {
    display: block;
    width: 26px;
    height: 3px;
    background: #F8F7F2;
    border-radius: 2px;
    margin: 5px 0;
    transition: all 0.3s ease;
}

.mobile-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

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

.mobile-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -6px);
}

/* Mobile Nav Overlay */
.mobile-nav-overlay {
    display: none;
    position: fixed;
    top: 0;
    right: -100%;
    width: 50%;
    height: 100vh;
    background: #20354B;
    z-index: 1050;
    padding: 80px 30px 40px;
    overflow-y: auto;
    transition: right 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.mobile-nav-overlay.active {
    right: 0;
}

.mobile-nav-close {
    position: absolute;
    top: 20px;
    right: 20px;
    background: none;
    border: none;
    cursor: pointer;
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: background 0.3s ease;
}

.mobile-nav-close:hover {
    background: rgba(125,169,199,0.2);
}

.mobile-nav-close svg {
    width: 20px;
    height: 20px;
    fill: #F8F7F2;
}

.mobile-nav-list {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.mobile-nav-list > li {
    width: 100%;
    border-bottom: 1px solid rgba(125,169,199,0.15);
}

.mobile-nav-list > li > a {
    display: block;
    color: #F8F7F2;
    font-family: 'Manrope', sans-serif;
    font-weight: 600;
    font-size: 1.05rem;
    padding: 14px 0;
    text-align: left;
}

.mobile-nav-list .mobile-dropdown-title {
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: #F8F7F2;
    font-family: 'Manrope', sans-serif;
    font-weight: 600;
    font-size: 1.05rem;
    padding: 14px 0;
    cursor: pointer;
    text-align: left;
    width: 100%;
    background: none;
    border: none;
}

.mobile-nav-list .mobile-dropdown-title svg {
    width: 14px;
    height: 14px;
    fill: #7DA9C7;
    transition: transform 0.3s ease;
}

.mobile-nav-list .mobile-dropdown-title.open svg {
    transform: rotate(180deg);
}

.mobile-sub-list {
    display: none;
    padding-left: 16px;
    padding-bottom: 10px;
}

.mobile-sub-list.open {
    display: block;
}

.mobile-sub-list a {
    display: block;
    color: #7DA9C7;
    font-size: 0.9rem;
    padding: 8px 0;
    text-align: left;
}

.mobile-nav-backdrop {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: rgba(0,0,0,0.5);
    z-index: 1040;
}

.mobile-nav-backdrop.active {
    display: block;
}

/* ===== HERO SECTION ===== */
.hero {
    position: relative;
    min-height: 85vh;
    display: flex;
    align-items: center;
    background: linear-gradient(135deg, #20354B 0%, #35516A 100%);
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.25;
}

.hero .container {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.hero-content h1 {
    color: #FFFFFF;
    font-size: 2.8rem;
    margin-bottom: 20px;
    line-height: 1.2;
}

.hero-content p {
    color: rgba(255,255,255,0.85);
    font-size: 1.15rem;
    margin-bottom: 30px;
    max-width: 520px;
}

.hero-content .hero-phone {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: #7DA9C7;
    font-size: 1.3rem;
    font-weight: 700;
    font-family: 'Manrope', sans-serif;
    margin-bottom: 20px;
}

/* ===== FORM STYLES ===== */
.feedback-form-container {
    background: #FFFFFF;
    border-radius: 16px;
    padding: 36px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.15);
}

.feedback-form-container h3 {
    font-family: 'Manrope', sans-serif;
    font-size: 1.4rem;
    color: #20354B;
    margin-bottom: 24px;
    text-align: center;
}

.contact-form .form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px;
    margin-bottom: 14px;
}

.contact-form .form-group {
    position: relative;
}

.contact-form .form-group:last-child:not(.form-row .form-group) {
    margin-bottom: 14px;
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 14px 16px;
    border: 1.5px solid #e0e6ec;
    border-radius: 10px;
    font-family: 'Inter', sans-serif;
    font-size: 0.95rem;
    color: #243342;
    background: #F8F7F2;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.contact-form input:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: #7DA9C7;
    box-shadow: 0 0 0 3px rgba(125,169,199,0.15);
}

.contact-form textarea {
    min-height: 100px;
    resize: vertical;
}

.contact-form .form-submit {
    margin-top: 8px;
}

.submit-btn {
    width: 100%;
    padding: 16px;
    background: #7DA9C7;
    color: #FFFFFF;
    border: none;
    border-radius: 12px;
    font-family: 'Manrope', sans-serif;
    font-size: 1rem;
    font-weight: 700;
    cursor: pointer;
    transition: background 0.3s ease, box-shadow 0.3s ease, transform 0.2s ease;
}

.submit-btn:hover {
    background: #628EAF;
    box-shadow: 0 8px 25px rgba(125,169,199,0.3);
    transform: translateY(-1px);
}

#form-success {
    text-align: center;
    padding: 30px;
}

#form-success p {
    color: #20354B;
    font-size: 1.05rem;
    font-weight: 500;
}

/* ===== SECTIONS ===== */
.section {
    padding: 80px 0;
}

.section-dark {
    background: #20354B;
    color: #FFFFFF;
}

.section-dark h2,
.section-dark h3 {
    color: #FFFFFF;
}

.section-light {
    background: #F8F7F2;
}

.section-alt {
    background: #FFFFFF;
}

.section-title {
    font-size: 2.2rem;
    margin-bottom: 16px;
    text-align: center;
}

.section-subtitle {
    font-size: 1.1rem;
    color: #5a7a8f;
    text-align: center;
    max-width: 650px;
    margin: 0 auto 50px;
}

/* ===== SERVICE CARDS ===== */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.service-card {
    background: #FFFFFF;
    border-radius: 14px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0,0,0,0.06);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 40px rgba(0,0,0,0.1);
}

.service-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.service-card-body {
    padding: 24px;
}

.service-card-body h3 {
    font-size: 1.2rem;
    margin-bottom: 10px;
}

.service-card-body p {
    font-size: 0.92rem;
    color: #5a7a8f;
    margin-bottom: 16px;
}

/* ===== BUTTONS / CTA ===== */
.btn {
    display: inline-block;
    padding: 16px 32px;
    background: #7DA9C7;
    color: #FFFFFF;
    font-family: 'Manrope', sans-serif;
    font-weight: 700;
    font-size: 0.95rem;
    border-radius: 12px;
    transition: background 0.3s ease, box-shadow 0.3s ease, transform 0.2s ease;
    text-align: center;
}

.btn:hover {
    background: #628EAF;
    color: #FFFFFF;
    box-shadow: 0 8px 25px rgba(125,169,199,0.3);
    transform: translateY(-2px);
}

.btn-outline {
    background: transparent;
    border: 2px solid #7DA9C7;
    color: #7DA9C7;
}

.btn-outline:hover {
    background: #7DA9C7;
    color: #FFFFFF;
}

.cta-block {
    text-align: center;
    padding: 40px;
    background: linear-gradient(135deg, #20354B, #35516A);
    border-radius: 16px;
    margin: 40px 0;
}

.cta-block h3 {
    color: #FFFFFF;
    font-size: 1.5rem;
    margin-bottom: 12px;
}

.cta-block p {
    color: rgba(255,255,255,0.8);
    margin-bottom: 20px;
}

.cta-inline {
    margin: 30px 0;
    padding: 24px;
    background: #F8F7F2;
    border-left: 4px solid #7DA9C7;
    border-radius: 0 12px 12px 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    flex-wrap: wrap;
}

.cta-inline p {
    font-weight: 600;
    color: #20354B;
    font-size: 1.05rem;
}

/* ===== AREAS GRID ===== */
.areas-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 16px;
}

.area-card {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 16px 20px;
    background: #FFFFFF;
    border-radius: 10px;
    box-shadow: 0 2px 12px rgba(0,0,0,0.05);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.area-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(0,0,0,0.08);
    color: #243342;
}

.area-card svg {
    width: 20px;
    height: 20px;
    fill: #7DA9C7;
    flex-shrink: 0;
}

.area-card span {
    font-weight: 600;
    font-size: 0.95rem;
    color: #243342;
}

/* ===== MAP ===== */
.map-container {
    border-radius: 14px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    margin: 30px 0;
}

.map-container iframe {
    width: 100%;
    height: 400px;
    border: none;
}

/* ===== FAQ ===== */
.faq-list {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background: #FFFFFF;
    border-radius: 12px;
    margin-bottom: 14px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.04);
    overflow: hidden;
}

.faq-question {
    padding: 20px 24px;
    font-family: 'Manrope', sans-serif;
    font-weight: 600;
    font-size: 1.05rem;
    color: #20354B;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: background 0.3s ease;
}

.faq-question:hover {
    background: #F8F7F2;
}

.faq-question svg {
    width: 18px;
    height: 18px;
    fill: #7DA9C7;
    transition: transform 0.3s ease;
    flex-shrink: 0;
}

.faq-question.active svg {
    transform: rotate(180deg);
}

.faq-answer {
    display: none;
    padding: 0 24px 20px;
    color: #5a7a8f;
    line-height: 1.7;
}

.faq-answer.active {
    display: block;
}

/* ===== CONTENT PAGES ===== */
.page-hero {
    background: linear-gradient(135deg, #20354B 0%, #35516A 100%);
    padding: 80px 0 60px;
    text-align: center;
}

.page-hero h1 {
    color: #FFFFFF;
    font-size: 2.4rem;
    margin-bottom: 12px;
}

.page-hero p {
    color: rgba(255,255,255,0.8);
    font-size: 1.1rem;
    max-width: 600px;
    margin: 0 auto;
}

.content-section {
    padding: 60px 0;
}

.content-section h2 {
    font-size: 1.7rem;
    margin-bottom: 16px;
    margin-top: 40px;
}

.content-section h2:first-child {
    margin-top: 0;
}

.content-section h3 {
    font-size: 1.3rem;
    margin-bottom: 12px;
    margin-top: 30px;
}

.content-section p {
    margin-bottom: 16px;
    color: #4a6070;
}

.content-section ul,
.content-section ol {
    margin-bottom: 20px;
    padding-left: 24px;
}

.content-section ul {
    list-style: disc;
}

.content-section ol {
    list-style: decimal;
}

.content-section li {
    margin-bottom: 8px;
    color: #4a6070;
}

.content-image {
    border-radius: 14px;
    overflow: hidden;
    margin: 30px 0;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
}

.content-image img {
    width: 100%;
    height: 350px;
    object-fit: cover;
}

/* ===== CONTACT PAGE ===== */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: start;
}

.contact-info-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-bottom: 30px;
}

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

.contact-info-item .icon-box {
    width: 44px;
    height: 44px;
    background: linear-gradient(135deg, #7DA9C7, #628EAF);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.contact-info-item .icon-box svg {
    width: 20px;
    height: 20px;
    fill: #FFFFFF;
}

.contact-info-item .info-text h4 {
    font-size: 0.9rem;
    font-weight: 600;
    color: #20354B;
    margin-bottom: 4px;
}

.contact-info-item .info-text p,
.contact-info-item .info-text a {
    font-size: 0.95rem;
    color: #5a7a8f;
}

/* ===== FOOTER ===== */
.site-footer {
    background: #1a2d40;
    color: #F8F7F2;
    padding: 60px 0 30px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 40px;
    margin-bottom: 40px;
}

.footer-brand p {
    color: rgba(248,247,242,0.7);
    font-size: 0.9rem;
    margin-top: 12px;
    line-height: 1.6;
}

.footer-col h4 {
    color: #FFFFFF;
    font-family: 'Manrope', sans-serif;
    font-size: 1rem;
    margin-bottom: 16px;
}

.footer-col ul li {
    margin-bottom: 8px;
}

.footer-col ul li a {
    color: rgba(248,247,242,0.7);
    font-size: 0.88rem;
    transition: color 0.3s ease;
}

.footer-col ul li a:hover {
    color: #7DA9C7;
}

.footer-bottom {
    border-top: 1px solid rgba(125,169,199,0.2);
    padding-top: 24px;
    text-align: center;
    color: rgba(248,247,242,0.5);
    font-size: 0.85rem;
}

/* ===== STICKY QUOTE BUTTON ===== */
.sticky-quote-btn {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background: #7DA9C7;
    color: #FFFFFF;
    padding: 16px 28px;
    border-radius: 50px;
    font-family: 'Manrope', sans-serif;
    font-weight: 700;
    font-size: 0.95rem;
    box-shadow: 0 8px 30px rgba(125,169,199,0.4);
    z-index: 900;
    transition: background 0.3s ease, transform 0.2s ease;
    cursor: pointer;
    border: none;
}

.sticky-quote-btn:hover {
    background: #628EAF;
    transform: translateY(-3px);
}

/* ===== MODAL ===== */
.modal-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.6);
    z-index: 2000;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.modal-overlay.active {
    display: flex;
}

.modal-content {
    background: #FFFFFF;
    border-radius: 20px;
    padding: 40px;
    max-width: 520px;
    width: 100%;
    position: relative;
    max-height: 90vh;
    overflow-y: auto;
}

.modal-close {
    position: absolute;
    top: 16px;
    right: 16px;
    background: #F8F7F2;
    border: none;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: background 0.3s ease;
}

.modal-close:hover {
    background: #e0e6ec;
}

.modal-close svg {
    width: 16px;
    height: 16px;
    fill: #243342;
}

/* ===== NEIGHBORHOODS ===== */
.neighborhoods-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 10px;
    margin: 20px 0;
}

.neighborhoods-list li {
    padding: 8px 14px;
    background: #FFFFFF;
    border-radius: 8px;
    font-size: 0.9rem;
    color: #243342;
    border: 1px solid #e0e6ec;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 992px) {
    .hero .container {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .hero-content p {
        margin: 0 auto 30px;
    }

    .hero-content .hero-phone {
        justify-content: center;
    }

    .contact-grid {
        grid-template-columns: 1fr;
    }

    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }

    .main-nav {
        display: none;
    }

    .mobile-toggle {
        display: block;
    }

    .mobile-nav-overlay {
        display: block;
    }
}

@media (max-width: 768px) {
    .hero-content h1 {
        font-size: 2rem;
    }

    .section-title {
        font-size: 1.7rem;
    }

    .page-hero h1 {
        font-size: 1.8rem;
    }

    .footer-grid {
        grid-template-columns: 1fr;
    }

    .header-top .container {
        justify-content: center;
        flex-wrap: wrap;
    }

    .sticky-quote-btn {
        bottom: 20px;
        right: 50%;
        transform: translateX(50%);
        white-space: nowrap;
    }

    .sticky-quote-btn:hover {
        transform: translateX(50%) translateY(-3px);
    }

    .contact-form .form-row {
        grid-template-columns: 1fr;
    }

    .cta-inline {
        flex-direction: column;
        text-align: center;
    }
}

@media (max-width: 576px) {
    .hero {
        min-height: 70vh;
    }

    .section {
        padding: 50px 0;
    }

    .feedback-form-container {
        padding: 24px 18px;
    }

    .mobile-nav-overlay {
        width: 75%;
    }
}

/* ===== ANIMATIONS ===== */
@keyframes fadeIn {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}

.fade-in {
    animation: fadeIn 0.5s ease forwards;
}
