:root {
  --primary: #1a1a2e;
  --secondary: #16213e;
  --accent: #e94560;
  --accent-light: #ff6b81;
  --gold: #f0a500;
  --light: #f8f9fa;
  --dark: #0f0f1a;
  --text: #2d3436;
  --text-light: #636e72;
  --white: #ffffff;
  --shadow: 0 20px 60px rgba(0,0,0,0.08);
  --shadow-hover: 0 30px 80px rgba(0,0,0,0.15);
  --radius: 16px;
  --radius-sm: 8px;
  --radius-lg: 24px;
  --transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body { font-family: 'Segoe UI', system-ui, -apple-system, sans-serif; color: var(--text); background: var(--white); overflow-x: hidden; line-height: 1.7; }
a { color: var(--accent); text-decoration: none; transition: var(--transition); }
a:hover { color: var(--accent-light); }
h1, h2, h3, h4, h5, h6 { font-weight: 800; line-height: 1.25; letter-spacing: -0.02em; color: var(--primary); }
h1 { font-size: clamp(2.5rem, 6vw, 4.5rem); }
h2 { font-size: clamp(2rem, 4vw, 3rem); }
h3 { font-size: clamp(1.5rem, 3vw, 2rem); }
.section-padding { padding: 100px 0; }
@media (max-width: 768px) { .section-padding { padding: 60px 0; } }
.container { max-width: 1200px; margin: 0 auto; padding: 0 20px; }
.btn { display: inline-flex; align-items: center; gap: 10px; padding: 14px 36px; border-radius: 50px; font-weight: 700; font-size: 1rem; border: none; cursor: pointer; transition: var(--transition); letter-spacing: 0.5px; position: relative; overflow: hidden; }
.btn-primary { background: linear-gradient(135deg, var(--accent), var(--accent-light)); color: var(--white); box-shadow: 0 8px 30px rgba(233,69,96,0.3); }
.btn-primary:hover { transform: translateY(-3px); box-shadow: 0 12px 40px rgba(233,69,96,0.4); color: var(--white); }
.btn-outline { background: transparent; color: var(--primary); border: 2px solid var(--primary); }
.btn-outline:hover { background: var(--primary); color: var(--white); }
.btn-light { background: var(--white); color: var(--primary); }
.btn-light:hover { background: var(--light); transform: translateY(-3px); }
.badge { display: inline-block; padding: 6px 20px; border-radius: 50px; font-size: 0.85rem; font-weight: 600; background: rgba(233,69,96,0.1); color: var(--accent); margin-bottom: 20px; letter-spacing: 0.5px; }
.section-title { margin-bottom: 60px; }
.section-title h2 { margin-bottom: 16px; }
.section-title p { font-size: 1.15rem; color: var(--text-light); max-width: 600px; margin: 0 auto; line-height: 1.8; }
.hero-section { position: relative; min-height: 100vh; display: flex; align-items: center; background-size: cover; background-position: center; background-attachment: fixed; color: var(--white); overflow: hidden; }
.hero-section::before { content: ''; position: absolute; inset: 0; background: linear-gradient(135deg, rgba(15,15,26,0.85), rgba(22,33,62,0.7)); z-index: 1; }
.hero-section > * { position: relative; z-index: 2; }
.hero-section h1 { color: var(--white); font-size: clamp(2.8rem, 7vw, 5rem); margin-bottom: 24px; }
.hero-section p { font-size: 1.2rem; max-width: 640px; line-height: 1.8; margin-bottom: 36px; opacity: 0.9; }
.hero-section .btn-group { display: flex; gap: 16px; flex-wrap: wrap; }
.slider-section { position: relative; overflow: hidden; }
.hero-slider .slide { position: absolute; inset: 0; opacity: 0; transition: opacity 0.8s ease; background-size: cover; background-position: center; }
.hero-slider .slide.active { opacity: 1; position: relative; }
.hero-slider .slide::before { content: ''; position: absolute; inset: 0; background: linear-gradient(135deg, rgba(15,15,26,0.85), rgba(22,33,62,0.7)); z-index: 1; }
.hero-slider .slide > * { position: relative; z-index: 2; }
.slider-dots { position: absolute; bottom: 40px; left: 50%; transform: translateX(-50%); display: flex; gap: 12px; z-index: 3; }
.slider-dots button { width: 14px; height: 14px; border-radius: 50%; border: 2px solid rgba(255,255,255,0.5); background: transparent; cursor: pointer; transition: var(--transition); padding: 0; }
.slider-dots button.active { background: var(--white); border-color: var(--white); transform: scale(1.2); }
.slider-nav { position: absolute; top: 50%; transform: translateY(-50%); z-index: 3; background: rgba(255,255,255,0.1); border: none; color: var(--white); width: 60px; height: 60px; border-radius: 50%; font-size: 24px; cursor: pointer; transition: var(--transition); backdrop-filter: blur(10px); }
.slider-nav:hover { background: rgba(255,255,255,0.25); }
.slider-nav.prev { left: 30px; }
.slider-nav.next { right: 30px; }
@media (max-width: 768px) { .slider-nav { width: 40px; height: 40px; font-size: 16px; } .slider-nav.prev { left: 10px; } .slider-nav.next { right: 10px; } }
.card { background: var(--white); border-radius: var(--radius); padding: 40px 30px; box-shadow: var(--shadow); transition: var(--transition); border: none; height: 100%; }
.card:hover { transform: translateY(-8px); box-shadow: var(--shadow-hover); }
.card-icon { width: 70px; height: 70px; border-radius: 16px; display: flex; align-items: center; justify-content: center; font-size: 28px; margin-bottom: 24px; background: linear-gradient(135deg, rgba(233,69,96,0.1), rgba(240,165,0,0.1)); color: var(--accent); }
.card h3 { font-size: 1.4rem; margin-bottom: 12px; }
.card p { color: var(--text-light); line-height: 1.7; }
.featured-card { position: relative; overflow: hidden; background: linear-gradient(135deg, var(--primary), var(--secondary)); color: var(--white); padding: 50px 35px; }
.featured-card h3, .featured-card p { color: var(--white); }
.featured-card .card-icon { background: rgba(255,255,255,0.15); color: var(--white); }
.price-card { text-align: center; padding: 50px 30px; }
.price-card .price { font-size: 3rem; font-weight: 800; color: var(--primary); margin: 20px 0; }
.price-card .price span { font-size: 1rem; font-weight: 400; color: var(--text-light); }
.price-card ul { list-style: none; padding: 0; margin: 30px 0; text-align: left; }
.price-card ul li { padding: 12px 0; border-bottom: 1px solid rgba(0,0,0,0.05); display: flex; align-items: center; gap: 12px; }
.price-card ul li i { color: var(--accent); width: 20px; text-align: center; }
.price-card.featured { border: 3px solid var(--accent); position: relative; }
.price-card.featured .badge { position: absolute; top: -15px; left: 50%; transform: translateX(-50%); background: var(--accent); color: var(--white); padding: 6px 30px; }
.team-card { text-align: center; }
.team-card .avatar { width: 120px; height: 120px; border-radius: 50%; margin: 0 auto 24px; background: linear-gradient(135deg, var(--accent), var(--gold)); padding: 4px; }
.team-card .avatar img { width: 100%; height: 100%; border-radius: 50%; object-fit: cover; border: 4px solid var(--white); }
.team-card h3 { margin-bottom: 4px; }
.team-card .role { color: var(--accent); font-weight: 600; font-size: 0.95rem; margin-bottom: 12px; }
.testimonial-card { background: var(--white); border-radius: var(--radius); padding: 40px; box-shadow: var(--shadow); position: relative; }
.testimonial-card::before { content: '\f10d'; font-family: 'Font Awesome 6 Free'; font-weight: 900; position: absolute; top: 20px; right: 30px; font-size: 40px; color: rgba(233,69,96,0.1); }
.testimonial-card .stars { color: var(--gold); margin-bottom: 16px; font-size: 14px; }
.testimonial-card p { font-style: italic; color: var(--text); line-height: 1.8; margin-bottom: 24px; }
.testimonial-card .author { display: flex; align-items: center; gap: 16px; }
.testimonial-card .author img { width: 50px; height: 50px; border-radius: 50%; object-fit: cover; }
.testimonial-card .author h4 { font-size: 1rem; margin-bottom: 2px; }
.testimonial-card .author span { font-size: 0.85rem; color: var(--text-light); }
.step-card { text-align: center; position: relative; }
.step-card .step-number { width: 60px; height: 60px; border-radius: 50%; background: linear-gradient(135deg, var(--accent), var(--accent-light)); color: var(--white); display: flex; align-items: center; justify-content: center; font-size: 1.5rem; font-weight: 800; margin: 0 auto 20px; }
.step-card h3 { font-size: 1.2rem; margin-bottom: 8px; }
.step-card p { color: var(--text-light); font-size: 0.95rem; }
.form-section { background: var(--light); border-radius: var(--radius-lg); padding: 60px; }
@media (max-width: 768px) { .form-section { padding: 30px 20px; } }
.form-control { width: 100%; padding: 16px 20px; border: 2px solid transparent; border-radius: var(--radius-sm); background: var(--white); font-size: 1rem; transition: var(--transition); box-shadow: 0 2px 10px rgba(0,0,0,0.04); }
.form-control:focus { outline: none; border-color: var(--accent); box-shadow: 0 0 0 4px rgba(233,69,96,0.1); }
textarea.form-control { min-height: 140px; resize: vertical; }
.map-container { border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow); }
.map-container iframe { width: 100%; height: 400px; border: none; display: block; }
.stats-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 30px; }
.stat-item { text-align: center; }
.stat-item .stat-number { font-size: 3rem; font-weight: 800; color: var(--accent); line-height: 1; margin-bottom: 8px; }
.stat-item .stat-label { font-size: 1rem; color: var(--text-light); font-weight: 500; }
.faq-item { border-bottom: 1px solid rgba(0,0,0,0.08); padding: 20px 0; cursor: pointer; }
.faq-item:first-child { border-top: 1px solid rgba(0,0,0,0.08); }
.faq-question { display: flex; justify-content: space-between; align-items: center; font-weight: 700; font-size: 1.1rem; gap: 20px; }
.faq-question i { transition: var(--transition); color: var(--accent); font-size: 1.2rem; }
.faq-item.active .faq-question i { transform: rotate(180deg); }
.faq-answer { max-height: 0; overflow: hidden; transition: max-height 0.4s ease, padding 0.4s ease; padding-top: 0; }
.faq-item.active .faq-answer { max-height: 500px; padding-top: 16px; }
.faq-answer p { color: var(--text-light); line-height: 1.8; }
.cookie-banner { position: fixed; bottom: 30px; left: 50%; transform: translateX(-50%); max-width: 500px; width: calc(100% - 40px); background: var(--white); border-radius: var(--radius); padding: 30px; box-shadow: 0 20px 60px rgba(0,0,0,0.15); z-index: 9999; display: none; }
.cookie-banner.show { display: block; }
.cookie-banner p { font-size: 0.95rem; color: var(--text-light); margin-bottom: 20px; line-height: 1.6; }
.cookie-banner .btn-group { display: flex; gap: 12px; }
.cookie-banner .btn { flex: 1; justify-content: center; padding: 12px 20px; }
.notification { position: fixed; top: 30px; right: 30px; background: var(--white); border-radius: var(--radius-sm); padding: 20px 30px; box-shadow: 0 10px 40px rgba(0,0,0,0.12); display: flex; align-items: center; gap: 16px; z-index: 99999; transform: translateX(120%); opacity: 0; transition: var(--transition); }
.notification.show { transform: translateX(0); opacity: 1; }
.notification i { font-size: 24px; color: var(--accent); }
.notification .close-btn { cursor: pointer; font-size: 18px; color: var(--text-light); background: none; border: none; margin-left: 20px; transition: var(--transition); }
.notification .close-btn:hover { color: var(--accent); }
.overlay-section { position: relative; background-size: cover; background-position: center; background-attachment: fixed; color: var(--white); }
.overlay-section::before { content: ''; position: absolute; inset: 0; background: linear-gradient(135deg, rgba(15,15,26,0.8), rgba(22,33,62,0.6)); z-index: 1; }
.overlay-section > * { position: relative; z-index: 2; }
.overlay-section h2, .overlay-section h3, .overlay-section p { color: var(--white); }
.gradient-text { background: linear-gradient(135deg, var(--accent), var(--gold)); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }
.bg-light-custom { background: var(--light); }
.vh-80 { min-height: 80vh; }
.row { display: flex; flex-wrap: wrap; margin: -12px; }
.row > * { padding: 12px; }
.col-12 { flex: 0 0 100%; }
.col-md-6 { flex: 0 0 50%; }
.col-md-4 { flex: 0 0 33.333%; }
.col-lg-4 { flex: 0 0 33.333%; }
.col-lg-6 { flex: 0 0 50%; }
@media (max-width: 768px) { .col-md-6, .col-md-4, .col-lg-4, .col-lg-6 { flex: 0 0 100%; } }
.d-flex { display: flex; }
.flex-wrap { flex-wrap: wrap; }
.align-items-center { align-items: center; }
.justify-content-center { justify-content: center; }
.justify-content-between { justify-content: space-between; }
.text-center { text-align: center; }
.img-fluid { max-width: 100%; height: auto; }
.w-100 { width: 100%; }
.position-relative { position: relative; }
.overflow-hidden { overflow: hidden; }
.gallery-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 24px; }
.gallery-item { border-radius: var(--radius); overflow: hidden; position: relative; box-shadow: var(--shadow); transition: var(--transition); }
.gallery-item:hover { transform: scale(1.02); box-shadow: var(--shadow-hover); }
.gallery-item img { width: 100%; height: 280px; object-fit: cover; display: block; }
.gallery-item .overlay { position: absolute; inset: 0; background: linear-gradient(to top, rgba(15,15,26,0.8), transparent); display: flex; flex-direction: column; justify-content: flex-end; padding: 30px; opacity: 0; transition: var(--transition); }
.gallery-item:hover .overlay { opacity: 1; }
.gallery-item .overlay h4 { color: var(--white); margin-bottom: 4px; }
.gallery-item .overlay p { color: rgba(255,255,255,0.8); font-size: 0.9rem; }