@import url("https://fonts.googleapis.com/css2?family=Manrope:wght@500;700;800&family=Space+Grotesk:wght@600;700&display=swap");

:root {
    --bg: #fffaf3;
    --surface: #ffffff;
    --ink: #1d2238;
    --muted: #5f6884;
    --line: #e5dece;
    --orange: #ff7a00;
    --cyan: #00a6a6;
    --yellow: #ffd84e;
    --berry: #ea4c89;
    --deep: #121735;
    --shadow: 0 16px 35px rgba(18, 23, 53, 0.14);
}

* {
    box-sizing: border-box;
}

html,
body {
    overflow-x: hidden;
}

body {
    margin: 0;
    color: var(--ink);
    font-family: "Manrope", "Segoe UI", Tahoma, sans-serif;
    line-height: 1.55;
    background:
        radial-gradient(circle at 15% 8%, rgba(255, 216, 78, 0.34), transparent 28%),
        radial-gradient(circle at 88% 6%, rgba(0, 166, 166, 0.22), transparent 25%),
        var(--bg);
}

.container {
    width: min(1140px, 92vw);
    margin: 0 auto;
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 40;
    backdrop-filter: blur(8px);
    background: rgba(255, 250, 243, 0.94);
    border-bottom: 1px solid var(--line);
}

.ticker-bar {
    background: linear-gradient(90deg, var(--orange), var(--berry), var(--cyan));
    color: #fff;
    overflow: hidden;
}

.ticker-wrap {
    display: flex;
    align-items: center;
    min-height: 34px;
}

.ticker-text {
    margin: 0;
    white-space: nowrap;
    display: inline-flex;
    gap: 2.2rem;
    font-weight: 700;
    letter-spacing: 0.2px;
    animation: ticker-slide 18s linear infinite;
}

.ticker-text span::before {
    content: "* ";
}

@keyframes ticker-slide {
    from {
        transform: translateX(0);
    }
    to {
        transform: translateX(-50%);
    }
}

.top-bar {
    background: var(--deep);
    color: #dfe6ff;
}

.top-bar-wrap {
    min-height: 42px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
}

.top-bar-wrap p {
    margin: 0;
    font-size: 0.92rem;
}

.top-links {
    display: flex;
    gap: 0.7rem;
}

.top-phone,
.top-whatsapp {
    text-decoration: none;
    color: #fff;
    font-size: 0.88rem;
    font-weight: 800;
    border-radius: 999px;
    padding: 0.28rem 0.68rem;
}

.top-phone {
    background: rgba(255, 255, 255, 0.16);
}

.top-whatsapp {
    background: linear-gradient(90deg, #25d366, #0ca44d);
}

.nav-wrap {
    min-height: 80px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
}

.logo {
    text-decoration: none;
    color: var(--deep);
    font-family: "Space Grotesk", "Manrope", sans-serif;
    font-size: 1.18rem;
    font-weight: 700;
    max-width: 220px;
}

.site-nav {
    display: flex;
    align-items: center;
    gap: 0.35rem;
}

.nav-item {
    position: relative;
}

.nav-link {
    text-decoration: none;
    color: #2f3557;
    font-weight: 800;
    border-radius: 10px;
    padding: 0.62rem 0.85rem;
    transition: 0.22s ease;
    display: inline-flex;
    align-items: center;
}

.nav-link.active,
.nav-link:hover {
    color: #fff;
    background: linear-gradient(140deg, var(--orange), #ff9342);
    box-shadow: 0 8px 20px rgba(255, 122, 0, 0.28);
}

.mega-menu {
    position: absolute;
    left: 0;
    top: calc(100% + 11px);
    min-width: 540px;
    padding: 1rem;
    border-radius: 18px;
    border: 1px solid #f1d8b4;
    background: linear-gradient(180deg, #fffdf7, #fff7ea);
    box-shadow: var(--shadow);
    opacity: 0;
    transform: translateY(8px);
    pointer-events: none;
    transition: 0.2s ease;
}

.mega-item:hover .mega-menu,
.mega-item:focus-within .mega-menu {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
}

.mega-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.55rem;
}

.mega-grid a {
    text-decoration: none;
    background: #fff;
    color: #2f3350;
    border: 1px solid #f0d9b5;
    border-radius: 10px;
    padding: 0.58rem 0.66rem;
    font-weight: 700;
}

.mega-grid a:hover {
    background: var(--cyan);
    border-color: var(--cyan);
    color: #fff;
}

.hero {
    padding: 4rem 0 2.6rem;
}

.hero-shell {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 1rem;
}

.hero-copy,
.hero-panel {
    background: var(--surface);
    border: 1px solid var(--line);
    border-radius: 24px;
    padding: 1.3rem 1.35rem;
    box-shadow: var(--shadow);
}

.eyebrow {
    margin: 0 0 0.3rem;
    color: var(--berry);
    font-weight: 800;
    letter-spacing: 1.3px;
    font-size: 0.82rem;
}

.hero h1,
.page-section h1 {
    margin: 0;
    font-family: "Space Grotesk", "Manrope", sans-serif;
    line-height: 1.1;
    font-size: clamp(2rem, 3.4vw, 3rem);
}

.hero p,
.page-section p {
    color: var(--muted);
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.6rem;
    margin-top: 1rem;
}

.btn {
    display: inline-block;
    text-decoration: none;
    border-radius: 10px;
    font-weight: 800;
    padding: 0.78rem 1.08rem;
    background: linear-gradient(135deg, var(--orange), #ff994f);
    color: #fff;
}

.btn.ghost {
    background: #fff;
    color: var(--deep);
    border: 1px solid #efd7b3;
}

.hero-points {
    margin: 1rem 0 0;
    padding-left: 1rem;
    display: grid;
    gap: 0.3rem;
    color: #374064;
    font-weight: 700;
}

.hero-panel h2 {
    margin: 0;
    font-family: "Space Grotesk", "Manrope", sans-serif;
    font-size: 1.35rem;
}

.quick-stats {
    display: grid;
    gap: 0.6rem;
    margin-top: 0.9rem;
}

.quick-stats div {
    background: #fff6e7;
    border: 1px solid #f3ddba;
    border-radius: 12px;
    padding: 0.66rem 0.72rem;
}

.quick-stats strong {
    display: block;
    color: #21284a;
    font-size: 1.13rem;
}

.quick-stats span {
    color: #556082;
    font-size: 0.92rem;
}

.services,
.brands,
.page-section {
    padding: 1.2rem 0 2.6rem;
}

.services h2,
.brands h2 {
    margin-top: 0;
    font-family: "Space Grotesk", "Manrope", sans-serif;
    font-size: 1.7rem;
}

.card-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 0.9rem;
}

.card {
    background: linear-gradient(170deg, #ffffff, #fff6ea);
    border: 1px solid #efdec2;
    border-radius: 14px;
    padding: 0.95rem;
}

.card h3 {
    margin-top: 0;
}

.brand-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 0.7rem;
}

.brand-grid span {
    display: block;
    text-align: center;
    background: #fff;
    border: 1px solid #efdfc4;
    border-radius: 12px;
    padding: 0.72rem 0.4rem;
    font-weight: 800;
    color: #293052;
}

.narrow {
    max-width: 760px;
}

/* ── FOOTER ───────────────────────────────── */
.site-footer {
    margin-top: 2rem;
    color: #ccd6f6;
    background:
        radial-gradient(circle at 12% 18%, rgba(255, 122, 0, 0.28), transparent 32%),
        linear-gradient(140deg, #0d1433, #10204a 55%, #0f2550);
}

.footer-wrap {
    padding: 2.4rem 0 1.1rem;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.6fr 1fr 1.1fr 1fr;
    gap: 1.2rem;
    align-items: start;
}

.footer-grid h3 {
    margin: 0 0 0.7rem;
    color: #fff;
    font-family: "Space Grotesk", "Manrope", sans-serif;
    font-size: 0.96rem;
    letter-spacing: 0.3px;
}

.footer-brand .footer-logo {
    text-decoration: none;
    color: #fff;
    font-family: "Space Grotesk", "Manrope", sans-serif;
    font-size: 1.12rem;
    font-weight: 800;
    display: block;
    margin-bottom: 0.65rem;
}

.footer-brand p {
    font-size: 0.9rem;
    margin: 0 0 0.85rem;
    color: #9aaecf;
}

.footer-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 0.4rem;
}

.footer-badges span {
    font-size: 0.76rem;
    font-weight: 700;
    padding: 0.24rem 0.52rem;
    border-radius: 999px;
    background: rgba(255, 122, 0, 0.22);
    border: 1px solid rgba(255, 122, 0, 0.38);
    color: #ffb86c;
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    gap: 0.38rem;
}

.footer-links a {
    text-decoration: none;
    color: #9dc3f8;
    font-weight: 700;
    font-size: 0.9rem;
}

.footer-links a:hover {
    color: #fff;
}

.footer-contact {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    gap: 0.62rem;
    font-size: 0.88rem;
}

.footer-contact li {
    display: flex;
    flex-direction: column;
    gap: 0.1rem;
}

.fc-label {
    font-size: 0.74rem;
    font-weight: 800;
    letter-spacing: 0.8px;
    color: #ff9940;
    text-transform: uppercase;
}

.footer-contact a {
    color: #7ef8d1;
    text-decoration: none;
    font-weight: 700;
}

.footer-hours {
    list-style: none;
    padding: 0;
    margin: 0 0 0.9rem;
    display: grid;
    gap: 0.5rem;
}

.footer-hours li {
    display: flex;
    justify-content: space-between;
    font-size: 0.9rem;
    border-bottom: 1px solid rgba(255,255,255,0.08);
    padding-bottom: 0.38rem;
}

.footer-hours li span {
    color: #9aaecf;
}

.footer-hours li strong {
    color: #fff;
}

.footer-cta {
    display: inline-block;
    text-decoration: none;
    background: linear-gradient(135deg, #25d366, #0da84b);
    color: #fff;
    font-weight: 800;
    font-size: 0.86rem;
    border-radius: 999px;
    padding: 0.5rem 0.9rem;
}

.copyright {
    margin: 1.4rem 0 0;
    padding-top: 0.85rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    font-size: 0.87rem;
    color: #6882b2;
}

/* ── WHATSAPP FLOAT ─────────────────────── */
.whatsapp-float {
    position: fixed;
    right: 14px;
    bottom: 14px;
    z-index: 80;
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    text-decoration: none;
    color: #fff;
    font-weight: 800;
    font-size: 0.92rem;
    border-radius: 999px;
    padding: 0.68rem 0.96rem 0.68rem 0.78rem;
    background: linear-gradient(135deg, #20cc5c, #0ca643);
    box-shadow: 0 10px 24px rgba(8, 120, 50, 0.46);
}

/* ── CONTACT PAGE ───────────────────────── */
.page-hero {
    padding: 2.8rem 0 1.8rem;
    border-bottom: 1px solid var(--line);
}

.page-hero h1 {
    font-family: "Space Grotesk", "Manrope", sans-serif;
    font-size: clamp(1.9rem, 3.2vw, 2.7rem);
    margin: 0;
}

.page-hero p {
    color: var(--muted);
    max-width: 580px;
}

.contact-section {
    padding: 2rem 0 3.5rem;
}

.contact-shell {
    display: grid;
    grid-template-columns: 1fr 1.4fr;
    gap: 1.4rem;
    align-items: start;
}

.contact-info-col {
    display: grid;
    gap: 0.75rem;
}

.cinfo-card {
    background: var(--surface);
    border: 1px solid var(--line);
    border-radius: 16px;
    padding: 0.9rem 1rem;
    display: flex;
    gap: 0.75rem;
    align-items: flex-start;
}

.cinfo-card h3 {
    margin: 0 0 0.2rem;
    font-size: 0.92rem;
    font-weight: 800;
}

.cinfo-card p {
    margin: 0;
    font-size: 0.88rem;
    color: var(--muted);
    line-height: 1.5;
}

.cinfo-card a {
    color: var(--cyan);
    text-decoration: none;
    font-weight: 700;
}

.cinfo-icon {
    font-size: 1.4rem;
    min-width: 34px;
    text-align: center;
    padding-top: 2px;
}

.map-wrap {
    border-radius: 16px;
    overflow: hidden;
    border: 1px solid var(--line);
}

.map-wrap iframe {
    display: block;
}

.contact-form-col {
    background: var(--surface);
    border: 1px solid var(--line);
    border-radius: 20px;
    padding: 1.5rem;
    box-shadow: var(--shadow);
}

.contact-form {
    display: grid;
    gap: 0.85rem;
}

.field-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.85rem;
}

.field {
    display: flex;
    flex-direction: column;
    gap: 0.3rem;
}

.field label {
    font-weight: 800;
    font-size: 0.87rem;
    color: #2a3255;
}

.field input,
.field textarea {
    border: 1px solid #ddd;
    border-radius: 10px;
    padding: 0.68rem 0.78rem;
    font-size: 0.93rem;
    font-family: inherit;
    color: var(--ink);
    background: #fafcff;
    outline: none;
    transition: border-color 0.18s;
}

.field input:focus,
.field textarea:focus {
    border-color: var(--orange);
}

.field.has-error input,
.field.has-error textarea {
    border-color: #e0304a;
    background: #fff7f7;
}

.field-error {
    color: #c82b3b;
    font-size: 0.8rem;
    font-weight: 700;
}

.form-btn {
    justify-self: start;
    cursor: pointer;
    border: none;
    font-family: inherit;
    font-size: 0.97rem;
}

.form-success {
    background: #e9faf1;
    border: 1px solid #62dda0;
    border-radius: 12px;
    padding: 1.2rem;
    font-size: 0.95rem;
    color: #0d6835;
}

.form-success strong {
    display: block;
    font-size: 1.05rem;
    margin-bottom: 0.3rem;
}

@media (max-width: 1060px) {
    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 980px) {
    .hero-shell {
        grid-template-columns: 1fr;
    }

    .site-nav {
        flex-wrap: wrap;
        justify-content: flex-end;
    }

    .mega-menu {
        min-width: 360px;
    }

    .card-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .brand-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .contact-shell {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 800px) {
    .ticker-text {
        font-size: 0.84rem;
    }

    .top-bar-wrap {
        flex-direction: column;
        align-items: flex-start;
        padding: 0.5rem 0;
    }

    .top-links {
        width: 100%;
        justify-content: space-between;
    }

    .nav-wrap {
        flex-direction: column;
        align-items: flex-start;
        padding: 0.8rem 0;
    }

    .site-nav {
        width: 100%;
        flex-direction: column;
        align-items: stretch;
    }

    .nav-link {
        width: 100%;
    }

    .mega-menu {
        position: static;
        min-width: 100%;
        margin-top: 0.4rem;
        opacity: 1;
        transform: none;
        pointer-events: auto;
        display: block;
    }

    .mega-grid,
    .card-grid,
    .brand-grid,
    .footer-grid,
    .field-row {
        grid-template-columns: 1fr;
    }
}
