/* =========================================
   ELIANTUD TRANS – Global Stylesheet
   ========================================= */

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

:root {
  --navy:    #0d2240;
  --navy-2:  #1a3a5c;
  --orange:  #f4821f;
  --orange-d:#d96e10;
  --white:   #ffffff;
  --gray-50: #f8f9fa;
  --gray-100:#e9ecef;
  --gray-300:#ced4da;
  --gray-500:#6c757d;
  --gray-700:#343a40;
  --text:    #1e2d3d;
  --radius:  8px;
  --shadow:  0 4px 24px rgba(13,34,64,.10);
  --shadow-lg:0 8px 40px rgba(13,34,64,.16);
  --transition: .25s ease;
  --max-w:   1200px;
  --font:    'Inter', system-ui, -apple-system, sans-serif;
}

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

body {
  font-family: var(--font);
  color: var(--text);
  background: var(--white);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; height: auto; display: block; }
a  { color: inherit; text-decoration: none; }
ul { list-style: none; }

/* === Typography === */
h1,h2,h3,h4 { line-height: 1.2; font-weight: 700; color: var(--navy); }
h1 { font-size: clamp(2rem, 5vw, 3.25rem); }
h2 { font-size: clamp(1.6rem, 3.5vw, 2.4rem); }
h3 { font-size: clamp(1.1rem, 2vw, 1.4rem); }
p  { color: var(--gray-700); }

/* === Utility === */
.container { max-width: var(--max-w); margin: 0 auto; padding: 0 1.5rem; }
.section    { padding: 5rem 0; }
.section-sm { padding: 3.5rem 0; }

.badge {
  display: inline-block;
  font-size: .75rem;
  font-weight: 600;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--orange);
  background: rgba(244,130,31,.10);
  padding: .3rem .85rem;
  border-radius: 50px;
  margin-bottom: 1rem;
}

.section-heading { text-align: center; margin-bottom: 3.5rem; }
.section-heading p { max-width: 560px; margin: .75rem auto 0; font-size: 1.05rem; }

/* === Buttons === */
.btn {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  padding: .85rem 2rem;
  border-radius: var(--radius);
  font-weight: 600;
  font-size: .95rem;
  cursor: pointer;
  border: 2px solid transparent;
  transition: all var(--transition);
  white-space: nowrap;
}
.btn-primary {
  background: var(--orange);
  color: var(--white);
  border-color: var(--orange);
}
.btn-primary:hover { background: var(--orange-d); border-color: var(--orange-d); transform: translateY(-1px); box-shadow: 0 6px 20px rgba(244,130,31,.35); }

.btn-outline {
  background: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,.5);
}
.btn-outline:hover { background: var(--white); color: var(--navy); border-color: var(--white); }

.btn-dark {
  background: var(--navy);
  color: var(--white);
  border-color: var(--navy);
}
.btn-dark:hover { background: var(--navy-2); border-color: var(--navy-2); transform: translateY(-1px); box-shadow: var(--shadow); }

/* =============================================
   NAVIGATION
   ============================================= */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  padding: 1rem 0;
  transition: background var(--transition), box-shadow var(--transition), padding var(--transition);
}
.navbar.scrolled {
  background: var(--navy);
  box-shadow: 0 2px 20px rgba(0,0,0,.25);
  padding: .65rem 0;
}
.navbar.transparent { background: transparent; }

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: .75rem;
  color: var(--white);
  font-weight: 800;
  font-size: 1.15rem;
  letter-spacing: -.01em;
}
.nav-logo .logo-icon {
  width: 44px; height: 44px;
  background: var(--orange);
  border-radius: 10px;
  display: grid;
  place-items: center;
  flex-shrink: 0;
}
.nav-logo .logo-icon svg { width: 26px; height: 26px; fill: var(--white); }
.nav-logo span { line-height: 1.1; }
.nav-logo small { display: block; font-size: .65rem; font-weight: 400; opacity: .75; letter-spacing: .06em; text-transform: uppercase; }

.nav-links {
  display: flex;
  align-items: center;
  gap: .25rem;
}
.nav-links a {
  color: rgba(255,255,255,.85);
  font-weight: 500;
  font-size: .9rem;
  padding: .5rem .9rem;
  border-radius: var(--radius);
  transition: color var(--transition), background var(--transition);
}
.nav-links a:hover,
.nav-links a.active { color: var(--white); background: rgba(255,255,255,.12); }

.nav-cta {
  background: var(--orange) !important;
  color: var(--white) !important;
  padding: .5rem 1.25rem !important;
  font-weight: 600 !important;
}
.nav-cta:hover { background: var(--orange-d) !important; }

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

/* =============================================
   HERO
   ============================================= */
.hero {
  min-height: 100vh;
  background:
    linear-gradient(135deg, rgba(13,34,64,.90) 0%, rgba(26,58,92,.80) 100%),
    url('../img/hero-bg.svg') center/cover no-repeat;
  display: flex;
  align-items: center;
  padding: 8rem 0 5rem;
  position: relative;
  overflow: hidden;
}
.hero::after {
  content: '';
  position: absolute;
  bottom: -1px; left: 0; right: 0;
  height: 80px;
  background: var(--white);
  clip-path: ellipse(55% 100% at 50% 100%);
}

.hero-content { max-width: 700px; }
.hero .badge { color: var(--orange); }
.hero h1 { color: var(--white); margin-bottom: 1.25rem; }
.hero h1 span { color: var(--orange); }
.hero p { color: rgba(255,255,255,.8); font-size: 1.1rem; max-width: 560px; margin-bottom: 2.25rem; }
.hero-btns { display: flex; gap: 1rem; flex-wrap: wrap; }

.hero-stats {
  display: flex;
  gap: 2.5rem;
  margin-top: 3.5rem;
  padding-top: 2.5rem;
  border-top: 1px solid rgba(255,255,255,.15);
  flex-wrap: wrap;
}
.hero-stat strong { display: block; font-size: 2rem; font-weight: 800; color: var(--orange); line-height: 1; }
.hero-stat span   { font-size: .85rem; color: rgba(255,255,255,.7); margin-top: .3rem; display: block; }

/* =============================================
   FEATURES STRIP
   ============================================= */
.features-strip {
  background: var(--navy);
  padding: 2.5rem 0;
}
.features-strip .grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1.5rem;
}
.feature-item {
  display: flex;
  align-items: center;
  gap: 1rem;
  color: var(--white);
}
.feature-item .icon {
  width: 48px; height: 48px;
  background: rgba(244,130,31,.15);
  border-radius: 12px;
  display: grid;
  place-items: center;
  flex-shrink: 0;
}
.feature-item .icon svg { width: 24px; height: 24px; stroke: var(--orange); }
.feature-item strong { display: block; font-size: .9rem; font-weight: 600; }
.feature-item span   { font-size: .8rem; color: rgba(255,255,255,.6); }

/* =============================================
   ABOUT (HOMEPAGE PREVIEW)
   ============================================= */
.about-preview { background: var(--white); }
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}
.about-image {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  aspect-ratio: 4/3;
}
.about-image img  { width: 100%; height: 100%; object-fit: cover; }
.about-image .overlay-card {
  position: absolute;
  bottom: 1.5rem; right: -1.5rem;
  background: var(--navy);
  color: var(--white);
  padding: 1.25rem 1.75rem;
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
  min-width: 160px;
}
.overlay-card strong { display: block; font-size: 2rem; font-weight: 800; color: var(--orange); }
.overlay-card span   { font-size: .8rem; opacity: .75; }

.about-text h2 { margin-bottom: 1rem; }
.about-text p  { margin-bottom: 1rem; }
.about-list    { margin: 1.5rem 0; display: flex; flex-direction: column; gap: .75rem; }
.about-list li {
  display: flex;
  align-items: flex-start;
  gap: .75rem;
  font-size: .95rem;
}
.about-list li .check {
  width: 22px; height: 22px;
  background: rgba(244,130,31,.12);
  border-radius: 50%;
  display: grid;
  place-items: center;
  flex-shrink: 0;
  margin-top: 2px;
}
.about-list li .check svg { width: 12px; height: 12px; stroke: var(--orange); stroke-width: 3; }

/* =============================================
   SERVICES CARDS
   ============================================= */
.services { background: var(--gray-50); }
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(290px, 1fr));
  gap: 1.75rem;
}
.service-card {
  background: var(--white);
  border-radius: 16px;
  padding: 2.25rem;
  box-shadow: var(--shadow);
  transition: transform var(--transition), box-shadow var(--transition);
  border: 1px solid var(--gray-100);
}
.service-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.service-card .icon {
  width: 60px; height: 60px;
  background: linear-gradient(135deg, var(--orange), var(--orange-d));
  border-radius: 16px;
  display: grid;
  place-items: center;
  margin-bottom: 1.5rem;
}
.service-card .icon svg { width: 30px; height: 30px; stroke: var(--white); }
.service-card h3 { margin-bottom: .75rem; }
.service-card p  { font-size: .93rem; line-height: 1.7; }
.service-card .tag {
  display: inline-block;
  margin-top: 1.25rem;
  font-size: .75rem;
  font-weight: 600;
  color: var(--navy-2);
  background: var(--gray-100);
  padding: .25rem .75rem;
  border-radius: 50px;
}

/* =============================================
   WHY CHOOSE US
   ============================================= */
.why { background: var(--white); }
.why-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}
.why-list { display: flex; flex-direction: column; gap: 1.5rem; }
.why-item {
  display: flex;
  gap: 1.25rem;
  padding: 1.5rem;
  border-radius: 12px;
  border: 1px solid var(--gray-100);
  transition: border-color var(--transition), box-shadow var(--transition);
}
.why-item:hover { border-color: var(--orange); box-shadow: 0 4px 16px rgba(244,130,31,.12); }
.why-item .icon {
  width: 50px; height: 50px;
  background: rgba(244,130,31,.10);
  border-radius: 12px;
  display: grid;
  place-items: center;
  flex-shrink: 0;
}
.why-item .icon svg { width: 24px; height: 24px; stroke: var(--orange); }
.why-item h4 { font-size: 1rem; margin-bottom: .35rem; }
.why-item p  { font-size: .88rem; }
.why-image   { border-radius: 20px; overflow: hidden; aspect-ratio: 3/4; }
.why-image img { width: 100%; height: 100%; object-fit: cover; }

/* =============================================
   CTA BAND
   ============================================= */
.cta-band {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-2) 100%);
  padding: 5rem 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-band::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}
.cta-band h2 { color: var(--white); margin-bottom: 1rem; position: relative; }
.cta-band p  { color: rgba(255,255,255,.75); max-width: 500px; margin: 0 auto 2.25rem; position: relative; font-size: 1.05rem; }
.cta-btns { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; position: relative; }
.cta-phone {
  display: inline-flex;
  align-items: center;
  gap: .6rem;
  color: var(--white);
  font-size: 1.3rem;
  font-weight: 700;
  letter-spacing: .01em;
}
.cta-phone svg { width: 22px; height: 22px; stroke: var(--orange); }

/* =============================================
   CONTACT PAGE
   ============================================= */
.contact-hero {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-2) 100%);
  padding: 9rem 0 5rem;
  text-align: center;
}
.contact-hero h1 { color: var(--white); }
.contact-hero p  { color: rgba(255,255,255,.75); margin-top: .75rem; font-size: 1.05rem; }

.contact-section { background: var(--gray-50); }
.contact-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.75rem;
  max-width: 900px;
  margin: 0 auto;
}
.contact-card {
  background: var(--white);
  border-radius: 16px;
  padding: 2.5rem 2rem;
  text-align: center;
  box-shadow: var(--shadow);
  border: 1px solid var(--gray-100);
  transition: transform var(--transition), box-shadow var(--transition);
}
.contact-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.contact-card .icon {
  width: 64px; height: 64px;
  background: linear-gradient(135deg, var(--orange), var(--orange-d));
  border-radius: 20px;
  display: grid;
  place-items: center;
  margin: 0 auto 1.25rem;
}
.contact-card .icon svg { width: 30px; height: 30px; stroke: var(--white); }
.contact-card h3 { margin-bottom: .5rem; }
.contact-card .value {
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--navy);
  display: block;
  margin-top: .25rem;
}
.contact-card .value a { color: var(--navy); transition: color var(--transition); }
.contact-card .value a:hover { color: var(--orange); }
.contact-card p { font-size: .9rem; color: var(--gray-500); }

.map-section { background: var(--white); }
.map-section .embed-wrap {
  border-radius: 16px;
  overflow: hidden;
  box-shadow: var(--shadow);
  height: 400px;
}
.map-section iframe { width: 100%; height: 100%; border: 0; }

/* =============================================
   DESPRE NOI PAGE
   ============================================= */
.page-hero {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-2) 100%);
  padding: 9rem 0 5rem;
}
.page-hero h1 { color: var(--white); margin-bottom: .75rem; }
.page-hero p  { color: rgba(255,255,255,.75); max-width: 560px; font-size: 1.05rem; }

.about-full .text-block { max-width: 800px; margin: 0 auto; }
.about-full .text-block p { margin-bottom: 1.25rem; font-size: 1rem; line-height: 1.8; }
.about-full .text-block h3 { margin: 2rem 0 .75rem; color: var(--navy); }

.stats-section { background: var(--navy); }
.stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 2rem;
  text-align: center;
}
.stat-item strong { display: block; font-size: 2.75rem; font-weight: 800; color: var(--orange); line-height: 1; }
.stat-item span   { display: block; margin-top: .5rem; color: rgba(255,255,255,.75); font-size: .9rem; }

.team-section { background: var(--gray-50); }
.team-card {
  max-width: 380px;
  margin: 0 auto;
  background: var(--white);
  border-radius: 20px;
  overflow: hidden;
  box-shadow: var(--shadow);
  text-align: center;
}
.team-card .avatar {
  width: 100%; height: 260px;
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-2) 100%);
  display: grid;
  place-items: center;
}
.team-card .avatar svg { width: 80px; height: 80px; stroke: rgba(255,255,255,.3); }
.team-card .info { padding: 1.75rem; }
.team-card h3 { margin-bottom: .25rem; }
.team-card .role { color: var(--orange); font-weight: 600; font-size: .9rem; }

/* =============================================
   SERVICII PAGE
   ============================================= */
.services-full { background: var(--white); }
.service-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  padding: 4rem 0;
  border-bottom: 1px solid var(--gray-100);
}
.service-row:last-child { border-bottom: none; }
.service-row.reverse { direction: rtl; }
.service-row.reverse > * { direction: ltr; }
.service-row .text h3 { font-size: 1.6rem; margin-bottom: 1rem; }
.service-row .text p  { margin-bottom: .75rem; line-height: 1.8; }
.service-row .text ul { margin: 1rem 0; display: flex; flex-direction: column; gap: .6rem; }
.service-row .text ul li {
  display: flex;
  align-items: center;
  gap: .6rem;
  font-size: .95rem;
}
.service-row .text ul li::before {
  content: '';
  width: 8px; height: 8px;
  background: var(--orange);
  border-radius: 50%;
  flex-shrink: 0;
}
.service-row .media {
  border-radius: 20px;
  overflow: hidden;
  aspect-ratio: 4/3;
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-2) 100%);
  display: grid;
  place-items: center;
  position: relative;
}
.service-row .media svg { width: 120px; height: 120px; stroke: rgba(255,255,255,.15); }
.service-row .media .label {
  position: absolute;
  bottom: 1.5rem; left: 50%;
  transform: translateX(-50%);
  background: var(--orange);
  color: var(--white);
  font-weight: 700;
  font-size: .8rem;
  padding: .4rem 1.25rem;
  border-radius: 50px;
  white-space: nowrap;
  letter-spacing: .05em;
  text-transform: uppercase;
}

/* =============================================
   FOOTER
   ============================================= */
.footer {
  background: var(--navy);
  color: var(--white);
  padding: 4rem 0 0;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 3rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid rgba(255,255,255,.1);
}
.footer-brand .logo { display: flex; align-items: center; gap: .75rem; margin-bottom: 1rem; }
.footer-brand .logo .icon {
  width: 44px; height: 44px;
  background: var(--orange);
  border-radius: 10px;
  display: grid;
  place-items: center;
}
.footer-brand .logo .icon svg { width: 26px; height: 26px; fill: var(--white); }
.footer-brand .logo span { font-weight: 800; font-size: 1.1rem; line-height: 1.1; }
.footer-brand .logo small { display: block; font-size: .65rem; font-weight: 400; opacity: .6; letter-spacing: .06em; text-transform: uppercase; }
.footer-brand p { color: rgba(255,255,255,.6); font-size: .9rem; line-height: 1.7; }

.footer-col h4 { font-size: .85rem; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; color: rgba(255,255,255,.4); margin-bottom: 1.25rem; }
.footer-col ul { display: flex; flex-direction: column; gap: .6rem; }
.footer-col ul a { color: rgba(255,255,255,.7); font-size: .9rem; transition: color var(--transition); }
.footer-col ul a:hover { color: var(--orange); }
.footer-col .contact-item { display: flex; align-items: flex-start; gap: .75rem; margin-bottom: .85rem; }
.footer-col .contact-item svg { width: 18px; height: 18px; stroke: var(--orange); flex-shrink: 0; margin-top: 2px; }
.footer-col .contact-item span { color: rgba(255,255,255,.7); font-size: .88rem; line-height: 1.5; }
.footer-col .contact-item a { color: rgba(255,255,255,.7); font-size: .88rem; transition: color var(--transition); }
.footer-col .contact-item a:hover { color: var(--orange); }

.footer-bottom {
  padding: 1.5rem 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
}
.footer-bottom p { color: rgba(255,255,255,.4); font-size: .82rem; }
.footer-bottom a { color: rgba(255,255,255,.55); font-size: .82rem; transition: color var(--transition); }
.footer-bottom a:hover { color: var(--orange); }

/* =============================================
   PAGE-INTERNAL HERO BREADCRUMB
   ============================================= */
.breadcrumb {
  display: flex;
  align-items: center;
  gap: .5rem;
  margin-top: 1rem;
  flex-wrap: wrap;
}
.breadcrumb a { color: rgba(255,255,255,.55); font-size: .85rem; transition: color var(--transition); }
.breadcrumb a:hover { color: var(--orange); }
.breadcrumb span { color: rgba(255,255,255,.3); font-size: .85rem; }
.breadcrumb .current { color: var(--orange); font-size: .85rem; font-weight: 600; }

/* =============================================
   MOBILE MENU
   ============================================= */
.mobile-menu {
  display: none;
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background: var(--navy);
  z-index: 999;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1.5rem;
  padding: 2rem;
}
.mobile-menu.open { display: flex; }
.mobile-menu a {
  color: var(--white);
  font-size: 1.4rem;
  font-weight: 700;
  padding: .75rem 2rem;
  border-radius: var(--radius);
  transition: background var(--transition);
}
.mobile-menu a:hover { background: rgba(255,255,255,.1); }
.mobile-menu .close-btn {
  position: absolute;
  top: 1.5rem; right: 1.5rem;
  background: none;
  border: none;
  cursor: pointer;
  color: var(--white);
  font-size: 1.5rem;
  line-height: 1;
  padding: .5rem;
}

/* =============================================
   RESPONSIVE
   ============================================= */
@media (max-width: 1024px) {
  .about-grid, .why-grid { grid-template-columns: 1fr; gap: 3rem; }
  .about-image .overlay-card { right: 0; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 2rem; }
  .service-row { grid-template-columns: 1fr; gap: 2rem; }
  .service-row.reverse { direction: ltr; }
}

@media (max-width: 768px) {
  .nav-links { display: none; }
  .hamburger { display: flex; }
  .section, .section-sm { padding: 3.5rem 0; }
  .hero { padding: 7rem 0 4rem; }
  .hero-stats { gap: 1.5rem; }
  .footer-grid { grid-template-columns: 1fr; gap: 2rem; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .contact-cards { grid-template-columns: 1fr; max-width: 380px; }
}

@media (max-width: 480px) {
  .hero h1 { font-size: 1.75rem; }
  .hero-btns { flex-direction: column; }
  .btn { justify-content: center; }
  .cta-btns { flex-direction: column; align-items: center; }
  .features-strip .grid { grid-template-columns: 1fr 1fr; }
}
