/* =========================
   GENERAL
========================= */

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: "Cairo", sans-serif;
    background: #0d0d0d;
    color: #fff;
    overflow-x: hidden;
}

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

button {
    font-family: inherit;
}

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

.section {
    padding: 110px 0;
}


/* =========================
   COLORS
========================= */

:root {
    --gold: #d7aa45;
    --gold-light: #f3d27a;
    --gold-dark: #a87b1d;
    --black: #0d0d0d;
    --black-2: #151515;
    --black-3: #1d1d1d;
    --white: #ffffff;
    --gray: #a7a7a7;
}


/* =========================
   HEADER
========================= */

.header {
    position: fixed;
    top: 0;
    right: 0;
    width: 100%;
    height: 82px;
    z-index: 1000;

    background: rgba(10, 10, 10, 0.92);
    backdrop-filter: blur(15px);

    border-bottom: 1px solid rgba(215, 170, 69, 0.15);

    transition: 0.3s;
}

.header.scrolled {
    height: 70px;
    background: rgba(8, 8, 8, 0.98);
}

.nav-container {
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
}


/* LOGO */

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
    min-width: 210px;
}

.logo-icon {
    width: 45px;
    height: 45px;

    display: grid;
    place-items: center;

    border: 1px solid var(--gold);
    color: var(--gold);

    transform: rotate(45deg);
}

.logo-icon i {
    transform: rotate(-45deg);
    font-size: 19px;
}

.logo-text {
    display: flex;
    flex-direction: column;
    line-height: 1.2;
}

.logo-text strong {
    color: #fff;
    font-size: 18px;
}

.logo-text small {
    color: var(--gold);
    font-size: 10px;
    margin-top: 4px;
}


/* NAV */

.navbar {
    display: flex;
    align-items: center;
    gap: 25px;
}

.nav-link {
    color: #c8c8c8;
    font-size: 14px;
    position: relative;
    transition: 0.3s;
}

.nav-link::after {
    content: "";
    position: absolute;
    width: 0;
    height: 2px;
    right: 0;
    bottom: -9px;
    background: var(--gold);
    transition: 0.3s;
}

.nav-link:hover,
.nav-link.active {
    color: var(--gold-light);
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 100%;
}


/* HEADER PHONE */

.header-call {
    display: flex;
    align-items: center;
    gap: 8px;

    color: var(--gold-light);

    font-size: 14px;
    font-weight: 700;
}

.header-call i {
    font-size: 15px;
}


/* MENU */

.menu-btn {
    display: none;

    border: 1px solid rgba(215, 170, 69, 0.5);
    background: transparent;

    width: 45px;
    height: 45px;

    color: var(--gold);
    font-size: 20px;

    cursor: pointer;
}

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

.hero {
    min-height: 100vh;
    position: relative;

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

    background:
        linear-gradient(90deg,
            rgba(5, 5, 5, 0.96),
            rgba(5, 5, 5, 0.78),
            rgba(5, 5, 5, 0.94)),
        url("images/image1.jpg");

    background-size: cover;
    background-position: center;
}

.hero-overlay {
    position: absolute;
    inset: 0;

    background:
        radial-gradient(circle at center,
            rgba(215, 170, 69, 0.10),
            transparent 55%);
}

.hero-pattern {
    position: absolute;
    inset: 0;

    background-image:
        linear-gradient(rgba(255, 255, 255, 0.025) 1px,
            transparent 1px),
        linear-gradient(90deg,
            rgba(255, 255, 255, 0.025) 1px,
            transparent 1px);

    background-size: 55px 55px;

    opacity: 0.25;
}

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

    width: 100%;

    padding-top: 90px;

    display: flex;
    justify-content: center;
    text-align: center;
}

.hero-text {
    width: 100%;
    max-width: 950px;

    margin: 0 auto;

    display: flex;
    flex-direction: column;
    align-items: center;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;

    gap: 9px;

    color: var(--gold-light);

    border: 1px solid rgba(215, 170, 69, 0.45);

    padding: 9px 18px;

    margin-bottom: 25px;

    font-size: 13px;

    background: rgba(215, 170, 69, 0.06);
}

.hero-badge i {
    color: var(--gold);
}

.hero h1 {
    width: 100%;

    font-size: clamp(42px, 6vw, 78px);

    line-height: 1.15;

    font-weight: 900;

    margin-bottom: 25px;

    text-align: center;
}

.hero h1 span {
    display: block;

    color: var(--gold-light);
}

.hero p {
    max-width: 760px;

    color: #c5c5c5;

    font-size: 18px;

    line-height: 2;

    margin: 0 auto 35px;

    text-align: center;
}

.hero-buttons {
    display: flex;

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

    flex-wrap: wrap;

    gap: 15px;
}

.btn {
    min-height: 54px;

    padding: 0 27px;

    display: inline-flex;

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

    gap: 10px;

    font-size: 15px;

    font-weight: 700;

    transition: 0.3s;
}

.btn-primary {
    background: var(--gold);

    color: #111;
}

.btn-primary:hover {
    background: var(--gold-light);

    transform: translateY(-4px);

    box-shadow:
        0 12px 35px rgba(215, 170, 69, 0.22);
}

.btn-outline {
    border: 1px solid rgba(215, 170, 69, 0.65);

    color: #fff;
}

.btn-outline:hover {
    background: var(--gold);

    color: #111;

    transform: translateY(-4px);
}

.hero-info {
    display: flex;

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

    flex-wrap: wrap;

    gap: 35px;

    margin-top: 55px;

    color: #aaa;

    font-size: 13px;
}

.hero-info div {
    display: flex;

    align-items: center;

    gap: 9px;
}

.hero-info i {
    color: var(--gold);
}

.hero-bottom {
    position: absolute;

    bottom: 25px;

    left: 50%;

    transform: translateX(-50%);

    z-index: 5;
}

.hero-bottom a {
    width: 45px;
    height: 45px;

    display: grid;

    place-items: center;

    border: 1px solid rgba(215, 170, 69, 0.45);

    color: var(--gold);

    animation: bounce 1.7s infinite;
}

@keyframes bounce {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(8px);
    }
}

/* =========================
   SECTION HEADING
========================= */

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

.section-tag {
    display: inline-block;

    color: var(--gold);
    font-size: 13px;
    font-weight: 700;

    letter-spacing: 1px;

    margin-bottom: 13px;
}

.section-heading h2 {
    font-size: clamp(30px, 4vw, 48px);
    line-height: 1.3;

    margin-bottom: 18px;
}

.section-heading h2 span {
    color: var(--gold);
}

.section-heading p {
    color: var(--gray);
    line-height: 1.9;
    font-size: 15px;
}

.section-heading.light p {
    color: #aaa;
}


/* =========================
   SERVICES
========================= */

.services {
    background: #111;
}

.services-grid {
    display: grid;

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

    gap: 20px;
}

.service-card {
    position: relative;

    padding: 35px 30px;

    min-height: 310px;

    background:
        linear-gradient(145deg,
            #191919,
            #101010);

    border: 1px solid #272727;

    overflow: hidden;

    transition: 0.4s;
}

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

    position: absolute;

    width: 0;
    height: 3px;

    right: 0;
    top: 0;

    background: var(--gold);

    transition: 0.4s;
}

.service-card:hover {
    transform: translateY(-8px);
    border-color: rgba(215, 170, 69, 0.4);
}

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

.service-number {
    position: absolute;

    left: 22px;
    top: 20px;

    color: rgba(255, 255, 255, 0.08);

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

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

    display: grid;
    place-items: center;

    border: 1px solid rgba(215, 170, 69, 0.45);

    color: var(--gold);

    margin-bottom: 25px;

    font-size: 25px;

    transition: 0.4s;
}

.service-card:hover .service-icon {
    background: var(--gold);
    color: #111;
}

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

.service-card p {
    color: #999;
    line-height: 1.9;
    font-size: 14px;
}

.service-line {
    position: absolute;

    bottom: 25px;
    right: 30px;

    width: 35px;
    height: 2px;

    background: var(--gold);
}


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

.about {
    background: #0c0c0c;
}

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

    align-items: center;

    gap: 80px;
}

.about-content>p {
    color: #999;

    line-height: 2;

    font-size: 15px;

    margin-bottom: 15px;
}

.about-content h2 {
    font-size: clamp(32px, 4vw, 48px);

    line-height: 1.3;

    margin-bottom: 25px;
}

.about-content h2 span {
    display: block;
    color: var(--gold);
}

.feature-list {
    margin-top: 35px;

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

    gap: 20px;
}

.feature {
    display: flex;
    gap: 14px;
}

.feature-icon {
    flex-shrink: 0;

    width: 48px;
    height: 48px;

    display: grid;
    place-items: center;

    color: var(--gold);

    border: 1px solid rgba(215, 170, 69, 0.35);
}

.feature h3 {
    font-size: 15px;
    margin-bottom: 4px;
}

.feature p {
    color: #777;
    font-size: 12px;
    line-height: 1.7;
}


/* VISUAL */

.about-visual {
    position: relative;

    min-height: 530px;
}

.visual-box {
    position: absolute;

    inset: 0;

    background:
        linear-gradient(rgba(10, 10, 10, 0.25),
            rgba(10, 10, 10, 0.75)),
        url("images/image2.jpg");

    background-size: cover;
    background-position: center;

    border: 1px solid rgba(215, 170, 69, 0.35);
}

.visual-box::before {
    content: "";

    position: absolute;

    inset: 18px;

    border: 1px solid rgba(215, 170, 69, 0.4);
}

.visual-content {
    position: absolute;

    inset: 0;

    display: flex;

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

    flex-direction: column;

    text-align: center;

    z-index: 2;
}

.visual-content i {
    color: var(--gold-light);

    font-size: 60px;

    margin-bottom: 20px;
}

.visual-content strong {
    font-size: 30px;
}

.visual-content span {
    color: #ccc;

    line-height: 1.8;

    margin-top: 10px;
}

.experience-card {
    position: absolute;

    bottom: -25px;
    right: -30px;

    width: 280px;

    display: flex;
    align-items: center;
    gap: 15px;

    padding: 20px;

    background: var(--gold);

    color: #111;

    box-shadow: 0 15px 45px rgba(0, 0, 0, 0.4);
}

.experience-card>i {
    width: 48px;
    height: 48px;

    display: grid;
    place-items: center;

    border: 1px solid rgba(0, 0, 0, 0.25);
}

.experience-card div {
    display: flex;
    flex-direction: column;
}

.experience-card strong {
    font-size: 15px;
}

.experience-card span {
    font-size: 11px;
    margin-top: 3px;
}


/* =========================
   AREAS
========================= */

.areas {
    background:
        linear-gradient(rgba(8, 8, 8, 0.94),
            rgba(8, 8, 8, 0.94)),
        url("images/image3.jpg");

    background-size: cover;
    background-position: center;

    position: relative;
}

.areas::before {
    content: "";

    position: absolute;
    inset: 0;

    background:
        radial-gradient(circle at center,
            rgba(215, 170, 69, 0.09),
            transparent 50%);
}

.areas .container {
    position: relative;
    z-index: 2;
}

.areas-grid {
    display: grid;

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

    gap: 12px;
}

.area {
    min-height: 75px;

    display: flex;

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

    gap: 10px;

    border: 1px solid #292929;

    background: rgba(20, 20, 20, 0.8);

    color: #ccc;

    font-size: 14px;

    transition: 0.3s;
}

.area i {
    color: var(--gold);
}

.area:hover {
    border-color: var(--gold);
    color: var(--gold-light);

    transform: translateY(-4px);
}

.area.special {
    grid-column: span 2;

    background: rgba(215, 170, 69, 0.08);

    color: var(--gold-light);

    border-color: rgba(215, 170, 69, 0.35);
}


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

.gallery {
    background: #111;
}

.gallery-grid {
    display: grid;

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

    gap: 14px;
}

.gallery-item {
    position: relative;

    height: 270px;

    overflow: hidden;

    background: #1b1b1b;

    cursor: pointer;
}

.gallery-item img {
    width: 100%;
    height: 100%;

    object-fit: cover;

    display: block;

    transition: 0.6s;
}

.gallery-overlay {
    position: absolute;

    inset: 0;

    display: grid;
    place-items: center;

    background: rgba(0, 0, 0, 0.55);

    opacity: 0;

    transition: 0.4s;
}

.gallery-overlay i {
    width: 55px;
    height: 55px;

    display: grid;
    place-items: center;

    border: 1px solid var(--gold);

    color: var(--gold);

    border-radius: 50%;

    transform: scale(0.7);

    transition: 0.4s;
}

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

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

.gallery-item:hover .gallery-overlay i {
    transform: scale(1);
}


/* =========================
   CTA
========================= */

.cta {
    padding: 75px 0;

    background:
        linear-gradient(90deg,
            rgba(215, 170, 69, 0.95),
            rgba(166, 120, 28, 0.95));
}

.cta-content {
    display: flex;

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

    gap: 30px;
}

.cta span {
    color: #1c1608;

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

.cta h2 {
    color: #111;

    font-size: 42px;

    margin: 4px 0;
}

.cta p {
    color: #332b17;
}

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

.cta .btn-primary {
    background: #111;
    color: #fff;
}

.cta .btn-outline {
    color: #111;

    border-color: #111;
}


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

.contact {
    background: #0c0c0c;
}

.contact-grid {
    display: grid;

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

    gap: 20px;
}

.contact-card {
    padding: 40px 25px;

    text-align: center;

    background: #151515;

    border: 1px solid #252525;

    transition: 0.3s;
}

.contact-card:hover {
    border-color: rgba(215, 170, 69, 0.5);

    transform: translateY(-7px);
}

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

    display: grid;
    place-items: center;

    margin: 0 auto 20px;

    color: var(--gold);

    border: 1px solid rgba(215, 170, 69, 0.4);

    font-size: 25px;
}

.contact-card h3 {
    margin-bottom: 7px;
}

.contact-card p {
    color: #777;

    font-size: 13px;

    margin-bottom: 12px;
}

.contact-card>a {
    color: var(--gold-light);

    font-weight: 700;
}

.location-box {
    height: 300px;

    margin-top: 25px;

    background: #151515;

    border: 1px solid #252525;
}

.location-placeholder {
    height: 100%;

    display: flex;

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

    flex-direction: column;

    text-align: center;
}

.location-placeholder i {
    color: var(--gold);

    font-size: 45px;

    margin-bottom: 15px;
}

.location-placeholder h3 {
    margin-bottom: 7px;
}

.location-placeholder p {
    color: #777;
}


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

.footer {
    background: #080808;

    border-top: 1px solid #202020;
}

.footer-content {
    padding: 65px 0;

    display: grid;

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

    gap: 60px;
}

.footer-logo {
    display: flex;
    align-items: center;

    gap: 10px;

    color: var(--gold-light);

    font-size: 20px;
    font-weight: 800;

    margin-bottom: 15px;
}

.footer-logo i {
    color: var(--gold);
}

.footer-brand p {
    max-width: 390px;

    color: #777;

    font-size: 13px;

    line-height: 1.9;
}

.footer h3 {
    color: #fff;

    font-size: 16px;

    margin-bottom: 18px;
}

.footer-links,
.footer-contact {
    display: flex;

    flex-direction: column;

    gap: 10px;
}

.footer-links a,
.footer-contact a,
.footer-contact span {
    color: #777;

    font-size: 13px;

    transition: 0.3s;
}

.footer-links a:hover,
.footer-contact a:hover {
    color: var(--gold);
}

.footer-contact i {
    color: var(--gold);

    width: 20px;
}

.footer-bottom {
    padding: 20px;

    text-align: center;

    border-top: 1px solid #181818;

    color: #555;

    font-size: 11px;
}


/* =========================
   FLOATING WHATSAPP
========================= */

.floating-whatsapp {
    position: fixed;

    bottom: 25px;
    left: 25px;

    width: 62px;
    height: 62px;

    display: grid;
    place-items: center;

    background: #25D366;

    color: #fff;

    border-radius: 50%;

    font-size: 30px;

    z-index: 999;

    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.35);
}

.whatsapp-pulse {
    position: absolute;

    inset: 0;

    border-radius: 50%;

    border: 2px solid #25D366;

    animation: pulse 1.8s infinite;
}

@keyframes pulse {

    0% {
        transform: scale(1);
        opacity: 0.9;
    }

    100% {
        transform: scale(1.45);
        opacity: 0;
    }
}


/* =========================
   MODAL
========================= */

.image-modal {
    position: fixed;

    inset: 0;

    background: rgba(0, 0, 0, 0.94);

    z-index: 2000;

    display: flex;

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

    padding: 30px;

    opacity: 0;
    visibility: hidden;

    transition: 0.3s;
}

.image-modal.show {
    opacity: 1;
    visibility: visible;
}

.image-modal img {
    max-width: 90%;
    max-height: 85vh;

    object-fit: contain;

    border: 1px solid rgba(215, 170, 69, 0.5);
}

.modal-close {
    position: absolute;

    top: 25px;
    left: 25px;

    width: 50px;
    height: 50px;

    background: transparent;

    color: #fff;

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

    font-size: 22px;

    cursor: pointer;

    transition: 0.3s;
}

.modal-close:hover {
    color: var(--gold);
    border-color: var(--gold);
}


/* =========================
   RESPONSIVE
========================= */

@media (max-width: 1050px) {

    .navbar {
        gap: 15px;
    }

    .navbar .nav-link {
        font-size: 12px;
    }

    .header-call {
        display: none;
    }

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

    .gallery-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .areas-grid {
        grid-template-columns: repeat(3, 1fr);
    }

}


/* TABLET */

@media (max-width: 850px) {

    .menu-btn {
        display: grid;
        place-items: center;
    }

    .navbar {
        position: absolute;

        top: 82px;
        right: 4%;

        width: 92%;

        background: #111;

        border: 1px solid #292929;

        padding: 20px;

        display: none;

        flex-direction: column;

        align-items: stretch;

        gap: 5px;
    }

    .navbar.show {
        display: flex;
    }

    .nav-link {
        padding: 13px;

        border-bottom: 1px solid #222;
    }

    .nav-link::after {
        display: none;
    }

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

    .about-visual {
        min-height: 500px;
    }

    .cta-content {
        flex-direction: column;
        align-items: flex-start;
    }

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

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

}


/* MOBILE */

@media (max-width: 600px) {

    .section {
        padding: 75px 0;
    }

    .logo {
        min-width: auto;
    }

    .logo-text strong {
        font-size: 15px;
    }

    .logo-text small {
        font-size: 8px;
    }

    .logo-icon {
        width: 38px;
        height: 38px;
    }

    .hero {
        min-height: 850px;

        background-position: center;
    }

    .hero-content {
        padding-top: 110px;
    }

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

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

    .hero-buttons {
        flex-direction: column;
    }

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

    .hero-info {
        flex-direction: column;

        gap: 14px;

        margin-top: 35px;
    }

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

    .feature-list {
        grid-template-columns: 1fr;
    }

    .about-visual {
        min-height: 400px;
    }

    .experience-card {
        right: 10px;
        bottom: -25px;

        width: calc(100% - 20px);
    }

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

    .area {
        min-height: 65px;
        font-size: 12px;
        padding: 8px;
    }

    .area.special {
        grid-column: span 2;
    }

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

    .gallery-item {
        height: 190px;
    }

    .cta h2 {
        font-size: 32px;
    }

    .cta-buttons {
        width: 100%;
        flex-direction: column;
    }

    .cta-buttons .btn {
        width: 100%;
    }

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

        gap: 35px;
    }

    .floating-whatsapp {
        width: 55px;
        height: 55px;

        left: 18px;
        bottom: 18px;

        font-size: 25px;
    }

}


/* SMALL MOBILE */

@media (max-width: 380px) {

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

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

    .gallery-item {
        height: 240px;
    }

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

    .area.special {
        grid-column: span 1;
    }

}
.location-box {
    width: 100%;
    min-height: 450px;
    overflow: hidden;
    border-radius: 20px;
    border: 1px solid rgba(215, 170, 69, 0.35);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.35);
}

.location-box iframe {
    display: block;
    width: 100%;
    height: 450px;
    border: 0;
}
/* =========================================
   ANIMATED LINES BACKGROUND
========================================= */

.hero {
    position: relative;
    overflow: hidden;
}

/* طبقة الخطوط المتحركة */

.animated-lines {
    position: absolute;
    inset: -50%;
    z-index: 0;

    width: 200%;
    height: 200%;

    opacity: 0.22;

    background:
        repeating-linear-gradient(
            120deg,
            transparent 0px,
            transparent 70px,
            rgba(226, 180, 70, 0.13) 71px,
            rgba(226, 180, 70, 0.13) 72px,
            transparent 73px,
            transparent 145px
        );

    animation: movingLines 18s linear infinite;
}


@keyframes movingLines {

    0% {
        transform: translate3d(0, 0, 0);
    }

    50% {
        transform: translate3d(-120px, 80px, 0);
    }

    100% {
        transform: translate3d(0, 0, 0);
    }

}



.hero::after {
    content: "";

    position: absolute;
    inset: 0;

    z-index: 1;

    pointer-events: none;

    background:
        radial-gradient(
            circle at 50% 45%,
            rgba(218, 172, 63, 0.08),
            transparent 45%
        );
}



.hero-content {
    position: relative;
    z-index: 3;
}

.hero-overlay,
.hero-pattern {
    z-index: 2;
}
/* =========================================
   MOBILE RESPONSIVE
========================================= */

@media (max-width: 768px) {

    /* HERO */

    .hero {
        min-height: calc(100vh - 70px);

        padding: 80px 18px 70px;

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

    .hero-content {
        width: 100%;
        padding: 0;

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

    .hero-text {
        width: 100%;
        max-width: 100%;

        margin: 0 auto;

        display: flex;
        flex-direction: column;
        align-items: center;

        text-align: center;
    }


    /* BADGE */

    .hero-badge {
        font-size: 11px;

        padding: 8px 13px;

        margin-bottom: 20px;
    }


    /* MAIN TITLE */

    .hero h1 {
        width: 100%;

        font-size: clamp(32px, 9vw, 48px);

        line-height: 1.25;

        margin-bottom: 20px;

        text-align: center;
    }

    .hero h1 span {
        display: block;
    }


    /* DESCRIPTION */

    .hero p {
        width: 100%;
        max-width: 450px;

        font-size: 14px;

        line-height: 1.9;

        margin: 0 auto 25px;

        text-align: center;
    }


    /* BUTTONS */

    .hero-buttons {
        width: 100%;

        display: flex;

        flex-direction: column;

        align-items: center;

        justify-content: center;

        gap: 10px;
    }

    .hero-buttons .btn {
        width: min(100%, 300px);

        min-height: 50px;

        padding: 0 18px;

        font-size: 14px;
    }


    /* INFO */

    .hero-info {
        width: 100%;

        margin-top: 30px;

        display: flex;

        flex-direction: column;

        align-items: center;

        justify-content: center;

        gap: 12px;

        text-align: center;

        font-size: 12px;
    }

    .hero-info div {
        justify-content: center;

        text-align: center;
    }


    /* SCROLL BUTTON */

    .hero-bottom {
        bottom: 12px;
    }

    .hero-bottom a {
        width: 38px;
        height: 38px;
    }


    /* ANIMATED LINES */

    .animated-lines {
        opacity: 0.17;

        background:
            repeating-linear-gradient(
                120deg,
                transparent 0px,
                transparent 55px,
                rgba(226, 180, 70, 0.12) 56px,
                rgba(226, 180, 70, 0.12) 57px,
                transparent 58px,
                transparent 110px
            );

        animation-duration: 14s;
    }
}
/* =========================================
   MOBILE FOOTER
========================================= */

@media (max-width: 768px) {

    footer {
        text-align: center;
    }

    .footer-content {
        display: flex;

        flex-direction: column;

        align-items: center;

        justify-content: center;

        text-align: center;

        width: 100%;
    }

    .footer-logo,
    .footer-about,
    .footer-links,
    .footer-contact {
        width: 100%;

        text-align: center;

        display: flex;

        flex-direction: column;

        align-items: center;
    }

    .footer-links ul {
        display: flex;

        flex-direction: column;

        align-items: center;

        justify-content: center;

        padding: 0;

        margin: 0;

        list-style: none;
    }

    .footer-contact div {
        justify-content: center;

        text-align: center;
    }

    .footer-social {
        display: flex;

        justify-content: center;

        align-items: center;

        width: 100%;

        gap: 10px;
    }

    .footer-bottom {
        width: 100%;

        text-align: center;

        display: flex;

        justify-content: center;

        align-items: center;

        flex-direction: column;

        gap: 8px;

        padding: 18px 15px;
    }
}
