/*==================================================
SECTIONS
GiftMakkah
==================================================*/

/*==============================
Experience
==============================*/

.gm-story{

display:grid;

grid-template-columns:1fr 1fr;

align-items:center;

gap:90px;

}

.gm-story-content{

max-width:620px;

}

.gm-story-image img{

width:100%;

display:block;

border-radius:30px;

box-shadow:0 25px 60px rgba(0,0,0,.10);

}

/*==============================
Why GiftMakkah
==============================*/

.gm-why-grid{

display:grid;

grid-template-columns:repeat(4,1fr);

gap:28px;

margin-top:70px;

}

.gm-why-card{

background:#fff;

border-radius:24px;

padding:36px;

box-shadow:var(--gm-shadow);

transition:var(--gm-transition);

height:100%;

}

.gm-why-card:hover{

transform:translateY(-8px);

box-shadow:var(--gm-shadow-hover);

}

.gm-why-icon{

width:72px;

height:72px;

display:flex;

align-items:center;

justify-content:center;

border-radius:20px;

background:#F8F6F2;

font-size:32px;

margin-bottom:24px;

}

.gm-why-card h3{

font-size:23px;

margin-bottom:16px;

line-height:1.35;

}

.gm-why-card p{

color:var(--gm-text-light);

line-height:1.8;

}

/*==============================
Services
==============================*/

.gm-services-grid{

display:grid;

grid-template-columns:repeat(4,1fr);

gap:30px;

margin-top:70px;

}

/*==============================
Reviews
==============================*/

.gm-reviews-grid{

display:grid;

grid-template-columns:repeat(3,1fr);

gap:30px;

margin-top:70px;

}

.gm-reviews-grid strong{

display:block;

margin-top:18px;

color:var(--gm-primary);

}
/*==============================
FAQ
==============================*/

.gm-islamic-faq {
    padding: 90px 0;
    background: #ffffff;
}

.gm-islamic-faq-heading {
    max-width: 780px;
    margin: 0 auto;
    text-align: center;
}

.gm-faq {
    max-width: 920px;
    margin: 56px auto 0;
}

.gm-faq details {
    position: relative;
    overflow: hidden;
    margin-bottom: 16px;
    padding: 0;
    border: 1px solid rgba(190, 160, 90, 0.18);
    border-radius: 24px;
    background: #ffffff;
    box-shadow: 0 16px 45px rgba(18, 24, 38, 0.06);
    transition: 0.3s ease;
}

.gm-faq details:hover {
    transform: translateY(-2px);
    box-shadow: 0 24px 65px rgba(18, 24, 38, 0.10);
}

.gm-faq summary {
    position: relative;
    cursor: pointer;
    list-style: none;
    padding: 24px 64px 24px 26px;
    color: #111827;
    font-size: 19px;
    font-weight: 800;
    line-height: 1.45;
}

.gm-faq summary::-webkit-details-marker {
    display: none;
}

.gm-faq summary::after {
    content: "+";
    position: absolute;
    top: 50%;
    right: 26px;
    width: 34px;
    height: 34px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transform: translateY(-50%);
    border-radius: 999px;
    background: #fffaf2;
    color: #8f6e36;
    font-size: 22px;
    font-weight: 800;
    line-height: 1;
}

.gm-faq details[open] summary::after {
    content: "−";
    background: #b89457;
    color: #ffffff;
}

.gm-faq details p {
    margin: 0;
    padding: 0 26px 26px;
    color: #5f6673;
    font-size: 16px;
    line-height: 1.8;
}

/*==============================
SEO Content
==============================*/

.gm-seo-content {
    padding: 88px 0;
    background:
        radial-gradient(circle at top left, rgba(190, 160, 90, 0.12), transparent 34%),
        linear-gradient(180deg, #ffffff 0%, #fbf8f1 100%);
}

.gm-seo-card {
    max-width: 1080px;
    margin: 0 auto;
    padding: 52px;
    border: 1px solid rgba(190, 160, 90, 0.22);
    border-radius: 34px;
    background: rgba(255, 255, 255, 0.86);
    box-shadow: 0 22px 70px rgba(18, 24, 38, 0.07);
    text-align: center;
}

.gm-seo-eyebrow {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 16px;
    padding: 8px 16px;
    border-radius: 999px;
    background: #f4ead7;
    color: #8f6e36;
    font-size: 13px;
    font-weight: 900;
    letter-spacing: 0.04em;
    text-transform: uppercase;
}

.gm-seo-content h2 {
    max-width: 860px;
    margin: 0 auto 20px;
    color: #111827;
    font-size: clamp(28px, 4vw, 44px);
    line-height: 1.16;
    letter-spacing: -0.02em;
}

.gm-seo-content p {
    max-width: 820px;
    margin: 0 auto 16px;
    color: #4b5563;
    font-size: 17px;
    line-height: 1.8;
}

.gm-seo-points {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 14px;
    margin-top: 34px;
    text-align: left;
}

.gm-seo-points div {
    padding: 20px;
    border: 1px solid rgba(190, 160, 90, 0.18);
    border-radius: 22px;
    background: #fffaf2;
}

.gm-seo-points strong {
    display: block;
    margin-bottom: 8px;
    color: #111827;
    font-size: 15px;
    line-height: 1.35;
}

.gm-seo-points span {
    display: block;
    color: #6b7280;
    font-size: 14px;
    line-height: 1.55;
}

/*==============================
General Cards
==============================*/

.gm-card {
    background: #ffffff;
    border-radius: 24px;
    padding: 35px;
    box-shadow: var(--gm-shadow);
    transition: var(--gm-transition);
}

.gm-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--gm-shadow-hover);
}

/*==============================
Mobile
==============================*/

@media (max-width: 1024px) {
    .gm-seo-points {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 768px) {
    .gm-islamic-faq {
        padding: 64px 0;
    }

    .gm-faq {
        margin-top: 38px;
    }

    .gm-faq summary {
        padding: 22px 58px 22px 22px;
        font-size: 17px;
    }

    .gm-faq summary::after {
        right: 20px;
        width: 32px;
        height: 32px;
        font-size: 21px;
    }

    .gm-faq details p {
        padding: 0 22px 22px;
        font-size: 15.5px;
        line-height: 1.75;
    }

    .gm-seo-content {
        padding: 64px 0;
    }

    .gm-seo-card {
        padding: 34px 22px;
        border-radius: 28px;
    }

    .gm-seo-content h2 {
        font-size: 30px;
        line-height: 1.18;
    }

    .gm-seo-content p {
        font-size: 16px;
        line-height: 1.75;
    }

    .gm-seo-points {
        grid-template-columns: 1fr;
        gap: 12px;
        margin-top: 28px;
    }

    .gm-seo-points div {
        padding: 18px;
        border-radius: 20px;
    }
}
