:root {
    --bg: #fff7f2;
    --surface: #ffffff;
    --ink: #171016;
    --muted: #6c5f67;
    --red: #b70719;
    --red-dark: #850414;
    --pink: #c01d72;
    --orange: #f59b28;
    --gold: #ffd071;
    --border: rgba(23, 16, 22, 0.1);
    --shadow: 0 24px 70px rgba(133, 4, 20, 0.14);
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    overflow-x: hidden;
    font-family: "Cairo", sans-serif;
    background:
        radial-gradient(circle at top left, rgba(245, 155, 40, 0.2), transparent 34rem),
        radial-gradient(circle at 85% 18%, rgba(192, 29, 114, 0.18), transparent 26rem),
        var(--bg);
    color: var(--ink);
    line-height: 1.8;
}

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

.container {
    width: min(1120px, calc(100% - 32px));
    margin: 0 auto;
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 50;
    background: rgba(255, 247, 242, 0.82);
    backdrop-filter: blur(18px);
    border-bottom: 1px solid var(--border);
}

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

.brand,
.nav-links,
.hero-actions,
.hero-meta,
.contact-actions,
.footer-content {
    display: flex;
    align-items: center;
}

.brand {
    gap: 12px;
    font-weight: 900;
}

.logo-mark,
.large-logo {
    display: block;
    object-fit: contain;
    background: transparent;
}

.logo-mark {
    width: 132px;
    height: 58px;
}

.brand-text {
    font-size: 1.22rem;
}

.nav-links {
    gap: 24px;
    color: var(--muted);
    font-weight: 700;
}

.nav-links a:hover {
    color: var(--red);
}

.nav-call,
.btn,
.contact-link {
    border-radius: 999px;
    font-weight: 800;
}

.nav-call {
    padding: 10px 18px;
    color: #fff;
    background: linear-gradient(135deg, var(--red), var(--pink));
}

.hero {
    padding: 86px 0 56px;
    overflow: hidden;
}

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

.eyebrow,
.section-heading p,
.section-kicker {
    margin: 0 0 10px;
    color: var(--red);
    font-weight: 900;
    letter-spacing: 0.02em;
}

h1,
h2,
h3,
p {
    margin-top: 0;
}

h1 {
    max-width: 760px;
    margin-bottom: 20px;
    font-size: clamp(2.35rem, 5vw, 5rem);
    line-height: 1.15;
    letter-spacing: -0.04em;
}

.hero-text {
    max-width: 680px;
    margin-bottom: 30px;
    color: var(--muted);
    font-size: 1.16rem;
}

.hero-actions {
    flex-wrap: wrap;
    gap: 14px;
    margin-bottom: 26px;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 52px;
    padding: 0 25px;
}

.btn.primary {
    color: #fff;
    background: linear-gradient(135deg, var(--red), var(--pink));
    box-shadow: 0 18px 38px rgba(183, 7, 25, 0.22);
}

.btn.secondary {
    background: #fff;
    border: 1px solid var(--border);
}

.hero-meta {
    flex-wrap: wrap;
    gap: 12px;
    color: var(--muted);
    font-weight: 700;
}

.hero-meta span {
    padding: 9px 14px;
    border: 1px solid var(--border);
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.64);
}

.hero-card {
    position: relative;
    min-height: 480px;
    display: grid;
    place-items: center;
    border-radius: 38px;
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.95), rgba(255, 239, 228, 0.82));
    border: 1px solid rgba(255, 255, 255, 0.9);
    box-shadow: var(--shadow);
}

.large-logo {
    width: min(520px, 82vw);
    height: auto;
    max-height: 320px;
}

.floating-card {
    position: absolute;
    padding: 13px 18px;
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.92);
    box-shadow: 0 14px 42px rgba(23, 16, 22, 0.12);
    font-weight: 900;
}

.card-one {
    top: 54px;
    right: 42px;
}

.card-two {
    bottom: 68px;
    right: 28px;
}

.card-three {
    left: 30px;
    bottom: 148px;
}

.stats {
    padding: 18px 0 40px;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 16px;
    width: 100%;
    max-width: 100%;
    overflow: hidden;
}

.stats-grid div,
.feature-image-card,
.service-card,
.about-panel,
.seo-panel,
.map-card,
.contact-card {
    background: rgba(255, 255, 255, 0.82);
    border: 1px solid var(--border);
    box-shadow: 0 18px 55px rgba(23, 16, 22, 0.07);
}

.feature-image-card {
    min-width: 0;
    max-width: 100%;
    overflow: hidden;
    border-radius: 26px;
    text-align: center;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.feature-image-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow);
}

.feature-image-card img {
    display: block;
    width: 100%;
    max-width: 100%;
    height: 230px;
    object-fit: cover;
    object-position: center;
}

.feature-image-card h3 {
    margin: 0;
    padding: 18px 16px 20px;
    color: var(--ink);
    font-size: 1.25rem;
    font-weight: 900;
}

.section {
    padding: 72px 0;
}

.section-heading {
    max-width: 760px;
    margin-bottom: 32px;
}

.section-heading h2,
.about-grid h2,
.contact-card h2 {
    margin-bottom: 0;
    font-size: clamp(2rem, 4vw, 3.4rem);
    line-height: 1.25;
    letter-spacing: -0.03em;
}

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

.service-card {
    min-height: 250px;
    padding: 26px;
    border-radius: 28px;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.service-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow);
}

.service-number {
    display: inline-flex;
    margin-bottom: 22px;
    color: var(--orange);
    font-size: 1.8rem;
    font-weight: 900;
}

.service-card h3 {
    margin-bottom: 12px;
    font-size: 1.25rem;
}

.service-card p,
.about-panel,
.contact-card p {
    color: var(--muted);
}

.about {
    background: rgba(255, 255, 255, 0.42);
}

.about-grid {
    display: grid;
    grid-template-columns: 0.8fr 1.2fr;
    gap: 34px;
    align-items: start;
}

.about-panel {
    padding: 34px;
    border-radius: 30px;
    font-size: 1.08rem;
}

.about-panel ul {
    margin: 22px 0 0;
    padding-right: 22px;
    color: var(--ink);
    font-weight: 700;
}

.seo-section {
    padding-top: 30px;
}

.seo-panel {
    padding: 34px;
    border-radius: 30px;
}

.seo-panel h2 {
    max-width: 820px;
    margin-bottom: 16px;
    font-size: clamp(1.8rem, 3.4vw, 2.8rem);
    line-height: 1.3;
}

.seo-panel p:not(.section-kicker) {
    max-width: 940px;
    margin-bottom: 12px;
    color: var(--muted);
    font-size: 1.06rem;
}

.contact-card {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 28px;
    align-items: center;
    padding: 38px;
    border-radius: 34px;
    background:
        linear-gradient(135deg, rgba(183, 7, 25, 0.96), rgba(192, 29, 114, 0.92)),
        #9d0718;
    color: #fff;
    overflow: hidden;
}

.contact-card p,
.contact-card .section-kicker {
    color: rgba(255, 255, 255, 0.82);
}

.contact-actions {
    flex-direction: column;
    align-items: stretch;
    gap: 12px;
}

.contact-link {
    min-width: 220px;
    padding: 13px 20px;
    text-align: center;
    background: rgba(255, 255, 255, 0.14);
    border: 1px solid rgba(255, 255, 255, 0.22);
}

.contact-link.whatsapp {
    color: var(--ink);
    background: #fff;
}

.map-section {
    padding-top: 10px;
}

.map-card {
    display: grid;
    grid-template-columns: 0.78fr 1.22fr;
    gap: 28px;
    align-items: stretch;
    padding: 28px;
    border-radius: 34px;
}

.map-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.map-content h2 {
    margin-bottom: 12px;
    font-size: clamp(1.8rem, 3.4vw, 2.8rem);
    line-height: 1.3;
}

.map-content p {
    color: var(--muted);
    font-weight: 700;
}

.map-link {
    display: inline-flex;
    width: fit-content;
    margin-top: 14px;
    padding: 13px 22px;
    border-radius: 999px;
    color: #fff;
    background: linear-gradient(135deg, var(--red), var(--pink));
    font-weight: 900;
}

.map-frame {
    min-height: 360px;
    overflow: hidden;
    border-radius: 26px;
    border: 1px solid var(--border);
}

.map-frame iframe {
    display: block;
    width: 100%;
    height: 100%;
    min-height: 360px;
}

.site-footer {
    padding: 28px 0;
    color: var(--muted);
    border-top: 1px solid var(--border);
}

.footer-content {
    justify-content: space-between;
    gap: 16px;
    font-weight: 700;
}

@media (max-width: 1040px) {
    .stats-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .feature-image-card img {
        height: 220px;
    }

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

@media (max-width: 860px) {
    .nav-links {
        display: none;
    }

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

    .hero {
        padding-top: 58px;
    }

    .hero-card {
        min-height: 380px;
    }

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

    .feature-image-card img {
        height: 210px;
    }

    .contact-actions {
        width: 100%;
    }
}

@media (max-width: 560px) {
    .navbar {
        min-height: 72px;
    }

    .nav-call {
        display: none;
    }

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

    .feature-image-card img {
        height: 180px;
    }

    .feature-image-card h3 {
        font-size: 1.05rem;
        padding: 14px 12px 16px;
    }

    .section {
        padding: 52px 0;
    }

    .floating-card {
        font-size: 0.88rem;
    }

    .card-one {
        right: 16px;
    }

    .card-two {
        right: 16px;
        bottom: 40px;
    }

    .card-three {
        left: 16px;
        bottom: 118px;
    }

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