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

html, body {
    background-color: #FFFFFF;
    overflow-x: hidden;
    scroll-behavior: smooth;
    font-family: 'Plus Jakarta Sans', sans-serif;
    -webkit-font-smoothing: antialiased;
}

body {
    color: #5B0E14;
}

input, select, textarea {
    color: #5B0E14 !important;
    font-family: 'Plus Jakarta Sans', sans-serif;
}

/* Scrollbar Styling */
::-webkit-scrollbar {
    width: 6px;
}

::-webkit-scrollbar-track {
    background: #FFFFFF;
}

::-webkit-scrollbar-thumb {
    background: #5B0E14;
    border-radius: 6px;
}

/* Selection */
::selection {
    background-color: #5B0E14;
    color: #FFFFFF;
}

/* ANIMATIONS */
@keyframes classicReveal {
    0% { opacity: 0; transform: translateY(5px); }
    100% { opacity: 1; transform: translateY(0); }
}

@keyframes revealTagline {
    0% { opacity: 0; transform: translateY(20px); }
    100% { opacity: 1; transform: translateY(0); }
}

@keyframes lineProgress {
    from { transform: scaleX(0); }
    to { transform: scaleX(1); }
}

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

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

@keyframes slideInDown {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* SPLASH SCREEN */
.splash-screen {
    position: fixed;
    inset: 0;
    z-index: 200;
    background-color: #5B0E14;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    opacity: 1;
    transition: opacity 0.7s ease;
    pointer-events: auto;
}

.splash-screen.hidden {
    opacity: 0;
    pointer-events: none;
}

.splash-content {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.brand-chars {
    display: flex;
    gap: 0;
}

.brand-char {
    font-size: 2rem;
    font-weight: 900;
    color: #F3E5AB;
    letter-spacing: 0.4em;
    display: inline-block;
    opacity: 0;
    transform: translateY(5px);
    animation: classicReveal 0.6s cubic-bezier(0.2, 0, 0.2, 1) forwards;
}

@media (min-width: 768px) {
    .brand-char {
        font-size: 3.5rem;
    }
}

.brand-char:nth-child(1) { animation-delay: 0s; }
.brand-char:nth-child(2) { animation-delay: 0.08s; }
.brand-char:nth-child(3) { animation-delay: 0.16s; }
.brand-char:nth-child(4) { animation-delay: 0.24s; }
.brand-char:nth-child(5) { animation-delay: 0.32s; }
.brand-char:nth-child(6) { animation-delay: 0.4s; }
.brand-char:nth-child(7) { animation-delay: 0.48s; }
.brand-char:nth-child(8) { animation-delay: 0.56s; }

.splash-tagline {
    margin-top: 1rem;
    font-size: 0.5rem;
    font-weight: 700;
    color: rgba(255, 255, 255, 0.3);
    letter-spacing: 1.2em;
    text-transform: uppercase;
    opacity: 0;
    transform: translateY(20px);
    animation: revealTagline 0.8s ease-out forwards 0.8s;
}

@media (min-width: 768px) {
    .splash-tagline {
        font-size: 0.625rem;
    }
}

.splash-line {
    position: absolute;
    bottom: 50%;
    transform: translateY(80px);
    width: 3rem;
    height: 1px;
    background-color: rgba(255, 255, 255, 0.2);
    overflow: hidden;
}

.splash-line::after {
    content: '';
    display: block;
    height: 100%;
    background-color: #F3E5AB;
    width: 100%;
    transform-origin: left;
    animation: lineProgress 2s ease-in-out forwards;
}

/* MAIN CONTENT */
.main-content {
    opacity: 1;
    transition: opacity 1s ease;
}

.main-content.hidden {
    opacity: 0;
}

/* NAVIGATION */
.navbar {
    position: fixed;
    width: 100%;
    z-index: 50;
    transition: all 0.5s ease;
    padding: 1.5rem 0;
    background-color: transparent;
}

.navbar.scrolled {
    background-color: #5B0E14;
    padding: 0.75rem 0;
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
}

.navbar-container {
    max-width: 100%;
    margin: 0 auto;
    padding: 0 1.5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.navbar-logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    cursor: pointer;
    user-select: none;
    transition: all 0.3s ease;
}

.logo-circle {
    width: 3.0rem;
    height: 3.0rem;
    border-radius: 0.75rem;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 900;
    font-size: 1.25rem;
    transition: all 0.3s ease;
    background-color: #5B0E14;
    color: #FFFFFF;
    object-fit: cover;
}

.navbar.scrolled .logo-circle {
    background-color: #FFFFFF;
    color: #5B0E14;
}

.logo-burgundy-bg {
    display: none;
}

.navbar.scrolled .logo-burgundy-bg {
    display: flex;
}

.navbar.scrolled .logo-white-bg {
    display: none;
}

.logo-text {
    display: flex;
    flex-direction: column;
    gap: -0.25rem;
}

.logo-main {
    font-weight: 900;
    font-size: 1.125rem;
    letter-spacing: -0.05em;
    color: #5B0E14;
    transition: color 0.3s ease;
}

.navbar.scrolled .logo-main {
    color: #FFFFFF;
}

.logo-sub {
    font-size: 0.563rem;
    font-weight: 700;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: rgba(91, 14, 20, 0.6);
    transition: color 0.3s ease;
}

.navbar.scrolled .logo-sub {
    color: rgba(255, 255, 255, 0.6);
}

.menu-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.25rem;
    z-index: 51;
}

.hamburger {
    display: block;
    width: 1.75rem;
    height: 1.5rem;
    position: relative;
}

.hamburger::before,
.hamburger::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 2px;
    background-color: #5B0E14;
    transition: all 0.3s ease;
}

.navbar.scrolled .hamburger::before,
.navbar.scrolled .hamburger::after {
    background-color: #FFFFFF;
}

.hamburger::before {
    top: 0;
}

.hamburger::after {
    bottom: 0;
}

.menu-toggle.open .hamburger::before {
    transform: rotate(45deg);
    top: 50%;
    translate: 0 -50%;
}

.menu-toggle.open .hamburger::after {
    transform: rotate(-45deg);
    bottom: 50%;
    translate: 0 50%;
}

.navbar-links {
    display: flex;
    align-items: center;
    gap: 3rem;
    font-size: 0.625rem;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 0.3em;
}

.nav-link {
    color: #5B0E14;
    text-decoration: none;
    transition: opacity 0.3s ease;
    cursor: pointer;
}

.navbar.scrolled .nav-link {
    color: #FFFFFF;
}

.nav-link:hover {
    opacity: 0.5;
}

@media (max-width: 1024px) {
    .menu-toggle {
        display: block;
    }

    .navbar-links {
        display: none;
        position: fixed;
        top: 5rem;
        right: 0;
        left: 0;
        flex-direction: column;
        gap: 1rem;
        background-color: #5B0E14;
        padding: 2rem;
        text-align: center;
    }

    .navbar-links.open {
        display: flex;
        animation: slideInDown 0.3s ease;
    }

    .navbar-links .nav-link {
        color: #FFFFFF;
    }
}

/* HERO */
.hero {
    min-height: 100vh;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 1.5rem;
    text-align: center;
    position: relative;
    z-index: 10;
    background-color: #FFFFFF;
    margin-top: 0;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 900;
    color: #5B0E14;
    line-height: 0.85;
    letter-spacing: -0.02em;
    margin-bottom: 2.5rem;
    text-transform: uppercase;
}

@media (min-width: 640px) {
    .hero-title {
        font-size: 4.5rem;
    }
}

@media (min-width: 768px) {
    .hero-title {
        font-size: 5.5rem;
    }
}

@media (min-width: 1024px) {
    .hero-title {
        font-size: 7rem;
    }
}

.hero-subtitle {
    font-size: 1rem;
    color: rgba(91, 14, 20, 0.6);
    max-width: 28rem;
    font-weight: 700;
    line-height: 1.5;
    margin-bottom: 3rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
}

@media (min-width: 768px) {
    .hero-subtitle {
        font-size: 1.25rem;
    }
}

.hero-buttons {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    width: 100%;
    max-width: 28rem;
}

@media (min-width: 640px) {
    .hero-buttons {
        flex-direction: row;
    }
}

/* ABOUT */
.about {
    padding: 8rem 1.5rem;
    background-color: #5B0E14;
    color: #F3E5AB;
}

@media (min-width: 768px) {
    .about {
        padding: 8rem 3rem;
    }
}

.about-container {
    max-width: 900px;
    margin: 0 auto;
}

.about-title {
    font-size: 3.5rem;
    font-weight: 900;
    color: #F3E5AB;
    letter-spacing: -0.02em;
    margin-bottom: 2rem;
    text-transform: uppercase;
    text-align: center;
}

@media (min-width: 768px) {
    .about-title {
        font-size: 4.5rem;
    }
}

.about-text {
    font-size: 1rem;
    line-height: 1.8;
    margin-bottom: 3rem;
    text-align: center;
    font-weight: 500;
    opacity: 0.95;
}

@media (min-width: 768px) {
    .about-text {
        font-size: 1.125rem;
    }
}

.about-features {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin-bottom: 3rem;
}

@media (min-width: 768px) {
    .about-features {
        grid-template-columns: repeat(3, 1fr);
    }
}

.about-feature {
    text-align: center;
    padding: 2rem;
    border-radius: 1.5rem;
    background-color: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}

.about-feature:hover {
    background-color: rgba(255, 255, 255, 0.1);
    transform: translateY(-5px);
}

.feature-icon {
    width: 3.5rem;
    height: 3.5rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    border-radius: 1rem;
    background-color: rgba(255, 255, 255, 0.1);
    color: #F3E5AB;
    font-size: 1.5rem;
}

.icon-badge {
    min-width: 3.5rem;
    min-height: 3.5rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 1rem;
    background-color: rgba(255, 255, 255, 0.1);
    color: #F3E5AB;
    font-size: 1.5rem;
}

.icon-svg,
.btn svg,
.floating-chat svg,
.floating-instagram svg,
.floating-whatsapp svg {
    width: 1.1rem;
    height: 1.1rem;
}

.about-feature h3 {
    font-size: 1.25rem;
    font-weight: 900;
    color: #F3E5AB;
    text-transform: uppercase;
    letter-spacing: -0.02em;
    margin-bottom: 0.75rem;
}

.about-feature p {
    font-size: 0.875rem;
    line-height: 1.6;
    opacity: 0.85;
}

.about-closing {
    font-size: 1rem;
    line-height: 1.8;
    text-align: center;
    font-weight: 500;
    opacity: 0.95;
    font-style: italic;
}

@media (min-width: 768px) {
    .about-closing {
        font-size: 1.125rem;
    }
}

.btn {
    padding: 1.25rem 2.5rem;
    border-radius: 1rem;
    font-weight: 900;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.3em;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    border: none;
    flex: 1;
}

.btn-primary {
    background-color: #5B0E14;
    color: #F3E5AB;
    box-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.2);
}

.btn-primary:hover {
    transform: translateY(-4px);
}

.btn-secondary {
    background-color: transparent;
    border: 2px solid rgba(91, 14, 20, 0.2);
    color: #5B0E14;
}

.btn-secondary:hover {
    background-color: #5B0E14;
    color: #FFFFFF;
    border-color: #5B0E14;
}

/* SOLUTIONS */
.solutions {
    padding: 8rem 1rem;
    background-color: #FFFFFF;
}

@media (min-width: 768px) {
    .solutions {
        padding: 8rem 3rem;
    }
}

.solutions-header {
    text-align: center;
    margin-bottom: 6rem;
}

.solutions-header h2 {
    font-size: 3.75rem;
    font-weight: 900;
    color: #5B0E14;
    letter-spacing: -0.02em;
    margin-bottom: 1rem;
    text-transform: uppercase;
    line-height: 1;
}

@media (min-width: 768px) {
    .solutions-header h2 {
        font-size: 5.5rem;
    }
}

.solutions-header p {
    font-size: 0.688rem;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 0.5em;
    color: rgba(91, 14, 20, 0.3);
}

.services-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
}

@media (min-width: 768px) {
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 2.5rem;
    }
}

@media (min-width: 1024px) {
    .services-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.service-card {
    padding: 2.5rem;
    border-radius: 3rem;
    display: flex;
    flex-direction: column;
    transition: all 0.3s ease;
    border: 1px solid;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
    min-height: 300px;
    width: 100%;
    text-align: left;
}

.service-card.dark {
    background-color: #5B0E14;
    color: #F3E5AB;
    border-color: #5B0E14;
}

.service-card.light {
    background-color: white;
    color: #5B0E14;
    border-color: rgba(91, 14, 20, 0.05);
}

.service-card:hover {
    transform: translateY(-8px);
}

.service-icon {
    width: 3.5rem;
    height: 3.5rem;
    border-radius: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    transition: transform 0.3s ease;
    font-size: 1.5rem;
    line-height: 1;
}

.service-card.dark .service-icon {
    background-color: #F3E5AB;
    color: #5B0E14;
}

.service-card.light .service-icon {
    background-color: #5B0E14;
    color: #F3E5AB;
}

.service-icon > span,
.feature-icon > span {
    font-size: 1.5rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.service-card:hover .service-icon {
    transform: scale(1.1);
}

.service-title {
    font-size: 1.5rem;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: -0.02em;
    margin-bottom: 1rem;
    line-height: 1.2;
}

.service-description {
    font-size: 0.75rem;
    font-weight: 700;
    margin-bottom: 2rem;
    line-height: 1.5;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.service-card.dark .service-description {
    opacity: 0.7;
}

.service-card.light .service-description {
    opacity: 0.4;
}

.service-points {
    margin-top: auto;
    padding-top: 1.5rem;
    border-top: 1px solid;
    display: flex;
    flex-wrap: wrap;
    gap: 1rem 1rem;
}

.service-card.dark .service-points {
    border-color: rgba(255, 255, 255, 0.1);
}

.service-card.light .service-points {
    border-color: rgba(0, 0, 0, 0.05);
}

.point {
    font-size: 0.563rem;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: -0.02em;
    display: flex;
    align-items: center;
    gap: 0.25rem;
    opacity: 0.8;
}

.point svg {
    width: 12px;
    height: 12px;
}

/* CONTACT */
.contact {
    padding: 8rem 1.5rem;
    background-color: #5B0E14;
}

.contact-container {
    max-width: 28rem;
    background-color: #FFFFFF;
    padding: 2.5rem;
    border-radius: 4rem;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
    margin: 0 auto;
}

@media (min-width: 768px) {
    .contact-container {
        padding: 4rem;
    }
}

.contact-container h2 {
    font-size: 2rem;
    font-weight: 900;
    color: #5B0E14;
    text-align: center;
    margin-bottom: 3rem;
    text-transform: uppercase;
    letter-spacing: -0.02em;
}

@media (min-width: 768px) {
    .contact-container h2 {
        font-size: 2.5rem;
    }
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.form-input {
    width: 100%;
    background-color: rgba(91, 14, 20, 0.05);
    border-radius: 1rem;
    padding: 1.25rem 1.5rem;
    font-weight: 700;
    font-size: 0.875rem;
    border: none;
    outline: none;
    transition: all 0.3s ease;
    appearance: none;
    cursor: pointer;
    font-family: 'Plus Jakarta Sans', sans-serif;
}

.form-input:focus {
    background-color: rgba(91, 14, 20, 0.1);
    box-shadow: 0 0 0 3px rgba(91, 14, 20, 0.1);
}

.form-textarea {
    border-radius: 1.75rem;
    resize: none;
}

.btn-submit {
    width: 100%;
    background-color: #5B0E14;
    color: #F3E5AB;
    padding: 1.5rem;
    border-radius: 9999px;
    font-weight: 900;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.4em;
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
}

.btn-submit:hover {
    transform: scale(1.02);
}

.btn-submit:active {
    transform: scale(0.95);
}

/* FOOTER */
.footer {
    padding: 4rem 1.5rem;
    background-color: #FFFFFF;
    color: #5B0E14;
    border-top: 4px solid #5B0E14;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 2.5rem;
    text-align: center;
    align-items: center;
}

@media (min-width: 768px) {
    .footer-content {
        flex-direction: column;
        justify-content: center;
        text-align: center;
        align-items: center;
    }
}

.footer-brand {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
}

.footer-logo {
    width: 4.0rem;
    height: 4.0rem;
    border-radius: 0.5rem;
    background-color: #5B0E14;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 900;
    font-size: 1.125rem;
    color: #FFFFFF;
    object-fit: cover;
}

.footer-info {
    display: flex;
    flex-direction: column;
    gap: -0.25rem;
}

.footer-brand-name {
    font-weight: 900;
    font-size: 0.875rem;
    text-transform: uppercase;
    letter-spacing: -0.02em;
}

.footer-location {
    font-size: 0.563rem;
    font-weight: 700;
    opacity: 0.4;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.footer-contact {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    font-size: 0.563rem;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    opacity: 0.6;
}

.footer-contact a {
    color: inherit;
    text-decoration: none;
    transition: opacity 0.3s ease;
    text-transform: lowercase;
}

.footer-contact a:hover {
    opacity: 1;
}

.footer-actions {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 2rem;
}

.footer-link {
    font-size: 0.563rem;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    opacity: 0.4;
    background: none;
    border: none;
    cursor: pointer;
    transition: opacity 0.3s ease;
}

.footer-link:hover {
    opacity: 1;
    text-decoration: underline;
}

.scroll-top-btn {
    width: 2rem;
    height: 2rem;
    border-radius: 9999px;
    border: 1px solid rgba(91, 14, 20, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    background: none;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 1rem;
    color: #5B0E14;
}

.scroll-top-btn:hover {
    background-color: #5B0E14;
    color: #FFFFFF;
}

.footer-copyright {
    font-size: 0.5rem;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 0.4em;
    opacity: 0.3;
    text-align: center;
    margin-top: 3rem;
}

/* FLOATING UI */
.floating-ui {
    position: fixed;
    z-index: 60;
    bottom: 1.5rem;
    left: 1.5rem;
    right: 1.5rem;
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    pointer-events: none;
}

.floating-instagram {
    position: fixed;
    bottom: 1.5rem;
    left: 1.5rem;
    z-index: 60;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 3.5rem;
    height: 3.5rem;
    border-radius: 1rem;
    background-color: #5B0E14;
    color: #FFFFFF;
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.2);
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    pointer-events: auto;
}

.floating-instagram:hover {
    transform: scale(1.1);
}

.floating-buttons {
    position: fixed;
    bottom: 6rem;
    right: 1.5rem;
    z-index: 60;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    pointer-events: auto;
}

.floating-chat {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 3.5rem;
    height: 3.5rem;
    border-radius: 1rem;
    background-color: #5B0E14;
    color: #FFFFFF;
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.2);
    cursor: pointer;
    transition: all 0.3s ease;
}

.floating-chat:hover {
    transform: scale(1.1);
}

.floating-whatsapp {
    position: fixed;
    bottom: 1.5rem;
    right: 1.5rem;
    z-index: 60;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 3.5rem;
    height: 3.5rem;
    border-radius: 1rem;
    background-color: #25D366;
    color: white;
    border: 2px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.2);
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
}

.floating-whatsapp:hover {
    transform: scale(1.1);
}

/* CHAT POPUP */
.chat-popup {
    position: fixed;
    bottom: 10.5rem;
    right: 1.5rem;
    z-index: 70;
    width: 320px;
    background-color: white;
    border-radius: 2.5rem;
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.2);
    overflow: hidden;
    border: 1px solid rgba(91, 14, 20, 0.1);
    display: none;
    flex-direction: column;
    animation: slideInUp 0.3s ease;
}

.chat-popup.open {
    display: flex;
}

@media (min-width: 768px) {
    .chat-popup {
        width: 420px;
    }
}

.chat-header {
    background-color: #5B0E14;
    padding: 1.5rem;
    color: #FFFFFF;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.chat-header-info {
    display: flex;
    align-items: center;
    gap: 1rem;
    text-align: left;
}

.chat-logo {
    width: 2.5rem;
    height: 2.5rem;
    border-radius: 0.75rem;
    background-color: #FFFFFF;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 900;
    color: #5B0E14;
    object-fit: cover;
}

.chat-header-info h4 {
    font-weight: 700;
    font-size: 0.875rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.chat-header-info p {
    font-size: 0.75rem;
    opacity: 0.6;
    text-transform: uppercase;
    font-weight: 900;
}

.chat-back {
    padding: 0.5rem;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 9999px;
    color: #FFFFFF;
    border: none;
    cursor: pointer;
    font-size: 1.25rem;
    transition: all 0.3s ease;
    display: none;
}

.chat-back.show {
    display: block;
}

.chat-back:hover {
    background-color: rgba(255, 255, 255, 0.2);
}

.chat-content {
    height: 380px;
    background-color: rgba(255, 255, 255, 0.1);
    padding: 1.5rem;
    overflow-y: auto;
    display: flex;
    flex-direction: column;
}

.chat-services {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.chat-message {
    background-color: rgba(91, 14, 20, 0.05);
    padding: 1rem;
    border-radius: 1.875rem;
    border-top-left-radius: 0;
    font-size: 0.75rem;
    font-weight: 700;
    color: #5B0E14;
    margin-bottom: 1rem;
}

.chat-service-btn {
    width: 100%;
    text-align: left;
    background-color: white;
    border: 1px solid rgba(91, 14, 20, 0.1);
    padding: 1rem;
    border-radius: 1.125rem;
    font-size: 0.688rem;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: #5B0E14;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    transition: all 0.3s ease;
}

.chat-service-btn:hover {
    background-color: rgba(91, 14, 20, 0.05);
}

.service-detail {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 1.5rem;
    animation: slideInUp 0.3s ease;
}

.service-detail-icon {
    width: 5rem;
    height: 5rem;
    background-color: #5B0E14;
    color: #FFFFFF;
    border-radius: 2rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.service-detail-title {
    font-size: 1.125rem;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: -0.02em;
    color: #5B0E14;
}

.service-call-btn {
    width: 100%;
    background-color: #5B0E14;
    color: #FFFFFF;
    padding: 1.25rem;
    border-radius: 1.5rem;
    font-weight: 900;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.3em;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    border: none;
    cursor: pointer;
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
    text-decoration: none;
}

.service-call-btn:hover {
    transform: translateY(-2px);
}

/* TERMS MODAL */
.terms-modal {
    position: fixed;
    inset: 0;
    z-index: 100;
    background-color: rgba(91, 14, 20, 0.95);
    backdrop-filter: blur(6px);
    display: none;
    align-items: center;
    justify-content: center;
    padding: 1.5rem;
    animation: fadeIn 0.3s ease;
}

.terms-modal.open {
    display: flex;
}

.terms-content {
    background-color: #FFFFFF;
    width: 100%;
    max-width: 28rem;
    max-height: 80vh;
    overflow-y: auto;
    border-radius: 2.5rem;
    padding: 2rem;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
    position: relative;
    color: #5B0E14;
}

@media (min-width: 768px) {
    .terms-content {
        padding: 3rem;
    }
}

.terms-close {
    position: absolute;
    top: 2rem;
    right: 2rem;
    background: none;
    border: none;
    font-size: 1.5rem;
    cursor: pointer;
    opacity: 0.5;
    transition: opacity 0.3s ease;
}

.terms-close:hover {
    opacity: 1;
}

.terms-content h2 {
    font-size: 1.5rem;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: -0.02em;
    margin-bottom: 2rem;
    border-bottom: 1px solid rgba(91, 14, 20, 0.1);
    padding-bottom: 1rem;
}

.terms-text {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    font-weight: 700;
    font-size: 0.688rem;
    opacity: 0.9;
    text-transform: uppercase;
    letter-spacing: 0.02em;
    text-align: left;
}

.terms-date {
    padding-top: 1.5rem;
    border-top: 1px solid rgba(91, 14, 20, 0.1);
    font-size: 0.563rem;
    opacity: 0.4;
    text-align: center;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

/* HIDDEN STATE */
.hidden-menu {
    display: none;
}

.hidden-floating {
    display: none;
}

/* RESPONSIVE */
@media (max-width: 640px) {
    .hero-title {
        margin-bottom: 1.5rem;
    }

    .hero-buttons {
        gap: 0.5rem;
    }
}
