@import url('https://fonts.googleapis.com/css2?family=Cinzel+Decorative:wght@400;700&family=Cormorant+Garamond:ital,wght@0,300;0,600;1,300&family=Rajdhani:wght@300;500;700&display=swap');

:root {
    --gold: #d4af37;
    --gold-light: #b8962e;
    --gold-dim: rgba(212,175,55,0.15);
    --gold-glow: rgba(212,175,55,0.3);
    --black: #000000;
    --deep: #fafafa;
    --panel: rgba(255,255,255,0.95);
    --border: rgba(212,175,55,0.3);
    --text: #444455;
    --white: #111111;
    --ease: cubic-bezier(0.23,1,0.32,1);
}

*, *::before, *::after { margin:0; padding:0; box-sizing:border-box; }

html { scroll-behavior: smooth; }

body {
    font-family: 'Rajdhani', sans-serif;
    background: var(--deep);
    color: var(--text);
    overflow-x: hidden;
    cursor: default;
}

/* ── STAR CANVAS ── */
#stars-canvas {
    position: fixed;
    inset: 0;
    z-index: 0;
    pointer-events: none;
}

/* ── ISLAMIC PATTERN LAYER ── */
body::before {
    content: '';
    position: fixed;
    inset: 0;
    z-index: 0;
    opacity: 0.04;
    background-image: url("data:image/svg+xml,%3Csvg width='80' height='80' viewBox='0 0 80 80' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='%23d4af37'%3E%3Cpolygon points='40,4 48,16 62,12 58,26 70,34 58,42 62,56 48,52 40,64 32,52 18,56 22,42 10,34 22,26 18,12 32,16'/%3E%3C/g%3E%3C/svg%3E");
    pointer-events: none;
}

/* ── HEADER ── */
header {
    position: sticky;
    top: 0;
    z-index: 999;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.4rem 6%;
    background: rgba(0,0,0,0.85);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--border);
}

.logo { display:flex; align-items:center; }
.logo img { height:95px; filter: drop-shadow(0 0 10px rgba(212,175,55,0.4)); transition: filter .4s, transform .4s; }
.logo img:hover { filter: drop-shadow(0 0 20px var(--gold)); transform: scale(1.05); }

.header-hadith {
    flex: 1;
    text-align: center;
    padding: 0 1.5rem;
}
.header-hadith .arabic {
    font-size: 1rem;
    color: var(--gold);
    letter-spacing: 1px;
    display: block;
    line-height: 1.6;
    font-family: 'Cormorant Garamond', serif;
}
.header-hadith .translation {
    font-size: 0.78rem;
    color: #ccc;
    display: block;
    margin-top: 3px;
    font-style: italic;
    line-height: 1.4;
}
.header-hadith .source {
    font-size: 0.68rem;
    color: rgba(212,175,55,0.6);
    display: block;
    margin-top: 3px;
    letter-spacing: 1px;
    text-transform: uppercase;
}

nav { display:flex; align-items:center; gap:2.5rem; }

nav a {
    font-family: 'Rajdhani', sans-serif;
    font-weight: 700;
    font-size: 1.05rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: #ffffff; /* Keep nav text white against dark header */
    text-decoration: none;
    position: relative;
    padding-bottom: 4px;
    transition: color .3s;
}
nav a::after {
    content: '';
    position: absolute;
    bottom: 0; left: 50%;
    transform: translateX(-50%);
    width: 0; height: 1px;
    background: var(--gold);
    box-shadow: 0 0 8px var(--gold);
    transition: width .4s var(--ease);
}
nav a:hover { color: var(--gold); }
nav a:hover::after { width: 100%; }

.btn-nav {
    border: 1px solid var(--gold);
    border-radius: 40px;
    padding: 0.5rem 1.8rem;
    color: var(--gold) !important;
    font-weight: 700;
    letter-spacing: 2px;
    transition: background .3s, box-shadow .3s !important;
}
.btn-nav:hover {
    background: var(--gold) !important;
    color: #000 !important;
    box-shadow: 0 0 25px var(--gold-glow) !important;
}
.btn-nav::after { display:none !important; }

/* ── HERO ── */
.hero {
    position: relative;
    z-index: 1;
    min-height: calc(100vh - 80px);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 2rem 6%;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse 80% 60% at 50% 60%, rgba(212,175,55,0.07) 0%, transparent 70%),
        radial-gradient(ellipse 40% 40% at 20% 80%, rgba(212,175,55,0.05) 0%, transparent 60%);
    z-index: -1;
}

.hero-badge {
    position: absolute;
    top: 30px;
    right: 6%;
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px 18px;
    background: rgba(255,255,255,0.9);
    border: 1px solid var(--border);
    border-radius: 50px;
    backdrop-filter: blur(12px);
    text-decoration: none;
    transition: border-color .3s, box-shadow .3s, transform .3s;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}
.hero-badge:hover {
    border-color: var(--gold);
    box-shadow: 0 0 20px var(--gold-glow);
    transform: scale(1.04);
}
.hero-badge img {
    width: 44px; height: 44px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid var(--gold);
}
.hero-badge span { display: block; }
.hero-badge .badge-name { color: var(--gold-light); font-weight: 700; font-size: 1rem; letter-spacing: 1px; }
.hero-badge .badge-title { color: #666; font-size: 0.78rem; margin-top: 2px; }

.arabic-opener {
    font-size: 1.8rem;
    color: var(--gold);
    font-family: 'Cormorant Garamond', serif;
    font-style: italic;
    letter-spacing: 6px;
    opacity: 0.8;
    margin-bottom: 0.5rem;
    animation: fadeDown 1s var(--ease) both;
}

.hero h1 {
    font-family: 'Cinzel Decorative', serif;
    font-size: clamp(2rem, 4.5vw, 4.5rem);
    font-weight: 700;
    color: var(--white);
    line-height: 1.1;
    text-shadow: 0 0 60px rgba(212,175,55,0.3);
    animation: fadeDown 1s .2s var(--ease) both;
}
.hero h1 em {
    font-style: normal;
    background: linear-gradient(135deg, var(--gold-light), var(--gold));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-sub {
    margin-top: 0.5rem;
    margin-bottom: 2rem;
    font-size: 1.2rem;
    font-weight: 700;
    max-width: 760px;
    color: #111;
    line-height: 1.7;
    text-shadow: 0 0 15px rgba(255, 255, 255, 0.9), 0 0 30px rgba(255, 255, 255, 1);
    position: relative;
    z-index: 10;
    animation: fadeUp 1s .4s var(--ease) both;
}

.hero-divider {
    margin: 1.5rem auto;
    width: 120px;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--gold), transparent);
    box-shadow: 0 0 10px var(--gold);
    animation: fadeUp 1s .5s var(--ease) both;
}

.hero-btns {
    display: flex;
    gap: 1.5rem;
    animation: fadeUp 1s .6s var(--ease) both;
}

.btn-primary {
    font-family: 'Rajdhani', sans-serif;
    font-weight: 700;
    font-size: 1.1rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    text-decoration: none;
    padding: 0.85rem 2.5rem;
    border-radius: 4px;
    position: relative;
    overflow: hidden;
    transition: all .4s var(--ease);
    display: inline-block;
    border: 1px solid var(--gold);
}
.btn-primary.solid {
    background: var(--gold);
    color: #000;
}
.btn-primary.solid:hover {
    background: var(--gold-light);
    box-shadow: 0 0 30px var(--gold-glow), 0 8px 20px rgba(0,0,0,0.6);
    transform: translateY(-3px);
}
.btn-primary.outline {
    background: transparent;
    color: var(--gold);
}
.btn-primary.outline:hover {
    background: rgba(212,175,55,0.1);
    box-shadow: 0 0 20px var(--gold-glow);
    transform: translateY(-3px);
}

/* ── SECTION BASE ── */
section { position: relative; z-index: 1; padding: 7rem 6%; }

.section-header {
    text-align: center;
    margin-bottom: 5rem;
}
.section-kicker {
    font-size: 0.85rem;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 0.8rem;
    display: block;
}
.section-title {
    font-family: 'Cinzel Decorative', serif;
    font-size: clamp(1.8rem, 3vw, 3rem);
    font-weight: 700;
    color: var(--white);
    position: relative;
    display: inline-block;
}
.section-title::after {
    content: '';
    display: block;
    margin: 1rem auto 0;
    width: 60px; height: 2px;
    background: linear-gradient(90deg, transparent, var(--gold), transparent);
    box-shadow: 0 0 8px var(--gold);
}

/* ── VIDEOS GRID ── */
.videos-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
}
.video-card {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    border: 1px solid var(--border);
    transition: transform .4s var(--ease), box-shadow .4s var(--ease), border-color .4s;
    background: var(--panel);
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
}
.video-card:hover {
    transform: translateY(-8px) scale(1.01);
    border-color: var(--gold);
    box-shadow: 0 20px 50px rgba(0,0,0,0.15), 0 0 30px rgba(212,175,55,0.2);
}
.video-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--gold), transparent);
    opacity: 0;
    transition: opacity .4s;
}
.video-card:hover::before { opacity: 1; }
.video-wrapper {
    position: relative;
    padding-bottom: 56.25%;
    height: 0;
}
.video-wrapper iframe {
    position: absolute;
    inset: 0;
    width: 100%; height: 100%;
}

/* ── PROGRAM CARDS ── */
.programs-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}
.program-card {
    background: var(--panel);
    backdrop-filter: blur(12px);
    border: 1px solid var(--border);
    border-radius: 16px;
    padding: 2.5rem;
    position: relative;
    overflow: hidden;
    transition: transform .4s var(--ease), border-color .4s, box-shadow .4s;
    box-shadow: 0 10px 30px rgba(0,0,0,0.04);
}
.program-card:hover {
    transform: translateY(-8px);
    border-color: rgba(212,175,55,0.6);
    box-shadow: 0 20px 50px rgba(0,0,0,0.1), 0 0 20px rgba(212,175,55,0.2);
}
.program-card .card-icon {
    font-size: 2.5rem;
    margin-bottom: 1.2rem;
    display: block;
}
.program-card h3 {
    font-family: 'Cinzel Decorative', serif;
    font-size: 1.2rem;
    color: var(--gold-light);
    margin-bottom: 1rem;
    font-weight: 700;
}
.program-card p { color: var(--text); font-size: 1.05rem; line-height: 1.7; font-weight: 500; }
.program-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at top left, rgba(212,175,55,0.05), transparent 60%);
    pointer-events: none;
}

/* ── SCHEDULE BLOCKS ── */
.schedule-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    max-width: 900px;
    margin: 0 auto;
}
.schedule-card {
    border: 1px solid var(--border);
    border-radius: 16px;
    padding: 3rem 2.5rem;
    text-align: center;
    background: var(--panel);
    backdrop-filter: blur(12px);
    position: relative;
    overflow: hidden;
    transition: border-color .4s, box-shadow .4s;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
}
.schedule-card:hover {
    border-color: var(--gold);
    box-shadow: 0 0 40px rgba(212,175,55,0.2);
}
.schedule-card .time {
    font-family: 'Cinzel Decorative', serif;
    font-size: 2rem;
    color: var(--gold-light);
    margin: 0.8rem 0;
}
.schedule-card h3 {
    font-family: 'Rajdhani', sans-serif;
    font-size: 1.3rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--white);
    font-weight: 700;
}
.schedule-card p { color: var(--text); margin-top: 0.5rem; font-weight: 500; }

/* ── ABOUT / SHEIKH ── */
.sheikh-layout {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 5rem;
    align-items: start;
}
.sheikh-photo-wrap {
    position: relative;
}
.sheikh-photo-wrap::before {
    content: '';
    position: absolute;
    inset: -2px;
    border-radius: 20px;
    background: linear-gradient(135deg, var(--gold), transparent, var(--gold));
    z-index: 0;
    opacity: 0.6;
}
.sheikh-photo-wrap img {
    position: relative;
    z-index: 1;
    width: 100%;
    border-radius: 18px;
    display: block;
    filter: contrast(1.05);
}

.sheikh-info h2 {
    font-family: 'Cinzel Decorative', serif;
    font-size: 2.2rem;
    color: var(--white);
    margin-bottom: 0.5rem;
}
.sheikh-info .sanad-tag {
    display: inline-block;
    font-size: 0.8rem;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--gold);
    border: 1px solid var(--border);
    border-radius: 30px;
    padding: 4px 14px;
    margin-bottom: 2rem;
}
.sheikh-info p { color: var(--text); font-size: 1.15rem; line-height: 1.8; margin-bottom: 1.2rem; font-weight: 500; }

.sanad-box {
    margin-top: 2.5rem;
    padding: 2rem 2.5rem;
    background: rgba(212,175,55,0.05);
    border: 1px solid var(--border);
    border-left: 3px solid var(--gold);
    border-radius: 0 12px 12px 0;
}
.sanad-box h4 {
    font-family: 'Rajdhani', sans-serif;
    font-size: 1rem;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--gold-light);
    margin-bottom: 0.8rem;
    font-weight: 700;
}
.sanad-box p { color: var(--text); font-size: 1.05rem; line-height: 1.7; margin: 0; font-weight: 500; }

/* ── BLOG CARDS ── */
.blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
    gap: 2.5rem;
}
.blog-card {
    background: var(--panel);
    border: 1px solid var(--border);
    border-radius: 16px;
    overflow: hidden;
    transition: transform .4s var(--ease), border-color .4s, box-shadow .4s;
    box-shadow: 0 10px 20px rgba(0,0,0,0.05);
}
.blog-card:hover {
    transform: translateY(-8px);
    border-color: rgba(212,175,55,0.5);
    box-shadow: 0 20px 50px rgba(0,0,0,0.1), 0 0 20px rgba(212,175,55,0.2);
}
.blog-card img { width: 100%; height: 200px; object-fit: cover; filter: brightness(0.85); transition: filter .4s; }
.blog-card:hover img { filter: brightness(1); }
.blog-content { padding: 2rem; }
.blog-content .tag {
    font-size: 0.75rem;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--gold-light);
    margin-bottom: 0.8rem;
    display: block;
    font-weight: 700;
}
.blog-content h3 { font-family:'Cinzel Decorative', serif; font-size:1.3rem; color:var(--white); margin-bottom:1rem; font-weight:700; line-height:1.4; }
.blog-content p { color:var(--text); font-size:1rem; line-height:1.7; margin-bottom:1.5rem; font-weight: 500;}
.blog-content a { color:var(--gold); font-size:0.9rem; letter-spacing:2px; text-transform:uppercase; text-decoration:none; transition: text-shadow .3s; }
.blog-content a:hover { text-shadow: 0 0 10px var(--gold-glow); }

/* ── FORM ── */
.form-container {
    max-width: 820px;
    margin: 0 auto;
    padding: 4rem;
    background: var(--panel);
    backdrop-filter: blur(15px);
    border: 1px solid var(--border);
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.05);
}
.form-section-title {
    font-family: 'Rajdhani', sans-serif;
    font-size: 0.8rem;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: var(--gold);
    border-bottom: 1px solid var(--border);
    padding-bottom: 0.8rem;
    margin-bottom: 2rem;
}
.form-group { margin-bottom: 1.8rem; }
.form-group label {
    display: block;
    font-size: 0.85rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--text);
    margin-bottom: 0.6rem;
    font-weight: 700;
}
.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    background: #ffffff;
    border: 1px solid rgba(0,0,0,0.1);
    border-radius: 8px;
    padding: 1rem 1.2rem;
    color: var(--white);
    font-family: 'Rajdhani', sans-serif;
    font-size: 1.1rem;
    transition: border-color .3s, box-shadow .3s;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--gold);
    box-shadow: 0 0 0 3px rgba(212,175,55,0.2);
}
.form-group select option { background: #ffffff; }

/* ── FOOTER ── */
footer {
    position: relative;
    z-index: 1;
    background: #000;
    border-top: 1px solid var(--border);
    padding: 4rem 6% 2rem;
}
.footer-inner {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    flex-wrap: wrap;
    gap: 3rem;
    max-width: 1200px;
    margin: 0 auto 3rem;
}
.footer-logo img { height:130px; filter:drop-shadow(0 0 8px rgba(212,175,55,0.2)); transition: transform .4s; }
.footer-logo img:hover { transform: scale(1.05); }
.footer-info h4 { font-family:'Rajdhani',sans-serif; font-size:0.8rem; letter-spacing:3px; text-transform:uppercase; color:var(--gold); margin-bottom:1rem; }
.footer-info p { color:#666; font-size:1rem; line-height:1.9; }
.footer-info strong { color:#aaa; }
.footer-bottom {
    text-align: center;
    color: #444;
    font-size: 0.9rem;
    border-top: 1px solid rgba(255,255,255,0.04);
    padding-top: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

/* ── ANIMATIONS ── */
@keyframes fadeDown { from { opacity:0; transform:translateY(-20px); } to { opacity:1; transform:translateY(0); } }
@keyframes fadeUp { from { opacity:0; transform:translateY(30px); } to { opacity:1; transform:translateY(0); } }

/* ── SCROLL REVEAL ── */
.reveal { opacity:0; transform:translateY(40px); transition:opacity .9s var(--ease), transform .9s var(--ease); }
.reveal.visible { opacity:1; transform:translateY(0); }

/* ── HAMBURGER BUTTON ── */
.hamburger {
    display: none;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    z-index: 1001;
    flex-shrink: 0;
}
.hamburger span {
    display: block;
    width: 26px;
    height: 2px;
    background: var(--gold);
    border-radius: 2px;
    transition: transform 0.35s var(--ease), opacity 0.3s;
    transform-origin: center;
}
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ── MOBILE NAV OVERLAY ── */
.mobile-nav {
    display: none;
    position: fixed;
    inset: 0;
    z-index: 1000;
    background: rgba(0,0,0,0.97);
    backdrop-filter: blur(20px);
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 2.5rem;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.4s var(--ease);
}
.mobile-nav.open {
    opacity: 1;
    pointer-events: all;
}
.mobile-nav a {
    font-family: 'Cinzel Decorative', serif;
    font-size: 1.6rem;
    color: #fff;
    text-decoration: none;
    letter-spacing: 3px;
    transition: color 0.3s;
    position: relative;
}
.mobile-nav a::after {
    content: '';
    position: absolute;
    bottom: -4px; left: 50%;
    transform: translateX(-50%);
    width: 0; height: 2px;
    background: var(--gold);
    transition: width 0.4s var(--ease);
}
.mobile-nav a:hover { color: var(--gold); }
.mobile-nav a:hover::after { width: 100%; }
.mobile-nav .btn-nav-mobile {
    border: 1px solid var(--gold);
    border-radius: 40px;
    padding: 0.8rem 2.5rem;
    color: var(--gold) !important;
    margin-top: 1rem;
}
.mobile-nav .btn-nav-mobile:hover {
    background: var(--gold);
    color: #000 !important;
}
.mobile-nav-hadith {
    margin-top: 2rem;
    text-align: center;
    padding: 0 2rem;
    border-top: 1px solid rgba(212,175,55,0.2);
    padding-top: 2rem;
}
.mobile-nav-hadith .arabic {
    font-size: 1.1rem;
    color: var(--gold);
    display: block;
    font-family: 'Cormorant Garamond', serif;
    line-height: 1.8;
    margin-bottom: 0.5rem;
}
.mobile-nav-hadith .source {
    font-size: 0.75rem;
    color: #666;
    letter-spacing: 1px;
}

/* ── WHATSAPP ── */
.whatsapp-btn {
    position: fixed;
    bottom: 24px;
    right: 24px;
    background: #25d366;
    color: white;
    padding: 12px 22px;
    border-radius: 50px;
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    z-index: 1000;
    box-shadow: 0 4px 15px rgba(37,211,102,0.4);
    font-family: 'Rajdhani', sans-serif;
    font-weight: 700;
    font-size: 1rem;
    letter-spacing: 1px;
    transition: transform 0.3s, box-shadow 0.3s;
}
.whatsapp-btn:hover { transform: translateY(-3px); box-shadow: 0 8px 25px rgba(37,211,102,0.5); color: white; }

/* ── TABLET ── */
@media (max-width: 1024px) {
    .sheikh-layout { gap: 3rem; }
    .hero h1 { font-size: clamp(2rem, 5vw, 4rem); }
}

/* ── MOBILE ── */
@media (max-width: 768px) {

    /* Header */
    header {
        padding: 0.5rem 5%;
        flex-wrap: nowrap;
    }
    .header-hadith { display: none; }
    nav { display: none; }
    .hamburger { display: flex; }
    .mobile-nav { display: flex; }
    .logo img { height: 65px; }

    /* Hero */
    .hero {
        padding: 5rem 5% 3rem;
        min-height: auto;
    }
    .hero img { display: none; } /* hide background images on mobile */
    .hero-badge {
        position: relative;
        top: auto; right: auto;
        margin-bottom: 1.5rem;
        align-self: center;
    }
    .arabic-opener { font-size: 1.2rem; letter-spacing: 3px; }
    .hero h1 { font-size: 2rem; }
    .hero-sub { font-size: 1rem; }
    .hero-btns { flex-direction: column; gap: 1rem; width: 100%; }
    .btn-primary { text-align: center; width: 100%; }

    /* Sections */
    section { padding: 4rem 5%; }
    .section-header { margin-bottom: 3rem; }

    /* Grids */
    .videos-grid { grid-template-columns: 1fr; }
    .programs-grid { grid-template-columns: 1fr; }
    .schedule-grid { grid-template-columns: 1fr; }
    .blog-grid { grid-template-columns: 1fr; }

    /* Sheikh */
    .sheikh-layout { grid-template-columns: 1fr; gap: 2rem; }
    .sheikh-info h2 { font-size: 1.6rem; }
    .sheikh-photo-wrap { max-width: 280px; margin: 0 auto; }
    .sheikh-photo-wrap img { width: 100%; height: auto; object-fit: contain; display: block; }

    /* Form */
    .form-container { padding: 2rem 1.5rem; }

    /* Footer */
    .footer-inner { flex-direction: column; align-items: center; text-align: center; gap: 2rem; }
    .footer-logo img { height: 90px; }

    /* WhatsApp - icon only */
    .whatsapp-btn span { display: none; }
    .whatsapp-btn { padding: 14px; }

    /* Schedule time font */
    .schedule-card .time { font-size: 1.5rem; }
}

@media (max-width: 480px) {
    .hero h1 { font-size: 1.7rem; }
    .section-title { font-size: 1.5rem; }
    .form-container { padding: 1.5rem 1rem; }
    .sanad-box { padding: 1.5rem; }
}

