 @import url('https://fonts.googleapis.com/css2?family=Amiri:wght@400;700&family=Tajawal:wght@300;400;500;700&display=swap');
        
        :root {
            --primary: #1a4d2e;
            --secondary: #2d6a4f;
            --accent: #d4af37;
            --light: #f1faee;
            --text-dark: #1b4332;
            --text-light: #f1faee;
            --shadow: rgba(26, 77, 46, 0.2);
        }
        
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        
        body {
            font-family: 'Tajawal', sans-serif;
            background: linear-gradient(135deg, #f1faee 0%, #e8f5e9 100%);
            color: var(--text-dark);
            overflow-x: hidden;
        }
        
        /* Decorative Islamic Pattern Background */
        body::before {
            content: '';
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-image: 
                radial-gradient(circle at 20% 50%, rgba(212, 175, 55, 0.03) 0%, transparent 50%),
                radial-gradient(circle at 80% 80%, rgba(45, 106, 79, 0.03) 0%, transparent 50%);
            pointer-events: none;
            z-index: -1;
        }
        
        /* Header Navigation */
        nav {
            background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
            padding: 1.5rem 0;
            position: sticky;
            top: 0;
            z-index: 1000;
            box-shadow: 0 4px 20px var(--shadow);
            border-bottom: 3px solid var(--accent);
        }
        
        nav .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 2rem;
            display: flex;
            justify-content: space-between;
            align-items: center;
            flex-wrap: wrap;
        }
        
        nav .logo {
            color: var(--accent);
            font-size: 1.5rem;
            font-weight: 700;
            font-family: 'Amiri', serif;
            text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
        }
        
        nav ul {
            list-style: none;
            display: flex;
            gap: 2rem;
            flex-wrap: wrap;
        }
        
        nav a {
            color: var(--text-light);
            text-decoration: none;
            font-weight: 500;
            transition: all 0.3s ease;
            position: relative;
            padding: 0.5rem 0;
        }
        
        nav a::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 0;
            height: 2px;
            background: var(--accent);
            transition: width 0.3s ease;
        }
        
        nav a:hover::after {
            width: 100%;
        }
        
        nav a:hover {
            color: var(--accent);
            transform: translateY(-2px);
        }
        
        /* Hero Section */
        .hero {
            background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
            color: var(--text-light);
            padding: 5rem 2rem;
            text-align: center;
            position: relative;
            overflow: hidden;
        }
        
        .hero::before {
            content: '';
            position: absolute;
            top: -50%;
            right: -20%;
            width: 600px;
            height: 600px;
            background: radial-gradient(circle, rgba(212, 175, 55, 0.1) 0%, transparent 70%);
            border-radius: 50%;
            animation: float 8s ease-in-out infinite;
        }
        
        @keyframes float {
            0%, 100% { transform: translateY(0) rotate(0deg); }
            50% { transform: translateY(-30px) rotate(5deg); }
        }
        
        .hero-content {
            max-width: 900px;
            margin: 0 auto;
            position: relative;
            z-index: 1;
            animation: fadeInUp 1s ease;
        }
        
        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(30px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }
        
        .hero h1 {
            font-family: 'Amiri', serif;
            font-size: 3rem;
            margin-bottom: 1rem;
            line-height: 1.3;
            color: var(--accent);
            text-shadow: 3px 3px 6px rgba(0,0,0,0.3);
        }
        
        .hero h2 {
            font-family: 'Amiri', serif;
            font-size: 2.8rem;
            margin-bottom: 0.5rem;
            font-weight: 700;
            color: var(--text-light);
            text-shadow: 2px 2px 8px rgba(0,0,0,0.5);
            background: rgba(0,0,0,0.2);
            padding: 1rem 2rem;
            border-radius: 15px;
            display: inline-block;
            backdrop-filter: blur(5px);
        }
        
        .hero h3 {
            font-size: 1.8rem;
            margin-bottom: 2rem;
            font-weight: 300;
            opacity: 0.95;
        }
        
        .ustadz-name {
            font-size: 1.5rem;
            margin-top: 1.5rem;
            font-weight: 500;
            background: rgba(255, 255, 255, 0.1);
            padding: 1rem 2rem;
            border-radius: 50px;
            display: inline-block;
            backdrop-filter: blur(10px);
            border: 2px solid var(--accent);
        }
        
        .book-image {
            margin: 2rem 0;
            animation: fadeIn 1.5s ease 0.5s both;
        }
        
        .book-image img {
            max-width: 250px;
            border-radius: 15px;
            box-shadow: 0 10px 40px rgba(0,0,0,0.3);
            transition: transform 0.3s ease;
        }
        
        .book-image img:hover {
            transform: scale(1.05) rotate(2deg);
        }
        
        @keyframes fadeIn {
            from { opacity: 0; }
            to { opacity: 1; }
        }
        
        /* Container */
        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 2rem;
        }
        
        /* Section Styling */
        section {
            padding: 4rem 2rem;
            animation: fadeInUp 0.8s ease;
        }
        
        section h2 {
            font-family: 'Amiri', serif;
            font-size: 2.5rem;
            color: var(--primary);
            text-align: center;
            margin-bottom: 3rem;
            position: relative;
            padding-bottom: 1rem;
        }
        
        section h2::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 50%;
            transform: translateX(-50%);
            width: 100px;
            height: 4px;
            background: linear-gradient(90deg, transparent, var(--accent), transparent);
        }
        
        /* Info Cards */
        .info-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 2rem;
            margin: 3rem 0;
        }
        
        .info-card {
            background: white;
            padding: 2rem;
            border-radius: 20px;
            box-shadow: 0 10px 30px var(--shadow);
            transition: all 0.3s ease;
            border-left: 5px solid var(--accent);
            position: relative;
            overflow: hidden;
        }
        
        .info-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(135deg, rgba(212, 175, 55, 0.05) 0%, transparent 100%);
            pointer-events: none;
        }
        
        .info-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 40px var(--shadow);
        }
        
        .info-card h3 {
            color: var(--primary);
            font-size: 1.5rem;
            margin-bottom: 1rem;
            font-family: 'Amiri', serif;
        }
        
        .info-card p, .info-card ul {
            color: var(--text-dark);
            line-height: 1.8;
        }
        
        .info-card ul {
            list-style: none;
            padding-left: 0;
        }
        
        .info-card li {
            padding: 0.5rem 0;
            padding-left: 1.5rem;
            position: relative;
        }
        
        .info-card li::before {
            content: '✓';
            position: absolute;
            left: 0;
            color: var(--accent);
            font-weight: 700;
        }
        
        /* Countdown Timer */
        .countdown {
            background: linear-gradient(135deg, var(--secondary) 0%, var(--primary) 100%);
            padding: 3rem;
            border-radius: 25px;
            margin: 3rem 0;
            box-shadow: 0 15px 50px var(--shadow);
        }
        
        .countdown h3 {
            color: var(--accent);
            text-align: center;
            font-size: 1.8rem;
            margin-bottom: 2rem;
            font-family: 'Amiri', serif;
        }
        
        .countdown-timer {
            display: flex;
            justify-content: center;
            gap: 2rem;
            flex-wrap: wrap;
        }
        
        .countdown-item {
            background: rgba(255, 255, 255, 0.1);
            padding: 1.5rem 2rem;
            border-radius: 15px;
            text-align: center;
            backdrop-filter: blur(10px);
            border: 2px solid rgba(212, 175, 55, 0.3);
            min-width: 100px;
        }
        
        .countdown-item .number {
            font-size: 3rem;
            font-weight: 700;
            color: var(--accent);
            font-family: 'Amiri', serif;
        }
        
        .countdown-item .label {
            color: var(--text-light);
            margin-top: 0.5rem;
            font-size: 1rem;
            text-transform: uppercase;
            letter-spacing: 1px;
        }
        
        /* Tata Tertib */
        .tata-tertib {
            background: white;
            padding: 3rem;
            border-radius: 25px;
            box-shadow: 0 10px 30px var(--shadow);
            margin: 3rem 0;
        }
        
        .tata-tertib ol {
            padding-left: 2rem;
        }
        
        .tata-tertib li {
            padding: 1rem 0;
            line-height: 1.8;
            color: var(--text-dark);
            border-bottom: 1px solid rgba(26, 77, 46, 0.1);
        }
        
        .tata-tertib li:last-child {
            border-bottom: none;
        }
        
        /* Rundown */
        .rundown-container {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
            gap: 2rem;
            margin: 3rem 0;
        }
        
        .day-schedule {
            background: white;
            padding: 2rem;
            border-radius: 20px;
            box-shadow: 0 10px 30px var(--shadow);
            border-top: 5px solid var(--accent);
        }
        
        .day-schedule h3 {
            color: var(--primary);
            font-size: 2rem;
            margin-bottom: 1.5rem;
            font-family: 'Amiri', serif;
            text-align: center;
            padding-bottom: 1rem;
            border-bottom: 2px solid var(--accent);
        }
        
        .schedule-item {
            padding: 1rem;
            margin: 0.5rem 0;
            background: linear-gradient(90deg, rgba(26, 77, 46, 0.05) 0%, transparent 100%);
            border-radius: 10px;
            border-left: 3px solid var(--secondary);
            transition: all 0.3s ease;
        }
        
        .schedule-item:hover {
            background: linear-gradient(90deg, rgba(26, 77, 46, 0.1) 0%, transparent 100%);
            transform: translateX(5px);
        }
        
        .schedule-item .time {
            font-weight: 700;
            color: var(--secondary);
            margin-bottom: 0.3rem;
            font-size: 0.9rem;
        }
        
        .schedule-item .activity {
            color: var(--text-dark);
            font-size: 1rem;
        }
        
        /* CTA Buttons */
        .cta-section {
            text-align: center;
            padding: 4rem 2rem;
            background: linear-gradient(135deg, rgba(26, 77, 46, 0.05) 0%, rgba(45, 106, 79, 0.05) 100%);
            margin: 3rem 0;
            border-radius: 25px;
        }
        
        .cta-button {
            display: inline-block;
            background: linear-gradient(135deg, var(--accent) 0%, #c49d2f 100%);
            color: var(--primary);
            padding: 1.5rem 3rem;
            border-radius: 50px;
            text-decoration: none;
            font-size: 1.3rem;
            font-weight: 700;
            transition: all 0.3s ease;
            box-shadow: 0 10px 30px rgba(212, 175, 55, 0.3);
            border: 3px solid transparent;
        }
        
        .cta-button:hover {
            transform: translateY(-5px) scale(1.05);
            box-shadow: 0 15px 40px rgba(212, 175, 55, 0.5);
            border: 3px solid var(--primary);
        }
        
        /* Footer */
        footer {
            background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
            color: var(--text-light);
            text-align: center;
            padding: 3rem 2rem;
            margin-top: 4rem;
        }
        
        footer p {
            font-size: 1.1rem;
            line-height: 1.8;
        }
        
        /* Maps Container */
        .maps-container {
            margin-top: 2rem;
            border-radius: 20px;
            overflow: hidden;
            box-shadow: 0 10px 40px var(--shadow);
            border: 5px solid var(--accent);
        }
        
        .maps-container iframe {
            width: 100%;
            height: 450px;
            border: none;
            display: block;
        }
        
        .location-info {
            background: white;
            padding: 2rem;
            border-radius: 20px;
            margin-bottom: 2rem;
            box-shadow: 0 10px 30px var(--shadow);
            text-align: center;
        }
        
        .location-info h3 {
            color: var(--primary);
            font-size: 1.8rem;
            margin-bottom: 1rem;
            font-family: 'Amiri', serif;
        }
        
        .location-info p {
            color: var(--text-dark);
            font-size: 1.1rem;
            margin: 0.5rem 0;
        }
        
        .map-link {
            display: inline-block;
            margin-top: 1rem;
            padding: 1rem 2rem;
            background: linear-gradient(135deg, var(--secondary) 0%, var(--primary) 100%);
            color: var(--text-light);
            text-decoration: none;
            border-radius: 50px;
            font-weight: 600;
            transition: all 0.3s ease;
            box-shadow: 0 5px 15px var(--shadow);
        }
        
        .map-link:hover {
            transform: translateY(-3px);
            box-shadow: 0 8px 25px var(--shadow);
        }
        
        /* Responsive */
        @media (max-width: 768px) {
            nav .container {
                flex-direction: column;
                gap: 1rem;
            }
            
            nav ul {
                gap: 1rem;
                justify-content: center;
            }
            
            .hero h1 {
                font-size: 2rem;
            }
            
            .hero h2 {
                font-size: 1.8rem;
            }
            
            .hero h3 {
                font-size: 1.3rem;
            }
            
            .countdown-timer {
                gap: 1rem;
            }
            
            .countdown-item {
                padding: 1rem 1.5rem;
                min-width: 80px;
            }
            
            .countdown-item .number {
                font-size: 2rem;
            }
            
            .rundown-container {
                grid-template-columns: 1fr;
            }
            
            section {
                padding: 3rem 1rem;
            }
            
            .maps-container iframe {
                height: 300px;
            }
        }
        
        /* Smooth Scroll */
        html {
            scroll-behavior: smooth;
        }
