:root {
    --navy: #102a56;
    --navy-dark: #081b3a;
    --blue: #1e5fae;
    --blue-soft: #eaf2fd;
    --yellow: #f5c842;
    --yellow-dark: #dfaf20;

    --background: #ffffff;
    --background-soft: #f4f7fb;
    --surface: #ffffff;

    --text: #14213a;
    --text-soft: #667085;
    --text-muted: #8d98aa;

    --border: #dde5ef;
    --shadow: 0 25px 70px rgba(24, 55, 98, 0.13);

    --container: 1200px;

    --font-body: "DM Sans", sans-serif;
    --font-heading: "Manrope", sans-serif;
}

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

html {
    scroll-behavior: smooth;
    scroll-padding-top: 90px;
}

body {
    background: var(--background);
    color: var(--text);
    font-family: var(--font-body);
    line-height: 1.6;
    overflow-x: hidden;
}

body.menu-open {
    overflow: hidden;
}

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

button,
input,
select,
textarea {
    font: inherit;
}

button {
    cursor: pointer;
}

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

.container {
    width: min(calc(100% - 40px), var(--container));
    margin-inline: auto;
}

.section {
    padding: 105px 0;
}

/* Demo notice */

.demo-notice {
    position: relative;
    z-index: 1200;
    background: var(--navy-dark);
    color: rgba(255, 255, 255, 0.75);
}

.demo-notice-inner {
    min-height: 40px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    font-size: 11px;
}

.demo-notice a {
    color: var(--yellow);
    display: inline-flex;
    align-items: center;
    gap: 7px;
    font-weight: 700;
}

/* Header */

.site-header {
    position: absolute;
    top: 40px;
    left: 0;
    z-index: 1000;
    width: 100%;
    padding: 16px 0;
    transition:
        background 0.3s ease,
        box-shadow 0.3s ease;
}

.site-header.scrolled {
    position: fixed;
    top: 0;
    background: rgba(255, 255, 255, 0.96);
    box-shadow: 0 8px 35px rgba(20, 45, 80, 0.10);
    backdrop-filter: blur(18px);
}

.navbar {
    min-height: 68px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

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

.brand-mark {
    width: 43px;
    height: 43px;
    border-radius: 13px;
    background: var(--navy);
    color: var(--yellow);
    display: grid;
    place-items: center;
    font-family: var(--font-heading);
    font-size: 14px;
    font-weight: 800;
}

.brand-copy {
    display: flex;
    flex-direction: column;
}

.brand-copy strong {
    color: var(--navy);
    font-family: var(--font-heading);
    font-size: 17px;
    line-height: 1.1;
}

.brand-copy small {
    margin-top: 2px;
    color: var(--text-muted);
    font-size: 8px;
    font-weight: 700;
    letter-spacing: 0.16em;
    text-transform: uppercase;
}

.navigation-wrapper {
    display: flex;
    align-items: center;
    gap: 32px;
}

.navigation {
    display: flex;
    align-items: center;
    gap: 25px;
    list-style: none;
}

.navigation a {
    color: var(--text-soft);
    font-size: 12px;
    font-weight: 600;
}

.navigation a:hover,
.navigation a.active {
    color: var(--blue);
}

.mobile-menu-button {
    display: none;
    width: 42px;
    height: 42px;
    border: 1px solid var(--border);
    border-radius: 10px;
    background: #ffffff;
}

.mobile-menu-button span {
    display: block;
    width: 18px;
    height: 2px;
    margin: 4px auto;
    background: var(--navy);
}

/* Buttons */

.button {
    min-height: 52px;
    padding: 8px 9px 8px 20px;
    border: none;
    border-radius: 10px;
    background: var(--yellow);
    color: var(--navy-dark);
    display: inline-flex;
    align-items: center;
    justify-content: space-between;
    gap: 26px;
    font-size: 13px;
    font-weight: 800;
    transition:
        background 0.2s ease,
        transform 0.2s ease;
}

.button:hover {
    background: var(--yellow-dark);
    transform: translateY(-2px);
}

.button > span {
    width: 35px;
    height: 35px;
    border-radius: 8px;
    background: rgba(8, 27, 58, 0.12);
    display: grid;
    place-items: center;
}

.button-small {
    min-height: 43px;
    padding: 8px 16px;
}

.secondary-link,
.text-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--navy);
    font-size: 13px;
    font-weight: 700;
}

.secondary-link span,
.text-link span {
    color: var(--blue);
}

.outline-button {
    min-height: 50px;
    padding: 0 19px;
    border: 1px solid var(--navy);
    border-radius: 9px;
    display: inline-flex;
    align-items: center;
    gap: 20px;
    color: var(--navy);
    font-size: 12px;
    font-weight: 700;
}

/* Hero */

.hero-section {
    position: relative;
    min-height: 850px;
    padding: 185px 0 90px;
    background:
        linear-gradient(120deg, #eef5ff 0%, #ffffff 54%, #f9f2d7 100%);
    overflow: hidden;
}

.hero-decoration {
    position: absolute;
    border-radius: 50%;
    pointer-events: none;
}

.hero-decoration-one {
    top: -180px;
    right: -120px;
    width: 500px;
    height: 500px;
    background: rgba(30, 95, 174, 0.07);
}

.hero-decoration-two {
    left: -170px;
    bottom: -230px;
    width: 500px;
    height: 500px;
    border: 80px solid rgba(245, 200, 66, 0.10);
}

.hero-grid {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 1.03fr 0.97fr;
    align-items: center;
    gap: 75px;
}

.eyebrow,
.section-label {
    margin-bottom: 20px;
    color: var(--blue);
    font-size: 10px;
    font-weight: 800;
    letter-spacing: 0.13em;
    text-transform: uppercase;
}

.eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

.eyebrow span {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--yellow);
    box-shadow: 0 0 0 6px rgba(245, 200, 66, 0.18);
}

.hero-content h1 {
    max-width: 700px;
    color: var(--navy);
    font-family: var(--font-heading);
    font-size: clamp(52px, 6vw, 80px);
    line-height: 1.01;
    letter-spacing: -0.058em;
}

.hero-content h1 span {
    color: var(--blue);
}

.hero-content > p {
    max-width: 620px;
    margin-top: 25px;
    color: var(--text-soft);
    font-size: 16px;
    line-height: 1.8;
}

.hero-actions {
    margin-top: 36px;
    display: flex;
    align-items: center;
    gap: 27px;
}

.hero-statistics {
    margin-top: 48px;
    padding-top: 29px;
    border-top: 1px solid var(--border);
    display: flex;
    gap: 42px;
}

.hero-statistics div {
    display: flex;
    flex-direction: column;
}

.hero-statistics strong {
    color: var(--navy);
    font-family: var(--font-heading);
    font-size: 25px;
}

.hero-statistics span {
    color: var(--text-muted);
    font-size: 10px;
}

.hero-visual {
    position: relative;
    min-height: 550px;
}

.hero-image {
    position: absolute;
    inset: 0;
    overflow: hidden;
    border-radius: 34px;
    box-shadow: var(--shadow);
}

.hero-image img {
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s ease;
}

.hero-visual:hover .hero-image img {
    transform: scale(1.035);
}

.hero-image-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to top,
        rgba(8, 27, 58, 0.48),
        transparent 60%
    );
}

.floating-card {
    position: absolute;
    padding: 15px;
    border: 1px solid rgba(255, 255, 255, 0.85);
    border-radius: 15px;
    background: rgba(255, 255, 255, 0.94);
    box-shadow: var(--shadow);
    backdrop-filter: blur(15px);
}

.achievement-card {
    left: -45px;
    bottom: 60px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.floating-icon {
    width: 40px;
    height: 40px;
    border-radius: 12px;
    background: #fff5c9;
    color: #c89711;
    display: grid;
    place-items: center;
}

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

.floating-card strong {
    color: var(--navy);
    font-size: 12px;
}

.floating-card small {
    color: var(--text-muted);
    font-size: 9px;
}

.admission-card {
    top: 45px;
    right: -25px;
}

.admission-card strong {
    color: var(--blue);
    font-family: var(--font-heading);
    font-size: 20px;
}

.admission-card span {
    color: var(--text-muted);
    font-size: 9px;
}

/* Values */

.school-values {
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
}

.values-grid article {
    min-height: 105px;
    padding: 25px;
    border-right: 1px solid var(--border);
    display: flex;
    align-items: center;
    gap: 14px;
}

.values-grid article:last-child {
    border-right: none;
}

.values-grid span {
    color: var(--yellow-dark);
    font-size: 10px;
    font-weight: 800;
}

.values-grid strong {
    color: var(--navy);
    font-size: 13px;
}

/* Shared headings */

.section-heading {
    margin-bottom: 48px;
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 45px;
}

.section-heading h2,
.about-content h2,
.admission-content h2,
.contact-content h2 {
    max-width: 730px;
    color: var(--navy);
    font-family: var(--font-heading);
    font-size: clamp(37px, 4.5vw, 58px);
    line-height: 1.1;
    letter-spacing: -0.05em;
}

.section-heading > p {
    max-width: 430px;
    color: var(--text-soft);
}

/* About */

.about-grid {
    display: grid;
    grid-template-columns: 0.95fr 1.05fr;
    align-items: center;
    gap: 90px;
}

.about-images {
    position: relative;
    min-height: 610px;
}

.about-image-main {
    width: 80%;
    height: 535px;
    overflow: hidden;
    border-radius: 25px;
}

.about-image-main img {
    height: 100%;
    object-fit: cover;
}

.about-image-secondary {
    position: absolute;
    right: 0;
    bottom: 0;
    width: 48%;
    height: 270px;
    overflow: hidden;
    border: 9px solid #ffffff;
    border-radius: 21px;
    box-shadow: var(--shadow);
}

.about-image-secondary img {
    height: 100%;
    object-fit: cover;
}

.experience-badge {
    position: absolute;
    left: 30px;
    bottom: 30px;
    width: 145px;
    padding: 20px;
    border-radius: 17px;
    background: var(--yellow);
    color: var(--navy-dark);
}

.experience-badge strong,
.experience-badge span {
    display: block;
}

.experience-badge strong {
    font-family: var(--font-heading);
    font-size: 31px;
}

.experience-badge span {
    font-size: 10px;
}

.about-content > p {
    margin-top: 18px;
    color: var(--text-soft);
    font-size: 15px;
}

.about-points {
    margin: 35px 0;
    display: grid;
    gap: 22px;
}

.about-points > div {
    display: flex;
    gap: 14px;
}

.about-points > div > span {
    flex: 0 0 auto;
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: var(--blue-soft);
    color: var(--blue);
    display: grid;
    place-items: center;
    font-size: 11px;
    font-weight: 800;
}

.about-points strong {
    font-size: 13px;
}

.about-points p {
    margin-top: 4px;
    color: var(--text-soft);
    font-size: 11px;
}

/* Programmes */

.programmes-section {
    background: var(--background-soft);
}

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

.programme-card {
    min-height: 390px;
    padding: 31px;
    border: 1px solid var(--border);
    border-radius: 21px;
    background: #ffffff;
    display: flex;
    flex-direction: column;
    transition:
        transform 0.25s ease,
        box-shadow 0.25s ease;
}

.programme-card:hover {
    transform: translateY(-7px);
    box-shadow: 0 22px 45px rgba(30, 70, 120, 0.10);
}

.programme-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.programme-number {
    color: var(--blue);
    font-size: 11px;
    font-weight: 800;
}

.programme-ages {
    padding: 7px 10px;
    border-radius: 30px;
    background: #fff6d4;
    color: #a57b06;
    font-size: 9px;
    font-weight: 700;
}

.programme-card h3 {
    margin-top: 60px;
    color: var(--navy);
    font-family: var(--font-heading);
    font-size: 26px;
}

.programme-card > p {
    margin-top: 14px;
    color: var(--text-soft);
    font-size: 12px;
}

.programme-card > a {
    margin-top: auto;
    padding-top: 25px;
    border-top: 1px solid var(--border);
    display: flex;
    align-items: center;
    justify-content: space-between;
    color: var(--blue);
    font-size: 11px;
    font-weight: 700;
}

/* Campus */

.campus-section {
    position: relative;
    min-height: 730px;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.campus-background,
.campus-overlay {
    position: absolute;
    inset: 0;
}

.campus-background img {
    height: 100%;
    object-fit: cover;
}

.campus-overlay {
    background:
        linear-gradient(
            90deg,
            rgba(8, 27, 58, 0.96),
            rgba(8, 27, 58, 0.70),
            rgba(8, 27, 58, 0.25)
        );
}

.campus-content {
    position: relative;
    z-index: 2;
    max-width: 850px;
    color: #ffffff;
}

.light-label {
    color: var(--yellow);
}

.campus-content h2 {
    max-width: 800px;
    font-family: var(--font-heading);
    font-size: clamp(45px, 5.5vw, 70px);
    line-height: 1.05;
    letter-spacing: -0.055em;
}

.campus-content > p {
    max-width: 610px;
    margin-top: 21px;
    color: rgba(255, 255, 255, 0.68);
}

.campus-features {
    margin-top: 60px;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.campus-features article {
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.20);
}

.campus-features span {
    color: var(--yellow);
    font-size: 10px;
}

.campus-features h3 {
    margin: 20px 0 8px;
    font-family: var(--font-heading);
    font-size: 18px;
}

.campus-features p {
    color: rgba(255, 255, 255, 0.58);
    font-size: 10px;
}

/* Teachers */

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

.teacher-card {
    overflow: hidden;
    border: 1px solid var(--border);
    border-radius: 21px;
    background: #ffffff;
}

.teacher-photo {
    overflow: hidden;
    height: 380px;
}

.teacher-photo img {
    height: 100%;
    object-fit: cover;
    object-position: center top;
    transition: transform 0.65s ease;
}

.teacher-card:hover .teacher-photo img {
    transform: scale(1.045);
}

.teacher-details {
    padding: 23px;
}

.teacher-details span {
    color: var(--blue);
    font-size: 9px;
    font-weight: 800;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.teacher-details h3 {
    margin-top: 5px;
    color: var(--navy);
    font-family: var(--font-heading);
    font-size: 19px;
}

/* News */

.news-section {
    background: var(--background-soft);
}

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

.news-card {
    overflow: hidden;
    border: 1px solid var(--border);
    border-radius: 20px;
    background: #ffffff;
}

.news-image {
    height: 250px;
    overflow: hidden;
}

.news-image img {
    height: 100%;
    object-fit: cover;
    transition: transform 0.65s ease;
}

.news-card:hover .news-image img {
    transform: scale(1.05);
}

.news-content {
    padding: 24px;
}

.news-content > span {
    color: var(--blue);
    font-size: 9px;
    font-weight: 800;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.news-content h3 {
    min-height: 60px;
    margin-top: 8px;
    color: var(--navy);
    font-family: var(--font-heading);
    font-size: 18px;
    line-height: 1.3;
}

.news-content a {
    margin-top: 20px;
    padding-top: 18px;
    border-top: 1px solid var(--border);
    display: flex;
    align-items: center;
    justify-content: space-between;
    color: var(--blue);
    font-size: 10px;
    font-weight: 700;
}

/* Admissions */

.admission-section {
    background: #ffffff;
}

.admission-card {
    padding: 65px;
    border-radius: 30px;
    background:
        radial-gradient(
            circle at 0% 100%,
            rgba(245, 200, 66, 0.12),
            transparent 35%
        ),
        var(--navy);
    color: #ffffff;
    display: grid;
    grid-template-columns: 0.85fr 1.15fr;
    gap: 70px;
}

.admission-content h2 {
    color: #ffffff;
}

.admission-content > p {
    margin-top: 20px;
    color: rgba(255, 255, 255, 0.67);
}

.admission-contact {
    margin-top: 42px;
    display: grid;
    gap: 17px;
}

.admission-contact div {
    display: flex;
    flex-direction: column;
}

.admission-contact span {
    color: var(--yellow);
    font-size: 9px;
    text-transform: uppercase;
}

.admission-contact strong {
    margin-top: 4px;
    font-size: 12px;
}

.admission-form {
    padding: 31px;
    border-radius: 20px;
    background: #ffffff;
    color: var(--text);
}

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

.form-group {
    margin-bottom: 17px;
}

.form-group label {
    display: block;
    margin-bottom: 7px;
    font-size: 10px;
    font-weight: 700;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    border: 1px solid var(--border);
    border-radius: 9px;
    outline: none;
    background: #f8fafc;
    color: var(--text);
}

.form-group input,
.form-group select {
    height: 48px;
    padding: 0 13px;
}

.form-group textarea {
    min-height: 105px;
    padding: 12px 13px;
    resize: vertical;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: var(--blue);
    box-shadow: 0 0 0 4px rgba(30, 95, 174, 0.10);
}

.form-button {
    width: 100%;
}

.form-message {
    min-height: 18px;
    margin-top: 12px;
    color: var(--blue);
    font-size: 10px;
    text-align: center;
}

/* Contact */

.contact-section {
    background: var(--background-soft);
}

.contact-grid {
    display: grid;
    grid-template-columns: 0.8fr 1.2fr;
    align-items: center;
    gap: 70px;
}

.contact-details {
    margin: 38px 0;
    display: grid;
    gap: 17px;
}

.contact-details div {
    padding-bottom: 14px;
    border-bottom: 1px solid var(--border);
    display: flex;
    flex-direction: column;
}

.contact-details span {
    color: var(--blue);
    font-size: 9px;
    font-weight: 700;
    text-transform: uppercase;
}

.contact-details strong {
    margin-top: 4px;
    font-size: 13px;
}

.contact-image img {
    height: 560px;
    border-radius: 25px;
    object-fit: cover;
}

/* Footer */

.site-footer {
    padding: 75px 0 24px;
    background: var(--navy-dark);
    color: #ffffff;
}

.site-footer .brand-copy strong {
    color: #ffffff;
}

.footer-grid {
    padding-bottom: 55px;
    display: grid;
    grid-template-columns: 1.7fr repeat(3, 1fr);
    gap: 45px;
}

.footer-about p {
    max-width: 370px;
    margin-top: 22px;
    color: rgba(255, 255, 255, 0.56);
    font-size: 11px;
}

.footer-column {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.footer-column h3 {
    margin-bottom: 8px;
    color: var(--yellow);
    font-size: 12px;
}

.footer-column a,
.footer-column p {
    color: rgba(255, 255, 255, 0.58);
    font-size: 10px;
}

.footer-column a:hover {
    color: #ffffff;
}

.footer-bottom {
    padding-top: 22px;
    border-top: 1px solid rgba(255, 255, 255, 0.11);
    display: flex;
    justify-content: space-between;
    gap: 20px;
    color: rgba(255, 255, 255, 0.46);
    font-size: 9px;
}

/* Floating WhatsApp */

.floating-whatsapp {
    position: fixed;
    right: 22px;
    bottom: 22px;
    z-index: 900;
    min-height: 48px;
    padding: 7px 16px 7px 7px;
    border-radius: 50px;
    background: #25d366;
    color: #07190e;
    box-shadow: 0 16px 38px rgba(17, 44, 80, 0.25);
    display: flex;
    align-items: center;
    gap: 9px;
    font-size: 10px;
    font-weight: 800;
}

.floating-whatsapp span {
    width: 35px;
    height: 35px;
    border-radius: 50%;
    background: rgba(0, 0, 0, 0.12);
    display: grid;
    place-items: center;
}

/* Responsive */

@media (max-width: 980px) {
    .mobile-menu-button {
        display: block;
    }

    .navigation-wrapper {
        position: fixed;
        top: 92px;
        left: 20px;
        right: 20px;
        padding: 22px;
        border: 1px solid var(--border);
        border-radius: 15px;
        background: rgba(255, 255, 255, 0.99);
        box-shadow: var(--shadow);
        display: none;
        flex-direction: column;
        align-items: stretch;
    }

    .navigation-wrapper.open {
        display: flex;
    }

    .navigation {
        flex-direction: column;
        align-items: stretch;
        gap: 3px;
    }

    .navigation a {
        display: block;
        padding: 11px;
    }

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

    .hero-visual {
        min-height: 600px;
    }

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

    .programme-grid,
    .teacher-grid,
    .news-grid {
        grid-template-columns: 1fr 1fr;
    }

    .programme-card:last-child,
    .teacher-card:last-child,
    .news-card:last-child {
        grid-column: 1 / 3;
    }

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

    .footer-column:last-child {
        grid-column: 2 / 4;
    }
}

@media (max-width: 680px) {
    .container {
        width: min(calc(100% - 28px), var(--container));
    }

    .section {
        padding: 75px 0;
    }

    .demo-notice-inner {
        min-height: 50px;
    }

    .demo-notice p,
    .demo-notice a {
        font-size: 8px;
    }

    .site-header {
        top: 50px;
    }

    .site-header.scrolled {
        top: 0;
    }

    .hero-section {
        padding: 160px 0 75px;
    }

    .hero-content h1 {
        font-size: 46px;
    }

    .hero-content > p {
        font-size: 14px;
    }

    .hero-actions {
        align-items: stretch;
        flex-direction: column;
    }

    .button {
        width: 100%;
    }

    .hero-statistics {
        gap: 20px;
        flex-wrap: wrap;
    }

    .hero-visual {
        min-height: 470px;
    }

    .hero-image {
        border-radius: 23px;
    }

    .achievement-card {
        left: 5px;
        bottom: 20px;
    }

    .admission-card {
        top: 20px;
        right: 5px;
    }

    .values-grid,
    .programme-grid,
    .teacher-grid,
    .news-grid,
    .campus-features {
        grid-template-columns: 1fr;
    }

    .values-grid article {
        border-right: none;
        border-bottom: 1px solid var(--border);
    }

    .section-heading {
        align-items: flex-start;
        flex-direction: column;
    }

    .about-images {
        min-height: 510px;
    }

    .about-image-main {
        width: 100%;
        height: 440px;
    }

    .about-image-secondary {
        width: 48%;
        height: 210px;
    }

    .programme-card:last-child,
    .teacher-card:last-child,
    .news-card:last-child {
        grid-column: auto;
    }

    .teacher-photo {
        height: 330px;
    }

    .admission-card {
        padding: 35px 21px;
    }

    .admission-form {
        padding: 24px 18px;
    }

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

    .contact-image img {
        height: 420px;
    }

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

    .footer-about {
        grid-column: 1 / 3;
    }

    .footer-column:last-child {
        grid-column: 1 / 3;
    }

    .footer-bottom {
        align-items: flex-start;
        flex-direction: column;
    }

    .floating-whatsapp {
        right: 14px;
        bottom: 14px;
    }
}
