:root { --bg-dark: #000000; --surface: #111111; --surface-light: #1c1c1e; --text-main: #f5f5f7; --text-muted: #86868b; --accent: #2997ff; --accent-hover: #0071e3; --border: rgba(255,255,255,0.1); }
* { box-sizing: border-box; margin: 0; padding: 0; }
body { font-family: 'Inter', -apple-system, sans-serif; background: var(--bg-dark); color: var(--text-main); line-height: 1.5; padding-bottom: 80px; }
img { max-width: 100%; border-radius: 12px; }
h1, h2, h3 { font-weight: 600; letter-spacing: -0.5px; }
.section-title { font-size: 24px; text-align: center; margin: 40px 0 20px; }

/* Hero */
.hero { text-align: center; padding: 70px 20px 20px; background: radial-gradient(circle at top, #1a1a24, var(--bg-dark)); }
.glass-nav { position: fixed; top: 0; left: 0; width: 100%; padding: 15px 20px; background: rgba(0,0,0,0.6); backdrop-filter: blur(15px); z-index: 100; border-bottom: 1px solid var(--border); }
.logo { font-size: 20px; font-weight: 700; background: linear-gradient(90deg, #fff, #888); -webkit-background-clip: text; -webkit-text-fill-color: transparent; margin: 0;}
.banner-container { width: 100%; max-width: 1000px; margin: 20px auto; overflow: hidden; border-radius: 16px; box-shadow: 0 4px 20px rgba(0,0,0,0.5); }
.hero-img { width: 100%; height: auto; display: block; border-radius: 16px;}
.hero-content { margin-top: 20px; }
.hero-btns { display: flex; gap: 15px; justify-content: center; flex-wrap: wrap; }

/* Buttons */
.btn { display: inline-block; padding: 12px 24px; border-radius: 30px; font-weight: 600; text-decoration: none; transition: 0.3s; font-size: 15px; text-align: center; cursor: pointer; }
.btn-primary { background: var(--accent); color: white; border: none; }
.btn-primary:hover { background: var(--accent-hover); }
.btn-outline { background: transparent; color: var(--text-main); border: 1px solid var(--border); }
.btn-outline:hover { background: var(--surface-light); }

/* Panels */
.glass-panel { margin: 20px 20px 40px; padding: 25px; background: rgba(28,28,30,0.5); backdrop-filter: blur(10px); border-radius: 20px; border: 1px solid var(--border); max-width: 800px; margin-left: auto; margin-right: auto; }
.glass-panel h3 { margin-bottom: 15px; font-size: 18px; }
.check-list { list-style: none; color: var(--text-muted); margin-bottom: 15px; }
.check-list li { margin-bottom: 5px; }
.duration { font-weight: 600; color: var(--accent); margin-bottom: 20px; }
.extra-charges { display: flex; flex-direction: column; gap: 10px; }
.charge-item { display: flex; justify-content: space-between; align-items: center; padding-top: 10px; border-top: 1px solid var(--border); }
.price-badge { background: #333; padding: 4px 10px; border-radius: 8px; font-size: 13px; font-weight: 600; }
.price-badge.highlight { background: #442222; color: #ff6b6b; }

/* Grids & Cards */
.grid { display: grid; grid-template-columns: 1fr; gap: 20px; padding: 0 20px; max-width: 1200px; margin: 0 auto; }
@media(min-width: 600px) { .grid { grid-template-columns: repeat(2, 1fr); } }
@media(min-width: 900px) { .grid { grid-template-columns: repeat(3, 1fr); } }
.card { background: var(--surface); border-radius: 16px; overflow: hidden; border: 1px solid var(--border); }
.card-img-container { height: 280px; overflow: hidden; position: relative; }
.card-img-container img { width: 100%; height: 100%; object-fit: cover; border-radius: 0; }
.price-tag { position: absolute; top: 10px; right: 10px; background: rgba(0,0,0,0.8); backdrop-filter: blur(5px); padding: 6px 14px; border-radius: 20px; font-weight: 700; font-size: 16px; border: 1px solid rgba(255,255,255,0.2); }
.card-info { padding: 15px; }
.card-info h3 { margin-bottom: 15px; font-size: 18px; text-align: center;}
.demo-wrapper { display: none; margin-top: 15px; padding-top: 15px; border-top: 1px solid var(--border); }
.video-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(130px, 1fr)); gap: 10px; }
.shorts-container { position: relative; padding-bottom: 177.77%; height: 0; overflow: hidden; border-radius: 8px; background: #000; }
.shorts-container iframe { position: absolute; top: 0; left: 0; width: 100%; height: 100%; border: none; }

/* Horizontal Carousels */
.carousel-section { max-width: 1200px; margin: 0 auto 40px; }
.carousel-container { display: flex; overflow-x: auto; scroll-snap-type: x mandatory; gap: 15px; padding: 10px 20px 20px; scroll-behavior: smooth; }
.carousel-container::-webkit-scrollbar { height: 6px; }
.carousel-container::-webkit-scrollbar-thumb { background: #333; border-radius: 10px; }
.carousel-item { flex: 0 0 80%; max-width: 350px; scroll-snap-align: center; border-radius: 12px; overflow: hidden; border: 1px solid var(--border);}
.carousel-item img { width: 100%; height: 100%; aspect-ratio: 1/1; object-fit: cover; display: block; border-radius: 0; }
@media(min-width: 600px) { .carousel-item { flex: 0 0 45%; } }
@media(min-width: 900px) { .carousel-item { flex: 0 0 30%; } }

/* Services */
.services-grid { display: grid; grid-template-columns: 1fr; gap: 15px; padding: 0 20px; max-width: 800px; margin: 0 auto; }
@media(min-width: 600px) { .services-grid { grid-template-columns: repeat(2, 1fr); } }
.service-card { background: var(--surface); padding: 20px; border-radius: 16px; border: 1px solid var(--border); display: flex; align-items: center; gap: 15px; }
.service-card h4 { font-size: 16px; }

/* FAQ */
.faq-container { padding: 0 20px; max-width: 800px; margin: 0 auto; }
.faq-item { background: var(--surface); margin-bottom: 10px; border-radius: 12px; padding: 15px; border: 1px solid var(--border); }
.faq-question { font-weight: 600; cursor: pointer; display: flex; justify-content: space-between; }
.faq-answer { display: none; margin-top: 10px; color: var(--text-muted); font-size: 14px; }

/* Floating Buttons */
.floating-buttons { position: fixed; bottom: 20px; right: 20px; display: flex; flex-direction: column; gap: 15px; z-index: 1000; }
.fab { width: 60px; height: 60px; border-radius: 50%; display: flex; align-items: center; justify-content: center; box-shadow: 0 4px 15px rgba(0,0,0,0.5); transition: transform 0.3s; }
.fab:hover { transform: scale(1.1); }
.fab.fb-link { background: #1877f2; }
.fab.whatsapp-link { background: #25d366; }