/*
Theme Name: Estro
Description: Tema Estro
Version: 1.0.0
*/

/* ===================================
   Su Misura Template - Renoria Style
   =================================== */

/* Color Palette */
:root {
    --renoria-black: #000000;
    --renoria-white: #ffffff;
    --renoria-dark-gray: #131313;
    --renoria-light-gray: #e2e2e2;
    --renoria-medium-gray: #333333;
    --renoria-charcoal: #242323;
    --renoria-navy: #293052;
    --renoria-cyan: #0099ff;
    --renoria-overlay: rgba(0, 0, 0, 0.6);
}

/* Typography - Host Grotesk & Instrument Serif */
@import url('https://fonts.googleapis.com/css2?family=Instrument+Serif:ital@0;1&display=swap');

/* Hero Section */
.hero-section-renoria {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background-image: url('https://images.unsplash.com/photo-1600607687920-4e2a09cf159d?auto=format&fit=crop&q=80&w=2400');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    color: var(--renoria-white);
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(0,0,0,0.7) 0%, rgba(0,0,0,0.5) 100%);
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    padding: 80px 20px;
}

.hero-tag {
    display: inline-block;
    font-size: 0.875rem;
    font-weight: 400;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--renoria-light-gray);
    margin-bottom: 20px;
    opacity: 0.9;
}

.hero-title {
    font-family: 'Instrument Serif', Georgia, serif;
    font-size: clamp(3rem, 8vw, 6rem);
    font-weight: 400;
    line-height: 1.1;
    margin-bottom: 30px;
    letter-spacing: -0.02em;
}

.hero-subtitle {
    font-size: clamp(1rem, 2vw, 1.25rem);
    line-height: 1.6;
    max-width: 800px;
    margin: 0 auto 40px;
    opacity: 0.95;
    font-weight: 300;
}

.hero-cta {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 60px;
}

.scroll-indicator {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    font-size: 0.875rem;
    letter-spacing: 1px;
    animation: bounce 2s infinite;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateY(0);
    }
    40% {
        transform: translateY(-10px);
    }
    60% {
        transform: translateY(-5px);
    }
}

/* Buttons */
.btn-primary-renoria {
    display: inline-block;
    padding: 16px 40px;
    background-color: var(--renoria-white);
    color: var(--renoria-black);
    font-size: 1rem;
    font-weight: 600;
    text-decoration: none;
    border-radius: 0;
    border: 2px solid var(--renoria-white);
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.btn-primary-renoria:hover {
    background-color: transparent;
    color: var(--renoria-white);
    transform: translateY(-2px);
}

.btn-secondary-renoria {
    display: inline-block;
    padding: 16px 40px;
    background-color: transparent;
    color: var(--renoria-white);
    font-size: 1rem;
    font-weight: 600;
    text-decoration: none;
    border: 2px solid var(--renoria-white);
    border-radius: 0;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.btn-secondary-renoria:hover {
    background-color: var(--renoria-white);
    color: var(--renoria-black);
    transform: translateY(-2px);
}

.btn-outline-renoria {
    display: inline-block;
    padding: 14px 32px;
    background-color: transparent;
    color: var(--renoria-black);
    font-size: 0.9rem;
    font-weight: 600;
    text-decoration: none;
    border: 2px solid var(--renoria-black);
    border-radius: 0;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.btn-outline-renoria:hover {
    background-color: var(--renoria-black);
    color: var(--renoria-white);
}

.btn-white-renoria {
    display: inline-block;
    padding: 12px 28px;
    background-color: var(--renoria-white);
    color: var(--renoria-black);
    font-size: 0.875rem;
    font-weight: 600;
    text-decoration: none;
    border-radius: 0;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.btn-white-renoria:hover {
    background-color: var(--renoria-light-gray);
    transform: translateY(-2px);
}

.btn-outline-white-renoria {
    display: inline-block;
    padding: 16px 40px;
    background-color: transparent;
    color: var(--renoria-white);
    font-size: 1rem;
    font-weight: 600;
    text-decoration: none;
    border: 2px solid var(--renoria-white);
    border-radius: 0;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.btn-outline-white-renoria:hover {
    background-color: rgba(255, 255, 255, 0.1);
}

/* Section Utilities */
.py-120 {
    padding-top: 120px;
    padding-bottom: 120px;
}

.py-80 {
    padding-top: 80px;
    padding-bottom: 80px;
}

.pb-80 {
    padding-bottom: 80px;
}

.mb-60 {
    margin-bottom: 60px;
}

.mb-30 {
    margin-bottom: 30px;
}

.mb-40 {
    margin-bottom: 40px;
}

.mt-20 {
    margin-top: 20px;
}

.mt-30 {
    margin-top: 30px;
}

.gap-60 {
    gap: 60px;
}

.gap-80 {
    gap: 80px;
}

.bg-light {
    background-color: #fafafa;
}

.bg-dark-renoria {
    background-color: var(--renoria-dark-gray);
    color: var(--renoria-white);
}

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

/* Section Headers */
.section-tag {
    display: inline-block;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--renoria-medium-gray);
    margin-bottom: 15px;
}

.section-tag.light {
    color: var(--renoria-light-gray);
}

.section-title-renoria {
    font-family: 'Instrument Serif', Georgia, serif;
    font-size: clamp(2rem, 5vw, 3.5rem);
    font-weight: 400;
    line-height: 1.2;
    margin-bottom: 20px;
    color: var(--renoria-black);
}

.section-title-renoria.light {
    color: var(--renoria-white);
}

.section-header-flex {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    flex-wrap: wrap;
    gap: 30px;
}

/* Services Section */
.services-section-renoria {
    background-color: var(--renoria-white);
}

.services-grid-renoria {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 40px;
}

.service-card-renoria {
    position: relative;
    overflow: hidden;
    background-color: var(--renoria-white);
    border: 1px solid var(--renoria-light-gray);
    transition: all 0.4s ease;
}

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

.service-image {
    position: relative;
    width: 100%;
    height: 400px;
    overflow: hidden;
}

.service-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.service-card-renoria:hover .service-image img {
    transform: scale(1.1);
}

.service-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to top, rgba(0,0,0,0.6) 0%, transparent 60%);
}

.service-content {
    padding: 30px;
}

.service-content h3 {
    font-family: 'Instrument Serif', Georgia, serif;
    font-size: 1.75rem;
    font-weight: 400;
    margin-bottom: 15px;
    color: var(--renoria-black);
}

.service-content p {
    font-size: 1rem;
    line-height: 1.7;
    color: var(--renoria-medium-gray);
    margin-bottom: 20px;
}

.service-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--renoria-black);
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: gap 0.3s ease;
}

.service-link:hover {
    gap: 12px;
}

.service-link svg {
    width: 20px;
    height: 20px;
}

/* Process Section */
.process-section-renoria {
    background-color: var(--renoria-dark-gray);
}

.process-steps-renoria {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 60px;
}

.process-step {
    position: relative;
    padding: 40px;
    background-color: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}

.process-step:hover {
    background-color: rgba(255, 255, 255, 0.08);
    transform: translateY(-5px);
}

.step-number {
    font-family: 'Instrument Serif', Georgia, serif;
    font-size: 4rem;
    font-weight: 400;
    color: var(--renoria-white);
    opacity: 0.3;
    margin-bottom: 20px;
    line-height: 1;
}

.step-content h3 {
    font-family: 'Instrument Serif', Georgia, serif;
    font-size: 1.5rem;
    font-weight: 400;
    color: var(--renoria-white);
    margin-bottom: 15px;
}

.step-content p {
    font-size: 1rem;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.8);
}

/* Projects Showcase */
.projects-grid-renoria {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 30px;
}

.project-card-renoria {
    position: relative;
    overflow: hidden;
    aspect-ratio: 4/5;
}

.project-card-renoria.large {
    grid-column: span 2;
    aspect-ratio: 16/9;
}

.project-image {
    position: relative;
    width: 100%;
    height: 100%;
}

.project-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.project-card-renoria:hover .project-image img {
    transform: scale(1.05);
}

.project-overlay-renoria {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to top, rgba(0,0,0,0.8) 0%, rgba(0,0,0,0.4) 50%, transparent 100%);
    display: flex;
    align-items: flex-end;
    padding: 40px;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.project-card-renoria:hover .project-overlay-renoria {
    opacity: 1;
}

.project-info {
    color: var(--renoria-white);
}

.project-category {
    display: inline-block;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 10px;
    opacity: 0.9;
}

.project-title {
    font-family: 'Instrument Serif', Georgia, serif;
    font-size: 1.75rem;
    font-weight: 400;
    margin-bottom: 8px;
    color: var(--renoria-white);
}

.project-location {
    font-size: 0.875rem;
    opacity: 0.8;
    margin-bottom: 15px;
}

/* Testimonials Section */
.testimonials-grid-renoria {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 40px;
}

.testimonial-card-renoria {
    padding: 40px;
    background-color: var(--renoria-white);
    border: 1px solid var(--renoria-light-gray);
    transition: all 0.3s ease;
}

.testimonial-card-renoria:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.quote-icon {
    margin-bottom: 20px;
    color: var(--renoria-medium-gray);
    opacity: 0.3;
}

.testimonial-text {
    font-size: 1.125rem;
    line-height: 1.7;
    color: var(--renoria-medium-gray);
    margin-bottom: 30px;
    font-style: italic;
}

.author-info h4 {
    font-size: 1rem;
    font-weight: 600;
    color: var(--renoria-black);
    margin-bottom: 5px;
}

.author-info p {
    font-size: 0.875rem;
    color: var(--renoria-medium-gray);
}

/* FAQ Section */
.grid-2-cols {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
}

.faq-list {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.faq-item-renoria {
    border: 1px solid var(--renoria-light-gray);
    overflow: hidden;
}

.faq-question {
    width: 100%;
    padding: 25px 30px;
    background-color: var(--renoria-white);
    border: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
    text-align: left;
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--renoria-black);
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.faq-question:hover {
    background-color: #fafafa;
}

.faq-question span {
    flex: 1;
}

.faq-icon {
    flex-shrink: 0;
    transition: transform 0.3s ease;
}

.faq-item-renoria.active .faq-icon {
    transform: rotate(45deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
    background-color: #fafafa;
}

.faq-item-renoria.active .faq-answer {
    max-height: 500px;
}

.faq-answer p {
    padding: 25px 30px;
    font-size: 1rem;
    line-height: 1.7;
    color: var(--renoria-medium-gray);
}

/* CTA Section */
.cta-section-renoria {
    background: linear-gradient(135deg, var(--renoria-dark-gray) 0%, var(--renoria-charcoal) 100%);
}

.cta-description {
    font-size: 1.125rem;
    line-height: 1.6;
    max-width: 600px;
    margin: 0 auto;
    opacity: 0.9;
}

.cta-description.light {
    color: rgba(255, 255, 255, 0.9);
}

.cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

/* Animations */
.slide-up {
    opacity: 0;
    transform: translateY(30px);
    animation: slideUp 0.8s ease forwards;
}

@keyframes slideUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fade-in {
    opacity: 0;
    animation: fadeIn 1s ease forwards;
}

@keyframes fadeIn {
    to {
        opacity: 1;
    }
}

/* Responsive Design */
@media (max-width: 1200px) {
    .projects-grid-renoria {
        grid-template-columns: repeat(2, 1fr);
    }

    .project-card-renoria.large {
        grid-column: span 1;
    }
}

@media (max-width: 809px) {
    .hero-section-renoria {
        min-height: 80vh;
    }

    .hero-cta {
        flex-direction: column;
        align-items: center;
    }

    .hero-cta .btn-primary-renoria,
    .hero-cta .btn-secondary-renoria {
        width: 100%;
        max-width: 300px;
    }

    .services-grid-renoria {
        grid-template-columns: 1fr;
    }

    .process-steps-renoria {
        grid-template-columns: 1fr;
    }

    .projects-grid-renoria {
        grid-template-columns: 1fr;
    }

    .testimonials-grid-renoria {
        grid-template-columns: 1fr;
    }

    .grid-2-cols {
        grid-template-columns: 1fr;
    }

    .section-header-flex {
        flex-direction: column;
        align-items: flex-start;
    }

    .py-120 {
        padding-top: 60px;
        padding-bottom: 60px;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2.5rem;
    }

    .section-title-renoria {
        font-size: 2rem;
    }

    .service-content,
    .process-step,
    .testimonial-card-renoria {
        padding: 25px;
    }

    .project-overlay-renoria {
        padding: 25px;
    }
}

/* ===================================
   Catalog Template - 3D Flip Book
   =================================== */

.catalog-flipbook-wrapper {
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
    padding: 20px;
    min-height: 600px;
    display: flex;
    justify-content: center;
    align-items: center;
}

/* Ensure 3D Flip Book is responsive */
.catalog-flipbook-wrapper iframe,
.catalog-flipbook-wrapper .flip-book-container {
    max-width: 100%;
    height: auto;
}

/* Override plugin styles if needed */
.catalog-flipbook-wrapper .threed-flip-book {
    width: 100% !important;
    max-width: 100% !important;
}

@media (max-width: 768px) {
    .catalog-flipbook-wrapper {
        padding: 10px;
        min-height: 500px;
    }
}

@media (max-width: 480px) {
    .catalog-flipbook-wrapper {
        padding: 5px;
        min-height: 400px;
    }
}


/* ===================================
   Clients Marquee Section
   =================================== */

.clients-marquee-section {
    background-color: #ffffff;
    overflow: hidden;
}

.clients-header {
    margin-bottom: 60px;
}

.clients-header h2 {
    margin-bottom: 20px;
}

.clients-description {
    font-size: 1.125rem;
    line-height: 1.7;
    color: #666;
    max-width: 700px;
    margin: 0 auto;
}

.clients-marquee-wrapper {
    width: 100%;
    overflow: hidden;
    position: relative;
}

.clients-marquee {
    display: flex;
    width: fit-content;
    animation: clients-marquee-scroll 40s linear infinite;
}

.clients-marquee:hover {
    animation-play-state: paused;
}

.clients-marquee-content {
    display: flex;
    gap: 80px;
    align-items: center;
    padding: 20px 0;
}

.clients-marquee-item {
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 280px;
    height: 140px;
}

.clients-marquee-item img {
    max-width: 100%;
    max-height: 100%;
    width: auto;
    height: auto;
    object-fit: contain;
    filter: grayscale(100%) opacity(0.6);
    transition: all 0.4s ease;
}

.clients-marquee-item:hover img {
    filter: grayscale(0%) opacity(1);
    transform: scale(1.05);
}

@keyframes clients-marquee-scroll {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .clients-description {
        font-size: 1rem;
    }

    .clients-marquee-content {
        gap: 50px;
    }

    .clients-marquee-item {
        width: 200px;
        height: 110px;
    }

    .clients-marquee {
        animation: clients-marquee-scroll 30s linear infinite;
    }
}

@media (max-width: 480px) {
    .clients-header {
        margin-bottom: 40px;
    }

    .clients-description {
        font-size: 0.95rem;
    }

    .clients-marquee-content {
        gap: 40px;
    }

    .clients-marquee-item {
        width: 160px;
        height: 90px;
    }

    .clients-marquee {
        animation: clients-marquee-scroll 25s linear infinite;
    }
}

/* ===================================
   Footer Awwwards Style
   =================================== */

.site-footer-awwwards {
    background: #0a0a0a;
    color: #e0e0e0;
    padding: 100px 0 0;
    position: relative;
    overflow: hidden;
}

.footer-awwwards-inner {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 60px;
}

/* Footer Grid */
.footer-grid-awwwards {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 80px;
    padding-bottom: 80px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

/* Brand Column */
.footer-brand-col {
    padding-right: 40px;
    text-align: left;
}

.footer-logo-awwwards {
    margin-bottom: 20px;
    text-align: left;
}

.footer-logo-awwwards img {
    max-height: 40px;
    width: auto;
}

.footer-logo-text-awwwards {
    font-size: 2rem;
    font-weight: 700;
    color: #ffffff;
    text-decoration: none;
    letter-spacing: -0.02em;
}

.footer-tagline {
    font-size: 0.875rem;
    color: #888;
    margin-bottom: 40px;
    font-weight: 300;
    letter-spacing: 1px;
    text-transform: uppercase;
    text-align: left;
}

.footer-info-block {
    font-size: 0.875rem;
    line-height: 1.8;
    color: #aaa;
}

.footer-company-name {
    font-weight: 600;
    color: #fff;
    margin-bottom: 15px;
}

.footer-address {
    margin-bottom: 15px;
}

.footer-contacts a {
    color: #aaa;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-contacts a:hover {
    color: #fff;
}

.footer-vat {
    margin-top: 15px;
    font-size: 0.8rem;
    color: #666;
}

/* Menu Columns */
.footer-menu-col {
    /* Grid column */
}

.footer-menu-title {
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: #666;
    margin-bottom: 25px;
}

.footer-nav-awwwards {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-nav-awwwards a {
    color: #ccc;
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 400;
    transition: all 0.3s ease;
    position: relative;
    display: inline-block;
    width: fit-content;
}

.footer-nav-awwwards a::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 1px;
    background-color: #fff;
    transition: width 0.3s ease;
}

.footer-nav-awwwards a:hover {
    color: #fff;
    transform: translateX(5px);
}

.footer-nav-awwwards a:hover::after {
    width: 100%;
}

/* Footer Bottom */
.footer-bottom-awwwards {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
    padding: 30px 0;
    font-size: 0.85rem;
}

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

.footer-bottom-center {
    text-align: center;
}

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

.footer-copyright {
    color: #666;
    margin: 0;
}

.footer-legal-links {
    display: flex;
    gap: 10px;
    align-items: center;
    justify-content: center;
}

.footer-legal-links a {
    color: #888;
    text-decoration: none;
    transition: color 0.3s ease;
    font-size: 0.85rem;
}

.footer-legal-links a:hover {
    color: #fff;
}

.footer-separator {
    color: #444;
}

.footer-social-links {
    display: flex;
    gap: 15px;
    justify-content: flex-end;
}

.footer-social-links a {
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 50%;
    color: #888;
    transition: all 0.3s ease;
}

.footer-social-links a:hover {
    background-color: #fff;
    color: #000;
    border-color: #fff;
    transform: translateY(-3px);
}

.footer-mobile-extra-links {
    display: none;
}

/* Scroll to Top Button */
.scroll-to-top-btn {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: #fff;
    border: none;
    border-radius: 50%;
    color: #000;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 999;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.scroll-to-top-btn.visible {
    opacity: 1;
    visibility: visible;
}

.scroll-to-top-btn:hover {
    background: #000;
    color: #fff;
    transform: translateY(-5px);
}

/* Responsive Design */
@media (max-width: 1024px) {
    .footer-grid-awwwards {
        grid-template-columns: 1.5fr 1fr 1fr;
        gap: 50px;
    }

    .footer-menu-col:last-child {
        grid-column: 1 / -1;
    }
}

@media (max-width: 768px) {
    .footer-awwwards-inner {
        padding: 0 30px;
    }

    .footer-grid-awwwards {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 34px 24px;
        padding-bottom: 50px;
    }

    .footer-brand-col {
        grid-column: 1 / -1;
        padding-right: 0;
    }

    .footer-logo-awwwards {
        display: flex;
        justify-content: center;
    }

    .footer-tagline {
        text-align: center;
    }

    .footer-grid-awwwards > .footer-menu-col:nth-child(2) {
        grid-column: 1;
        grid-row: 2;
    }

    .footer-grid-awwwards > .footer-menu-col:nth-child(3) {
        grid-column: 1;
        grid-row: 3;
    }

    .footer-grid-awwwards > .footer-menu-col:nth-child(4) {
        grid-column: 2;
        grid-row: 2 / span 2;
    }

    .footer-mobile-extra-links {
        display: block;
        margin-top: 18px;
        padding-top: 16px;
        border-top: 1px solid rgba(255, 255, 255, 0.12);
    }

    .footer-mobile-copyright {
        margin: 0 0 10px;
        font-size: 0.78rem;
        color: #777;
    }

    .footer-mobile-legal-links {
        display: flex;
        gap: 12px;
        flex-wrap: wrap;
        margin-bottom: 10px;
    }

    .footer-mobile-legal-links a,
    .footer-mobile-social-links a {
        color: #a8a8a8;
        text-decoration: none;
        font-size: 0.8rem;
    }

    .footer-mobile-social-links {
        display: flex;
        gap: 10px;
        flex-wrap: wrap;
    }

    .footer-mobile-legal-links a:hover,
    .footer-mobile-social-links a:hover {
        color: #fff;
    }

    .footer-bottom-awwwards {
        display: none;
    }

    .scroll-to-top-btn {
        width: 45px;
        height: 45px;
        right: 20px;
        bottom: 80px;
    }
}

@media (max-width: 480px) {
    .site-footer-awwwards {
        padding: 60px 0 0;
    }

    .footer-awwwards-inner {
        padding: 0 20px;
    }

    .footer-grid-awwwards {
        gap: 35px;
    }

    .footer-menu-title {
        font-size: 0.7rem;
        margin-bottom: 20px;
    }

    .footer-nav-awwwards a {
        font-size: 0.85rem;
    }

    .footer-bottom-awwwards {
        padding: 25px 0;
        font-size: 0.8rem;
    }
}
