:root {
      --navy: #0a2942;
      --blue: #0066b3;
      --blue-dark: #004b8f;
      --teal: #168b94;
      --ink: #1e2b37;
      --muted: #4a5f73;
      --line: #d9e2ef;
      --soft: #f6f9fc;
      --soft-blue: #eef4fb;
      --white: #ffffff;
    }

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

    html {
      scroll-behavior: smooth;
    }

    body {
      font-family: Inter, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Arial, sans-serif;
      background: #f9fafc;
      color: var(--ink);
      line-height: 1.6;
    }

    img {
      max-width: 100%;
      height: auto;
    }

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

    a:focus-visible,
    button:focus-visible,
    input:focus-visible,
    textarea:focus-visible {
      outline: 3px solid #6fb8ee;
      outline-offset: 3px;
    }

    .container {
      width: min(1180px, 90%);
      margin: 0 auto;
    }

    .section-heading {
      text-align: center;
      max-width: 780px;
      margin: 0 auto 2.25rem;
    }

    .section-heading h2 {
      color: var(--navy);
      font-size: clamp(2rem, 4vw, 2.65rem);
      line-height: 1.15;
      margin-bottom: .75rem;
    }

    .section-heading p {
      color: var(--muted);
      font-size: 1.05rem;
    }

    /* ===== NAVIGATION ===== */
    .navbar {
      position: sticky;
      top: 0;
      z-index: 1000;
      display: grid;
      grid-template-columns: auto 1fr auto;
      align-items: center;
      gap: 1.5rem;
      background: rgba(255,255,255,.97);
      padding: .8rem 5%;
      border-bottom: 1px solid #edf1f5;
      box-shadow: 0 6px 22px rgba(10,41,66,.05);
      backdrop-filter: blur(8px);
    }

    .nav-logo {
      display: flex;
      align-items: center;
      gap: .7rem;
      min-width: max-content;
    }

    .nav-logo img {
      height: 52px;
      width: auto;
    }

    .nav-logo span {
      color: #1a3b5d;
      background: #eef2f6;
      padding: .3rem .75rem;
      border-radius: 999px;
      font-size: .92rem;
      font-weight: 700;
    }

    .nav-links {
      display: flex;
      justify-content: center;
      align-items: center;
      list-style: none;
      gap: 1.4rem;
    }

    .nav-links a {
      color: #2c3e50;
      font-weight: 600;
      font-size: .96rem;
    }

    .nav-links a:hover {
      color: var(--blue);
    }

    .nav-actions {
      display: flex;
      align-items: center;
      justify-content: flex-end;
      gap: .9rem;
      min-width: max-content;
    }

    .nav-phone {
      text-align: right;
      line-height: 1.35;
    }

/* ==========================================================
   NAVIGATION DROPDOWN
========================================================== */

.nav-dropdown {
    position: relative;
}

.nav-dropdown details {
    position: relative;
}

.nav-dropdown summary {
    list-style: none;
    cursor: pointer;
    color: #2c3e50;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 6px;
    transition: color 0.2s ease;
}

.nav-dropdown summary::-webkit-details-marker {
    display: none;
}

.nav-dropdown summary:hover {
    color: #0066b3;
}

.nav-dropdown summary i {
    font-size: 0.7rem;
    transition: transform 0.2s ease;
}

.nav-dropdown details[open] summary i {
    transform: rotate(180deg);
}


/* DROPDOWN */

.dropdown-menu {
    position: absolute;
    top: calc(100% + 15px);
    left: -20px;

    width: 270px;

    background: #ffffff;

    border: 1px solid #dce6ef;
    border-radius: 18px;

    padding: 10px;

    list-style: none;

    box-shadow:
        0 18px 45px rgba(20, 50, 80, 0.15);

    z-index: 500;
}


.dropdown-menu::before {
    content: "";

    position: absolute;

    top: -8px;
    left: 32px;

    width: 15px;
    height: 15px;

    background: #ffffff;

    border-left: 1px solid #dce6ef;
    border-top: 1px solid #dce6ef;

    transform: rotate(45deg);
}


.dropdown-menu li {
    width: 100%;
}


.dropdown-menu li a {
    display: block;

    padding: 11px 14px;

    color: #2c3e50;

    border-radius: 10px;

    font-size: 0.94rem;

    transition:
        background 0.2s ease,
        color 0.2s ease;
}


.dropdown-menu li a:hover {
    background: #eef5fb;
    color: #0066b3;
}



/* ==========================================================
   MOBILE DROPDOWN
========================================================== */

@media (max-width: 900px) {

    .nav-dropdown {
        width: 100%;
    }

    .nav-dropdown details {
        width: 100%;
    }

    .nav-dropdown summary {
        width: 100%;
        justify-content: space-between;
    }

    .dropdown-menu {

        position: static;

        width: 100%;

        margin-top: 10px;

        box-shadow: none;

        border-radius: 12px;

        background: #f5f8fb;

        padding: 6px;

    }

    .dropdown-menu::before {
        display: none;
    }

    .dropdown-menu li a {
        padding: 10px 12px;
    }

}

    .phone-link {
      color: var(--ink);
      font-size: 1.08rem;
      font-weight: 800;
    }

    .directions-link {
      color: var(--blue);
      font-size: .82rem;
      font-weight: 600;
    }

    .lang-switch {
      display: flex;
      align-items: center;
      gap: .35rem;
      background: #f0f3f7;
      border-radius: 999px;
      padding: .35rem .7rem;
      font-size: .9rem;
      font-weight: 700;
    }

    .lang-switch .active {
      color: var(--blue);
    }

    .nav-toggle {
      display: none;
      border: 0;
      background: transparent;
      color: var(--navy);
      font-size: 1.85rem;
      cursor: pointer;
    }

    /* ===== HERO ===== */
    .hero {
      padding: 3.25rem 0 2.5rem;
    }

    .hero-card {
      display: grid;
      grid-template-columns: 1.25fr .75fr;
      gap: 3rem;
      align-items: center;
      padding: clamp(2rem, 5vw, 3.5rem);
      background: linear-gradient(145deg, #e7eef7, #ffffff 62%);
      border: 1px solid var(--line);
      border-radius: 38px;
      box-shadow: 0 18px 50px rgba(10,41,66,.06);
    }

    .eyebrow {
      display: inline-flex;
      align-items: center;
      gap: .5rem;
      color: var(--blue);
      font-weight: 800;
      font-size: .9rem;
      letter-spacing: .04em;
      text-transform: uppercase;
      margin-bottom: .9rem;
    }

    .hero h1 {
      color: var(--navy);
      font-size: clamp(2.3rem, 5vw, 4rem);
      line-height: 1.05;
      letter-spacing: -.03em;
      margin-bottom: 1.15rem;
    }

    .hero-copy {
      max-width: 720px;
      color: #334b60;
      font-size: 1.12rem;
      margin-bottom: 1.55rem;
    }

    .hero-points {
      display: grid;
      grid-template-columns: repeat(2, minmax(0, 1fr));
      list-style: none;
      gap: .65rem 1rem;
      margin-bottom: 1.7rem;
    }

    .hero-points li {
      display: flex;
      gap: .55rem;
      align-items: flex-start;
      color: #2e4558;
      font-weight: 600;
    }

    .hero-points i {
      color: var(--teal);
      margin-top: .25rem;
    }

    .hero-actions {
      display: flex;
      flex-wrap: wrap;
      gap: .8rem;
    }

    .btn {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      gap: .55rem;
      padding: .9rem 1.45rem;
      border-radius: 999px;
      font-weight: 800;
      transition: transform .2s ease, background .2s ease, box-shadow .2s ease;
    }

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

    .btn-primary {
      background: var(--blue);
      color: white;
      box-shadow: 0 10px 22px rgba(0,102,179,.20);
    }

    .btn-primary:hover {
      background: var(--blue-dark);
    }

    .btn-secondary {
      background: white;
      color: var(--navy);
      border: 1px solid #cbd8e6;
    }

    .hero-image img {
      width: 100%;
      max-height: 400px;
      object-fit: cover;
      border-radius: 28px;
      box-shadow: 0 20px 30px rgba(10,41,66,.15);
    }

    /* ===== SERVICES ===== */
    .services {
      background: white;
      padding: 4rem 0 4.5rem;
    }

    .services-grid {
      display: grid;
      grid-template-columns: repeat(4, minmax(0, 1fr));
      gap: 1.25rem;
    }

    .service-card {
      background: #f8fafd;
      border: 1px solid #e8eef5;
      border-radius: 24px;
      padding: 1.55rem 1.3rem;
      text-align: center;
      min-height: 245px;
      transition: transform .25s ease, box-shadow .25s ease, background .25s ease;
    }

    .service-card:hover {
      transform: translateY(-5px);
      background: white;
      box-shadow: 0 18px 32px rgba(10,41,66,.10);
    }

    .service-icon {
      width: 68px;
      height: 68px;
      display: inline-grid;
      place-items: center;
      border-radius: 50%;
      background: rgba(0,102,179,.09);
      color: var(--blue);
      font-size: 1.85rem;
      margin-bottom: 1rem;
    }

    .service-card h3 {
      color: var(--navy);
      font-size: 1.22rem;
      margin-bottom: .55rem;
    }

    .service-card p {
      color: var(--muted);
      font-size: .96rem;
    }

        .service-link {
        display: inline-block;
        margin-top: 1.2rem;

        color: #0066b3;

        font-weight: 700;
        font-size: 0.95rem;
    }

    .service-link:hover {
        color: #004b8f;
    }

    /* ===== ADSENSE ===== */
    .ad-section {
      background: #f9fafc;
      padding: 2.75rem 0;
    }

    .ad-wrap {
      max-width: 1000px;
      min-height: 120px;
      margin: 0 auto;
      padding: 1.25rem 1rem;
      background: white;
      border: 1px solid #edf1f5;
      border-radius: 18px;
    }

    .ad-label {
      color: #7a8793;
      font-size: .72rem;
      letter-spacing: .08em;
      text-align: center;
      text-transform: uppercase;
      margin-bottom: .65rem;
    }

    /* ===== ABOUT ===== */
    .about-section {
      padding: 4.5rem 0;
      background: linear-gradient(135deg, #eef4fb, #ffffff);
    }

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

    .about-copy h2 {
      color: var(--navy);
      font-size: clamp(2rem, 4vw, 2.65rem);
      margin-bottom: 1rem;
    }

    .about-copy p {
      color: #334b60;
      margin-bottom: 1rem;
      font-size: 1.04rem;
    }

    .trust-list {
      list-style: none;
      display: grid;
      grid-template-columns: repeat(2, minmax(0,1fr));
      gap: .75rem;
      margin-top: 1.35rem;
    }

    .trust-list li {
      display: flex;
      align-items: flex-start;
      gap: .55rem;
      color: #2f485c;
      font-weight: 650;
    }

    .trust-list i {
      color: var(--teal);
      margin-top: .25rem;
    }

    .about-highlight {
      background: var(--navy);
      color: white;
      border-radius: 30px;
      padding: 2rem;
      box-shadow: 0 20px 40px rgba(10,41,66,.15);
    }

    .about-highlight h3 {
      font-size: 1.55rem;
      margin-bottom: .7rem;
    }

    .about-highlight p {
      color: #d9e6f0;
      margin-bottom: 1.2rem;
    }

    .about-highlight a {
      color: white;
      font-weight: 800;
      text-decoration: underline;
      text-underline-offset: 4px;
    }

    /* ===== REVIEWS ===== */
    .reviews {
      padding: 4.5rem 0;
      background: white;
    }

    .review-grid {
      display: grid;
      grid-template-columns: repeat(3, minmax(0,1fr));
      gap: 1.25rem;
    }

    .review-card {
      border: 1px solid #e6edf4;
      border-radius: 24px;
      padding: 1.6rem;
      background: #fbfcfe;
      box-shadow: 0 8px 20px rgba(10,41,66,.04);
    }

    .stars {
      color: #f4b400;
      font-size: 1.2rem;
      letter-spacing: .08em;
      margin-bottom: .8rem;
    }

    .review-card blockquote {
      color: #334b60;
      font-style: italic;
      margin-bottom: .95rem;
    }

    .review-card cite {
      color: var(--navy);
      font-style: normal;
      font-weight: 800;
    }

    .review-cta {
      text-align: center;
      margin-top: 2rem;
    }

    .review-note {
      margin-top: .65rem;
      color: #6c7d8c;
      font-size: .82rem;
    }

    /* ===== CONTACT ===== */
    .contact-section {
      padding: 4.5rem 0;
      background: var(--soft);
    }

    .contact-grid {
      display: grid;
      grid-template-columns: .85fr 1.15fr;
      gap: 2.5rem;
      align-items: start;
    }

    .contact-info h2 {
      color: var(--navy);
      font-size: clamp(2rem, 4vw, 2.6rem);
      margin-bottom: .75rem;
    }

    .contact-info > p {
      color: var(--muted);
      margin-bottom: 1.5rem;
    }

    .contact-details {
      display: grid;
      gap: .9rem;
    }

    .contact-detail {
      display: flex;
      gap: .85rem;
      align-items: flex-start;
    }

    .contact-detail i {
      width: 42px;
      height: 42px;
      border-radius: 50%;
      background: #e8f2fb;
      color: var(--blue);
      display: grid;
      place-items: center;
      flex: 0 0 42px;
    }

    .contact-detail strong {
      display: block;
      color: var(--navy);
    }

    .contact-detail a,
    .contact-detail span {
      color: #4b6071;
    }

    .contact-form {
      background: white;
      border: 1px solid #e3eaf2;
      padding: 2rem;
      border-radius: 28px;
      box-shadow: 0 12px 30px rgba(10,41,66,.06);
    }

    .contact-form label {
      display: block;
      color: var(--navy);
      font-weight: 700;
      font-size: .9rem;
      margin: 0 0 .35rem .25rem;
    }

    .contact-form input,
    .contact-form textarea {
      width: 100%;
      padding: .9rem 1rem;
      margin-bottom: 1rem;
      border: 1px solid #ccd8e4;
      border-radius: 14px;
      background: white;
      font: inherit;
      color: var(--ink);
    }

    .contact-form textarea {
      resize: vertical;
      min-height: 130px;
    }

    .contact-form button {
      width: 100%;
      border: 0;
      cursor: pointer;
    }

/* ==========================================================
   CONTACT PAGE
========================================================== */

.contact-page-hero {
    padding: 4.5rem 5% 2.5rem;
    background:
        linear-gradient(
            135deg,
            #eef4fb 0%,
            #ffffff 100%
        );
}

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

.contact-page-heading h1 {
    font-size: clamp(2.2rem, 5vw, 3.5rem);
    margin: 1rem 0;
}

.contact-page-heading p {
    font-size: 1.1rem;
    color: #4a5f73;
    line-height: 1.7;
}



.contact-page-section {
    padding: 5rem 5%;
    background: #ffffff;
}


.contact-page-grid {
    display: grid;
    grid-template-columns:
        minmax(280px, .85fr)
        minmax(0, 1.4fr);

    gap: 3rem;
    align-items: start;
}



/* CONTACT INFORMATION */

.contact-page-info {
    background: #f4f8fc;

    border: 1px solid #dce7f2;

    border-radius: 30px;

    padding: 2.2rem;
}


.contact-page-info > h2 {
    margin-bottom: .7rem;
}


.contact-intro {
    color: #4a5f73;
    line-height: 1.7;
    margin-bottom: 2rem;
}


.contact-info-card {
    display: flex;
    gap: 1rem;
    align-items: flex-start;

    background: #ffffff;

    border: 1px solid #e1e9f1;

    border-radius: 18px;

    padding: 1.2rem;

    margin-bottom: 1rem;
}


.contact-info-icon {
    width: 45px;
    height: 45px;

    flex-shrink: 0;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 50%;

    background: #e5f1fb;
    color: #0066b3;

    font-size: 1.1rem;
}


.contact-info-icon.whatsapp {
    background: #e9f8ef;
    color: #169c4d;
}


.contact-info-card h3 {
    font-size: 1.05rem;
    margin-bottom: .35rem;
}


.contact-info-card p {
    color: #4a5f73;
    line-height: 1.5;
}


.contact-info-card a {
    color: #0066b3;
    font-weight: 600;
}


.contact-services-note {
    margin-top: 1.5rem;

    padding-top: 1.5rem;

    border-top: 1px solid #d6e2ec;
}


.contact-services-note p {
    color: #4a5f73;
    line-height: 1.7;
}



/* FORM WRAPPER */

.contact-page-form-wrap {
    background: #ffffff;

    border: 1px solid #dce7f2;

    border-radius: 30px;

    box-shadow:
        0 18px 45px
        rgba(15, 50, 80, .08);

    padding: 2.5rem;
}


.contact-page-form-wrap > p {
    color: #607388;
    margin-bottom: 1.8rem;
}



/* FORM */

.contact-page-form {
    width: 100%;
}


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


.form-group {
    margin-bottom: 1.3rem;
}


.form-group label {
    display: block;

    font-weight: 700;

    color: #25384a;

    margin-bottom: .5rem;
}


.form-group input,
.form-group select,
.form-group textarea {

    width: 100%;

    border: 1px solid #ccd9e5;

    background: #ffffff;

    color: #1e2b37;

    border-radius: 14px;

    padding: .95rem 1rem;

    font: inherit;

    transition:
        border-color .2s ease,
        box-shadow .2s ease;

}


.form-group select {
    cursor: pointer;
}


.form-group textarea {
    resize: vertical;
    min-height: 160px;
}


.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {

    outline: none;

    border-color: #0066b3;

    box-shadow:
        0 0 0 3px
        rgba(0, 102, 179, .12);

}


.form-recaptcha {
    margin: 1.3rem 0;
}


.contact-submit {
    width: 100%;
    border: none;
    cursor: pointer;
}


.form-privacy {
    margin-top: 1rem;

    color: #708091;

    font-size: .87rem;

    text-align: center;
}



/* FLASH MESSAGES */

.form-alert {
    display: flex;

    align-items: flex-start;

    gap: .8rem;

    padding: 1rem 1.2rem;

    border-radius: 14px;

    margin-bottom: 1.5rem;

    line-height: 1.5;
}


.form-alert ul {
    margin: .5rem 0 0 1.2rem;
}


.form-success {
    background: #edf9f0;
    border: 1px solid #b9e0c2;
    color: #216232;
}


.form-error {
    background: #fff2f2;
    border: 1px solid #ecc5c5;
    color: #7c2020;
}



/* HONEYPOT */

.form-honeypot {
    position: absolute !important;

    left: -9999px !important;

    width: 1px !important;
    height: 1px !important;

    overflow: hidden !important;
}



/* TABLET */

@media (max-width: 900px) {

    .contact-page-grid {
        grid-template-columns: 1fr;
    }

}



/* MOBILE */

@media (max-width: 600px) {

    .contact-page-hero {
        padding: 3rem 5% 2rem;
    }

    .contact-page-section {
        padding: 3rem 5%;
    }

    .contact-page-info,
    .contact-page-form-wrap {
        padding: 1.5rem;
        border-radius: 22px;
    }

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

    .g-recaptcha {
        transform-origin: left top;
    }


    .g-recaptcha {
      margin: .25rem 0 1rem;
      overflow-x: auto;
    }

    /* ===== MAP ===== */
    .map-section {
      background: white;
      padding: 0 0 4.5rem;
    }

    .map-frame {
      overflow: hidden;
      border-radius: 28px;
      box-shadow: 0 18px 35px rgba(10,41,66,.10);
      border: 1px solid #e6edf4;
    }

    .map-frame iframe {
      display: block;
      width: 100%;
      height: 360px;
      border: 0;
    }

    .map-actions {
      text-align: center;
      margin-top: 1.25rem;
    }

    /* ===== FOOTER ===== */
    .info-box {
      background: #162632;
      color: #eef4f8;
      padding: 3rem 0 2rem;
    }

    .footer-grid {
      display: grid;
      grid-template-columns: 1.1fr .9fr .9fr;
      gap: 2rem;
    }

    .footer-grid h3,
    .footer-grid h4 {
      color: white;
      margin-bottom: .65rem;
    }

    .footer-grid p,
    .footer-grid a {
      color: #bfd0dc;
    }

    .footer-links {
      list-style: none;
      display: grid;
      gap: .4rem;
    }

    .footer-links a:hover {
      color: white;
    }

    .social-icons {
      display: flex;
      gap: .7rem;
      margin-top: .9rem;
    }

    .social-icons a {
      width: 38px;
      height: 38px;
      display: grid;
      place-items: center;
      border-radius: 50%;
      background: rgba(255,255,255,.09);
      color: white;
    }

    .copyright {
      margin-top: 2rem;
      padding-top: 1.25rem;
      border-top: 1px solid rgba(255,255,255,.12);
      text-align: center;
      color: #9eb4c3;
      font-size: .88rem;
    }

    /* ===== FLOATING BUTTONS ===== */
    .whatsapp-float,
    .call-float {
      position: fixed;
      right: 24px;
      width: 56px;
      height: 56px;
      border-radius: 50%;
      display: grid;
      place-items: center;
      z-index: 900;
      color: white;
      box-shadow: 0 10px 24px rgba(0,0,0,.20);
      transition: transform .2s ease;
    }

    .whatsapp-float:hover,
    .call-float:hover {
      transform: scale(1.06);
    }

    .whatsapp-float {
      bottom: 24px;
      background: #25d366;
    }

    .call-float {
      bottom: 92px;
      background: var(--blue);
    }

    .whatsapp-float i,
    .call-float i {
      font-size: 1.45rem;
    }

    /* ===== COOKIE BANNER ===== */
    .cookie-banner {
      position: fixed;
      left: 0;
      right: 0;
      bottom: 0;
      z-index: 1500;
      display: none;
      align-items: center;
      justify-content: center;
      flex-wrap: wrap;
      gap: 1rem;
      padding: 1rem 5%;
      background: #1e2b37;
      color: white;
      box-shadow: 0 -8px 25px rgba(0,0,0,.16);
    }

    .cookie-banner a {
      color: #9dccff;
      text-decoration: underline;
    }

    .cookie-banner button {
      border: 0;
      border-radius: 999px;
      background: white;
      color: var(--ink);
      font-weight: 800;
      padding: .55rem 1.2rem;
      cursor: pointer;
    }

    /* ===== SUCCESS MODAL ===== */
    .popup-modal {
      position: fixed;
      inset: 0;
      z-index: 2000;
      display: none;
      align-items: center;
      justify-content: center;
      padding: 1rem;
      background: rgba(0,0,0,.46);
    }

    .popup-content {
      width: min(420px, 100%);
      background: white;
      border-radius: 28px;
      padding: 2rem;
      text-align: center;
      position: relative;
    }

    .popup-content h3 {
      color: var(--navy);
      margin-bottom: .5rem;
    }

    .close-btn {
      position: absolute;
      top: 10px;
      right: 17px;
      font-size: 1.8rem;
      cursor: pointer;
      color: #4f6373;
    }

    @media (max-width: 1050px) {
      .navbar {
        grid-template-columns: auto auto;
      }

      .nav-toggle {
        display: block;
        justify-self: end;
      }

      .nav-links,
      .nav-actions {
        display: none;
        grid-column: 1 / -1;
      }

      .nav-links.active {
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        padding: .8rem 0;
      }

      .nav-actions.active {
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding-bottom: .75rem;
      }

      .nav-phone {
        text-align: left;
      }

      .services-grid {
        grid-template-columns: repeat(2, minmax(0,1fr));
      }
    }

    @media (max-width: 800px) {
      .hero {
        padding-top: 1.8rem;
      }

      .hero-card,
      .about-grid,
      .contact-grid {
        grid-template-columns: 1fr;
      }

      .hero-card {
        gap: 2rem;
        border-radius: 28px;
      }

      .hero-image {
        order: -1;
      }

      .hero-image img {
        max-height: 280px;
      }

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

    @media (max-width: 560px) {
      .navbar {
        padding-left: 4%;
        padding-right: 4%;
      }

      .nav-logo span {
        display: none;
      }

      .hero h1 {
        font-size: 2.35rem;
      }

      .hero-points,
      .trust-list,
      .services-grid {
        grid-template-columns: 1fr;
      }

      .services-grid {
        gap: .9rem;
      }

      .service-card {
        min-height: auto;
      }

      .hero-actions .btn {
        width: 100%;
      }

      .nav-actions.active {
        flex-direction: column;
        align-items: flex-start;
      }

      .contact-form {
        padding: 1.3rem;
      }

      .call-float,
      .whatsapp-float {
        right: 16px;
      }
    }

    /* ==========================================================
   TEXAS NOTARY LEGAL NOTICE
========================================================== */

.notary-legal-notice {
    background: #fff8f8;
    border-top: 3px solid #9f1d1d;
    padding: 2.5rem 5%;
}

.notary-legal-notice h3 {
    color: #7f1d1d;
    margin-bottom: 1rem;
}

.notary-warning {
    color: #421515;
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 1rem;
}

.notary-fees {
    margin-top: 1rem;
    padding-left: 1.3rem;
    columns: 2;
    column-gap: 3rem;
}

.notary-fees li {
    margin-bottom: .7rem;
    break-inside: avoid;
}

@media (max-width: 700px) {

    .notary-fees {
        columns: 1;
    }

}