		/* Tambah dalam <style> anda */
.prayer-settings-body label[for="prayerMethod"],
.prayer-settings-body #prayerMethod,
.prayer-settings-body label[for="prayerMethod"] + select {
    display: none !important;
}

*,
        *::before,
        *::after {
            margin: 0;
            padding: 0;
            box-sizing: border-box
        }
        :root {
            --primary: #C4918B;
            --primary-dark: #A87670;
            --primary-light: #E8C8C3;
            --secondary: #F5E6D8;
            --secondary-light: #FDF5EE;
            --accent: #D4A574;
            --accent-dark: #B8895E;
            --text-dark: #3D3230;
            --text-mid: #6B5E5A;
            --text-light: #9A8B86;
            --white: #FFFFFF;
            --bg-light: #FFF9F5;
            --bg-cream: #FAF3ED;
            --shadow: 0 4px 20px rgba(196, 145, 139, 0.15);
            --shadow-lg: 0 8px 40px rgba(196, 145, 139, 0.2);
            --radius: 16px;
            --radius-sm: 10px;
            --radius-lg: 24px;
            --transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
        }
        html {
            scroll-behavior: smooth;
            font-size: 16px;
            overflow-y: scroll
        }
        body {
            font-family: 'Poppins', sans-serif;
            color: var(--text-dark);
            background: var(--bg-light);
            line-height: 1.7;
            overflow-x: hidden
        }
        h1,
        h2,
        h3,
        h4,
        h5 {
            font-family: 'Playfair Display', serif;
            color: var(--text-dark);
            line-height: 1.3
        }
        .script-font {
            font-family: 'Dancing Script', cursive
        }
        a {
            text-decoration: none;
            color: inherit;
            transition: var(--transition)
        }
        ul {
            list-style: none
        }
        img {
            max-width: 100%;
            height: auto;
            display: block
        }
        button,
        input,
        select,
        textarea {
            font-family: inherit;
            border: none;
            outline: none
        }
        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px
        }
        .fade-in {
            opacity: 0;
            transform: translateY(30px);
            transition: opacity 0.8s ease, transform 0.8s ease
        }
        .fade-in.visible {
            opacity: 1;
            transform: translateY(0)
        }
        .fade-in-left {
            opacity: 0;
            transform: translateX(-40px);
            transition: opacity 0.8s ease, transform 0.8s ease
        }
        .fade-in-left.visible {
            opacity: 1;
            transform: translateX(0)
        }
        .fade-in-right {
            opacity: 0;
            transform: translateX(40px);
            transition: opacity 0.8s ease, transform 0.8s ease
        }
        .fade-in-right.visible {
            opacity: 1;
            transform: translateX(0)
        }
        .scale-in {
            opacity: 0;
            transform: scale(0.9);
            transition: opacity 0.6s ease, transform 0.6s ease
        }
        .scale-in.visible {
            opacity: 1;
            transform: scale(1)
        }

.header {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            z-index: 1000;
            background: transparent;
            transition: var(--transition);
        }
        .header.scrolled {
            box-shadow: 0 4px 25px rgba(196, 145, 139, 0.15);
        }
        .prayer-topbar {
            background: linear-gradient(135deg, var(--primary), var(--accent));
            color: white;
            padding: 8px 0;
            font-size: 0.8rem;
            transition: var(--transition);
            position: relative;
        }
        .header.scrolled .prayer-topbar {
            padding: 4px 0;
        }
        .prayer-topbar-inner {
            display: flex;
            flex-direction: column;
            gap: 4px;
        }
        .prayer-zone-info {
            display: flex;
            align-items: center;
            gap: 14px;
            width: 100%;
        }
        .prayer-live-clock {
            font-size: 1.15rem;
            font-weight: 700;
            color: #ffffff;
            font-variant-numeric: tabular-nums;
            letter-spacing: 0.5px;
            text-shadow: 0 1px 3px rgba(0, 0, 0, 0.15);
            white-space: nowrap;
        }
        .prayer-live-date {
            font-size: 0.85rem;
            color: rgba(255, 255, 255, 0.95);
            font-weight: 500;
            white-space: nowrap;
            margin-right: 8px;
        }
        .prayer-live-hijri {
            font-size: 0.8rem;
            color: rgba(255, 255, 255, 0.9);
            font-weight: 400;
            white-space: nowrap;
            margin-right: 8px;
        }
        .prayer-settings-btn {
            background: rgba(255, 255, 255, 0.2);
            border: 1px solid rgba(255, 255, 255, 0.3);
            color: white;
            padding: 4px 12px;
            border-radius: 50px;
            cursor: pointer;
            font-size: 0.7rem;
            font-weight: 600;
            display: none;
            align-items: center;
            gap: 4px;
            transition: var(--transition);
            margin-left: auto;
        }
        .prayer-settings-btn:hover {
            background: rgba(255, 255, 255, 0.35);
            transform: translateY(-1px);
        }
           .prayer-next-info {
                display: flex;
                align-items: center;
                justify-content: center;
                gap: 8px;
                width: 100%;
                margin-top: 4px;
                padding-right: 8px;
            }        .prayer-times-scroll {
            width: 100%;
            display: flex;
            align-items: center;
            position: relative;
        }
        .prayer-marquee {
            overflow: hidden;
            width: 100%;
            padding-right: 90px;
            box-sizing: border-box;
        }
        .prayer-marquee-track {
            display: flex;
            animation: marqueeScroll 20s linear infinite;
            width: max-content;
            will-change: transform;
        }
        @keyframes marqueeScroll {
            0% {
                transform: translateX(0);
            }
            100% {
                transform: translateX(-50%);
            }
        }
        .prayer-times {
            display: flex;
            gap: 20px;
            white-space: nowrap;
            flex-shrink: 0;
        }
        .prayer-time-item {
            display: flex;
            gap: 6px;
            align-items: center;
            opacity: 0.9;
        }
        .prayer-time-item strong {
            font-weight: 700;
            opacity: 1;
            background: rgba(0, 0, 0, 0.15);
            padding: 2px 8px;
            border-radius: 4px;
        }
        .prayer-next {
            background: #FFD700;
            color: var(--text-dark);
            padding: 4px 14px;
            border-radius: 50px;
            font-weight: 700;
            font-size: 0.75rem;
            white-space: nowrap;
            box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
        }

.nav {
            padding: 16px 0;
            transition: var(--transition);
        }
        .nav.scrolled {
            background: rgba(255, 249, 245, 0.95);
            backdrop-filter: blur(20px);
            box-shadow: 0 2px 20px rgba(0, 0, 0, 0.08);
            padding: 10px 0;
        }
        .nav-inner {
            display: flex;
            align-items: center;
            justify-content: space-between;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
            overflow: hidden;
        }
        .nav-logo {
            display: flex;
            align-items: center;
            gap: 10px
        }
        .nav-logo-icon {
            width: 42px;
            height: 42px;
            background: linear-gradient(135deg, var(--primary), var(--accent));
            border-radius: 12px;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-family: 'Dancing Script', cursive;
            font-size: 20px;
            font-weight: 700
        }
        .nav-logo-text {
            font-family: 'Playfair Display', serif;
            font-size: 1.3rem;
            font-weight: 600;
            color: var(--text-dark)
        }
        .nav-logo-sub {
            font-size: 0.65rem;
            color: var(--text-light);
            letter-spacing: 1.5px;
            text-transform: uppercase
        }
        .nav-links {
            display: flex;
            align-items: center;
            gap: 32px
        }
        .nav-links a {
            font-size: 0.85rem;
            font-weight: 500;
            color: var(--text-mid);
            position: relative;
            padding: 4px 0
        }
        .nav-links a::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 0;
            height: 2px;
            background: var(--primary);
            transition: width 0.3s ease
        }
        .nav-links a:hover {
            color: var(--primary-dark)
        }
        .nav-links a:hover::after {
            width: 100%
        }
        .nav-cta {
            background: linear-gradient(135deg, var(--primary), var(--accent));
            color: white;
            padding: 10px 24px;
            border-radius: 50px;
            font-size: 0.85rem;
            font-weight: 600;
            cursor: pointer;
            transition: var(--transition);
            border: none
        }
        .nav-cta:hover {
            transform: translateY(-2px);
            box-shadow: 0 6px 20px rgba(196, 145, 139, 0.4)
        }
        .hamburger {
            display: none;
            flex-direction: column;
            gap: 5px;
            cursor: pointer;
            padding: 5px;
            background: none;
            border: none
        }
        .hamburger span {
            width: 24px;
            height: 2px;
            background: var(--text-dark);
            transition: var(--transition);
            border-radius: 2px
        }
        .hamburger.active span:nth-child(1) {
            transform: rotate(45deg) translate(5px, 5px)
        }
        .hamburger.active span:nth-child(2) {
            opacity: 0
        }
        .hamburger.active span:nth-child(3) {
            transform: rotate(-45deg) translate(5px, -5px)
        }
        .mobile-menu {
            display: none;
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100vh;
            background: rgba(255, 249, 245, 0.98);
            backdrop-filter: blur(20px);
            z-index: 999;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            gap: 28px;
            opacity: 0;
            pointer-events: none;
            transition: opacity 0.4s ease;
            padding-top: 80px
        }
        .mobile-menu.active {
            opacity: 1;
            pointer-events: all
        }
        .mobile-menu a {
            font-family: 'Playfair Display', serif;
            font-size: 1.5rem;
            color: var(--text-dark);
            font-weight: 500
        }
        .mobile-menu a:hover {
            color: var(--primary)
        }

.hero {
            min-height: 100vh;
            display: flex;
            align-items: center;
            position: relative;
            overflow: hidden;
            padding-top: 130px
        }
        .hero-bg {
            position: absolute;
            inset: 0;
            z-index: 0
        }
        .hero-bg img {
            width: 100%;
            height: 100%;
            object-fit: cover
        }
        .hero-overlay {
            position: absolute;
            inset: 0;
            background: linear-gradient(135deg, rgba(61, 50, 48, 0.65) 0%, rgba(61, 50, 48, 0.4) 50%, rgba(196, 145, 139, 0.3) 100%);
            z-index: 1
        }
        .hero-particles {
            position: absolute;
            inset: 0;
            z-index: 2;
            overflow: hidden
        }
        .particle {
            position: absolute;
            width: 6px;
            height: 6px;
            background: rgba(255, 255, 255, 0.3);
            border-radius: 50%;
            animation: floatUp linear infinite
        }
        @keyframes floatUp {
            0% {
                transform: translateY(100vh) scale(0);
                opacity: 0
            }
            10% {
                opacity: 1
            }
            90% {
                opacity: 1
            }
            100% {
                transform: translateY(-10vh) scale(1);
                opacity: 0
            }
        }
        .hero-content {
            position: relative;
            z-index: 3;
            max-width: 700px;
            padding: 0 20px
        }
        .hero-badge {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            background: rgba(255, 255, 255, 0.15);
            backdrop-filter: blur(10px);
            border: 1px solid rgba(255, 255, 255, 0.2);
            padding: 8px 20px;
            border-radius: 50px;
            color: white;
            font-size: 0.8rem;
            font-weight: 500;
            margin-top: 60px;
            margin-bottom: 24px;
            letter-spacing: 0.5px
        }
        .hero-badge-dot {
            width: 8px;
            height: 8px;
            background: #8BC34A;
            border-radius: 50%;
            animation: pulse 2s infinite
        }
        @keyframes pulse {
            0%,
            100% {
                opacity: 1;
                transform: scale(1)
            }
            50% {
                opacity: 0.5;
                transform: scale(1.3)
            }
        }
        .hero h1 {
            font-size: clamp(2.2rem, 5vw, 4rem);
            color: white;
            font-weight: 700;
            margin-bottom: 16px;
            line-height: 1.15
        }
        .hero h1 span {
            color: var(--primary-light);
            font-family: 'Dancing Script', cursive;
            font-size: 1.2em
        }
        .hero-sub {
            font-size: clamp(1rem, 2vw, 1.15rem);
            color: rgba(255, 255, 255, 0.9);
            margin-bottom: 36px;
            max-width: 560px;
            line-height: 1.8
        }
        .hero-btns {
            display: flex;
            gap: 16px;
            flex-wrap: wrap
        }
        .btn-primary {
            background: linear-gradient(135deg, var(--primary), var(--accent));
            color: white;
            padding: 16px 36px;
            border-radius: 50px;
            font-size: 0.95rem;
            font-weight: 600;
            cursor: pointer;
            transition: var(--transition);
            display: inline-flex;
            align-items: center;
            gap: 10px;
            border: none
        }
        .btn-primary:hover {
            transform: translateY(-3px);
            box-shadow: 0 8px 30px rgba(196, 145, 139, 0.4)
        }
        .btn-secondary {
            background: rgba(255, 255, 255, 0.15);
            backdrop-filter: blur(10px);
            border: 1.5px solid rgba(255, 255, 255, 0.3);
            color: white;
            padding: 16px 36px;
            border-radius: 50px;
            font-size: 0.95rem;
            font-weight: 500;
            cursor: pointer;
            transition: var(--transition);
            display: inline-flex;
            align-items: center;
            gap: 10px
        }
        .btn-secondary:hover {
            background: rgba(255, 255, 255, 0.25);
            transform: translateY(-3px)
        }
        .hero-stats {
            display: flex;
            gap: 40px;
            margin-top: 48px;
            padding-top: 32px;
            border-top: 1px solid rgba(255, 255, 255, 0.2)
        }
        .hero-stat-num {
            font-family: 'Playfair Display', serif;
            font-size: 1.8rem;
            font-weight: 700;
            color: white
        }
        .hero-stat-label {
            font-size: 0.75rem;
            color: rgba(255, 255, 255, 0.7);
            text-transform: uppercase;
            letter-spacing: 1px
        }

.section {
            padding: 100px 0
        }
        .section-header {
            text-align: center;
            margin-bottom: 60px
        }
        .section-tag {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            font-size: 0.8rem;
            font-weight: 600;
            color: var(--primary);
            text-transform: uppercase;
            letter-spacing: 2px;
            margin-bottom: 12px
        }
        .section-tag-line {
            width: 30px;
            height: 2px;
            background: var(--primary)
        }
        .section-title {
            font-size: clamp(1.8rem, 3.5vw, 2.8rem);
            margin-bottom: 16px
        }
        .section-title span {
            color: var(--primary);
            font-family: 'Dancing Script', cursive
        }
        .section-desc {
            font-size: 1rem;
            color: var(--text-mid);
            max-width: 600px;
            margin: 0 auto;
            line-height: 1.8
        }
        .about {
            background: var(--bg-light)
        }
        .about-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 60px;
            align-items: center
        }
        .about-img-wrap {
            position: relative
        }
        .about-img-main {
            border-radius: var(--radius-lg);
            overflow: hidden;
            box-shadow: var(--shadow-lg)
        }
        .about-img-main img {
            width: 100%;
            height: 400px;
            object-fit: cover;
            transition: transform 0.6s ease
        }
        .about-img-main:hover img {
            transform: scale(1.05)
        }
        .about-img-float {
            position: absolute;
            bottom: -30px;
            right: -20px;
            width: 200px;
            height: 200px;
            border-radius: var(--radius);
            overflow: hidden;
            box-shadow: var(--shadow-lg);
            border: 5px solid var(--bg-light)
        }
        .about-img-float img {
            width: 100%;
            height: 100%;
            object-fit: cover
        }
        .about-experience {
            position: absolute;
            top: -20px;
            left: -20px;
            background: linear-gradient(135deg, var(--primary), var(--accent));
            color: white;
            padding: 20px;
            border-radius: var(--radius);
            text-align: center;
            box-shadow: var(--shadow)
        }
        .about-experience-num {
            font-family: 'Playfair Display', serif;
            font-size: 2.2rem;
            font-weight: 700
        }
        .about-experience-text {
            font-size: 0.7rem;
            text-transform: uppercase;
            letter-spacing: 1px
        }
        .about-content h2 {
            font-size: clamp(1.6rem, 3vw, 2.4rem);
            margin-bottom: 20px
        }
        .about-content h2 span {
            color: var(--primary);
            font-family: 'Dancing Script', cursive
        }
        .about-content p {
            color: var(--text-mid);
            margin-bottom: 20px;
            line-height: 1.9
        }
        .about-features {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 16px;
            margin-top: 28px
        }
        .about-feature {
            display: flex;
            align-items: center;
            gap: 12px;
            padding: 12px 16px;
            background: var(--bg-cream);
            border-radius: var(--radius-sm);
            transition: var(--transition)
        }
        .about-feature:hover {
            background: var(--primary-light);
            transform: translateX(5px)
        }
        .about-feature-icon {
            width: 36px;
            height: 36px;
            background: linear-gradient(135deg, var(--primary), var(--accent));
            border-radius: 8px;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-size: 0.9rem;
            flex-shrink: 0
        }
        .about-feature-text {
            font-size: 0.85rem;
            font-weight: 500
        }
        .advantages {
            background: var(--bg-cream)
        }
        .adv-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 28px
        }
        .adv-card {
            background: var(--white);
            border-radius: var(--radius);
            padding: 36px 28px;
            transition: var(--transition);
            position: relative;
            overflow: hidden;
            border: 1px solid rgba(196, 145, 139, 0.08)
        }
        .adv-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 4px;
            background: linear-gradient(90deg, var(--primary), var(--accent));
            transform: scaleX(0);
            transform-origin: left;
            transition: transform 0.4s ease
        }
        .adv-card:hover {
            transform: translateY(-8px);
            box-shadow: var(--shadow-lg)
        }
        .adv-card:hover::before {
            transform: scaleX(1)
        }
        .adv-icon {
            width: 64px;
            height: 64px;
            background: linear-gradient(135deg, var(--secondary), var(--primary-light));
            border-radius: 16px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.8rem;
            margin-bottom: 20px;
            transition: var(--transition)
        }
        .adv-card:hover .adv-icon {
            background: linear-gradient(135deg, var(--primary), var(--accent));
            transform: rotate(-5deg) scale(1.1)
        }
        .adv-card h3 {
            font-size: 1.15rem;
            margin-bottom: 12px
        }
        .adv-card p {
            font-size: 0.88rem;
            color: var(--text-mid);
            line-height: 1.8
        }
        .gallery {
            background: var(--bg-light)
        }
        .gallery-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            grid-template-rows: repeat(2, 250px);
            gap: 16px
        }
        .gallery-item {
            border-radius: var(--radius);
            overflow: hidden;
            position: relative;
            cursor: pointer
        }
        .gallery-item:nth-child(1) {
            grid-column: span 2;
            grid-row: span 2
        }
        .gallery-item img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.6s ease
        }
        .gallery-item:hover img {
            transform: scale(1.08)
        }
        .gallery-overlay {
            position: absolute;
            inset: 0;
            background: linear-gradient(to top, rgba(61, 50, 48, 0.7), transparent);
            opacity: 0;
            transition: var(--transition);
            display: flex;
            align-items: flex-end;
            padding: 24px
        }
        .gallery-item:hover .gallery-overlay {
            opacity: 1
        }
        .gallery-overlay-text {
            color: white;
            font-family: 'Playfair Display', serif;
            font-size: 1.1rem
        }
        .facilities {
            background: var(--bg-cream)
        }
        .fac-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 24px
        }
        .fac-item {
            text-align: center;
            padding: 32px 20px;
            background: var(--white);
            border-radius: var(--radius);
            transition: var(--transition);
            border: 1px solid rgba(196, 145, 139, 0.06)
        }
        .fac-item:hover {
            transform: translateY(-6px);
            box-shadow: var(--shadow);
            border-color: var(--primary-light)
        }
        .fac-icon {
            font-size: 2.2rem;
            margin-bottom: 14px;
            display: block
        }
        .fac-item h4 {
            font-size: 0.95rem;
            margin-bottom: 6px
        }
        .fac-item p {
            font-size: 0.8rem;
            color: var(--text-light)
        }
        .packages {
            background: linear-gradient(135deg, var(--bg-light) 0%, var(--secondary) 100%);
            position: relative;
            overflow: hidden
        }
        .packages::before {
            content: '';
            position: absolute;
            top: -50%;
            right: -20%;
            width: 600px;
            height: 600px;
            background: radial-gradient(circle, rgba(196, 145, 139, 0.1) 0%, transparent 70%);
            border-radius: 50%
        }
        .pkg-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 24px;
            position: relative;
            z-index: 1
        }
        .pkg-card {
            background: var(--white);
            border-radius: var(--radius-lg);
            padding: 36px 24px;
            text-align: center;
            transition: var(--transition);
            position: relative;
            border: 2px solid transparent;
            overflow: hidden
        }

.pkg-card:hover {
            transform: translateY(-8px);
            box-shadow: var(--shadow-lg)
        }
        .pkg-card.popular {
            border-color: var(--primary);
            transform: scale(1.05)
        }
        .pkg-card.popular::before {
            content: 'Paling Popular';
            position: absolute;
            top: 28px;
            right: -48px;
            background: linear-gradient(135deg, var(--primary), var(--accent));
            color: white;
            padding: 6px 40px;
            font-size: 0.7rem;
            font-weight: 600;
            transform: rotate(45deg);
            letter-spacing: 0.5px
        }		
        .pkg-name {
            font-family: 'Playfair Display', serif;
            font-size: 1.15rem;
            font-weight: 600;
            margin-bottom: 8px;
            color: var(--text-dark)
        }
        .pkg-desc {
            font-size: 0.8rem;
            color: var(--text-light);
            margin-bottom: 20px
        }
        .pkg-price {
            font-family: 'Playfair Display', serif;
            font-size: 2.4rem;
            font-weight: 700;
            color: var(--primary);
            margin-bottom: 4px
        }
        .pkg-price span {
            font-size: 0.9rem;
            font-weight: 400;
            color: var(--text-light)
        }
        .pkg-period {
            font-size: 0.78rem;
            color: var(--text-light);
            margin-bottom: 24px
        }
        .pkg-features {
            text-align: left;
            margin-bottom: 28px
        }
        .pkg-feature {
            display: flex;
            align-items: center;
            gap: 10px;
            padding: 8px 0;
            font-size: 0.82rem;
            color: var(--text-mid);
            border-bottom: 1px solid rgba(196, 145, 139, 0.08)
        }
        .pkg-feature:last-child {
            border: none
        }
        .pkg-check {
            color: var(--primary);
            font-weight: 700
        }
        .pkg-btn {
            width: 100%;
            padding: 14px;
            border-radius: 50px;
            font-size: 0.88rem;
            font-weight: 600;
            cursor: pointer;
            transition: var(--transition);
            border: 2px solid var(--primary);
            background: transparent;
            color: var(--primary)
        }
        .pkg-btn:hover,
        .pkg-btn {
            background: linear-gradient(135deg, var(--primary), var(--accent));
            color: white;
            border-color: transparent
        }
        .test-slider {
            position: relative;
            overflow: hidden
        }
        .test-track {
            display: flex;
            transition: transform 0.5s ease
        }
        .test-card {
            min-width: 100%;
            padding: 0 20px
        }
        .test-card-inner {
            background: var(--white);
            border-radius: var(--radius-lg);
            padding: 40px;
            box-shadow: var(--shadow);
            max-width: 800px;
            margin: 0 auto;
            text-align: center;
            position: relative
        }
        .test-quote {
            font-size: 3rem;
            color: var(--primary-light);
            font-family: 'Playfair Display', serif;
            line-height: 1;
            margin-bottom: 10px
        }
        .test-text {
            font-size: 1rem;
            color: var(--text-mid);
            line-height: 1.9;
            margin-bottom: 24px;
            font-style: italic
        }
        .test-stars {
            color: #F4B400;
            font-size: 1.1rem;
            margin-bottom: 16px;
            letter-spacing: 4px
        }
        .test-author {
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 16px
        }
        .test-avatar {
            width: 56px;
            height: 56px;
            border-radius: 50%;
            overflow: hidden;
            border: 3px solid var(--primary-light)
        }
        .test-avatar img {
            width: 100%;
            height: 100%;
            object-fit: cover
        }
        .test-name {
            font-weight: 600;
            font-size: 0.95rem
        }
        .test-role {
            font-size: 0.78rem;
            color: var(--text-light)
        }
        .test-nav {
            display: flex;
            justify-content: center;
            gap: 12px;
            margin-top: 32px
        }
        .test-dot {
            width: 12px;
            height: 12px;
            border-radius: 50%;
            background: var(--primary-light);
            cursor: pointer;
            transition: var(--transition);
            border: none
        }
        .test-dot.active {
            background: var(--primary);
            width: 32px;
            border-radius: 6px
        }
        .location {
            background: var(--bg-cream)
        }
        .loc-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 40px;
            align-items: start
        }
        .loc-info {
            padding: 20px 0
        }
        .loc-info h3 {
            font-size: 1.5rem;
            margin-bottom: 20px
        }
        .loc-item {
            display: flex;
            gap: 16px;
            margin-bottom: 24px;
            align-items: flex-start
        }
        .loc-icon {
            width: 48px;
            height: 48px;
            background: linear-gradient(135deg, var(--primary), var(--accent));
            border-radius: 12px;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-size: 1.2rem;
            flex-shrink: 0
        }
        .loc-text h4 {
            font-size: 0.9rem;
            margin-bottom: 4px;
            font-family: 'Poppins', sans-serif
        }
        .loc-text p {
            font-size: 0.85rem;
            color: var(--text-mid)
        }
        .loc-map {
            border-radius: var(--radius-lg);
            overflow: hidden;
            box-shadow: var(--shadow-lg);
            height: 400px
        }
        .loc-map iframe {
            width: 100%;
            height: 100%;
            border: 0
        }
        .qa {
            background: var(--bg-light)
        }
        .qa-list {
            max-width: 800px;
            margin: 0 auto
        }
        .qa-item {
            background: var(--white);
            border-radius: var(--radius);
            margin-bottom: 12px;
            overflow: hidden;
            border: 1px solid rgba(196, 145, 139, 0.08);
            transition: var(--transition)
        }
        .qa-item.active {
            box-shadow: var(--shadow);
            border-color: var(--primary-light)
        }
        .qa-question {
            display: flex;
            align-items: center;
            justify-content: space-between;
            padding: 20px 28px;
            cursor: pointer;
            font-weight: 500;
            font-size: 0.95rem;
            transition: var(--transition);
            gap: 16px
        }
        .qa-question:hover {
            color: var(--primary)
        }
        .qa-toggle {
            width: 28px;
            height: 28px;
            border-radius: 50%;
            background: var(--secondary);
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.2rem;
            transition: var(--transition);
            flex-shrink: 0;
            color: var(--primary)
        }
        .qa-item.active .qa-toggle {
            background: var(--primary);
            color: white;
            transform: rotate(45deg)
        }
        .qa-answer {
            max-height: 0;
            overflow: hidden;
            transition: max-height 0.4s ease, padding 0.4s ease
        }
        .qa-answer-inner {
            padding: 0 28px 24px;
            font-size: 0.88rem;
            color: var(--text-mid);
            line-height: 1.9
        }
        .ai-section {
            background: var(--bg-cream)
        }
        .ai-container {
            max-width: 600px;
            margin: 0 auto
        }
        .ai-chat {
            background: var(--white);
            border-radius: var(--radius-lg);
            box-shadow: var(--shadow-lg);
            overflow: hidden
        }
        .ai-header {
            background: linear-gradient(135deg, var(--primary), var(--accent));
            padding: 20px 24px;
            display: flex;
            align-items: center;
            gap: 12px
        }
        .ai-avatar {
            width: 44px;
            height: 44px;
            background: rgba(255, 255, 255, 0.2);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.4rem
        }
        .ai-header-info h4 {
            color: white;
            font-family: 'Poppins', sans-serif;
            font-size: 1rem;
            font-weight: 600
        }
        .ai-header-info p {
            color: rgba(255, 255, 255, 0.8);
            font-size: 0.75rem
        }
        .ai-messages {
            padding: 24px;
            height: 350px;
            overflow-y: auto;
            display: flex;
            flex-direction: column;
            gap: 16px
        }
        .ai-msg {
            max-width: 85%;
            padding: 14px 18px;
            border-radius: 16px;
            font-size: 0.88rem;
            line-height: 1.7;
            animation: msgIn 0.3s ease
        }
        @keyframes msgIn {
            from {
                opacity: 0;
                transform: translateY(10px)
            }
            to {
                opacity: 1;
                transform: translateY(0)
            }
        }
        .ai-msg.bot {
            background: var(--secondary);
            color: var(--text-dark);
            border-bottom-left-radius: 4px;
            align-self: flex-start
        }
        .ai-msg.user {
            background: linear-gradient(135deg, var(--primary), var(--accent));
            color: white;
            border-bottom-right-radius: 4px;
            align-self: flex-end
        }
        .ai-input-wrap {
            display: flex;
            gap: 10px;
            padding: 16px 20px;
            border-top: 1px solid rgba(196, 145, 139, 0.1);
            overflow: hidden;
            width: 100%
        }
        .ai-input {
            flex: 1;
            padding: 12px 18px;
            background: var(--bg-cream);
            border-radius: 50px;
            font-size: 0.88rem;
            color: var(--text-dark);
            border: 1px solid transparent;
            transition: var(--transition)
        }
        .ai-input:focus {
            border-color: var(--primary-light);
            background: white
        }
        .ai-send {
            width: 44px;
            height: 44px;
            background: linear-gradient(135deg, var(--primary), var(--accent));
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            cursor: pointer;
            transition: var(--transition);
            border: none;
            font-size: 1.1rem;
            flex-shrink: 0
        }
        .ai-send:hover {
            transform: scale(1.1)
        }
        .ai-quick-btns {
            display: flex;
            flex-wrap: wrap;
            gap: 8px;
            padding: 0 20px 16px
        }
        .ai-quick {
            padding: 8px 16px;
            background: var(--secondary);
            border-radius: 50px;
            font-size: 0.78rem;
            color: var(--text-mid);
            cursor: pointer;
            transition: var(--transition);
            border: none
        }
        .ai-quick:hover {
            background: var(--primary-light);
            color: var(--primary-dark)
        }
        .booking {
            background: linear-gradient(135deg, var(--bg-light) 0%, var(--secondary-light) 100%);
            position: relative
        }
        .booking::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23C4918B' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E") repeat
        }
        .booking-container {
            max-width: 900px;
            margin: 0 auto;
            position: relative;
            z-index: 1
        }
        .booking-form {
            background: var(--white);
            border-radius: var(--radius-lg);
            padding: 48px;
            box-shadow: var(--shadow-lg)
        }
        .booking-form h3 {
            font-size: 1.6rem;
            margin-bottom: 8px;
            text-align: center
        }
        .booking-form>p {
            text-align: center;
            color: var(--text-light);
            font-size: 0.88rem;
            margin-bottom: 32px
        }
        .form-row {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 20px;
            margin-bottom: 20px
        }
        .form-group {
            margin-bottom: 20px
        }
        .form-group label {
            display: block;
            font-size: 0.82rem;
            font-weight: 600;
            color: var(--text-dark);
            margin-bottom: 8px
        }
        .form-group label .req {
            color: #E74C3C
        }
        .form-control {
            width: 100%;
            padding: 14px 18px;
            background: var(--bg-cream);
            border: 1.5px solid rgba(196, 145, 139, 0.15);
            border-radius: var(--radius-sm);
            font-size: 0.9rem;
            color: var(--text-dark);
            transition: var(--transition);
            resize: vertical
        }
        .form-control:focus {
            border-color: var(--primary);
            background: white;
            box-shadow: 0 0 0 4px rgba(196, 145, 139, 0.1)
        }
        .form-control::placeholder {
            color: var(--text-light)
        }
        .pkg-select {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 12px;
            margin-bottom: 24px
        }
        .pkg-option {
            position: relative
        }
        .pkg-option input {
            position: absolute;
            opacity: 0;
            pointer-events: none
        }
        .pkg-option label {
            display: block;
            padding: 16px;
            background: var(--bg-cream);
            border: 2px solid rgba(196, 145, 139, 0.15);
            border-radius: var(--radius-sm);
            cursor: pointer;
            transition: var(--transition);
            text-align: center
        }
        .pkg-option input:checked+label {
            border-color: var(--primary);
            background: var(--primary-light)
        }
        .pkg-option-label {
            font-size: 0.82rem;
            font-weight: 600;
            color: var(--text-dark);
            display: block;
            margin-bottom: 2px
        }
        .pkg-option-price {
            font-size: 0.75rem;
            color: var(--primary);
            font-weight: 500
        }
        .form-divider {
            height: 1px;
            background: linear-gradient(90deg, transparent, var(--primary-light), transparent);
            margin: 32px 0
        }
        .form-check-instructions {
            background: var(--secondary);
            border-radius: var(--radius);
            padding: 24px;
            margin-top: 24px
        }
        .form-check-instructions h4 {
            font-size: 0.95rem;
            margin-bottom: 12px;
            display: flex;
            align-items: center;
            gap: 8px
        }
        .form-check-instructions ol {
            padding-left: 20px
        }
        .form-check-instructions li {
            font-size: 0.82rem;
            color: var(--text-mid);
            margin-bottom: 6px;
            line-height: 1.6
        }
        .form-submit {
            text-align: center;
            margin-top: 32px
        }
        .form-submit .btn-primary {
            padding: 18px 60px;
            font-size: 1rem
        }
        .form-note {
            text-align: center;
            margin-top: 16px;
            font-size: 0.78rem;
            color: var(--text-light)
        }
        .wa-float {
            position: fixed;
            bottom: 24px;
            right: 24px;
            z-index: 998;
            width: 60px;
            height: 60px;
            background: #25D366;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-size: 1.8rem;
            box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
            cursor: pointer;
            transition: var(--transition);
            animation: waFloat 3s ease-in-out infinite;
            text-decoration: none
        }
        .wa-float:hover {
            transform: scale(1.1);
            box-shadow: 0 6px 30px rgba(37, 211, 102, 0.5)
        }
        @keyframes waFloat {
            0%,
            100% {
                transform: translateY(0)
            }
            50% {
                transform: translateY(-8px)
            }
        }
        .wa-tooltip {
            position: absolute;
            right: 70px;
            background: var(--white);
            padding: 10px 18px;
            border-radius: var(--radius-sm);
            box-shadow: var(--shadow);
            white-space: nowrap;
            font-size: 0.82rem;
            font-weight: 500;
            color: var(--text-dark);
            opacity: 0;
            pointer-events: none;
            transition: var(--transition)
        }
        .wa-float:hover .wa-tooltip {
            opacity: 1
        }
        .scroll-top {
            position: fixed;
            bottom: 24px;
            left: 24px;
            z-index: 998;
            width: 48px;
            height: 48px;
            background: var(--white);
            border: 1.5px solid var(--primary-light);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--primary);
            font-size: 1.2rem;
            cursor: pointer;
            transition: var(--transition);
            opacity: 0;
            pointer-events: none;
            transform: translateY(20px)
        }
        .scroll-top.visible {
            opacity: 1;
            pointer-events: all;
            transform: translateY(0)
        }
        .scroll-top:hover {
            background: var(--primary);
            color: white
        }
        .footer {
            background: var(--text-dark);
            color: rgba(255, 255, 255, 0.7);
            padding: 80px 0 0
        }
        .footer-grid {
            display: grid;
            grid-template-columns: 2fr 1fr 1fr 1.5fr;
            gap: 48px;
            margin-bottom: 60px
        }
        .footer-brand h3 {
            font-family: 'Playfair Display', serif;
            font-size: 1.5rem;
            color: white;
            margin-bottom: 8px
        }
        .footer-brand h3 span {
            color: var(--primary-light);
            font-family: 'Dancing Script', cursive
        }
        .footer-brand p {
            font-size: 0.85rem;
            line-height: 1.8;
            margin-bottom: 20px
        }
        .footer-social {
            display: flex;
            gap: 12px
        }
        .footer-social a {
            width: 40px;
            height: 40px;
            background: rgba(255, 255, 255, 0.08);
            border-radius: 10px;
            display: flex;
            align-items: center;
            justify-content: center;
            color: rgba(255, 255, 255, 0.6);
            font-size: 1rem;
            transition: var(--transition)
        }
        .footer-social a:hover {
            background: var(--primary);
            color: white;
            transform: translateY(-3px)
        }
        .footer h4 {
            color: white;
            font-family: 'Poppins', sans-serif;
            font-size: 0.9rem;
            font-weight: 600;
            margin-bottom: 20px;
            position: relative;
            padding-bottom: 12px
        }
        .footer h4::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 30px;
            height: 2px;
            background: var(--primary)
        }
        .footer-links a {
            display: block;
            font-size: 0.85rem;
            padding: 6px 0;
            transition: var(--transition)
        }
        .footer-links a:hover {
            color: var(--primary-light);
            padding-left: 6px
        }
        .footer-contact-item {
            display: flex;
            gap: 12px;
            margin-bottom: 16px;
            align-items: flex-start;
            font-size: 0.85rem
        }
        .footer-contact-icon {
            color: var(--primary-light);
            font-size: 1rem;
            margin-top: 2px
        }
        .footer-bottom {
            border-top: 1px solid rgba(255, 255, 255, 0.08);
            padding: 24px 0;
            text-align: center;
            font-size: 0.8rem
        }
        .footer-bottom a {
            color: var(--primary-light)
        }
        .page-loader {
            position: fixed;
            inset: 0;
            background: var(--bg-light);
            z-index: 9999;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: opacity 0.5s ease
        }
        .page-loader.hidden {
            opacity: 0;
            pointer-events: none
        }
        .loader-heart {
            font-size: 3rem;
            animation: loaderPulse 1s ease-in-out infinite
        }
        @keyframes loaderPulse {
            0%,
            100% {
                transform: scale(1)
            }
            50% {
                transform: scale(1.3)
            }
        }
        .prayer-settings-modal {
            position: fixed;
            inset: 0;
            background: rgba(0, 0, 0, 0.5);
            z-index: 9999;
            display: flex;
            align-items: center;
            justify-content: center;
            opacity: 0;
            pointer-events: none;
            transition: opacity 0.3s ease
        }
        .prayer-settings-modal.active {
            opacity: 1;
            pointer-events: all
        }
        .prayer-settings-content {
            background: var(--white);
            border-radius: var(--radius-lg);
            padding: 0;
            max-width: 420px;
            width: 90%;
            box-shadow: var(--shadow-lg);
            transform: scale(0.9);
            transition: transform 0.3s ease
        }
        .prayer-settings-modal.active .prayer-settings-content {
            transform: scale(1)
        }
        .prayer-settings-header {
            background: linear-gradient(135deg, var(--primary), var(--accent));
            padding: 20px 24px;
            display: flex;
            align-items: center;
            justify-content: space-between;
            border-radius: var(--radius-lg) var(--radius-lg) 0 0;
        }
        .prayer-settings-header h3 {
            color: white;
            font-family: 'Poppins', sans-serif;
            font-size: 1rem;
            font-weight: 600
        }
        .prayer-settings-close {
            background: none;
            border: none;
            color: white;
            font-size: 1.2rem;
            cursor: pointer;
            transition: var(--transition)
        }
        .prayer-settings-close:hover {
            transform: rotate(90deg)
        }
        .prayer-settings-body {
            padding: 24px
        }
        .prayer-settings-body label {
            display: block;
            font-size: 0.82rem;
            font-weight: 600;
            color: var(--text-dark);
            margin-bottom: 8px
        }
        .prayer-settings-body select {
            width: 100%;
            padding: 12px 16px;
            background: var(--bg-cream);
            border: 1.5px solid rgba(196, 145, 139, 0.15);
            border-radius: var(--radius-sm);
            font-size: 0.9rem;
            color: var(--text-dark);
            margin-bottom: 16px;
            transition: var(--transition)
        }
        .prayer-settings-body select:focus {
            border-color: var(--primary);
            background: white;
            box-shadow: 0 0 0 4px rgba(196, 145, 139, 0.1)
        }
        .prayer-settings-body .btn-primary {
            width: 100%;
            justify-content: center
        }
        @media(max-width:1024px) {
            .pkg-grid {
                grid-template-columns: repeat(2, 1fr)
            }
            .footer-grid {
                grid-template-columns: 1fr 1fr
            }
            .fac-grid {
                grid-template-columns: repeat(2, 1fr)
            }
        }
        @media(min-width:901px) {
            .prayer-zone-info {
                width: 100%;
                display: flex;
                align-items: center;
                gap: 10px;
                flex-wrap: nowrap;
                overflow: hidden;
            }
            .prayer-live-date {
                font-size: 0.85rem;
                white-space: nowrap;
            }
            .prayer-live-hijri {
                font-size: 0.8rem;
                white-space: nowrap;
            }
            .prayer-zone-info .prayer-live-clock {
                margin-left: auto;
                font-size: 1.2rem;
                white-space: nowrap;
            }
            .prayer-times-scroll {
                width: 100%;
                display: flex;
                align-items: center;
                position: relative;
            }
            .prayer-times {
                justify-content: center;
                padding-right: 90px;
                white-space: nowrap;
            }

.prayer-next-info {
                display: flex;
                align-items: center;
                justify-content: center;
                gap: 8px;
                width: 100%;
                margin-top: 4px;
                padding-right: 8px;
            }
			  .prayer-settings-btn-mobile {
                background: rgba(255, 255, 255, 0.2);
                border: 1px solid rgba(255, 255, 255, 0.3);
                color: white;
                padding: 4px 10px;
                border-radius: 50px;
                cursor: pointer;
                font-size: 0.7rem;
                font-weight: 600;
                display: flex;
                align-items: center;
                gap: 4px;
                transition: var(--transition);
                white-space: nowrap;
                flex-shrink: 0;
            }
            .prayer-settings-btn-mobile:hover {
                background: rgba(255, 255, 255, 0.35);
                transform: translateY(-1px);
            }

}
        @media(max-width:900px) {
            .prayer-settings-btn {
                display: none;
            }
            .prayer-topbar-inner {
                flex-direction: column;
                align-items: stretch;
                gap: 6px;
            }
            .prayer-zone-info {
                display: flex;
                flex-wrap: wrap;
                justify-content: flex-start;
                align-items: center;
                gap: 6px;
                border-bottom: 1px solid rgba(255, 255, 255, 0.15);
                padding-bottom: 6px;
                overflow: hidden;
                max-width: 100%;
            }
            .prayer-live-date {
                font-size: 0.75rem;
                margin: 0;
            }
            .prayer-live-hijri {
                font-size: 0.75rem;
                margin-right: 8px;
            }
            .prayer-live-clock {
                font-size: 1rem;
                margin-left: auto;
            }

.prayer-marquee {
                padding-right: 0;
            }
            .prayer-next-info {
                display: flex;
                align-items: center;
                justify-content: center;
                gap: 8px;
                width: 100%;
                margin-top: 4px;
                padding-right: 8px;
            }
            .prayer-settings-btn-mobile {
                background: rgba(255, 255, 255, 0.2);
                border: 1px solid rgba(255, 255, 255, 0.3);
                color: white;
                padding: 4px 10px;
                border-radius: 50px;
                cursor: pointer;
                font-size: 0.7rem;
                font-weight: 600;
                display: flex;
                align-items: center;
                gap: 4px;
                transition: var(--transition);
                white-space: nowrap;
                flex-shrink: 0;
            }
            .prayer-settings-btn-mobile:hover {
                background: rgba(255, 255, 255, 0.35);
                transform: translateY(-1px);
            }
        }
        @media(max-width:768px) {
            .nav-links {
                display: none
            }
            .hamburger {
                display: flex
            }
            .mobile-menu {
                display: flex
            }
            .about-grid {
                grid-template-columns: 1fr;
                gap: 40px
            }
            .about-img-float {
                display: none
            }
            .about-experience {
                position: relative;
                top: auto;
                left: auto;
                display: inline-block;
                margin-bottom: 20px
            }
            .adv-grid {
                grid-template-columns: 1fr
            }
            .gallery-grid {
                grid-template-columns: 1fr 1fr;
                grid-template-rows: auto
            }
            .gallery-item:nth-child(1) {
                grid-column: span 2;
                grid-row: span 1
            }
            .gallery-item {
                height: 200px
            }
            .pkg-grid {
                grid-template-columns: 1fr
            }
            .loc-grid {
                grid-template-columns: 1fr
            }
            .form-row {
                grid-template-columns: 1fr
            }
            .pkg-select {
                grid-template-columns: 1fr
            }
            .hero-stats {
                gap: 24px
            }
            .booking-form {
                padding: 28px 20px
            }
            .footer-grid {
                grid-template-columns: 1fr
            }
            .section {
                padding: 70px 0
            }
            .hero-btns {
                flex-direction: column
            }
            .btn-primary,
            .btn-secondary {
                width: 100%;
                justify-content: center
            }
            .prayer-live-clock {
                font-size: 1rem;
            }
            .prayer-marquee {
                padding-right: 0;
            }
        }
        @media(max-width:480px) {
            .hero h1 {
                font-size: 1.8rem
            }
            .hero-stats {
                flex-direction: column;
                gap: 16px
            }
            .fac-grid {
                grid-template-columns: 1fr 1fr
            }
            .gallery-grid {
                grid-template-columns: 1fr
            }
            .gallery-item:nth-child(1) {
                grid-column: span 1
            }
            .ai-input-wrap {
                padding: 2px 2px;
            }
            .ai-send {
                width: 45px;
                height: 45px;
                font-size: 1rem;
            }
            .ai-messages {
                height: 280px
            }
            .prayer-live-clock {
                font-size: 0.9rem;
            }
            .ai-float {
                bottom: 90px;
            }
            .prayer-marquee {
                padding-right: 0;
            }
        }
        .lightbox {
            position: fixed;
            inset: 0;
            background: rgba(0, 0, 0, 0.9);
            z-index: 9999;
            display: flex;
            align-items: center;
            justify-content: center;
            opacity: 0;
            pointer-events: none;
            transition: opacity 0.3s ease
        }
        .lightbox.active {
            opacity: 1;
            pointer-events: all
        }
        .lightbox img {
            max-width: 90%;
            max-height: 85vh;
            border-radius: var(--radius);
            object-fit: contain
        }
        .lightbox-close {
            position: absolute;
            top: 20px;
            right: 24px;
            color: white;
            font-size: 2rem;
            cursor: pointer;
            background: none;
            border: none;
            transition: var(--transition)
        }
        .lightbox-close:hover {
            transform: rotate(90deg)
        }
        .success-modal {
            position: fixed;
            inset: 0;
            background: rgba(0, 0, 0, 0.5);
            z-index: 9999;
            display: flex;
            align-items: center;
            justify-content: center;
            opacity: 0;
            pointer-events: none;
            transition: opacity 0.3s ease
        }
        .success-modal.active {
            opacity: 1;
            pointer-events: all
        }
        .success-content {
            background: white;
            border-radius: var(--radius-lg);
            padding: 48px;
            text-align: center;
            max-width: 420px;
            margin: 20px;
            transform: scale(0.8);
            transition: transform 0.3s ease
        }
        .success-modal.active .success-content {
            transform: scale(1)
        }
        .success-icon {
            font-size: 4rem;
            margin-bottom: 16px
        }
        .success-content h3 {
            font-size: 1.4rem;
            margin-bottom: 12px
        }
        .success-content p {
            font-size: 0.9rem;
            color: var(--text-mid);
            margin-bottom: 24px
        }
        .success-close {
            background: linear-gradient(135deg, var(--primary), var(--accent));
            color: white;
            padding: 12px 36px;
            border-radius: 50px;
            font-size: 0.9rem;
            font-weight: 600;
            cursor: pointer;
            border: none;
            transition: var(--transition)
        }
        .success-close:hover {
            transform: translateY(-2px);
            box-shadow: 0 6px 20px rgba(196, 145, 139, 0.4)
        }
        .typing {
            display: flex;
            gap: 4px;
            padding: 8px 0
        }
        .typing-dot {
            width: 8px;
            height: 8px;
            background: var(--primary);
            border-radius: 50%;
            animation: typingBounce 1.4s infinite
        }
        .typing-dot:nth-child(2) {
            animation-delay: 0.2s
        }
        .typing-dot:nth-child(3) {
            animation-delay: 0.4s
        }
        @keyframes typingBounce {
            0%,
            60%,
            100% {
                transform: translateY(0)
            }
            30% {
                transform: translateY(-8px)
            }
        }
        .ai-float {
            position: fixed;
            bottom: 100px;
            right: 24px;
            z-index: 998;
            width: 60px;
            height: 60px;
            background: linear-gradient(135deg, #7C4DFF, #536DFE);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-size: 1.8rem;
            box-shadow: 0 4px 20px rgba(124, 77, 255, 0.4);
            cursor: pointer;
            transition: var(--transition);
            animation: aiFloat 3s ease-in-out infinite;
            text-decoration: none;
        }
        .ai-float:hover {
            transform: scale(1.1);
            box-shadow: 0 6px 30px rgba(124, 77, 255, 0.5);
        }
        @keyframes aiFloat {
            0%,
            100% {
                transform: translateY(0);
            }
            50% {
                transform: translateY(-8px);
            }
        }.prayer-times-scroll {
 scroll-behavior: auto !important;
        }
