/* ==============================
   المتغيرات الأساسية
================================ */

:root {
    --primary: #075aa8;
    --primary-dark: #033f7b;
    --primary-light: #138bd1;
    --green: #8cc31f;
    --green-dark: #689b0c;
    --whatsapp: #25d366;
    --whatsapp-dark: #159447;
    --dark: #102133;
    --text: #4d5d6c;
    --light: #f5f9fc;
    --white: #ffffff;
    --border: #dfe9f1;
    --shadow: 0 15px 40px rgba(5, 64, 119, 0.12);
    --transition: 0.3s ease;
}


/* ==============================
   إعدادات عامة
================================ */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: 95px;
}

body {
    font-family: "Cairo", sans-serif;
    background: var(--white);
    color: var(--dark);
    line-height: 1.8;
    overflow-x: hidden;
}

body.no-scroll {
    overflow: hidden;
}

img {
    display: block;
    max-width: 100%;
}

a {
    text-decoration: none;
    color: inherit;
}

button,
input,
select,
textarea {
    font-family: inherit;
}

button {
    cursor: pointer;
}

.container {
    width: min(1180px, calc(100% - 40px));
    margin: 0 auto;
}

.section {
    padding: 100px 0;
}

.section-label {
    display: inline-block;
    color: var(--green-dark);
    background: rgba(140, 195, 31, 0.12);
    border: 1px solid rgba(140, 195, 31, 0.25);
    padding: 6px 18px;
    border-radius: 30px;
    font-size: 14px;
    font-weight: 800;
    margin-bottom: 15px;
}

.section-heading {
    max-width: 700px;
    margin: 0 auto 50px;
    text-align: center;
}

.section-heading h2,
.about-content h2,
.contact-content h2 {
    font-size: clamp(28px, 4vw, 43px);
    line-height: 1.35;
    margin-bottom: 18px;
    color: var(--dark);
}

.section-heading p,
.about-content p,
.contact-content > p {
    color: var(--text);
    font-size: 16px;
}


/* ==============================
   الأزرار
================================ */

.button {
    min-height: 52px;
    padding: 12px 25px;
    border-radius: 10px;
    border: 2px solid transparent;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 9px;
    font-size: 15px;
    font-weight: 800;
    transition: var(--transition);
}

.button:hover {
    transform: translateY(-3px);
}

.button-primary {
    color: var(--white);
    background: linear-gradient(
        135deg,
        var(--primary),
        var(--primary-light)
    );
    box-shadow: 0 10px 25px rgba(7, 90, 168, 0.25);
}

.button-primary:hover {
    box-shadow: 0 15px 30px rgba(7, 90, 168, 0.35);
}

.button-whatsapp {
    color: var(--white);
    background: linear-gradient(
        135deg,
        var(--whatsapp-dark),
        var(--whatsapp)
    );
    box-shadow: 0 10px 25px rgba(37, 211, 102, 0.25);
}

.button-light {
    background: var(--white);
    color: var(--primary-dark);
}


/* ==============================
   الهيدر
================================ */

.header {
    position: fixed;
    top: 0;
    right: 0;
    width: 100%;
    height: 90px;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.96);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(7, 90, 168, 0.09);
    transition: var(--transition);
}

.header.scrolled {
    height: 78px;
    box-shadow: 0 10px 30px rgba(4, 57, 105, 0.1);
}

.header-container {
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
}

.logo img {
    width: 105px;
    max-height: 75px;
    object-fit: contain;
}

.navbar {
    display: flex;
    align-items: center;
    gap: 7px;
}

.nav-link {
    padding: 10px 14px;
    font-size: 14px;
    font-weight: 700;
    color: var(--dark);
    transition: var(--transition);
    position: relative;
}

.nav-link::after {
    content: "";
    position: absolute;
    right: 50%;
    bottom: 2px;
    width: 0;
    height: 3px;
    transform: translateX(50%);
    border-radius: 10px;
    background: var(--green);
    transition: var(--transition);
}

.nav-link:hover,
.nav-link.active {
    color: var(--primary);
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 45%;
}

.header-call {
    background: var(--primary);
    color: var(--white);
    padding: 11px 18px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: 800;
    direction: ltr;
    transition: var(--transition);
}

.header-call:hover {
    background: var(--primary-dark);
}

.menu-button {
    display: none;
    width: 46px;
    height: 46px;
    border: none;
    border-radius: 9px;
    background: var(--primary);
    color: var(--white);
    font-size: 22px;
}


/* ==============================
   الهيرو
================================ */

.hero {
    min-height: 760px;
    padding-top: 90px;
    position: relative;
    display: flex;
    align-items: center;
    background-image: url("images/الهيرو.jpg");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(
            90deg,
            rgba(0, 39, 77, 0.2) 0%,
            rgba(0, 40, 82, 0.76) 55%,
            rgba(0, 32, 67, 0.92) 100%
        );
}

.hero-container {
    position: relative;
    z-index: 2;
}

.hero-content {
    max-width: 660px;
    color: var(--white);
}

.hero-badge {
    display: inline-block;
    background: rgba(140, 195, 31, 0.17);
    color: #d6ff77;
    border: 1px solid rgba(191, 241, 80, 0.4);
    padding: 7px 18px;
    border-radius: 30px;
    margin-bottom: 20px;
    font-weight: 700;
}

.hero-content h1 {
    font-size: clamp(38px, 6vw, 66px);
    line-height: 1.25;
    margin-bottom: 20px;
}

.hero-content h1 span {
    color: #b7e84a;
}

.hero-content > p {
    max-width: 600px;
    color: rgba(255, 255, 255, 0.9);
    font-size: 18px;
    margin-bottom: 25px;
}

.hero-features {
    display: flex;
    flex-wrap: wrap;
    gap: 12px 22px;
    margin-bottom: 32px;
}

.hero-features div {
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: 700;
}

.hero-features i {
    color: var(--green);
}

.hero-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}


/* ==============================
   المميزات
================================ */

.features-section {
    position: relative;
    z-index: 5;
    margin-top: -55px;
}

.features-grid {
    background: var(--white);
    border-radius: 18px;
    box-shadow: var(--shadow);
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    overflow: hidden;
}

.feature-box {
    padding: 27px 22px;
    display: flex;
    align-items: center;
    gap: 16px;
    border-left: 1px solid var(--border);
}

.feature-box:last-child {
    border-left: none;
}

.feature-icon {
    flex: 0 0 54px;
    width: 54px;
    height: 54px;
    border-radius: 14px;
    display: grid;
    place-items: center;
    background: rgba(7, 90, 168, 0.1);
    color: var(--primary);
    font-size: 24px;
}

.feature-box h3 {
    font-size: 17px;
    margin-bottom: 3px;
}

.feature-box p {
    font-size: 13px;
    color: var(--text);
    line-height: 1.6;
}


/* ==============================
   من نحن
================================ */

.about-section {
    background:
        radial-gradient(
            circle at 10% 20%,
            rgba(140, 195, 31, 0.08),
            transparent 30%
        ),
        var(--white);
}

.about-grid {
    display: grid;
    grid-template-columns: 0.95fr 1.05fr;
    align-items: center;
    gap: 70px;
}

/* الصورة تظهر ناحية الشمال بسبب اتجاه Grid */
.about-image {
    position: relative;
    order: 2;
}

.about-content {
    order: 1;
}

.about-image > img {
    width: 100%;
    aspect-ratio: 1 / 1;
    object-fit: cover;
    border-radius: 25px;
    box-shadow: var(--shadow);
}

.about-image::before {
    content: "";
    position: absolute;
    width: 65%;
    height: 65%;
    left: -25px;
    bottom: -25px;
    background: linear-gradient(
        135deg,
        var(--primary),
        var(--green)
    );
    border-radius: 25px;
    z-index: -1;
}

.about-experience {
    position: absolute;
    right: -20px;
    bottom: 35px;
    min-width: 170px;
    padding: 18px 22px;
    background: var(--white);
    border-radius: 14px;
    box-shadow: var(--shadow);
    text-align: center;
}

.about-experience strong {
    display: block;
    color: var(--primary);
    font-size: 25px;
}

.about-experience span {
    color: var(--text);
    font-size: 13px;
}

.about-content p {
    margin-bottom: 14px;
}

.about-points {
    margin: 27px 0 30px;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
}

.about-points div {
    display: flex;
    align-items: center;
    gap: 9px;
    color: var(--dark);
    font-weight: 700;
}

.about-points i {
    width: 25px;
    height: 25px;
    display: grid;
    place-items: center;
    border-radius: 50%;
    background: rgba(140, 195, 31, 0.15);
    color: var(--green-dark);
}


/* ==============================
   الخدمات
================================ */

.services-section {
    background: var(--light);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
}

.service-card {
    background: var(--white);
    border: 1px solid rgba(7, 90, 168, 0.08);
    border-radius: 18px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(3, 63, 123, 0.07);
    transition: var(--transition);
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow);
}

.service-image {
    height: 230px;
    overflow: hidden;
    position: relative;
}

.service-image::after {
    content: "";
    position: absolute;
    inset: auto 0 0;
    height: 50%;
    background: linear-gradient(
        transparent,
        rgba(0, 40, 80, 0.35)
    );
}

.service-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: 0.6s ease;
}

.service-card:hover .service-image img {
    transform: scale(1.08);
}

.service-content {
    padding: 25px;
}

.service-content h3 {
    color: var(--primary-dark);
    font-size: 20px;
    margin-bottom: 10px;
}

.service-content p {
    color: var(--text);
    font-size: 14px;
    min-height: 78px;
}

.service-buttons {
    margin-top: 20px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 9px;
}

.service-buttons .button {
    min-height: 45px;
    padding: 8px 10px;
    font-size: 13px;
}


/* ==============================
   دعوة التواصل
================================ */

.request-section {
    padding: 70px 0;
    background:
        linear-gradient(
            120deg,
            rgba(3, 63, 123, 0.96),
            rgba(7, 115, 180, 0.92)
        ),
        url("images/الهيرو.jpg") center / cover;
}

.request-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 40px;
}

.request-content {
    color: var(--white);
}

.request-content span {
    color: #d3f574;
    font-weight: 800;
}

.request-content h2 {
    font-size: clamp(28px, 4vw, 42px);
    margin: 5px 0 8px;
}

.request-content p {
    color: rgba(255, 255, 255, 0.85);
}

.request-buttons {
    flex: 0 0 auto;
    display: flex;
    gap: 12px;
}


/* ==============================
   المعرض
================================ */

.gallery-section {
    background: var(--white);
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-auto-rows: 235px;
    gap: 13px;
}

.gallery-item {
    padding: 0;
    border: none;
    border-radius: 14px;
    overflow: hidden;
    background: #dfe8ef;
    position: relative;
    display: none;
}

.gallery-item.visible {
    display: block;
}

.gallery-item::after {
    content: "\f00e";
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    position: absolute;
    inset: 0;
    display: grid;
    place-items: center;
    color: var(--white);
    font-size: 30px;
    background: rgba(3, 63, 123, 0.55);
    opacity: 0;
    transition: var(--transition);
}

.gallery-item:hover::after {
    opacity: 1;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: 0.5s ease;
}

.gallery-item:hover img {
    transform: scale(1.08);
}

.gallery-item:nth-child(1),
.gallery-item:nth-child(8),
.gallery-item:nth-child(15) {
    grid-column: span 2;
}

.gallery-more-wrap {
    text-align: center;
    margin-top: 35px;
}


/* ==============================
   نافذة الصور
================================ */

.lightbox {
    position: fixed;
    inset: 0;
    z-index: 5000;
    background: rgba(0, 15, 30, 0.94);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 30px;
    visibility: hidden;
    opacity: 0;
    transition: var(--transition);
}

.lightbox.open {
    visibility: visible;
    opacity: 1;
}

.lightbox-content {
    width: min(1050px, 82vw);
    height: min(780px, 82vh);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.lightbox-content img {
    max-width: 100%;
    max-height: calc(100% - 40px);
    object-fit: contain;
    border-radius: 10px;
}

.lightbox-content span {
    color: var(--white);
    margin-top: 12px;
    direction: ltr;
}

.lightbox-close,
.lightbox-arrow {
    position: absolute;
    border: none;
    display: grid;
    place-items: center;
    color: var(--white);
    background: rgba(255, 255, 255, 0.13);
    transition: var(--transition);
}

.lightbox-close:hover,
.lightbox-arrow:hover {
    background: var(--primary);
}

.lightbox-close {
    top: 25px;
    left: 25px;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    font-size: 25px;
}

.lightbox-arrow {
    top: 50%;
    transform: translateY(-50%);
    width: 55px;
    height: 70px;
    border-radius: 12px;
    font-size: 24px;
}

.lightbox-next {
    right: 25px;
}

.lightbox-prev {
    left: 25px;
}


/* ==============================
   التواصل
================================ */

.contact-section {
    background:
        linear-gradient(
            135deg,
            rgba(7, 90, 168, 0.04),
            rgba(140, 195, 31, 0.06)
        );
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 0.9fr;
    gap: 70px;
    align-items: center;
}

.contact-list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
    margin-top: 32px;
}

.contact-item {
    padding: 16px;
    border-radius: 13px;
    background: var(--white);
    border: 1px solid var(--border);
    display: flex;
    align-items: center;
    gap: 13px;
    transition: var(--transition);
}

a.contact-item:hover {
    border-color: var(--primary);
    transform: translateY(-3px);
}

.contact-icon {
    flex: 0 0 48px;
    width: 48px;
    height: 48px;
    border-radius: 12px;
    display: grid;
    place-items: center;
    background: rgba(7, 90, 168, 0.1);
    color: var(--primary);
    font-size: 21px;
}

.whatsapp-icon {
    color: var(--whatsapp-dark);
    background: rgba(37, 211, 102, 0.12);
}

.contact-item small {
    display: block;
    color: var(--text);
    font-size: 12px;
}

.contact-item strong {
    display: block;
    color: var(--dark);
    font-size: 14px;
}

.contact-form {
    background: var(--white);
    border-radius: 20px;
    box-shadow: var(--shadow);
    padding: 35px;
}

.contact-form h3 {
    font-size: 25px;
    margin-bottom: 25px;
    color: var(--primary-dark);
}

.form-group {
    margin-bottom: 17px;
}

.form-group label {
    display: block;
    margin-bottom: 7px;
    color: var(--dark);
    font-size: 14px;
    font-weight: 700;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    border: 1px solid var(--border);
    border-radius: 10px;
    padding: 13px 14px;
    outline: none;
    font-size: 14px;
    background: #fbfdff;
    transition: var(--transition);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: var(--primary);
    box-shadow: 0 0 0 4px rgba(7, 90, 168, 0.08);
}

.form-group textarea {
    resize: vertical;
}

.form-submit {
    width: 100%;
    border: none;
}


/* ==============================
   الخريطة
================================ */

.map-section {
    width: 100%;
    height: 450px;
}

.map-section iframe {
    display: block;
    width: 100%;
    height: 100%;
}


/* ==============================
   الفوتر
================================ */

.footer {
    background: #071b2d;
    color: var(--white);
}

.footer-grid {
    padding: 70px 0 50px;
    display: grid;
    grid-template-columns: 1.4fr 0.8fr 1fr 1.2fr;
    gap: 45px;
}

.footer-logo {
    width: 145px;
    background: var(--white);
    padding: 8px;
    border-radius: 14px;
    margin-bottom: 18px;
}

.footer-about p,
.footer-column p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 14px;
}

.footer-column h3 {
    position: relative;
    font-size: 18px;
    margin-bottom: 22px;
    padding-bottom: 10px;
}

.footer-column h3::after {
    content: "";
    position: absolute;
    right: 0;
    bottom: 0;
    width: 40px;
    height: 3px;
    border-radius: 10px;
    background: var(--green);
}

.footer-column a {
    display: block;
    color: rgba(255, 255, 255, 0.72);
    margin-bottom: 10px;
    font-size: 14px;
    transition: var(--transition);
}

.footer-column a:hover {
    color: var(--green);
    transform: translateX(-4px);
}

.footer-column i {
    color: var(--green);
    margin-left: 7px;
}

.social-links {
    display: flex;
    gap: 10px;
    margin-top: 20px;
}

.social-links a {
    width: 42px;
    height: 42px;
    border-radius: 10px;
    display: grid;
    place-items: center;
    background: rgba(255, 255, 255, 0.1);
    color: var(--white);
    transition: var(--transition);
}

.social-links a:hover {
    background: var(--green);
    color: var(--dark);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding: 20px 0;
    text-align: center;
    color: rgba(255, 255, 255, 0.65);
    font-size: 13px;
}


/* ==============================
   الأزرار العائمة
================================ */

.floating-button {
    position: fixed;
    z-index: 1200;
    left: 22px;
    width: 57px;
    height: 57px;
    border-radius: 50%;
    display: grid;
    place-items: center;
    color: var(--white);
    font-size: 23px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.25);
    transition: var(--transition);
}

.floating-button:hover {
    transform: scale(1.08);
}

.floating-whatsapp {
    bottom: 22px;
    background: var(--whatsapp);
}

.floating-call {
    bottom: 90px;
    background: var(--primary);
}


/* ==============================
   التصميم المتجاوب
================================ */

@media (max-width: 1050px) {

    .header-call {
        display: none;
    }

    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .feature-box:nth-child(2) {
        border-left: none;
    }

    .feature-box:nth-child(1),
    .feature-box:nth-child(2) {
        border-bottom: 1px solid var(--border);
    }

    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .gallery-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}


@media (max-width: 800px) {

    html {
        scroll-padding-top: 75px;
    }

    .header,
    .header.scrolled {
        height: 74px;
    }

    .logo img {
        width: 85px;
        max-height: 64px;
    }

    .menu-button {
        display: grid;
        place-items: center;
    }

    .navbar {
        position: fixed;
        top: 74px;
        right: -100%;
        width: 100%;
        height: calc(100vh - 74px);
        padding: 35px 20px;
        background: var(--white);
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 5px;
        transition: 0.4s ease;
    }

    .navbar.open {
        right: 0;
    }

    .nav-link {
        width: 100%;
        padding: 14px;
        text-align: center;
        border-bottom: 1px solid var(--border);
        font-size: 16px;
    }

    .hero {
        min-height: 690px;
        padding-top: 74px;
        background-position: center;
    }

    .hero-overlay {
        background: rgba(0, 36, 73, 0.78);
    }

    /* أهم شرط: النص كله في المنتصف على الموبايل */
    .hero-content,
    .about-content,
    .contact-content,
    .request-content,
    .footer-about,
    .footer-column {
        text-align: center;
    }

    .hero-content {
        max-width: 100%;
    }

    .hero-content > p {
        margin-right: auto;
        margin-left: auto;
    }

    .hero-features,
    .hero-buttons,
    .request-buttons,
    .social-links {
        justify-content: center;
    }

    .about-grid,
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 45px;
    }

    .about-image,
    .about-content {
        order: initial;
    }

    .about-image {
        max-width: 600px;
        width: 100%;
        margin: 0 auto;
    }

    .about-points {
        max-width: 550px;
        margin-right: auto;
        margin-left: auto;
    }

    .about-points div {
        justify-content: center;
    }

    .request-container {
        flex-direction: column;
        text-align: center;
    }

    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
        grid-auto-rows: 210px;
    }

    .gallery-item:nth-child(1),
    .gallery-item:nth-child(8),
    .gallery-item:nth-child(15) {
        grid-column: auto;
    }

    .contact-list {
        max-width: 650px;
        margin-right: auto;
        margin-left: auto;
    }

    .contact-item {
        text-align: right;
    }

    .footer-logo {
        margin-right: auto;
        margin-left: auto;
    }

    .footer-column h3::after {
        right: 50%;
        transform: translateX(50%);
    }
}


@media (max-width: 600px) {

    .container {
        width: min(100% - 28px, 1180px);
    }

    .section {
        padding: 75px 0;
    }

    .hero {
        min-height: 650px;
    }

    .hero-content h1 {
        font-size: 37px;
    }

    .hero-content > p {
        font-size: 15px;
    }

    .hero-features {
        flex-direction: column;
        align-items: center;
    }

    .hero-buttons {
        flex-direction: column;
        align-items: stretch;
    }

    .features-section {
        margin-top: -30px;
    }

    .features-grid {
        grid-template-columns: 1fr;
    }

    .feature-box {
        border-left: none;
        border-bottom: 1px solid var(--border);
        justify-content: center;
        text-align: center;
    }

    .feature-box:last-child {
        border-bottom: none;
    }

    .services-grid {
        grid-template-columns: 1fr;
    }

    .service-content {
        text-align: center;
    }

    .service-content p {
        min-height: auto;
    }

    .service-buttons {
        grid-template-columns: 1fr;
    }

    .about-points {
        grid-template-columns: 1fr;
    }

    .about-image::before {
        display: none;
    }

    .about-experience {
        right: 50%;
        transform: translateX(50%);
        bottom: -25px;
    }

    .gallery-grid {
        grid-template-columns: 1fr;
        grid-auto-rows: 260px;
    }

    .request-buttons {
        width: 100%;
        flex-direction: column;
    }

    .contact-list {
        grid-template-columns: 1fr;
    }

    .contact-item {
        text-align: center;
        justify-content: center;
        flex-direction: column;
    }

    .contact-form {
        padding: 25px 18px;
        text-align: center;
    }

    .form-group {
        text-align: center;
    }

    .form-group input,
    .form-group select,
    .form-group textarea {
        text-align: center;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .lightbox {
        padding: 15px;
    }

    .lightbox-content {
        width: 88vw;
        height: 75vh;
    }

    .lightbox-arrow {
        width: 42px;
        height: 55px;
        font-size: 18px;
    }

    .lightbox-next {
        right: 7px;
    }

    .lightbox-prev {
        left: 7px;
    }

    .lightbox-close {
        top: 15px;
        left: 15px;
    }

    .floating-button {
        left: 14px;
        width: 52px;
        height: 52px;
    }

    .floating-whatsapp {
        bottom: 14px;
    }

    .floating-call {
        bottom: 76px;
    }
}