* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    font-family: 'Inter', 'Franklin Gothic Medium', Arial, sans-serif;
}

:root {
    --navy: #0a2a66;
    --blue: #0f4ba8;
    --blue-light: #1a5cc4;
    --yellow: #ffd84d;
    --yellow-dark: #e6c000;
    --white: #ffffff;
    --gray-50: #f8fafc;
    --gray-100: #f1f5f9;
    --gray-400: #94a3b8;
    --gray-600: #475569;
    --gray-800: #1e293b;
    --text: #0f172a;
}

html { scroll-behavior: smooth; }

body { background: var(--white); color: var(--text); }

/* ─── UTILITIES ─────────────────────────────────────────── */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.section-header {
    text-align: center;
    margin-bottom: 3.5rem;
}

.section-tag {
    display: inline-block;
    background: rgba(15, 75, 168, 0.1);
    color: var(--blue);
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    padding: 0.35rem 1rem;
    border-radius: 100px;
    margin-bottom: 1rem;
}

.section-title {
    font-size: clamp(1.8rem, 4vw, 2.6rem);
    font-weight: 800;
    color: var(--navy);
    line-height: 1.2;
    margin-bottom: 1rem;
}

.section-subtitle {
    font-size: 1.05rem;
    color: var(--gray-600);
    max-width: 560px;
    margin: 0 auto;
    line-height: 1.7;
}

/* ─── BUTTONS ────────────────────────────────────────────── */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.85rem 2rem;
    border-radius: 8px;
    font-weight: 700;
    font-size: 0.95rem;
    text-decoration: none;
    cursor: pointer;
    border: none;
    transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.btn--primary {
    background: linear-gradient(135deg, var(--yellow), var(--yellow-dark));
    color: var(--navy);
    box-shadow: 0 4px 14px rgba(255, 216, 77, 0.4);
}

.btn--primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 216, 77, 0.55);
}

.btn--outline {
    background: transparent;
    color: var(--white);
    border: 2px solid rgba(255,255,255,0.5);
}

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

.btn--call-hero {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.6rem;
    width: 100%;
    padding: 1rem 2.2rem;
    border-radius: 8px;
    font-size: 1.1rem;
    font-weight: 700;
    text-decoration: none;
    background: linear-gradient(135deg, #22c55e, #16a34a);
    color: #fff;
    box-shadow: 0 4px 20px rgba(34, 197, 94, 0.45);
    margin-bottom: 1.5rem;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.btn--call-hero:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 28px rgba(34, 197, 94, 0.6);
}

.btn--full { width: 100%; justify-content: center; }

/* ─── NAVBAR ─────────────────────────────────────────────── */
.navbar {
    background: var(--navy);
    min-height: 80px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 1rem;
    font-family: 'Inter', sans-serif;
    position: sticky;
    top: 0;
    z-index: 999;
    box-shadow: 0 2px 20px rgba(10, 42, 102, 0.4);
}

.navbar__container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 80px;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

#navbar__logo {
    font-size: 1.4rem;
    font-weight: 800;
    background: linear-gradient(135deg, #ffffff, var(--yellow));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    color: transparent;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    transition: opacity 0.2s;
}

#navbar__logo:hover { opacity: 0.85; }

#navbar__logo .fas { color: var(--yellow); -webkit-text-fill-color: var(--yellow); }

.navbar__logo-img {
    height: 44px;
    width: auto;
    border-radius: 6px;
    flex-shrink: 0;
    background: #fff;
    padding: 3px 6px;
}

.navbar__menu {
    display: flex;
    align-items: center;
    list-style: none;
    gap: 0.25rem;
}

.navbar__item {
    height: 80px;
    display: flex;
    align-items: center;
}

.navbar__links {
    color: rgba(255,255,255,0.8);
    padding: 0.5rem 1rem;
    display: flex;
    align-items: center;
    text-decoration: none;
    font-weight: 500;
    border-radius: 6px;
    transition: color 0.2s, background 0.2s;
}

.navbar__links:hover {
    color: var(--yellow);
    background: rgba(255, 216, 77, 0.08);
}

.navbar__btn {
    display: flex;
    align-items: center;
    padding-left: 0.75rem;
}

.navbar__btn .button {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.6rem 1.4rem;
    border-radius: 7px;
    background: linear-gradient(135deg, var(--yellow), var(--yellow-dark));
    color: var(--navy);
    font-weight: 700;
    text-decoration: none;
    transition: transform 0.2s, box-shadow 0.2s;
    box-shadow: 0 3px 10px rgba(255, 216, 77, 0.35);
}

.navbar__btn .button:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 16px rgba(255, 216, 77, 0.5);
}

.navbar__btn .button--instagram {
    background: linear-gradient(135deg, #833ab4, #fd1d1d, #fcb045);
    color: #fff;
    padding: 0.6rem 0.85rem;
    font-size: 1.1rem;
    box-shadow: 0 3px 10px rgba(253, 29, 29, 0.3);
}

.navbar__btn .button--instagram:hover {
    box-shadow: 0 5px 16px rgba(253, 29, 29, 0.5);
}

.navbar__btn .button--call {
    background: linear-gradient(135deg, #22c55e, #16a34a);
    color: #fff;
    box-shadow: 0 3px 10px rgba(34, 197, 94, 0.35);
}

.navbar__btn .button--call:hover {
    box-shadow: 0 5px 16px rgba(34, 197, 94, 0.5);
}

/* Mobile toggle */
.navbar__toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    padding: 4px;
}

.bar {
    width: 25px;
    height: 3px;
    background: var(--white);
    border-radius: 3px;
    transition: 0.3s;
}

.navbar__toggle.active .bar:nth-child(1) { transform: rotate(45deg) translate(5px, 6px); }
.navbar__toggle.active .bar:nth-child(2) { opacity: 0; }
.navbar__toggle.active .bar:nth-child(3) { transform: rotate(-45deg) translate(5px, -6px); }

/* ─── HERO ───────────────────────────────────────────────── */
.hero {
    position: relative;
    min-height: 90vh;
    display: flex;
    align-items: center;
    background: linear-gradient(135deg, var(--navy) 0%, #0d3a8a 50%, #0f4ba8 100%);
    overflow: hidden;
    padding: 4rem 2rem;
}

.hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse at 80% 20%, rgba(255,216,77,0.08) 0%, transparent 60%),
        radial-gradient(ellipse at 10% 80%, rgba(15,75,168,0.3) 0%, transparent 50%);
    pointer-events: none;
}

.hero::after {
    content: '';
    position: absolute;
    right: -100px;
    top: 50%;
    transform: translateY(-50%);
    width: 600px;
    height: 600px;
    border-radius: 50%;
    border: 2px solid rgba(255,216,77,0.08);
    box-shadow:
        0 0 0 60px rgba(255,216,77,0.04),
        0 0 0 120px rgba(255,216,77,0.02);
    pointer-events: none;
}

.hero__content {
    position: relative;
    z-index: 1;
    max-width: 700px;
    margin: 0 auto;
}

.hero__badge {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    background: rgba(255, 216, 77, 0.15);
    border: 1px solid rgba(255, 216, 77, 0.3);
    color: var(--yellow);
    font-size: 0.8rem;
    font-weight: 600;
    padding: 0.4rem 1rem;
    border-radius: 100px;
    margin-bottom: 1.5rem;
    letter-spacing: 0.05em;
}

.hero__title {
    font-size: clamp(2rem, 5vw, 3.5rem);
    font-weight: 800;
    color: var(--white);
    line-height: 1.15;
    margin-bottom: 1.25rem;
}

.hero__highlight {
    color: var(--yellow);
}

.hero__subtitle {
    font-size: 1.1rem;
    color: rgba(255,255,255,0.75);
    line-height: 1.75;
    margin-bottom: 2.5rem;
    max-width: 560px;
}

.hero__actions {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    margin-bottom: 3rem;
}

.hero__stats {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.hero__stat {
    display: flex;
    flex-direction: column;
}

.hero__stat strong {
    font-size: 1.8rem;
    font-weight: 800;
    color: var(--yellow);
    line-height: 1;
}

.hero__stat span {
    font-size: 0.78rem;
    color: rgba(255,255,255,0.6);
    margin-top: 0.2rem;
}

.hero__stat-divider {
    width: 1px;
    height: 40px;
    background: rgba(255,255,255,0.15);
}

/* ─── SERVICES ───────────────────────────────────────────── */
.services {
    padding: 6rem 0;
    background: var(--gray-50);
}

.services__grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.5rem;
}

.service-card {
    background: var(--white);
    border-radius: 14px;
    padding: 2rem;
    border: 1px solid #e2e8f0;
    transition: transform 0.25s ease, box-shadow 0.25s ease;
    cursor: default;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 30px rgba(10, 42, 102, 0.1);
    border-color: var(--blue-light);
}

.service-card__icon {
    width: 56px;
    height: 56px;
    border-radius: 12px;
    background: linear-gradient(135deg, var(--navy), var(--blue));
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.25rem;
    font-size: 1.4rem;
    color: var(--yellow);
}

.service-card h3 {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--navy);
    margin-bottom: 0.6rem;
}

.service-card p {
    font-size: 0.93rem;
    color: var(--gray-600);
    line-height: 1.7;
}

/* ─── WHY US ─────────────────────────────────────────────── */
.why-us {
    padding: 6rem 0;
    background: var(--white);
}

.why-us__inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.why-us__text .section-title { text-align: left; }
.why-us__text .section-subtitle { text-align: left; margin: 0 0 2rem 0; }

.why-us__list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.85rem;
    margin-bottom: 2rem;
}

.why-us__list li {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 0.97rem;
    color: var(--gray-800);
    font-weight: 500;
}

.why-us__list li .fas {
    color: #16a34a;
    font-size: 1.1rem;
    flex-shrink: 0;
}

.why-us__visual {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.why-us__badge-card {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1.5rem;
    background: var(--gray-50);
    border-radius: 12px;
    border: 1px solid #e2e8f0;
    transition: box-shadow 0.2s;
}

.why-us__badge-card:hover {
    box-shadow: 0 4px 16px rgba(10, 42, 102, 0.08);
}

.why-us__badge-card .fas {
    font-size: 1.5rem;
    color: var(--blue);
    margin-top: 0.1rem;
    flex-shrink: 0;
}

.why-us__badge-card strong {
    display: block;
    font-size: 0.97rem;
    font-weight: 700;
    color: var(--navy);
    margin-bottom: 0.25rem;
}

.why-us__badge-card span {
    font-size: 0.85rem;
    color: var(--gray-600);
    line-height: 1.5;
}

/* ─── ABOUT ──────────────────────────────────────────────── */
.about {
    padding: 6rem 0;
    background: var(--gray-50);
}

.about__inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.about__image-wrap {
    position: relative;
    border-radius: 16px;
    overflow: visible;
}

.about__image {
    width: 100%;
    border-radius: 16px;
    object-fit: contain;
    max-height: 280px;
    display: block;
    background: #fff;
    padding: 2rem;
    box-shadow: 0 12px 40px rgba(10, 42, 102, 0.18);
}

.about__image-badge {
    position: absolute;
    bottom: -18px;
    right: -18px;
    background: linear-gradient(135deg, var(--navy), var(--blue));
    color: var(--white);
    padding: 1rem 1.5rem;
    border-radius: 12px;
    display: flex;
    align-items: center;
    gap: 0.6rem;
    font-weight: 700;
    font-size: 1rem;
    box-shadow: 0 6px 20px rgba(10, 42, 102, 0.3);
}

.about__image-badge .fas { color: var(--yellow); font-size: 1.2rem; }

.about__text .section-title { text-align: left; }
.about__text .section-tag { display: inline-block; margin-bottom: 0.75rem; }

.about__text p {
    color: var(--gray-600);
    line-height: 1.8;
    margin-bottom: 1rem;
    font-size: 0.97rem;
}

/* ─── CONTACT ────────────────────────────────────────────── */
.contact {
    padding: 6rem 0;
    background: var(--white);
}

.contact__inner {
    display: grid;
    grid-template-columns: 1.4fr 1fr;
    gap: 3rem;
    align-items: start;
}

.contact__form {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.25rem;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 0.4rem;
}

.required {
    color: #e11d48;
}

.form-group label {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--gray-800);
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 0.8rem 1rem;
    border: 1.5px solid #cbd5e1;
    border-radius: 8px;
    font-size: 0.95rem;
    color: var(--text);
    background: var(--white);
    transition: border-color 0.2s, box-shadow 0.2s;
    outline: none;
    resize: vertical;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: var(--blue);
    box-shadow: 0 0 0 3px rgba(15, 75, 168, 0.1);
}

.radio-group {
    display: flex;
    gap: 1rem;
}

.radio-option {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.7rem 1.25rem;
    border: 1.5px solid #cbd5e1;
    border-radius: 8px;
    cursor: pointer;
    font-size: 0.92rem;
    font-weight: 600;
    color: var(--gray-600);
    transition: border-color 0.2s, background 0.2s, color 0.2s;
    user-select: none;
}

.radio-option input[type="radio"] { display: none; }

.radio-option:has(input:checked) {
    border-color: var(--blue);
    background: rgba(15, 75, 168, 0.07);
    color: var(--navy);
}

.radio-option .fas {
    font-size: 0.85rem;
}

.form-success {
    display: none;
    text-align: center;
    padding: 0.85rem 1rem;
    border-radius: 8px;
    background: rgba(22, 163, 74, 0.1);
    border: 1px solid rgba(22, 163, 74, 0.35);
    color: #16a34a;
    font-weight: 600;
    font-size: 0.95rem;
    margin-top: 0.5rem;
}

.char-count {
    font-size: 0.78rem;
    color: var(--gray-400);
    text-align: right;
    display: block;
    margin-top: 0.25rem;
    transition: color 0.2s;
}

.contact__info {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.contact__info-card {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1.25rem;
    background: var(--gray-50);
    border-radius: 10px;
    border: 1px solid #e2e8f0;
}

.contact__info-card .fas {
    font-size: 1.2rem;
    color: var(--blue);
    margin-top: 0.15rem;
    flex-shrink: 0;
}

.contact__info-card strong {
    display: block;
    font-size: 0.9rem;
    font-weight: 700;
    color: var(--navy);
    margin-bottom: 0.2rem;
}

.contact__info-card span {
    font-size: 0.85rem;
    color: var(--gray-600);
    display: block;
}

.contact__phone-link {
    color: var(--blue);
    text-decoration: none;
    font-weight: 600;
    transition: color 0.2s;
}

.contact__phone-link:hover {
    color: var(--navy);
    text-decoration: underline;
}

/* ─── FOOTER ─────────────────────────────────────────────── */
.footer {
    background: var(--navy);
    padding: 4rem 0 0;
}

.footer__inner {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 3rem;
    padding-bottom: 3rem;
    border-bottom: 1px solid rgba(255,255,255,0.1);
}

.footer__logo {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 1.25rem;
    font-weight: 800;
    color: var(--white);
    text-decoration: none;
    margin-bottom: 1rem;
}

.footer__logo .fas { color: var(--yellow); }

.footer__brand p {
    color: rgba(255,255,255,0.55);
    font-size: 0.88rem;
    line-height: 1.7;
    max-width: 280px;
}

.footer__links {
    display: flex;
    flex-direction: column;
    gap: 0.6rem;
}

.footer__links strong {
    color: var(--yellow);
    font-size: 0.85rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    margin-bottom: 0.4rem;
}

.footer__links a {
    color: rgba(255,255,255,0.6);
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.2s;
}

.footer__links a:hover { color: var(--white); }

.footer__social {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.footer__social strong {
    color: var(--yellow);
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.footer__instagram-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    padding: 0.75rem 1.25rem;
    border-radius: 8px;
    background: linear-gradient(135deg, #833ab4, #fd1d1d, #fcb045);
    color: #fff;
    font-weight: 700;
    font-size: 0.9rem;
    text-decoration: none;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    box-shadow: 0 4px 14px rgba(253, 29, 29, 0.3);
}

.footer__instagram-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 22px rgba(253, 29, 29, 0.5);
}

.footer__bottom {
    text-align: center;
    padding: 1.5rem 0;
    color: rgba(255,255,255,0.35);
    font-size: 0.83rem;
    display: flex;
    flex-direction: column;
    gap: 0.35rem;
}

.footer__credentials {
    color: rgba(255,255,255,0.55);
    font-weight: 600;
    letter-spacing: 0.04em;
}

/* ─── RESPONSIVE ─────────────────────────────────────────── */
@media (max-width: 900px) {
    .why-us__inner,
    .about__inner,
    .contact__inner { grid-template-columns: 1fr; }

    .why-us__text .section-title,
    .why-us__text .section-subtitle { text-align: center; margin-left: auto; margin-right: auto; }

    .why-us__text .section-subtitle { max-width: 100%; }

    .about__image-wrap { max-width: 500px; margin: 0 auto; }

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

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

@media (max-width: 768px) {
    .navbar__toggle { display: flex; }

    .navbar__menu {
        display: none;
        flex-direction: column;
        position: absolute;
        top: 80px;
        left: 0;
        right: 0;
        background: var(--navy);
        padding: 1rem;
        gap: 0.25rem;
        box-shadow: 0 10px 20px rgba(0,0,0,0.3);
    }

    .navbar__menu.active { display: flex; }

    .navbar__item { height: auto; width: 100%; }

    .navbar__links { width: 100%; padding: 0.75rem 1rem; }

    .navbar__btn { padding: 0.75rem 1rem 1rem; width: 100%; }

    .navbar__btn .button { width: 100%; justify-content: center; }

    /* Shrink logo text so it fits on small screens */
    #navbar__logo { font-size: 1rem; }
    .navbar__logo-img { width: 32px; height: 32px; }

    .hero { min-height: auto; padding: 5rem 1.5rem 4rem; }
    .hero__actions { flex-direction: column; }
    .hero__actions .btn { width: 100%; justify-content: center; }
    .hero__stats { gap: 1rem; }
    .hero__stat-divider { display: none; }

    /* Keep about badge inside the card on mobile */
    .about__image-badge {
        position: static;
        margin-top: 1rem;
        border-radius: 10px;
        justify-content: center;
    }

    .services { padding: 4rem 0; }
    .why-us,
    .about,
    .contact { padding: 4rem 0; }

    .footer__inner { grid-template-columns: 1fr; gap: 2rem; }
}

@media (max-width: 480px) {
    .container { padding: 0 1.25rem; }
    .services__grid { grid-template-columns: 1fr; }
    .section-title { font-size: 1.6rem; }
    .hero__title { font-size: 1.9rem; }
    .hero__subtitle { font-size: 0.97rem; }
    .hero__stat strong { font-size: 1.5rem; }
    .why-us__badge-card { flex-direction: column; gap: 0.5rem; }
}
