/* ========== RESET & BASE ========== */
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@400;600;700&family=Inter:wght@300;400;500;600&display=swap');
@import url('https://cdn.jsdelivr.net/npm/bootstrap-icons@1.11.3/font/bootstrap-icons.min.css');

*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }

/* ========== ICON UTILITIES ========== */
.icon { display: inline-flex; align-items: center; justify-content: center; }
.icon-sm { font-size: 1rem; }
.icon-md { font-size: 1.2rem; }
.icon-lg { font-size: 1.5rem; }
.icon-xl { font-size: 2rem; }
.btn i { font-size: 1.1rem; }

:root {
  --primary: #D88FAC;
  --secondary: #F5E6F0;
  --accent: #7C3E66;
  --text: #333333;
  --cta-hover: #FF9FCC;
  --white: #FFFFFF;
  --gold: #C9A96E;
  --shadow: 0 8px 32px rgba(124,62,102,0.12);
  --radius: 16px;
}

html { scroll-behavior: smooth; font-size: 16px; }
body { font-family: 'Inter', sans-serif; color: var(--text); background: var(--white); line-height: 1.7; overflow-x: hidden; }
h1, h2, h3 { font-family: 'Playfair Display', serif; color: var(--accent); }
img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }

/* ========== UTILITY ========== */
.container { max-width: 1140px; margin: 0 auto; padding: 0 24px; }
.section-title { text-align: center; font-size: 2.2rem; margin-bottom: 12px; }
.section-subtitle { text-align: center; color: #777; font-size: 1.05rem; margin-bottom: 48px; }
.btn { display: inline-flex; align-items: center; gap: 10px; padding: 16px 36px; border-radius: 50px; font-weight: 600; font-size: 1rem; border: none; cursor: pointer; transition: all .35s ease; }
.btn-primary { background: var(--accent); color: var(--white); box-shadow: 0 4px 20px rgba(124,62,102,0.3); }
.btn-primary:hover { background: var(--cta-hover); color: var(--accent); transform: translateY(-3px); box-shadow: 0 8px 28px rgba(255,159,204,0.4); }
.btn-outline { background: transparent; border: 2px solid var(--accent); color: var(--accent); }
.btn-outline:hover { background: var(--accent); color: var(--white); transform: translateY(-3px); }

/* ========== NAVBAR ========== */
.navbar { position: fixed; top: 0; left: 0; width: 100%; z-index: 1000; padding: 16px 0; transition: all .4s ease; }
.navbar.scrolled { background: rgba(255,255,255,0.97); backdrop-filter: blur(12px); box-shadow: 0 2px 20px rgba(0,0,0,0.06); padding: 10px 0; }
.navbar .container { display: flex; justify-content: space-between; align-items: center; }
.logo { font-family: 'Playfair Display', serif; font-size: 1.6rem; font-weight: 700; color: var(--accent); }
.logo span { color: var(--primary); }
.nav-links { display: flex; gap: 28px; align-items: center; }
.nav-links a { font-size: 0.9rem; font-weight: 500; color: var(--text); transition: color .3s; position: relative; }
.nav-links a::after { content: ''; position: absolute; bottom: -4px; left: 0; width: 0; height: 2px; background: var(--primary); transition: width .3s; }
.nav-links a:hover::after { width: 100%; }
.nav-links a:hover { color: var(--accent); }
.menu-toggle { display: none; background: none; border: none; font-size: 1.6rem; color: var(--accent); cursor: pointer; }

/* ========== HERO ========== */
.hero { min-height: 100vh; display: flex; align-items: center; background: linear-gradient(135deg, var(--secondary) 0%, #FFF0F5 50%, var(--white) 100%); position: relative; overflow: hidden; padding-top: 80px; }
.hero::before { content: ''; position: absolute; top: -100px; right: -100px; width: 500px; height: 500px; border-radius: 50%; background: radial-gradient(circle, rgba(216,143,172,0.2), transparent 70%); }
.hero::after { content: ''; position: absolute; bottom: -50px; left: -50px; width: 300px; height: 300px; border-radius: 50%; background: radial-gradient(circle, rgba(124,62,102,0.08), transparent 70%); }
.hero .container { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; position: relative; z-index: 1; }
.hero-content h1 { font-size: 3rem; line-height: 1.2; margin-bottom: 20px; }
.hero-content h1 .highlight { color: var(--primary); position: relative; }
.hero-content p { font-size: 1.15rem; color: #555; margin-bottom: 32px; max-width: 480px; }
.hero-buttons { display: flex; gap: 16px; flex-wrap: wrap; }
.hero-image { position: relative; }
.hero-image img { border-radius: 24px; box-shadow: var(--shadow); }
.hero-badge { position: absolute; bottom: 24px; left: -20px; background: var(--white); padding: 16px 24px; border-radius: 16px; box-shadow: var(--shadow); display: flex; align-items: center; gap: 12px; }
.hero-badge .badge-icon { width: 48px; height: 48px; border-radius: 50%; background: var(--secondary); display: flex; align-items: center; justify-content: center; font-size: 1.4rem; }
.hero-badge .badge-text span { font-weight: 700; font-size: 1.3rem; color: var(--accent); display: block; }
.hero-badge .badge-text small { color: #888; font-size: 0.8rem; }

/* ========== STATS ========== */
.stats { padding: 48px 0; background: var(--accent); }
.stats .container { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; text-align: center; }
.stat-item h3 { font-size: 2.2rem; color: var(--white); font-family: 'Inter', sans-serif; font-weight: 700; }
.stat-item p { color: rgba(255,255,255,0.8); font-size: 0.9rem; margin-top: 4px; }

/* ========== SERVICES ========== */
.services { padding: 100px 0; background: var(--white); }
.services-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px; }
.service-card { background: var(--white); border-radius: var(--radius); overflow: hidden; box-shadow: 0 4px 24px rgba(0,0,0,0.06); transition: all .4s ease; border: 1px solid rgba(216,143,172,0.15); }
.service-card:hover { transform: translateY(-8px); box-shadow: 0 12px 40px rgba(124,62,102,0.15); }
.service-card img { width: 100%; height: 220px; object-fit: cover; }
.service-card-body { padding: 28px; }
.service-card-body h3 { font-size: 1.3rem; margin-bottom: 8px; }
.service-card-body p { font-size: 0.92rem; color: #666; margin-bottom: 16px; }
.service-meta { display: flex; justify-content: space-between; align-items: center; padding-top: 16px; border-top: 1px solid #f0e4ec; }
.service-price { font-weight: 700; color: var(--accent); font-size: 1.1rem; }
.service-duration { font-size: 0.85rem; color: #999; }

/* ========== TESTIMONIALS ========== */
.testimonials { padding: 100px 0; background: linear-gradient(180deg, var(--secondary) 0%, var(--white) 100%); }
.testimonials-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.testimonial-card { background: var(--white); padding: 32px; border-radius: var(--radius); box-shadow: 0 4px 20px rgba(0,0,0,0.05); position: relative; transition: transform .3s; }
.testimonial-card:hover { transform: translateY(-4px); }
.testimonial-card .stars { color: var(--gold); font-size: 1rem; margin-bottom: 16px; letter-spacing: 2px; }
.testimonial-card p { font-size: 0.95rem; color: #555; font-style: italic; margin-bottom: 20px; line-height: 1.7; }
.testimonial-author { display: flex; align-items: center; gap: 12px; }
.testimonial-avatar { width: 44px; height: 44px; border-radius: 50%; background: var(--secondary); display: flex; align-items: center; justify-content: center; font-weight: 700; color: var(--accent); font-size: 1.1rem; }
.testimonial-name { font-weight: 600; font-size: 0.9rem; }
.testimonial-loc { font-size: 0.8rem; color: #999; }

/* ========== CTA BANNER ========== */
.cta-banner { padding: 80px 0; background: linear-gradient(135deg, var(--accent) 0%, #a0527e 100%); text-align: center; position: relative; overflow: hidden; }
.cta-banner::before { content: ''; position: absolute; top: 0; left: 0; right: 0; bottom: 0; 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='%23ffffff' fill-opacity='0.05'%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"); }
.cta-banner h2 { color: var(--white); font-size: 2.4rem; margin-bottom: 16px; position: relative; }
.cta-banner p { color: rgba(255,255,255,0.9); font-size: 1.1rem; margin-bottom: 36px; position: relative; }
.cta-banner .btn { position: relative; }

/* ========== FAQ ========== */
.faq { padding: 100px 0; background: var(--white); }
.faq-list { max-width: 720px; margin: 0 auto; }
.faq-item { border: 1px solid #f0e4ec; border-radius: 12px; margin-bottom: 12px; overflow: hidden; transition: all .3s; }
.faq-item.active { box-shadow: 0 4px 20px rgba(216,143,172,0.15); }
.faq-question { padding: 20px 24px; display: flex; justify-content: space-between; align-items: center; cursor: pointer; font-weight: 600; font-size: 1rem; background: var(--white); transition: background .3s; }
.faq-question:hover { background: var(--secondary); }
.faq-question .icon { font-size: 1.4rem; color: var(--primary); transition: transform .3s; }
.faq-item.active .faq-question .icon { transform: rotate(45deg); }
.faq-answer { max-height: 0; overflow: hidden; transition: max-height .4s ease, padding .4s ease; }
.faq-answer p { padding: 0 24px 20px; color: #666; font-size: 0.95rem; line-height: 1.8; }
.faq-item.active .faq-answer { max-height: 300px; }

/* ========== FORM ========== */
.contact { padding: 100px 0; background: linear-gradient(180deg, var(--white) 0%, var(--secondary) 100%); }
.contact .container { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: start; }
.contact-info h2 { font-size: 2rem; margin-bottom: 16px; }
.contact-info p { color: #666; margin-bottom: 32px; }
.contact-detail { display: flex; align-items: center; gap: 16px; margin-bottom: 20px; }
.contact-icon { width: 48px; height: 48px; border-radius: 12px; background: var(--secondary); display: flex; align-items: center; justify-content: center; font-size: 1.2rem; flex-shrink: 0; }
.contact-detail span { font-size: 0.95rem; }
.form-card { background: var(--white); padding: 40px; border-radius: var(--radius); box-shadow: var(--shadow); }
.form-card h3 { font-size: 1.4rem; margin-bottom: 8px; color: var(--accent); }
.form-card > p { font-size: 0.9rem; color: #888; margin-bottom: 28px; }
.form-group { margin-bottom: 18px; }
.form-group label { display: block; font-size: 0.85rem; font-weight: 500; margin-bottom: 6px; color: var(--text); }
.form-group input, .form-group select { width: 100%; padding: 14px 16px; border: 1.5px solid #e8d5e0; border-radius: 10px; font-size: 0.95rem; font-family: 'Inter', sans-serif; transition: border-color .3s, box-shadow .3s; background: #FDFAFC; }
.form-group input:focus, .form-group select:focus { outline: none; border-color: var(--primary); box-shadow: 0 0 0 4px rgba(216,143,172,0.15); }
.form-group input.error { border-color: #e74c3c; }
.form-submit { width: 100%; padding: 16px; font-size: 1rem; }

/* ========== FOOTER ========== */
.footer { background: #2a1523; padding: 60px 0 24px; color: rgba(255,255,255,0.7); }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr; gap: 48px; margin-bottom: 48px; }
.footer h4 { color: var(--white); font-size: 1.1rem; margin-bottom: 20px; font-family: 'Playfair Display', serif; }
.footer-about p { font-size: 0.9rem; line-height: 1.8; }
.footer-links a { display: block; font-size: 0.9rem; margin-bottom: 10px; transition: color .3s; }
.footer-links a:hover { color: var(--primary); }
.footer-social { display: flex; gap: 12px; margin-top: 16px; }
.footer-social a { width: 40px; height: 40px; border-radius: 50%; background: rgba(255,255,255,0.08); display: flex; align-items: center; justify-content: center; font-size: 1.1rem; transition: all .3s; }
.footer-social a:hover { background: var(--primary); color: var(--white); transform: translateY(-3px); }
.footer-bottom { border-top: 1px solid rgba(255,255,255,0.08); padding-top: 24px; text-align: center; font-size: 0.85rem; }

/* ========== WHATSAPP FLOAT ========== */
.whatsapp-float { position: fixed; bottom: 28px; right: 28px; z-index: 9999; width: 60px; height: 60px; border-radius: 50%; background: #25D366; display: flex; align-items: center; justify-content: center; box-shadow: 0 4px 20px rgba(37,211,102,0.4); cursor: pointer; transition: all .3s; opacity: 0; transform: scale(0.6); pointer-events: none; }
.whatsapp-float.visible { opacity: 1; transform: scale(1); pointer-events: all; }
.whatsapp-float:hover { transform: scale(1.1); box-shadow: 0 6px 28px rgba(37,211,102,0.5); }
.whatsapp-float svg { width: 32px; height: 32px; fill: white; }
.whatsapp-pulse { position: absolute; width: 100%; height: 100%; border-radius: 50%; background: #25D366; animation: pulse 2s infinite; z-index: -1; }
@keyframes pulse { 0% { transform: scale(1); opacity: 0.5; } 100% { transform: scale(1.6); opacity: 0; } }

/* ========== ANIMATIONS ========== */
.reveal { opacity: 0; transform: translateY(40px); transition: all 0.8s cubic-bezier(0.16,1,0.3,1); }
.reveal.visible { opacity: 1; transform: translateY(0); }

/* ========== RESPONSIVE ========== */
@media (max-width: 992px) {
  .hero .container { grid-template-columns: 1fr; text-align: center; }
  .hero-content p { margin: 0 auto 32px; }
  .hero-buttons { justify-content: center; }
  .hero-image { max-width: 480px; margin: 0 auto; }
  .hero-badge { left: 50%; transform: translateX(-50%); bottom: -20px; }
  .services-grid, .testimonials-grid { grid-template-columns: 1fr 1fr; }
  .contact .container { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .stats .container { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 768px) {
  .nav-links { position: fixed; top: 0; right: -100%; width: 280px; height: 100vh; background: var(--white); flex-direction: column; padding: 80px 32px; gap: 20px; box-shadow: -4px 0 24px rgba(0,0,0,0.1); transition: right .4s ease; }
  .nav-links.open { right: 0; }
  .menu-toggle { display: block; }
  .hero-content h1 { font-size: 2.2rem; }
  .section-title { font-size: 1.8rem; }
  .services-grid, .testimonials-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .cta-banner h2 { font-size: 1.8rem; }
}

/* ========== INNER PAGE HERO (shorter) ========== */
.hero-inner { min-height: auto; padding: 140px 0 60px; background: linear-gradient(135deg, var(--secondary) 0%, #FFF0F5 100%); }
.hero-inner .container { display: block; text-align: center; }
.hero-inner h1 { font-size: 2.4rem; margin-bottom: 12px; }
.hero-inner p { max-width: 600px; margin: 0 auto 24px; color: #555; }

/* ========== BREADCRUMB ========== */
.breadcrumb { padding: 12px 0; font-size: 0.85rem; color: #888; }
.breadcrumb a { color: var(--accent); }
.breadcrumb a:hover { text-decoration: underline; }
.breadcrumb span { margin: 0 8px; }

/* ========== BLOG FAQ ACCORDION (Interactive) ========== */
.blog-faq-section { margin: 40px 0; border: 1.5px solid var(--secondary); border-radius: 12px; overflow: hidden; background: #fff; }
.blog-faq-section h2, .blog-faq-section h3 { background: #fdfafc; padding: 20px 25px; margin: 0 !important; font-size: 1.25rem !important; cursor: pointer; display: flex; justify-content: space-between; align-items: center; border-bottom: 1px solid var(--secondary); }
.blog-faq-section h2::after, .blog-faq-section h3::after { content: '+'; font-family: 'Inter', sans-serif; font-size: 1.5rem; color: var(--primary); transition: transform 0.3s; }
.blog-faq-section.active h2::after, .blog-faq-section.active h3::after { transform: rotate(45deg); }
.blog-faq-content { max-height: 0; overflow: hidden; transition: all 0.5s ease-in-out; background: #fff; }
.blog-faq-section.active .blog-faq-content { max-height: 2000px; padding: 20px 0; }
.blog-faq-content .faq-item { padding: 15px 25px; border-bottom: 1px dashed #eee; }
.blog-faq-content .faq-item:last-child { border-bottom: none; }
.blog-faq-content strong { display: block; color: var(--accent); margin-bottom: 8px; font-size: 1.05rem; }
.blog-faq-content p { font-size: 0.95rem; color: #666; margin: 0; }

/* ========== CONTENT / GUIDE SECTION ========== */
.content-section { padding: 80px 0; }
.content-section h2 { font-size: 1.8rem; margin-bottom: 16px; color: var(--accent); }
.content-section h3 { font-size: 1.3rem; margin: 28px 0 12px; }
.content-section p { margin-bottom: 16px; line-height: 1.9; color: #555; }
.content-section ul { margin: 16px 0; padding-left: 24px; }
.content-section ul li { margin-bottom: 8px; list-style: disc; color: #555; }
.content-section img { border-radius: 12px; margin: 24px 0; box-shadow: 0 4px 20px rgba(0,0,0,0.08); }
.content-wrap { max-width: 800px; margin: 0 auto; }

/* ========== PRICE TABLE ========== */
.price-table { width: 100%; border-collapse: collapse; margin: 24px 0; border-radius: 12px; overflow: hidden; box-shadow: 0 2px 12px rgba(0,0,0,0.05); }
.price-table th { background: var(--accent); color: var(--white); padding: 14px 20px; text-align: left; font-size: 0.9rem; }
.price-table td { padding: 14px 20px; border-bottom: 1px solid #f0e4ec; font-size: 0.95rem; }
.price-table tr:nth-child(even) { background: var(--secondary); }
.price-table tr:hover { background: #f8e8f2; }

/* ========== LOCATION GRID ========== */
.location-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin: 40px 0; }
.location-card { background: var(--white); border-radius: var(--radius); padding: 28px; border: 1px solid rgba(216,143,172,0.15); text-align: center; transition: all .3s; }
.location-card:hover { transform: translateY(-4px); box-shadow: 0 8px 28px rgba(124,62,102,0.12); border-color: var(--primary); }
.location-card .loc-icon { font-size: 2rem; margin-bottom: 12px; }
.location-card h3 { font-size: 1.1rem; margin-bottom: 6px; }
.location-card p { font-size: 0.85rem; color: #888; margin-bottom: 16px; }
.location-card a { color: var(--accent); font-weight: 600; font-size: 0.9rem; }

/* ========== BLOG CARDS ========== */
.blog-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px; margin: 40px 0; }
.blog-card { background: var(--white); border-radius: 20px; overflow: hidden; box-shadow: 0 10px 40px rgba(124, 62, 102, 0.08); transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1); border: 1px solid rgba(216, 143, 172, 0.1); display: flex; flex-direction: column; }
.blog-card:hover { transform: translateY(-10px); box-shadow: 0 20px 60px rgba(124, 62, 102, 0.15); border-color: var(--primary); }

.blog-image { position: relative; height: 220px; overflow: hidden; }
.blog-image img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s cubic-bezier(0.165, 0.84, 0.44, 1); }
.blog-card:hover .blog-image img { transform: scale(1.1) rotate(1deg); }

.blog-tag { position: absolute; top: 16px; left: 16px; background: rgba(255, 255, 255, 0.95); color: var(--accent); padding: 6px 14px; border-radius: 50px; font-size: 0.75rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.5px; box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15); z-index: 2; }

.blog-content { padding: 28px; flex: 1; display: flex; flex-direction: column; }
.blog-date { display: inline-flex; align-items: center; gap: 8px; font-size: 0.8rem; color: #999; margin-bottom: 12px; font-weight: 500; }
.blog-date i { color: var(--primary); font-size: 0.9rem; }

.blog-body h3 { font-size: 1.25rem; margin-bottom: 12px; line-height: 1.4; transition: color 0.3s; }
.blog-card:hover .blog-body h3 a { color: var(--primary); }
.blog-body p { font-size: 0.9rem; color: #666; margin-bottom: 20px; line-height: 1.7; display: -webkit-box; -webkit-line-clamp: 3; line-clamp: 3; -webkit-box-orient: vertical; overflow: hidden; }

.read-more { margin-top: auto; color: var(--accent); font-weight: 700; font-size: 0.9rem; display: inline-flex; align-items: center; gap: 8px; transition: all 0.3s; }
.read-more i { transition: transform 0.3s; }
.read-more:hover { color: var(--primary); }
.read-more:hover i { transform: translateX(5px); }

/* ========== SUCCESS MODAL ========== */
.modal-overlay { position: fixed; inset: 0; background: rgba(0,0,0,0.5); z-index: 10000; display: flex; align-items: center; justify-content: center; opacity: 0; pointer-events: none; transition: opacity .3s; }
.modal-overlay.active { opacity: 1; pointer-events: all; }
.modal { background: var(--white); border-radius: 20px; padding: 48px; text-align: center; max-width: 420px; width: 90%; transform: scale(0.8); transition: transform .3s; }
.modal-overlay.active .modal { transform: scale(1); }
.modal .modal-icon { font-size: 3rem; margin-bottom: 16px; }
.modal h3 { margin-bottom: 8px; font-size: 1.4rem; }
.modal p { color: #666; margin-bottom: 24px; font-size: 0.95rem; }
.modal .btn { font-size: 0.9rem; padding: 12px 28px; }

/* ========== INNER RESPONSIVE ========== */
@media (max-width: 992px) { .location-grid { grid-template-columns: 1fr 1fr; } .blog-grid { grid-template-columns: 1fr 1fr; gap: 24px; } }
@media (max-width: 768px) { .hero-inner h1 { font-size: 1.8rem; } .location-grid { grid-template-columns: 1fr; } .blog-grid { grid-template-columns: 1fr; } }

/* ========== AI CHATBOT ========== */
.chatbot-wrapper { position: fixed; bottom: 25px; right: 25px; z-index: 1000; font-family: 'Inter', sans-serif; }
.chat-toggle-btn { width: 60px; height: 60px; background: var(--primary); color: white; border-radius: 50%; border: none; font-size: 1.8rem; cursor: pointer; box-shadow: 0 5px 20px rgba(216,143,172,0.4); transition: transform 0.3s; display: flex; align-items: center; justify-content: center; position: relative; }
.chat-toggle-btn:hover { transform: scale(1.05); }
.chat-ping { position: absolute; top: -2px; right: -2px; width: 14px; height: 14px; background: var(--success); border-radius: 50%; border: 2px solid white; }

.chat-window { position: absolute; bottom: 80px; right: 0; width: 340px; height: 450px; background: white; border-radius: 16px; box-shadow: 0 10px 40px rgba(0,0,0,0.15); display: flex; flex-direction: column; overflow: hidden; transform: scale(0.9); opacity: 0; pointer-events: none; transform-origin: bottom right; transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275); }
.chatbot-wrapper.open .chat-window { transform: scale(1); opacity: 1; pointer-events: all; }
.chatbot-wrapper.open .chat-toggle-btn { transform: rotate(90deg) scale(0); opacity: 0; pointer-events: none; }

.chat-header { background: var(--primary); color: white; padding: 15px 20px; display: flex; justify-content: space-between; align-items: center; }
.chat-info { display: flex; align-items: center; gap: 10px; }
.chat-info i { font-size: 1.5rem; background: rgba(255,255,255,0.2); width: 40px; height: 40px; display: flex; align-items: center; justify-content: center; border-radius: 50%; }
.chat-info strong { display: block; font-size: 1rem; }
.chat-info span { font-size: 0.8rem; opacity: 0.9; }
#chat-close-btn { background: none; border: none; color: white; font-size: 1.2rem; cursor: pointer; }

.chat-body { flex: 1; padding: 20px; overflow-y: auto; display: flex; flex-direction: column; gap: 15px; background: #fdfafc; }
.msg { max-width: 85%; padding: 12px 16px; border-radius: 16px; font-size: 0.95rem; line-height: 1.4; animation: popIn 0.3s ease; }
@keyframes popIn { from { opacity: 0; transform: translateY(10px); } to { opacity: 1; transform: translateY(0); } }
.msg-bot { background: white; border: 1px solid var(--border); border-bottom-left-radius: 4px; align-self: flex-start; }
.msg-user { background: var(--primary); color: white; border-bottom-right-radius: 4px; align-self: flex-end; }

.chat-footer { padding: 15px; background: white; border-top: 1px solid var(--border); display: flex; flex-direction: column; gap: 10px; }
.chat-options { display: flex; flex-wrap: wrap; gap: 8px; }
.chat-choice-btn { background: #f5e6f0; border: 1px solid var(--primary); color: var(--primary-dark); padding: 8px 12px; border-radius: 20px; font-size: 0.85rem; cursor: pointer; transition: all 0.2s; white-space: nowrap; }
.chat-choice-btn:hover { background: var(--primary); color: white; }
.chat-input-row { display: flex; gap: 10px; }
.chat-input { flex: 1; padding: 10px 15px; border: 1px solid var(--border); border-radius: 20px; font-size: 0.9rem; outline: none; }
.chat-input:focus { border-color: var(--primary); }
.chat-send-btn { background: var(--primary); color: white; border: none; width: 40px; height: 40px; border-radius: 50%; display: flex; align-items: center; justify-content: center; cursor: pointer; }

/* Custom Chatbot Dropdown Styles */
.custom-chat-dropdown { position: relative; width: 100%; margin-top: 5px; animation: popIn 0.3s ease; }
.dropdown-trigger { 
    padding: 12px 18px; border: 1px solid var(--primary); border-radius: 20px; 
    font-size: 0.95rem; background: #fff; color: var(--text); cursor: pointer; 
    display: flex; justify-content: space-between; align-items: center;
    transition: all 0.3s;
}
.dropdown-trigger:hover { background: #fdfafc; border-color: var(--accent); }
.dropdown-trigger.active { border-color: var(--accent); box-shadow: 0 0 10px rgba(216,143,172,0.2); }

.dropdown-list { 
    position: absolute; bottom: 100%; left: 0; width: 100%; 
    background: #fff; border: 1px solid var(--accent); 
    border-radius: 12px; margin-bottom: 8px;
    max-height: 180px; overflow-y: auto; z-index: 10;
    display: none; box-shadow: 0 -10px 30px rgba(0,0,0,0.15);
}
.custom-chat-dropdown.open .dropdown-list { display: block; animation: slideUp 0.3s ease; }
@keyframes slideUp { from { opacity: 0; transform: translateY(10px); } to { opacity: 1; transform: translateY(0); } }

.dropdown-item { padding: 12px 18px; font-size: 0.9rem; color: #555; cursor: pointer; transition: all 0.2s; border-bottom: 1px solid #f9f0f5; }
.dropdown-item:last-child { border-bottom: none; }
.dropdown-item:hover { background: var(--primary); color: white; padding-left: 22px; }

/* ========== SALON ÖNERİLERİ MODAL (Carousel) ========== */
.salon-rec-overlay {
  position: fixed; inset: 0; z-index: 10001;
  background: rgba(42, 21, 35, 0.6);
  backdrop-filter: blur(8px); -webkit-backdrop-filter: blur(8px);
  display: flex; align-items: center; justify-content: center;
  opacity: 0; pointer-events: none; transition: opacity 0.4s ease;
  padding: 20px;
}
.salon-rec-overlay.active { opacity: 1; pointer-events: all; }

.salon-rec-modal {
  background: linear-gradient(145deg, #ffffff, #fdf8fb);
  border-radius: 24px; max-width: 560px; width: 100%;
  max-height: 92vh; overflow-y: auto;
  box-shadow: 0 24px 80px rgba(124, 62, 102, 0.25), 0 0 0 1px rgba(216, 143, 172, 0.1);
  position: relative; padding: 0;
  transform: scale(0.9) translateY(20px);
  transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}
.salon-rec-overlay.active .salon-rec-modal {
  transform: scale(1) translateY(0);
}

.salon-rec-close {
  position: absolute; top: 16px; right: 16px; z-index: 10;
  width: 36px; height: 36px; border-radius: 50%;
  background: rgba(255,255,255,0.9); border: 1px solid rgba(216,143,172,0.2);
  display: flex; align-items: center; justify-content: center;
  cursor: pointer; font-size: 1rem; color: var(--accent);
  transition: all 0.3s;
}
.salon-rec-close:hover { background: var(--accent); color: white; transform: rotate(90deg); }

.salon-rec-top {
  text-align: center; padding: 40px 32px 20px;
  background: linear-gradient(135deg, var(--secondary) 0%, #fff0f5 100%);
  border-radius: 24px 24px 0 0;
}
.salon-rec-icon-wrap {
  width: 64px; height: 64px; border-radius: 50%;
  background: linear-gradient(135deg, #4ade80, #22c55e);
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 16px; font-size: 1.8rem; color: white;
  box-shadow: 0 8px 24px rgba(74, 222, 128, 0.3);
  animation: pulseGreen 2s infinite;
}
@keyframes pulseGreen {
  0%, 100% { box-shadow: 0 8px 24px rgba(74, 222, 128, 0.3); }
  50% { box-shadow: 0 8px 36px rgba(74, 222, 128, 0.5); }
}
.salon-rec-top h2 {
  font-family: 'Playfair Display', serif;
  font-size: 1.6rem; color: var(--accent); margin-bottom: 8px;
}
.salon-rec-top p { color: #777; font-size: 0.92rem; max-width: 420px; margin: 0 auto; line-height: 1.6; }
.salon-rec-top p strong { color: var(--accent); }

/* --- Carousel Layout --- */
.salon-carousel-wrap {
  display: flex; align-items: center; gap: 8px;
  padding: 20px 12px 0;
  position: relative;
}
.salon-carousel-card {
  flex: 1; min-width: 0;
  transition: opacity 0.25s ease, transform 0.25s ease;
}
.salon-nav-btn {
  width: 40px; height: 40px; border-radius: 50%;
  background: white; border: 1.5px solid rgba(216,143,172,0.25);
  display: flex; align-items: center; justify-content: center;
  cursor: pointer; font-size: 1.1rem; color: var(--accent);
  box-shadow: 0 2px 12px rgba(0,0,0,0.06);
  transition: all 0.3s; flex-shrink: 0;
}
.salon-nav-btn:hover { background: var(--accent); color: white; border-color: var(--accent); transform: scale(1.08); }

/* --- Carousel Indicator --- */
.salon-carousel-indicator {
  display: flex; flex-direction: column; align-items: center; gap: 8px;
  padding: 12px 28px 0;
}
.salon-counter {
  font-size: 0.82rem; font-weight: 600; color: var(--accent);
  background: var(--secondary); padding: 4px 14px; border-radius: 50px;
}
.salon-dots { display: flex; gap: 6px; }
.salon-dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: rgba(216,143,172,0.25); transition: all 0.3s;
}
.salon-dot.active {
  background: var(--primary); width: 24px; border-radius: 4px;
}

/* --- Salon Card --- */
.salon-rec-card {
  background: white; border-radius: 16px; padding: 22px;
  border: 1px solid rgba(216, 143, 172, 0.12);
  box-shadow: 0 4px 16px rgba(0,0,0,0.04);
  position: relative;
}

.salon-rec-match {
  display: inline-flex; align-items: center; gap: 6px;
  background: linear-gradient(135deg, #4ade80, #16a34a);
  color: white; font-size: 0.72rem; font-weight: 700;
  padding: 4px 12px; border-radius: 50px;
  letter-spacing: 0.3px; text-transform: uppercase;
  margin-bottom: 12px;
}

.salon-rec-header {
  display: flex; align-items: center; gap: 14px; margin-bottom: 12px;
}
.salon-rec-avatar {
  width: 48px; height: 48px; border-radius: 14px;
  background: linear-gradient(135deg, var(--secondary), #fff0f5);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.3rem; color: var(--accent); flex-shrink: 0;
  border: 1px solid rgba(216,143,172,0.2);
}
.salon-rec-header h4 {
  font-family: 'Playfair Display', serif;
  font-size: 1.1rem; color: var(--accent); margin: 0; line-height: 1.3;
}
.salon-rec-loc {
  font-size: 0.82rem; color: #999; display: flex; align-items: center; gap: 4px; margin-top: 2px;
}
.salon-rec-loc i { color: var(--primary); font-size: 0.85rem; }

.salon-rec-address {
  display: flex; align-items: flex-start; gap: 8px;
  font-size: 0.85rem; color: #777; margin-bottom: 12px;
  padding: 8px 12px; background: #fdfafc; border-radius: 10px;
  border: 1px solid rgba(216,143,172,0.08);
}
.salon-rec-address i { color: var(--primary); margin-top: 2px; flex-shrink: 0; }

.salon-rec-badges {
  display: flex; flex-wrap: wrap; gap: 6px; margin-bottom: 14px;
}
.salon-rec-badge {
  display: inline-flex; align-items: center; gap: 5px;
  padding: 4px 10px; border-radius: 50px;
  font-size: 0.72rem; font-weight: 500;
  background: #f5f0f3; color: #888;
  border: 1px solid transparent;
}
.salon-rec-badge i { font-size: 0.75rem; }

/* --- Google Maps Embed --- */
.salon-rec-map-wrap {
  width: 100%; border-radius: 12px; overflow: hidden;
  margin-bottom: 14px; border: 1px solid rgba(216,143,172,0.12);
  box-shadow: 0 2px 10px rgba(0,0,0,0.06);
}
.salon-rec-map {
  width: 100%; height: 200px; border: none; display: block;
}

/* --- Action Buttons --- */
.salon-rec-actions {
  display: flex; gap: 8px; flex-wrap: wrap;
}
.salon-rec-btn {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 9px 16px; border-radius: 50px;
  font-size: 0.82rem; font-weight: 600;
  text-decoration: none; transition: all 0.3s;
  cursor: pointer; border: none; flex: 1;
  justify-content: center; min-width: 0;
}
.salon-rec-btn.wa {
  background: #25d366; color: white;
  box-shadow: 0 3px 12px rgba(37,211,102,0.25);
}
.salon-rec-btn.wa:hover { background: #1fb855; transform: translateY(-2px); box-shadow: 0 6px 20px rgba(37,211,102,0.35); }

.salon-rec-btn.phone {
  background: #3b82f6; color: white;
  box-shadow: 0 3px 12px rgba(59,130,246,0.25);
}
.salon-rec-btn.phone:hover { background: #2563eb; transform: translateY(-2px); box-shadow: 0 6px 20px rgba(59,130,246,0.35); }

.salon-rec-btn.map {
  background: white; color: var(--accent);
  border: 1.5px solid rgba(216,143,172,0.3);
}
.salon-rec-btn.map:hover { background: var(--secondary); border-color: var(--primary); transform: translateY(-2px); }

.salon-rec-footer {
  text-align: center; padding: 14px 28px 24px;
}

/* Scrollbar */
.salon-rec-modal::-webkit-scrollbar { width: 5px; }
.salon-rec-modal::-webkit-scrollbar-track { background: transparent; }
.salon-rec-modal::-webkit-scrollbar-thumb { background: rgba(216,143,172,0.3); border-radius: 3px; }
.salon-rec-modal::-webkit-scrollbar-thumb:hover { background: var(--primary); }

/* Responsive */
@media (max-width: 600px) {
  .salon-rec-modal { max-height: 95vh; border-radius: 16px; max-width: 100%; }
  .salon-rec-top { padding: 32px 16px 16px; }
  .salon-rec-top h2 { font-size: 1.3rem; }
  .salon-carousel-wrap { padding: 14px 6px 0; gap: 4px; }
  .salon-nav-btn { width: 34px; height: 34px; font-size: 0.95rem; }
  .salon-rec-card { padding: 16px; }
  .salon-rec-map { height: 160px; }
  .salon-rec-actions { flex-direction: column; }
  .salon-rec-btn { padding: 10px 16px; }
}
@media (max-width: 400px) {
  .salon-rec-overlay { padding: 6px; }
  .salon-rec-top h2 { font-size: 1.15rem; }
  .salon-rec-top p { font-size: 0.82rem; }
}

