*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --navy: #1B2A4A;
  --navy-dark: #111d35;
  --orange: #E8671A;
  --white: #ffffff;
  --gray: #6b7280;
  --light-bg: #f5f5f7;
  --border: #e5e7eb;
}

body { font-family: 'Inter', sans-serif; color: var(--navy); background: var(--white); }

/* ── NAV ── */
nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 48px; height: 72px;
  background: rgba(27, 42, 74, 0.92); backdrop-filter: blur(12px);
}
.nav-logo { display: flex; align-items: center; gap: 10px; }
.nav-logo img{
  width: 80px;
  height: auto;
}
.nav-links { display: flex; gap: 36px; list-style: none; }
.nav-links a { color: rgba(255,255,255,0.85); text-decoration: none; font-size: 14px; font-weight: 500; transition: color 0.2s; }
.nav-links a:hover { color: var(--orange); }
.nav-cta {
  background: var(--orange); color: white; border: 0.5px solid transparent; border-radius: 50px;
  padding: 10px 24px; font-size: 14px; font-weight: 600; cursor: pointer;
  display: flex; align-items: center; gap: 8px; text-decoration: none;
}
.nav-cta:hover { 
  background: transparent; 
  color: var(--orange);
  border: 0.5px solid var(--orange); 
  transition: all 0.2s;
}

/* ── HERO ── */
.hero {
  min-height: 100vh; position: relative;
  display: flex; align-items: center;
  background: linear-gradient(rgba(27,42,74,0.75), rgba(27,42,74,0.75)),
    url('images/hero-bg.jpeg') center/cover no-repeat;
  padding: 120px 80px 80px;
  overflow: hidden;
}
.hero-hexagon {
  position: absolute; right: -40px; top: 50%; transform: translateY(-50%);
  width: 280px; height: 280px; opacity: 0.15;
  background: var(--orange);
  clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
}
.hero-badge {
  display: inline-flex; align-items: center; gap: 6px;
  border: 1px solid var(--orange); border-radius: 50px;
  padding: 6px 16px; color: var(--orange); font-size: 12px;
  font-weight: 500; letter-spacing: 1px; text-transform: uppercase; margin-bottom: 24px;
}
.hero-badge::before { font-size: 12px; }
.hero h1 {
  font-size: clamp(48px, 6vw, 80px); font-weight: 800; line-height: 1.05;
  color: white; margin-bottom: 20px; max-width: 900px;
}
.hero h1 span { color: var(--orange); }
.hero p { color: rgba(255,255,255,0.75); font-size: 16px; max-width: 440px; margin-bottom: 36px; line-height: 1.6; }
.hero-btns { display: flex; gap: 16px; flex-wrap: wrap; }
.btn-primary {
  background: var(--orange); color: white; border: none; border-radius: 50px;
  padding: 16px 32px; font-size: 15px; font-weight: 700; cursor: pointer;
  display: inline-flex; align-items: center; gap: 8px; text-decoration: none;
  transition: opacity 0.2s;
}
.btn-primary:hover { opacity: 0.9; }
.btn-secondary {
  background: transparent; color: white;
  border: 2px solid rgba(255,255,255,0.5); border-radius: 50px;
  padding: 16px 32px; font-size: 15px; font-weight: 600; cursor: pointer;
  text-decoration: none; transition: border-color 0.2s;
}
.btn-secondary:hover { border-color: white; }

/* ── SERVICES ── */
.services { padding: 100px 80px; background: var(--white); }
.section-eyebrow {
  display: flex; align-items: center; gap: 10px;
  font-size: 11px; font-weight: 700; letter-spacing: 2px;
  text-transform: uppercase; color: var(--orange); margin-bottom: 20px;
}
.section-eyebrow::before { content: ''; width: 32px; height: 2px; background: var(--orange); }
.services-header { display: flex; align-items: flex-start; justify-content: space-between; margin-bottom: 56px; flex-wrap: wrap; gap: 24px; }
.services-header h2 { font-size: clamp(32px, 4vw, 52px); font-weight: 900; line-height: 1.1; max-width: 600px; }
.services-header p { color: var(--gray); font-size: 15px; max-width: 320px; line-height: 1.7; padding-top: 8px; }
.services-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.service-card {
  border: 1px solid var(--border); border-radius: 12px;
  padding: 24px; display: flex; align-items: center; gap: 16px;
  transition: box-shadow 0.2s, transform 0.2s;
}
.service-card:hover{ 
  box-shadow: 0 8px 24px rgba(0,0,0,0.08); transform: translateY(-2px); 
  background-color: rgba(232, 103, 26, 0.1);
  border: 1px solid var(--orange);
}
.service-card:hover svg { color: var(--orange); }
.service-card h3 { font-size: 15px; font-weight: 700; margin-bottom: 4px; }
.service-card p { font-size: 13px; color: var(--gray); }

/* ── BEFORE & AFTER ── */
.gallery { padding: 100px 80px; background: var(--light-bg); }
.gallery-header { display: flex; align-items: flex-end; justify-content: space-between; margin-bottom: 48px; flex-wrap: wrap; gap: 16px; }
.gallery-header h2 { font-size: clamp(32px, 4vw, 52px); font-weight: 900; }
.gallery-header p { color: var(--gray); font-size: 14px; max-width: 340px; }
.gallery-nav { display: flex; gap: 12px; }
.gallery-btn {
  width: 48px; height: 48px; border-radius: 50%;
  border: 2px solid var(--border); background: white;
  cursor: pointer; font-size: 18px; display: flex; align-items: center; justify-content: center;
  transition: all 0.2s;
}
.gallery-btn:hover { border-color: var(--navy); background: var(--navy); color: white; }

/* Before/After Slider */
.ba-wrapper { position: relative; border-radius: 16px; overflow: hidden; user-select: none;  width:75%; margin: 0 auto; }
.ba-container { position: relative; width: 100%; aspect-ratio: 16/9; overflow: hidden; }
.ba-img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.ba-img.after { clip-path: inset(0 0 0 50%); }
.ba-label {
  position: absolute; top: 16px; padding: 6px 14px; border-radius: 20px;
  font-size: 12px; font-weight: 700; letter-spacing: 1px; text-transform: uppercase;
}
.ba-label.before { left: 16px; background: var(--navy); color: white; }
.ba-label.after { right: 16px; background: var(--orange); color: white; }
.ba-project-label {
  position: absolute; bottom: 16px; left: 16px;
  background: white; border-radius: 20px; padding: 6px 14px;
  font-size: 12px; font-weight: 700; letter-spacing: 0.5px; color: var(--navy);
}
.ba-divider {
  position: absolute; top: 0; bottom: 0; width: 4px;
  background: white; left: 50%; transform: translateX(-50%);
  cursor: ew-resize; z-index: 10;
}
.ba-handle {
  position: absolute; top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 44px; height: 44px; border-radius: 50%;
  background: var(--orange); display: flex; align-items: center; justify-content: center;
  font-size: 16px; color: white; cursor: ew-resize; z-index: 11;
  box-shadow: 0 4px 12px rgba(0,0,0,0.3);
}
.gallery-dots { display: flex; justify-content: center; gap: 8px; margin-top: 24px; }
.dot {
  width: 10px; height: 10px; border-radius: 50%;
  background: var(--gray); cursor: pointer; border: none; transition: background 0.2s;
}
.dot.active { background: var(--orange); width: 28px; border-radius: 5px; }


/* ── SHOWCASE SLIDER ── */
.showcase {
  background: var(--navy);
  padding: 100px 0;
  overflow: hidden;
}
.showcase-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 80px;
}
.showcase-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 48px;
}
.showcase-header .section-eyebrow {
  color: var(--orange);
}
.showcase-header .section-eyebrow::before {
  background: var(--orange);
}
.showcase-header h2 {
  font-size: clamp(32px, 4vw, 52px);
  font-weight: 900;
  margin-top: 8px;
  margin-bottom: 8px;
  color: var(--white);
}
.showcase-header p {
  color: rgba(255, 255, 255, 0.6);
  font-size: 14px;
  max-width: 340px;
  line-height: 1.6;
}
.showcase-nav { display: flex; gap: 12px; align-self: flex-end; }
.showcase-nav .gallery-btn {
  border-color: rgba(255, 255, 255, 0.25);
  background: rgba(255, 255, 255, 0.07);
  color: white;
}
.showcase-nav .gallery-btn:hover {
  border-color: var(--orange);
  background: var(--orange);
  color: white;
}

/* Track */
.showcase-track-wrapper {
  overflow: hidden;
  border-radius: 16px;
}
.showcase-track {
  display: flex;
  gap: 20px;
  transition: transform 0.45s cubic-bezier(0.4, 0, 0.2, 1);
  will-change: transform;
}
.showcase-slide {
  position: relative;
  flex: 0 0 calc(33.333% - 14px);
  aspect-ratio: 4/3;
  border-radius: 16px;
  overflow: hidden;
  cursor: pointer;
  border: 1px solid rgba(255, 255, 255, 0.08);
}
.showcase-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
  display: block;
}
.showcase-slide:hover img {
  transform: scale(1.05);
}
.showcase-label {
  position: absolute;
  bottom: 14px;
  left: 14px;
  background: rgba(27, 42, 74, 0.85);
  backdrop-filter: blur(6px);
  color: white;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 6px 14px;
  border-radius: 50px;
  border: 1px solid rgba(232, 103, 26, 0.4);
}

/* Dots */
.showcase-dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 28px;
}
.showcase-dot {
  width: 10px;
  height: 10px;
  border-radius: 5px;
  border: none;
  background: rgba(255, 255, 255, 0.25);
  cursor: pointer;
  transition: all 0.2s;
}
.showcase-dot.active {
  width: 28px;
  background: var(--orange);
}

/* Responsive */
@media (max-width: 900px) {
  .showcase-inner { padding: 0 24px; }
  .showcase-slide { flex: 0 0 calc(50% - 10px); }
}
@media (max-width: 560px) {
  .showcase-slide { flex: 0 0 85%; }
}

/* ── WHY US ── */
.why { padding: 100px 80px; background: white; }
.why h2 { font-size: clamp(28px, 3.5vw, 44px); font-weight: 900; text-align: center; margin-bottom: 56px; }
.why-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.why-card {
  border: 1px solid var(--border); border-radius: 12px;
  padding: 36px 24px; text-align: center;
}
.why-icon {
  width: 56px; height: 56px; border-radius: 50%;
  background: #f7f0ec; display: flex; align-items: center;
  justify-content: center; font-size: 22px; margin: 0 auto 16px;
}
.why-card p { font-size: 14px; font-weight: 600; color: var(--navy); }
.why-card:hover{
  box-shadow: 0 8px 24px rgba(0,0,0,0.08); 
  border: 1px solid black;
  transition: box-shadow 0.2s, border 0.2s;
}
.why-card:hover .why-icon { background: var(--orange); transition: background 0.3s; }
.why-card:hover .why-icon svg { stroke: var(--white); transition: stroke 0.3s; }

/* ── CONTACT ── */
.contact {
  background: var(--navy); padding: 100px 80px;
  position: relative; overflow: hidden;
  clip-path: polygon(0 60px, 100% 0, 100% 100%, 0 100%);
  padding-top: 160px;
}
.contact-hex {
  position: absolute; left: -60px; top: 50%; transform: translateY(-50%);
  width: 200px; height: 200px; opacity: 0.1;
  background: var(--orange);
  clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
}
.contact-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: start; position: relative; }
.contact-left .eyebrow { color: var(--orange); font-size: 11px; font-weight: 700; letter-spacing: 2px; text-transform: uppercase; display: flex; align-items: center; gap: 10px; margin-bottom: 20px; }
.contact-left .eyebrow::before { content: ''; width: 32px; height: 2px; background: var(--orange); }
.contact-left h2 { font-size: clamp(32px, 4vw, 52px); font-weight: 900; color: white; line-height: 1.1; margin-bottom: 48px; }
.contact-left h2 span { color: var(--orange); }
.contact-info { display: flex; flex-direction: column; gap: 24px; }
.contact-item { display: flex; align-items: center; gap: 16px; }
.contact-item a {
  display: flex; align-items: center; gap: 16px; text-decoration: none;
}
.contact-item-icon {
  width: 48px; height: 48px; border-radius: 10px; flex-shrink: 0;
  display: flex; align-items: center; justify-content: center; font-size: 18px;
}
.contact-item-icon svg{
  color: var(--orange);
}
.contact-item-text small { display: block; font-size: 11px; color: rgba(255,255,255,0.5); text-transform: uppercase; letter-spacing: 1px; margin-bottom: 2px; }
.contact-item-text strong { color: white; font-size: 15px; }
.contact-form-card { background: white; border-radius: 16px; padding: 40px; }
.contact-form-card h3 { font-size: 20px; font-weight: 800; margin-bottom: 6px; }
.contact-form-card p { color: var(--gray); font-size: 13px; margin-bottom: 28px; }
.form-group { margin-bottom: 16px; }
.form-group label { display: block; font-size: 11px; font-weight: 700; letter-spacing: 1px; text-transform: uppercase; color: var(--navy); margin-bottom: 8px; }
.form-group input, .form-group textarea {
  width: 100%; border: 1px solid var(--border); border-radius: 8px;
  padding: 12px 16px; font-size: 14px; font-family: inherit;
  outline: none; transition: border-color 0.2s;
}
.form-group input:focus, .form-group textarea:focus { border-color: var(--orange); }
.form-group textarea { height: 100px; resize: vertical; }
.btn-submit {
  width: 100%; background: var(--orange); color: white; border: none;
  border-radius: 50px; padding: 16px; font-size: 15px; font-weight: 700;
  cursor: pointer; display: flex; align-items: center; justify-content: center;
  gap: 8px; margin-top: 8px; transition: opacity 0.2s;
}
.btn-submit:hover { opacity: 0.9; }

/* ── FOOTER ── */
footer {
  background: var(--navy-dark); padding: 24px 80px;
  display: flex; align-items: center; justify-content: space-between;
}
footer img{
  width: 100px;
  border-radius: 8px;
  
}
footer p { color: rgba(255,255,255,0.4); font-size: 13px; }


/* scrollbar */
::-webkit-scrollbar {
  width: 8px;
}
::-webkit-scrollbar-track {
  background: var(--navy-dark);
}
::-webkit-scrollbar-thumb {
  background: var(--orange);
  border-radius: 4px;
}

/* ── TOAST ── */
.toast {
  position: fixed;
  bottom: 24px;
  right: 24px;
  background: var(--navy);
  color: white;
  padding: 16px 24px;
  border-radius: 12px;
  font-size: 14px;
  font-weight: 600;
  box-shadow: var(--shadow-elegant);
  display: flex;
  align-items: center;
  gap: 10px;
  z-index: 999;
  transform: translateY(80px);
  opacity: 0;
  transition: transform 0.3s, opacity 0.3s;
}
.toast.show { transform: translateY(0); opacity: 1; }
.toast-icon { color: var(--orange); font-size: 18px; }
 
/* ── RESPONSIVE ── */
@media (max-width: 1024px) {
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .why-grid { grid-template-columns: repeat(2, 1fr); }
  .contact-inner { grid-template-columns: 1fr; gap: 48px; }
}


/* ── RESPONSIVE ── */
@media (max-width: 900px) {
  nav { padding: 0 24px; }
  .nav-links { display: none; }
  .hero, .services, .gallery, .why, .contact { padding-left: 24px; padding-right: 24px; }
  .services-grid { grid-template-columns: 1fr 1fr; }
  .why-grid { grid-template-columns: 1fr 1fr; }
  .contact-inner { grid-template-columns: 1fr; gap: 48px; }
  footer { flex-direction: column; gap: 12px; text-align: center; }
}
@media (max-width: 560px) {
  .services-grid { grid-template-columns: 1fr; }
  .why-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 900px) {
  .showcase-inner { padding: 0 24px; }
  .showcase-slide { flex: 0 0 calc(50% - 10px); }
}
@media (max-width: 640px) {
  .showcase-slide { flex: 0 0 100%; }
  .showcase-track-wrapper { border-radius: 12px; }
}
/*  ── FORM VALIDATION ERRORS ──  */
.form-error {
  display: block;
  font-size: 11px;
  font-weight: 600;
  color: #e53e3e;
  margin-top: 5px;
  min-height: 16px;
}
.form-group input.error,
.form-group textarea.error {
  border-color: #e53e3e;
}

/* ── LANG TOGGLE ── */
.nav-right {
  display: flex;
  align-items: center;
  gap: 12px;
}
.lang-toggle {
  background: transparent;
  border: 1.5px solid rgba(255,255,255,0.4);
  color: white;
  border-radius: 50px;
  padding: 6px 14px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1px;
  cursor: pointer;
  transition: all 0.2s;
  font-family: inherit;
}
.lang-toggle:hover {
  border-color: var(--orange);
  color: var(--orange);
}
