@import url('https://fonts.googleapis.com/css2?family=Tajawal:wght@400;600;700;800;900&display=swap');

* {
    font-family: Tajawal, system-ui
}

body {
    background: #f7f8fb;
    color: #111827
}

.site-nav {
    position: sticky;
    top: 0;
    z-index: 50;
    background: rgba(15, 23, 42, .88);
    backdrop-filter: blur(18px);
    padding: 16px 0
}

.site-nav a {
    color: #fff;
    text-decoration: none
}

.logo {
    font-size: 28px;
    font-weight: 900
}

.hero {
    background: radial-gradient(circle at 20% 10%, #2563eb 0, #0f172a 40%, #020617 100%);
    color: white;
    padding: 110px 0 80px;
    overflow: hidden
}

.hero h1 {
    font-size: 62px;
    line-height: 1.15;
    font-weight: 900;
    margin: 22px 0
}

.hero p {
    font-size: 21px;
    color: #cbd5e1;
    line-height: 1.9
}

.pill {
    background: rgba(255, 255, 255, .12);
    border: 1px solid rgba(255, 255, 255, .2);
    padding: 10px 18px;
    border-radius: 999px
}

.hero-card {
    background: rgba(255, 255, 255, .10);
    border: 1px solid rgba(255, 255, 255, .18);
    border-radius: 34px;
    padding: 38px;
    box-shadow: 0 30px 80px rgba(0, 0, 0, .35)
}

.float-icon {
    font-size: 82px
}

.mini-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px
}

.mini-grid span {
    background: rgba(255, 255, 255, .12);
    padding: 14px;
    border-radius: 18px;
    text-align: center
}

.section {
    padding: 80px 0
}

.section.dark {
    background: #0f172a;
    color: white
}

.section.soft {
    background: #eef4ff
}

.section-head {
    text-align: center;
    margin-bottom: 38px
}

.section-head span {
    color: #2563eb;
    font-weight: 900
}

.section-head h2 {
    font-weight: 900;
    font-size: 42px
}

.section-head.light span {
    color: #93c5fd
}

.feature,
.product-card,
.service-mini,
.booking-form {
    background: white;
    border-radius: 28px;
    padding: 28px;
    box-shadow: 0 20px 50px rgba(15, 23, 42, .08);
    height: 100%
}

.feature {
    font-size: 36px
}

.feature h4 {
    font-weight: 900;
    margin-top: 18px
}

.feature p {
    font-size: 15px;
    color: #64748b
}

.product-card {
    padding: 0;
    overflow: hidden
}

.product-card img,
.placeholder {
    width: 100%;
    height: 220px;
    object-fit: cover;
    background: linear-gradient(135deg, #dbeafe, #f8fafc);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 72px
}

.product-card h4 {
    font-weight: 900
}

.product-card p {
    color: #64748b;
    min-height: 54px
}

.dark-card {
    background: #111827;
    color: white
}

.dark-card p {
    color: #cbd5e1
}

.service-mini {
    display: flex;
    flex-direction: column;
    gap: 8px
}

.service-mini small {
    color: #64748b
}

.service-mini strong {
    color: #2563eb
}

.booking {
    background: linear-gradient(135deg, #0f172a, #1d4ed8);
    color: white
}

.booking-form .form-control,
.booking-form .form-select {
    border-radius: 18px;
    padding: 15px
}

.footer {
    background: #020617;
    color: #cbd5e1;
    padding: 28px 0
}

@media(max-width:768px) {
    .hero h1 {
        font-size: 38px
    }

    .section-head h2 {
        font-size: 30px
    }

    .hero {
        padding: 70px 0
    }
}


