@charset "utf-8";
/* CSS Document */
/* ================= RESET ================= */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

img {
  max-width: 100%;
  display: block;
}

body {
  font-family: 'Open Sans', sans-serif;
  line-height: 1.6;
  color: #0f172a;
  background: #fff;
}

a {
  text-decoration: none;
  color: inherit;
}

ul {
  list-style: none;
}

/* ================= UTIL ================= */
.container {
  width: min(1200px, calc(100% - 32px));
  margin-inline: auto;
}
.section-padding {
  padding: 64px 0;
}
.section-subtitle {
  display: block;
  font-size: 14px;
  color: #2563eb;
  margin-bottom: 8px;
  text-transform: uppercase;
  letter-spacing: 1px;
}
.section-title {
  font-size: 28px;
  font-weight: 800;
  margin-bottom: 16px;
}
.section-text {
  max-width: 600px;
  color: #475569;
}
.bg-light {
  background: #f8fafc;
}
.bg-dark {
  background: #0f172a;
  color: #fff;
}

/* ================= BUTTONS ================= */
.btn {
  display: inline-block;
  padding: 12px 20px;
  border-radius: 8px;
  font-weight: 600;
  transition: 0.3s;
}
.btn-primary {
  background: #2563eb;
  color: #fff;
}
.btn-primary:hover {
  background: #1d4ed8;
}
.btn-outline {
  border: 2px solid #fff;
  color: #fff;
}

.btn-outline:hover {
  background: #fff;
  color: #0f172a;
}

/* ================= HEADER ================= */
.site-header {
  position: fixed;
  width: 100%;
  top: 0;
  background: #fff;
  z-index: 1000;
  border-bottom: 1px solid #e2e8f0;
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
}
.logo {
  display: flex;
  align-items: center;
  font-weight: 800;
  font-size: 18px;
}
.logo-mark {
  background: #2563eb;
  color: #fff;
  padding: 6px 10px;
  border-radius: 6px;
  margin-right: 8px;
}


/* ================= HAMBURGER ================= */
.hamburger {
  display: flex;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
}
.hamburger span {
  width: 25px;
  height: 3px;
  background: #0f172a;
}
/* ================= NAV ================= */
.site-nav {
  position: fixed;
  inset: 0;
  background: rgba(15, 23, 42, 0.95);
  transform: translateY(-100%);
  transition: 0.3s;
}
.site-nav.is-open {
  transform: translateY(0);
}
.close-btn {
  position: absolute;
  top: 20px;
  right: 20px;
  font-size: 32px;
  background: none;
  border: none;
  color: #fff;
  cursor: pointer;
}
.nav-menu {
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 24px;
}
.nav-menu a {
  color: #fff;
  font-size: 20px;
  font-weight: 600;
}


/* ================= HERO ================= */
.hero {
  height: 600px;
  display: flex;
  align-items: center;
  text-align: center;
  color: #fff;
  padding-top: 72px;

  background:
    linear-gradient(rgba(15,23,42,0.7), rgba(15,23,42,0.7)),
    url("../images/hero.jpg") center/cover no-repeat;
}
.hero h1 {
  font-size: 32px;
  margin-bottom: 16px;
}
.hero p {
  max-width: 500px;
  margin: 0 auto 24px;
}
.hero-actions {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

/* ================= CARS ================= */
.cars-grid {
  display: grid;
  gap: 24px;
}
.car-card {
  background: #fff;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 10px 25px rgba(0,0,0,0.05);
  transition: 0.3s;
}
.car-card:hover {
  transform: translateY(-5px);
}
.car-content {
  padding: 16px;
}
.car-content h3 {
  margin-bottom: 8px;
}

/* ================= ABOUT ================= */
.about-grid {
  display: grid;
  gap: 24px;
}
.about-content p {
  margin-bottom: 12px;
}

/* ================= BENEFITS ================= */
.benefits-grid {
  display: grid;
  gap: 24px;
}
.benefit-card {
  text-align: center;
}
.benefit-card span {
  font-size: 32px;
  display: block;
  margin-bottom: 8px;
}

/* ================= CTA ================= */
.cta-box {
  text-align: center;
}
.cta-box h2 {
  margin-bottom: 12px;
}

/* ================= FOOTER ================= */
.site-footer {
  background: #0f172a;
  color: #fff;
  text-align: center;
  padding: 24px 0;
}



/* ================= ---servicii.html---PAGE HERO ================= */
.page-hero {
  height: 600px;
  display: flex;
  align-items: center;
  text-align: center;
  color: #fff;
  padding-top: 72px;

  background:
    linear-gradient(rgba(15,23,42,0.75), rgba(15,23,42,0.75)),
    url("../images/hero-servicii.jpg") center/cover no-repeat;
}
.page-hero h1 {
  font-size: 28px;
  margin-bottom: 12px;
}
.page-hero p {
  max-width: 600px;
  margin: 0 auto;
}

/* ================= ---servicii.html---SERVICE LIST ================= */
.service-list {
  margin-top: 12px;
  padding-left: 16px;
}
.service-list li {
  list-style: disc;
  margin-bottom: 6px;
  color: #475569;
}

/* =================---servicii.html--- STEPS ================= */
.steps-grid {
  display: grid;
  gap: 24px;
}
.step-card {
  background: #fff;
  padding: 24px;
  border-radius: 12px;
  text-align: center;
  box-shadow: 0 10px 25px rgba(0,0,0,0.05);
}
.step-card span {
  display: inline-block;
  font-size: 20px;
  font-weight: 700;
  color: #2563eb;
  margin-bottom: 8px;
}
.step-card h3 {
  margin-bottom: 8px;
}

/* ================= ---despre.html---PAGE HERO ================= */
.page-hero-despre {
  height: 600px;
  display: flex;
  align-items: center;
  text-align: center;
  color: #fff;
  padding-top: 72px;

  background:
    linear-gradient(rgba(15,23,42,0.75), rgba(15,23,42,0.75)),
    url("../images/hero-despre.jpg") top/cover no-repeat;
}
.page-hero-despre h1 {
  font-size: 28px;
  margin-bottom: 12px;
}
.page-hero-despre p {
  max-width: 600px;
  margin: 0 auto;
}
/* =================--despre.htmlSTATS ================= */
.stats-grid {
  display: grid;
  gap: 24px;
  text-align: center;
}
.stat-item {
  background: #f8fafc;
  padding: 24px;
  border-radius: 12px;
}
.stat-item h3 {
  font-size: 32px;
  font-weight: 800;
  color: #2563eb;
  margin-bottom: 6px;
}
.about{
  background:var(--white);
}
.about-grid{
  display:grid;
  gap:32px;
  align-items:center;
}
.about-content h2{
  color:var(--dark);
  font-size:clamp(1.9rem, 5vw, 3rem);
  line-height:1.15;
  margin-bottom:18px;
}
.about-content p{
  margin-bottom:16px;
}
.about-image img{
  width:100%;
  min-height:220px;
  object-fit:cover;
  border-radius:28px;
  box-shadow:var(--shadow);
}

/* ================= ---contact.php---PAGE HERO ================= */
.page-hero-contact {
  height: 600px;
  display: flex;
  align-items: center;
  text-align: center;
  color: #fff;
  padding-top: 72px;

  background:
    linear-gradient(rgba(15,23,42,0.75), rgba(15,23,42,0.75)),
    url("../images/hero-contact.jpg") top/cover no-repeat;
}
.page-hero-contact h1 {
  font-size: 28px;
  margin-bottom: 12px;
}
.page-hero-contact p {
  max-width: 600px;
  margin: 0 auto;
}
/* ================= CONTACT ================= */
.contact-grid {
  display: grid;
  gap: 32px;
}
.contact-info p {
  color: #475569;
  margin-bottom: 24px;
}
.info-list {
  display: grid;
  gap: 16px;
}
.info-item {
  background: #f8fafc;
  padding: 16px;
  border-radius: 12px;
}
.info-item strong {
  display: block;
  margin-bottom: 4px;
  color: #0f172a;
}
.info-item span {
  color: #475569;
}
.contact-form-box {
  background: #f8fafc;
  padding: 24px;
  border-radius: 16px;
}
.contact-form {
  display: grid;
  gap: 16px;
}
.form-group {
  display: grid;
  gap: 6px;
}
.form-group label {
  font-weight: 700;
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 12px 14px;
  border: 1px solid #cbd5e1;
  border-radius: 8px;
  font: inherit;
}
.form-group textarea {
  resize: vertical;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: #2563eb;
}
















/* ================= TABLET ================= */
@media (min-width: 768px) {

  .hero h1 {
    font-size: 42px;
  }
.hero-actions {
    flex-direction: row;
    justify-content: center;
  }
.cars-grid {
    grid-template-columns: repeat(2, 1fr);
  }
 .about-grid {
    grid-template-columns: 1fr 1fr;
    align-items: center;
  }
.benefits-grid {
    grid-template-columns: repeat(3, 1fr);
  }
	
/*---servicii.html---*/ 
.page-hero h1 {
    font-size: 36px;
  }
 .steps-grid {
    grid-template-columns: repeat(3, 1fr);
  }
	
	/*---despre.html---*/
	.about-page-grid{
    grid-template-columns:1fr 1fr;
  }
.about-page-image img{
    min-height:350px;
  }
	/*---despre.html---*/
.stats-grid {
    grid-template-columns: repeat(3, 1fr);
  }
	
	
	.contact-grid {
    grid-template-columns: 1fr 1.2fr;
    align-items: start;
  }

  .contact-form-box {
    padding: 32px;
  }

	
	
	
	
}














/* ================= DESKTOP ================= */
@media (min-width: 1024px) {

  .hamburger {
    display: none;
  }
 .site-nav {
    position: static;
    transform: none;
    background: none;
  }
 .close-btn {
    display: none;
  }
 .nav-menu {
    flex-direction: row;
    height: auto;
    gap: 32px;
  }
.nav-menu a {
    color: #0f172a;
    position: relative;
  }
  .nav-menu a::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -4px;
    width: 0;
    height: 2px;
    background: #2563eb;
    transition: 0.3s;
  }
 .nav-menu a:hover::after {
    width: 100%;
  }
 .cars-grid {
    grid-template-columns: repeat(3, 1fr);
  }
.hero {
    height: 600px;
  }
	
	/*---servicii.html---*/
	.page-hero,
	.page-hero-despre,
	.page-hero-servicii,
	.page-hero-contact{
    height: 600px;
		  padding-bottom: 75px;
  }
	.page-hero h1,
	.page-hero-despre h1,
	.page-hero-servicii h1,
	.page-hero-contact h1{
    font-size: 42px;
  }

	
	
	
	
}













.form-message {
  padding: 14px 16px;
  border-radius: 8px;
  margin-bottom: 16px;
  font-weight: 700;
}

.form-message.success {
  background: #dcfce7;
  color: #166534;
  border: 1px solid #bbf7d0;
}

.form-message.error {
  background: #fee2e2;
  color: #991b1b;
  border: 1px solid #fecaca;
}

.honeypot {
  position: absolute;
  left: -9999px;
}





































































