/*
Theme Name: Revizie Aer Conditionat București
Theme URI: https://revizie-aer-bucuresti.ro/
Author: Custom Theme
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: revizie-aer
Tags: services, local-business, seo-optimized, mobile-first
*/

/* ============================================================
   CSS VARIABLES
   ============================================================ */
:root {
  --primary: #0057B8;
  --primary-dark: #003d82;
  --primary-light: #e8f0fc;
  --accent: #00C853;
  --accent-orange: #FF6B35;
  --text: #1a1a2e;
  --text-muted: #5a6a8a;
  --white: #ffffff;
  --gray-light: #f4f7ff;
  --gray-border: #e2e8f0;
  --shadow-sm: 0 2px 8px rgba(0,87,184,0.08);
  --shadow-md: 0 8px 32px rgba(0,87,184,0.12);
  --shadow-lg: 0 20px 60px rgba(0,87,184,0.18);
  --radius: 12px;
  --radius-lg: 20px;
  --transition: all 0.3s cubic-bezier(0.4,0,0.2,1);
  --font-heading: 'Montserrat', sans-serif;
  --font-body: 'Open Sans', sans-serif;
}

/* ============================================================
   RESET & BASE
   ============================================================ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; font-size: 16px; }

body {
  font-family: var(--font-body);
  color: var(--text);
  background: var(--white);
  line-height: 1.7;
  overflow-x: hidden;
}

img { max-width: 100%; height: auto; display: block; }
a { color: var(--primary); text-decoration: none; transition: var(--transition); }
a:hover { color: var(--primary-dark); }

h1, h2, h3, h4, h5 {
  font-family: var(--font-heading);
  font-weight: 700;
  line-height: 1.25;
  color: var(--text);
}

.container {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 20px;
}

section { padding: 80px 0; }

.section-title {
  font-size: clamp(1.8rem, 4vw, 2.6rem);
  margin-bottom: 16px;
  text-align: center;
}
.section-subtitle {
  font-size: 1.1rem;
  color: var(--text-muted);
  text-align: center;
  max-width: 600px;
  margin: 0 auto 50px;
}
.section-badge {
  display: table;
  margin: 0 auto 14px auto;
}

/* ============================================================
   BUTTONS
   ============================================================ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: 8px;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.95rem;
  cursor: pointer;
  border: none;
  transition: var(--transition);
  text-decoration: none;
  white-space: nowrap;
}
.btn-primary {
  background: var(--primary);
  color: var(--white);
  box-shadow: 0 4px 16px rgba(0,87,184,0.3);
}
.btn-primary:hover {
  background: var(--primary-dark);
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(0,87,184,0.4);
}
.btn-accent {
  background: var(--accent);
  color: var(--white);
  box-shadow: 0 4px 16px rgba(0,200,83,0.3);
}
.btn-accent:hover {
  background: #00a844;
  color: var(--white);
  transform: translateY(-2px);
}
.btn-outline {
  background: transparent;
  color: var(--primary);
  border: 2px solid var(--primary);
}
.btn-outline:hover {
  background: var(--primary);
  color: var(--white);
}
.btn-white {
  background: var(--white);
  color: var(--primary);
  box-shadow: 0 4px 16px rgba(0,0,0,0.12);
}
.btn-white:hover {
  background: var(--gray-light);
  color: var(--primary-dark);
  transform: translateY(-2px);
}
.btn-lg { padding: 18px 36px; font-size: 1.05rem; border-radius: 10px; }
.btn-phone::before { content: "📞"; }

/* ============================================================
   HEADER
   ============================================================ */
#site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: var(--white);
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
}
#site-header.scrolled {
  box-shadow: var(--shadow-md);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
  gap: 20px;
}
.site-logo {
  display: flex;
  flex-direction: column;
  line-height: 1.2;
}
.site-logo .logo-text {
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 1.15rem;
  color: var(--primary);
}
.site-logo .logo-sub {
  font-size: 0.72rem;
  color: var(--text-muted);
  font-weight: 500;
  letter-spacing: 0.5px;
}
.main-nav {
  display: flex;
  align-items: center;
  gap: 4px;
  position: relative;
}
.main-nav a {
  padding: 8px 14px;
  border-radius: 6px;
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--text);
  transition: var(--transition);
}
.main-nav a:hover, .main-nav a.active {
  background: var(--primary-light);
  color: var(--primary);
}
.header-cta { display: flex; align-items: center; gap: 12px; }
.header-phone {
  display: flex;
  align-items: center;
  gap: 8px;
  font-weight: 700;
  color: var(--primary);
  font-size: 1rem;
}
.header-phone .phone-icon {
  width: 36px; height: 36px;
  background: var(--primary);
  color: var(--white);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 0.85rem;
}
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 8px;
  background: none;
  border: none;
}
.hamburger span {
  display: block;
  width: 24px; height: 2px;
  background: var(--text);
  border-radius: 2px;
  transition: var(--transition);
}

/* ============================================================
   HERO SECTION
   ============================================================ */
.hero-section {
  background: linear-gradient(135deg, #0057B8 0%, #003d82 50%, #001f5c 100%);
  padding: 90px 0 80px;
  position: relative;
  overflow: hidden;
}
.hero-section::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -10%;
  width: 600px; height: 600px;
  background: rgba(255,255,255,0.04);
  border-radius: 50%;
}
.hero-section::after {
  content: '';
  position: absolute;
  bottom: -30%;
  left: -5%;
  width: 400px; height: 400px;
  background: rgba(0,200,83,0.06);
  border-radius: 50%;
}
.hero-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  position: relative;
  z-index: 1;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255,255,255,0.12);
  border: 1px solid rgba(255,255,255,0.2);
  color: #a8d4ff;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 7px 16px;
  border-radius: 50px;
  margin-bottom: 20px;
}
.hero-title {
  font-size: clamp(2rem, 5vw, 3.2rem);
  color: #ffffff;
  margin-bottom: 20px;
  line-height: 1.15;
  text-shadow: 2px 2px 0px rgba(0,0,0,0.9), 0 4px 20px rgba(0,0,0,0.9);
  -webkit-text-stroke: 0.5px rgba(255,255,255,0.3);
}

.hero-desc {
  font-size: 1.1rem;
  color: #ffffff;
  margin-bottom: 36px;
  line-height: 1.7;
  text-shadow: 1px 1px 0px rgba(0,0,0,0.9), 0 2px 10px rgba(0,0,0,0.9);
  font-weight: 600;
}

.trust-item {
  color: #ffffff !important;
  font-weight: 700 !important;
  text-shadow: 1px 1px 4px rgba(0,0,0,0.9);
}

.hero-badge {
  background: rgba(0,0,0,0.4) !important;
  border-color: rgba(255,255,255,0.5) !important;
  text-shadow: 1px 1px 3px rgba(0,0,0,0.8);
  font-weight: 700;
}

.hero-title span { color: #5ce0ff; }
.hero-desc {
  font-size: 1.1rem;
  color: rgba(255,255,255,0.82);
  margin-bottom: 36px;
  line-height: 1.7;
}
.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; margin-bottom: 40px; }
.hero-trust {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}
.trust-item {
  display: flex;
  align-items: center;
  gap: 8px;
  color: rgba(255,255,255,0.75);
  font-size: 0.88rem;
}
.trust-item .icon { font-size: 1.1rem; }
.hero-image-wrap {
  position: relative;
}
.hero-image-wrap img,
.hero-image-placeholder {
  width: 100%;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
}
.hero-image-placeholder {
  background: rgba(255,255,255,0.1);
  border: 2px dashed rgba(255,255,255,0.25);
  height: 380px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.5);
  font-size: 0.9rem;
  gap: 12px;
}
.hero-image-placeholder .ph-icon { font-size: 3rem; }
.hero-stat-card {
  position: absolute;
  background: var(--white);
  border-radius: var(--radius);
  padding: 16px 20px;
  box-shadow: var(--shadow-lg);
  display: flex;
  align-items: center;
  gap: 12px;
}
.hero-stat-card.top-left { top: -20px; left: -20px; }
.hero-stat-card.bottom-right { bottom: -20px; right: -20px; }
.stat-num {
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 1.6rem;
  color: var(--primary);
  line-height: 1;
}
.stat-label { font-size: 0.78rem; color: var(--text-muted); font-weight: 600; }

/* ============================================================
   SERVICES SECTION
   ============================================================ */
.services-section { 
  background: var(--white); 
  text-align: center;
}
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.service-card {
  background: var(--white);
  border: 1px solid var(--gray-border);
  border-radius: var(--radius-lg);
  padding: 36px 28px;
  text-align: center;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}
.service-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--primary), var(--accent));
  transform: scaleX(0);
  transition: var(--transition);
}
.service-card:hover::before { transform: scaleX(1); }
.service-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: transparent;
}
.service-icon {
  width: 80px; height: 80px;
  background: var(--primary-light);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  margin: 0 auto 24px;
  transition: var(--transition);
}
.service-card:hover .service-icon {
  background: var(--primary);
  transform: scale(1.1);
}
.service-title {
  font-size: 1.25rem;
  margin-bottom: 12px;
  color: var(--text);
}
.service-desc {
  color: var(--text-muted);
  font-size: 0.92rem;
  line-height: 1.65;
  margin-bottom: 24px;
}
.service-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--primary);
  font-weight: 700;
  font-size: 0.88rem;
}
.service-link:hover { gap: 10px; }
.service-image-wrap img,
.service-image-placeholder {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: var(--radius);
  margin-bottom: 24px;
}
.service-image-placeholder {
  background: var(--gray-light);
  border: 2px dashed var(--gray-border);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: var(--text-muted);
  font-size: 0.85rem;
  gap: 8px;
}
.service-image-placeholder .ph-icon { font-size: 2.5rem; }

/* ============================================================
   ADVANTAGES SECTION
   ============================================================ */
.advantages-section { background: var(--gray-light); }
.advantages-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.advantage-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 32px 24px;
  text-align: center;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
}
.advantage-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}
.adv-icon {
  width: 64px; height: 64px;
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  border-radius: 16px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.8rem;
  margin: 0 auto 20px;
  box-shadow: 0 8px 20px rgba(0,87,184,0.25);
}
.adv-title { font-size: 1.05rem; margin-bottom: 8px; }
.adv-desc { font-size: 0.88rem; color: var(--text-muted); line-height: 1.6; }

/* ============================================================
   PRICING SECTION
   ============================================================ */
.pricing-section { background: var(--white); }
.pricing-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  max-width: 900px;
  margin: 0 auto;
}
.pricing-card {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  transition: var(--transition);
  position: relative;
}
.pricing-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.pricing-card.featured {
  border: 3px solid var(--primary);
}
.pricing-badge {
  position: absolute;
  top: 20px; right: 20px;
  background: var(--accent-orange);
  color: var(--white);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 5px 12px;
  border-radius: 50px;
}
.pricing-header {
  padding: 36px 32px 28px;
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
  color: var(--white);
  text-align: center;
}

.hero-section ul,
.hero-section li {
  list-style: none !important;
  padding-left: 0 !important;
  margin-left: 0 !important;
}
.pricing-card.standard .pricing-header {
  background: linear-gradient(135deg, #4a7fc1 0%, #2a5fa5 100%);
}
.pricing-name {
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  opacity: 0.85;
  margin-bottom: 12px;
}
.pricing-price {
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 3rem;
  line-height: 1;
  margin-bottom: 6px;
}
.pricing-price sup { font-size: 1.2rem; vertical-align: super; }
.pricing-price span { font-size: 1.1rem; font-weight: 400; opacity: 0.75; }
.pricing-desc { font-size: 0.88rem; opacity: 0.8; }
.pricing-body { padding: 28px 32px 32px; background: var(--white); }
.pricing-features { list-style: none; margin-bottom: 28px; }
.pricing-features li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 10px 0;
  border-bottom: 1px solid var(--gray-border);
  font-size: 0.9rem;
  line-height: 1.4;
}
.pricing-features li:last-child { border-bottom: none; }
.feat-label { flex: 1; color: var(--text-muted); }
.feat-value {
  font-weight: 600;
  color: var(--text);
  text-align: right;
  flex-shrink: 0;
}
.feat-check { color: var(--accent); font-weight: 700; flex-shrink: 0; }
.feat-partial { color: var(--text-muted); font-style: italic; font-size: 0.82rem; }
.pricing-body .btn { width: 100%; justify-content: center; }

/* ============================================================
   TESTIMONIALS
   ============================================================ */
.testimonials-section { background: var(--gray-light); }
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.testimonial-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 28px;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  position: relative;
}
.testimonial-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.testimonial-card::before {
  content: '"';
  position: absolute;
  top: 16px; right: 24px;
  font-size: 5rem;
  color: var(--primary-light);
  font-family: Georgia, serif;
  line-height: 1;
}
.stars { color: #f59e0b; font-size: 1.1rem; margin-bottom: 12px; }
.testimonial-text {
  font-size: 0.93rem;
  color: var(--text-muted);
  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;
  border-radius: 50%;
  background: var(--primary);
  color: var(--white);
  display: flex; align-items: center; justify-content: center;
  font-weight: 700;
  font-size: 1rem;
  flex-shrink: 0;
}
.author-name { font-weight: 700; font-size: 0.9rem; }
.author-location { font-size: 0.78rem; color: var(--text-muted); }

/* ============================================================
   CTA BANNER
   ============================================================ */
.cta-banner {
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
  padding: 80px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-banner::before {
  content: '';
  position: absolute;
  top: -50%; left: -10%;
  width: 500px; height: 500px;
  background: rgba(255,255,255,0.04);
  border-radius: 50%;
}
.cta-banner-content { position: relative; z-index: 1; }
.cta-banner h2 {
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  color: var(--white);
  margin-bottom: 16px;
}
.cta-banner p {
  color: rgba(255,255,255,0.8);
  font-size: 1.1rem;
  margin-bottom: 36px;
}
.cta-banner-actions { display: flex; flex-wrap: wrap; justify-content: center; gap: 16px; }

/* ============================================================
   BLOG SECTION
   ============================================================ */
.blog-section { background: var(--white); }
.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.blog-card {
  background: var(--white);
  border: 1px solid var(--gray-border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: var(--transition);
}
.blog-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.blog-image, .blog-image-placeholder {
  width: 100%; height: 200px;
  object-fit: cover;
}
.blog-image-placeholder {
  background: var(--primary-light);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: var(--primary);
  font-size: 0.85rem;
  gap: 8px;
}
.blog-image-placeholder .ph-icon { font-size: 2.5rem; }
.blog-body { padding: 24px; }
.blog-category {
  display: inline-block;
  background: var(--primary-light);
  color: var(--primary);
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  padding: 4px 12px;
  border-radius: 50px;
  margin-bottom: 12px;
}
.blog-title {
  font-size: 1.05rem;
  margin-bottom: 10px;
  color: var(--text);
  line-height: 1.35;
}
.blog-card:hover .blog-title { color: var(--primary); }
.blog-excerpt {
  font-size: 0.88rem;
  color: var(--text-muted);
  line-height: 1.6;
  margin-bottom: 16px;
}
.blog-meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.78rem;
  color: var(--text-muted);
  border-top: 1px solid var(--gray-border);
  padding-top: 14px;
}
.read-more { color: var(--primary); font-weight: 600; }

/* ============================================================
   CONTACT SECTION
   ============================================================ */
.contact-section { background: var(--gray-light); }
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: start;
}
.contact-info h3 { font-size: 1.5rem; margin-bottom: 8px; }
.contact-info p { color: var(--text-muted); margin-bottom: 32px; }
.contact-items { display: flex; flex-direction: column; gap: 20px; margin-bottom: 32px; }
.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  background: var(--white);
  border-radius: var(--radius);
  padding: 18px 20px;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
}
.contact-item:hover { box-shadow: var(--shadow-md); transform: translateX(4px); }
.ci-icon {
  width: 44px; height: 44px;
  background: var(--primary-light);
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.2rem;
  flex-shrink: 0;
  color: var(--primary);
}
.ci-label { font-size: 0.78rem; color: var(--text-muted); margin-bottom: 3px; }
.ci-value { font-weight: 700; color: var(--text); font-size: 0.95rem; }
.ci-value a { color: var(--primary); }
.contact-map {
  width: 100%; height: 220px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: none;
  box-shadow: var(--shadow-sm);
}

/* Contact Form */
.contact-form-wrap {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 36px;
  box-shadow: var(--shadow-md);
}
.contact-form-wrap h3 { margin-bottom: 24px; font-size: 1.3rem; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-group { margin-bottom: 18px; }
.form-group label {
  display: block;
  font-size: 0.85rem;
  font-weight: 600;
  margin-bottom: 6px;
  color: var(--text);
}
.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 12px 16px;
  border: 2px solid var(--gray-border);
  border-radius: 8px;
  font-family: var(--font-body);
  font-size: 0.92rem;
  color: var(--text);
  background: var(--white);
  transition: var(--transition);
  outline: none;
}
.form-group input:focus,
.form-group textarea:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(0,87,184,0.1);
}
.form-group textarea { min-height: 120px; resize: vertical; }
.form-submit .btn { width: 100%; justify-content: center; font-size: 1rem; }
.form-notice {
  font-size: 0.78rem;
  color: var(--text-muted);
  text-align: center;
  margin-top: 12px;
}
.form-success, .form-error {
  padding: 14px 18px;
  border-radius: 8px;
  font-size: 0.9rem;
  font-weight: 600;
  margin-bottom: 16px;
  display: none;
}
.form-success { background: #d4edda; color: #155724; border: 1px solid #c3e6cb; }
.form-error { background: #f8d7da; color: #721c24; border: 1px solid #f5c6cb; }

/* ============================================================
   TRUST BADGES
   ============================================================ */
.trust-section {
  background: var(--white);
  border-top: 1px solid var(--gray-border);
  border-bottom: 1px solid var(--gray-border);
  padding: 40px 0;
}
.trust-badges {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 32px;
}
.trust-badge {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--text-muted);
}
.trust-badge .tb-icon {
  width: 40px; height: 40px;
  background: var(--primary-light);
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.2rem;
  color: var(--primary);
}

/* ============================================================
   FOOTER
   ============================================================ */
#site-footer {
  background: #0d1b2e;
  color: rgba(255,255,255,0.75);
  padding: 70px 0 0;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 48px;
  margin-bottom: 50px;
}
.footer-brand .logo-text { color: var(--white); font-size: 1.2rem; }
.footer-brand .logo-sub { color: rgba(255,255,255,0.5); }
.footer-desc {
  font-size: 0.88rem;
  line-height: 1.7;
  margin: 16px 0 24px;
  color: rgba(255,255,255,0.6);
}
.footer-social { display: flex; gap: 10px; }
.social-btn {
  width: 38px; height: 38px;
  background: rgba(255,255,255,0.08);
  border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1rem;
  color: rgba(255,255,255,0.6);
  transition: var(--transition);
}
.social-btn:hover { background: var(--primary); color: var(--white); }
.footer-title {
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  font-weight: 700;
  color: rgba(255,255,255,0.4);
  margin-bottom: 20px;
}
.footer-links { list-style: none; }
.footer-links li { margin-bottom: 10px; }
.footer-links a {
  color: rgba(255,255,255,0.65);
  font-size: 0.9rem;
  transition: var(--transition);
}
.footer-links a:hover { color: var(--white); padding-left: 4px; }
.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 14px;
  font-size: 0.88rem;
}
.footer-contact-item .fi-icon {
  width: 32px; height: 32px;
  background: rgba(0,87,184,0.3);
  border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
  font-size: 0.9rem;
  flex-shrink: 0;
  margin-top: 2px;
}
.footer-contact-item a { color: rgba(255,255,255,0.75); }
.footer-contact-item a:hover { color: var(--white); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding: 24px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 0.82rem;
  color: rgba(255,255,255,0.4);
}

/* ============================================================
   FLOATING BUTTONS
   ============================================================ */
.floating-buttons {
  position: fixed;
  bottom: 28px;
  right: 24px;
  z-index: 999;
  display: flex;
  flex-direction: column;
  gap: 12px;
  align-items: flex-end;
}
.fab-btn {
  width: 56px; height: 56px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  box-shadow: 0 6px 20px rgba(0,0,0,0.25);
  cursor: pointer;
  transition: var(--transition);
  text-decoration: none;
  border: none;
}
.fab-btn:hover { transform: scale(1.1) translateY(-2px); }
.fab-whatsapp { background: #25D366; color: white; }
.fab-call {
  background: var(--primary);
  color: white;
  width: 52px; height: 52px;
}
.fab-label {
  display: none;
  background: #333;
  color: white;
  font-size: 0.78rem;
  font-weight: 600;
  padding: 6px 12px;
  border-radius: 6px;
  white-space: nowrap;
  margin-right: 4px;
}
.fab-group:hover .fab-label { display: inline-block; }
.fab-group {
  display: flex;
  align-items: center;
  gap: 8px;
}

/* Mobile call bar */
.mobile-call-bar {
  display: none;
  position: fixed;
  bottom: 0; left: 0; right: 0;
  background: var(--primary);
  padding: 14px 20px;
  z-index: 998;
  align-items: center;
  justify-content: center;
  gap: 12px;
  box-shadow: 0 -4px 20px rgba(0,87,184,0.3);
}
.mobile-call-bar a {
  color: white;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1.1rem;
  display: flex; align-items: center; gap: 10px;
}

/* ============================================================
   SINGLE SERVICE PAGE
   ============================================================ */
.page-hero {
  background: linear-gradient(135deg, #0057B8 0%, #003d82 100%);
  padding: 60px 0;
  color: white;
  text-align: center;
}
.page-hero h1 { color: white; font-size: clamp(1.8rem, 4vw, 2.8rem); margin-bottom: 12px; }
.page-hero p { color: rgba(255,255,255,0.8); font-size: 1.05rem; }
.breadcrumb {
  display: flex;
  justify-content: center;
  gap: 8px;
  font-size: 0.85rem;
  margin-top: 16px;
  color: rgba(255,255,255,0.65);
}
.breadcrumb a { color: rgba(255,255,255,0.65); }
.breadcrumb a:hover { color: white; }
.breadcrumb span { color: rgba(255,255,255,0.4); }
.service-page-content { padding: 70px 0; }
.service-page-grid {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 50px;
}
.service-content h2 { font-size: 1.6rem; margin: 32px 0 14px; color: var(--primary); }
.service-content h3 { font-size: 1.2rem; margin: 24px 0 10px; }
.service-content p { margin-bottom: 16px; line-height: 1.75; color: var(--text-muted); }
.service-content ul { margin: 0 0 18px 20px; }
.service-content ul li { margin-bottom: 8px; line-height: 1.6; color: var(--text-muted); }
.sidebar-card {
  background: var(--white);
  border: 1px solid var(--gray-border);
  border-radius: var(--radius-lg);
  padding: 28px;
  margin-bottom: 24px;
  box-shadow: var(--shadow-sm);
}
.sidebar-card h4 { font-size: 1rem; margin-bottom: 16px; }
.sidebar-card .btn { width: 100%; justify-content: center; margin-bottom: 10px; }
.faq-section { padding: 60px 0; background: var(--gray-light); }
.faq-item {
  background: var(--white);
  border-radius: var(--radius);
  margin-bottom: 12px;
  overflow: hidden;
  border: 1px solid var(--gray-border);
}
.faq-question {
  width: 100%;
  padding: 20px 24px;
  background: none;
  border: none;
  text-align: left;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.95rem;
  color: var(--text);
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: var(--transition);
}
.faq-question:hover { color: var(--primary); }
.faq-question.active { color: var(--primary); }
.faq-toggle { font-size: 1.2rem; transition: var(--transition); }
.faq-question.active .faq-toggle { transform: rotate(45deg); }
.faq-answer {
  padding: 0 24px;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease, padding 0.3s ease;
  font-size: 0.92rem;
  color: var(--text-muted);
  line-height: 1.7;
}
.faq-answer.open { max-height: 400px; padding: 0 24px 20px; }

/* ============================================================
   BLOG PAGE
   ============================================================ */
.blog-page-grid {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 50px;
  padding: 60px 0;
}
.blog-posts-list .blog-card { margin-bottom: 28px; display: grid; grid-template-columns: 240px 1fr; }
.blog-posts-list .blog-image, .blog-posts-list .blog-image-placeholder { height: 100%; min-height: 180px; }
.widget {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 24px;
  margin-bottom: 24px;
  border: 1px solid var(--gray-border);
}
.widget h4 { font-size: 1rem; margin-bottom: 16px; padding-bottom: 12px; border-bottom: 2px solid var(--primary-light); }
.widget ul { list-style: none; }
.widget ul li { padding: 8px 0; border-bottom: 1px solid var(--gray-border); font-size: 0.9rem; }
.widget ul li:last-child { border-bottom: none; }
.widget ul li a { color: var(--text-muted); }
.widget ul li a:hover { color: var(--primary); }

/* ============================================================
   CONTACT PAGE
   ============================================================ */
.contact-page { padding: 70px 0; }

/* ============================================================
   ANIMATIONS
   ============================================================ */
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(24px); }
  to { opacity: 1; transform: translateY(0); }
}
@keyframes pulse {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.05); }
}
.animate-fadein { animation: fadeInUp 0.6s ease both; }
.delay-1 { animation-delay: 0.1s; }
.delay-2 { animation-delay: 0.2s; }
.delay-3 { animation-delay: 0.3s; }
.pulse { animation: pulse 2s infinite; }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1024px) {
  .advantages-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
  section { padding: 56px 0; }
  .main-nav { display: none; flex-direction: column; position: absolute; top: 72px; left: 0; right: 0; background: var(--white); padding: 20px; box-shadow: var(--shadow-md); gap: 4px; overflow: visible !important; }
  .main-nav.open { display: flex; }
  .main-nav > a { display: block; padding: 12px 16px; }
  .hamburger { display: flex; }
  .header-inner { position: relative; }
  .header-phone .phone-number { display: none; }
  .hero-content { grid-template-columns: 1fr; text-align: center; }
  .hero-actions { justify-content: center; }
  .hero-trust { justify-content: center; }
  .hero-image-wrap { display: none; }
  .services-grid { grid-template-columns: 1fr; }
  .advantages-grid { grid-template-columns: 1fr 1fr; }
  .pricing-grid { grid-template-columns: 1fr; }
  .testimonials-grid { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .blog-grid { grid-template-columns: 1fr; }
  .service-page-grid { grid-template-columns: 1fr; }
  .blog-page-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 30px; }
  .footer-bottom { flex-direction: column; gap: 8px; text-align: center; }
  .form-row { grid-template-columns: 1fr; }
  .mobile-call-bar { display: flex; }
  body { padding-bottom: 64px; }
  .blog-posts-list .blog-card { grid-template-columns: 1fr; }
}

@media (max-width: 480px) {
  .advantages-grid { grid-template-columns: 1fr; }
  .hero-actions .btn { width: 100%; justify-content: center; }
  .trust-badges { flex-direction: column; align-items: flex-start; }
}


/* ============================================================
   DROPDOWN MENU
   ============================================================ */
.nav-dropdown {
  position: relative;
  display: inline-flex;
  align-items: center;
}

.nav-dropdown-toggle {
  padding: 8px 14px;
  border-radius: 6px;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--text);
  background: none;
  border: none;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 4px;
  white-space: nowrap;
  line-height: 1;
}
.nav-dropdown-toggle:hover,
.nav-dropdown.show .nav-dropdown-toggle {
  background: var(--primary-light);
  color: var(--primary);
}
.nav-dropdown-toggle .arrow {
  font-size: 0.7rem;
  display: inline-block;
  transition: transform 0.25s ease;
}
.nav-dropdown.show .arrow {
  transform: rotate(180deg);
}

.nav-dropdown-menu {
  position: absolute !important;
  top: calc(100% + 8px) !important;
  left: 0 !important;
  min-width: 220px !important;
  background: #ffffff !important;
  border-radius: 12px !important;
  box-shadow: 0 8px 32px rgba(0,0,0,0.18) !important;
  border: 1px solid #e2e8f0 !important;
  padding: 8px !important;
  z-index: 99999 !important;
  display: flex !important;
  flex-direction: column !important;
  gap: 2px !important;
  /* Ascuns prin clip - elementul NU ocupa spatiu in flow */
  clip-path: inset(0 0 100% 0) !important;
  pointer-events: none !important;
  transition: clip-path 0.2s ease !important;
}
.nav-dropdown.show .nav-dropdown-menu {
  clip-path: inset(0 0 -20px 0) !important;
  pointer-events: auto !important;
}

.nav-dropdown-menu a {
  display: block !important;
  padding: 10px 14px !important;
  border-radius: 6px !important;
  font-size: 0.9rem !important;
  font-weight: 600 !important;
  color: #1a1a2e !important;
  white-space: nowrap !important;
  text-decoration: none !important;
  background: none !important;
  line-height: 1.4 !important;
  width: 100% !important;
  box-sizing: border-box !important;
}
.nav-dropdown-menu a:hover {
  background: #e8f0fc !important;
  color: #0057B8 !important;
}

/* MOBIL */
@media (max-width: 768px) {
  .nav-dropdown {
    width: 100%;
    flex-direction: column;
    align-items: flex-start;
  }
  .nav-dropdown-toggle {
    width: 100%;
    justify-content: space-between;
    padding: 12px 16px;
  }
  .nav-dropdown-menu {
    position: static !important;
    clip-path: inset(0 0 100% 0) !important;
    max-height: 0 !important;
    overflow: hidden !important;
    box-shadow: none !important;
    border: none !important;
    border-left: 3px solid #e8f0fc !important;
    border-radius: 0 !important;
    background: transparent !important;
    padding: 0 0 0 8px !important;
    margin-left: 16px !important;
    width: 100% !important;
    transition: clip-path 0.3s ease, max-height 0.3s ease !important;
  }
  .nav-dropdown.show .nav-dropdown-menu {
    clip-path: inset(0 0 -20px 0) !important;
    max-height: 200px !important;
  }
}