/* ================================================================
   LILA INVESTMENT GROUP — Sections & Components
   styles/sections.css
   ================================================================ */

/* ─── SHARED SECTION LAYOUT ─── */
section { padding: 120px 60px; }

.section-label {
  font-size: 10px;
  letter-spacing: 5px;
  text-transform: uppercase;
  color: var(--pink-light);
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 20px;
}
.section-label::before {
  content: '';
  display: block;
  width: 30px; height: 1px;
  background: var(--grad-pink);
}

h2.section-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(48px, 6vw, 80px);
  letter-spacing: 2px;
  color: var(--white);
  line-height: 0.95;
}
h2.section-title span {
  background: var(--grad-pink);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ─── BUTTONS ─── */
.btn-primary {
  background: var(--grad-pink);
  color: var(--white);
  border: none;
  padding: 16px 38px;
  font-family: 'Barlow', sans-serif;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  cursor: pointer;
  border-radius: 2px;
  transition: opacity 0.3s, transform 0.2s;
  text-decoration: none;
  display: inline-block;
}
.btn-primary:hover { opacity: 0.85; transform: translateY(-2px); }

.btn-ghost {
  background: transparent;
  color: var(--white);
  border: 1px solid rgba(242, 191, 193, 0.3);
  padding: 16px 38px;
  font-family: 'Barlow', sans-serif;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  cursor: pointer;
  border-radius: 2px;
  transition: border-color 0.3s, color 0.3s, background 0.3s;
  text-decoration: none;
  display: inline-block;
}
.btn-ghost:hover {
  border-color: var(--pink-light);
  color: var(--pink-light);
  background: rgba(242, 191, 193, 0.05);
}

/* ─── ABOUT ─── */
#about { background: var(--charcoal); }
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  margin-top: 60px;
}
.about-text p {
  color: var(--muted);
  line-height: 1.9;
  font-size: 15px;
  font-weight: 300;
  margin-bottom: 20px;
}
.about-text p strong { color: var(--text); font-weight: 600; }

.about-visual { position: relative; }
.about-img-placeholder {
  width: 100%;
  aspect-ratio: 4/3;
  background: var(--smoke);
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--faint);
  font-size: 11px;
  letter-spacing: 3px;
  text-transform: uppercase;
  border: 1px dashed rgba(242, 191, 193, 0.15);
  position: relative;
  overflow: hidden;
}
.about-img-placeholder::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 30% 40%, rgba(120, 76, 88, 0.12) 0%, transparent 60%);
}
.about-badge {
  position: absolute;
  bottom: -24px; left: -24px;
  background: var(--grad-pink);
  color: var(--white);
  width: 144px; height: 144px;
  border-radius: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  box-shadow: 0 8px 32px rgba(120, 76, 88, 0.4);
}
.about-badge .badge-num {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 54px;
  line-height: 1;
  color: var(--white);
}
.about-badge .badge-text {
  font-size: 9px;
  letter-spacing: 2px;
  text-transform: uppercase;
  font-weight: 700;
  line-height: 1.3;
  opacity: 0.9;
}

.values {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-top: 36px;
}
.value-item {
  padding: 20px;
  background: var(--smoke);
  border-left: 3px solid var(--pink);
  border-radius: 0 4px 4px 0;
  transition: border-color 0.3s;
}
.value-item:hover { border-color: var(--pink-light); }
.value-item h4 {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--pink-light);
  margin-bottom: 6px;
}
.value-item p { font-size: 12px; color: var(--muted); line-height: 1.6; }

/* ─── SERVICES ─── */
#services { background: var(--smoke); }
.services-intro {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 60px;
  gap: 40px;
  flex-wrap: wrap;
}
.services-intro p {
  max-width: 380px;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.85;
  font-weight: 300;
}
.services-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2px;
}
.service-card {
  background: var(--ash);
  padding: 52px 44px;
  position: relative;
  overflow: hidden;
  transition: background 0.3s;
}
.service-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 3px; height: 0;
  background: var(--grad-pink-v);
  transition: height 0.5s ease;
}
.service-card:hover::before { height: 100%; }
.service-card:hover { background: #1E1618; }

/* Pink bloom on hover */
.service-card::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 0% 100%, rgba(120,76,88,0.1) 0%, transparent 60%);
  opacity: 0;
  transition: opacity 0.4s;
}
.service-card:hover::after { opacity: 1; }

.service-icon { font-size: 40px; display: block; margin-bottom: 24px; position: relative; z-index: 1; }
.service-num {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 72px;
  color: rgba(242, 191, 193, 0.05);
  position: absolute;
  top: 20px; right: 28px;
  line-height: 1;
  transition: color 0.3s;
}
.service-card:hover .service-num { color: rgba(242, 191, 193, 0.1); }
.service-card h3 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 34px;
  letter-spacing: 2px;
  color: var(--white);
  margin-bottom: 14px;
  position: relative; z-index: 1;
}
.service-card p {
  font-size: 14px;
  color: var(--muted);
  line-height: 1.85;
  font-weight: 300;
  margin-bottom: 24px;
  position: relative; z-index: 1;
}
.service-tags { display: flex; flex-wrap: wrap; gap: 8px; position: relative; z-index: 1; }
.tag {
  font-size: 9px;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 5px 12px;
  border: 1px solid rgba(242, 191, 193, 0.2);
  color: var(--pink-light);
  border-radius: 2px;
  transition: background 0.3s, border-color 0.3s;
}
.tag:hover { background: rgba(242,191,193,0.08); border-color: var(--pink-light); }

/* ─── FLEET ─── */
#fleet { background: var(--charcoal); }
.machinery-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 60px;
  gap: 40px;
  flex-wrap: wrap;
}
.machinery-desc {
  max-width: 380px;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.8;
  font-weight: 300;
}
.fleet-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.fleet-card {
  background: var(--smoke);
  border-radius: 4px;
  overflow: hidden;
  transition: transform 0.35s, box-shadow 0.35s;
  border: 1px solid rgba(255,255,255,0.04);
}
.fleet-card:hover {
  transform: translateY(-7px);
  box-shadow: 0 20px 48px rgba(120, 76, 88, 0.2);
}
.fleet-img {
  width: 100%;
  aspect-ratio: 16/10;
  background: linear-gradient(135deg, #1A0E12 0%, #0D080A 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 48px;
  position: relative;
  overflow: hidden;
}
.fleet-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.fleet-img::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 50%;
  background: linear-gradient(to top, rgba(13, 8, 10, 0.9), transparent);
}
.fleet-info { padding: 24px; }
.fleet-badge {
  font-size: 9px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--pink-light);
  font-weight: 600;
  margin-bottom: 8px;
}
.fleet-card h4 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 26px;
  letter-spacing: 2px;
  color: var(--white);
  margin-bottom: 8px;
}
.fleet-card p { font-size: 12px; color: var(--muted); line-height: 1.65; }

/* ─── PROJECT STRIP ─── */
.project-strip {
  background: linear-gradient(135deg, #1A0E12 0%, #0A0608 50%, #120A0D 100%);
  padding: 100px 60px;
  position: relative;
  overflow: hidden;
  border-top: 1px solid rgba(242, 191, 193, 0.08);
  border-bottom: 1px solid rgba(242, 191, 193, 0.08);
}
.project-cta {
  margin-top: 32px;
  display: inline-block;
}
.project-strip::before {
  content: 'BOLOKA';
  position: absolute;
  font-family: 'Bebas Neue', sans-serif;
  font-size: 220px;
  color: rgba(242, 191, 193, 0.03);
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  letter-spacing: 20px;
  white-space: nowrap;
  pointer-events: none;
}
/* Pink glow blob */
.project-strip::after {
  content: '';
  position: absolute;
  width: 600px; height: 600px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(120,76,88,0.18) 0%, transparent 70%);
  top: 50%; left: 20%;
  transform: translate(-50%, -50%);
  pointer-events: none;
}
.project-strip-inner {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 60px;
  flex-wrap: wrap;
}
.project-strip h2 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(44px, 6vw, 76px);
  letter-spacing: 2px;
  line-height: 0.95;
  color: var(--white);
  max-width: 500px;
}
.project-strip h2 span {
  background: var(--grad-pink);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.project-strip p {
  color: var(--muted);
  font-size: 14px;
  line-height: 1.85;
  max-width: 400px;
  font-weight: 300;
}
.project-highlights { display: flex; gap: 48px; margin-top: 36px; }
.highlight { display: flex; flex-direction: column; }
.highlight-num {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 56px;
  background: var(--grad-pink);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
}
.highlight-label {
  font-size: 9px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--muted);
  margin-top: 5px;
}

/* ─── WHY US ─── */
#why { background: var(--smoke); }
.why-grid {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 80px;
  margin-top: 60px;
  align-items: start;
}
.why-items { display: flex; flex-direction: column; gap: 2px; }
.why-item {
  padding: 28px 32px;
  background: var(--ash);
  border-radius: 2px;
  cursor: pointer;
  transition: background 0.3s;
  position: relative;
}
.why-item.active, .why-item:hover { background: #1E1215; }
.why-item::after {
  content: '';
  position: absolute;
  left: 0; top: 0; bottom: 0;
  width: 3px;
  background: var(--grad-pink-v);
  opacity: 0;
  transition: opacity 0.3s;
}
.why-item.active::after, .why-item:hover::after { opacity: 1; }
.why-item-num {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 11px;
  letter-spacing: 3px;
  color: var(--pink-light);
  margin-bottom: 8px;
}
.why-item h4 { font-size: 15px; font-weight: 600; color: var(--white); letter-spacing: 0.3px; }

.why-visual { position: sticky; top: 120px; }
.why-big-text {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(80px, 12vw, 160px);
  line-height: 0.85;
  background: var(--grad-pink);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  opacity: 0.12;
  letter-spacing: 4px;
  margin-bottom: 48px;
}
.why-content-box {
  background: var(--ash);
  padding: 48px;
  border-radius: 4px;
  border: 1px solid rgba(242, 191, 193, 0.1);
  position: relative;
  overflow: hidden;
}
.why-content-box::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: var(--grad-pink);
}
.why-content-box h3 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 36px;
  letter-spacing: 2px;
  color: var(--white);
  margin-bottom: 16px;
}
.why-content-box p { color: var(--muted); font-size: 14px; line-height: 1.9; font-weight: 300; }
.why-content-box ul { list-style: none; margin-top: 24px; }
.why-content-box ul li {
  font-size: 13px;
  color: var(--muted);
  padding: 11px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  display: flex;
  align-items: center;
  gap: 14px;
}
.why-content-box ul li::before {
  content: '◆';
  background: var(--grad-pink);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-size: 8px;
  flex-shrink: 0;
}

/* ─── CONTACT ─── */
#contact { background: var(--charcoal); }
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 80px;
  margin-top: 60px;
  align-items: start;
}
.contact-info p {
  font-size: 14px;
  color: var(--muted);
  line-height: 1.85;
  font-weight: 300;
  margin-bottom: 40px;
}
.contact-items { display: flex; flex-direction: column; }
.contact-item {
  padding: 22px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  display: flex;
  align-items: flex-start;
  gap: 20px;
}
.contact-icon {
  width: 42px; height: 42px;
  background: rgba(120, 76, 88, 0.15);
  border: 1px solid rgba(242, 191, 193, 0.12);
  border-radius: 2px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  flex-shrink: 0;
}
.contact-item-content h5 {
  font-size: 9px;
  letter-spacing: 3.5px;
  text-transform: uppercase;
  color: var(--pink-light);
  margin-bottom: 5px;
}
.contact-item-content p { margin: 0; font-size: 14px; color: var(--text); }
.contact-item-content a { color: var(--text); text-decoration: none; transition: color 0.3s; }
.contact-item-content a:hover { color: var(--pink-light); }

/* ─── QUOTE FORM ─── */
.quote-form {
  background: var(--smoke);
  padding: 48px;
  border-radius: 4px;
  border: 1px solid rgba(242, 191, 193, 0.1);
  position: relative;
  overflow: hidden;
}
.quote-form::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: var(--grad-pink);
}
.quote-form h3 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 32px;
  letter-spacing: 2px;
  color: var(--white);
  margin-bottom: 8px;
}
.quote-form > p { font-size: 13px; color: var(--muted); margin-bottom: 32px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-group { margin-bottom: 20px; }
.form-group label {
  display: block;
  font-size: 9px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 8px;
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.07);
  padding: 14px 16px;
  color: var(--white);
  font-family: 'Barlow', sans-serif;
  font-size: 14px;
  border-radius: 2px;
  outline: none;
  transition: border-color 0.3s, background 0.3s;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--pink);
  background: rgba(120, 76, 88, 0.06);
}
.form-group select option { background: var(--smoke); }
.form-group textarea { resize: vertical; min-height: 100px; }
.form-submit {
  width: 100%;
  background: var(--grad-pink);
  color: var(--white);
  border: none;
  padding: 16px;
  font-family: 'Barlow', sans-serif;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  cursor: pointer;
  border-radius: 2px;
  transition: opacity 0.3s, transform 0.2s;
  margin-top: 8px;
}
.form-submit:hover { opacity: 0.85; transform: translateY(-1px); }
.form-submit:disabled { opacity: 0.6; cursor: not-allowed; transform: none; }
.form-success {
  display: none;
  text-align: center;
  padding: 32px 24px;
  color: var(--pink-light);
  font-size: 14px;
  line-height: 1.8;
}

/* ─── MAP ─── */
.map-wrap {
  margin-top: 36px;
  border-radius: 4px;
  overflow: hidden;
  border: 1px solid rgba(242, 191, 193, 0.08);
}
.map-wrap iframe {
  width: 100%;
  height: 220px;
  border: none;
  display: block;
  filter: grayscale(1) invert(1) hue-rotate(180deg) brightness(0.65) sepia(0.1);
}

/* ─── FOOTER ─── */
footer {
  background: #030203;
  padding: 64px 60px 32px;
  border-top: 1px solid rgba(242, 191, 193, 0.08);
}
.footer-top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 64px;
  gap: 40px;
  flex-wrap: wrap;
}
.footer-brand .logo-main { font-size: 30px; }
.footer-brand p {
  color: var(--muted);
  font-size: 13px;
  margin-top: 16px;
  max-width: 280px;
  line-height: 1.75;
}
.footer-links h6 {
  font-size: 9px;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--pink-light);
  margin-bottom: 20px;
}
.footer-links a {
  display: block;
  color: var(--muted);
  text-decoration: none;
  font-size: 13px;
  margin-bottom: 12px;
  transition: color 0.3s;
}
.footer-links a:hover { color: var(--white); }
.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.04);
  padding-top: 28px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}
.footer-bottom p { font-size: 11px; color: var(--faint); letter-spacing: 1px; }
.footer-bottom span {
  background: var(--grad-pink);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
