/* ============================
   QuranWithArshad.com
   Shared Styles
   ============================ */

/* Islamic Geometric Pattern Background (SVG-based, subtle) */
.islamic-pattern {
    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='none' stroke='%230A3D33' stroke-width='0.5' opacity='0.04'%3E%3Cpath d='M40 0L80 40L40 80L0 40Z'/%3E%3Cpath d='M20 0L40 20L20 40L0 20Z'/%3E%3Cpath d='M60 0L80 20L60 40L40 20Z'/%3E%3Cpath d='M20 40L40 60L20 80L0 60Z'/%3E%3Cpath d='M60 40L80 60L60 80L40 60Z'/%3E%3Ccircle cx='40' cy='40' r='8'/%3E%3Ccircle cx='0' cy='0' r='4'/%3E%3Ccircle cx='80' cy='0' r='4'/%3E%3Ccircle cx='0' cy='80' r='4'/%3E%3Ccircle cx='80' cy='80' r='4'/%3E%3C/g%3E%3C/svg%3E");
    background-repeat: repeat;
}

.islamic-pattern-light {
    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='none' stroke='%23C9A227' stroke-width='0.5' opacity='0.06'%3E%3Cpath d='M40 0L80 40L40 80L0 40Z'/%3E%3Cpath d='M20 0L40 20L20 40L0 20Z'/%3E%3Cpath d='M60 0L80 20L60 40L40 20Z'/%3E%3Cpath d='M20 40L40 60L20 80L0 60Z'/%3E%3Cpath d='M60 40L80 60L60 80L40 60Z'/%3E%3Ccircle cx='40' cy='40' r='8'/%3E%3Ccircle cx='0' cy='0' r='4'/%3E%3Ccircle cx='80' cy='0' r='4'/%3E%3Ccircle cx='0' cy='80' r='4'/%3E%3Ccircle cx='80' cy='80' r='4'/%3E%3C/g%3E%3C/svg%3E");
    background-repeat: repeat;
}

/* Navigation Links */
.nav-link {
    position: relative;
    padding: 8px 16px;
    font-size: 0.875rem;
    font-weight: 500;
    color: rgba(44, 44, 44, 0.65);
    text-decoration: none;
    transition: color 0.25s ease, background-color 0.25s ease;
    border-radius: 8px;
}
.nav-link::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, #C9A227, #D4B545);
    border-radius: 2px;
    transition: width 0.3s ease;
}
.nav-link:hover {
    color: #0A3D33;
    background-color: rgba(10, 61, 51, 0.04);
}
.nav-link:hover::after {
    width: 60%;
}
.nav-link.active {
    color: #0A3D33;
    font-weight: 600;
}
.nav-link.active::after {
    width: 70%;
    height: 2.5px;
}

/* Nav CTA Button */
.nav-cta {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 10px 20px;
    background: linear-gradient(135deg, #0A3D33, #0F5C4A);
    color: #fff;
    font-size: 0.8125rem;
    font-weight: 600;
    border-radius: 10px;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(10, 61, 51, 0.2);
    white-space: nowrap;
}
.nav-cta:hover {
    transform: translateY(-1px);
    box-shadow: 0 4px 16px rgba(10, 61, 51, 0.3);
}

/* Mobile Menu */
.mobile-nav-link {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 14px 16px;
    font-size: 0.9375rem;
    font-weight: 500;
    color: rgba(44, 44, 44, 0.7);
    text-decoration: none;
    border-radius: 12px;
    transition: all 0.2s ease;
    border-left: 3px solid transparent;
}
.mobile-nav-link:hover {
    color: #0A3D33;
    background-color: rgba(10, 61, 51, 0.04);
    border-left-color: #C9A227;
}
.mobile-nav-link.active {
    color: #0A3D33;
    font-weight: 600;
    background-color: rgba(10, 61, 51, 0.06);
    border-left-color: #C9A227;
}
.mobile-nav-link:not(:last-child) {
    border-bottom: 1px solid rgba(10, 61, 51, 0.06);
}

/* CTA Buttons */
.cta-btn-green {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 1rem 2rem;
    background: linear-gradient(135deg, #0A3D33, #0F5C4A);
    color: #ffffff;
    font-weight: 600;
    text-decoration: none;
    border-radius: 0.75rem;
    box-shadow: 0 10px 24px rgba(10, 61, 51, 0.2);
    transition: transform 0.3s ease, box-shadow 0.3s ease, filter 0.3s ease;
}
.cta-btn-green:hover {
    transform: translateY(-2px);
    box-shadow: 0 16px 32px rgba(10, 61, 51, 0.28);
    filter: brightness(1.03);
}
.cta-btn-green:focus-visible {
    outline: 3px solid rgba(201, 162, 39, 0.35);
    outline-offset: 3px;
}
.cta-btn-gold {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 1rem 2rem;
    background: linear-gradient(135deg, #C9A227, #D4B545);
    color: #ffffff;
    font-weight: 600;
    text-decoration: none;
    border-radius: 0.75rem;
    box-shadow: 0 10px 24px rgba(201, 162, 39, 0.2);
    transition: transform 0.3s ease, box-shadow 0.3s ease, filter 0.3s ease;
}
.cta-btn-gold:hover {
    transform: translateY(-2px);
    box-shadow: 0 16px 32px rgba(201, 162, 39, 0.28);
    filter: brightness(1.03);
}
.cta-btn-gold:focus-visible {
    outline: 3px solid rgba(10, 61, 51, 0.18);
    outline-offset: 3px;
}

/* Feature Cards */
.feature-card {
    background: #ffffff;
    border: 1px solid rgba(10, 61, 51, 0.08);
    border-radius: 1rem;
    padding: 1.5rem;
    box-shadow: 0 8px 24px rgba(16, 24, 40, 0.05);
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}
.feature-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 18px 36px rgba(16, 24, 40, 0.1);
    border-color: rgba(201, 162, 39, 0.22);
}

/* Icon Container (shared across all feature/payment tiles) */
.icon-container {
    width: 3rem;
    height: 3rem;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 0.75rem;
    background: rgba(10, 61, 51, 0.06);
    border: 1px solid rgba(10, 61, 51, 0.06);
    transition: transform 0.3s ease, background 0.3s ease, border-color 0.3s ease;
}
.feature-card:hover .icon-container {
    transform: scale(1.08);
    background: rgba(201, 162, 39, 0.1);
    border-color: rgba(201, 162, 39, 0.18);
}

.feature-icon {
    font-size: 2.25rem;
    line-height: 1;
    margin-bottom: 1rem;
}

/* Contact Info Icons (Quick Info list items) */
.contact-info-icon {
    width: 2rem;
    height: 2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    border-radius: 0.5rem;
    background: rgba(201, 162, 39, 0.08);
    border: 1px solid rgba(201, 162, 39, 0.1);
    transition: transform 0.25s ease, background 0.25s ease;
}
.contact-info-icon:hover {
    transform: scale(1.1);
    background: rgba(201, 162, 39, 0.16);
}
.tile-media {
    width: 100%;
    height: 12rem;
    object-fit: cover;
    border-radius: 0.9rem;
    margin-bottom: 1.25rem;
    box-shadow: 0 14px 28px rgba(16, 24, 40, 0.08);
}

/* Program Cards */
.program-card {
    display: block;
    background: #ffffff;
    border: 1px solid rgba(10, 61, 51, 0.08);
    border-radius: 1rem;
    padding: 2rem;
    box-shadow: 0 10px 28px rgba(16, 24, 40, 0.06);
    text-decoration: none;
    transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}
.program-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 22px 40px rgba(16, 24, 40, 0.11);
    border-color: rgba(201, 162, 39, 0.24);
}
.program-media {
    width: 100%;
    height: 13rem;
    object-fit: cover;
    object-position: center;
    border-radius: 1rem;
    margin-bottom: 1.5rem;
    box-shadow: 0 14px 28px rgba(16, 24, 40, 0.08);
}

/* Audio Cards */
.audio-card {
    background: #ffffff;
    border: 1px solid rgba(10, 61, 51, 0.08);
    border-radius: 1rem;
    padding: 1.25rem;
    box-shadow: 0 8px 22px rgba(16, 24, 40, 0.05);
}
.media-card {
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(255, 255, 255, 0.92));
    border: 1px solid rgba(10, 61, 51, 0.08);
    border-radius: 1.5rem;
    padding: 1.5rem;
    box-shadow: 0 16px 36px rgba(16, 24, 40, 0.08);
}
.media-card-video {
    padding: 1.75rem;
}
.video-stage {
    display: flex;
    justify-content: center;
    width: 100%;
}
.video-frame {
    position: relative;
    width: min(100%, 22rem);
    aspect-ratio: 9 / 16;
    margin-inline: auto;
    padding: 0.75rem;
    border-radius: 1.5rem;
    overflow: hidden;
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.02)),
        linear-gradient(160deg, #103f37 0%, #0A3D33 45%, #072e27 100%);
    border: 1px solid rgba(201, 162, 39, 0.22);
    box-shadow: 0 18px 36px rgba(10, 61, 51, 0.18);
}
.video-frame::before {
    content: '';
    position: absolute;
    inset: 0.75rem;
    border-radius: 1.1rem;
    background:
        radial-gradient(circle at center, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0) 64%),
        rgba(7, 46, 39, 0.88);
    box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.04);
}
.video-frame video {
    position: relative;
    z-index: 1;
    width: 100%;
    height: 100%;
    display: block;
    border-radius: 1.1rem;
    background: transparent;
    object-fit: contain;
}
@media (max-width: 640px) {
    .media-card-video {
        padding: 1rem;
    }
    .video-frame {
        width: min(100%, 19rem);
        padding: 0.6rem;
        border-radius: 1.25rem;
    }
    .video-frame::before,
    .video-frame video {
        border-radius: 0.95rem;
    }
}
.link-chip {
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
    font-size: 0.875rem;
    font-weight: 600;
    color: #0A3D33;
    text-decoration: none;
    transition: gap 0.2s ease, color 0.2s ease;
}
.link-chip:hover {
    color: #A88620;
    gap: 0.6rem;
}
.audio-player {
    border-radius: 12px;
    height: 40px;
    width: 100%;
}
.audio-player::-webkit-media-controls-panel {
    background: #F8F4ED;
}

/* Section Headings */
.section-heading {
    position: relative;
}

/* Pricing Table */
.pricing-card {
    position: relative;
    overflow: hidden;
    background: #ffffff;
    border: 1px solid rgba(10, 61, 51, 0.08);
    border-radius: 1.5rem;
    padding: 2rem;
    box-shadow: 0 10px 28px rgba(16, 24, 40, 0.06);
    transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}
.pricing-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 22px 44px rgba(16, 24, 40, 0.1);
}
.pricing-card.featured {
    border-color: rgba(201, 162, 39, 0.35);
    box-shadow: 0 18px 40px rgba(201, 162, 39, 0.12);
}
.pricing-card.featured::before {
    content: 'Most Popular';
    position: absolute;
    top: 0;
    right: 0;
    background: #C9A227;
    color: #ffffff;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.03em;
    padding: 0.35rem 1rem;
    border-bottom-left-radius: 0.75rem;
}

/* Animations */
@keyframes fadeIn {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}
@keyframes float {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-10px); }
}
@keyframes slideInLeft {
    from { opacity: 0; transform: translateX(-30px); }
    to { opacity: 1; transform: translateX(0); }
}
@keyframes slideInRight {
    from { opacity: 0; transform: translateX(30px); }
    to { opacity: 1; transform: translateX(0); }
}

.animate-fadeIn {
    animation: fadeIn 0.8s ease-out forwards;
    opacity: 0;
}
.animate-float {
    animation: float 3s ease-in-out infinite;
}
.animate-slideInLeft {
    animation: slideInLeft 0.8s ease-out forwards;
    opacity: 0;
}
.animate-slideInRight {
    animation: slideInRight 0.8s ease-out forwards;
    opacity: 0;
}

/* Scroll-triggered reveal */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}
.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Nav scrolled state */
#main-nav {
    background: rgba(248, 244, 237, 0.6);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    border-bottom: 1px solid rgba(10, 61, 51, 0.06);
    transition: all 0.35s ease;
}
#main-nav.scrolled {
    background: rgba(248, 244, 237, 0.98);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom-color: rgba(10, 61, 51, 0.1);
    box-shadow: 0 1px 8px rgba(0, 0, 0, 0.05), 0 4px 24px rgba(0, 0, 0, 0.03);
}

/* Mobile menu animation */
#mobile-menu {
    transition: max-height 0.35s ease, opacity 0.25s ease;
    overflow: hidden;
}

/* Page Header for inner pages */
.page-header {
    position: relative;
    overflow: hidden;
    padding-top: 8rem;
    padding-bottom: 4rem;
    background: linear-gradient(135deg, #0A3D33 0%, #0F5C4A 100%);
}
.page-header .islamic-pattern-light {
    position: absolute;
    inset: 0;
}

/* WhatsApp btn pulse */
#whatsapp-btn::before {
    content: '';
    position: absolute;
    inset: -4px;
    border-radius: 50%;
    background: #25D366;
    opacity: 0;
    animation: whatsappPulse 2s ease-in-out infinite;
}
@keyframes whatsappPulse {
    0%, 100% { opacity: 0; transform: scale(1); }
    50% { opacity: 0.3; transform: scale(1.2); }
}

/* Contact Form */
.form-input {
    width: 100%;
    padding: 1rem 1.25rem;
    border-radius: 0.75rem;
    border: 1px solid rgba(10, 61, 51, 0.12);
    background: #ffffff;
    color: #2C2C2C;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
}
.form-input::placeholder {
    color: rgba(44, 44, 44, 0.45);
}
.form-input:focus {
    outline: none;
    border-color: #C9A227;
    box-shadow: 0 0 0 4px rgba(201, 162, 39, 0.18);
}
.form-helper {
    color: rgba(44, 44, 44, 0.62);
    font-size: 0.9rem;
    line-height: 1.6;
}
.contact-status {
    display: none;
    margin-top: 1rem;
    padding: 0.95rem 1rem;
    border-radius: 0.9rem;
    background: rgba(10, 61, 51, 0.06);
    border: 1px solid rgba(10, 61, 51, 0.08);
    color: #0A3D33;
    font-size: 0.92rem;
    line-height: 1.6;
}
.contact-status.is-visible {
    display: block;
}

/* Timezone table */
.tz-table {
    width: 100%;
    font-size: 0.875rem;
    border-collapse: collapse;
    background: #ffffff;
    border-radius: 1rem;
    overflow: hidden;
    box-shadow: 0 8px 22px rgba(16, 24, 40, 0.05);
}
.tz-table th {
    background: #0A3D33;
    color: #ffffff;
    padding: 0.75rem 1rem;
    text-align: left;
    font-weight: 600;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
}
.tz-table td {
    padding: 0.75rem 1rem;
    border-bottom: 1px solid rgba(10, 61, 51, 0.08);
}
.tz-table tr:hover td {
    background: rgba(201, 162, 39, 0.08);
}

.trust-marquee {
    display: flex;
    width: max-content;
    min-width: 100%;
    animation: trustMarquee 26s linear infinite;
}
.trust-marquee:hover {
    animation-play-state: paused;
}
.trust-marquee-track {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding-inline: 0.75rem;
    flex-shrink: 0;
}
.trust-pill {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    background: rgba(255, 255, 255, 0.09);
    border: 1px solid rgba(255, 255, 255, 0.14);
    color: rgba(255, 255, 255, 0.92);
    padding: 0.85rem 1.1rem;
    border-radius: 999px;
    white-space: nowrap;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}
.trust-pill-flag {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 2.3rem;
    height: 2.3rem;
    padding: 0 0.7rem;
    border-radius: 999px;
    background: linear-gradient(135deg, #C9A227, #D4B545);
    color: #0A3D33;
    font-weight: 700;
    font-size: 0.75rem;
    letter-spacing: 0.05em;
}

.overview-card {
    background: #ffffff;
    border: 1px solid rgba(10, 61, 51, 0.08);
    border-radius: 1.4rem;
    padding: 1.75rem;
    box-shadow: 0 12px 30px rgba(16, 24, 40, 0.06);
}
.overview-label {
    color: #C9A227;
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    margin-bottom: 0.85rem;
}
.overview-value {
    color: #0A3D33;
    font-family: "Playfair Display", serif;
    font-size: 1.7rem;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 0.85rem;
}
.overview-note {
    color: rgba(44, 44, 44, 0.62);
    line-height: 1.7;
}

.schedule-spotlight {
    display: grid;
    grid-template-columns: 1.35fr 0.95fr;
    gap: 1.5rem;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.82), rgba(255, 255, 255, 0.95));
    border: 1px solid rgba(10, 61, 51, 0.08);
    border-radius: 1.8rem;
    padding: 1.75rem;
    box-shadow: 0 20px 48px rgba(16, 24, 40, 0.08);
}
.schedule-spotlight-copy {
    padding: 0.5rem;
}
.schedule-spotlight-kicker {
    color: #C9A227;
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    margin-bottom: 1rem;
}
.fit-chip {
    display: inline-flex;
    align-items: center;
    padding: 0.65rem 0.95rem;
    border-radius: 999px;
    background: rgba(10, 61, 51, 0.06);
    color: #0A3D33;
    font-size: 0.92rem;
    font-weight: 600;
}
.fit-chip-primary {
    background: rgba(201, 162, 39, 0.14);
}
.schedule-spotlight-panel {
    background: #ffffff;
    border-radius: 1.4rem;
    border: 1px solid rgba(10, 61, 51, 0.07);
    padding: 1.35rem;
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.7);
}
.spotlight-row {
    display: flex;
    justify-content: space-between;
    gap: 1rem;
    padding: 0.9rem 0;
    border-bottom: 1px solid rgba(10, 61, 51, 0.08);
}
.spotlight-row:last-of-type {
    border-bottom: 0;
}
.spotlight-city {
    color: rgba(44, 44, 44, 0.68);
    font-weight: 600;
}
.spotlight-time {
    color: #0A3D33;
    font-weight: 700;
}

.region-card {
    background: #ffffff;
    border: 1px solid rgba(10, 61, 51, 0.08);
    border-radius: 1.5rem;
    padding: 1.5rem;
    box-shadow: 0 12px 30px rgba(16, 24, 40, 0.06);
    transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}
.region-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 20px 40px rgba(16, 24, 40, 0.1);
    border-color: rgba(201, 162, 39, 0.22);
}
.region-card-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.75rem;
    margin-bottom: 1rem;
}
.region-label {
    color: rgba(44, 44, 44, 0.52);
    font-size: 0.82rem;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
}
.region-badge {
    padding: 0.45rem 0.8rem;
    border-radius: 999px;
    background: rgba(201, 162, 39, 0.16);
    color: #8a6c0c;
    font-size: 0.76rem;
    font-weight: 700;
}
.region-badge-soft {
    background: rgba(10, 61, 51, 0.08);
    color: #0A3D33;
}
.region-badge-evening {
    background: rgba(15, 92, 74, 0.12);
    color: #0F5C4A;
}
.region-title {
    color: #0A3D33;
    font-family: "Playfair Display", serif;
    font-size: 1.6rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
}
.region-summary {
    color: rgba(44, 44, 44, 0.62);
    line-height: 1.7;
    margin-bottom: 1.25rem;
}
.time-pill-stack {
    display: grid;
    gap: 0.8rem;
}
.time-pill {
    background: linear-gradient(180deg, rgba(248, 244, 237, 0.9), rgba(248, 244, 237, 0.55));
    border: 1px solid rgba(10, 61, 51, 0.08);
    border-radius: 1rem;
    padding: 0.95rem 1rem;
}
.time-pill-label {
    display: block;
    color: rgba(44, 44, 44, 0.5);
    font-size: 0.78rem;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    margin-bottom: 0.4rem;
}
.time-pill strong {
    color: #0A3D33;
    font-size: 1rem;
}

.booking-shell {
    background: linear-gradient(180deg, #fffdf9 0%, #ffffff 100%);
    border-radius: 1.8rem;
    border: 1px solid rgba(10, 61, 51, 0.1);
    box-shadow: 0 24px 54px rgba(16, 24, 40, 0.08);
    padding: 1.75rem;
    text-align: left;
}
.booking-shell-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    margin-bottom: 1rem;
}
.booking-dots {
    display: inline-flex;
    gap: 0.35rem;
}
.booking-dots span {
    width: 0.7rem;
    height: 0.7rem;
    border-radius: 999px;
    background: rgba(10, 61, 51, 0.15);
}
.booking-mock-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 0.9rem;
    margin-bottom: 1.4rem;
}
.booking-mock-card {
    background: rgba(248, 244, 237, 0.8);
    border: 1px solid rgba(10, 61, 51, 0.07);
    border-radius: 1rem;
    padding: 1rem;
}
.booking-mock-label {
    color: rgba(44, 44, 44, 0.45);
    font-size: 0.77rem;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    margin-bottom: 0.45rem;
}
.booking-mock-value {
    color: #0A3D33;
    font-weight: 700;
    line-height: 1.5;
}
.booking-placeholder {
    background: linear-gradient(135deg, rgba(10, 61, 51, 0.045), rgba(201, 162, 39, 0.08));
    border: 1px dashed rgba(10, 61, 51, 0.16);
    border-radius: 1.4rem;
    padding: 1rem;
}
.booking-placeholder-screen {
    display: grid;
    grid-template-columns: 0.36fr 1fr;
    gap: 1rem;
    min-height: 19rem;
    background: rgba(255, 255, 255, 0.72);
    border-radius: 1rem;
    padding: 1rem;
}
.booking-placeholder-sidebar,
.booking-placeholder-row,
.booking-placeholder-calendar span {
    background: linear-gradient(90deg, rgba(10, 61, 51, 0.08), rgba(201, 162, 39, 0.11), rgba(10, 61, 51, 0.08));
    background-size: 200% 100%;
    animation: shimmer 2.8s linear infinite;
}
.booking-placeholder-sidebar {
    border-radius: 0.9rem;
}
.booking-placeholder-content {
    display: flex;
    flex-direction: column;
    gap: 0.85rem;
}
.booking-placeholder-row {
    height: 1rem;
    border-radius: 999px;
}
.booking-placeholder-row.short {
    width: 58%;
}
.booking-placeholder-calendar {
    display: grid;
    grid-template-columns: repeat(7, minmax(0, 1fr));
    gap: 0.6rem;
    margin-top: 0.6rem;
}
.booking-placeholder-calendar span {
    display: block;
    height: 4.25rem;
    border-radius: 0.85rem;
}

/* Hadith / Motivation Cards */
.hadith-card {
    background: #ffffff;
    border: 1px solid rgba(10, 61, 51, 0.08);
    border-left: 4px solid #C9A227;
    border-radius: 1rem;
    padding: 1.75rem;
    box-shadow: 0 8px 24px rgba(16, 24, 40, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}
.hadith-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 18px 36px rgba(16, 24, 40, 0.1);
    border-left-color: #D4B545;
}
.hadith-card .hadith-icon {
    width: 2.75rem;
    height: 2.75rem;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 0.75rem;
    background: rgba(201, 162, 39, 0.1);
    border: 1px solid rgba(201, 162, 39, 0.12);
    margin-bottom: 1rem;
    transition: transform 0.3s ease, background 0.3s ease;
}
.hadith-card:hover .hadith-icon {
    transform: scale(1.08);
    background: rgba(201, 162, 39, 0.18);
}
.hadith-source {
    display: inline-block;
    margin-top: 0.75rem;
    font-size: 0.8rem;
    font-weight: 600;
    color: #C9A227;
    letter-spacing: 0.04em;
}

@keyframes trustMarquee {
    from { transform: translateX(0); }
    to { transform: translateX(-50%); }
}
@keyframes shimmer {
    from { background-position: 200% 0; }
    to { background-position: -200% 0; }
}

/* Smooth scroll offset for fixed nav */
html {
    scroll-padding-top: 80px;
}

@media (min-width: 1024px) {
    .page-header {
        padding-top: 10rem;
        padding-bottom: 5rem;
    }
}

@media (max-width: 1024px) {
    .schedule-spotlight {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 640px) {
    .cta-btn-green,
    .cta-btn-gold {
        width: 100%;
    }
    .tile-media,
    .program-media {
        height: 10.5rem;
    }
    .trust-marquee-track {
        gap: 0.75rem;
    }
    .trust-pill {
        padding: 0.72rem 0.95rem;
        gap: 0.6rem;
        font-size: 0.92rem;
    }
    .overview-card,
    .region-card,
    .booking-shell {
        padding: 1.25rem;
    }
    .overview-value,
    .region-title {
        font-size: 1.4rem;
    }
    .booking-mock-grid,
    .booking-placeholder-screen {
        grid-template-columns: 1fr;
    }
    .booking-placeholder-screen {
        min-height: 0;
    }
}
