/* PREMIUM SECTIONS CSS */

/* 1. FAQ Section */
.faq-premium-section { padding: 100px 0; background: #fff; }
.faq-accordion { max-width: 800px; margin: 0 auto; }
.faq-item { margin-bottom: 15px; border: 1px solid #e2e8f0; border-radius: 12px; overflow: hidden; background: #f8fafc; }
.faq-question { width: 100%; text-align: right; padding: 20px 25px; background: transparent; border: none; font-size: 1.1rem; font-weight: 700; color: #0f172a; cursor: pointer; display: flex; justify-content: space-between; align-items: center; transition: 0.3s; }
.faq-question:hover { color: #0a66ff; background: #f1f5f9; }
.faq-icon { color: #0a66ff; background: rgba(10,102,255,0.1); width: 35px; height: 35px; display: flex; align-items: center; justify-content: center; border-radius: 50%; transition: 0.3s; }
.faq-question.open .faq-icon { transform: rotate(135deg); background: #0a66ff; color: #fff; }
.faq-answer { max-height: 0; overflow: hidden; transition: max-height 0.4s ease; }
.faq-answer-inner { padding: 0 25px 25px; color: #5a6a85; line-height: 1.7; }

/* 2. Masonry Gallery */
.gallery-section { padding: 100px 0; background: #f0f4ff; }
.gallery-filters { display: flex; justify-content: center; gap: 15px; margin-bottom: 40px; flex-wrap: wrap; }
.gallery-filter { padding: 8px 24px; border-radius: 50px; background: #fff; border: 1px solid #cbd5e1; color: #64748b; font-weight: 600; cursor: pointer; transition: 0.3s; }
.gallery-filter:hover, .gallery-filter.active { background: #0a66ff; color: #fff; border-color: #0a66ff; box-shadow: 0 4px 15px rgba(10,102,255,0.3); }
.gallery-masonry { display: grid; grid-template-columns: repeat(auto-fill, minmax(300px, 1fr)); gap: 20px; }
.gallery-item { position: relative; border-radius: 16px; overflow: hidden; height: 250px; cursor: pointer; }
.gallery-item img { width: 100%; height: 100%; object-fit: cover; transition: 0.5s; }
.gallery-overlay { position: absolute; inset: 0; background: rgba(15,23,42,0.8); display: flex; flex-direction: column; align-items: center; justify-content: center; opacity: 0; transition: 0.4s; }
.gallery-item:hover .gallery-overlay { opacity: 1; }
.gallery-item:hover img { transform: scale(1.1); }
.gallery-overlay i { font-size: 2.5rem; color: #38bdf8; margin-bottom: 10px; transform: translateY(20px); transition: 0.4s; }
.gallery-overlay h4 { color: #fff; font-size: 1.2rem; transform: translateY(20px); transition: 0.4s; transition-delay: 0.1s; }
.gallery-item:hover .gallery-overlay i, .gallery-item:hover .gallery-overlay h4 { transform: translateY(0); }

/* 3. Testimonials Slider */
.testimonials-premium { padding: 100px 0; background: #0b1120; color: #fff; overflow: hidden; }
.testimonials-slider-wrapper { display: flex; overflow-x: auto; scroll-snap-type: x mandatory; scrollbar-width: none; gap: 30px; padding: 20px 0; }
.testimonials-slider-wrapper::-webkit-scrollbar { display: none; }
.testi-card { min-width: 350px; max-width: 400px; background: rgba(255,255,255,0.03); border: 1px solid rgba(255,255,255,0.05); padding: 40px; border-radius: 24px; scroll-snap-align: start; flex-shrink: 0; backdrop-filter: blur(10px); }
.testi-stars { color: #f59e0b; margin-bottom: 20px; font-size: 1.2rem; }
.testi-card p { font-size: 1.1rem; line-height: 1.8; color: #cbd5e1; font-style: italic; margin-bottom: 30px; }
.testi-author { display: flex; align-items: center; gap: 15px; }
.testi-avatar { width: 50px; height: 50px; border-radius: 50%; background: linear-gradient(135deg, #0a66ff, #38bdf8); display: flex; align-items: center; justify-content: center; font-size: 1.5rem; }
.testi-info h4 { font-size: 1.1rem; margin-bottom: 3px; }
.testi-info span { font-size: 0.85rem; color: #64748b; }

/* 4. Pricing */
.pricing-premium { padding: 100px 0; background: #f8fafc; }
.pricing-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 30px; align-items: center; }
.pricing-card { background: #fff; padding: 50px 40px; border-radius: 24px; text-align: center; border: 1px solid #e2e8f0; box-shadow: 0 10px 30px rgba(0,0,0,0.03); transition: 0.4s; position: relative; }
.pricing-card:hover { transform: translateY(-10px); box-shadow: 0 20px 40px rgba(10,102,255,0.1); }
.pricing-card h3 { font-size: 1.5rem; color: #0f172a; margin-bottom: 15px; }
.pricing-card .price { font-size: 1.2rem; color: #64748b; font-weight: 600; margin-bottom: 10px; }
.pricing-card .price span { font-size: 3rem; color: #0a66ff; font-weight: 800; }
.price-desc { color: #94a3b8; font-size: 0.95rem; margin-bottom: 30px; }
.price-features { list-style: none; text-align: right; margin-bottom: 40px; }
.price-features li { margin-bottom: 15px; color: #475569; display: flex; align-items: center; gap: 10px; }
.price-features li i { color: #10b981; }
.price-features li.disabled { color: #cbd5e1; }
.price-features li.disabled i { color: #cbd5e1; }
.pricing-card.featured { background: linear-gradient(135deg, #0f172a, #1e293b); color: #fff; transform: scale(1.05); border: none; box-shadow: 0 20px 50px rgba(15,23,42,0.3); }
.pricing-card.featured:hover { transform: scale(1.05) translateY(-10px); }
.pricing-card.featured h3, .pricing-card.featured .price, .pricing-card.featured .price-desc, .pricing-card.featured .price-features li { color: #fff; }
.pricing-card.featured .price span { color: #f59e0b; }
.featured-badge { position: absolute; top: -15px; left: 50%; transform: translateX(-50%); background: linear-gradient(135deg, #f59e0b, #d97706); color: #fff; padding: 5px 20px; border-radius: 50px; font-weight: 700; font-size: 0.85rem; }

/* 5. Service Areas */
.areas-section { padding: 100px 0; background: #fff; }
.areas-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(150px, 1fr)); gap: 20px; }
.area-card { background: #f0f4ff; padding: 30px 20px; border-radius: 16px; text-align: center; cursor: pointer; transition: 0.3s; border: 1px solid transparent; }
.area-card i { font-size: 2rem; color: #0a66ff; margin-bottom: 15px; transition: 0.3s; }
.area-card h3 { font-size: 1.2rem; color: #0f172a; }
.area-card:hover { background: #0a66ff; border-color: #0a66ff; transform: translateY(-5px); box-shadow: 0 10px 20px rgba(10,102,255,0.2); }
.area-card:hover i, .area-card:hover h3 { color: #fff; }

/* 6. Blog */
.blog-section { padding: 100px 0; background: #f8fafc; }
.blog-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(320px, 1fr)); gap: 30px; }
.blog-card { background: #fff; border-radius: 20px; overflow: hidden; box-shadow: 0 5px 20px rgba(0,0,0,0.03); border: 1px solid #f1f5f9; transition: 0.3s; }
.blog-card:hover { transform: translateY(-10px); box-shadow: 0 15px 30px rgba(10,102,255,0.1); }
.blog-img { height: 220px; overflow: hidden; }
.blog-img img { width: 100%; height: 100%; object-fit: cover; transition: 0.5s; }
.blog-card:hover .blog-img img { transform: scale(1.05); }
.blog-content { padding: 30px; }
.blog-cat { background: rgba(10,102,255,0.1); color: #0a66ff; padding: 5px 15px; border-radius: 50px; font-size: 0.8rem; font-weight: 700; display: inline-block; margin-bottom: 15px; }
.blog-content h3 { font-size: 1.3rem; margin-bottom: 15px; color: #0f172a; }
.blog-content p { color: #64748b; font-size: 0.95rem; margin-bottom: 20px; line-height: 1.6; }
.blog-more { display: inline-flex; align-items: center; gap: 8px; color: #0a66ff; font-weight: 700; text-decoration: none; }
.blog-more i { transition: 0.3s; }
.blog-card:hover .blog-more i { transform: translateX(-5px); }

/* 7. CTA Banner */
.cta-premium-section { padding: 120px 0; background: linear-gradient(135deg, #0f172a, #1e293b); position: relative; overflow: hidden; text-align: center; }
.cta-glow { position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%); width: 80%; height: 80%; background: radial-gradient(circle, rgba(10,102,255,0.3) 0%, transparent 60%); pointer-events: none; }
.cta-content { position: relative; z-index: 2; }
.cta-content h2 { font-size: clamp(2.5rem, 5vw, 4rem); color: #fff; font-weight: 800; margin-bottom: 20px; }
.cta-content h2 span { color: #38bdf8; }
.cta-content p { color: #cbd5e1; font-size: 1.2rem; max-width: 600px; margin: 0 auto 40px; }
.cta-actions { display: flex; justify-content: center; gap: 20px; flex-wrap: wrap; }
.btn-outline-white { border: 2px solid #fff; color: #fff; background: transparent; }
.btn-outline-white:hover { background: #fff; color: #0f172a; }

/* 8. Contact Us Split */
.contact-premium { padding: 100px 0; background: #fff; }
.contact-split { display: grid; grid-template-columns: 1fr 1fr; gap: 50px; background: #f8fafc; border-radius: 30px; overflow: hidden; box-shadow: 0 20px 50px rgba(0,0,0,0.05); }
.contact-info-side { padding: 60px; background: linear-gradient(135deg, #0a66ff, #0050cc); color: #fff; position: relative; overflow: hidden; }
.contact-info-side::after { content: ''; position: absolute; bottom: -50px; right: -50px; width: 200px; height: 200px; background: radial-gradient(circle, rgba(255,255,255,0.1) 0%, transparent 70%); border-radius: 50%; }
.contact-info-side h2 { font-size: 2.5rem; font-weight: 800; margin-bottom: 20px; }
.contact-info-side h2 span { color: #fcd34d; }
.contact-info-side p { font-size: 1.1rem; opacity: 0.9; margin-bottom: 40px; }
.contact-details-list { list-style: none; display: flex; flex-direction: column; gap: 30px; }
.contact-details-list li { display: flex; align-items: center; gap: 20px; }
.c-icon { width: 50px; height: 50px; background: rgba(255,255,255,0.1); border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 1.2rem; }
.c-text span { display: block; font-size: 0.85rem; opacity: 0.8; margin-bottom: 5px; }
.c-text strong { font-size: 1.1rem; }
.contact-form-side { padding: 60px; }
.glass-form-container h3 { font-size: 2rem; color: #0f172a; margin-bottom: 30px; }
.premium-form .form-group { margin-bottom: 20px; }
.premium-form input, .premium-form textarea { width: 100%; padding: 15px 20px; border: 1px solid #cbd5e1; border-radius: 12px; background: #fff; font-family: inherit; font-size: 1rem; transition: 0.3s; }
.premium-form input:focus, .premium-form textarea:focus { outline: none; border-color: #0a66ff; box-shadow: 0 0 0 4px rgba(10,102,255,0.1); }
.w-100 { width: 100%; justify-content: center; padding: 18px; font-size: 1.1rem; border-radius: 12px; }

@media (max-width: 992px) {
  .contact-split { grid-template-columns: 1fr; }
  .pricing-card.featured { transform: scale(1); }
  .pricing-card.featured:hover { transform: translateY(-10px); }
}
