/* ===== RESET & BASE ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body { font-family: 'Raleway', sans-serif; color: #7A7A7A; background: #fff; overflow-x: hidden; line-height: 1.7; }
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
ul { list-style: none; }

/* ===== CSS VARIABLES ===== */
:root {
  --primary: #2C3031;
  --secondary: #54595F;
  --accent: #ED1C24;
  --text: #7A7A7A;
  --white: #ffffff;
  --bg-gray: #f5f5f5;
  --footer-bg: #2C3031;
  --container: 1140px;
  --radius: 4px;
  --shadow: 0 4px 20px rgba(0,0,0,0.08);
}

/* ===== TYPOGRAPHY ===== */
h1, h2, h3, h4, h5, h6 { font-family: 'Raleway', sans-serif; color: var(--primary); font-weight: 700; line-height: 1.3; }
h1 { font-size: clamp(2rem, 5vw, 3.2rem); }
h2 { font-size: clamp(1.6rem, 3vw, 2.2rem); }
h3 { font-size: 1.2rem; font-weight: 600; }
p { margin-bottom: 1rem; }

/* ===== LAYOUT ===== */
.container { max-width: var(--container); margin: 0 auto; padding: 0 20px; }
.section { padding: 80px 0; }
.section--gray { background: var(--bg-gray); }
.section--dark { background: var(--primary); color: var(--white); }
.section--dark h2, .section--dark h3 { color: var(--white); }
.grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 30px; }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 30px; }
.text-center { text-align: center; }
.mt-1 { margin-top: 10px; }
.mt-2 { margin-top: 20px; }
.mt-3 { margin-top: 30px; }
.mb-2 { margin-bottom: 20px; }
.mb-3 { margin-bottom: 30px; }

/* ===== BUTTONS ===== */
.btn { display: inline-block; padding: 14px 32px; border-radius: var(--radius); font-family: 'Raleway', sans-serif; font-weight: 600; font-size: 0.95rem; cursor: pointer; transition: all 0.3s; border: 2px solid transparent; }
.btn-primary { background: var(--accent); color: var(--white); border-color: var(--accent); }
.btn-primary:hover { background: #c4151b; border-color: #c4151b; }
.btn-outline { background: transparent; color: var(--primary); border-color: var(--primary); }
.btn-outline:hover { background: var(--primary); color: var(--white); }
.btn-white { background: var(--white); color: var(--primary); border-color: var(--white); }
.btn-white:hover { background: transparent; color: var(--white); }

/* ===== HEADER / NAV ===== */
.site-header { position: sticky; top: 0; z-index: 1000; background: var(--white); box-shadow: 0 2px 10px rgba(0,0,0,0.08); }
.nav-inner { display: flex; align-items: center; justify-content: space-between; height: 72px; }
.nav-logo { display: flex; align-items: center; gap: 10px; }
.nav-logo svg { width: 44px; height: 44px; }
.nav-logo-text { font-size: 1.3rem; font-weight: 700; color: var(--primary); line-height: 1.1; }
.nav-logo-text span { display: block; font-size: 0.65rem; font-weight: 400; color: var(--accent); letter-spacing: 0.08em; text-transform: uppercase; }
.nav-menu { display: flex; align-items: center; gap: 32px; }
.nav-menu a { font-size: 0.9rem; font-weight: 600; color: var(--secondary); transition: color 0.3s; text-transform: uppercase; letter-spacing: 0.04em; }
.nav-menu a:hover, .nav-menu a.active { color: var(--accent); }
.nav-cta { background: var(--accent); color: var(--white) !important; padding: 10px 22px; border-radius: var(--radius); }
.nav-cta:hover { background: #c4151b !important; color: var(--white) !important; }
.hamburger { display: none; flex-direction: column; gap: 5px; cursor: pointer; padding: 4px; }
.hamburger span { display: block; width: 25px; height: 2px; background: var(--primary); transition: all 0.3s; }

/* ===== HERO ===== */
.hero { position: relative; min-height: 92vh; display: flex; align-items: center; overflow: hidden; }
.hero-bg { position: absolute; inset: 0; background: url('../img/hero-bg.webp') center/cover no-repeat; }
.hero-overlay { position: absolute; inset: 0; background: rgba(44,48,49,0.72); }
.hero-content { position: relative; z-index: 2; max-width: 700px; }
.hero-badge { display: inline-block; background: var(--accent); color: var(--white); font-size: 0.75rem; font-weight: 700; padding: 5px 14px; border-radius: 2px; text-transform: uppercase; letter-spacing: 0.08em; margin-bottom: 20px; }
.hero-content h1 { color: var(--white); margin-bottom: 20px; }
.hero-content p { color: rgba(255,255,255,0.85); font-size: 1.1rem; margin-bottom: 35px; max-width: 560px; }
.hero-btns { display: flex; gap: 15px; flex-wrap: wrap; }

/* ===== STATS ===== */
.stats-section { background: var(--primary); padding: 60px 0; }
.stats-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 40px; }
.stat-item { text-align: center; }
.stat-number { font-size: 2.6rem; font-weight: 700; color: var(--white); display: block; }
.stat-number span.suffix { font-size: 1.4rem; }
.stat-label { font-size: 0.85rem; color: rgba(255,255,255,0.6); margin-top: 6px; text-transform: uppercase; letter-spacing: 0.06em; }

/* ===== ABOUT TEASER ===== */
.about-img { border-radius: var(--radius); overflow: hidden; }
.about-img img { width: 100%; height: 420px; object-fit: cover; }
.about-content { padding: 10px 0; }
.about-content h2 { margin-bottom: 20px; }
.about-content p { color: var(--text); margin-bottom: 16px; }
.checklist { margin: 24px 0 30px; }
.checklist li { display: flex; align-items: flex-start; gap: 12px; margin-bottom: 12px; color: var(--secondary); font-size: 0.95rem; }
.checklist li i { color: var(--accent); margin-top: 3px; flex-shrink: 0; }

/* ===== PACKAGES ===== */
.pkg-card { background: var(--white); border: 1px solid #e0e0e0; border-radius: var(--radius); padding: 36px 28px; text-align: center; transition: all 0.3s; position: relative; }
.pkg-card:hover { box-shadow: var(--shadow); transform: translateY(-4px); border-color: var(--accent); }
.pkg-card.featured { border-color: var(--accent); box-shadow: 0 8px 30px rgba(237,28,36,0.15); }
.pkg-badge { position: absolute; top: -13px; left: 50%; transform: translateX(-50%); background: var(--accent); color: var(--white); font-size: 0.72rem; font-weight: 700; padding: 4px 16px; border-radius: 2px; text-transform: uppercase; white-space: nowrap; }
.pkg-icon { width: 64px; height: 64px; background: #fce8e8; border-radius: 50%; display: flex; align-items: center; justify-content: center; margin: 0 auto 20px; }
.pkg-icon i { font-size: 1.6rem; color: var(--accent); }
.pkg-name { font-size: 1.1rem; font-weight: 700; color: var(--primary); margin-bottom: 8px; }
.pkg-price { font-size: 2rem; font-weight: 700; color: var(--accent); margin-bottom: 4px; }
.pkg-price span { font-size: 1rem; font-weight: 400; color: var(--text); }
.pkg-desc { font-size: 0.88rem; color: var(--text); margin-bottom: 22px; }
.pkg-features { text-align: left; margin-bottom: 28px; }
.pkg-features li { display: flex; align-items: flex-start; gap: 10px; font-size: 0.88rem; color: var(--secondary); margin-bottom: 10px; }
.pkg-features li i { color: var(--accent); margin-top: 2px; flex-shrink: 0; }

/* ===== STEPS / HOW IT WORKS ===== */
.steps-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 30px; }
.step-item { text-align: center; padding: 10px; }
.step-num { width: 52px; height: 52px; border-radius: 50%; background: var(--accent); color: var(--white); font-size: 1.3rem; font-weight: 700; display: flex; align-items: center; justify-content: center; margin: 0 auto 16px; }
.step-item h3 { margin-bottom: 10px; }
.step-item p { font-size: 0.9rem; }

/* ===== TESTIMONIALS ===== */
.testimonial-card { background: var(--white); border-radius: var(--radius); padding: 30px; box-shadow: var(--shadow); }
.testimonial-stars { color: #f5a623; margin-bottom: 14px; }
.testimonial-text { font-size: 0.95rem; color: var(--secondary); font-style: italic; margin-bottom: 18px; }
.testimonial-author { display: flex; align-items: center; gap: 12px; }
.testimonial-author-img { width: 44px; height: 44px; border-radius: 50%; overflow: hidden; background: #eee; }
.testimonial-author-img img { width: 100%; height: 100%; object-fit: cover; }
.testimonial-author-name { font-weight: 700; color: var(--primary); font-size: 0.9rem; }
.testimonial-author-role { font-size: 0.78rem; color: var(--text); }

/* ===== FAQ ===== */
.faq-item { border-bottom: 1px solid #e8e8e8; }
.faq-q { width: 100%; text-align: left; padding: 18px 0; background: none; border: none; cursor: pointer; display: flex; justify-content: space-between; align-items: center; font-family: 'Raleway', sans-serif; font-size: 1rem; font-weight: 600; color: var(--primary); }
.faq-q i { transition: transform 0.3s; color: var(--accent); }
.faq-q.open i { transform: rotate(180deg); }
.faq-a { max-height: 0; overflow: hidden; transition: max-height 0.35s ease; }
.faq-a.open { max-height: 300px; }
.faq-a p { padding: 0 0 18px; color: var(--text); font-size: 0.93rem; }

/* ===== CTA BAND ===== */
.cta-band { background: var(--accent); padding: 70px 0; text-align: center; }
.cta-band h2 { color: var(--white); margin-bottom: 14px; }
.cta-band p { color: rgba(255,255,255,0.88); margin-bottom: 30px; font-size: 1.05rem; }

/* ===== CONTACT FORM ===== */
.contact-grid { display: grid; grid-template-columns: 1fr 1.4fr; gap: 60px; align-items: start; }
.contact-info h2 { margin-bottom: 20px; }
.contact-info p { color: var(--text); margin-bottom: 24px; }
.contact-detail { display: flex; align-items: flex-start; gap: 14px; margin-bottom: 20px; }
.contact-detail i { color: var(--accent); font-size: 1.1rem; margin-top: 3px; flex-shrink: 0; width: 20px; text-align: center; }
.contact-detail div strong { display: block; font-size: 0.8rem; text-transform: uppercase; letter-spacing: 0.06em; color: var(--secondary); margin-bottom: 3px; }
.contact-detail div span { color: var(--primary); font-size: 0.95rem; }
.contact-form { background: var(--white); padding: 40px; border-radius: var(--radius); box-shadow: var(--shadow); }
.form-group { margin-bottom: 20px; }
.form-group label { display: block; font-size: 0.85rem; font-weight: 600; color: var(--secondary); margin-bottom: 7px; text-transform: uppercase; letter-spacing: 0.04em; }
.form-group input, .form-group textarea, .form-group select { width: 100%; border: 1px solid rgba(0,0,0,0.2); border-radius: 3px; padding: 12px 14px; font-family: 'Raleway', sans-serif; font-size: 0.95rem; color: rgba(0,0,0,0.7); background: #fff; transition: border-color 0.3s; }
.form-group input:focus, .form-group textarea:focus, .form-group select:focus { outline: none; border-color: var(--accent); }
.form-group textarea { min-height: 130px; resize: vertical; }
.form-required { color: var(--accent); }
.form-submit { width: 100%; padding: 14px; font-size: 1rem; }

/* ===== FOOTER ===== */
.site-footer { background: var(--footer-bg); color: rgba(255,255,255,0.7); padding: 60px 0 0; }
.footer-grid { display: grid; grid-template-columns: 1.5fr 1fr 1fr 1fr; gap: 40px; margin-bottom: 50px; }
.footer-brand-text { font-size: 0.88rem; line-height: 1.8; margin-top: 14px; }
.footer-logo { display: flex; align-items: center; gap: 10px; }
.footer-logo svg { width: 40px; height: 40px; }
.footer-logo-text { font-size: 1.1rem; font-weight: 700; color: var(--white); }
.footer-col h4 { color: var(--white); font-size: 0.85rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.08em; margin-bottom: 18px; padding-bottom: 10px; border-bottom: 2px solid var(--accent); display: inline-block; }
.footer-col ul li { margin-bottom: 10px; }
.footer-col ul li a { color: rgba(255,255,255,0.65); font-size: 0.88rem; transition: color 0.3s; }
.footer-col ul li a:hover { color: var(--white); }
.footer-contact-item { display: flex; align-items: flex-start; gap: 10px; margin-bottom: 14px; font-size: 0.88rem; }
.footer-contact-item i { color: var(--accent); margin-top: 3px; flex-shrink: 0; width: 16px; }
.footer-social { display: flex; gap: 10px; margin-top: 16px; }
.footer-social a { width: 34px; height: 34px; border-radius: 50%; background: rgba(255,255,255,0.1); display: flex; align-items: center; justify-content: center; color: rgba(255,255,255,0.7); font-size: 0.85rem; transition: all 0.3s; }
.footer-social a:hover { background: var(--accent); color: var(--white); }
.footer-bottom { border-top: 1px solid rgba(255,255,255,0.1); padding: 20px 0; display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 10px; }
.footer-bottom p { font-size: 0.82rem; color: rgba(255,255,255,0.45); }
.footer-bottom-links { display: flex; gap: 20px; }
.footer-bottom-links a { font-size: 0.82rem; color: rgba(255,255,255,0.45); transition: color 0.3s; }
.footer-bottom-links a:hover { color: var(--white); }

/* ===== COOKIES ===== */
.cookie-bar { position: fixed; bottom: 0; left: 0; right: 0; z-index: 9999; background: var(--primary); color: rgba(255,255,255,0.88); padding: 16px 20px; display: flex; align-items: center; justify-content: space-between; gap: 20px; flex-wrap: wrap; transform: translateY(100%); transition: transform 0.4s ease; box-shadow: 0 -4px 20px rgba(0,0,0,0.2); }
.cookie-bar.visible { transform: translateY(0); }
.cookie-bar p { font-size: 0.87rem; flex: 1; min-width: 220px; }
.cookie-bar p a { color: var(--accent); text-decoration: underline; }
.cookie-btns { display: flex; gap: 10px; flex-shrink: 0; }
.cookie-btns button { padding: 9px 22px; border-radius: 3px; font-family: 'Raleway', sans-serif; font-size: 0.85rem; font-weight: 600; cursor: pointer; border: none; transition: all 0.3s; }
.cookie-accept { background: var(--accent); color: var(--white); }
.cookie-accept:hover { background: #c4151b; }
.cookie-decline { background: rgba(255,255,255,0.15); color: rgba(255,255,255,0.85); }
.cookie-decline:hover { background: rgba(255,255,255,0.25); }

/* ===== PAGE HERO (inner pages) ===== */
.page-hero { background: url('../img/page-hero-bg.webp') center/cover no-repeat; position: relative; padding: 90px 0 70px; text-align: center; }
.page-hero::before { content: ''; position: absolute; inset: 0; background: rgba(44,48,49,0.75); }
.page-hero .container { position: relative; z-index: 2; }
.page-hero h1 { color: var(--white); margin-bottom: 14px; }
.page-hero p { color: rgba(255,255,255,0.8); font-size: 1.05rem; max-width: 580px; margin: 0 auto; }
.breadcrumb { display: flex; justify-content: center; gap: 8px; font-size: 0.82rem; color: rgba(255,255,255,0.55); margin-top: 16px; }
.breadcrumb a { color: rgba(255,255,255,0.6); }
.breadcrumb a:hover { color: var(--white); }

/* ===== LEGAL PAGE ===== */
.legal-content { max-width: 820px; margin: 0 auto; }
.legal-content h2 { font-size: 1.3rem; margin-top: 40px; margin-bottom: 12px; color: var(--primary); }
.legal-content h3 { font-size: 1.05rem; margin-top: 24px; margin-bottom: 8px; }
.legal-content p, .legal-content li { font-size: 0.95rem; color: var(--text); margin-bottom: 12px; }
.legal-content ul { padding-left: 18px; list-style: disc; }
.legal-content a { color: var(--accent); text-decoration: underline; }

/* ===== SECTION TITLE ===== */
.section-header { margin-bottom: 50px; }
.section-header.text-center { text-align: center; }
.section-label { display: inline-block; font-size: 0.75rem; font-weight: 700; color: var(--accent); text-transform: uppercase; letter-spacing: 0.12em; margin-bottom: 10px; }
.section-header h2 { margin-bottom: 14px; }
.section-header p { color: var(--text); max-width: 600px; margin: 0 auto; }

/* ===== MAP PLACEHOLDER ===== */
.map-placeholder { width: 100%; height: 340px; background: #e8e8e8; border-radius: var(--radius); display: flex; align-items: center; justify-content: center; color: var(--secondary); font-size: 0.9rem; }

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  .grid-4, .stats-grid, .steps-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 768px) {
  .section { padding: 60px 0; }
  .grid-2, .grid-3, .contact-grid { grid-template-columns: 1fr; }
  .grid-4, .stats-grid, .steps-grid { grid-template-columns: 1fr 1fr; }
  .nav-menu { display: none; flex-direction: column; position: absolute; top: 72px; left: 0; right: 0; background: var(--white); padding: 20px; gap: 0; box-shadow: 0 8px 20px rgba(0,0,0,0.1); }
  .nav-menu.open { display: flex; }
  .nav-menu a { padding: 12px 0; border-bottom: 1px solid #f0f0f0; font-size: 0.95rem; }
  .hamburger { display: flex; }
  .hero { min-height: 75vh; }
  .hero-btns { flex-direction: column; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .pkg-card { margin-bottom: 10px; }
  .contact-form { padding: 28px 20px; }
}
@media (max-width: 480px) {
  .stats-grid, .steps-grid { grid-template-columns: 1fr; }
}
