/* =======================================================
   A&S Immigration Solution - CSS profesional responsive
   ======================================================= */

:root {
    --green: #063f2d;
    --green-dark: #03281d;
    --gold: #b88922;
    --gold-soft: #fff7e8;
    --cream: #faf8f2;
    --white: #ffffff;
    --text: #1c2522;
    --muted: #66736d;
    --border: #e8e6df;
    --shadow: 0 22px 70px rgba(6, 63, 45, 0.13);
    --radius: 26px;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    font-family: Arial, Helvetica, sans-serif;
    color: var(--text);
    background: var(--white);
    line-height: 1.6;
}

a {
    color: inherit;
    text-decoration: none;
}

img {
    max-width: 100%;
}

.container {
    width: min(1180px, calc(100% - 32px));
    margin: 0 auto;
}

.topbar {
    position: sticky;
    top: 0;
    z-index: 99;
    background: rgba(255, 255, 255, 0.94);
    backdrop-filter: blur(16px);
    border-bottom: 1px solid var(--border);
    box-shadow: 0 4px 25px rgba(0,0,0,0.04);
}

.topbar-inner {
    min-height: 82px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 24px;
}

.brand {
    display: flex;
    align-items: center;
    gap: 12px;
}

.brand-monogram {
    font-family: Georgia, 'Times New Roman', serif;
    font-size: 40px;
    line-height: 1;
    color: var(--gold);
    letter-spacing: -0.08em;
    font-weight: 500;
}

.brand strong {
    display: block;
    font-family: Georgia, 'Times New Roman', serif;
    font-size: 20px;
    color: var(--green);
    line-height: 1.1;
}

.brand small {
    display: block;
    color: var(--muted);
    font-size: 12px;
    margin-top: 2px;
}

.nav {
    display: flex;
    align-items: center;
    gap: 6px;
}

.nav a {
    padding: 10px 13px;
    border-radius: 999px;
    color: #172420;
    font-weight: 700;
    font-size: 14px;
    transition: 0.2s ease;
}

.nav a:hover {
    color: var(--green);
    background: var(--gold-soft);
}

.nav-whatsapp {
    background: var(--green);
    color: white !important;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    box-shadow: 0 12px 26px rgba(6, 63, 45, .22);
}

.wa-icon {
    width: 24px;
    height: 24px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.wa-icon svg {
    width: 100%;
    height: 100%;
}

.menu-toggle {
    display: none;
    width: 44px;
    height: 44px;
    border: 0;
    border-radius: 12px;
    background: var(--green);
    color: white;
    font-size: 22px;
    cursor: pointer;
}

.hero {
    overflow: hidden;
    background:
        radial-gradient(circle at 30% 30%, rgba(184, 137, 34, 0.12), transparent 28%),
        linear-gradient(90deg, #ffffff 0%, #ffffff 46%, #f3f1eb 46%, #f3f1eb 100%);
}

.hero-grid {
    min-height: 640px;
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    align-items: center;
    gap: 34px;
}

.hero-copy {
    padding: 72px 0;
    position: relative;
    z-index: 2;
}

.mini-title {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    color: var(--gold);
    text-transform: uppercase;
    font-weight: 900;
    letter-spacing: 0.03em;
    font-size: 13px;
    margin-bottom: 22px;
}

.mini-title span {
    width: 34px;
    height: 2px;
    background: var(--gold);
}

.hero h1,
.section-heading h2,
.process-grid h2,
.location-box h2,
.contact-form h2 {
    font-family: Georgia, 'Times New Roman', serif;
    color: var(--green);
    letter-spacing: -0.045em;
}

.hero h1 {
    font-size: clamp(44px, 7vw, 78px);
    line-height: 0.95;
    margin: 0 0 18px;
}

.hero-subtitle {
    font-size: clamp(22px, 3vw, 31px);
    color: #525d58;
    line-height: 1.25;
    margin: 0 0 20px;
}

.hero-text {
    color: #4f5b56;
    font-size: 17px;
    max-width: 590px;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    margin: 30px 0 28px;
}

.btn {
    border: 1px solid transparent;
    border-radius: 8px;
    min-height: 52px;
    padding: 14px 22px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-weight: 900;
    cursor: pointer;
    transition: 0.2s ease;
}

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

.btn-primary {
    background: var(--green);
    color: white;
    box-shadow: 0 16px 30px rgba(6,63,45,.22);
}

.btn-outline {
    background: white;
    border-color: rgba(6,63,45,.35);
    color: var(--green);
}

.full {
    width: 100%;
}

.features-row {
    display: flex;
    flex-wrap: wrap;
    gap: 18px;
    margin-top: 24px;
    color: #3b4742;
    font-size: 13px;
}

.features-row span::before {
    content: "✓";
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 19px;
    height: 19px;
    border: 1px solid var(--green);
    color: var(--green);
    border-radius: 50%;
    margin-right: 8px;
    font-size: 12px;
    font-weight: 900;
}

.stats-row {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 14px;
    margin-top: 30px;
}

.stats-row div {
    background: rgba(255,255,255,.82);
    border: 1px solid var(--border);
    border-radius: 18px;
    padding: 16px;
    box-shadow: 0 12px 30px rgba(6, 63, 45, 0.07);
}

.stats-row strong {
    color: var(--green);
    display: block;
    font-size: 23px;
    line-height: 1.1;
}

.stats-row small {
    color: var(--muted);
}

.hero-photo {
    position: relative;
    height: 640px;
    margin-right: calc((100vw - min(1180px, calc(100vw - 32px))) / -2);
    overflow: hidden;
    box-shadow: var(--shadow);
}

.hero-photo::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 170px;
    z-index: 2;
    background: linear-gradient(90deg, #ffffff 0%, rgba(255,255,255,.78) 45%, rgba(255,255,255,0) 100%);
    pointer-events: none;
}

.hero-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center center;
    filter: contrast(1.03) saturate(1.03);
    transform: scale(1.02);
}

.photo-badge {
    position: absolute;
    right: 30px;
    bottom: 30px;
    z-index: 4;
    background: rgba(255,255,255,.92);
    border: 1px solid rgba(255,255,255,.8);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    padding: 18px 20px;
    box-shadow: 0 18px 48px rgba(0,0,0,.16);
}

.photo-badge span {
    color: var(--gold);
    letter-spacing: 3px;
}

.photo-badge strong {
    color: var(--green);
    font-size: 26px;
    display: block;
}

.photo-badge small {
    color: var(--muted);
}

.trust-strip {
    background: var(--green);
    color: white;
    padding: 18px 0;
}

.trust-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 12px;
    text-align: center;
    font-weight: 900;
}

.section {
    padding: 82px 0;
}

.section-heading {
    max-width: 760px;
    margin: 0 auto 42px;
    text-align: center;
}

.section-heading small,
.gold-label {
    color: var(--gold);
    text-transform: uppercase;
    font-weight: 900;
    letter-spacing: 0.05em;
}

.section-heading h2,
.process-grid h2,
.location-box h2,
.contact-form h2 {
    font-size: clamp(30px, 4vw, 48px);
    line-height: 1.05;
    margin: 10px 0 12px;
}

.section-heading p,
.process-grid p,
.location-box p {
    color: var(--muted);
    font-size: 17px;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 18px;
}

.service-card {
    background: white;
    border: 1px solid var(--border);
    border-radius: 18px;
    padding: 26px 18px;
    text-align: center;
    box-shadow: 0 10px 28px rgba(6,63,45,.06);
    transition: .2s ease;
}

.service-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow);
}

.service-icon {
    color: var(--green);
    font-size: 30px;
    height: 40px;
    margin-bottom: 12px;
}

.service-card h3 {
    color: var(--green);
    line-height: 1.2;
    font-size: 17px;
    margin: 0 0 12px;
}

.service-card p {
    color: #4f5b56;
    font-size: 14px;
}

.service-card a {
    color: var(--gold);
    font-weight: 900;
    font-size: 14px;
}

.process-section {
    background: var(--cream);
}

.process-grid {
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    gap: 46px;
    align-items: center;
}

.steps {
    display: grid;
    gap: 16px;
}

.step {
    background: white;
    border: 1px solid var(--border);
    border-radius: 22px;
    padding: 22px;
    display: grid;
    grid-template-columns: 62px 1fr;
    gap: 18px;
    box-shadow: 0 10px 30px rgba(6,63,45,.06);
}

.step span {
    background: var(--green);
    color: white;
    border-radius: 18px;
    width: 54px;
    height: 54px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 900;
}

.step h3 {
    margin: 0 0 6px;
    color: var(--green);
}

.step p {
    margin: 0;
}

.reviews-section {
    background:
        radial-gradient(circle at 20% 30%, rgba(184,137,34,.12), transparent 28%),
        #fbf7ef;
}

.reviews-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 22px;
}

.review-card {
    background: white;
    border: 1px solid var(--border);
    border-radius: 20px;
    padding: 26px;
    box-shadow: 0 10px 30px rgba(6,63,45,.06);
}

.review-card span {
    color: var(--gold);
    letter-spacing: 3px;
}

.review-card p {
    color: #3d4843;
}

.review-card strong,
.review-card small {
    display: block;
}

.review-card small {
    color: var(--muted);
}

.contact-location {
    background: white;
}

.contact-location-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 44px;
    align-items: start;
}

.info-list {
    display: grid;
    gap: 12px;
    margin: 24px 0;
}

.info-list p {
    margin: 0;
    background: #fbfaf6;
    border: 1px solid var(--border);
    border-radius: 16px;
    padding: 16px 18px;
}

.info-list a {
    color: var(--green);
    font-weight: 900;
}

.office-card {
    border-radius: 24px;
    overflow: hidden;
    border: 1px solid var(--border);
    box-shadow: var(--shadow);
    background: var(--cream);
}

.office-card img {
    display: block;
    width: 100%;
    height: 360px;
    object-fit: cover;
    object-position: center center;
}

.contact-form {
    background: white;
    border: 1px solid var(--border);
    border-radius: 26px;
    padding: 32px;
    box-shadow: var(--shadow);
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px;
}

.contact-form label {
    display: grid;
    gap: 8px;
    margin-bottom: 15px;
    color: var(--green-dark);
    font-weight: 800;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
    width: 100%;
    border: 1px solid var(--border);
    background: #fdfcf9;
    border-radius: 12px;
    padding: 14px;
    font-size: 15px;
    font-family: inherit;
    outline: none;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
    border-color: var(--gold);
    box-shadow: 0 0 0 4px rgba(184,137,34,.12);
}

.alert {
    padding: 14px 16px;
    border-radius: 14px;
    margin-bottom: 18px;
    font-weight: 800;
}

.success {
    background: #e8f7ed;
    color: #166b36;
}

.error {
    background: #fff0f0;
    color: #9d2323;
}

.whatsapp-contact-line {
    margin-top: 18px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--green);
    font-weight: 900;
}

.whatsapp-contact-line .wa-icon {
    color: #25D366;
}

.whatsapp-float {
    position: fixed;
    right: 24px;
    bottom: 24px;
    z-index: 100;
    width: 68px;
    height: 68px;
    border-radius: 50%;
    background: #25D366;
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 18px 38px rgba(37, 211, 102, 0.38);
    transition: 0.2s ease;
}

.whatsapp-float:hover {
    transform: scale(1.08);
}

.whatsapp-float svg {
    width: 38px;
    height: 38px;
}

.footer {
    background: #061d16;
    color: rgba(255,255,255,.78);
    padding: 58px 0 24px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.4fr 0.8fr 0.8fr;
    gap: 34px;
}

.footer .brand strong,
.footer h4 {
    color: white;
}

.footer .brand small {
    color: rgba(255,255,255,.7);
}

.footer a,
.footer span {
    display: block;
    margin: 8px 0;
    color: rgba(255,255,255,.76);
}

.footer p {
    max-width: 420px;
}

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,.12);
    padding-top: 20px;
    margin-top: 30px;
    font-size: 14px;
}

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

    .hero-grid {
        grid-template-columns: 1fr;
        min-height: auto;
    }

    .hero {
        background: white;
    }

    .hero-photo {
        margin-right: 0;
        height: 520px;
        border-radius: 28px;
        margin-bottom: 34px;
    }
}

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

    .nav {
        display: none;
        position: absolute;
        top: 82px;
        left: 16px;
        right: 16px;
        background: white;
        border: 1px solid var(--border);
        border-radius: 20px;
        padding: 14px;
        box-shadow: var(--shadow);
        flex-direction: column;
        align-items: stretch;
    }

    .nav.open {
        display: flex;
    }

    .nav a {
        padding: 14px 16px;
    }

    .process-grid,
    .contact-location-grid {
        grid-template-columns: 1fr;
    }

    .reviews-grid,
    .footer-grid,
    .trust-grid {
        grid-template-columns: 1fr;
    }

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

    .section {
        padding: 64px 0;
    }
}

@media (max-width: 620px) {
    .container {
        width: min(100% - 22px, 1180px);
    }

    .topbar-inner {
        min-height: 74px;
    }

    .brand-monogram {
        font-size: 34px;
    }

    .brand strong {
        font-size: 16px;
    }

    .brand small {
        font-size: 11px;
    }

    .hero-copy {
        padding: 46px 0 24px;
    }

    .hero h1 {
        font-size: 44px;
    }

    .hero-subtitle {
        font-size: 22px;
    }

    .hero-actions,
    .features-row {
        flex-direction: column;
    }

    .btn {
        width: 100%;
    }

    .hero-photo {
        height: 420px;
    }

    .hero-photo::before {
        width: 90px;
    }

    .photo-badge {
        left: 18px;
        right: 18px;
        bottom: 18px;
    }

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

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

    .contact-form {
        padding: 22px;
    }

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