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

body {
  font-family: 'PT Sans Narrow', sans-serif;
  color: #333;
  line-height: 1.6;
  overflow-x: hidden;
}

.container {
  width: 90%;
  max-width: 1100px;
  margin: auto;
}

/* ========== HONEYPOT FIELD (MUST BE HIDDEN) ========== */
.hp-field {
  position: absolute;
  left: -9999px;
  opacity: 0;
  height: 0;
  width: 0;
  pointer-events: none;
  overflow: hidden;
}

/* ========== HEADER & NAVIGATION ========== */
header {
  background: #fff;
  padding: 20px 0;
  border-bottom: 1px solid #eee;
  position: sticky;
  top: 0;
  z-index: 1000;
  transition: all 0.3s ease;
}

header.scrolled {
  box-shadow: 0 2px 10px rgba(0,0,0,0.1);
  padding: 15px 0;
}

.logo-container {
  display: flex;
  align-items: center;
  gap: 10px;
}

.logo-img {
  height: 70px;
  width: auto;
  transition: height 0.3s ease;
}

header.scrolled .logo-img {
  height: 50px;
}

.logo {
  color: #333;
  font-weight: 700;
  font-size: 1.8rem;
}

.logo span {
  color: #ff8c00;
}

.logo-link {
  text-decoration: none;
  color: inherit;
  display: flex;
  align-items: center;
  gap: 10px;
}

.nav-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.nav-links {
  display: flex;
  gap: 30px;
  list-style: none;
}

.nav-links a {
  text-decoration: none;
  color: #333;
  font-weight: 500;
  transition: color 0.3s ease;
  position: relative;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 0;
  height: 2px;
  background: #ff8c00;
  transition: width 0.3s ease;
}

.nav-links a:hover::after {
  width: 100%;
}

.nav-links a:hover {
  color: #ff8c00;
}

/* Mobile menu toggle */
.menu-toggle {
  display: none;
  flex-direction: column;
  cursor: pointer;
  gap: 5px;
}

.menu-toggle span {
  width: 25px;
  height: 3px;
  background: #333;
  transition: all 0.3s ease;
}

.menu-toggle.active span:nth-child(1) {
  transform: rotate(45deg) translate(8px, 8px);
}

.menu-toggle.active span:nth-child(2) {
  opacity: 0;
}

.menu-toggle.active span:nth-child(3) {
  transform: rotate(-45deg) translate(7px, -7px);
}

/* ========== HERO SECTION ========== */
.hero {
  background: linear-gradient(135deg, #0077cc 0%, #005fa3 100%);
  color: white;
  text-align: center;
  padding: 120px 20px;
  position: relative;
}

.hero::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(230, 187, 173, 0);
  z-index: 0;
}

/* Hero without image overlay (used on pages with gradient bg) */
.hero.hero-gradient::before {
  display: none;
}

.hero-content {
  position: relative;
  z-index: 1;
}

.hero h1,
.hero h2 {
  font-size: 2.5rem;
  margin-bottom: 15px;
  font-weight: 700;
}

.hero h1 {
  -webkit-text-stroke: 0.4px #1a1a2e;
}

.hero p {
  font-size: 1.2rem;
  margin-bottom: 10px;
  opacity: 0.95;
}

.btn-cta {
  display: inline-block;
  margin-top: 20px;
  background: white;
  color: #1a1a2e;
  padding: 15px 30px;
  border-radius: 8px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(0,0,0,0.2);
}

.btn-cta:hover {
  background: #ff8c00;
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0,0,0,0.3);
}

/* ========== STATS SECTION ========== */
.stats {
  background: #1a1a2e;
  color: white;
  padding: 40px 20px;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 30px;
  text-align: center;
}

.stat-item h3 {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 5px;
}

.stat-item p {
  font-size: 1rem;
  opacity: 0.9;
}

/* ========== GENERAL SECTIONS ========== */
.section {
  padding: 80px 20px;
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.6s ease;
}

.section.visible {
  opacity: 1;
  transform: translateY(0);
}

.section h2 {
  margin-bottom: 30px;
  color: #1a1a2e;
  font-size: 2.2rem;
  text-align: center;
}

.light-bg {
  background: #f9f9f9;
}

/* ========== CARD GRID ========== */
.grid-3 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.card {
  background: #fff;
  padding: 30px;
  border-radius: 12px;
  box-shadow: 0 2px 10px rgba(0,0,0,0.08);
  transition: all 0.3s ease;
  text-align: center;
}

.card:hover {
  transform: translateY(-8px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
  background: #f5f5f5;
}

.card h3 {
  font-size: 1.5rem;
  margin-bottom: 15px;
  transition: color 0.3s ease;
}

.card:nth-child(1):hover h3 { color: #0077cc; }
.card:nth-child(2):hover h3 { color: #00b386; }
.card:nth-child(3):hover h3 { color: #ff8c00; }
.card:nth-child(4):hover h3 { color: #9b59b6; }
.card:nth-child(5):hover h3 { color: #e74c3c; }
.card:nth-child(6):hover h3 { color: #16a085; }
.card:nth-child(7):hover h3 { color: #0077cc; }

.card p {
  color: #666;
  line-height: 1.8;
}

/* ========== PRICE CARD (SPECIAL) ========== */
.price-card-wrapper {
  grid-column: 1 / -1;
  display: flex;
  justify-content: center;
  margin-top: 10px;
}

.card.price-card {
  width: 100%;
  max-width: 620px;
  background: linear-gradient(135deg, #1a1a2e 0%, #2d3e50 100%);
  color: white;
  padding: 25px 40px;
  cursor: pointer;
}

.card.price-card h3 {
  color: white;
  font-size: 1.8rem;
}

.card.price-card p {
  color: rgba(255, 255, 255, 0.9);
}

.card.price-card:hover {
  background: linear-gradient(135deg, #ff8c00 0%, #ff6b00 100%);
  transform: translateY(-5px);
}

.card.price-card:hover h3 {
  color: white;
}

.despre-link {
  color: #1a1a2e;
  text-decoration: none;
}

.despre-link:hover {
  color: #1a1a2e;
}

/* ========== DESPRE SECTION ========== */
.despre-grid {
  display: grid;
  grid-template-columns: 30% 70%;
  gap: 40px;
  max-width: 1100px;
  margin: 40px auto 0;
  align-items: center;
}

.despre-text {
  margin-top: 20px;
}

.despre-text h3 {
  font-size: 1.6rem;
  color: #1a1a2e;
  margin-bottom: 20px;
}

.despre-text p {
  font-size: 1.1rem;
  color: #666;
  line-height: 1.7;
  margin-bottom: 15px;
  text-align: justify;
}

.despre-image-wrapper {
  width: 100%;
}

.despre-image {
  width: 100%;
  height: auto;
  border-radius: 12px;
  box-shadow: 0 4px 15px rgba(0,0,0,0.12);
  object-fit: cover;
}

/* ========== PROCESS FLOW ========== */
.process-flow {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(100px, 1fr));
  gap: 20px;
  max-width: 1000px;
  margin: 40px auto;
  position: relative;
}

.process-step {
  background: white;
  padding: 30px 20px;
  border-radius: 12px;
  box-shadow: 0 2px 10px rgba(0,0,0,0.08);
  text-align: center;
  position: relative;
  transition: all 0.3s ease;
}

.process-step:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 20px rgba(0,0,0,0.15);
  background: #f5f5f5;
}

.step-number {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, #ff8c00, #ff6b00);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  font-weight: 700;
  margin: 0 auto 20px;
  box-shadow: 0 4px 10px rgba(255, 140, 0, 0.3);
  transition: all 0.3s ease;
}

.process-step:hover .step-number {
  background: linear-gradient(135deg, #0077cc, #005fa3);
  box-shadow: 0 4px 10px rgba(0, 119, 204, 0.4);
}

.step-title {
  font-size: 1.2rem;
  font-weight: 600;
  color: #333;
  margin-bottom: 10px;
  transition: color 0.3s ease;
}

.process-step:hover .step-title {
  color: #00b386;
}

.step-description {
  color: #666;
  line-height: 1.6;
}

.process-step::after {
  content: '→';
  position: absolute;
  right: -30px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 2rem;
  color: #ff8c00;
  font-weight: bold;
}

.process-step:last-child::after {
  display: none;
}

/* ========== TESTIMONIALS ========== */
.testimonials {
  background: #1a1a2e;
  color: white;
  padding: 50px 20px;
}

.testimonials h2 {
  color: white;
  margin-bottom: 30px;
}

.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 25px;
}

.testimonial {
  background: rgba(255,255,255,0.1);
  padding: 25px;
  border-radius: 12px;
  backdrop-filter: blur(10px);
}

.testimonial p {
  font-style: italic;
  margin-bottom: 12px;
  line-height: 1.7;
  font-size: 0.95rem;
}

.testimonial-author {
  font-weight: 600;
  color: #ff8c00;
  font-size: 0.9rem;
}

/* ========== CONTACT SECTION ========== */
.contact-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 50px;
  align-items: stretch;
}

.contact-info {
  text-align: left;
}

.contact-info h2 {
  text-align: left;
  margin-bottom: 20px;
}

.contact-info p {
  margin-bottom: 15px;
  font-size: 1.1rem;
}

.contact-info a {
  color: #1a1a2e;
  text-decoration: none;
  transition: color 0.3s ease;
}

.contact-info a:hover {
  color: #ff8c00;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 15px;
  margin-top: 30px;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 15px;
  border: 2px solid #ddd;
  border-radius: 8px;
  font-family: 'PT Sans Narrow', sans-serif;
  transition: border-color 0.3s ease;
}

.contact-form input:focus,
.contact-form textarea:focus {
  outline: none;
  border-color: #ff8c00;
}

.contact-form textarea {
  min-height: 120px;
  resize: vertical;
}

.contact-form button {
  border: none;
  cursor: pointer;
  font-size: 1rem;
}

.map iframe {
  width: 100%;
  height: 400px;
  border: none;
  border-radius: 12px;
}

.servicii-img-col {
  padding: 24px 24px 24px 16px;
  display: flex;
}

.servicii-img-col img {
  width: 100%;
  object-fit: cover;
  object-position: center;
  border-radius: 12px;
  display: block;
  flex: 1;
  min-height: 0;
}

.btn-oferta {
  width: 100%;
  display: inline-block;
  margin-top: 10px;
  background: #1a1a2e;
  color: white;
  padding: 15px 30px;
  border: none;
  border-radius: 8px;
  font-size: 1.2rem;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(0,0,0,0.2);
  cursor: pointer;
}

.btn-oferta:hover {
  background: #ff8c00;
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0,0,0,0.3);
}

/* ========== WHATSAPP FLOAT BUTTON ========== */
.whatsapp-float {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 60px;
  height: 60px;
  background: #25d366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 15px rgba(37,211,102,0.4);
  transition: all 0.3s ease;
  z-index: 999;
  cursor: pointer;
}

.whatsapp-float:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 20px rgba(37,211,102,0.5);
}

.whatsapp-float img {
  width: 35px;
  height: 35px;
}

/* ========== FOOTER ========== */
.site-footer { background: #f8f8f8; color: #2d3e50; font-family: 'PT Sans Narrow', sans-serif; padding: 88px 0 0; border-top: 1px solid #e4e0d7; }
.footer-wrap { max-width: 1200px; margin: 0 auto; padding: 0 40px; }
.footer-cta { padding-bottom: 56px; border-bottom: 1px solid #e4e0d7; }
.footer-cta h2 { font-family: 'PT Sans Narrow', sans-serif; font-size: 52px; line-height: 1.05; font-weight: 700; color: #2d3e50; margin: 0; text-align: left; }
.footer-cta h2 em { font-style: normal; color: #ff8c00; }
.footer-grid { display: grid; grid-template-columns: 1.4fr repeat(4, 1fr); gap: 48px; padding: 64px 0 56px; border-bottom: 1px solid #e4e0d7; }
.footer-brand img { height: 64px; width: auto; display: block; margin-bottom: 20px; }
.footer-brand-text { font-size: 13px; color: #7b8a99; line-height: 1.6; text-align: left; }
.footer-brand-text strong { color: #2d3e50; font-weight: 700; }
.footer-col h4 { font-size: 12px; letter-spacing: 0.14em; text-transform: uppercase; color: #2d3e50; margin: 0 0 20px; font-weight: 700; position: relative; padding-bottom: 12px; text-align: left; }
.footer-col h4::after { content: ''; position: absolute; left: 0; bottom: 0; width: 24px; height: 2px; background: #ff8c00; }
.footer-col ul { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 10px; }
.footer-col ul li a { font-size: 15px; color: #5b6b7c; text-decoration: none; transition: color 0.15s; text-align: left; }
.footer-col ul li a:hover { color: #ff8c00; }
.footer-bottom-row { display: grid; grid-template-columns: 1fr 2fr; gap: 48px; padding: 40px 0 48px; border-bottom: 1px solid #e4e0d7; }
.footer-bottom-row .footer-col h4 { margin-bottom: 16px; }
.footer-contact-card { background: #fff; border: 1px solid #e4e0d7; border-radius: 18px; padding: 22px; display: flex; flex-direction: column; gap: 14px; }
.footer-contact-row { display: flex; gap: 12px; align-items: flex-start; }
.footer-contact-icon { width: 32px; height: 32px; flex: 0 0 32px; border-radius: 50%; background: #fff4e6; color: #ff8c00; display: flex; align-items: center; justify-content: center; font-size: 14px; text-align: center; }
.footer-contact-detail { font-size: 14px; color: #2d3e50; line-height: 1.45; text-align: left; }
.footer-contact-label { font-size: 12px; color: #8693a1; margin-bottom: 2px; }
.footer-contact-detail a { color: #2d3e50; text-decoration: none; }
.footer-contact-detail a:hover { color: #ff8c00; }
.footer-map { border: 1px solid #e4e0d7; border-radius: 18px; overflow: hidden; background: #fff; }
.footer-map-label { padding: 12px 16px; font-size: 13px; color: #2d3e50; border-top: 1px solid #e4e0d7; display: flex; justify-content: space-between; align-items: center; gap: 12px; text-align: left; }
.footer-map-label a { color: #ff8c00; text-decoration: none; font-weight: 700; white-space: nowrap; }
.footer-map-label a:hover { text-decoration: underline; }
.footer-strip { padding: 24px 0 28px; display: flex; justify-content: space-between; align-items: center; font-size: 13px; color: #7b8a99; flex-wrap: wrap; gap: 16px; }
.footer-socials { display: flex; gap: 8px; }
.footer-socials a { width: 34px; height: 34px; border-radius: 50%; background: #fff; border: 1px solid #e4e0d7; display: flex; align-items: center; justify-content: center; color: #2d3e50; text-decoration: none; transition: all 0.15s; }
.footer-socials a:hover { background: #ff8c00; border-color: #ff8c00; color: #fff; transform: translateY(-2px); }

/* Pin harta */
.footer-map-pin { position: absolute; left: 50%; top: 50%; transform: translate(-50%, -100%); width: 18px; height: 18px; border-radius: 50%; background: #ff8c00; border: 3px solid #fff; box-shadow: 0 4px 10px rgba(255,140,0,0.4); z-index: 1; }
.footer-map-pin::after { content: ''; position: absolute; inset: -6px; border-radius: 50%; border: 2px solid #ff8c00; opacity: 0.35; animation: map-pin-ping 2s ease-out infinite; }
@keyframes map-pin-ping { 0% { transform: scale(1); opacity: 0.5; } 100% { transform: scale(2.2); opacity: 0; } }

/* ========== RESPONSIVE DESIGN ========== */
@media (max-width: 960px) {
  .site-footer { padding: 56px 0 0; }
  .footer-wrap { padding: 0 24px; }
  .footer-cta h2 { font-size: 34px; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 36px; padding: 48px 0 40px; }
  .footer-brand { grid-column: 1 / -1; }
  .footer-bottom-row { grid-template-columns: 1fr; }
  .footer-strip { flex-direction: column; align-items: flex-start; }
}

@media (max-width: 768px) {
  .menu-toggle { display: flex; }
  nav { position: absolute; top: 100%; left: 0; right: 0; background: white; max-height: 0; overflow: hidden; transition: max-height 0.3s ease; box-shadow: 0 4px 10px rgba(0,0,0,0.1); }
  nav.active { max-height: 400px; }
  .nav-links { flex-direction: column; padding: 20px; gap: 15px; }
  .nav-links a::after { display: none; }
  .hero h1, .hero h2 { font-size: 1.8rem; }
  .hero p { font-size: 1rem; }
  .logo-img { height: 50px; }
  .logo { font-size: 1.4rem; }
  .stat-item h3 { font-size: 2rem; }
  .contact-container { grid-template-columns: 1fr; }
  .despre-grid { grid-template-columns: 1fr; }
  .process-flow { grid-template-columns: 1fr; }
  .process-step::after { content: '↓'; right: 50%; top: auto; bottom: -35px; transform: translateX(50%); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}
