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

html {
    scroll-behavior: smooth;
}

body {
    font-family: "Cairo", sans-serif;
    background: #f5f2ed;
    color: #222;
    line-height: 1.8;
}

.container {
    width: min(1120px, 92%);
    margin: auto;
}


/* Header */

.header {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 100;
    background: rgba(20, 23, 20, .95);
    backdrop-filter: blur(10px);
}

.nav {
    min-height: 78px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 25px;
}

.logo {
    color: white;
    text-decoration: none;
    font-size: 25px;
    font-weight: 900;
    line-height: 1;
}

.logo small {
    display: block;
    color: #c99b50;
    font-size: 10px;
    margin-top: 7px;
}

nav {
    display: flex;
    gap: 25px;
}

nav a {
    color: #ddd;
    text-decoration: none;
    font-size: 14px;
    transition: .3s;
}

nav a:hover {
    color: #d1a05a;
}

.call-btn {
    background: #c69245;
    color: white;
    text-decoration: none;
    padding: 9px 18px;
    border-radius: 5px;
    font-weight: bold;
    font-size: 13px;
}


/* Hero */

.hero {
    min-height: 760px;
    position: relative;

    background:
        url("imgs/hero.png")
        center / cover no-repeat;

    color: white;

    display: flex;
    align-items: center;
}

.overlay {
    position: absolute;
    inset: 0;

    background:
        linear-gradient(
            90deg,
            rgba(10, 12, 10, .92),
            rgba(10, 12, 10, .65),
            rgba(10, 12, 10, .35)
        );
}

.hero-content {
    position: relative;
    z-index: 2;

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

    gap: 50px;
    padding-top: 80px;
}

.hero-text {
    max-width: 680px;
}

.badge {
    display: inline-block;

    border: 1px solid #c69245;
    color: #d6aa62;

    padding: 5px 15px;
    border-radius: 30px;

    font-size: 12px;
    margin-bottom: 20px;
}

.hero h1 {
    font-size: clamp(48px, 7vw, 82px);
    line-height: 1.15;
    font-weight: 900;
}

.hero h1 span {
    display: block;
    color: #d3a05a;
}

.hero p {
    color: #ddd;
    font-size: 18px;
    max-width: 620px;
    margin: 25px 0;
}

.buttons {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.btn {
    text-decoration: none;
    padding: 13px 28px;
    border-radius: 5px;
    font-weight: 800;
}

.primary {
    background: #c69245;
    color: white;
}

.secondary {
    color: white;
    border: 1px solid #aaa;
}

.hero-box {
    width: 250px;
    padding: 30px;

    background: rgba(255,255,255,.08);
    border: 1px solid rgba(255,255,255,.2);

    border-radius: 8px;
}

.gear {
    font-size: 45px;
    color: #d0a05b;
}

.hero-box h3 {
    margin-top: 10px;
}

.hero-box p {
    font-size: 13px;
    margin: 5px 0;
}


/* Stats */

.stats {
    background: #171a17;
    color: white;
}

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

.stats-grid div {
    padding: 25px;
    text-align: center;
    border-left: 1px solid #30332f;
}

.stats-grid strong {
    display: block;
    color: #c99b50;
    font-size: 26px;
}

.stats-grid span {
    font-size: 13px;
}


/* Sections */

.section {
    padding: 100px 0;
}

.section-title {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 50px;
}

.section-title span,
.about-text > span,
.contact-box > div > span {
    color: #b27d35;
    font-size: 13px;
    font-weight: 800;
}

.section-title h2,
.about-text h2,
.contact-box h2 {
    font-size: 40px;
    line-height: 1.3;
    margin: 8px 0;
    font-weight: 900;
}

.section-title p {
    color: #777;
}


/* Services */

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

.service {
    position: relative;

    background: white;

    padding: 32px 25px;

    min-height: 280px;

    border: 1px solid #e4dfd7;

    transition: .3s;
}

.service:hover {
    transform: translateY(-7px);
    border-color: #c69245;
}

.number {
    position: absolute;
    top: 10px;
    left: 15px;

    color: #eee;

    font-size: 45px;
    font-weight: 900;
}

.icon {
    color: #bd883f;
    font-size: 35px;
    margin-bottom: 15px;
}

.service h3 {
    font-size: 20px;
    margin-bottom: 10px;
}

.service p {
    color: #777;
    font-size: 13px;
}


/* About */

.about {
    padding: 100px 0;
    background: #eae5dc;
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;

    gap: 70px;

    align-items: center;
}

.about-image {
    height: 520px;
}

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

.about-text p {
    color: #686861;
    margin: 20px 0;
}

.about-text ul {
    list-style: none;
    margin: 20px 0;
}

.about-text li {
    padding: 8px 0;
    border-bottom: 1px solid #d5cfc4;
    font-size: 14px;
}

.about-text li::before {
    content: "✓";
    color: #b17d39;
    font-weight: bold;
    margin-left: 10px;
}

.map-link {
    color: #96672e;
    text-decoration: none;
    font-weight: bold;
}


/* Gallery */

.gallery {
    padding: 100px 0;
    background: #20231f;
    color: white;
}

.white h2 {
    color: white;
}

.white p {
    color: #aaa;
}

.gallery-grid {
    display: grid;

    grid-template-columns:
        2fr 1fr 1fr;

    gap: 14px;
}

.gallery-item {
    height: 250px;
    position: relative;
    overflow: hidden;
    background: #343832;
}

.gallery-item.big {
    grid-row: span 2;
    height: 514px;
}

.gallery-item img,
.gallery-item video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.gallery-item span {
    position: absolute;

    bottom: 0;
    right: 0;
    left: 0;

    padding: 15px;

    background:
        linear-gradient(
            transparent,
            rgba(0,0,0,.85)
        );

    font-size: 13px;
    font-weight: bold;
}


/* Contact */

.contact {
    background: #c69245;
    padding: 70px 0;
}

.contact-box {
    display: grid;
    grid-template-columns: 1fr 1fr;

    gap: 60px;

    align-items: center;
}

.contact-box h2 {
    color: white;
}

.contact-box p {
    color: #f6eadb;
}

.contact-info {
    display: grid;
    gap: 10px;
}

.contact-info a {
    display: flex;
    justify-content: space-between;
    align-items: center;

    padding: 14px 18px;

    background: rgba(0,0,0,.13);

    color: white;

    text-decoration: none;

    border-radius: 5px;
}

.contact-info span {
    font-size: 12px;
}

.contact-info strong {
    font-size: 14px;
}


/* Footer */

footer {
    background: #171a17;
    color: #aaa;
    padding: 22px 0;

    font-size: 12px;
}

footer .container {
    display: flex;
    justify-content: space-between;
}


/* WhatsApp */

.whatsapp {
    position: fixed;

    bottom: 22px;
    left: 22px;

    background: #25d366;

    color: white;

    padding: 13px 20px;

    border-radius: 50px;

    text-decoration: none;

    font-weight: bold;

    box-shadow: 0 8px 25px rgba(0,0,0,.3);

    z-index: 200;
}


/* Mobile */

@media(max-width: 900px) {

    nav {
        display: none;
    }

    .hero {
        min-height: 700px;
    }

    .hero-content {
        display: block;
    }

    .hero-box {
        display: none;
    }

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

    .about-grid {
        grid-template-columns: 1fr;
        gap: 35px;
    }

    .contact-box {
        grid-template-columns: 1fr;
        gap: 25px;
    }

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

    .gallery-item.big {
        grid-column: span 2;
        grid-row: auto;
        height: 350px;
    }
}


@media(max-width: 560px) {

    .call-btn {
        padding: 8px 12px;
        font-size: 11px;
    }

    .logo {
        font-size: 21px;
    }

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

    .hero p {
        font-size: 15px;
    }

    .section,
    .about,
    .gallery {
        padding: 70px 0;
    }

    .section-title h2,
    .about-text h2,
    .contact-box h2 {
        font-size: 31px;
    }

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

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

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

    .gallery-item.big {
        grid-column: auto;
        height: 280px;
    }

    .gallery-item {
        height: 230px;
    }

    .about-image {
        height: 350px;
    }

    footer .container {
        display: block;
    }

    footer span {
        display: block;
        margin: 5px 0;
    }
}

/* =========================
   ANIMATIONS
========================= */

.hero-text {
    animation: heroText 1.2s ease-out both;
}

.hero-box {
    animation: heroBox 1.3s ease-out .3s both;
}

@keyframes heroText {
    from {
        opacity: 0;
        transform: translateX(60px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes heroBox {
    from {
        opacity: 0;
        transform: translateY(50px) scale(.9);
    }

    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}


.hero {
    animation: heroBackground 12s ease-in-out infinite alternate;
}

@keyframes heroBackground {
    from {
        background-position: 50% 50%;
    }

    to {
        background-position: 54% 46%;
    }
}


.gear {
    display: inline-block;
    animation: rotateGear 5s linear infinite;
}

@keyframes rotateGear {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}


.badge {
    animation: badgeGlow 2s ease-in-out infinite alternate;
}

@keyframes badgeGlow {
    from {
        box-shadow: 0 0 0 rgba(198,146,69,0);
    }

    to {
        box-shadow: 0 0 20px rgba(198,146,69,.25);
    }
}


.btn {
    position: relative;
    overflow: hidden;
    transition: .3s ease;
}

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

.btn::after {
    content: "";
    position: absolute;
    top: 0;
    left: -120%;
    width: 80%;
    height: 100%;

    background: linear-gradient(
        90deg,
        transparent,
        rgba(255,255,255,.35),
        transparent
    );

    transform: skewX(-20deg);
    transition: .6s;
}

.btn:hover::after {
    left: 140%;
}


.number {
    transition: .4s ease;
}

.service:hover .number {
    color: rgba(198,146,69,.2);
    transform: scale(1.2);
}


.icon {
    transition: .4s ease;
}

.service:hover .icon {
    transform: translateY(-8px) rotate(8deg);
}


.service {
    transition:
        transform .4s ease,
        box-shadow .4s ease,
        border-color .4s ease;
}

.service:hover {
    transform: translateY(-10px);
    box-shadow: 0 18px 40px rgba(0,0,0,.10);
}


.gallery-item img {
    transition: transform .7s ease;
}

.gallery-item:hover img {
    transform: scale(1.08);
}

.gallery-item {
    transition: box-shadow .4s ease;
}

.gallery-item:hover {
    box-shadow: 0 15px 35px rgba(0,0,0,.35);
}


.about-image {
    overflow: hidden;
}

.about-image img {
    transition: transform 1s ease;
}

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


.whatsapp {
    animation: whatsappPulse 2s infinite;
}

@keyframes whatsappPulse {

    0% {
        box-shadow:
            0 0 0 0 rgba(37,211,102,.6);
    }

    70% {
        box-shadow:
            0 0 0 15px rgba(37,211,102,0);
    }

    100% {
        box-shadow:
            0 0 0 0 rgba(37,211,102,0);
    }

}


.reveal {
    opacity: 0;
    transform: translateY(50px);
    transition:
        opacity .8s ease,
        transform .8s ease;
}

.reveal.show {
    opacity: 1;
    transform: translateY(0);
}


.stats-grid div {
    transition: .4s ease;
}

.stats-grid div:hover {
    background: rgba(198,146,69,.08);
}

.stats-grid strong {
    transition: .4s ease;
}

.stats-grid div:hover strong {
    transform: scale(1.15);
}


nav a {
    position: relative;
}

nav a::after {
    content: "";
    position: absolute;

    bottom: -7px;
    right: 0;

    width: 0;
    height: 2px;

    background: #c69245;

    transition: .3s ease;
}

nav a:hover::after {
    width: 100%;
}


.logo {
    transition: .3s ease;
}

.logo:hover {
    transform: scale(1.05);
}


@media (prefers-reduced-motion: reduce) {

    *,
    *::before,
    *::after {
        animation-duration: .01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: .01ms !important;
    }

}

/* =========================
   WHY US
========================= */

.why-us {
    padding: 100px 0;
    background: #f5f2ed;
}

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

.why-card {
    position: relative;

    background: #fff;

    padding: 35px 25px;

    text-align: center;

    border: 1px solid #e5dfd5;

    transition: .4s ease;

    overflow: hidden;
}

.why-card::before {
    content: "";

    position: absolute;

    top: 0;
    right: 0;

    width: 0;
    height: 3px;

    background: #c69245;

    transition: .4s ease;
}

.why-card:hover::before {
    width: 100%;
}

.why-card:hover {
    transform: translateY(-8px);

    box-shadow:
        0 20px 40px rgba(0,0,0,.08);
}

.why-icon {
    width: 65px;
    height: 65px;

    margin: 0 auto 20px;

    display: grid;
    place-items: center;

    border-radius: 50%;

    background: #f3eadc;

    color: #b27d35;

    font-size: 28px;

    transition: .4s ease;
}

.why-card:hover .why-icon {
    background: #c69245;
    color: #fff;

    transform: rotateY(180deg);
}

.why-card h3 {
    font-size: 19px;

    margin-bottom: 10px;
}

.why-card p {
    color: #777;

    font-size: 13px;
}


/* Mobile */

@media(max-width: 900px) {

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

}

@media(max-width: 560px) {

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

}
/* =========================
   PROCESS
========================= */

.process {
    padding: 100px 0;

    background:
        linear-gradient(
            135deg,
            #20231f,
            #171a17
        );

    color: #fff;
}

.process .section-title p {
    color: #aaa;
}

.process .section-title h2 {
    color: #fff;
}

.process-grid {
    display: grid;

    grid-template-columns:
        repeat(4, 1fr);

    gap: 20px;

    position: relative;
}

.process-item {
    position: relative;

    padding: 35px 25px;

    background: rgba(255,255,255,.04);

    border: 1px solid rgba(255,255,255,.1);

    text-align: center;

    transition: .4s ease;
}

.process-item:hover {
    transform: translateY(-10px);

    background:
        rgba(198,146,69,.1);

    border-color: #c69245;
}

.process-number {
    position: absolute;

    top: 12px;
    left: 15px;

    font-size: 38px;

    font-weight: 900;

    color: rgba(255,255,255,.06);
}

.process-icon {
    width: 65px;
    height: 65px;

    margin: 0 auto 20px;

    border-radius: 50%;

    display: grid;
    place-items: center;

    background: #c69245;

    color: white;

    font-size: 25px;

    transition: .4s ease;
}

.process-item:hover .process-icon {
    transform: scale(1.1) rotate(10deg);
}

.process-item h3 {
    font-size: 19px;

    margin-bottom: 10px;
}

.process-item p {
    color: #aaa;

    font-size: 13px;
}


/* Mobile */

@media(max-width: 900px) {

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

}

@media(max-width: 560px) {

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

}
/* =========================
   FULL FOOTER
========================= */

.main-footer {
    background: #111411;

    color: #aaa;

    padding-top: 80px;

    border-top: 3px solid #c69245;
}

.footer-grid {
    display: grid;

    grid-template-columns:
        1.5fr
        1fr
        1fr
        1.4fr;

    gap: 55px;

    padding-bottom: 55px;
}


/* Logo */

.footer-logo {
    display: inline-block;

    color: white;

    text-decoration: none;

    font-size: 32px;

    font-weight: 900;

    line-height: 1;
}

.footer-logo small {
    display: block;

    color: #c69245;

    font-size: 10px;

    margin-top: 8px;
}

.footer-about p {
    color: #888;

    font-size: 13px;

    line-height: 2;

    margin-top: 25px;

    max-width: 320px;
}


/* Footer Titles */

.main-footer h3 {
    color: white;

    font-size: 17px;

    margin-bottom: 22px;

    position: relative;

    padding-bottom: 12px;
}

.main-footer h3::after {
    content: "";

    position: absolute;

    bottom: 0;
    right: 0;

    width: 35px;
    height: 2px;

    background: #c69245;
}


/* Links */

.footer-links {
    display: flex;

    flex-direction: column;

    align-items: flex-start;
}

.footer-links a {
    color: #888;

    text-decoration: none;

    font-size: 13px;

    margin: 5px 0;

    transition: .3s;
}

.footer-links a::before {
    content: "←";

    color: #c69245;

    margin-left: 7px;

    opacity: 0;

    transition: .3s;
}

.footer-links a:hover {
    color: #d0a05b;

    transform: translateX(-5px);
}

.footer-links a:hover::before {
    opacity: 1;
}


/* Contact */

.footer-contact > a {
    display: flex;

    align-items: center;

    gap: 13px;

    color: #aaa;

    text-decoration: none;

    margin-bottom: 18px;

    transition: .3s;
}

.footer-contact > a:hover {
    color: white;

    transform: translateX(-5px);
}

.contact-icon {
    width: 42px;
    height: 42px;

    min-width: 42px;

    display: grid;

    place-items: center;

    background: #222721;

    border: 1px solid #353a32;

    border-radius: 50%;

    color: #c69245;

    font-weight: bold;
}

.footer-contact small {
    display: block;

    color: #666;

    font-size: 10px;
}

.footer-contact strong {
    display: block;

    color: #ddd;

    font-size: 12px;

    font-weight: 600;
}


/* Social */

.socials {
    display: flex;

    gap: 8px;

    margin-top: 25px;
}

.socials a {
    width: 38px;
    height: 38px;

    display: grid;

    place-items: center;

    border: 1px solid #343832;

    border-radius: 4px;

    color: #aaa;

    text-decoration: none;

    transition: .3s;
}

.socials a:hover {
    background: #c69245;

    color: white;

    border-color: #c69245;

    transform: translateY(-4px);
}


/* Footer Bottom */

.footer-bottom {
    min-height: 70px;

    display: flex;

    align-items: center;

    justify-content: space-between;

    gap: 20px;

    border-top: 1px solid #292d29;

    color: #666;

    font-size: 11px;
}

.footer-bottom p {
    margin: 0;
}


/* Mobile */

@media(max-width: 900px) {

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

        gap: 40px;
    }

}

@media(max-width: 560px) {

    .main-footer {
        padding-top: 60px;
    }

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

        gap: 35px;
    }

    .footer-bottom {
        display: block;

        padding: 20px 0;

        line-height: 2;
    }

}

/* =================================
   MOBILE MENU
================================= */

.menu-toggle {
    display: none;

    width: 44px;
    height: 44px;

    background: transparent;

    border: 1px solid #c69245;

    border-radius: 5px;

    cursor: pointer;

    padding: 9px;

    flex-direction: column;

    justify-content: center;

    align-items: center;

    gap: 5px;
}

.menu-toggle span {
    display: block;

    width: 22px;
    height: 2px;

    background: #c69245;

    transition: .3s ease;
}

.mobile-menu {
    display: none;
}


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

@media (max-width: 900px) {


    .desktop-menu {
        display: none;
    }



    .call-btn {
        display: none;
    }



    .menu-toggle {
        display: flex;
    }



    .nav {
        min-height: 70px;
    }



    .nav {
        justify-content: space-between;
    }



    .mobile-menu {

        position: absolute;

        top: 70px;

        right: 0;

        width: 100%;

        background: #111411;

        border-top: 1px solid #333;

        display: flex;

        flex-direction: column;

        align-items: center;

        padding: 15px 20px;

        gap: 4px;

        opacity: 0;

        visibility: hidden;

        transform: translateY(-15px);

        transition: .3s ease;

        box-shadow:
            0 15px 30px rgba(0,0,0,.3);

    }



    .mobile-menu.active {

        opacity: 1;

        visibility: visible;

        transform: translateY(0);

    }


    .mobile-menu a {

        width: 100%;

        max-width: 400px;

        text-align: center;

        padding: 12px;

        color: #ddd;

        text-decoration: none;

        font-size: 14px;

        border-bottom:
            1px solid rgba(255,255,255,.06);

        transition: .3s;

    }


    .mobile-menu a:hover {

        color: #d0a05b;

        background:
            rgba(198,146,69,.08);

    }


    /* =================================
       HERO MOBILE
    ================================= */

    .hero {

        min-height: 720px;

        text-align: center;

        background-position: center;

    }


    .hero-content {

        display: flex;

        flex-direction: column;

        align-items: center;

        justify-content: center;

        text-align: center;

        width: 100%;

        padding-top: 100px;

    }


    .hero-text {

        width: 100%;

        max-width: 600px;

        display: flex;

        flex-direction: column;

        align-items: center;

        text-align: center;

    }


    .badge {

        margin-left: auto;
        margin-right: auto;

    }


    .hero h1 {

        width: 100%;

        text-align: center;

        line-height: 1.2;

    }


    .hero h1 span {

        text-align: center;

    }


    .hero p {

        width: 100%;

        max-width: 500px;

        text-align: center;

        margin-left: auto;
        margin-right: auto;

    }


    .buttons {

        width: 100%;

        justify-content: center;

        align-items: center;

    }


    .btn {

        min-width: 145px;

        text-align: center;

    }


    /* =================================
       WHY US MOBILE
    ================================= */

    .why-us {

        text-align: center;

    }


    .why-grid {

        text-align: center;

    }


    .why-card {

        text-align: center;

    }


    /* =================================
       PROCESS MOBILE
    ================================= */

    .process {

        text-align: center;

    }


    .process-item {

        text-align: center;

    }


    /* =================================
       ABOUT MOBILE
    ================================= */

    .about {

        text-align: center;

    }


    .about-text {

        display: flex;

        flex-direction: column;

        align-items: center;

        text-align: center;

    }


    .about-text p {

        text-align: center;

    }


    .about-text ul {

        width: 100%;

        text-align: center;

    }


    /* =================================
       GALLERY MOBILE
    ================================= */

    .gallery {

        text-align: center;

    }


    .gallery .section-title {

        text-align: center;

    }


    /* =================================
       CONTACT MOBILE
    ================================= */

    .contact {

        text-align: center;

    }


    .contact-box {

        text-align: center;

    }


    .contact-box > div:first-child {

        display: flex;

        flex-direction: column;

        align-items: center;

    }


    .contact-info {

        width: 100%;

        max-width: 500px;

        margin: auto;

    }


    .contact-info a {

        justify-content: center;

        flex-direction: column;

        text-align: center;

        gap: 3px;

    }


    /* =================================
       FOOTER MOBILE
    ================================= */

    .main-footer {

        text-align: center;

    }


    .footer-grid {

        grid-template-columns: 1fr;

        justify-items: center;

        text-align: center;

    }


    .footer-about {

        display: flex;

        flex-direction: column;

        align-items: center;

        text-align: center;

    }


    .footer-about p {

        text-align: center;

        margin-left: auto;
        margin-right: auto;

    }


    .footer-links {

        width: 100%;

        align-items: center;

        text-align: center;

    }


    .footer-links h3 {

        text-align: center;

    }


    .footer-links h3::after {

        right: 50%;

        transform: translateX(50%);

    }


    .footer-links a {

        text-align: center;

    }


    .footer-contact {

        width: 100%;

        display: flex;

        flex-direction: column;

        align-items: center;

    }


    .footer-contact h3 {

        text-align: center;

    }


    .footer-contact h3::after {

        right: 50%;

        transform: translateX(50%);

    }


    .footer-contact > a {

        width: 100%;

        max-width: 330px;

        justify-content: center;

        text-align: center;

    }


    .footer-bottom {

        text-align: center;

        align-items: center;

        justify-content: center;

    }


    .footer-bottom p {

        text-align: center;

    }


    .socials {

        justify-content: center;

    }

}