/* ============ BASIC RESET & GLOBALS ============ */

*,
*::before,
*::after {
    box-sizing: border-box;
}

body {
    margin: 0;
    font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Inter, sans-serif;
    background: #f4f7fb;
    color: #111827;
}

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

a {
    color: #0369a1;
    text-decoration: none;
}

a:hover {
    text-decoration: underline;
}

.container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

/* ============ HEADER (NEW) ============ */

.site-header {
    background: #ffffff;                 /* pure white, better contrast */
    border-bottom: 1px solid #e5e7eb;
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    padding: 0.6rem 0;
}

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

.logo img {
    height: 240px;                        /* smaller logo */
    width: auto;
}

.logo-text-main {
    font-weight: 700;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    font-size: 0.9rem;
    color: #0f172a;
}

.logo-text-main span {
    color: #0284c7;
}

.logo-text-sub {
    font-size: 0.78rem;
    color: #6b7280;
}

/* NAVIGATION */

.main-nav {
    display: flex;
    align-items: center;
    gap: 1.2rem;         /* slightly wider spacing to breathe */
    white-space: nowrap; /* prevents breaking into 2 lines */
    flex-wrap: nowrap;   /* force single row */
}

.main-nav a {
    font-size: 0.9rem;
    font-weight: 500;
    color: #111827;
    padding-bottom: 2px;
    border-bottom: 2px solid transparent;
    text-decoration: none;
}

.main-nav a:hover {
    color: #0284c7;
    border-bottom-color: #0284c7;
}

/* RIGHT SIDE: LANG + WHATSAPP */

.header-right {
    display: flex;
    align-items: center;
    gap: 0.7rem;
    flex-wrap: wrap;
    justify-content: flex-end;
}

.lang-switch {
    display: flex;
    align-items: center;
    gap: 0.3rem;
    font-size: 0.78rem;
}

.lang-switch a {
    padding: 0.15rem 0.45rem;
    border-radius: 999px;
    border: 1px solid transparent;
    color: #4b5563;
    text-decoration: none;
    background: transparent;
}

.lang-switch a.on {
    background: #e0f2fe;
    border-color: #bae6fd;
    color: #0369a1;
}

.header-phone {
    font-size: 0.82rem;
    color: #111827;
}

.header-phone a {
    color: inherit;
}

.btn-whatsapp {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.28rem 0.8rem;
    border-radius: 999px;
    background: #22c55e;
    color: #ecfdf5;
    font-size: 0.78rem;
    font-weight: 600;
    border: 1px solid #16a34a;
    text-decoration: none;
}

.btn-whatsapp:hover {
    background: #16a34a;
}

/* ============ HERO (NEW – IMAGE FLOATS) ============ */

.hero {
    padding: 1.8rem 0 1.6rem;
}

.hero-text {
    max-width: 800px;
}

/* small floating image on the right so text flows around it */
.hero-float-image {
    float: right;
    width: 200px;
    max-width: 45%;
    border-radius: 12px;
    margin-left: 1.2rem;
    margin-bottom: 0.8rem;
    box-shadow: 0 8px 18px rgba(15, 23, 42, 0.22);
}

.hero-text h1 {
    font-size: clamp(1.9rem, 2.2vw + 1.3rem, 2.4rem);
    margin: 0 0 0.7rem;
    color: #0f172a;
}

.hero-text p {
    margin: 0 0 0.7rem;
    line-height: 1.7;
    color: #111827;
}

.hero-actions {
    margin-top: 0.4rem;
    display: flex;
    flex-wrap: wrap;
    gap: 0.55rem;
}

.hero-note {
    margin-top: 0.3rem;
    font-size: 0.9rem;
    color: #6b7280;
}

/* buttons reused from before */
.btn-primary,
.btn-secondary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.5rem 1.1rem;
    border-radius: 999px;
    font-size: 0.9rem;
    font-weight: 500;
    border: 1px solid transparent;
}

.btn-primary {
    background: linear-gradient(135deg, #0ea5e9, #0369a1);
    color: #f9fafb;
}

.btn-primary:hover {
    filter: brightness(1.05);
}

.btn-secondary {
    background: transparent;
    color: #0f172a;
    border-color: #cbd5e1;
}

.btn-secondary:hover {
    background: #e5e7eb;
}

/* mobile: image above text instead of float */
@media (max-width: 850px) {
    .hero-float-image {
        float: none;
        display: block;
        margin: 0 0 1rem;
        width: 230px;
        max-width: 100%;
    }

    /* Center the logo on mobile */
    .logo {
        width: 100%;
        justify-content: center;
        text-align: center;
    }

    .logo img {
        display: block;
        height: 120px;
        margin: 0 auto;
    }

    .header-inner {
        flex-wrap: wrap;
        align-items: flex-start;
    }

    .main-nav {
        flex-wrap: wrap;         /* mobile can wrap */
        justify-content: center; /* looks cleaner */
        white-space: normal;
    }

    .header-right {
        margin-left: auto;
    }
}


/* ============ SECTIONS ============ */

.section {
    padding: 2.3rem 0;
}

.section-alt {
    background: #e5edf7;
    border-top: 1px solid #d1d5db;
    border-bottom: 1px solid #d1d5db;
}

.section h2 {
    margin: 0 0 0.7rem;
    font-size: 1.4rem;
    color: #0f172a;
}

.section-intro {
    margin: 0 0 1.4rem;
    max-width: 640px;
    color: #4b5563;
    line-height: 1.6;
}

.section-note {
    margin-top: 0.8rem;
    font-size: 0.9rem;
    color: #6b7280;
}

/* CARDS */

.cards-grid {
    display: grid;
    gap: 1.2rem;
}

@media (min-width: 800px) {
    .cards-grid {
        grid-template-columns: repeat(2, minmax(0,1fr));
    }
}

.card {
    background: #ffffff;
    border-radius: 12px;
    border: 1px solid #d1d5db;
    padding: 1.1rem 1.3rem;
    box-shadow: 0 8px 16px rgba(15,23,42,0.05);
}

.card h3 {
    margin: 0 0 0.45rem;
    font-size: 1.05rem;
}

.card p {
    margin: 0;
    font-size: 0.95rem;
    color: #4b5563;
    line-height: 1.6;
}

/* TWO-COLUMN SECTIONS */

.two-cols {
    display: grid;
    gap: 1.7rem;
}

@media (min-width: 900px) {
    .two-cols {
        grid-template-columns: minmax(0, 1.3fr) minmax(0, 1fr);
        align-items: flex-start;
    }
}

/* LISTS / BOXES */

.bullet-list {
    padding-left: 1rem;
    margin: 0.5rem 0 0;
    color: #4b5563;
    font-size: 0.95rem;
}

.bullet-list li + li {
    margin-top: 0.3rem;
    margin-bottom: 0.8rem;
}

.highlight-box {
    background: #ffffff;
    border-radius: 12px;
    border: 1px solid #93c5fd;
    box-shadow: 0 10px 20px rgba(15,23,42,0.10);
    padding: 1.2rem 1.3rem;
}

.highlight-box h3 {
    margin-top: 0;
    margin-bottom: 0.4rem;
}

.highlight-box p {
    margin: 0 0 0.5rem;
    font-size: 0.95rem;
}

/* PILLS */

.pill-row {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.pill {
    padding: 0.25rem 0.7rem;
    border-radius: 999px;
    background: #e0f2fe;
    border: 1px solid #bae6fd;
    font-size: 0.8rem;
    color: #0369a1;
}

/* CONTACT BLOCKS */

.contact-list {
    list-style: none;
    padding: 0;
    margin: 0.5rem 0 0;
    font-size: 0.95rem;
    color: #111827;
}

.contact-list li + li {
    margin-top: 0.35rem;
}

.simple-box {
    background: #ffffff;
    border-radius: 12px;
    border: 1px dashed #9ca3af;
    padding: 1.2rem 1.3rem;
    box-shadow: 0 10px 20px rgba(15,23,42,0.08);
}

.simple-box h3 {
    margin-top: 0;
}

/* FOOTER */

.site-footer {
    border-top: 1px solid #d1d5db;
    background: #e6f3ff;
    padding: 1.4rem 0 1.8rem;
}

.footer-inner {
    text-align: center;
    font-size: 0.9rem;
    color: #374151;
}

.footer-inner .muted {
    margin-top: 0.2rem;
    color: #6b7280;
}

/* ============ RESPONSIVE ============ */

@media (max-width: 800px) {
    .header-inner {
        flex-wrap: wrap;
        align-items: flex-start;
    }

    .main-nav {
        order: 3;
        width: 100%;
        justify-content: center;
        margin-top: 0.3rem;
    }

    .header-right {
        order: 2;
        margin-left: auto;
    }

    .hero-inner {
        grid-template-columns: minmax(0, 1fr);
    }

    .hero-image {
        justify-content: flex-start;
    }
}

/* === PRICE SECTION (clean rows) === */

.price-section {
    padding: 2.5rem 0 2.8rem;
}

.price-section h2 {
    font-size: 1.6rem;
    margin-bottom: 0.4rem;
}

.price-intro {
    color: #4b5563;
    max-width: 640px;
    margin-bottom: 1.4rem;
}

.price-list {
    display: flex;
    flex-direction: column;
    gap: 0.9rem;
    margin-bottom: 1.2rem;
}

.price-item {
    padding: 0.8rem 1rem;
    border-radius: 12px;
    background: #f9fafb;
    border: 1px solid #e5e7eb;
}

.price-mainline {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    gap: 1rem;
    margin-bottom: 0.15rem;
}

.price-title {
    font-weight: 600;
    color: #111827;
}

.price-amount {
    font-weight: 700;
    color: #0f172a;
    white-space: nowrap;
}

.price-desc {
    font-size: 0.9rem;
    color: #4b5563;
}

.price-note {
    font-size: 0.85rem;
    color: #6b7280;
    max-width: 700px;
}

.price-note strong {
    color: #111827;
}

/* small screens */
@media (max-width: 600px) {
    .price-mainline {
        flex-direction: column;
        align-items: flex-start;
    }
}


