/* ============================================================
   Casa Georgiana si Gabriel - Cazare Poiana Marului
   Foaie de stil principala
   ============================================================ */

:root {
  --green: #4a7c2c;
  --green-dark: #365e1e;
  --green-light: #7bab4e;
  --orange: #e08a3c;
  --orange-dark: #c46f26;
  --blue: #6fb8d9;
  --blue-dark: #4a9bc0;
  --gold: #c8934c;
  --gold-dark: #a97b3c;
  --dark: #1a1a1a;
  --dark-2: #2c2c2c;
  --gray-bg: #f5f6f4;
  --gray-bg-2: #f9faf8;
  --gray-text: #707070;
  --gray-text-2: #555555;
  --border: #e2e4df;
  --white: #ffffff;
  --shadow: 0 2px 20px rgba(0,0,0,0.08);
  --shadow-hover: 0 10px 30px rgba(0,0,0,0.14);
  --transition: all 0.3s ease;
  --radius: 6px;
  --font: 'Poppins', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font);
  font-size: 15px;
  color: var(--dark);
  background: var(--white);
  margin: 0;
  padding: 0;
  line-height: 1.7;
  overflow-x: hidden;
}
a { color: var(--green); text-decoration: none; transition: var(--transition); }
a:hover { color: var(--green-dark); }
img { display: block; max-width: 100%; height: auto; }
h1, h2, h3, h4, h5, h6 { font-weight: 700; line-height: 1.3; margin: 0 0 1rem; }
p { margin: 0 0 1rem; }
ul { list-style: none; padding: 0; margin: 0; }
button { cursor: pointer; border: none; outline: none; font-family: var(--font); }

/* ============================================================
   TOP BAR
   ============================================================ */
.top-bar { background: #1a1a1a; color: #ccc; font-size: 12.5px; padding: 7px 0; border-bottom: 1px solid #333; }
.top-bar-inner {
  display: flex; justify-content: flex-end; align-items: center; gap: 24px;
  max-width: 1240px; margin: 0 auto; padding: 0 20px;
}
.top-bar a { color: #ccc; font-size: 12.5px; }
.top-bar a:hover { color: #fff; }
.top-bar-item { display: flex; align-items: center; gap: 6px; }
.top-bar-item i { color: var(--green-light); font-size: 12px; }
@media (max-width: 480px) {
  .top-bar-inner { flex-wrap: wrap; justify-content: center; gap: 6px 16px; padding: 0 12px; }
  .top-bar-item:nth-child(3) { flex-basis: 100%; justify-content: center; }
}

/* ============================================================
   HEADER / NAVBAR
   ============================================================ */
#main-header { background: var(--white); position: sticky; top: 0; z-index: 1010; box-shadow: 0 2px 12px rgba(0,0,0,0.10); }
.navbar-inner {
  display: flex; align-items: center; justify-content: space-between;
  max-width: 1240px; margin: 0 auto; padding: 0 20px; height: 76px;
}
.site-logo { display: flex; align-items: center; gap: 10px; text-decoration: none; flex-shrink: 0; }
.site-logo img { height: 58px; width: auto; max-width: 230px; object-fit: contain; display: block; }
@media (max-width: 480px) { .site-logo img { height: 64px; max-width: 220px; } }

.main-nav { display: flex; align-items: center; gap: 6px; }
.main-nav a {
  font-size: 14px; font-weight: 600; color: #333; padding: 8px 14px;
  border-radius: var(--radius); transition: var(--transition); white-space: nowrap; text-decoration: none;
}
.main-nav a:hover, .main-nav a.active { color: var(--orange); }
.main-nav a.active { border-bottom: 2px solid var(--orange); }

.header-cta { display: flex; align-items: center; gap: 14px; }
.header-cta .btn { flex-shrink: 0; }

.hamburger { display: none; flex-direction: column; gap: 5px; cursor: pointer; padding: 5px; background: none; }
.hamburger span { display: block; width: 24px; height: 2px; background: var(--dark); border-radius: 2px; transition: var(--transition); }
.hamburger.open span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

.mobile-nav { display: none; background: #fff; border-top: 1px solid var(--border); padding: 10px 20px 16px; flex-direction: column; }
.mobile-nav a { font-size: 15px; font-weight: 600; color: #333; padding: 10px 0; border-bottom: 1px solid #f0f0f0; text-decoration: none; }
.mobile-nav a:hover, .mobile-nav a.active { color: var(--orange); }
.mobile-nav.open { display: flex; }
.mobile-nav .btn { margin-top: 12px; }

/* ============================================================
   BUTTONS
   ============================================================ */
.btn {
  display: inline-flex; align-items: center; gap: 8px; padding: 12px 26px; font-size: 13px;
  font-weight: 700; letter-spacing: 0.4px; border-radius: 24px; transition: var(--transition);
  text-decoration: none; white-space: nowrap; border: 2px solid transparent;
}
.btn-blue { background: var(--blue); color: #fff; border-color: var(--blue); }
.btn-blue:hover { background: var(--blue-dark); border-color: var(--blue-dark); color: #fff; transform: translateY(-1px); box-shadow: 0 4px 14px rgba(111,184,217,0.45); }
.btn-green { background: var(--green); color: #fff; border-color: var(--green); }
.btn-green:hover { background: var(--green-dark); border-color: var(--green-dark); color: #fff; transform: translateY(-1px); box-shadow: 0 4px 14px rgba(74,124,44,0.4); }
.btn-outline { background: transparent; color: #fff; border-color: rgba(255,255,255,0.8); }
.btn-outline:hover { background: #fff; color: var(--dark); }
.btn-gray { background: #f0f0f0; color: #444; border-color: #e0e0e0; font-weight: 600; }
.btn-gray:hover { background: #e5e5e5; color: #333; }
.btn-gold { background: var(--gold); color: #fff; border-color: var(--gold); }
.btn-gold:hover { background: var(--gold-dark); border-color: var(--gold-dark); color: #fff; transform: translateY(-1px); }
.btn-white { background: #fff; color: var(--gold-dark); border-color: #fff; }
.btn-white:hover { background: #f7f1e8; transform: translateY(-1px); }
.btn-sm { padding: 9px 18px; font-size: 12px; }
.btn-block { width: 100%; justify-content: center; }

/* ============================================================
   HERO CAROUSEL
   ============================================================ */
.hero-carousel { position: relative; overflow: hidden; height: 640px; background: #1a1a1a; }
.hero-carousel .slide {
  position: absolute; inset: 0; opacity: 0; transition: opacity 1s ease;
  background-size: cover; background-position: center; pointer-events: none;
}
.hero-carousel .slide.active { opacity: 1; pointer-events: auto; }
.hero-carousel .slide-overlay { position: absolute; inset: 0; background: linear-gradient(180deg, rgba(0,0,0,0.15) 0%, rgba(0,0,0,0.45) 100%); }
.carousel-arrow {
  position: absolute; top: 50%; transform: translateY(-50%); z-index: 5;
  width: 46px; height: 46px; border-radius: 50%; background: rgba(255,255,255,0.85);
  color: var(--dark); display: flex; align-items: center; justify-content: center;
  font-size: 18px; transition: var(--transition); border: none;
}
.carousel-arrow:hover { background: #fff; transform: translateY(-50%) scale(1.08); }
.carousel-arrow.prev { left: 24px; }
.carousel-arrow.next { right: 24px; }
.carousel-dots { position: absolute; bottom: 22px; left: 0; right: 0; display: flex; justify-content: center; gap: 9px; z-index: 5; }
.carousel-dots button { width: 10px; height: 10px; border-radius: 50%; background: rgba(255,255,255,0.5); border: none; padding: 0; transition: var(--transition); }
.carousel-dots button.active { background: #fff; transform: scale(1.25); }

.hero-inner-carousel { height: 583px; }
@media (max-width: 900px) { .hero-carousel { height: 460px; } .hero-inner-carousel { height: 220px; } }
@media (max-width: 480px) { .hero-carousel { height: 360px; } .carousel-arrow { width: 36px; height: 36px; font-size: 14px; } .carousel-arrow.prev { left: 10px; } .carousel-arrow.next { right: 10px; } }

/* ============================================================
   PAGE HEADER (secțiuni interioare, bandă gri cu titlu)
   ============================================================ */
.page-header { background: var(--gray-bg); padding: 46px 20px; text-align: center; }
.page-header .eyebrow { display: block; color: var(--orange); font-weight: 700; letter-spacing: 3px; font-size: 13px; margin-bottom: 10px; text-transform: uppercase; }
.page-header h1 { font-size: 2.1rem; font-weight: 800; color: var(--dark); margin-bottom: 10px; }
.page-header p { max-width: 760px; margin: 0 auto; color: var(--gray-text-2); font-size: 14.5px; font-weight: 500; }

/* Carduri de pret (Camere si Preturi) */
.pricing-cards { display: grid; grid-template-columns: repeat(3, 1fr); max-width: 1020px; margin: 40px auto 0; border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow-hover); text-align: left; }
.pricing-card { background: #fff; padding: 44px 32px; text-align: center; }
.pricing-card.featured { background: var(--gold); color: #fff; position: relative; z-index: 2; }
.pricing-card h3 { font-size: 15px; font-weight: 700; color: var(--dark); margin-bottom: 20px; }
.pricing-card.featured h3 { color: #fff; }
.pricing-card .price { font-size: 2.1rem; font-weight: 800; color: var(--dark); margin-bottom: 22px; }
.pricing-card.featured .price { color: #fff; }
.pricing-card ul { margin-bottom: 26px; }
.pricing-card li { font-size: 13px; color: var(--gray-text-2); margin-bottom: 9px; }
.pricing-card.featured li { color: rgba(255,255,255,0.92); }
.pricing-card .btn { width: 100%; justify-content: center; }
@media (max-width: 760px) { .pricing-cards { grid-template-columns: 1fr; } .pricing-card { padding: 34px 24px; } }

/* ============================================================
   SECTIONS
   ============================================================ */
.section { padding: 72px 0; }
.section-gray { background: var(--gray-bg); }
.container { max-width: 1240px; margin: 0 auto; padding: 0 20px; }
.section-eyebrow { display: block; text-align: center; color: var(--orange); font-weight: 700; letter-spacing: 3px; font-size: 13px; margin-bottom: 10px; text-transform: uppercase; }
.section-title { font-size: 2rem; font-weight: 800; color: var(--dark); text-align: center; margin-bottom: 14px; }
.section-sub { text-align: center; color: var(--gray-text); font-size: 14.5px; max-width: 640px; margin: 0 auto 46px; }
.section-title-left { text-align: left; margin-bottom: 8px; }

/* ============================================================
   FEATURE ICON GRID (Home - Casa Georgiana si Gabriel)
   ============================================================ */
.feature-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 34px 24px; }
.feature-item-icon { text-align: center; }
.feature-item-icon img, .feature-item-icon i { height: 54px; margin: 0 auto 14px; object-fit: contain; }
.feature-item-icon i { display: flex; align-items: center; justify-content: center; font-size: 2.4rem; color: var(--green); }
.feature-item-icon h4 { font-size: 15px; font-weight: 700; color: var(--dark); margin-bottom: 4px; }
.feature-item-icon p { font-size: 12.5px; color: var(--gray-text); margin: 0; }
@media (max-width: 900px) { .feature-grid { grid-template-columns: repeat(2, 1fr); } }

/* ============================================================
   DESPRE / TWO COLUMN CONTENT
   ============================================================ */
.two-col { display: flex; align-items: center; gap: 56px; }
.two-col.reverse { flex-direction: row-reverse; }
.two-col-img { flex: 0 0 46%; }
.two-col-img img { width: 100%; border-radius: var(--radius); box-shadow: var(--shadow); object-fit: cover; }
.two-col-text { flex: 1; }
.two-col-text h2 { font-size: 1.9rem; font-weight: 800; color: var(--dark); margin-bottom: 6px; }
.two-col-text h4 { font-size: 14px; color: var(--gray-text); font-weight: 600; margin-bottom: 16px; }
.two-col-text p { color: var(--gray-text-2); font-size: 14px; line-height: 1.85; }
@media (max-width: 900px) { .two-col, .two-col.reverse { flex-direction: column; } .two-col-img { flex: none; width: 100%; } }

/* ============================================================
   VIDEO SECTION
   ============================================================ */
.video-wrap { max-width: 980px; margin: 0 auto; border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow-hover); background: #000; }
.video-wrap video { width: 100%; display: block; max-height: 560px; }

/* ============================================================
   CAMERE / ROOMS
   ============================================================ */
.room-block { margin-bottom: 62px; }
.room-block:last-child { margin-bottom: 0; }
.room-block h3 { font-size: 1.35rem; font-weight: 700; color: var(--dark); text-align: center; margin-bottom: 22px; }
.room-gallery { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 18px; }
.room-gallery img { width: 100%; height: 260px; object-fit: cover; border-radius: var(--radius); box-shadow: var(--shadow); cursor: pointer; transition: var(--transition); }
.room-gallery img:hover { box-shadow: var(--shadow-hover); transform: translateY(-3px); }

/* Pricing table */
.price-table { max-width: 760px; margin: 0 auto 20px; border-collapse: collapse; width: 100%; background: #fff; box-shadow: var(--shadow); border-radius: var(--radius); overflow: hidden; }
.price-table th, .price-table td { padding: 16px 22px; text-align: left; font-size: 14.5px; }
.price-table thead th { background: var(--green); color: #fff; font-weight: 700; text-transform: uppercase; letter-spacing: 0.5px; font-size: 12.5px; }
.price-table tbody tr:nth-child(even) { background: var(--gray-bg-2); }
.price-table td:last-child, .price-table th:last-child { text-align: right; font-weight: 700; color: var(--green-dark); }

.policy-list { max-width: 760px; margin: 30px auto 0; }
.policy-list li { position: relative; padding-left: 26px; margin-bottom: 10px; font-size: 14px; color: var(--gray-text-2); }
.policy-list li::before { content: '✓'; position: absolute; left: 0; color: var(--green); font-weight: 700; }

/* ============================================================
   OFERTE / OFFERS
   ============================================================ */
.offer-box { display: flex; align-items: center; gap: 50px; background: #fff; border: 1px solid var(--border); border-radius: var(--radius); box-shadow: var(--shadow); padding: 40px; margin-bottom: 30px; }
.offer-box img { flex: 0 0 320px; border-radius: var(--radius); object-fit: cover; height: 320px; }
.offer-box-content h3 { font-size: 1.6rem; font-weight: 800; color: var(--dark); }
.offer-box-content .tagline { color: var(--gray-text-2); margin-bottom: 4px; }
.offer-box-content .highlight { color: var(--orange-dark); font-weight: 700; font-size: 1.05rem; }
@media (max-width: 760px) { .offer-box { flex-direction: column; padding: 24px; } .offer-box img { flex: none; width: 100%; height: 220px; } }

/* ============================================================
   GALERIE / LIGHTBOX GRID
   ============================================================ */
.gallery-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
.gallery-grid a { display: block; overflow: hidden; border-radius: var(--radius); box-shadow: var(--shadow); aspect-ratio: 1 / 1; }
.gallery-grid img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.4s ease; }
.gallery-grid a:hover img { transform: scale(1.08); }
@media (max-width: 900px) { .gallery-grid { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 620px) { .gallery-grid { grid-template-columns: repeat(2, 1fr); gap: 10px; } }

.lightbox { position: fixed; inset: 0; background: rgba(0,0,0,0.92); z-index: 3000; display: none; align-items: center; justify-content: center; padding: 30px; }
.lightbox.open { display: flex; }
.lightbox img { max-width: 92vw; max-height: 86vh; border-radius: 4px; box-shadow: 0 10px 60px rgba(0,0,0,0.6); }
.lightbox-close, .lightbox-prev, .lightbox-next { position: absolute; background: rgba(255,255,255,0.12); color: #fff; border: none; border-radius: 50%; display: flex; align-items: center; justify-content: center; cursor: pointer; transition: var(--transition); }
.lightbox-close { top: 22px; right: 26px; width: 44px; height: 44px; font-size: 20px; }
.lightbox-prev, .lightbox-next { top: 50%; transform: translateY(-50%); width: 52px; height: 52px; font-size: 20px; }
.lightbox-prev { left: 18px; }
.lightbox-next { right: 18px; }
.lightbox-close:hover, .lightbox-prev:hover, .lightbox-next:hover { background: rgba(255,255,255,0.28); }
.lightbox-counter { position: absolute; bottom: 22px; left: 0; right: 0; text-align: center; color: rgba(255,255,255,0.7); font-size: 13px; }

/* ============================================================
   REZERVARI / CONTACT
   ============================================================ */
.contact-bottom { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: start; }
.contact-info-wrap { display: flex; flex-direction: column; gap: 18px; }
.contact-info-item { display: flex; align-items: flex-start; gap: 16px; padding-bottom: 16px; border-bottom: 1px solid #f0f0f0; }
.contact-info-item:last-child { border-bottom: none; }
.contact-info-icon { width: 44px; height: 44px; border-radius: 50%; background: var(--gray-bg); display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.contact-info-icon i { font-size: 1.05rem; color: var(--green); }
.contact-info-text h4 { font-size: 14px; font-weight: 700; color: var(--dark); margin-bottom: 4px; }
.contact-info-text p, .contact-info-text a { font-size: 13.5px; color: #666; line-height: 1.6; text-decoration: none; }
.contact-info-text a:hover { color: var(--green); }
.contact-info-text .phone-big { font-size: 1.15rem; font-weight: 700; color: var(--green-dark); display: block; }

.policy-box { background: var(--gray-bg); border-radius: var(--radius); padding: 22px 24px; }
.policy-box h4 { font-size: 14px; margin-bottom: 12px; }
.policy-box li { position: relative; padding-left: 20px; margin-bottom: 8px; font-size: 13px; color: var(--gray-text-2); }
.policy-box li::before { content: '•'; position: absolute; left: 0; color: var(--green); font-weight: 700; }

.form-field { margin-bottom: 14px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.form-field-hp { position: absolute; left: -9999px; top: -9999px; height: 0; overflow: hidden; }
.form-field label { display: block; font-size: 13px; font-weight: 600; color: var(--dark); margin-bottom: 6px; }
.form-field input, .form-field textarea {
  width: 100%; padding: 11px 14px; border: 1px solid #ddd; border-radius: var(--radius);
  font-size: 14px; font-family: var(--font); outline: none; transition: var(--transition); color: #333; background: #fff;
}
.form-field input:focus, .form-field textarea:focus { border-color: var(--green); box-shadow: 0 0 0 3px rgba(74,124,44,0.10); }
.form-field input::placeholder, .form-field textarea::placeholder { color: #aaa; }
.form-field textarea { resize: vertical; min-height: 120px; }
.form-captcha { margin: 16px 0; }
.form-error { display: none; background: #f8d7da; color: #842029; padding: 12px 16px; border-radius: var(--radius); margin-bottom: 12px; font-size: 13px; }
.form-success { display: none; background: #d4edda; color: #155724; padding: 14px 18px; border-radius: var(--radius); margin-top: 14px; font-size: 14px; }

.booking-trust { padding: 22px 24px; background: var(--gray-bg); border-radius: var(--radius); display: flex; flex-direction: column; gap: 16px; }
.booking-trust-item { display: flex; align-items: flex-start; gap: 14px; }
.booking-trust-item i { width: 38px; height: 38px; border-radius: 50%; background: #fff; display: flex; align-items: center; justify-content: center; font-size: 15px; color: var(--green); flex-shrink: 0; box-shadow: 0 2px 8px rgba(0,0,0,0.06); }
.booking-trust-item h4 { font-size: 13.5px; font-weight: 700; color: var(--dark); margin: 0 0 2px; }
.booking-trust-item p { font-size: 12.5px; color: var(--gray-text-2); margin: 0; line-height: 1.5; }

.map-wrap { border: 1px solid #ddd; border-radius: var(--radius); overflow: hidden; margin: 44px 0; height: 380px; }
.map-wrap iframe { width: 100%; height: 100%; border: none; display: block; }

.waze-cta {
  max-width: 700px; margin: 0 auto; background: #eaf9ff; border: 1.5px solid #bdeeff; border-radius: var(--radius);
  padding: 26px 30px; display: flex; align-items: center; justify-content: center; gap: 20px; flex-wrap: wrap; text-align: center;
}
.waze-cta > i { font-size: 2.4rem; color: #05c8f7; flex-shrink: 0; }
.waze-cta-text { flex: 1 1 220px; min-width: 200px; }
.waze-cta-text h4 { font-size: 15px; font-weight: 700; color: var(--dark); margin: 0 0 4px; }
.waze-cta-text p { font-size: 13px; color: var(--gray-text-2); margin: 0; }
.btn-waze { background: #05c8f7; color: #fff; border-color: #05c8f7; }
.btn-waze:hover { background: #03a9d1; border-color: #03a9d1; color: #fff; transform: translateY(-1px); box-shadow: 0 4px 14px rgba(5,200,247,0.4); }
@media (max-width: 480px) { .waze-cta { padding: 22px 20px; } }

@media (max-width: 900px) { .contact-bottom { grid-template-columns: 1fr; } .form-row { grid-template-columns: 1fr; } }

/* ============================================================
   TICHETE / FOOTER-TOP INFO STRIP
   ============================================================ */
.info-strip { background: var(--gray-bg-2); padding: 56px 0; }
.info-strip-inner { display: grid; grid-template-columns: 1.4fr 1fr; gap: 24px; align-items: stretch; }
.info-card {
  background: #fff; border: 1px solid var(--border); border-radius: var(--radius);
  box-shadow: var(--shadow); padding: 32px 34px; display: flex; gap: 18px; align-items: flex-start;
}
.info-card i { font-size: 1.6rem; color: var(--green); flex-shrink: 0; margin-top: 3px; }
.info-card h4 { font-size: 15px; font-weight: 700; color: var(--dark); margin-bottom: 8px; line-height: 1.4; }
.info-card p { font-size: 13px; color: var(--gray-text); margin: 0; line-height: 1.7; }

.voucher-card { background: #fff; border: 1px solid var(--border); border-radius: var(--radius); box-shadow: var(--shadow); padding: 28px 30px; text-align: center; display: flex; flex-direction: column; align-items: center; justify-content: center; }
.voucher-card h4 { font-size: 15px; font-weight: 700; margin-bottom: 6px; color: var(--dark); }
.voucher-card p { font-size: 13px; color: var(--gray-text); margin-bottom: 18px; }
.voucher-card-img { display: inline-block; background: var(--gray-bg-2); padding: 10px; border-radius: 6px; border: 1px solid var(--border); }
.voucher-card-img img { height: 84px; width: auto; display: block; border-radius: 3px; }

@media (max-width: 900px) {
  .info-strip-inner { grid-template-columns: 1fr; }
  .info-card { padding: 26px; }
}

/* ============================================================
   FAQ SECTION
   ============================================================ */
.faq-list { max-width: 860px; margin: 40px auto 0; display: flex; flex-direction: column; gap: 12px; }
.faq-item { background: #fff; border: 1px solid var(--border); border-radius: 10px; overflow: hidden; transition: box-shadow 0.2s ease; }
.faq-item:hover { box-shadow: 0 4px 20px rgba(0,0,0,0.07); }
.faq-q { width: 100%; background: none; border: none; cursor: pointer; display: flex; align-items: center; justify-content: space-between; gap: 16px; padding: 18px 22px; font-family: inherit; font-size: 15px; font-weight: 600; color: var(--dark); text-align: left; transition: background 0.2s ease; }
.faq-q:hover { background: #fafafa; }
.faq-q[aria-expanded="true"] { color: var(--green); }
.faq-q i { flex-shrink: 0; font-size: 13px; color: #aaa; transition: transform 0.3s ease; }
.faq-q[aria-expanded="true"] i { transform: rotate(180deg); color: var(--green); }
.faq-a { display: none; padding: 0 22px 18px; font-size: 14px; color: #555; line-height: 1.75; border-top: 1px solid #f0f0f0; }
.faq-a a { color: var(--green); }
.faq-item.open .faq-a { display: block; }

/* ============================================================
   LEGAL PAGES / 404
   ============================================================ */
.legal-content { max-width: 860px; margin: 0 auto; }
.legal-content h1 { font-size: 1.9rem; margin-bottom: 24px; }
.legal-content h2 { font-size: 1.2rem; color: var(--dark); margin: 28px 0 10px; }
.legal-content p, .legal-content li { font-size: 14px; color: #444; line-height: 1.9; margin-bottom: 12px; }
.legal-content ul { list-style: disc; padding-left: 24px; }

.error-hero { background: linear-gradient(135deg, #1a1a1a 0%, #2c2c2c 55%, #163a17 100%); padding: 90px 20px 70px; text-align: center; }
.error-hero-code {
  display: block; font-size: 8rem; font-weight: 800; line-height: 1; margin-bottom: 4px; color: #fff;
  background: linear-gradient(135deg, #ffffff 0%, #9ed48a 100%); -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent;
}
.error-hero h1 { color: #fff; font-size: 1.9rem; margin-bottom: 14px; }
.error-hero p { color: rgba(255,255,255,0.8); font-size: 15px; line-height: 1.8; max-width: 480px; margin: 0 auto 30px; }
.error-links { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; margin-top: 10px; }

/* ============================================================
   FOOTER
   ============================================================ */
.main-footer { background: #16181a; color: #aaa; padding: 22px 0; }
.footer-inner { max-width: 1240px; margin: 0 auto; padding: 0 20px; display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 14px; }
.footer-copy { font-size: 13px; }
.footer-links { display: flex; gap: 20px; flex-wrap: wrap; }
.footer-links a { font-size: 12.5px; color: #aaa; text-decoration: none; transition: var(--transition); }
.footer-links a:hover { color: #fff; }

/* ============================================================
   BACK TO TOP
   ============================================================ */
.back-to-top {
  position: fixed; bottom: 28px; right: 28px; width: 44px; height: 44px; background: var(--green); color: #fff;
  border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 16px; cursor: pointer;
  z-index: 999; opacity: 0; pointer-events: none; transition: var(--transition); border: none; box-shadow: 0 4px 14px rgba(74,124,44,0.4);
}
.back-to-top.visible { opacity: 1; pointer-events: auto; }
.back-to-top:hover { background: var(--green-dark); transform: translateY(-2px); }

/* ============================================================
   GOOGLE REVIEWS MARQUEE
   ============================================================ */
.section-reviews { background: #fff; overflow: hidden; padding-bottom: 84px; }
.reviews-header { display: flex; align-items: flex-end; justify-content: center; flex-direction: column; gap: 10px; margin-bottom: 40px; text-align: center; }
.google-overall-badge {
  display: flex; align-items: center; gap: 16px; background: #fff; border: 1.5px solid #e8eaed; border-radius: 14px;
  padding: 14px 22px; box-shadow: 0 3px 20px rgba(0,0,0,0.07); margin: 14px auto 0;
}
.google-overall-info { display: flex; flex-direction: column; gap: 3px; }
.google-overall-top { display: flex; align-items: center; gap: 10px; }
.google-overall-num { font-size: 1.8rem; font-weight: 800; color: #1a1a1a; line-height: 1; }
.google-overall-stars { color: #fbbc04; font-size: 18px; letter-spacing: 2px; line-height: 1; }
.google-overall-label { font-size: 12px; color: #707070; }

.reviews-marquee-outer {
  overflow: hidden; position: relative; padding: 6px 0;
  -webkit-mask-image: linear-gradient(to right, transparent 0, #000 80px, #000 calc(100% - 80px), transparent 100%);
  mask-image: linear-gradient(to right, transparent 0, #000 80px, #000 calc(100% - 80px), transparent 100%);
}
.reviews-marquee-track { display: flex; gap: 18px; width: max-content; animation: marquee-rtl 55s linear infinite; padding: 10px 0 14px; }
.reviews-marquee-track:hover { animation-play-state: paused; }
@keyframes marquee-rtl { 0% { transform: translateX(0); } 100% { transform: translateX(-50%); } }

.review-card { width: 270px; background: #fff; border-radius: 14px; padding: 20px 22px 18px; box-shadow: 0 2px 16px rgba(0,0,0,0.07), 0 0 0 1px rgba(0,0,0,0.04); flex-shrink: 0; display: flex; flex-direction: column; gap: 10px; transition: box-shadow 0.25s ease, transform 0.25s ease; user-select: none; }
.review-card:hover { box-shadow: 0 8px 32px rgba(0,0,0,0.13), 0 0 0 1px rgba(0,0,0,0.06); transform: translateY(-3px); }
.review-card-top { display: flex; align-items: flex-start; justify-content: space-between; gap: 8px; }
.review-card-author { display: flex; align-items: center; gap: 10px; min-width: 0; }
.review-avatar { width: 40px; height: 40px; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 14px; font-weight: 700; color: #fff; flex-shrink: 0; overflow: hidden; }
img.review-avatar { object-fit: cover; display: block; }
.review-author-name { font-size: 13px; font-weight: 600; color: #1a1a1a; line-height: 1.3; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; max-width: 140px; }
.review-author-time { font-size: 11px; color: #707070; margin-top: 1px; }
.review-g-icon { flex-shrink: 0; opacity: 0.9; margin-top: 2px; }
.review-stars { display: flex; gap: 2px; line-height: 1; }
.star-full { color: #fbbc04; font-size: 14px; }
.star-empty { color: #dde0e4; font-size: 14px; }
.review-text { font-size: 12.5px; color: #555; line-height: 1.65; flex: 1; margin: 0; overflow: hidden; display: -webkit-box; -webkit-line-clamp: 4; -webkit-box-orient: vertical; }

@media (max-width: 480px) {
  .reviews-header { align-items: center; }
  .google-overall-badge { flex-wrap: wrap; justify-content: center; width: 100%; max-width: 100%; box-sizing: border-box; padding: 16px 18px; gap: 10px 16px; }
  .google-overall-info { align-items: center; }
  .reviews-btn-cta { flex-basis: 100%; justify-content: center; }
}

/* ============================================================
   GDPR CUSTOM ACCENTS (culori tematice, restul in gdprcookies.css)
   ============================================================ */
[data-gdpr-mc-root] { --gdpr-accent: var(--green); }

/* ============================================================
   UTILITIES
   ============================================================ */
.text-center { text-align: center; }
.mb-0 { margin-bottom: 0; }
.d-flex { display: flex; }
.align-center { align-items: center; }

/* ============================================================
   BREADCRUMB
   ============================================================ */
.breadcrumb-nav { background: #f7f7f7; border-bottom: 1px solid #e8e8e8; padding: 10px 0; }
.breadcrumb { display: flex; list-style: none; margin: 0; padding: 0; align-items: center; font-size: 13px; flex-wrap: wrap; }
.breadcrumb-item { color: #707070; display: flex; align-items: center; }
.breadcrumb-item a { color: var(--green); text-decoration: none; display: flex; align-items: center; gap: 5px; }
.breadcrumb-item a:hover { text-decoration: underline; }
.breadcrumb-item + .breadcrumb-item::before { content: '›'; color: #707070; margin: 0 8px; font-size: 16px; }
.breadcrumb-item.active { color: #555; font-weight: 500; }

/* ============================================================
   RESPONSIVE GLOBAL
   ============================================================ */
@media (max-width: 900px) {
  .main-nav, .header-cta { display: none; }
  .hamburger { display: flex; }
  .offer-box { flex-direction: column; }
}
@media (max-width: 760px) {
  .price-table th, .price-table td { padding: 12px 14px; font-size: 13px; }
  .section { padding: 50px 0; }
  .footer-inner { flex-direction: column; text-align: center; }
}
@media (max-width: 480px) {
  .section-title { font-size: 1.6rem; }
  .page-header h1 { font-size: 1.6rem; }
}
