/* =====================================================
   GENERAL
===================================================== */

:root {
    --bg: #071016;
    --bg-light: #0c151c;
    --card: #101c24;
    --card-hover: #14232d;

    --text: #f5f7f8;
    --muted: #9daab3;

    --accent: #c9a45c;
    --accent-light: #e4c47e;

    --border: rgba(255,255,255,0.09);

    --green: #20c56a;

    --container: 1180px;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: "Cairo", sans-serif;
    background: var(--bg);
    color: var(--text);
    line-height: 1.8;
    overflow-x: hidden;
}

a {
    color: inherit;
    text-decoration: none;
}

img {
    max-width: 100%;
    display: block;
}

.container {
    width: min(var(--container), calc(100% - 40px));
    margin: auto;
}


/* =====================================================
   HEADER
===================================================== */

.header {
    position: fixed;
    top: 0;
    right: 0;
    left: 0;

    z-index: 1000;

    background: rgba(7, 16, 22, 0.75);

    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);

    border-bottom: 1px solid transparent;

    transition: 0.3s ease;
}

.header.scrolled {
    background: rgba(7, 16, 22, 0.95);
    border-bottom-color: var(--border);
}

.nav {
    height: 82px;

    display: flex;
    align-items: center;
    justify-content: space-between;

    gap: 30px;
}

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
}

.logo-icon {
    width: 46px;
    height: 46px;

    display: grid;
    place-items: center;

    border-radius: 12px;

    color: var(--accent);
    background: rgba(201,164,92,0.1);

    border: 1px solid rgba(201,164,92,0.25);
}

.logo strong {
    display: block;
    font-size: 16px;
}

.logo small {
    display: block;
    color: var(--muted);
    font-size: 10px;
}

.desktop-menu {
    display: flex;
    align-items: center;
    gap: 30px;
}

.desktop-menu a {
    color: #c9d0d4;
    font-size: 14px;
    transition: 0.25s;
}

.desktop-menu a:hover {
    color: var(--accent-light);
}

.nav-call {
    display: flex;
    align-items: center;
    gap: 8px;

    padding: 10px 18px;

    border: 1px solid rgba(201,164,92,0.4);
    border-radius: 10px;

    color: var(--accent-light);

    font-size: 13px;

    transition: 0.25s;
}

.nav-call:hover {
    background: var(--accent);
    color: #111;
}

.menu-toggle {
    display: none;

    background: none;
    border: 0;

    color: white;
    font-size: 22px;

    cursor: pointer;
}

.mobile-menu {
    display: none;
}


/* =====================================================
   HERO
===================================================== */

.hero {
    min-height: 800px;

    position: relative;

    padding-top: 160px;
    padding-bottom: 100px;

    overflow: hidden;

    background:
        radial-gradient(circle at 80% 25%, rgba(201,164,92,0.09), transparent 30%),
        radial-gradient(circle at 10% 80%, rgba(32,197,106,0.04), transparent 30%);
}

.hero-glow {
    position: absolute;

    width: 500px;
    height: 500px;

    top: 100px;
    left: -250px;

    border-radius: 50%;

    background: rgba(201,164,92,0.04);

    filter: blur(80px);

    pointer-events: none;
}

.hero-grid {
    display: grid;

    grid-template-columns: 1fr 0.9fr;

    align-items: center;

    gap: 80px;
}

.hero-content {
    position: relative;
    z-index: 2;
}

.availability {
    width: fit-content;

    display: flex;
    align-items: center;
    gap: 9px;

    padding: 7px 13px;

    border-radius: 50px;

    background: rgba(32,197,106,0.07);
    border: 1px solid rgba(32,197,106,0.18);

    color: #8ee4b3;

    font-size: 12px;

    margin-bottom: 25px;
}

.pulse {
    width: 7px;
    height: 7px;

    border-radius: 50%;

    background: #20c56a;

    box-shadow: 0 0 0 5px rgba(32,197,106,0.1);
}

.hero h1 {
    font-size: clamp(42px, 5vw, 68px);

    line-height: 1.2;

    letter-spacing: -1.5px;

    margin-bottom: 25px;
}

.hero h1 span {
    display: block;
    color: var(--accent);
}

.hero p {
    max-width: 650px;

    color: var(--muted);

    font-size: 17px;

    line-height: 2;
}

.hero-buttons {
    display: flex;
    gap: 12px;

    margin-top: 35px;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;

    gap: 10px;

    min-height: 52px;

    padding: 0 24px;

    border-radius: 10px;

    font-size: 14px;
    font-weight: 700;

    transition: 0.3s;

    cursor: pointer;
}

.btn-primary {
    color: #101010;
    background: var(--accent);
}

.btn-primary:hover {
    background: var(--accent-light);
    transform: translateY(-3px);
}

.btn-whatsapp {
    color: white;
    background: #159957;
}

.btn-whatsapp:hover {
    background: #20b867;
    transform: translateY(-3px);
}

.hero-features {
    display: flex;
    flex-wrap: wrap;

    gap: 25px;

    margin-top: 30px;

    color: #c7d0d4;

    font-size: 12px;
}

.hero-features i {
    color: var(--accent);
    margin-left: 5px;
}


/* =====================================================
   HERO IMAGE
===================================================== */

.hero-image {
    position: relative;
}

.image-frame {
    position: relative;

    height: 570px;

    overflow: hidden;

    border-radius: 25px;

    border: 1px solid rgba(255,255,255,0.1);

    box-shadow:
        0 30px 80px rgba(0,0,0,0.45);
}

.image-frame img {
    width: 100%;
    height: 100%;

    object-fit: cover;

    transition: transform 0.8s ease;
}

.image-frame:hover img {
    transform: scale(1.04);
}

.image-overlay {
    position: absolute;

    inset: 0;

    background:
        linear-gradient(
            to top,
            rgba(5,12,17,0.8),
            transparent 50%
        );
}

.image-badge {
    position: absolute;

    right: 20px;
    bottom: 20px;

    display: flex;
    align-items: center;
    gap: 8px;

    padding: 9px 14px;

    background: rgba(5,12,17,0.8);

    border: 1px solid rgba(255,255,255,0.12);

    backdrop-filter: blur(10px);

    border-radius: 10px;

    color: white;

    font-size: 12px;
}

.image-badge i {
    color: var(--accent);
}

.floating-card {
    position: absolute;

    left: -35px;
    bottom: 40px;

    display: flex;
    align-items: center;
    gap: 12px;

    padding: 15px 18px;

    border-radius: 14px;

    background: rgba(14,26,34,0.92);

    border: 1px solid rgba(255,255,255,0.1);

    box-shadow: 0 20px 40px rgba(0,0,0,0.3);

    backdrop-filter: blur(15px);
}

.floating-icon {
    width: 42px;
    height: 42px;

    display: grid;
    place-items: center;

    border-radius: 10px;

    background: rgba(201,164,92,0.12);

    color: var(--accent);
}

.floating-card strong {
    display: block;
    font-size: 13px;
}

.floating-card span {
    display: block;
    color: var(--muted);
    font-size: 10px;
}


/* =====================================================
   INFO
===================================================== */

.info-section {
    position: relative;

    margin-top: -50px;

    z-index: 10;
}

.info-grid {
    display: grid;

    grid-template-columns: repeat(3, 1fr);

    gap: 15px;
}

.info-card {
    display: flex;
    align-items: center;
    gap: 15px;

    padding: 22px;

    border-radius: 15px;

    background: rgba(16,28,36,0.95);

    border: 1px solid var(--border);

    backdrop-filter: blur(10px);
}

.info-icon {
    flex-shrink: 0;

    width: 48px;
    height: 48px;

    display: grid;
    place-items: center;

    border-radius: 12px;

    color: var(--accent);

    background: rgba(201,164,92,0.09);
}

.info-card span,
.info-card small {
    display: block;

    color: var(--muted);

    font-size: 10px;
}

.info-card strong {
    display: block;

    margin: 2px 0;

    font-size: 13px;
}


/* =====================================================
   SECTIONS
===================================================== */

.section {
    padding: 120px 0;
}

.section-heading {
    max-width: 720px;

    margin: 0 auto 60px;

    text-align: center;
}

.section-label {
    display: flex;
    align-items: center;
    justify-content: center;

    gap: 12px;

    color: var(--accent);

    font-size: 12px;
    font-weight: 700;

    margin-bottom: 15px;
}

.section-label span {
    width: 30px;
    height: 1px;

    background: var(--accent);
}

.section-heading h2,
.about h2,
.location h2 {
    font-size: clamp(30px, 4vw, 44px);

    line-height: 1.35;

    margin-bottom: 15px;
}

.section-heading h2 span,
.about h2 span {
    color: var(--accent);
}

.section-heading p {
    color: var(--muted);

    font-size: 14px;
}


/* =====================================================
   SERVICES
===================================================== */

.services {
    background: #09131a;
}

.services-grid {
    display: grid;

    grid-template-columns: repeat(3, 1fr);

    gap: 18px;
}

.service-card {
    position: relative;

    padding: 32px;

    border-radius: 18px;

    background: var(--card);

    border: 1px solid var(--border);

    overflow: hidden;

    transition: 0.35s ease;
}

.service-card::before {
    content: "";

    position: absolute;

    width: 150px;
    height: 150px;

    left: -70px;
    bottom: -70px;

    border-radius: 50%;

    background: rgba(201,164,92,0.06);

    transition: 0.4s;
}

.service-card:hover {
    transform: translateY(-8px);

    background: var(--card-hover);

    border-color: rgba(201,164,92,0.3);

    box-shadow: 0 20px 50px rgba(0,0,0,0.25);
}

.service-card:hover::before {
    transform: scale(2);
}

.service-number {
    position: absolute;

    top: 20px;
    left: 25px;

    color: rgba(255,255,255,0.08);

    font-size: 38px;

    font-weight: 800;
}

.service-icon {
    width: 58px;
    height: 58px;

    display: grid;
    place-items: center;

    border-radius: 15px;

    color: var(--accent);
    background: rgba(201,164,92,0.09);

    font-size: 21px;

    margin-bottom: 25px;
}

.service-card h3 {
    position: relative;

    font-size: 18px;

    margin-bottom: 12px;
}

.service-card p {
    position: relative;

    color: var(--muted);

    font-size: 13px;

    line-height: 2;
}

.service-card a {
    position: relative;

    display: inline-flex;
    align-items: center;
    gap: 10px;

    margin-top: 20px;

    color: var(--accent);

    font-size: 12px;
    font-weight: 700;
}

.service-card a i {
    transition: 0.3s;
}

.service-card a:hover i {
    transform: translateX(-5px);
}


/* =====================================================
   ABOUT
===================================================== */

.about {
    background: var(--bg);
}

.about-grid {
    display: grid;

    grid-template-columns: 1fr 0.8fr;

    gap: 100px;

    align-items: center;
}

.section-label-right {
    justify-content: flex-start;
}

.about-content h2 {
    max-width: 550px;
}

.about-content > p {
    color: var(--muted);

    font-size: 14px;

    max-width: 650px;

    margin-bottom: 15px;
}

.advantages {
    display: grid;

    grid-template-columns: 1fr 1fr;

    gap: 12px;

    margin-top: 30px;
}

.advantages div {
    display: flex;
    align-items: center;
    gap: 10px;

    color: #d6dce0;

    font-size: 13px;
}

.advantages i {
    width: 23px;
    height: 23px;

    display: grid;
    place-items: center;

    border-radius: 50%;

    background: rgba(201,164,92,0.1);

    color: var(--accent);

    font-size: 10px;
}

.about-visual {
    position: relative;

    min-height: 400px;
}

.about-box {
    position: absolute;

    width: 280px;

    padding: 30px;

    border-radius: 18px;

    background: var(--card);

    border: 1px solid var(--border);

    box-shadow: 0 25px 60px rgba(0,0,0,0.25);
}

.about-box:first-child {
    top: 0;
    right: 0;
}

.about-box:last-child {
    bottom: 0;
    left: 0;
}

.about-box i {
    display: block;

    color: var(--accent);

    font-size: 30px;

    margin-bottom: 15px;
}

.about-box strong {
    display: block;

    font-size: 17px;

    margin-bottom: 8px;
}

.about-box p {
    color: var(--muted);

    font-size: 12px;
}


/* =====================================================
   LOCATION
===================================================== */

.location {
    background: #09131a;
}

.location-card {
    display: grid;

    grid-template-columns: 1fr 0.9fr;

    border-radius: 25px;

    overflow: hidden;

    border: 1px solid var(--border);

    background: var(--card);
}

.location-content {
    padding: 55px;
}

.location-content > p {
    color: var(--muted);

    font-size: 14px;

    max-width: 550px;
}

.contact-details {
    margin-top: 30px;
}

.contact-row {
    display: flex;

    gap: 15px;

    padding: 17px 0;

    border-bottom: 1px solid var(--border);
}

.contact-row-icon {
    flex-shrink: 0;

    width: 42px;
    height: 42px;

    display: grid;
    place-items: center;

    border-radius: 10px;

    color: var(--accent);

    background: rgba(201,164,92,0.08);
}

.contact-row small {
    display: block;

    color: var(--muted);

    font-size: 10px;
}

.contact-row strong {
    display: block;

    font-size: 13px;

    margin-top: 2px;
}

.location-buttons {
    display: flex;

    gap: 10px;

    margin-top: 30px;
}

.location-buttons .btn {
    font-size: 12px;
    padding: 0 18px;
}

.map-placeholder {
    min-height: 550px;

    display: grid;
    place-items: center;

    background:
        linear-gradient(
            rgba(7,16,22,0.82),
            rgba(7,16,22,0.82)
        ),
        repeating-linear-gradient(
            45deg,
            #15242d 0,
            #15242d 1px,
            transparent 1px,
            transparent 40px
        );
}

.map-inner {
    text-align: center;

    padding: 40px;
}

.map-inner > i {
    width: 80px;
    height: 80px;

    display: grid;
    place-items: center;

    margin: 0 auto 20px;

    border-radius: 50%;

    color: var(--accent);

    background: rgba(201,164,92,0.08);

    border: 1px solid rgba(201,164,92,0.15);

    font-size: 30px;
}

.map-inner strong {
    display: block;

    font-size: 20px;
}

.map-inner span {
    display: block;

    color: var(--muted);

    font-size: 12px;

    margin-bottom: 25px;
}

.map-inner a {
    display: inline-flex;

    align-items: center;

    gap: 10px;

    color: var(--accent);

    font-size: 12px;
}


/* =====================================================
   FOOTER
===================================================== */

.footer {
    padding-top: 60px;

    background: #050b10;

    border-top: 1px solid var(--border);
}

.footer-content {
    display: grid;

    grid-template-columns: 1.5fr 1fr 1fr;

    gap: 40px;

    padding-bottom: 45px;
}

.footer-brand strong {
    font-size: 18px;

    color: var(--accent);
}

.footer-brand p {
    max-width: 350px;

    color: var(--muted);

    font-size: 12px;

    margin-top: 10px;
}

.footer-links {
    display: flex;

    flex-direction: column;

    gap: 8px;
}

.footer-links a,
.footer-contact a {
    color: var(--muted);

    font-size: 12px;

    transition: 0.2s;
}

.footer-links a:hover,
.footer-contact a:hover {
    color: var(--accent);
}

.footer-contact {
    display: flex;

    flex-direction: column;

    gap: 10px;
}

.footer-contact i {
    color: var(--accent);

    margin-left: 7px;
}

.copyright {
    padding: 18px;

    text-align: center;

    color: #68747c;

    font-size: 10px;

    border-top: 1px solid var(--border);
}


/* =====================================================
   FLOATING CONTACT
===================================================== */

.floating-contact {
    position: fixed;

    left: 20px;
    bottom: 20px;

    z-index: 999;

    display: flex;

    flex-direction: column;

    gap: 10px;
}

.floating-contact a {
    width: 52px;
    height: 52px;

    display: grid;
    place-items: center;

    border-radius: 50%;

    color: white;

    font-size: 20px;

    box-shadow: 0 10px 30px rgba(0,0,0,0.35);

    transition: 0.3s;
}

.floating-contact a:hover {
    transform: scale(1.08);
}

.floating-call {
    background: #253746;
}

.floating-whatsapp {
    background: #19b961;
}


/* =====================================================
   ANIMATIONS
===================================================== */

@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(25px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-content {
    animation: fadeUp 0.8s ease both;
}

.hero-image {
    animation: fadeUp 0.8s 0.15s ease both;
}


/* =====================================================
   RESPONSIVE
===================================================== */

@media (max-width: 1000px) {

    .desktop-menu {
        display: none;
    }

    .nav-call {
        margin-right: auto;
    }

    .menu-toggle {
        display: block;
    }

    .mobile-menu {
        display: none;

        flex-direction: column;

        padding: 15px 20px 25px;

        border-top: 1px solid var(--border);

        background: rgba(7,16,22,0.98);
    }

    .mobile-menu.active {
        display: flex;
    }

    .mobile-menu a {
        padding: 12px 0;

        color: #ccd4d8;

        border-bottom: 1px solid var(--border);
    }

    .hero-grid {
        grid-template-columns: 1fr;

        gap: 50px;
    }

    .hero {
        padding-top: 130px;
    }

    .hero-content {
        text-align: center;
    }

    .availability {
        margin-left: auto;
        margin-right: auto;
    }

    .hero p {
        margin: auto;
    }

    .hero-buttons,
    .hero-features {
        justify-content: center;
    }

    .hero-image {
        max-width: 700px;
        width: 100%;
        margin: auto;
    }

    .services-grid {
        grid-template-columns: 1fr 1fr;
    }

    .about-grid {
        grid-template-columns: 1fr;

        gap: 60px;
    }

    .about-content {
        text-align: center;
    }

    .section-label-right {
        justify-content: center;
    }

    .about-content h2,
    .about-content > p {
        margin-left: auto;
        margin-right: auto;
    }

    .advantages {
        text-align: right;
    }

    .about-visual {
        max-width: 600px;
        width: 100%;
        margin: auto;
    }

    .location-card {
        grid-template-columns: 1fr;
    }
}


@media (max-width: 700px) {

    .container {
        width: min(var(--container), calc(100% - 28px));
    }

    .nav {
        height: 72px;
    }

    .logo strong {
        font-size: 14px;
    }

    .logo small {
        display: none;
    }

    .nav-call {
        padding: 8px 12px;

        font-size: 11px;
    }

    .hero {
        min-height: auto;

        padding-top: 120px;
        padding-bottom: 80px;
    }

    .hero h1 {
        font-size: 38px;
    }

    .hero p {
        font-size: 14px;
    }

    .hero-buttons {
        flex-direction: column;
    }

    .hero-buttons .btn {
        width: 100%;
    }

    .hero-features {
        gap: 12px;

        flex-direction: column;
    }

    .image-frame {
        height: 430px;

        border-radius: 18px;
    }

    .floating-card {
        left: 10px;
        bottom: 20px;
    }

    .info-section {
        margin-top: -20px;
    }

    .info-grid {
        grid-template-columns: 1fr;
    }

    .section {
        padding: 80px 0;
    }

    .section-heading {
        margin-bottom: 40px;
    }

    .services-grid {
        grid-template-columns: 1fr;
    }

    .service-card {
        padding: 26px;
    }

    .about-visual {
        min-height: 480px;
    }

    .about-box {
        width: 240px;
    }

    .advantages {
        grid-template-columns: 1fr;

        text-align: right;
    }

    .location-content {
        padding: 30px 22px;
    }

    .location-buttons {
        flex-direction: column;
    }

    .location-buttons .btn {
        width: 100%;
    }

    .map-placeholder {
        min-height: 380px;
    }

    .footer-content {
        grid-template-columns: 1fr;

        gap: 25px;
    }

    .floating-contact {
        left: 14px;
        bottom: 14px;
    }

    .floating-contact a {
        width: 48px;
        height: 48px;
    }
}