/*
Theme Name: RevizieAC
Theme URI: https://revizieac.ro
Author: RevizieAC
Description: Temă profesională pentru servicii de revizie și igienizare aer condiționat în București și Ilfov
Version: 1.0.0
License: GNU General Public License v2 or later
Text Domain: revizieac
*/

:root {
  --primary: #166534;
  --primary-dark: #14532d;
  --primary-light: #16a34a;
  --accent: #f97316;
  --accent-hover: #ea6a05;
  --green: #22c55e;
  --white: #ffffff;
  --light: #f0fdf4;
  --gray: #6b7280;
  --dark: #111827;
  --text: #374151;
  --border: #e5e7eb;
  --shadow: 0 4px 24px rgba(22,101,52,0.10);
  --shadow-lg: 0 8px 40px rgba(22,101,52,0.18);
  --radius: 12px;
  --radius-lg: 20px;
  --transition: all 0.3s cubic-bezier(.4,0,.2,1);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body { font-family: 'Inter', 'Segoe UI', Arial, sans-serif; color: var(--text); background: var(--white); line-height: 1.6; -webkit-font-smoothing: antialiased; }
img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; transition: var(--transition); }
ul { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }
input, textarea, select { font-family: inherit; }

.container { max-width: 1200px; margin: 0 auto; padding: 0 20px; }
.section-padding { padding: 80px 0; }

h1, h2, h3, h4, h5, h6 { font-weight: 700; line-height: 1.2; color: var(--dark); }
h1 { font-size: clamp(2rem, 5vw, 3.2rem); }
h2 { font-size: clamp(1.6rem, 4vw, 2.4rem); }
h3 { font-size: clamp(1.2rem, 3vw, 1.6rem); }
p { margin-bottom: 1rem; }

.section-tag { display: inline-flex; align-items: center; gap: 8px; font-size: 0.85rem; font-weight: 600; color: var(--accent); letter-spacing: 1.5px; text-transform: uppercase; margin-bottom: 12px; }
.section-tag::before { content: ''; display: inline-block; width: 30px; height: 2px; background: var(--accent); }
.section-title { font-size: clamp(1.6rem, 4vw, 2.4rem); color: var(--dark); margin-bottom: 16px; }
.section-subtitle { font-size: 1.05rem; color: var(--gray); max-width: 600px; margin-bottom: 48px; }

.btn { display: inline-flex; align-items: center; gap: 8px; padding: 14px 28px; border-radius: 8px; font-size: 1rem; font-weight: 600; transition: var(--transition); cursor: pointer; }
.btn-primary { background: var(--accent); color: var(--white); box-shadow: 0 4px 16px rgba(249,115,22,0.35); }
.btn-primary:hover { background: var(--accent-hover); transform: translateY(-2px); box-shadow: 0 8px 24px rgba(249,115,22,0.45); color: var(--white); }
.btn-outline { border: 2px solid var(--white); color: var(--white); background: transparent; }
.btn-outline:hover { background: var(--white); color: var(--primary); }
.btn-phone { background: var(--green); color: var(--white); box-shadow: 0 4px 16px rgba(34,197,94,0.35); }
.btn-phone:hover { background: #16a34a; transform: translateY(-2px); color: var(--white); }
.btn-lg { padding: 18px 36px; font-size: 1.1rem; }

/* TOP BAR */
.top-bar { background: var(--primary-dark); color: rgba(255,255,255,0.85); font-size: 0.82rem; padding: 8px 0; display: none; }
@media (min-width: 768px) { .top-bar { display: block; } }
.top-bar-inner { display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 8px; }
.top-bar a { color: rgba(255,255,255,0.85); }
.top-bar a:hover { color: var(--accent); }
.top-bar-left, .top-bar-right { display: flex; align-items: center; gap: 20px; }
.top-bar-item { display: flex; align-items: center; gap: 6px; }

/* HEADER */
.site-header { position: sticky; top: 0; z-index: 1000; background: var(--white); box-shadow: 0 2px 20px rgba(0,0,0,0.08); transition: var(--transition); }
.header-inner { display: flex; align-items: center; justify-content: space-between; padding: 16px 0; gap: 24px; }
.site-logo { display: flex; align-items: center; gap: 12px; flex-shrink: 0; }
.logo-icon { width: 44px; height: 44px; background: var(--primary); border-radius: 10px; display: flex; align-items: center; justify-content: center; }
.logo-icon svg { color: white; width: 26px; height: 26px; }
.logo-text { line-height: 1.1; }
.logo-text strong { display: block; font-size: 1.1rem; color: var(--primary); font-weight: 800; }
.logo-text span { font-size: 0.72rem; color: var(--gray); font-weight: 500; }

.main-nav { flex: 1; display: flex; justify-content: center; }
.nav-list { display: flex; align-items: center; gap: 4px; }
.nav-item { position: relative; }
.nav-link { padding: 8px 14px; font-size: 0.92rem; font-weight: 600; color: var(--dark); border-radius: 6px; display: flex; align-items: center; gap: 4px; white-space: nowrap; }
.nav-link:hover, .nav-link.active { color: var(--primary); background: var(--light); }
.nav-link svg { width: 12px; height: 12px; transition: var(--transition); }
.nav-item:hover .nav-link svg { transform: rotate(180deg); }

.dropdown-menu { position: absolute; top: calc(100% + 8px); left: 0; background: var(--white); border-radius: var(--radius); box-shadow: var(--shadow-lg); min-width: 240px; padding: 8px; opacity: 0; visibility: hidden; transform: translateY(-10px); transition: var(--transition); border: 1px solid var(--border); z-index: 100; }
.nav-item:hover .dropdown-menu { opacity: 1; visibility: visible; transform: translateY(0); }
.dropdown-link { display: flex; align-items: center; gap: 10px; padding: 10px 14px; border-radius: 8px; font-size: 0.9rem; font-weight: 500; color: var(--text); }
.dropdown-link:hover { background: var(--light); color: var(--primary); }
.dropdown-icon { width: 32px; height: 32px; background: var(--light); border-radius: 8px; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.dropdown-icon svg { width: 16px; height: 16px; color: var(--primary); }

.header-cta { display: flex; align-items: center; gap: 12px; }
.header-phone { display: none; flex-direction: column; align-items: flex-end; line-height: 1.2; }
@media (min-width: 992px) { .header-phone { display: flex; } }
.header-phone span { font-size: 0.72rem; color: var(--gray); }
.header-phone a { font-size: 1rem; font-weight: 700; color: var(--primary); }
.header-phone a:hover { color: var(--accent); }

.mobile-toggle { display: flex; align-items: center; justify-content: center; width: 40px; height: 40px; border-radius: 8px; background: var(--light); color: var(--dark); transition: var(--transition); }
.mobile-toggle:hover { background: var(--primary); color: white; }
@media (min-width: 992px) { .mobile-toggle { display: none; } }
@media (max-width: 991px) {
  .main-nav { display: none; position: absolute; top: 100%; left: 0; right: 0; background: var(--white); border-top: 1px solid var(--border); padding: 16px; box-shadow: var(--shadow-lg); justify-content: flex-start; }
  .main-nav.open { display: flex; }
  .nav-list { flex-direction: column; width: 100%; gap: 4px; align-items: stretch; }
  .nav-link { justify-content: space-between; }
  .dropdown-menu { position: static; opacity: 1; visibility: hidden; max-height: 0; overflow: hidden; transform: none; box-shadow: none; border: none; padding: 0; transition: max-height 0.3s ease, visibility 0.3s; }
  .nav-item.open .dropdown-menu { visibility: visible; max-height: 300px; padding: 8px; }
}

/* HERO */
.hero { background: linear-gradient(rgba(20,83,45,0.75), rgba(20,83,45,0.75)), url('https://revizieac.ro/wp-content/uploads/2026/04/revizie-aer-conditionat-in-bucuresti-ilfov.jpeg') center/cover no-repeat; min-height: 85vh; display: flex; align-items: center; position: relative; overflow: hidden; padding: 140px 0; }
.hero-grid { display: grid; grid-template-columns: 1fr; gap: 48px; align-items: center; position: relative; }
@media (min-width: 768px) { .hero-grid { grid-template-columns: 1fr 1fr; } }
.hero-badge { display: inline-flex; align-items: center; gap: 8px; background: rgba(255,255,255,0.15); border: 1px solid rgba(255,255,255,0.25); color: white; font-size: 0.82rem; font-weight: 600; padding: 6px 14px; border-radius: 50px; margin-bottom: 20px; }
.hero-badge span { color: var(--accent); }
.hero-title { color: white; margin-bottom: 20px; line-height: 1.15; }
.hero-title em { font-style: normal; color: var(--accent); }
.hero-subtitle { color: rgba(255,255,255,0.85); font-size: 1.1rem; margin-bottom: 36px; }
.hero-cta { display: flex; flex-wrap: wrap; gap: 12px; margin-bottom: 48px; }
.hero-trust { display: flex; flex-wrap: wrap; gap: 20px; }
.trust-item { display: flex; align-items: center; gap: 8px; color: rgba(255,255,255,0.85); font-size: 0.88rem; font-weight: 500; }
.trust-item svg { color: var(--green); width: 16px; height: 16px; flex-shrink: 0; }
.hero-image-wrap { position: relative; display: flex; justify-content: center; }
.hero-img-placeholder { width: 100%; max-width: 520px; aspect-ratio: 4/3; background: linear-gradient(135deg, rgba(255,255,255,0.15) 0%, rgba(255,255,255,0.05) 100%); border-radius: var(--radius-lg); border: 2px dashed rgba(255,255,255,0.25); display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 12px; color: rgba(255,255,255,0.7); font-size: 0.9rem; text-align: center; padding: 20px; }
.hero-img-placeholder svg { width: 56px; height: 56px; opacity: 0.5; }
.hero-stats { position: absolute; bottom: -20px; left: 0; right: 0; display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; }
.stat-badge { background: var(--white); border-radius: 12px; padding: 12px 20px; display: flex; align-items: center; gap: 10px; box-shadow: var(--shadow-lg); font-size: 0.85rem; font-weight: 600; color: var(--dark); }
.stat-badge strong { font-size: 1.4rem; color: var(--primary); display: block; line-height: 1; }

/* SERVICES */
.services-section { background: var(--light); }
.services-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 28px; }
.service-card { background: var(--white); border-radius: var(--radius-lg); padding: 36px 28px; box-shadow: var(--shadow); transition: var(--transition); position: relative; overflow: hidden; border: 1px solid var(--border); }
.service-card::after { content: ''; position: absolute; bottom: 0; left: 0; right: 0; height: 4px; background: linear-gradient(90deg, var(--primary), var(--accent)); transform: scaleX(0); transition: var(--transition); }
.service-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-lg); }
.service-card:hover::after { transform: scaleX(1); }
.service-icon { width: 64px; height: 64px; background: var(--light); border-radius: 16px; display: flex; align-items: center; justify-content: center; margin-bottom: 24px; transition: var(--transition); }
.service-icon svg { width: 32px; height: 32px; color: var(--primary); }
.service-card:hover .service-icon { background: var(--primary); }
.service-card:hover .service-icon svg { color: white; }
.service-img-placeholder { width: 100%; aspect-ratio: 16/9; background: var(--light); border-radius: 10px; display: flex; align-items: center; justify-content: center; margin-bottom: 20px; color: var(--gray); font-size: 0.8rem; flex-direction: column; gap: 8px; border: 2px dashed var(--border); }
.service-card h3 { margin-bottom: 12px; }
.service-card p { color: var(--gray); font-size: 0.95rem; margin-bottom: 20px; }
.service-features { display: flex; flex-direction: column; gap: 8px; margin-bottom: 24px; }
.service-feature { display: flex; align-items: center; gap: 8px; font-size: 0.88rem; }
.service-feature svg { color: var(--green); width: 16px; height: 16px; flex-shrink: 0; }
.service-link { display: inline-flex; align-items: center; gap: 6px; color: var(--primary); font-weight: 600; font-size: 0.92rem; }
.service-link svg { width: 16px; height: 16px; transition: var(--transition); }
.service-link:hover svg { transform: translateX(4px); }
.service-link:hover { color: var(--accent); }

/* ADVANTAGES */
.advantages-section { background: var(--white); }
.advantages-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; }
@media (min-width: 768px) { .advantages-grid { grid-template-columns: repeat(4, 1fr); } }
.advantage-card { text-align: center; padding: 32px 20px; border-radius: var(--radius-lg); border: 1px solid var(--border); transition: var(--transition); }
.advantage-card:hover { border-color: var(--primary); box-shadow: var(--shadow); transform: translateY(-4px); }
.advantage-icon { width: 72px; height: 72px; background: linear-gradient(135deg, var(--primary), var(--primary-light)); border-radius: 50%; display: flex; align-items: center; justify-content: center; margin: 0 auto 20px; }
.advantage-icon svg { width: 32px; height: 32px; color: white; }
.advantage-card h4 { margin-bottom: 8px; }
.advantage-card p { color: var(--gray); font-size: 0.88rem; margin: 0; }

/* PRICING */
.pricing-section { background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary) 100%); position: relative; overflow: hidden; }
.pricing-section .section-tag { color: rgba(255,255,255,0.7); }
.pricing-section .section-tag::before { background: rgba(255,255,255,0.5); }
.pricing-section .section-title { color: white; }
.pricing-section .section-subtitle { color: rgba(255,255,255,0.75); }
.pricing-grid { display: grid; grid-template-columns: 1fr; gap: 28px; max-width: 900px; margin: 0 auto; }
@media (min-width: 640px) { .pricing-grid { grid-template-columns: 1fr 1fr; } }
.pricing-card { background: rgba(255,255,255,0.08); border: 1px solid rgba(255,255,255,0.15); border-radius: var(--radius-lg); overflow: hidden; transition: var(--transition); }
.pricing-card:hover { transform: translateY(-8px); border-color: rgba(255,255,255,0.35); }
.pricing-card.featured { background: var(--white); border-color: var(--accent); box-shadow: 0 0 0 3px var(--accent), var(--shadow-lg); transform: scale(1.03); }
.pricing-card.featured:hover { transform: scale(1.03) translateY(-8px); }
.pricing-header { padding: 28px 28px 20px; border-bottom: 1px solid rgba(255,255,255,0.12); }
.pricing-card.featured .pricing-header { border-bottom-color: var(--border); }
.pricing-badge { display: inline-block; background: var(--accent); color: white; font-size: 0.75rem; font-weight: 700; padding: 4px 12px; border-radius: 50px; margin-bottom: 12px; text-transform: uppercase; }
.pricing-name { font-size: 1.3rem; font-weight: 700; color: white; margin-bottom: 8px; }
.pricing-card.featured .pricing-name { color: var(--dark); }
.pricing-price { display: flex; align-items: baseline; gap: 4px; color: white; }
.pricing-card.featured .pricing-price { color: var(--primary); }
.pricing-amount { font-size: 3rem; font-weight: 800; line-height: 1; }
.pricing-currency { font-size: 1.2rem; font-weight: 600; opacity: 0.8; }
.pricing-body { padding: 24px 28px; }
.pricing-features { display: flex; flex-direction: column; gap: 12px; margin-bottom: 28px; }
.pricing-feature { display: flex; align-items: flex-start; gap: 10px; font-size: 0.9rem; color: rgba(255,255,255,0.85); }
.pricing-card.featured .pricing-feature { color: var(--text); }
.pricing-feature.included svg { color: var(--green); flex-shrink: 0; margin-top: 2px; }
.pricing-feature.excluded svg { color: rgba(255,255,255,0.3); flex-shrink: 0; margin-top: 2px; }
.pricing-card.featured .pricing-feature.excluded svg { color: var(--border); }
.pricing-feature svg { width: 16px; height: 16px; }
.pricing-detail { display: flex; justify-content: space-between; align-items: center; padding: 8px 0; border-bottom: 1px solid rgba(255,255,255,0.08); font-size: 0.88rem; color: rgba(255,255,255,0.75); }
.pricing-card.featured .pricing-detail { border-bottom-color: var(--border); color: var(--gray); }
.pricing-detail:last-child { border-bottom: none; }
.pricing-detail strong { color: white; font-weight: 600; }
.pricing-card.featured .pricing-detail strong { color: var(--dark); }

/* TESTIMONIALS */
.testimonials-section { background: var(--light); }
.testimonials-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 24px; }
.testimonial-card { background: var(--white); border-radius: var(--radius-lg); padding: 28px; box-shadow: var(--shadow); border: 1px solid var(--border); transition: var(--transition); }
.testimonial-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.stars { display: flex; gap: 3px; margin-bottom: 16px; }
.stars svg { width: 18px; height: 18px; color: #f59e0b; }
.testimonial-text { color: var(--text); font-size: 0.95rem; line-height: 1.7; margin-bottom: 20px; font-style: italic; }
.testimonial-author { display: flex; align-items: center; gap: 12px; }
.author-avatar { width: 44px; height: 44px; background: var(--primary); border-radius: 50%; display: flex; align-items: center; justify-content: center; color: white; font-weight: 700; font-size: 1rem; flex-shrink: 0; }
.author-info { line-height: 1.3; }
.author-name { font-weight: 700; font-size: 0.92rem; }
.author-location { font-size: 0.8rem; color: var(--gray); }

/* TRUST */
.trust-section { background: var(--white); padding: 48px 0; border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }
.trust-badges { display: flex; flex-wrap: wrap; justify-content: center; gap: 20px; align-items: center; }
.trust-badge-item { display: flex; align-items: center; gap: 12px; padding: 16px 24px; border-radius: var(--radius); border: 1px solid var(--border); background: var(--light); }
.trust-badge-item svg { width: 32px; height: 32px; color: var(--primary); }
.trust-badge-item span { font-size: 0.9rem; font-weight: 600; color: var(--dark); }

/* CTA */
.cta-section { background: linear-gradient(135deg, var(--accent) 0%, #dc6a10 100%); padding: 80px 0; text-align: center; }
.cta-section h2 { color: white; margin-bottom: 12px; }
.cta-section p { color: rgba(255,255,255,0.9); font-size: 1.1rem; margin-bottom: 36px; }
.cta-buttons { display: flex; flex-wrap: wrap; gap: 16px; justify-content: center; }
.btn-cta-white { background: white; color: var(--accent); padding: 16px 32px; border-radius: 8px; font-weight: 700; font-size: 1rem; display: inline-flex; align-items: center; gap: 8px; transition: var(--transition); }
.btn-cta-white:hover { transform: translateY(-2px); box-shadow: 0 8px 24px rgba(0,0,0,0.15); }
.btn-cta-outline { border: 2px solid rgba(255,255,255,0.7); color: white; padding: 16px 32px; border-radius: 8px; font-weight: 700; font-size: 1rem; display: inline-flex; align-items: center; gap: 8px; transition: var(--transition); }
.btn-cta-outline:hover { background: rgba(255,255,255,0.15); border-color: white; }

/* BLOG */
.blog-section { background: var(--light); }
.blog-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 28px; }
.blog-card { background: var(--white); border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow); border: 1px solid var(--border); transition: var(--transition); }
.blog-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.blog-img { width: 100%; aspect-ratio: 16/9; background: var(--light); display: flex; align-items: center; justify-content: center; color: var(--gray); font-size: 0.8rem; flex-direction: column; gap: 6px; border-bottom: 2px dashed var(--border); }
.blog-img svg { width: 32px; height: 32px; opacity: 0.4; }
.blog-body { padding: 24px; }
.blog-cat { display: inline-block; background: var(--light); color: var(--primary); font-size: 0.75rem; font-weight: 700; padding: 4px 10px; border-radius: 50px; margin-bottom: 12px; text-transform: uppercase; }
.blog-title { font-size: 1.05rem; font-weight: 700; margin-bottom: 10px; color: var(--dark); line-height: 1.4; }
.blog-title:hover { color: var(--primary); }
.blog-excerpt { font-size: 0.88rem; color: var(--gray); margin-bottom: 16px; }
.read-more { color: var(--primary); font-weight: 600; display: inline-flex; align-items: center; gap: 4px; font-size: 0.85rem; }
.read-more svg { width: 14px; height: 14px; transition: var(--transition); }
.read-more:hover svg { transform: translateX(4px); }

/* PAGE HERO */
.page-hero { background: linear-gradient(135deg, var(--primary-dark), var(--primary)); padding: 80px 0; color: white; position: relative; overflow: hidden; }
.page-hero-inner { display: grid; grid-template-columns: 1fr; gap: 40px; align-items: center; }
@media (min-width: 768px) { .page-hero-inner { grid-template-columns: 1fr 1fr; } }
.page-hero h1 { color: white; margin-bottom: 12px; }
.page-breadcrumb { font-size: 0.88rem; opacity: 0.75; margin-top: 8px; }
.page-breadcrumb a { color: rgba(255,255,255,0.8); }
.page-breadcrumb a:hover { color: white; }
.page-breadcrumb span { margin: 0 8px; opacity: 0.5; }
.page-hero-img-placeholder { width: 100%; max-width: 400px; aspect-ratio: 4/3; background: rgba(255,255,255,0.1); border-radius: var(--radius-lg); border: 2px dashed rgba(255,255,255,0.2); display: flex; align-items: center; justify-content: center; flex-direction: column; gap: 8px; color: rgba(255,255,255,0.5); font-size: 0.85rem; }

/* CONTACT */
.contact-section { background: var(--white); }
.contact-grid { display: grid; grid-template-columns: 1fr; gap: 48px; }
@media (min-width: 768px) { .contact-grid { grid-template-columns: 1.2fr 1fr; } }
.form-group { margin-bottom: 20px; }
.form-label { display: block; font-size: 0.88rem; font-weight: 600; color: var(--dark); margin-bottom: 6px; }
.form-label .required { color: var(--accent); }
.form-control { width: 100%; padding: 12px 16px; border: 2px solid var(--border); border-radius: 8px; font-size: 0.95rem; color: var(--text); background: var(--white); transition: var(--transition); outline: none; }
.form-control:focus { border-color: var(--primary); box-shadow: 0 0 0 3px rgba(10,61,143,0.1); }
.form-control::placeholder { color: #9ca3af; }
textarea.form-control { resize: vertical; min-height: 130px; }
.form-row { display: grid; grid-template-columns: 1fr; gap: 16px; }
@media (min-width: 480px) { .form-row { grid-template-columns: 1fr 1fr; } }
.hp-field { display: none !important; }
.form-submit { width: 100%; justify-content: center; font-size: 1rem; padding: 16px; border-radius: 8px; margin-top: 8px; }
.form-notice { font-size: 0.8rem; color: var(--gray); margin-top: 10px; display: flex; align-items: center; gap: 6px; }
.form-notice svg { width: 14px; height: 14px; color: var(--green); }
.form-success { display: none; background: #f0fdf4; border: 1px solid #86efac; border-radius: var(--radius); padding: 20px; text-align: center; color: #15803d; font-weight: 600; }
.form-success.show { display: block; }
.form-error { display: none; background: #fef2f2; border: 1px solid #fca5a5; border-radius: var(--radius); padding: 20px; text-align: center; color: #dc2626; }
.form-error.show { display: block; }
.contact-items { display: flex; flex-direction: column; gap: 16px; margin-bottom: 32px; }
.contact-item { display: flex; gap: 14px; align-items: flex-start; padding: 16px; background: var(--light); border-radius: var(--radius); transition: var(--transition); }
.contact-item:hover { background: #dbeafe; }
.contact-item-icon { width: 44px; height: 44px; background: var(--primary); border-radius: 10px; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.contact-item-icon svg { width: 20px; height: 20px; color: white; }
.contact-item-label { font-size: 0.78rem; font-weight: 600; color: var(--gray); text-transform: uppercase; letter-spacing: 0.5px; margin-bottom: 2px; }
.contact-item-value { font-size: 0.95rem; font-weight: 600; color: var(--dark); }
.contact-item-value a { color: var(--primary); }
.contact-item-value a:hover { color: var(--accent); }
.map-wrapper { border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow); border: 2px solid var(--border); }
.map-wrapper iframe { display: block; width: 100%; height: 400px; border: none; }

/* SERVICE PAGE */
.service-page-section { background: var(--white); }
.service-page-grid { display: grid; grid-template-columns: 1fr; gap: 48px; }
@media (min-width: 992px) { .service-page-grid { grid-template-columns: 1fr 340px; } }
.service-img-main { width: 100%; aspect-ratio: 16/9; background: var(--light); border-radius: var(--radius-lg); display: flex; align-items: center; justify-content: center; flex-direction: column; gap: 8px; color: var(--gray); font-size: 0.9rem; border: 2px dashed var(--border); margin-bottom: 32px; }
.service-list { display: flex; flex-direction: column; gap: 10px; margin-bottom: 28px; }
.service-list-item { display: flex; gap: 10px; align-items: flex-start; padding: 12px 16px; background: var(--light); border-radius: 8px; font-size: 0.92rem; }
.service-list-item svg { color: var(--primary); flex-shrink: 0; margin-top: 2px; width: 16px; height: 16px; }
.service-sidebar { display: flex; flex-direction: column; gap: 20px; }
.sidebar-widget { border-radius: var(--radius-lg); overflow: hidden; border: 1px solid var(--border); }
.sidebar-cta { background: linear-gradient(135deg, var(--primary-dark), var(--primary)); padding: 28px; text-align: center; color: white; }
.sidebar-cta h4 { color: white; margin-bottom: 8px; }
.sidebar-cta p { color: rgba(255,255,255,0.8); font-size: 0.88rem; margin-bottom: 20px; }
.sidebar-cta .btn-primary { width: 100%; justify-content: center; }
.phone-link { display: flex; align-items: center; justify-content: center; gap: 8px; color: white; font-size: 1.1rem; font-weight: 700; margin-top: 12px; }
.sidebar-nav-title { background: var(--primary); color: white; padding: 14px 20px; font-size: 0.9rem; font-weight: 700; text-transform: uppercase; }
.sidebar-nav-list { background: var(--white); }
.sidebar-nav-link { display: flex; align-items: center; justify-content: space-between; padding: 12px 20px; border-bottom: 1px solid var(--border); font-size: 0.9rem; font-weight: 500; color: var(--text); }
.sidebar-nav-link:last-child { border-bottom: none; }
.sidebar-nav-link:hover { background: var(--light); color: var(--primary); padding-left: 24px; }
.sidebar-nav-link.active { background: var(--primary); color: white; }

/* FAQ */
.faq-section { background: var(--light); }
.faq-list { display: flex; flex-direction: column; gap: 12px; max-width: 860px; margin: 0 auto; }
.faq-item { background: var(--white); border: 1px solid var(--border); border-radius: var(--radius); overflow: hidden; }
.faq-question { display: flex; justify-content: space-between; align-items: center; padding: 18px 22px; font-size: 0.95rem; font-weight: 600; cursor: pointer; transition: var(--transition); color: var(--dark); }
.faq-question:hover { color: var(--primary); }
.faq-toggle svg { width: 20px; height: 20px; transition: var(--transition); color: var(--primary); }
.faq-item.open .faq-toggle svg { transform: rotate(45deg); }
.faq-answer { max-height: 0; overflow: hidden; transition: max-height 0.4s ease; }
.faq-item.open .faq-answer { max-height: 300px; }
.faq-answer-inner { padding: 0 22px 18px; font-size: 0.9rem; color: var(--gray); line-height: 1.7; }

/* FOOTER */
.site-footer { background: var(--dark); color: rgba(255,255,255,0.75); }
.footer-main { padding: 72px 0 48px; }
.footer-grid { display: grid; grid-template-columns: 1fr; gap: 40px; }
@media (min-width: 640px) { .footer-grid { grid-template-columns: 1fr 1fr; } }
@media (min-width: 992px) { .footer-grid { grid-template-columns: 1.5fr 1fr 1fr 1fr; } }
.footer-brand .logo-text strong { color: white; }
.footer-brand .logo-text span { color: rgba(255,255,255,0.5); }
.footer-desc { font-size: 0.9rem; margin: 16px 0 24px; opacity: 0.75; }
.footer-contact-item { display: flex; align-items: center; gap: 10px; font-size: 0.88rem; margin-bottom: 10px; }
.footer-contact-item svg { width: 16px; height: 16px; color: var(--accent); flex-shrink: 0; }
.footer-contact-item a { color: rgba(255,255,255,0.75); }
.footer-contact-item a:hover { color: white; }
.footer-col h5 { font-size: 0.9rem; font-weight: 700; color: white; letter-spacing: 1px; text-transform: uppercase; margin-bottom: 20px; padding-bottom: 10px; border-bottom: 2px solid var(--accent); display: inline-block; }
.footer-links { display: flex; flex-direction: column; gap: 8px; }
.footer-link { font-size: 0.88rem; display: flex; align-items: center; gap: 8px; transition: var(--transition); }
.footer-link:hover { color: white; padding-left: 4px; }
.footer-link svg { width: 12px; height: 12px; color: var(--accent); }
.footer-bottom { border-top: 1px solid rgba(255,255,255,0.08); padding: 20px 0; display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 12px; font-size: 0.82rem; opacity: 0.65; }

/* FLOATING */
.float-buttons { position: fixed; bottom: 24px; right: 20px; display: flex; flex-direction: column; gap: 12px; z-index: 9999; }
.float-btn { width: 56px; height: 56px; border-radius: 50%; display: flex; align-items: center; justify-content: center; box-shadow: 0 4px 20px rgba(0,0,0,0.25); transition: var(--transition); position: relative; }
.float-btn:hover { transform: scale(1.12); }
.float-btn svg { width: 26px; height: 26px; }
.float-whatsapp { background: #25D366; color: white; }
.float-phone { background: var(--primary); color: white; }
.float-btn-label { position: absolute; right: calc(100% + 10px); background: rgba(0,0,0,0.8); color: white; font-size: 0.78rem; font-weight: 600; padding: 4px 10px; border-radius: 20px; white-space: nowrap; opacity: 0; transition: var(--transition); pointer-events: none; }
.float-btn:hover .float-btn-label { opacity: 1; }
.mobile-call-bar { display: none; position: fixed; bottom: 0; left: 0; right: 0; background: var(--primary); padding: 12px 16px; z-index: 9998; box-shadow: 0 -4px 20px rgba(0,0,0,0.2); gap: 12px; }
@media (max-width: 767px) { .mobile-call-bar { display: flex; } body { padding-bottom: 80px; } }
.mobile-call-bar a { flex: 1; display: flex; align-items: center; justify-content: center; gap: 8px; padding: 12px; border-radius: 8px; font-weight: 700; font-size: 0.92rem; color: white; }
.mobile-call-bar .call-btn { background: var(--accent); }
.mobile-call-bar .whatsapp-btn { background: #25D366; }

@keyframes fadeInUp { from { opacity: 0; transform: translateY(30px); } to { opacity: 1; transform: translateY(0); } }
@keyframes pulse-ring { 0% { transform: scale(0.8); opacity: 0.8; } 100% { transform: scale(1.5); opacity: 0; } }
.float-phone::before { content: ''; position: absolute; inset: 0; border-radius: 50%; background: var(--primary); animation: pulse-ring 1.8s cubic-bezier(0.215, 0.61, 0.355, 1) infinite; z-index: -1; }
.text-center { text-align: center; }
.sr-only { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border: 0; }

/* ── SERVICE PAGE LAYOUT ── */
.service-layout { display: grid; grid-template-columns: 1fr 320px; gap: 40px; padding: 60px 20px; align-items: start; }
@media (max-width: 900px) { .service-layout { grid-template-columns: 1fr; } }
.service-hero { background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%); color: white; padding: 60px 0; }
.service-hero h1 { color: white; font-size: 2.2rem; margin-bottom: 16px; }
.service-hero .hero-subtitle { opacity: 0.9; font-size: 1.1rem; margin-bottom: 28px; max-width: 600px; }
.content-section { margin-bottom: 48px; }
.content-section h2 { font-size: 1.6rem; margin-bottom: 20px; color: var(--primary); }
.content-section p { color: var(--text-secondary); line-height: 1.8; margin-bottom: 16px; }
.service-checklist { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; margin-top: 24px; }
@media (max-width: 600px) { .service-checklist { grid-template-columns: 1fr; } }
.checklist-col { background: var(--bg-light); border-radius: 12px; padding: 24px; }
.checklist-col h3 { font-size: 1rem; margin-bottom: 12px; color: var(--primary); }
.checklist-col ul { list-style: none; padding: 0; margin: 0; }
.checklist-col ul li { padding: 6px 0; font-size: 0.92rem; border-bottom: 1px solid rgba(0,0,0,0.05); color: var(--text-secondary); }
.checklist-col ul li:last-child { border-bottom: none; }
.benefits-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 20px; }
@media (max-width: 600px) { .benefits-grid { grid-template-columns: 1fr; } }
.benefit-item { background: var(--bg-light); border-radius: 12px; padding: 24px; }
.benefit-icon { font-size: 2rem; display: block; margin-bottom: 10px; }
.benefit-item h3 { font-size: 1rem; margin-bottom: 8px; color: var(--primary); }
.benefit-item p { font-size: 0.9rem; color: var(--text-secondary); margin: 0; line-height: 1.6; }

/* ── INLINE PRICING CARDS ── */
.inline-pricing-cards { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 24px; margin: 24px 0; }
.inline-price-card { background: white; border: 2px solid var(--border); border-radius: 16px; padding: 28px; position: relative; }
.inline-price-card.featured { border-color: var(--primary); box-shadow: 0 8px 32px rgba(10,61,143,0.12); }
.price-badge { position: absolute; top: -12px; left: 50%; transform: translateX(-50%); background: var(--accent); color: white; font-size: 0.75rem; font-weight: 700; padding: 4px 14px; border-radius: 20px; white-space: nowrap; }
.price-label { font-size: 1rem; font-weight: 700; color: var(--primary); margin-bottom: 8px; }
.price-amount { font-size: 2rem; font-weight: 800; color: var(--primary-dark); margin-bottom: 4px; }
.price-desc { font-size: 0.85rem; color: var(--text-muted); margin-bottom: 16px; }
.inline-price-card ul { list-style: none; padding: 0; margin: 0 0 20px; }
.inline-price-card ul li { padding: 5px 0; font-size: 0.88rem; color: var(--text-secondary); border-bottom: 1px solid var(--border); }
.inline-price-card ul li:last-child { border-bottom: none; }
.pricing-note { font-size: 0.85rem; color: var(--text-muted); font-style: italic; margin-top: 12px; }

/* ── SIDEBAR ── */
.service-sidebar { position: sticky; top: 100px; }
.sidebar-widget { background: white; border: 1px solid var(--border); border-radius: 16px; padding: 24px; margin-bottom: 24px; box-shadow: 0 2px 12px rgba(0,0,0,0.05); }
.sidebar-widget h3 { font-size: 1rem; font-weight: 700; margin-bottom: 16px; color: var(--primary); padding-bottom: 12px; border-bottom: 2px solid var(--border); }
.sidebar-widget.cta-widget { background: var(--bg-light); }
.sidebar-widget.cta-widget p { font-size: 0.88rem; color: var(--text-secondary); margin-bottom: 16px; }
.sidebar-services-list { list-style: none; padding: 0; margin: 0; }
.sidebar-services-list li { border-bottom: 1px solid var(--border); }
.sidebar-services-list li:last-child { border-bottom: none; }
.sidebar-services-list li a { display: block; padding: 10px 0; font-size: 0.9rem; color: var(--text-secondary); transition: var(--transition); }
.sidebar-services-list li a:hover { color: var(--primary); }
.sidebar-services-list li.active a { color: var(--primary); font-weight: 700; }
.trust-list { list-style: none; padding: 0; margin: 0; }
.trust-list li { padding: 7px 0; font-size: 0.88rem; color: var(--text-secondary); border-bottom: 1px solid var(--border); }
.trust-list li:last-child { border-bottom: none; }
.btn-whatsapp { background: #25D366 !important; color: white !important; border-color: #25D366 !important; }
.btn-whatsapp:hover { background: #1da851 !important; }
.btn-block { display: block; text-align: center; margin-bottom: 10px; }
.btn-white { background: white; color: var(--primary); border-color: white; }
.btn-white:hover { background: var(--bg-light); }

/* ── FAQ ── */
.faq-list { margin-top: 16px; }
.faq-item { border: 1px solid var(--border); border-radius: 10px; margin-bottom: 10px; overflow: hidden; }
.faq-question { padding: 18px 20px; font-weight: 600; cursor: pointer; display: flex; justify-content: space-between; align-items: center; background: white; transition: var(--transition); font-size: 0.95rem; }
.faq-question:hover { background: var(--bg-light); color: var(--primary); }
.faq-item.active .faq-question { background: var(--primary); color: white; }
.faq-item.active .faq-question::after { content: '−'; }
.faq-question::after { content: '+'; font-size: 1.2rem; font-weight: 400; margin-left: 12px; flex-shrink: 0; }
.faq-answer { max-height: 0; overflow: hidden; transition: max-height 0.3s ease; background: var(--bg-light); }
.faq-answer p { padding: 16px 20px; margin: 0; color: var(--text-secondary); font-size: 0.9rem; line-height: 1.7; }

/* ── PRICE TABLE ── */
.price-table { overflow-x: auto; }
.price-table table { width: 100%; border-collapse: collapse; background: white; border-radius: 12px; overflow: hidden; box-shadow: 0 2px 12px rgba(0,0,0,0.06); }
.price-table th { background: var(--primary); color: white; padding: 14px 20px; text-align: left; font-size: 0.9rem; }
.price-table td { padding: 14px 20px; border-bottom: 1px solid var(--border); font-size: 0.9rem; color: var(--text-secondary); }
.price-table tr:last-child td { border-bottom: none; }
.price-table tr:nth-child(even) td { background: var(--bg-light); }

/* ── BLOG LAYOUT ── */
.blog-layout { display: grid; grid-template-columns: 1fr 300px; gap: 40px; align-items: start; }
@media (max-width: 900px) { .blog-layout { grid-template-columns: 1fr; } }
.single-post .post-header { margin-bottom: 32px; }
.single-post .post-title { font-size: 2rem; line-height: 1.3; margin: 16px 0; }
.post-meta { display: flex; flex-wrap: wrap; gap: 16px; font-size: 0.85rem; color: var(--text-muted); margin-top: 12px; }
.post-cat-badge { background: var(--primary); color: white; font-size: 0.75rem; font-weight: 600; padding: 4px 10px; border-radius: 20px; }
.post-featured-image { margin-bottom: 32px; border-radius: 12px; overflow: hidden; }
.post-featured-image img { width: 100%; height: auto; display: block; }
.post-body { font-size: 1rem; line-height: 1.8; color: var(--text-secondary); }
.post-body h2, .post-body h3 { color: var(--primary); margin: 28px 0 12px; }
.post-body p { margin-bottom: 16px; }
.post-body ul, .post-body ol { padding-left: 24px; margin-bottom: 16px; }
.post-body li { margin-bottom: 6px; }
.post-tags { margin-top: 32px; padding-top: 20px; border-top: 1px solid var(--border); display: flex; flex-wrap: wrap; gap: 8px; align-items: center; font-size: 0.88rem; }
.post-tag { background: var(--bg-light); color: var(--text-secondary); padding: 4px 12px; border-radius: 20px; font-size: 0.82rem; transition: var(--transition); }
.post-tag:hover { background: var(--primary); color: white; }
.post-navigation { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin-top: 40px; padding-top: 32px; border-top: 1px solid var(--border); }
.post-nav-link { background: var(--bg-light); border-radius: 10px; padding: 16px; display: flex; flex-direction: column; gap: 6px; transition: var(--transition); border: 1px solid var(--border); }
.post-nav-link:hover { border-color: var(--primary); background: white; }
.post-nav-link.next { text-align: right; }
.nav-label { font-size: 0.78rem; color: var(--text-muted); font-weight: 600; text-transform: uppercase; letter-spacing: 0.05em; }
.nav-title { font-size: 0.88rem; font-weight: 600; color: var(--primary); }
.recent-posts-list { list-style: none; padding: 0; margin: 0; }
.recent-posts-list li { padding: 10px 0; border-bottom: 1px solid var(--border); }
.recent-posts-list li:last-child { border-bottom: none; }
.recent-posts-list li a { font-size: 0.88rem; color: var(--text-secondary); display: block; margin-bottom: 3px; transition: var(--transition); }
.recent-posts-list li a:hover { color: var(--primary); }
.recent-posts-list .post-date { font-size: 0.75rem; color: var(--text-muted); }

/* ── PAGE HERO ── */
.page-hero { background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%); color: white; padding: 50px 0; }
.page-hero h1 { color: white; font-size: 2rem; margin-bottom: 12px; }
.page-hero .hero-subtitle { opacity: 0.9; font-size: 1rem; max-width: 620px; }
.breadcrumb { display: flex; gap: 8px; align-items: center; font-size: 0.82rem; margin-bottom: 16px; opacity: 0.8; }
.breadcrumb a { color: white; }
.breadcrumb a:hover { text-decoration: underline; }


.service-card[style],
.advantage-card[style],
.pricing-card[style],
.testimonial-card[style],
.blog-card[style] {
    opacity: 1 !important;
    transform: none !important;
    visibility: visible !important;
}