:root {
  --navy: #061322;
  --navy-2: #0b1d31;
  --navy-3: #101f2f;
  --orange: #ff6a00;
  --orange-dark: #d95800;
  --white: #ffffff;
  --light: #f4f7fa;
  --muted: #cbd5df;
  --dark-text: #1c2d3f;
  --body-text: #526273;
  --line: rgba(255,255,255,0.14);
  --shadow: 0 24px 70px rgba(0,0,0,0.28);
  --radius: 24px;
}
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { margin: 0; font-family: Arial, Helvetica, sans-serif; background: var(--navy); color: var(--white); line-height: 1.6; }
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
.container { width: min(1180px, calc(100% - 40px)); margin: 0 auto; }
.site-header { position: sticky; top: 0; z-index: 100; background: rgba(6, 19, 34, 0.95); border-bottom: 1px solid var(--line); backdrop-filter: blur(12px); }
.header-inner { min-height: 78px; display: flex; align-items: center; justify-content: space-between; gap: 22px; }
.brand img { width: 245px; }
.nav { display: flex; align-items: center; gap: 26px; color: var(--muted); font-size: 14px; font-weight: 700; }
.nav a:hover { color: var(--orange); }
.menu-toggle { display: none; background: transparent; color: var(--white); border: 0; font-size: 30px; }
.btn { display: inline-flex; align-items: center; justify-content: center; min-height: 48px; padding: 13px 23px; border-radius: 999px; font-weight: 800; border: 1px solid transparent; transition: 0.22s ease; }
.btn:hover { transform: translateY(-2px); }
.btn-primary { background: var(--orange); color: var(--white); }
.btn-primary:hover { background: var(--orange-dark); }
.btn-outline { border-color: rgba(255,255,255,0.38); color: var(--white); }
.btn-dark { background: var(--navy); color: var(--white); }
.section-dark { background: radial-gradient(circle at 15% 10%, rgba(255,106,0,0.12), transparent 26%), linear-gradient(180deg, var(--navy), var(--navy-2)); }
.section-light { background: var(--light); color: var(--dark-text); }
.alt-dark { background: linear-gradient(180deg, var(--navy-2), var(--navy)); }
.eyebrow { margin: 0 0 14px; color: var(--orange); font-size: 12px; font-weight: 900; letter-spacing: 2px; text-transform: uppercase; }
h1, h2, h3, p { margin-top: 0; }
h1 { max-width: 820px; margin-bottom: 20px; font-size: clamp(44px, 6.2vw, 86px); line-height: 0.98; letter-spacing: -3px; }
h2 { margin-bottom: 18px; font-size: clamp(32px, 4.2vw, 56px); line-height: 1.05; letter-spacing: -1.7px; }
h3 { font-size: 22px; line-height: 1.18; }
.hero { position: relative; min-height: 92vh; display: flex; align-items: center; overflow: hidden; }
.hero-bg { position: absolute; inset: 0; }
.hero-bg img { width: 100%; height: 100%; object-fit: cover; }
.hero-bg::after { content: ""; position: absolute; inset: 0; background: linear-gradient(90deg, rgba(4,12,22,0.94) 0%, rgba(4,12,22,0.78) 43%, rgba(4,12,22,0.22) 100%), linear-gradient(0deg, rgba(4,12,22,0.72), transparent 42%); }
.hero-content { position: relative; z-index: 2; padding: 90px 0 70px; }
.hero-lead { max-width: 680px; margin-bottom: 30px; color: var(--muted); font-size: 21px; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; margin-bottom: 48px; }
.hero-strip { width: min(920px, 100%); display: grid; grid-template-columns: repeat(3, 1fr); gap: 1px; overflow: hidden; border-radius: var(--radius); border: 1px solid var(--line); background: var(--line); box-shadow: var(--shadow); }
.hero-strip div { padding: 22px; background: rgba(6, 19, 34, 0.78); }
.hero-strip strong { display: block; margin-bottom: 6px; color: var(--white); font-size: 18px; }
.hero-strip span { color: var(--muted); font-size: 14px; }
section { padding: 84px 0; }
.split, .feature-grid, .contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 46px; align-items: center; }
.reverse { direction: rtl; }
.reverse > * { direction: ltr; }
.intro-copy p, .feature-copy p, .contact p { color: var(--body-text); font-size: 18px; }
.light-copy p { color: var(--muted); }
.section-head { max-width: 830px; margin-bottom: 34px; }
.section-head.wide { max-width: 940px; }
.section-head p { max-width: 720px; color: var(--muted); font-size: 18px; }
.service-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
  align-items: stretch;
}
.service-card {
  display: flex;
  flex-direction: column;
  height: 100%;
  min-height: 290px;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255,255,255,0.06);
  box-shadow: var(--shadow);
  color: var(--white);
  transition: 0.22s ease;
}
.service-card:hover {
  transform: translateY(-5px);
  border-color: rgba(255,106,0,0.55);
}
.service-card h3 {
  color: var(--white);
  margin-bottom: 12px;
}
.service-card p {
  color: var(--muted);
  margin-bottom: 0;
}
.service-icon {
  display: inline-block;
  margin-bottom: 18px;
  color: var(--orange);
  font-size: 30px;
  font-weight: 900;
}
.feature-image { overflow: hidden; border-radius: var(--radius); box-shadow: var(--shadow); }
.feature-image img { width: 100%; min-height: 470px; object-fit: cover; }
.checklist { margin: 28px 0 0; padding: 0; list-style: none; }
.checklist li { position: relative; padding: 13px 0 13px 34px; border-bottom: 1px solid #dce5ee; color: var(--body-text); font-weight: 700; }
.dark-list li { border-bottom-color: rgba(255,255,255,0.12); color: var(--muted); }
.checklist li::before { content: "✓"; position: absolute; left: 0; color: var(--orange); font-weight: 900; }
.industry-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.industry-grid div { padding: 24px; border-radius: 18px; background: rgba(255,255,255,0.06); border: 1px solid var(--line); font-size: 20px; font-weight: 800; }
.process-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; }
.process-grid article { padding: 28px; border-radius: var(--radius); background: #fff; box-shadow: 0 18px 44px rgba(20,38,55,0.08); border: 1px solid #e0e8f0; }
.process-grid span { display: inline-block; margin-bottom: 18px; color: var(--orange); font-size: 30px; font-weight: 900; }
.process-grid p { color: var(--body-text); }
.gallery-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.gallery-card { position: relative; overflow: hidden; padding: 0; border: 0; border-radius: var(--radius); background: transparent; cursor: pointer; box-shadow: var(--shadow); }
.gallery-card img { width: 100%; aspect-ratio: 1 / 1; object-fit: cover; transition: 0.32s ease; }
.gallery-card:hover img { transform: scale(1.05); }
.gallery-card span { position: absolute; left: 0; right: 0; bottom: 0; padding: 34px 18px 18px; color: var(--white); font-size: 18px; font-weight: 900; text-align: left; background: linear-gradient(180deg, transparent, rgba(0,0,0,0.86)); }
.cta-band { padding: 62px 0; background: linear-gradient(90deg, var(--orange), #ff8d2c); }
.cta-inner { display: flex; align-items: center; justify-content: space-between; gap: 32px; }
.cta-inner h2 { margin-bottom: 10px; }
.cta-inner p { margin-bottom: 0; font-size: 18px; }
.contact-details { display: grid; gap: 16px; margin-top: 30px; }
.contact-details div { padding: 18px; border-left: 4px solid var(--orange); background: #fff; box-shadow: 0 10px 30px rgba(15,30,45,0.06); }
.contact-details strong { display: block; }
.contact-details span { color: var(--body-text); }
.contact-form { display: grid; gap: 16px; padding: 30px; border-radius: var(--radius); background: #fff; box-shadow: 0 22px 54px rgba(20,38,55,0.10); border: 1px solid #e0e8f0; }
.contact-form label { font-size: 14px; font-weight: 800; }
.contact-form input, .contact-form textarea { width: 100%; margin-top: 8px; padding: 14px; border: 1px solid #d2dce7; border-radius: 12px; font: inherit; }
.contact-form input:focus, .contact-form textarea:focus { outline: 3px solid rgba(255,106,0,0.14); border-color: var(--orange); }
.site-footer { background: #030b14; border-top: 1px solid var(--line); }
.footer-inner { display: flex; align-items: center; justify-content: space-between; gap: 28px; padding: 30px 0; }
.footer-inner strong { font-size: 24px; }
.footer-inner p { margin-bottom: 0; color: var(--muted); }
.footer-links { display: flex; gap: 20px; color: var(--muted); }
.footer-contact { flex-wrap: wrap; justify-content: flex-end; }
.footer-links a:hover { color: var(--orange); }
.lightbox { position: fixed; inset: 0; z-index: 1000; display: none; align-items: center; justify-content: center; }
.lightbox.active { display: flex; }
.lightbox-bg { position: absolute; inset: 0; background: rgba(0,0,0,0.78); }
.lightbox-panel { position: relative; z-index: 2; width: min(1080px, calc(100% - 32px)); overflow: hidden; border-radius: var(--radius); background: var(--navy); border: 1px solid var(--line); box-shadow: var(--shadow); }
.lightbox-panel img { width: 100%; max-height: 74vh; object-fit: contain; background: #000; }
.lightbox-text { padding: 24px; }
.lightbox-text h3 { margin-bottom: 6px; }
.lightbox-text p { margin-bottom: 0; color: var(--muted); }
.lightbox-close { position: absolute; top: 12px; right: 12px; z-index: 3; width: 44px; height: 44px; border: 0; border-radius: 50%; background: rgba(0,0,0,0.65); color: var(--white); font-size: 30px; cursor: pointer; }
@media (max-width: 1080px) {
  .header-cta { display: none; }
  .service-grid, .process-grid, .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .split, .feature-grid, .contact-grid { grid-template-columns: 1fr; }
  .industry-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 760px) {
  .container { width: min(100% - 28px, 1180px); }
  .brand img { width: 205px; }
  .menu-toggle { display: block; }
  .nav { position: absolute; top: 78px; left: 14px; right: 14px; display: none; flex-direction: column; align-items: flex-start; padding: 18px; border-radius: 18px; background: var(--navy-2); border: 1px solid var(--line); }
  .nav.open { display: flex; }
  h1 { letter-spacing: -1.7px; }
  .hero-strip, .service-grid, .process-grid, .gallery-grid, .industry-grid { grid-template-columns: 1fr; }
  .cta-inner, .footer-inner { flex-direction: column; align-items: flex-start; }
  .footer-contact { justify-content: flex-start; }
}


/* Integrated visual design sections */
.visual-section {
  padding: 88px 0;
}

.visual-split,
.design-grid,
.process-visual-head {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 46px;
  align-items: center;
}

.visual-copy p,
.design-copy p {
  color: var(--body-text);
  font-size: 18px;
}

.framed-image,
.design-image,
.process-head-image,
.contact-mini-image {
  overflow: hidden;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.framed-image img,
.design-image img,
.process-head-image img,
.contact-mini-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.framed-image img {
  min-height: 460px;
}

.design-image img {
  min-height: 560px;
}

.design-copy {
  min-width: 0;
}

.horizontal-tiles {
  margin-top: 26px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}

.horizontal-tiles div {
  min-height: 72px;
  display: flex;
  align-items: center;
  padding: 18px;
  border-radius: 16px;
}

.process-visual-head {
  margin-bottom: 34px;
}

.process-head-image {
  height: 250px;
}

.process-visual .process-grid {
  grid-template-columns: repeat(4, 1fr);
}

.contact-mini-image {
  margin-bottom: 28px;
  max-height: 260px;
}

.contact-mini-image img {
  height: 260px;
}

@media (max-width: 1080px) {
  .visual-split,
  .design-grid,
  .process-visual-head {
    grid-template-columns: 1fr;
  }

  .horizontal-tiles {
    grid-template-columns: repeat(2, 1fr);
  }

  .process-visual .process-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 760px) {
  .horizontal-tiles,
  .process-visual .process-grid {
    grid-template-columns: 1fr;
  }

  .framed-image img,
  .design-image img {
    min-height: 340px;
  }
}


/* Booking system reserved section */
.booking-section {
  padding: 84px 0;
}

.booking-grid {
  display: grid;
  grid-template-columns: 1fr 0.8fr;
  gap: 42px;
  align-items: center;
}

.booking-section p {
  max-width: 720px;
  color: var(--muted);
  font-size: 18px;
}

.booking-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin: 28px 0 18px;
}

.booking-note {
  padding: 18px;
  border-left: 4px solid var(--orange);
  background: rgba(255,255,255,0.06);
  border-radius: 14px;
  font-size: 15px !important;
}

.booking-card {
  padding: 30px;
  border-radius: var(--radius);
  background: rgba(255,255,255,0.06);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}

.booking-card h3 {
  margin-bottom: 16px;
}

.booking-card ul {
  margin: 0;
  padding-left: 20px;
  color: var(--muted);
}

.booking-card li {
  margin-bottom: 10px;
}

@media (max-width: 1080px) {
  .booking-grid {
    grid-template-columns: 1fr;
  }
}

.coming-soon-label {
  display: inline-flex;
  margin-bottom: 16px;
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(255,106,0,0.15);
  color: var(--orange);
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-size: 12px;
}

.coming-soon-card p {
  color: var(--muted);
}


/* Contact section alignment fix */
.contact-grid {
  align-items: start !important;
}

.contact-form {
  align-self: start;
  margin-top: 0;
}

.contact-details {
  align-items: stretch;
}


/* Hero slideshow */
.hero-slideshow {
  position: absolute;
  inset: 0;
  overflow: hidden;
}

.hero-slideshow .hero-slide {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transform: scale(1.02);
  transition: opacity 1.1s ease-in-out, transform 6s ease;
}

.hero-slideshow .hero-slide.active {
  opacity: 1;
  transform: scale(1);
}


/* Mobile optimization layer */
html, body {
  max-width: 100%;
  overflow-x: hidden;
}

body {
  -webkit-text-size-adjust: 100%;
}

img {
  height: auto;
}

@media (max-width: 1080px) {
  .header-cta {
    display: none;
  }

  .service-grid,
  .process-grid,
  .gallery-grid,
  .industry-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .split,
  .feature-grid,
  .contact-grid,
  .booking-grid {
    grid-template-columns: 1fr;
  }

  .contact-grid {
    gap: 28px;
  }
}

@media (max-width: 760px) {
  .container {
    width: min(100% - 28px, 1180px);
  }

  .site-header {
    position: sticky;
    top: 0;
  }

  .header-inner {
    min-height: 68px;
  }

  .brand img {
    width: 190px;
    max-width: 72vw;
  }

  .menu-toggle {
    display: flex !important;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    border: 1px solid rgba(255,255,255,0.18);
    border-radius: 12px;
    background: rgba(255,255,255,0.06);
    color: var(--white);
    font-size: 26px;
    cursor: pointer;
  }

  .nav {
    position: absolute;
    top: 72px;
    left: 14px;
    right: 14px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 10px;
    border-radius: 18px;
    background: var(--navy-2);
    border: 1px solid var(--line);
    box-shadow: var(--shadow);
    z-index: 200;
  }

  .nav.open {
    display: flex;
  }

  .nav a {
    padding: 14px 14px;
    border-bottom: 1px solid rgba(255,255,255,0.08);
    font-size: 15px;
  }

  .nav a:last-child {
    border-bottom: none;
  }

  .hero {
    min-height: 82vh;
    align-items: flex-end;
  }

  .hero-bg::after {
    background:
      linear-gradient(180deg, rgba(4,12,22,0.25) 0%, rgba(4,12,22,0.72) 45%, rgba(4,12,22,0.96) 100%),
      linear-gradient(90deg, rgba(4,12,22,0.75), rgba(4,12,22,0.22));
  }

  .hero-slideshow .hero-slide {
    object-position: center center;
  }

  .hero-content {
    padding: 96px 0 38px;
  }

  .eyebrow {
    font-size: 11px;
    letter-spacing: 1.5px;
    margin-bottom: 10px;
  }

  h1 {
    max-width: 100%;
    font-size: clamp(34px, 11vw, 48px);
    line-height: 1.03;
    letter-spacing: -1.3px;
    margin-bottom: 16px;
  }

  h2 {
    font-size: clamp(28px, 8.5vw, 38px);
    line-height: 1.08;
    letter-spacing: -1px;
  }

  h3 {
    font-size: 20px;
  }

  .hero-lead {
    font-size: 16px;
    line-height: 1.55;
    max-width: 100%;
    margin-bottom: 22px;
  }

  .hero-actions {
    display: grid;
    grid-template-columns: 1fr;
    gap: 12px;
    margin-bottom: 22px;
  }

  .btn {
    width: 100%;
    min-height: 50px;
    padding: 14px 18px;
    text-align: center;
  }

  .hero-strip {
    grid-template-columns: 1fr;
    border-radius: 18px;
  }

  .hero-strip div {
    padding: 16px;
  }

  .hero-strip strong {
    font-size: 16px;
  }

  .hero-strip span {
    font-size: 14px;
  }

  section {
    padding: 58px 0;
  }

  .section-head {
    margin-bottom: 24px;
  }

  .section-head p,
  .intro-copy p,
  .feature-copy p,
  .contact p,
  .booking-section p {
    font-size: 16px;
  }

  .service-grid,
  .process-grid,
  .gallery-grid,
  .industry-grid,
  .hero-strip {
    grid-template-columns: 1fr;
  }

  .service-card,
  .process-grid article,
  .booking-card,
  .contact-form {
    padding: 22px;
    border-radius: 18px;
  }

  .service-card {
    min-height: auto;
  }

  .feature-image img {
    min-height: 280px;
  }

  .checklist li {
    font-size: 15px;
    padding-top: 11px;
    padding-bottom: 11px;
  }

  .industry-grid div {
    font-size: 17px;
    padding: 18px;
  }

  .cta-inner,
  .footer-inner {
    flex-direction: column;
    align-items: flex-start;
  }

  .cta-band {
    padding: 46px 0;
  }

  .contact-mini-image img {
    height: 220px;
  }

  .contact-form input,
  .contact-form textarea {
    font-size: 16px;
    padding: 14px;
  }

  .footer-links {
    flex-direction: column;
    gap: 10px;
  }
}

@media (max-width: 480px) {
  .container {
    width: min(100% - 22px, 1180px);
  }

  .brand img {
    width: 170px;
  }

  .hero {
    min-height: 86vh;
  }

  .hero-content {
    padding-top: 88px;
  }

  h1 {
    font-size: clamp(31px, 11.5vw, 42px);
  }

  h2 {
    font-size: clamp(25px, 8.8vw, 34px);
  }

  .hero-lead {
    font-size: 15.5px;
  }

  .hero-strip div {
    padding: 14px;
  }

  section {
    padding: 48px 0;
  }

  .service-card,
  .process-grid article,
  .contact-form,
  .booking-card {
    padding: 19px;
  }

  .feature-image img,
  .framed-image img,
  .design-image img {
    min-height: 240px;
  }
}





/* Streamlined conversion elements */
.checkbox-label {
  display: flex !important;
  align-items: center;
  gap: 10px;
  padding: 12px 14px;
  border-radius: 12px;
  background: #f4f7fa;
  color: var(--dark-text);
}

.checkbox-label input {
  width: auto !important;
  margin: 0 !important;
}

.floating-whatsapp {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 999;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 12px 18px;
  border-radius: 999px;
  background: #25D366;
  color: #ffffff;
  font-weight: 900;
  box-shadow: 0 14px 34px rgba(0,0,0,0.25);
}

.floating-whatsapp:hover {
  transform: translateY(-2px);
}

@media (max-width: 760px) {
  .floating-whatsapp {
    right: 12px;
    bottom: 12px;
    min-height: 44px;
    padding: 11px 15px;
    font-size: 14px;
  }
}
