﻿* { margin: 0; padding: 0; box-sizing: border-box; }
:root { --primary-color: #FAB95B; --primary-dark: #e6c200; --secondary-color: #1a1a2e; --bg-color: #f8f9fa; --bg-white: #ffffff; --bg-dark: rgba(26, 26, 46, 0.95); --text-white: #ffffff; --text-dark: #1a1a2e; --text-light: rgba(255, 255, 255, 0.8); --text-muted: #666666; --accent-green: #25D366; --accent-red: #ff6b6b; --container-max: 1588px; --section-padding: 80px; --shadow-sm: 0 2px 20px rgba(0, 0, 0, 0.1); --shadow-md: 0 4px 30px rgba(0, 0, 0, 0.1); --shadow-lg: 0 10px 40px rgba(0, 0, 0, 0.15); --shadow-xl: 0 20px 60px rgba(0, 0, 0, 0.25); --radius-sm: 8px; --radius-md: 12px; --radius-lg: 20px; --radius-full: 50px; --transition-fast: 0.2s ease; --transition-normal: 0.3s ease; --transition-slow: 0.4s ease; }
body { font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif; line-height: 1.6; background: var(--bg-color); color: var(--text-dark); }
.container { max-width: 1588px; margin: 0 auto; padding: 0 20px; }
.header { position: fixed; top: 0; left: 0; width: 100%; z-index: 1000; background: rgba(26, 26, 46, 0.95); backdrop-filter: blur(10px); box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1); transition: all 0.4s ease; }
.my-30 {margin-top:30px; margin-bottom:30px;}
.mt-30 {margin-top:30px;}
.mt-50 {margin-top:50px;}
.header.scrolled { background: var(--bg-white); box-shadow: var(--shadow-md); }
.header-container {display: flex; align-items: center; justify-content: space-between; height: 80px; transition: all 0.4s ease; }
.header.scrolled .header-container { height: 70px; }
.logo { display: flex; align-items: center; gap: 12px; text-decoration: none; }
.logo svg { flex-shrink: 0; transition: all 0.4s ease; }
.header.scrolled .logo svg { transform: scale(0.85); }
.logo-text { display: flex; flex-direction: column; transition: all 0.4s ease; }
.header.scrolled .logo-text { opacity: 1; visibility: visible; width: auto; }
.logo-name { font-size: 24px; font-weight: 800; color: var(--text-white); line-height: 1.2; transition: color var(--transition-slow); }
.logo-slogan { font-size: 11px; color: rgba(255, 255, 255, 0.7); font-weight: 500; }
.header.scrolled .logo-slogan { color: var(--text-muted); }
.header.scrolled .logo-name { color: var(--text-dark); }
.nav { flex: 1; display: flex; justify-content: center; }
.nav-list { display: flex; list-style: none; gap: 8px; }
.nav-link { display: flex; align-items: center; gap: 6px; padding: 12px 20px; color: rgba(255, 255, 255, 0.9); text-decoration: none; font-weight: 600; font-size: 15px; border-radius: var(--radius-sm); transition: all var(--transition-normal); }
.nav-link:hover, .nav-link.active { color: var(--primary-color); background: rgba(255, 215, 0, 0.1); }
.header.scrolled .nav-link { color: var(--text-dark); }
.header.scrolled .nav-link:hover, .header.scrolled .nav-link.active { color: var(--primary-color); background: rgba(255, 215, 0, 0.1); }
.nav-link i { font-size: 12px; transition: transform var(--transition-normal); }
.nav-item-dropdown { position: relative; }
.nav-item-dropdown:hover .dropdown-toggle i { transform: rotate(180deg); }
.dropdown-menu { position: absolute; top: 100%; left: 0; min-width: 220px; background: var(--bg-white); border-radius: var(--radius-md); box-shadow: var(--shadow-lg); padding: 10px; list-style: none; opacity: 0; visibility: hidden; transform: translateY(10px); transition: all var(--transition-normal); }
.nav-item-dropdown:hover .dropdown-menu { opacity: 1; visibility: visible; transform: translateY(0); }
.dropdown-menu li a { display: flex; align-items: center; gap: 10px; padding: 6px 16px; color: var(--text-dark); text-decoration: none; font-weight: 500; border-radius: var(--radius-sm); transition: all var(--transition-fast); }
.dropdown-menu li a:hover { background: var(--bg-color); color: var(--primary-color); }
.dropdown-menu li a i { color: var(--primary-color); width: 20px; }
.header-actions { display: flex; align-items: center; gap: 12px; }
.live-support-btn, .whatsapp-btn { display: flex; }
@media (max-width: 1024px) { .live-support-btn span, .whatsapp-btn span { display: none; }
.live-support-btn, .whatsapp-btn { padding: 12px; }
}
@media (max-width: 768px) { .live-support-btn, .whatsapp-btn { display: none; }
}
.live-support-btn { display: flex; align-items: center; gap: 8px; padding: 12px 24px; background: var(--primary-color); color: var(--text-dark); text-decoration: none; font-weight: 700; font-size: 14px; border-radius: var(--radius-full); transition: all var(--transition-normal); box-shadow: 0 4px 15px rgba(255, 215, 0, 0.3); }
.live-support-btn:hover { transform: translateY(-2px); box-shadow: 0 8px 25px rgba(255, 215, 0, 0.4); }
.live-support-btn i { font-size: 18px; }
.header.scrolled .live-support-btn { background: var(--secondary-color); color: var(--text-white); box-shadow: 0 4px 15px rgba(26, 26, 46, 0.3); }
.header.scrolled .live-support-btn:hover { background: #2d2d4a; box-shadow: 0 8px 25px rgba(26, 26, 46, 0.4); }
.whatsapp-btn { display: flex; align-items: center; gap: 8px; padding: 12px 24px; background: var(--accent-green); color: var(--text-white); text-decoration: none; font-weight: 700; font-size: 14px; border-radius: var(--radius-full); transition: all var(--transition-normal); box-shadow: 0 4px 15px rgba(37, 211, 102, 0.3); }
.whatsapp-btn:hover { transform: translateY(-2px); box-shadow: 0 8px 25px rgba(37, 211, 102, 0.4); }
.whatsapp-btn i { font-size: 18px; }
.hamburger { display: none; width: 44px; height: 44px; background: rgba(255, 255, 255, 0.1); border: none; border-radius: 50%; color: var(--text-white); font-size: 20px; cursor: pointer; transition: all var(--transition-normal); align-items: center; justify-content: center; }
.hamburger.active i::before { content: '\f00d'; }
.header.scrolled .hamburger { background: var(--bg-color); color: var(--text-dark); }
.hamburger:hover { background: var(--primary-color); color: var(--text-dark); }
.mobile-menu { position: fixed; top: 80px; left: 0; width: 100%; height: calc(100vh - 80px); background: var(--secondary-color); z-index: 999; transform: translateX(-100%); transition: transform var(--transition-normal); overflow-y: auto; }
.mobile-menu.active { transform: translateX(0); }
.header.scrolled ~ .mobile-menu { top: 70px; height: calc(100vh - 70px); }
.mobile-nav { padding: 30px 20px; }
.mobile-nav-list { list-style: none; }
.mobile-nav-link { display: flex; align-items: center; justify-content: space-between; padding: 16px 20px; color: var(--text-white); text-decoration: none; font-weight: 600; font-size: 16px; border-radius: var(--radius-sm); transition: all var(--transition-fast); }
.mobile-nav-link:hover, .mobile-nav-link.active { background: rgba(255, 255, 255, 0.1); color: var(--primary-color); }
.mobile-nav-item-dropdown .mobile-dropdown-menu { list-style: none; padding-left: 20px; display: none; }
.mobile-nav-item-dropdown.active .mobile-dropdown-menu { display: block; }
.mobile-dropdown-menu li a { display: flex; align-items: center; gap: 10px; padding: 12px 20px 12px 40px; color: rgba(255, 255, 255, 0.7); text-decoration: none; font-size: 14px; transition: all var(--transition-fast); }
.mobile-dropdown-menu li a:hover { color: var(--primary-color); background: rgba(255, 255, 255, 0.05); }
.mobile-dropdown-menu li a i { color: var(--primary-color); width: 20px; }
.mobile-menu-actions { display: flex; flex-direction: column; gap: 12px; padding: 20px; margin-top: 20px; border-top: 1px solid rgba(255, 255, 255, 0.1); }
.mobile-live-support, .mobile-whatsapp { display: flex; align-items: center; justify-content: center; gap: 10px; padding: 16px; border-radius: var(--radius-full); text-decoration: none; font-weight: 700; font-size: 14px; transition: all var(--transition-normal); }
.mobile-live-support { background: var(--primary-color); color: var(--text-dark); }
.mobile-whatsapp { background: var(--accent-green); color: var(--text-white); }
.hero { position: relative; padding: 140px 0 100px; display: flex; align-items: center; background-image: url('/1.png'); background-size: cover; background-position: center; background-repeat: no-repeat; }
.hero-overlay { position: absolute; top: 0; left: 0; width: 100%; height: 100%; background: linear-gradient(135deg, rgba(20, 30, 48, 0.92) 0%, rgba(36, 59, 85, 0.88) 100%); z-index: 1; }
.hero-container { position: relative; z-index: 2; width: 100%; padding: 60px 20px; }
.hero-content { display: flex; align-items: center; justify-content: space-between; gap: 60px; }
.hero-left { flex: 1; max-width: 600px; }
.brand-tag { display: inline-block; background: rgba(255, 255, 255, 0.15); color: var(--primary-color); padding: 8px 20px; border-radius: var(--radius-full); font-size: 14px; font-weight: 600; letter-spacing: 1px; margin-bottom: 24px; backdrop-filter: blur(10px); border: 1px solid rgba(255, 215, 0, 0.3); }
.hero h1 { font-size: 64px; font-weight: 800; color: #ffffff; line-height: 1.1; margin-bottom: 24px; }
.hero h1 .highlight { color: var(--primary-color); position: relative; }
.hero-description { font-size: 18px; color: rgba(255, 255, 255, 0.8); margin-bottom: 40px; line-height: 1.8; }
.hero-buttons { display: flex; gap: 16px; margin-bottom: 50px; }
.btn-primary { display: inline-block; padding: 16px 40px; background: var(--primary-color); color: var(--text-dark); text-decoration: none; font-weight: 700; font-size: 16px; border-radius: var(--radius-full); transition: all var(--transition-normal); box-shadow: 0 10px 30px rgba(255, 215, 0, 0.3); }
.btn-primary:hover { transform: translateY(-3px); box-shadow: 0 15px 40px rgba(255, 215, 0, 0.4); }
.btn-secondary { display: inline-block; padding: 16px 40px; background: transparent; color: var(--text-white); text-decoration: none; font-weight: 600; font-size: 16px; border-radius: var(--radius-full); border: 2px solid rgba(255, 255, 255, 0.3); transition: all var(--transition-normal); }
.btn-secondary:hover { background: rgba(255, 255, 255, 0.1); border-color: var(--text-white); }
.hero-features { display: flex; gap: 40px; }
.feature { display: flex; align-items: center; gap: 12px; color: rgba(255, 255, 255, 0.9); font-weight: 500; }
.feature-icon { font-size: 24px; }
.hero-right { flex: 1; max-width: 600px; position: relative; }
.hero-image-wrapper { position: relative; }
.hero-image { width: 100%; height: auto; border-radius: 30px; box-shadow: 0 30px 60px rgba(0, 0, 0, 0.4); filter: brightness(0.6); transition: all 0.5s ease; }
.hero-image:hover { filter: brightness(0.8); transform: scale(1.02); }
.floating-card { position: absolute; background: rgba(255, 255, 255, 0.95); padding: 16px 24px; border-radius: 16px; display: flex; align-items: center; gap: 12px; font-weight: 600; color: #1a1a2e; box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2); animation: float 3s ease-in-out infinite; }
.card-icon { font-size: 28px; }
.card-1 { top: 20%; right: -20px; animation-delay: 0s; }
.card-2 { bottom: 25%; left: -30px; animation-delay: 1.5s; }
@keyframes float { 0%, 100% { transform: translateY(0); }
50% { transform: translateY(-15px); }
}
.hero-features-section { background: linear-gradient(180deg, #EAEFEF 0%, #ffffff 100%); padding: 80px 0; margin-top: -40px; position: relative; z-index: 10; }
.features-container {display: grid; grid-template-columns: repeat(4, 1fr); gap: 0; position: relative; }
.feature-card { background: #ffffff; padding: 40px 30px; position: relative; transition: all 0.4s ease; overflow: hidden; border-radius: 0; }
.feature-card::before { content: ''; position: absolute; top: 0; left: 0; width: 100%; height: 4px; background: linear-gradient(90deg, #ffd700, #ff6b6b); transform: scaleX(0); transform-origin: left; transition: transform 0.4s ease; }
.feature-card:hover::before { transform: scaleX(1); }
.feature-card:hover { transform: translateY(-10px); box-shadow: 0 20px 50px rgba(0, 0, 0, 0.1); }
.feature-card-1 { border-radius: 30px 0 0 30px; }
.feature-card-4 { border-radius: 0 30px 30px 0; }
.feature-icon-wrapper { width: 70px; height: 70px; background: linear-gradient(135deg, #ffd700 0%, #ff6b6b 100%); border-radius: 20px; display: flex; align-items: center; justify-content: center; margin-bottom: 20px; transition: all 0.4s ease; }
.feature-card:hover .feature-icon-wrapper { transform: rotate(10deg) scale(1.1); border-radius: 50%; }
.feature-icon-wrapper i { font-size: 28px; color: #ffffff; }
.feature-content h4 { font-size: 18px; font-weight: 700; color: #1a1a2e; margin-bottom: 8px; transition: color 0.3s ease; }
.feature-card:hover .feature-content h4 { color: #ffd700; }
.feature-content p { font-size: 14px; color: #6c757d; font-weight: 500; }
.feature-decoration { position: absolute; bottom: -50px; right: -50px; width: 150px; height: 150px; background: rgba(255, 215, 0, 0.05); border-radius: 50%; transition: all 0.4s ease; }
.feature-card:hover .feature-decoration { transform: scale(1.5); }
@media (max-width: 1200px) { .hero-content { flex-direction: column; text-align: center; }
.hero-left { max-width: 100%; }
.hero h1 { font-size: 48px; }
.hero-buttons { justify-content: center; }
.hero-features { justify-content: center; }
.hero-right { max-width: 500px; }
.features-container { grid-template-columns: repeat(2, 1fr); gap: 20px; }
.feature-card-1 { border-radius: 30px; }
.feature-card-4 { border-radius: 30px; }
.feature-card:nth-child(2) { border-radius: 0 30px 30px 0; }
.feature-card:nth-child(3) { border-radius: 30px 0 0 30px; }
}
@media (max-width: 768px) { .hero { padding: 120px 0 80px; }
.hero h1 { font-size: 36px; }
.hero-description { font-size: 16px; }
.hero-buttons { flex-direction: column; align-items: center; }
.hero-features { flex-direction: column; gap: 20px; }
.floating-card { display: none; }
.header-container { height: 70px; }
.logo svg { width: 40px; height: 40px; }
.logo-text { display: none; }
.nav { display: none; }
.whatsapp-btn span { display: none; }
.whatsapp-btn { padding: 12px; }
.hero-features-section { padding: 60px 0; }
.features-container { grid-template-columns: 1fr; }
.feature-card { border-radius: 20px !important; }
}
@media (max-width: 480px) { .header-container { padding: 0 15px; }
.whatsapp-btn { padding: 12px; }
.whatsapp-btn i { font-size: 20px; }
}
.categories-section { padding: 80px 0; background: #f8f9fa; }
.section-header { text-align: center; margin-bottom: 50px; }
.section-header h2 { font-size: 42px; font-weight: 800; color: #1a1a2e; margin-bottom: 12px; }
.section-header p { font-size: 18px; color: #666; }
.categories-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.category-card { position: relative; height: 320px; border-radius: 20px; overflow: hidden; cursor: pointer; box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15); transition: all 0.4s ease; }
.category-card h3 a {color:#ffffff; text-decoration:none;}
.category-card:hover { transform: translateY(-10px); box-shadow: 0 20px 60px rgba(0, 0, 0, 0.25); }
.card-bg { position: absolute; top: 0; left: 0; width: 100%; height: 100%; background-size: cover; background-position: center; transition: transform 0.6s ease; }
.category-card:hover .card-bg { transform: scale(1.1); }
.card-overlay { position: absolute; top: 0; left: 0; width: 100%; height: 100%; background: linear-gradient(180deg, rgba(26, 26, 46, 0.3) 0%, rgba(26, 26, 46, 0.99) 100%); }
.card-content { position: relative; z-index: 2; height: 100%; display: flex; flex-direction: column; justify-content: flex-end; padding: 24px; color: #ffffff; }
.card-content h3 { font-size: 26px; font-weight: 800; margin-bottom: 8px; text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3); }
.card-content p { font-size: 14px; color: rgba(255, 255, 255, 0.85); margin-bottom: 16px; line-height: 1.5; }
.card-footer { padding-top: 16px; border-top: 1px solid rgba(255, 255, 255, 0.2); }
.subcategories { list-style: none; display: flex; flex-wrap: wrap; gap: 8px; }
.subcategories li { display: inline-flex; }
.subcategories li a { display: inline-block; padding: 6px 14px; background: rgba(255, 255, 255, 0.15); color: #ffffff; text-decoration: none; font-size: 12px; font-weight: 600; border-radius: 20px; backdrop-filter: blur(10px); transition: all 0.3s ease; }
.subcategories li a:hover { background: #ffd700; color: #1a1a2e; }
@media (max-width: 1024px) { .categories-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 768px) { .categories-grid { grid-template-columns: 1fr; }
.section-header h2 { font-size: 32px; }
.category-card { height: 280px; }
}
.reviews-section { padding: var(--section-padding) 0; background: var(--bg-white); }
.reviews-slider { position: relative; overflow: hidden; padding: 20px 0; }
.reviews-track { display: flex; gap: 24px; transition: transform var(--transition-slow); }
.review-card { flex: 0 0 calc(33.333% - 16px); background: var(--bg-white); border-radius: var(--radius-lg); padding: 30px; box-shadow: var(--shadow-lg); border: 1px solid rgba(0, 0, 0, 0.05); transition: all var(--transition-normal); }
.review-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-xl); }
.review-header { display: flex; align-items: center; gap: 16px; margin-bottom: 20px; }
.review-avatar { width: 60px; height: 60px; border-radius: 50%; overflow: hidden; border: 3px solid var(--primary-color); }
.review-avatar img { width: 100%; height: 100%; object-fit: cover; }
.review-info h4 { font-size: 18px; font-weight: 700; color: var(--text-dark); margin-bottom: 4px; }
.review-stars { color: var(--primary-color); font-size: 14px; }
.review-body { margin-bottom: 16px; }
.review-body p { font-size: 15px; color: var(--text-muted); line-height: 1.7; font-style: italic; }
.review-date { font-size: 13px; color: #999; display: flex; align-items: center; gap: 8px; }
.reviews-nav { display: flex; align-items: center; justify-content: center; gap: 20px; margin-top: 40px; }
.review-btn { width: 50px; height: 50px; border-radius: 50%; background: var(--bg-color); border: none; color: var(--text-dark); font-size: 18px; cursor: pointer; transition: all var(--transition-normal); display: flex; align-items: center; justify-content: center; }
.review-btn:hover { background: var(--primary-color); color: var(--text-dark); }
.reviews-dots { display: flex; gap: 10px; }
.reviews-dots .dot { width: 12px; height: 12px; border-radius: 50%; background: #ddd; cursor: pointer; transition: all var(--transition-normal); }
.reviews-dots .dot.active { background: var(--primary-color); transform: scale(1.2); }
.footer { background: var(--secondary-color); color: var(--text-white); }
.footer-top { padding: 60px 0 40px; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1.5fr; gap: 40px; }
.footer-logo { display: flex; align-items: center; gap: 12px; text-decoration: none; margin-bottom: 16px; }
.footer-logo span { font-size: 24px; font-weight: 800; color: var(--text-white); }
.footer-desc { color: rgba(255, 255, 255, 0.7); font-size: 14px; line-height: 1.7; margin:20px 0; }
.footer-social { display: flex; gap: 12px; }
.social-link { width: 40px; height: 40px; border-radius: 50%; background: rgba(255, 255, 255, 0.1); display: flex; align-items: center; justify-content: center; color: var(--text-white); text-decoration: none; transition: all var(--transition-normal); }
.social-link:hover { background: var(--primary-color); color: var(--text-dark); }
.footer h4, .footer-title { font-size: 18px; font-weight: 700; margin-bottom: 20px; color: var(--text-white); }
.footer-links ul, .footer-categories ul, .footer-menu { list-style: none; }
.footer-contact .contact-info { display: flex; flex-direction: column; gap: 12px; }
.contact-item { display: flex; align-items: flex-start; gap: 10px; }
.contact-item i { color: var(--primary-color); width: 20px; flex-shrink: 0; margin-top: 2px; }
.contact-item span, .contact-item a { flex: 1; line-height: 1.6; }
.footer-links a, .footer-categories a, .footer-contact a { color: rgba(255, 255, 255, 0.7); text-decoration: none; font-size: 14px; transition: all var(--transition-fast); display: flex; align-items: center; gap: 10px; }
.footer-links a:hover, .footer-categories a:hover, .footer-contact a:hover { color: var(--primary-color); padding-left: 5px; }
.footer-bottom { background: rgba(0, 0, 0, 0.2); padding: 20px 0; }
.footer-bottom-content { display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 20px; }
.footer-bottom p { font-size: 14px; color: rgba(255, 255, 255, 0.5); margin: 0; }
.footer-legal { display: flex; gap: 20px; flex-wrap: wrap; align-items: center; justify-content: flex-end; }
.footer-legal .legal-link { color: rgba(255, 255, 255, 0.6); text-decoration: none; font-size: 13px; font-weight: 500; transition: color var(--transition-fast); white-space: nowrap; }
.footer-legal .legal-link:hover { color: var(--primary-color); }
@media (max-width: 1024px) { .review-card { flex: 0 0 calc(50% - 12px); }
.footer-grid { grid-template-columns: 1fr 1fr; gap: 30px; }
}
@media (max-width: 768px) { .review-card { flex: 0 0 100%; }
.reviews-nav { gap: 15px; }
.footer-grid { grid-template-columns: 1fr; }
.footer-bottom-content { flex-direction: column; text-align: center; gap: 15px; }
.footer-legal { justify-content: center; gap: 10px 15px; }
}
.cities-section { padding: var(--section-padding) 0; background: linear-gradient(135deg, var(--secondary-color) 0%, #2d2d4a 100%); position: relative; overflow: hidden; }
.cities-section::before { content: ''; position: absolute; top: -50%; left: -10%; width: 40%; height: 200%; background: radial-gradient(circle, rgba(255, 215, 0, 0.1) 0%, transparent 70%); border-radius: 50%; }
.cities-section::after { content: ''; position: absolute; bottom: -30%; right: -5%; width: 30%; height: 150%; background: radial-gradient(circle, rgba(37, 211, 102, 0.08) 0%, transparent 70%); border-radius: 50%; }
.cities-section .section-header h2, .cities-section .section-header p { color: var(--text-white); }
.cities-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.city-card { background: rgba(255, 255, 255, 0.05); border-radius: var(--radius-lg); padding: 30px; text-align: center; border: 1px solid rgba(255, 255, 255, 0.1); transition: all var(--transition-normal); position: relative; overflow: hidden; }
.city-card::before { content: ''; position: absolute; top: 0; left: 0; width: 100%; height: 4px; background: linear-gradient(90deg, var(--primary-color), var(--accent-green)); transform: scaleX(0); transform-origin: left; transition: transform var(--transition-normal); }
.city-card:hover::before { transform: scaleX(1); }
.city-card:hover { transform: translateY(-8px); background: rgba(255, 255, 255, 0.08); box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3); }
.city-icon { width: 70px; height: 70px; margin: 0 auto 20px; background: linear-gradient(135deg, var(--primary-color), #ff6b6b); border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 28px; color: var(--text-dark); box-shadow: 0 10px 30px rgba(255, 215, 0, 0.3); }
.city-name { font-size: 24px; font-weight: 800; color: var(--text-white); margin-bottom: 16px; }
.city-areas { list-style: none; display: flex; flex-wrap: wrap; justify-content: center; gap: 8px; }
.city-areas li { padding: 6px 14px; background: rgba(255, 255, 255, 0.08); color: rgba(255, 255, 255, 0.7); font-size: 12px; font-weight: 500; border-radius: 20px; transition: all var(--transition-fast); }
.city-areas li a { color: rgba(255, 255, 255, 0.7); font-size: 12px; font-weight: 500; transition: all var(--transition-fast); text-decoration: none; display: inline-block; }
.city-card:hover .city-areas li:hover { background: var(--primary-color); color: var(--text-dark); }
.faq-section { padding: var(--section-padding) 0; background: var(--bg-color); position: relative; }
.faq-section::before { content: ''; position: absolute; top: 0; left: 0; width: 100%; background: linear-gradient(180deg, var(--secondary-color) 0%, transparent 100%); opacity: 0.03; }
.faq-container { max-width: 800px !important;}
.faq-list { display: flex; flex-direction: column; gap: 16px; }
.faq-item { background: var(--bg-white); border-radius: var(--radius-md); overflow: hidden; box-shadow: var(--shadow-sm); border: 1px solid rgba(0, 0, 0, 0.05); transition: all var(--transition-normal); }
.faq-item:hover { box-shadow: var(--shadow-md); }
.faq-question { display: flex; align-items: center; justify-content: space-between; padding: 24px 30px; cursor: pointer; font-size: 16px; font-weight: 600; color: var(--text-dark); transition: all var(--transition-normal); }
.faq-question span { flex: 1; }
.faq-question i { color: var(--primary-color); font-size: 14px; transition: transform var(--transition-normal); }
.faq-item.active .faq-question i { transform: rotate(180deg); }
.faq-item.active .faq-question { color: var(--primary-color); }
.faq-answer { max-height: 0; overflow: hidden; transition: max-height var(--transition-normal); }
.faq-item.active .faq-answer { max-height: 300px; }
.faq-answer p { padding: 0 30px 24px; color: var(--text-muted); font-size: 15px; line-height: 1.7; }
@media (max-width: 1024px) { .cities-grid { grid-template-columns: repeat(2, 1fr); }
.hamburger { display: flex; margin-left: 12px; }
}
@media (max-width: 768px) { .cities-grid { grid-template-columns: 1fr; }
.city-card { padding: 24px; }
.city-name { font-size: 20px; }
.faq-question { padding: 20px; font-size: 14px; }
.faq-answer p { padding: 0 20px 20px; font-size: 14px; }
}
.detail-page { padding-top: 80px; min-height: 100vh; background: var(--bg-color); }
.detail-container { padding: 40px 20px; }
.detail-layout { display: flex; gap: 30px; }
.product-hero { margin-bottom: 30px; }
.product-hero-bg { position: relative; height: 400px; background-size: cover; background-position: center; border-radius: var(--radius-lg); overflow: hidden; }
.product-hero-overlay { position: absolute; top: 0; left: 0; width: 100%; height: 100%; background: linear-gradient(135deg, rgba(20, 30, 48, 0.9) 0%, rgba(36, 59, 85, 0.85) 100%); }
.product-hero-content { position: relative; z-index: 2; height: 100%; display: flex; flex-direction: column; justify-content: center; align-items: center; text-align: center; padding: 40px; }
.product-hero-content .product-subtitle { font-size: 28px; font-weight: 700; color: rgba(255, 255, 255, 0.9); margin-bottom: 15px; line-height: 1.3; }
.product-hero-content .product-brand { display: flex; align-items: center; gap: 12px; margin-bottom: 20px; }
.product-hero-content .product-brand img { width: 50px; height: 50px; border-radius: 50%; background: rgba(255, 255, 255, 0.1); }
.product-hero-content .product-brand span { font-size: 16px; font-weight: 600; color: rgba(255, 255, 255, 0.8); }
.product-hero-content .product-title { font-size: 42px; font-weight: 800; color: var(--text-white); margin-bottom: 15px; line-height: 1.2; }
.product-hero-content .product-title span {    color: var(--primary-color);}
.product-summary { font-size: 18px; color: rgba(255, 255, 255, 0.8); max-width: 700px; margin-bottom: 20px; line-height: 1.6; }
.detail-sidebar { width: 420px; flex-shrink: 0; }
.sidebar-category { background: var(--bg-white); border-radius: var(--radius-md); padding: 20px; margin-bottom: 20px; box-shadow: var(--shadow-sm); }
.sidebar-title { font-size: 18px; font-weight: 700; color: var(--text-dark); margin-bottom: 15px; padding-bottom: 10px; border-bottom: 2px solid var(--primary-color); }
.sidebar-menu { list-style: none; }
.sidebar-link { display: flex; align-items: center; padding: 12px 15px; color: var(--text-dark); text-decoration: none; font-weight: 500; border-radius: var(--radius-sm); transition: all var(--transition-fast); margin-bottom: 5px; }
.sidebar-link:hover, .sidebar-link.active { background: rgba(255, 215, 0, 0.1); color: var(--primary-color); }
.sidebar-link i { width: 24px; color: var(--primary-color); }
.sidebar-link .count { background: var(--bg-color); padding: 4px 10px; border-radius: 20px; font-size: 12px; color: var(--text-muted); }
.brand-list { list-style: none; }
.brand-link { display: flex; align-items: center; gap: 10px; padding: 10px 15px; color: var(--text-dark); text-decoration: none; font-weight: 500; border-radius: var(--radius-sm); transition: all var(--transition-fast); margin-bottom: 5px; }
.brand-link:hover, .brand-link.active { background: rgba(255, 215, 0, 0.1); color: var(--primary-color); }
.brand-link img { width: 24px; height: 24px; border-radius: 50%; }
.brand-list.brand-two-col { display: grid; grid-template-columns: repeat(2, 1fr); gap: 4px; }
.brand-list.brand-three-col { display: grid; grid-template-columns: repeat(3, 1fr); gap: 4px; }
.brand-list.brand-two-col .brand-link { padding: 6px 12px; font-size: 13px; }
.brand-list.brand-three-col .brand-link { padding: 6px 12px; font-size: 13px; }
.sidebar-banner { background: linear-gradient(135deg, var(--secondary-color) 0%, #2d2d4a 100%); border-radius: var(--radius-md); padding: 25px; text-align: center; color: var(--text-white); }
.banner-icon { font-size: 48px; color: var(--primary-color); margin-bottom: 15px; }
.sidebar-banner h4 { font-size: 18px; margin-bottom: 10px; }
.sidebar-banner p { font-size: 14px; opacity: 0.8; }
.detail-content { flex: 1; min-width: 0; }
.breadcrumb { display: flex; align-items: center; gap: 10px; margin-bottom: 20px; font-size: 14px; }
.breadcrumb a { color: var(--text-muted); text-decoration: none; transition: color var(--transition-fast); }
.breadcrumb a:hover { color: var(--primary-color); }
.breadcrumb i { font-size: 10px; color: var(--text-muted); }
.breadcrumb span { color: var(--text-dark); }
.product-detail-card { display: flex; gap:40px; background: var(--bg-white); border-radius: var(--radius-lg); padding:30px; box-shadow: var(--shadow-sm); margin-bottom:30px; }
.product-info {margin-bottom:20px;padding:20px;background:#f8f9fa;border-left:4px solid #ffd700;border-radius:8px;line-height:1.8;color:#333;}
.product-info { flex: 1; }
.product-description { font-size: 15px; line-height: 1.7; color: var(--text-dark); margin-bottom: 20px; }
.product-description p{margin-top:20px;}
.product-description p:first-child{margin-top:0 !important;}
.product-description h2{margin-bottom:24px;}
.product-features { display: flex; flex-wrap: wrap; gap: 15px; background-color:#fff; padding:20px; border-radius: var(--radius-md)}
.feature-item { display: flex; align-items: center; gap: 8px; font-size: 14px; color: var(--text-dark); }
.feature-item i { color: #25D366; }
.subcategories-card { background: var(--bg-white); border-radius: var(--radius-lg); padding: 25px; box-shadow: var(--shadow-sm); margin-bottom: 25px; }
.subcategories-title { font-size: 18px; font-weight: 700; color: var(--text-dark); margin-bottom: 20px; padding-bottom: 12px; border-bottom: 2px solid var(--primary-color); }
.subcategories-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 15px; }
.subcategory-item { display: flex; align-items: center; gap: 12px; padding: 15px; background: var(--bg-color); border-radius: var(--radius-md); text-decoration: none; color: var(--text-dark); transition: all var(--transition-fast); }
.subcategory-item:hover { background: rgba(255, 215, 0, 0.15); transform: translateY(-2px); }
.subcategory-item i { font-size: 20px; color: var(--primary-color); width: 32px; height: 32px; display: flex; align-items: center; justify-content: center; background: rgba(255, 215, 0, 0.1); border-radius: 50%; }
.subcategory-item span { font-size: 14px; font-weight: 500; }
.service-steps-card { background: linear-gradient(135deg, var(--secondary-color) 0%, #2d2d4a 100%); border-radius: var(--radius-lg); padding: 30px; margin-bottom: 25px; color: var(--text-white); }
.steps-title { font-size: 20px; font-weight: 700; margin-bottom: 25px; text-align: center; }
.steps-list { display: flex; justify-content: space-between; position: relative; }
.steps-list::before { content: ''; position: absolute; top: 25px; left: 50px; right: 50px; height: 3px; background: rgba(255, 215, 0, 0.3); z-index: 1; }
.step-item { display: flex; flex-direction: column; align-items: center; text-align: center; position: relative; z-index: 2; flex: 1; }
.step-icon { width: 60px; height: 60px; background: var(--primary-color); border-radius: 50%; display: flex; align-items: center; justify-content: center; margin-bottom: 15px; font-size: 24px; color: var(--secondary-color); box-shadow: 0 4px 15px rgba(255, 215, 0, 0.4); }
.step-content h4 { font-size: 14px; font-weight: 700; margin-bottom: 5px; }
.step-content p { font-size: 12px; opacity: 0.8; margin: 0; }
.cta-card { background: var(--bg-white); border-radius: var(--radius-lg); padding: 30px; box-shadow: var(--shadow-sm); margin-bottom: 25px; display: flex; gap: 25px; align-items: stretch; }
.cta-main { display: flex; gap: 25px; align-items: center; flex: 1; }
.cta-bg { width: 100px; height: 100px; min-width: 100px; background: linear-gradient(135deg, var(--primary-color) 0%, #ffeb3b 100%); border-radius: 50%; display: flex; align-items: center; justify-content: center; }
.cta-icon { font-size: 48px; color: var(--secondary-color); }
.cta-content { flex: 1; }
.cta-content h3 { font-size: 22px; font-weight: 700; color: var(--text-dark); margin-bottom: 10px; }
.cta-content p { font-size: 15px; color: var(--text-muted); margin-bottom: 20px; line-height: 1.6; }
.cta-buttons { display: flex; gap: 15px; }
.cta-btn { display: inline-flex; align-items: center; gap: 10px; padding: 14px 24px; border-radius: var(--radius-full); font-size: 15px; font-weight: 700; text-decoration: none; transition: all var(--transition-fast); }
.cta-primary { background: var(--secondary-color); color: var(--text-white); }
.cta-primary:hover { background: var(--primary-color); color: var(--text-dark); transform: translateY(-2px); }
.cta-whatsapp { background: #25D366; color: var(--text-white); }
.cta-whatsapp:hover { background: #128C7E; transform: translateY(-2px); }
.cta-review { width: 100px; min-width: 100px; background: rgba(128, 128, 128, 0.2); border-radius: var(--radius-md); display: flex; align-items: center; justify-content: center; padding: 25px; }
.cta-review i { font-size: 40px; color: #888; }
.faq-title { font-size: 20px; font-weight: 700; color: var(--text-dark); margin-bottom: 20px; padding-bottom: 12px; border-bottom: 2px solid var(--primary-color); }
.cities-grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 15px; }
.hamburger .hamburger-close-icon { display: none; }
.hamburger.active .hamburger-icon { display: none; }
.hamburger.active .hamburger-close-icon { display: block; }
.whatsapp-float { position: fixed; bottom: 70px; right: 30px; z-index: 9999; }
.whatsapp-toggle { width: 60px; height: 60px; background: #25D366; border: none; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 28px; color: white; cursor: pointer; box-shadow: 0 4px 15px rgba(37, 211, 102, 0.4); transition: all var(--transition-fast); }
.whatsapp-toggle:hover { transform: scale(1.1); box-shadow: 0 6px 20px rgba(37, 211, 102, 0.5); }
.whatsapp-toggle.hidden { display: none; }
.whatsapp-card { position: absolute; bottom: 80px; right: 0; width: 320px; background: white; border-radius: var(--radius-lg); box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2); overflow: hidden; display: none; animation: whatsappSlideUp 0.3s ease; }
.whatsapp-card.active { display: block; }
@keyframes whatsappSlideUp { from { opacity: 0; transform: translateY(20px); }
to { opacity: 1; transform: translateY(0); }
}
.whatsapp-header { background: #25D366; padding: 15px 20px; display: flex; align-items: center; gap: 12px; color: white; }
.whatsapp-avatar { width: 45px; height: 45px; border-radius: 50%; object-fit: cover; border: 2px solid white; }
.whatsapp-info { flex: 1; }
.whatsapp-info h4 { font-size: 15px; font-weight: 600; margin: 0; }
.whatsapp-status { font-size: 12px; opacity: 0.9; }
.whatsapp-close { background: none; border: none; color: white; font-size: 18px; cursor: pointer; opacity: 0.8; transition: opacity var(--transition-fast); }
.whatsapp-close:hover { opacity: 1; }
.whatsapp-body { padding: 20px; background: #f5f5f5; min-height: 100px; }
.whatsapp-message { background: white; padding: 15px; border-radius: 15px 15px 15px 0; box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05); }
.whatsapp-message p { margin: 0 0 5px; font-size: 14px; color: #333; line-height: 1.4; }
.whatsapp-message p:last-child { margin-bottom: 0; }
.whatsapp-time { font-size: 10px; color: #999; margin-top: 8px; display: block; }
.whatsapp-input-area { padding: 15px; background: white; display: flex; gap: 10px; border-top: 1px solid #eee; }
.whatsapp-input-area input { flex: 1; padding: 12px 15px; border: 1px solid #ddd; border-radius: 25px; font-size: 14px; outline: none; transition: border-color var(--transition-fast); }
.whatsapp-input-area input:focus { border-color: #25D366; }
.whatsapp-input-area input.error { border-color: #ff6b6b; animation: shake 0.5s ease; }
@keyframes shake { 0%, 100% { transform: translateX(0); }
25% { transform: translateX(-5px); }
75% { transform: translateX(5px); }
}
.whatsapp-send { width: 45px; height: 45px; background: #25D366; border: none; border-radius: 50%; display: flex; align-items: center; justify-content: center; color: white; font-size: 16px; cursor: pointer; transition: all var(--transition-fast); }
.whatsapp-send:hover { background: #128C7E; transform: scale(1.05); }
/* 2 SÜTUNLU DROPDOWN */ .dropdown-menu-two-col { min-width: 500px; columns: 2; column-gap: 20px; }
.dropdown-menu-two-col li { font-size: 13px; break-inside: avoid; page-break-inside: avoid; }
.dropdown-menu-two-col .dropdown-item { display: block; width: 100%; }
/* 3 SÜTUNLU DROPDOWN */ .dropdown-menu-three-col { min-width: 620px; columns: 3; column-gap: 20px; }
.dropdown-menu-three-col li { font-size: 13px; break-inside: avoid; page-break-inside: avoid; }
.dropdown-menu-three-col .dropdown-item { display: block; width: 100%; }
/* 4 SÜTUNLU DROPDOWN */ .dropdown-menu-four-col { min-width: 740px; columns: 4; column-gap: 20px; }
.dropdown-menu-four-col li { font-size: 13px; break-inside: avoid; page-break-inside: avoid; }
.dropdown-menu-four-col .dropdown-item { display: block; width: 100%; }
/* 5 SÜTUNLU DROPDOWN */ .dropdown-menu-five-col { min-width: 860px; columns: 5; column-gap: 20px; }
.dropdown-menu-five-col li { font-size: 13px; break-inside: avoid; page-break-inside: avoid; }
.dropdown-menu-five-col .dropdown-item { display: block; width: 100%; }
.nav-item-dropdown .dropdown-menu { position: absolute; top: 100%; left: 50%; transform: translateX(-50%); }
.nav-item-dropdown:hover .dropdown-menu { opacity: 1; visibility: visible; transform: translateX(-50%) translateY(0); }
@media (min-width: 769px) { .nav-item-dropdown:last-of-type .dropdown-menu { left: auto; right: 0; transform: none; }
.nav-item-dropdown:last-of-type:hover .dropdown-menu { transform: translateY(0); }
.nav-item-dropdown:first-of-type .dropdown-menu { left: 0; transform: none; }
.nav-item-dropdown:first-of-type:hover .dropdown-menu { transform: translateY(0); }
}
@media (max-width: 1200px) { .subcategories-grid { grid-template-columns: repeat(2, 1fr); }
.cta-card { flex-direction: column; }
.cta-main { flex-direction: column; text-align: center; }
.cta-bg { width: 80px; height: 80px; min-width: 80px; }
.cta-icon { font-size: 36px; }
.cta-buttons { justify-content: center; flex-wrap: wrap; }
.cta-review { width: 100%; flex-direction: row; gap: 15px; padding: 15px; }
.steps-list { flex-wrap: wrap; gap: 20px; }
.steps-list::before { display: none; }
.step-item { flex: 0 0 calc(50% - 10px); }
.cities-grid-4 { grid-template-columns: repeat(3, 1fr); }
.dropdown-menu-three-col { columns: 2; min-width: 420px; }
.dropdown-menu-four-col { columns: 2; min-width: 420px; }
.dropdown-menu-five-col { columns: 3; min-width: 540px; }
.detail-layout { flex-direction: column; }
.detail-sidebar { width: 100%; }
}
@media (max-width: 768px) { .brand-list.brand-two-col { grid-template-columns: 1fr; }
.subcategories-grid { grid-template-columns: 1fr; }
.step-item { flex: 0 0 100%; }
.step-icon { width: 50px; height: 50px; font-size: 20px; }
.cta-buttons { flex-direction: column; }
.cta-btn { justify-content: center; }
.cta-review { flex-direction: column; text-align: center; }
.whatsapp-float { bottom: 20px; right: 20px; }
.whatsapp-card { width: 280px; right: -10px; }
.cities-grid-4 { grid-template-columns: repeat(2, 1fr); }
.dropdown-menu-two-col, .dropdown-menu-three-col, .dropdown-menu-four-col, .dropdown-menu-five-col { columns: 1; min-width: 280px; }
.detail-page { padding-top: 70px; }
.detail-container { padding: 20px 15px; }
}
@media (max-width: 480px) { .subcategories-grid { grid-template-columns: 1fr; }
.cta-card { padding: 20px; }
.cta-bg { width: 60px; height: 60px; min-width: 60px; }
.cta-icon { font-size: 28px; }
.cta-content h3 { font-size: 18px; }
.whatsapp-card { width: 260px; right: -60px; }
.cities-grid-4 { grid-template-columns: 1fr; }
}
.animated-call-float { position: fixed; bottom: 140px; right: 30px; z-index: 9998; animation: slideInFromLeft 2s ease-out 1s forwards; opacity: 0; }
.animated-call-btn { width: 60px; height: 60px; background: linear-gradient(135deg, #ff6b6b 0%, #ff8e8e 100%); border: none; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 28px; color: white; cursor: pointer; box-shadow: 0 4px 20px rgba(255, 107, 107, 0.5); transition: all 0.3s ease; position: relative; overflow: hidden; }
.animated-call-btn:hover { transform: scale(1.1) rotate(10deg); box-shadow: 0 6px 30px rgba(255, 107, 107, 0.7); }
.animated-call-btn::before { content: ''; position: absolute; width: 100%; height: 100%; background: radial-gradient(circle, rgba(255,255,255,0.3) 0%, transparent 70%); border-radius: 50%; animation: pulse 2s ease-in-out infinite; }
.call-icon-finger { font-size: 32px; animation: pointAndRotate 2s ease-in-out forwards; }
.call-icon-phone { font-size: 28px; opacity: 0; position: absolute; animation: fadeInPhone 1s ease-in-out 2s forwards; }
@keyframes slideInFromLeft { 0% { right: -100px; opacity: 0; transform: translateX(-200px) rotate(-45deg); }
60% { right: 20px; opacity: 1; transform: translateX(10px) rotate(5deg); }
100% { right: 30px; opacity: 1; transform: translateX(0) rotate(0deg); }
}
@keyframes pointAndRotate { 0% { opacity: 1; transform: rotate(0deg) scale(1); }
40% { opacity: 1; transform: rotate(-20deg) scale(1.1); }
60% { opacity: 1; transform: rotate(20deg) scale(1.1); }
80% { opacity: 0.5; transform: rotate(360deg) scale(0.5); }
100% { opacity: 0; transform: rotate(720deg) scale(0); }
}
@keyframes fadeInPhone { 0% { opacity: 0; transform: scale(0) rotate(-180deg); }
60% { opacity: 1; transform: scale(1.2) rotate(10deg); }
100% { opacity: 1; transform: scale(1) rotate(0deg); }
}
@keyframes pulse { 0%, 100% { transform: scale(1); opacity: 0.3; }
50% { transform: scale(1.5); opacity: 0; }
}
@keyframes shake { 0%, 100% { transform: translateX(0) rotate(0deg); }
10%, 30%, 50%, 70%, 90% { transform: translateX(-3px) rotate(-5deg); }
20%, 40%, 60%, 80% { transform: translateX(3px) rotate(5deg); }
}
.animated-call-btn.shake { animation: shake 0.5s ease-in-out; }
@media (max-width: 768px) { .animated-call-float { bottom: 90px; right: 20px; }
.animated-call-btn { width: 55px; height: 55px; }
}

.service-area-card {
    background: #fffef7;
    border-radius: 12px;
    padding: 30px;
    margin-bottom: 30px;
    border: 2px solid #ffd700;
}

.service-area-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
}

.service-area-header i {
    font-size: 32px;
    color: #1a1a2e;
}

.service-area-header h3 {
    font-size: 22px;
    font-weight: 700;
    color: #1a1a2e;
    margin: 0;
}

.service-area-content p {
    font-size: 16px;
    line-height: 1.8;
    color: #555;
    margin: 0;
}

.service-area-content strong {
    color: #1a1a2e;
    font-weight: 600;
}

.spotlight-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    z-index: 998;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
}

.spotlight-overlay.active {
    opacity: 1;
    pointer-events: auto;
}

.sidebar-category.spotlight {
    position: relative;
    z-index: 999;
    box-shadow: 0 0 0 9999px rgba(0, 0, 0, 0.7);
    transition: all 0.3s ease;
}