:root {
    --hammadi-black: #090909;
    --hammadi-black-soft: #151515;
    --hammadi-black-light: #202020;
    --hammadi-white: #ffffff;
    --hammadi-cream: #f7f4ed;
    --hammadi-light: #f4f3ef;
    --hammadi-gray: #7b7b7b;
    --hammadi-border: #dedbd2;
    --hammadi-gold: #cda94f;
    --hammadi-gold-light: #e4c870;
    --hammadi-font-body: "DM Sans", sans-serif;
    --hammadi-font-heading: "Playfair Display", serif;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    background: var(--hammadi-white);
    color: #1b1b1b;
    font-family: var(--hammadi-font-body);
}

a {
    text-decoration: none;
}

img {
    max-width: 100%;
}

.site-header {
    position: relative;
    z-index: 1000;
}

.hammadi-navbar {
    min-height: 82px;
    background: rgba(7, 7, 7, 0.98);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.hammadi-brand,
.footer-brand {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: var(--hammadi-white);
}

.brand-symbol {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 42px;
    border: 1px solid rgba(255, 255, 255, 0.7);
    border-radius: 8px;
    font-size: 20px;
}

.brand-text {
    display: flex;
    flex-direction: column;
    line-height: 1;
    letter-spacing: 3px;
}

.brand-text strong {
    font-size: 19px;
}

.brand-text small {
    margin-top: 5px;
    font-size: 8px;
    letter-spacing: 6px;
}

.hammadi-navbar .nav-link {
    position: relative;
    padding: 29px 14px;
    color: rgba(255, 255, 255, 0.78);
    font-size: 14px;
    font-weight: 600;
}

.hammadi-navbar .nav-link:hover,
.hammadi-navbar .nav-link.active {
    color: var(--hammadi-white);
}

.hammadi-navbar .nav-link.active::after {
    position: absolute;
    right: 14px;
    bottom: 17px;
    left: 14px;
    height: 2px;
    background: var(--hammadi-gold);
    content: "";
}

.btn-hammadi-gold {
    border: 1px solid var(--hammadi-gold);
    background: var(--hammadi-gold);
    color: var(--hammadi-black);
    border-radius: 5px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.4px;
}

.btn-hammadi-gold:hover {
    border-color: var(--hammadi-gold-light);
    background: var(--hammadi-gold-light);
    color: var(--hammadi-black);
}

.btn-hammadi-outline {
    border: 1px solid rgba(205, 169, 79, 0.8);
    background: transparent;
    color: var(--hammadi-white);
    border-radius: 5px;
    font-weight: 600;
}

.btn-hammadi-outline:hover {
    border-color: var(--hammadi-gold);
    background: var(--hammadi-gold);
    color: var(--hammadi-black);
}

.btn-hammadi-dark {
    border: 1px solid var(--hammadi-black);
    background: var(--hammadi-black);
    color: var(--hammadi-white);
    border-radius: 5px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.3px;
}

.btn-hammadi-dark:hover {
    background: var(--hammadi-gold);
    border-color: var(--hammadi-gold);
    color: var(--hammadi-black);
}

.home-banner-section {
    background: var(--hammadi-black);
}

.promotion-banner-item {
    position: relative;
    min-height: 680px;
    overflow: hidden;
}

.promotion-banner-image {
    position: absolute;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.promotion-banner-overlay {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(
            90deg,
            rgba(0, 0, 0, 0.96) 0%,
            rgba(0, 0, 0, 0.83) 38%,
            rgba(0, 0, 0, 0.33) 70%,
            rgba(0, 0, 0, 0.22) 100%
        );
}

.promotion-banner-content {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
    min-height: 680px;
    color: var(--hammadi-white);
}

.promotion-banner-label,
.section-eyebrow {
    display: inline-block;
    color: var(--hammadi-gold);
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.promotion-banner-title {
    max-width: 750px;
    margin-top: 18px;
    font-family: var(--hammadi-font-heading);
    font-size: clamp(42px, 5.4vw, 78px);
    font-weight: 700;
    line-height: 1.08;
}

.promotion-banner-title span {
    color: var(--hammadi-gold);
}

.promotion-banner-description {
    max-width: 650px;
    margin-top: 24px;
    color: rgba(255, 255, 255, 0.83);
    font-size: 18px;
    line-height: 1.8;
}

.promotion-banner-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    margin-top: 32px;
}

.home-hero-default {
    display: flex;
    align-items: center;
    min-height: 680px;
    background:
        linear-gradient(
            90deg,
            rgba(0, 0, 0, 0.96),
            rgba(0, 0, 0, 0.35)
        ),
        url("../images/default-hero.jpg") center/cover no-repeat;
    color: var(--hammadi-white);
}

.carousel-indicators [data-bs-target] {
    width: 28px;
    height: 4px;
    border: 0;
    border-radius: 10px;
}

.carousel-indicators .active {
    background-color: var(--hammadi-gold);
}

.home-features {
    position: relative;
    z-index: 4;
    padding: 0;
    background: var(--hammadi-white);
}

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

.feature-card {
    min-height: 255px;
    padding: 52px 35px;
    border-right: 1px solid var(--hammadi-border);
    background: var(--hammadi-white);
}

.feature-card:first-child {
    border-left: 1px solid var(--hammadi-border);
}

.feature-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 58px;
    height: 58px;
    border-radius: 13px;
    background: var(--hammadi-black);
    color: var(--hammadi-gold);
    font-size: 25px;
}

.feature-card h2 {
    margin-top: 22px;
    font-family: var(--hammadi-font-heading);
    font-size: 21px;
}

.feature-card p {
    margin-bottom: 0;
    color: var(--hammadi-gray);
    font-size: 14px;
    line-height: 1.75;
}

.section-dark {
    background: var(--hammadi-black);
    color: var(--hammadi-white);
}

.home-packages {
    padding: 95px 0;
}

.section-heading {
    display: flex;
    align-items: end;
    justify-content: space-between;
    gap: 30px;
    margin-bottom: 42px;
}

.section-heading h2,
.section-heading-centered h2 {
    margin: 10px 0 0;
    font-family: var(--hammadi-font-heading);
    font-size: clamp(32px, 4vw, 48px);
}

.section-heading-centered {
    max-width: 750px;
    margin: 0 auto 48px;
    text-align: center;
}

.section-heading-centered p {
    margin: 14px 0 0;
    color: var(--hammadi-gray);
}

.package-card {
    height: 100%;
    overflow: hidden;
    border: 1px solid rgba(205, 169, 79, 0.22);
    border-radius: 10px;
    background: var(--hammadi-black-soft);
}

.package-image-wrapper {
    position: relative;
    height: 220px;
    overflow: hidden;
}

.package-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.package-card:hover .package-image {
    transform: scale(1.06);
}

.package-duration {
    position: absolute;
    top: 16px;
    right: 16px;
    padding: 7px 12px;
    border-radius: 5px;
    background: rgba(0, 0, 0, 0.85);
    color: var(--hammadi-white);
    font-size: 11px;
    font-weight: 700;
}

.package-body {
    padding: 24px;
}

.package-body h3 {
    font-family: var(--hammadi-font-heading);
    font-size: 23px;
}

.package-meta {
    display: grid;
    gap: 10px;
    margin: 20px 0;
    padding: 0;
    color: rgba(255, 255, 255, 0.7);
    font-size: 14px;
    list-style: none;
}

.package-meta i {
    width: 20px;
    color: var(--hammadi-gold);
}

.package-price {
    display: flex;
    flex-direction: column;
    margin-bottom: 22px;
}

.package-price span {
    color: rgba(255, 255, 255, 0.55);
    font-size: 12px;
}

.package-price strong {
    color: var(--hammadi-gold);
    font-size: 22px;
}

.package-note {
    margin: 28px 0 0;
    color: rgba(255, 255, 255, 0.55);
    font-size: 13px;
    text-align: center;
}

.digital-guide-section {
    padding: 110px 0;
    background: var(--hammadi-cream);
}

.digital-guide-title {
    margin-top: 14px;
    font-family: var(--hammadi-font-heading);
    font-size: clamp(40px, 5vw, 62px);
    line-height: 1.12;
}

.digital-guide-title span {
    display: block;
    color: var(--hammadi-gold);
}

.digital-guide-description {
    max-width: 620px;
    margin: 24px 0 30px;
    color: var(--hammadi-gray);
    font-size: 17px;
    line-height: 1.8;
}

.guide-features {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 18px;
    margin-top: 38px;
}

.guide-feature {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 14px;
    font-weight: 600;
}

.guide-feature i {
    color: var(--hammadi-gold);
    font-size: 24px;
}

.app-preview {
    position: relative;
    min-height: 520px;
}

.phone-mockup {
    position: absolute;
    width: 250px;
    height: 500px;
    padding: 11px;
    border: 7px solid #111;
    border-radius: 38px;
    background: #060606;
    box-shadow: 0 28px 55px rgba(0, 0, 0, 0.22);
}

.phone-mockup-back {
    top: 12px;
    right: 20px;
    transform: rotate(6deg);
}

.phone-mockup-front {
    top: 0;
    left: 70px;
    z-index: 2;
    transform: rotate(-4deg);
}

.phone-screen {
    height: 100%;
    padding: 30px 20px;
    overflow: hidden;
    border-radius: 27px;
    background: var(--hammadi-white);
}

.phone-screen-dark {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background:
        radial-gradient(circle at top, #252525, #060606 70%);
    color: var(--hammadi-white);
    text-align: center;
}

.phone-logo {
    color: var(--hammadi-gold);
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 4px;
}

.phone-screen h3 {
    margin-top: 24px;
    font-family: var(--hammadi-font-heading);
}

.phone-menu-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
    margin-top: 25px;
}

.phone-menu-grid span {
    padding: 15px 7px;
    border-radius: 10px;
    background: var(--hammadi-light);
    font-size: 11px;
    text-align: center;
}

.phone-main-icon {
    margin: 32px 0;
    color: var(--hammadi-gold);
    font-size: 55px;
}

.phone-coming-soon {
    padding: 9px 17px;
    border: 1px solid var(--hammadi-gold);
    border-radius: 30px;
    color: var(--hammadi-gold);
    font-size: 11px;
}

.journey-section {
    padding: 100px 0;
}

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

.journey-item {
    position: relative;
    text-align: center;
}

.journey-number {
    display: block;
    color: var(--hammadi-gold);
    font-size: 12px;
    font-weight: 700;
}

.journey-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 74px;
    height: 74px;
    margin: 14px auto;
    border: 1px solid var(--hammadi-border);
    border-radius: 50%;
    background: var(--hammadi-white);
    font-size: 25px;
}

.journey-item h3 {
    font-size: 15px;
    font-weight: 700;
}

.gallery-section {
    padding: 100px 0;
    background: var(--hammadi-light);
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 12px;
}

.gallery-item {
    position: relative;
    height: 230px;
    overflow: hidden;
    border-radius: 9px;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.gallery-overlay {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0, 0, 0, 0);
    color: transparent;
    font-size: 25px;
    transition: 0.3s ease;
}

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

.gallery-item:hover .gallery-overlay {
    background: rgba(0, 0, 0, 0.48);
    color: var(--hammadi-white);
}

.testimonial-section {
    padding: 100px 0;
}

.testimonial-card {
    max-width: 820px;
    margin: 0 auto;
    padding: 50px;
    border: 1px solid var(--hammadi-border);
    border-radius: 15px;
    background: var(--hammadi-cream);
    text-align: center;
}

.testimonial-stars {
    color: var(--hammadi-gold);
}

.testimonial-card blockquote {
    margin: 26px 0;
    font-family: var(--hammadi-font-heading);
    font-size: 22px;
    line-height: 1.65;
}

.testimonial-person {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 13px;
}

.testimonial-avatar {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: var(--hammadi-black);
    color: var(--hammadi-gold);
}

.testimonial-person div:last-child {
    display: flex;
    flex-direction: column;
    text-align: left;
}

.testimonial-person span {
    color: var(--hammadi-gray);
    font-size: 12px;
}

.cta-section {
    padding: 0 0 100px;
}

.cta-box {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 35px;
    padding: 58px;
    border-radius: 14px;
    background: var(--hammadi-black);
    color: var(--hammadi-white);
}

.cta-box h2 {
    margin: 9px 0;
    font-family: var(--hammadi-font-heading);
    font-size: 38px;
}

.cta-box p {
    margin: 0;
    color: rgba(255, 255, 255, 0.65);
}

.site-footer {
    padding: 80px 0 25px;
    background: #050505;
    color: rgba(255, 255, 255, 0.7);
}

.footer-description {
    max-width: 330px;
    margin: 22px 0;
    font-size: 14px;
    line-height: 1.8;
}

.footer-social {
    display: flex;
    gap: 11px;
}

.footer-social a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 38px;
    height: 38px;
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 50%;
    color: var(--hammadi-white);
}

.footer-social a:hover {
    border-color: var(--hammadi-gold);
    color: var(--hammadi-gold);
}

.footer-title {
    margin-bottom: 22px;
    color: var(--hammadi-white);
    font-size: 15px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.footer-links,
.footer-contact {
    display: grid;
    gap: 13px;
    margin: 0;
    padding: 0;
    list-style: none;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.65);
    font-size: 14px;
}

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

.footer-contact li {
    display: flex;
    gap: 11px;
    font-size: 14px;
}

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

.footer-bottom {
    display: flex;
    justify-content: space-between;
    gap: 20px;
    margin-top: 60px;
    padding-top: 24px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    font-size: 12px;
}

.footer-bottom p {
    margin: 0;
}

.floating-whatsapp {
    position: fixed;
    right: 24px;
    bottom: 24px;
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 57px;
    height: 57px;
    border-radius: 50%;
    background: var(--hammadi-gold);
    color: var(--hammadi-black);
    box-shadow: 0 12px 28px rgba(0, 0, 0, 0.24);
    font-size: 25px;
}

.floating-whatsapp:hover {
    color: var(--hammadi-black);
    transform: translateY(-3px);
}

@media (max-width: 1199.98px) {
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .feature-card:nth-child(3) {
        border-left: 1px solid var(--hammadi-border);
    }

    .journey-grid {
        grid-template-columns: repeat(3, 1fr);
        row-gap: 40px;
    }

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

@media (max-width: 991.98px) {
    .hammadi-navbar {
        padding: 14px 0;
    }

    .hammadi-navbar .nav-link {
        padding: 10px 0;
    }

    .hammadi-navbar .nav-link.active::after {
        display: none;
    }

    .promotion-banner-item,
    .promotion-banner-content,
    .home-hero-default {
        min-height: 620px;
    }

    .section-heading {
        align-items: flex-start;
        flex-direction: column;
    }

    .app-preview {
        max-width: 560px;
        margin: 0 auto;
    }

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

@media (max-width: 767.98px) {
    .promotion-banner-item,
    .promotion-banner-content,
    .home-hero-default {
        min-height: 600px;
    }

    .promotion-banner-overlay {
        background: rgba(0, 0, 0, 0.75);
    }

    .promotion-banner-title {
        font-size: 43px;
    }

    .promotion-banner-description {
        font-size: 16px;
    }

    .promotion-banner-actions {
        align-items: stretch;
        flex-direction: column;
    }

    .promotion-banner-actions .btn {
        width: 100%;
    }

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

    .feature-card,
    .feature-card:first-child,
    .feature-card:nth-child(3) {
        border-right: 1px solid var(--hammadi-border);
        border-bottom: 1px solid var(--hammadi-border);
        border-left: 1px solid var(--hammadi-border);
    }

    .home-packages,
    .digital-guide-section,
    .journey-section,
    .gallery-section,
    .testimonial-section {
        padding: 75px 0;
    }

    .guide-features {
        grid-template-columns: 1fr;
    }

    .app-preview {
        min-height: 470px;
    }

    .phone-mockup {
        width: 210px;
        height: 430px;
    }

    .phone-mockup-front {
        left: 10px;
    }

    .phone-mockup-back {
        right: 5px;
    }

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

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

    .gallery-item {
        height: 180px;
    }

    .testimonial-card {
        padding: 32px 22px;
    }

    .testimonial-card blockquote {
        font-size: 19px;
    }

    .cta-box {
        padding: 35px 25px;
    }

    .cta-box h2 {
        font-size: 31px;
    }

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

@media (max-width: 479.98px) {
    .brand-text strong {
        font-size: 16px;
    }

    .brand-text small {
        letter-spacing: 4px;
    }

    .promotion-banner-title {
        font-size: 37px;
    }

    .phone-mockup {
        width: 185px;
        height: 390px;
    }

    .phone-screen {
        padding: 25px 14px;
    }

    .phone-mockup-front {
        left: 0;
    }

    .phone-mockup-back {
        right: 0;
    }

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

    .gallery-item {
        height: 240px;
    }
}