:root {
  --navy: #07334b;
  --navy-dark: #021f31;
  --orange: #f56a00;
  --green: #149447;
  --cream: #fff8ed;
  --soft: #f4f7f8;
  --text: #17384b;
  --muted: #5e707a;
  --border: #dfe7ea;
  --shadow: 0 15px 40px rgba(1, 38, 58, .1);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Inter, Arial, sans-serif;
  color: var(--text);
  font-size: 16px;
  line-height: 1.65;
  background: #fff;
}

h1,
h2,
h3 {
  font-family: "Barlow Condensed", Arial, sans-serif;
  line-height: 1.05;
  margin: 0 0 16px;
  color: var(--navy);
}

h1 {
  font-size: clamp(3rem, 6vw, 5.25rem);
}

h2 {
  font-size: clamp(2.3rem, 4vw, 3.4rem);
}

h3 {
  font-size: 1.6rem;
}

p {
  margin: 0 0 18px;
  color: var(--muted);
}

a {
  text-decoration: none;
  color: inherit;
}

img {
  display: block;
  max-width: 100%;
}

.container-custom {
  width: min(1280px, calc(100% - 48px));
  margin: auto;
}

.skip-link {
  position: fixed;
  left: 16px;
  top: -60px;
  background: #fff;
  color: var(--navy);
  padding: 10px 16px;
  z-index: 9999;
}

.skip-link:focus {
  top: 16px;
}

.top-bar {
  background: var(--navy-dark);
  color: #fff;
  font-size: .82rem;
  padding: 8px 0;
}

.top-bar a {
  color: #fff;
}

.top-row {
  display: flex;
  justify-content: space-between;
  gap: 24px;
}

.top-row span {
  margin: 0 12px;
  opacity: .45;
}

.main-header {
  position: sticky;
  top: 0;
  background: #fff;
  border-bottom: 1px solid var(--border);
  z-index: 100;
}

.header-row {
  height: 82px;
  display: flex;
  align-items: center;
  gap: 30px;
}

.brand-logo,
.footer-brand {
  display: inline-flex;
  flex-direction: column;
  line-height: 1;
}

.brand-main {
  position: relative;
  font-family: "Barlow Condensed", Arial, sans-serif;
  font-size: 2.15rem;
  font-weight: 700;
  letter-spacing: -.02em;
  color: var(--navy);
  white-space: nowrap;
}

.brand-main>span {
  color: var(--orange);
}

.brand-main i {
  color: var(--orange);
  font-size: .92rem;
  margin-left: 4px;
  vertical-align: top;
}

.brand-logo small,
.footer-brand small {
  margin-top: 5px;
  color: #617582;
  font-size: .64rem;
  font-weight: 700;
  letter-spacing: .13em;
  text-transform: uppercase;
}

.main-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 4px;
  margin-left: auto;
}

.nav-link {
  padding: 27px 12px 25px;
  font-size: .9rem;
  font-weight: 650;
  border-bottom: 3px solid transparent;
}

.nav-link:hover,
.nav-link.active {
  color: var(--orange);
  border-bottom-color: var(--orange);
}

.header-actions {
  display: flex;
  gap: 10px;
}

.menu-toggle {
  display: none;
  border: 0;
  background: transparent;
  color: var(--navy);
  font-size: 1.8rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border-radius: 7px;
  padding: 11px 19px;
  font-weight: 700;
  line-height: 1.25;
  border: 1px solid transparent;
  transition: .2s ease;
  cursor: pointer;
}

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

.btn-lg {
  padding: 14px 22px;
}

.btn-wa {
  background: var(--green);
  color: #fff;
}

.btn-wa:hover {
  background: #0e7c3a;
}

.btn-call {
  border-color: var(--navy);
  color: var(--navy);
  background: #fff;
}

.btn-orange {
  background: var(--orange);
  color: #fff;
}

.btn-navy {
  background: var(--navy);
  color: #fff;
}

.btn-light {
  background: #fff;
  color: var(--orange);
}

.btn-block {
  width: 100%;
}

.button-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

.eyebrow {
  display: block;
  color: var(--orange);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .11em;
  font-size: .78rem;
  margin-bottom: 13px;
}

.eyebrow.light {
  color: #ffd8b8;
}

.home-hero {
  min-height: 540px;
  background: url("../images/hero-indian-parties.png") center/cover no-repeat;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(360px, .8fr);
}

.hero-copy {
  padding: 80px 0;
  max-width: 720px;
}

.hero-copy h1 {
  max-width: 700px;
}

.hero-copy>p {
  font-size: 1.22rem;
  color: #344e5d;
}

.trust-row {
  display: flex;
  flex-wrap: wrap;
  gap: 26px;
  margin-top: 38px;
  font-weight: 700;
  font-size: .9rem;
}

.trust-row i {
  color: var(--orange);
  font-size: 1.25rem;
  margin-right: 7px;
}

.section {
  padding: 78px 0;
}

.soft {
  background: var(--cream);
}

.section-heading {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 40px;
}

.section-heading p {
  font-size: 1.05rem;
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 24px;
}

.product-card {
  border: 1px solid var(--border);
  border-radius: 12px;
  overflow: hidden;
  background: #fff;
  box-shadow: 0 4px 18px rgba(0, 36, 54, .05);
  display: flex;
  flex-direction: column;
  transition: .22s;
}

.product-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow);
}

.product-image {
  aspect-ratio: 4 / 3;
  background: #fff;
  overflow: hidden;
}

.product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top;
}

.product-copy {
  padding: 20px 20px 16px;
}

.product-copy h3 {
  font-family: Inter, sans-serif;
  font-size: 1.05rem;
  margin-bottom: 8px;
}

.product-copy p {
  font-size: .9rem;
  line-height: 1.5;
  min-height: 68px;
}

.text-link {
  color: var(--navy);
  font-weight: 800;
}

.card-wa {
  margin: auto 16px 16px;
  padding: 10px 12px;
  text-align: center;
  background: #eaf8ef;
  color: #087336;
  border-radius: 6px;
  font-weight: 750;
}

.custom-strip {
  padding: 48px 0;
  background: linear-gradient(100deg, var(--orange), #ff8b24);
  color: #fff;
}

.strip-row,
.cta-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
}

.custom-strip h2,
.custom-strip p {
  color: #fff;
}

.custom-strip p {
  margin-bottom: 0;
}

.steps-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.steps-grid>div {
  border: 1px solid var(--border);
  padding: 28px;
  border-radius: 12px;
  background: #fff;
}

.steps-grid b {
  display: grid;
  place-items: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--orange);
  color: #fff;
  margin-bottom: 20px;
}

.steps-grid h3 {
  font-size: 1.45rem;
}

.steps-grid p {
  font-size: .92rem;
  margin: 0;
}

.inner-hero {
    background: linear-gradient(115deg, var(--navy-dark), #075275);
    color: #fff;
    padding-block: 50px;
}

.inner-hero-grid {
  min-height: 470px;
  display: grid;
  grid-template-columns: 1.1fr .9fr;
  align-items: center;
  gap: 60px;
}

.inner-hero h1,
.inner-hero p {
  color: #fff;
}

.inner-hero h1 {
  font-size: clamp(3rem, 5vw, 4.1rem);
}

.inner-hero p {
  font-size: 1.05rem;
  max-width: 710px;
  color: #e0edf2;
}

.inner-hero-image {
  height: 390px;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 22px 55px rgba(0, 0, 0, .25);
  background: #fff;
}

.inner-hero-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top;
}

.breadcrumb {
  display: flex;
  gap: 8px;
  align-items: center;
  font-size: .82rem;
  margin-bottom: 36px;
  color: #bed1db;
}

.breadcrumb a:hover {
  color: #fff;
}

.two-col {
  display: grid;
  grid-template-columns: 1.15fr .85fr;
  gap: 80px;
  align-items: start;
}

.two-col>div:first-child>p {
  font-size: 1.05rem;
}

.check-list,
.use-grid {
  list-style: none;
  padding: 0;
  margin: 24px 0;
  display: grid;
  gap: 11px;
}

.check-list i,
.use-grid i {
  color: var(--orange);
  margin-right: 10px;
}

.enquiry-card {
  border-top: 5px solid var(--orange);
  border-radius: 12px;
  padding: 32px;
  background: #fff;
  box-shadow: var(--shadow);
}

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

.spec-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 18px;
}

.spec-grid>div {
  background: #fff;
  border: 1px solid #f0dfc9;
  border-radius: 12px;
  padding: 25px 16px;
  text-align: center;
}

.spec-grid i {
  display: block;
  color: var(--orange);
  font-size: 2rem;
  margin-bottom: 12px;
}

.image-copy {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

.image-copy>div:first-child {
  height: 420px;
  border-radius: 16px;
  overflow: hidden;
  background: #fff;
  border: 1px solid var(--border);
}

.image-copy img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top;
}

.use-grid {
  grid-template-columns: 1fr 1fr;
}

.page-banner {
  padding: 64px 0;
  background: linear-gradient(115deg, var(--navy-dark), #075275);
  color: #fff;
}

.page-banner h1,
.page-banner p {
  color: #fff;
}

.page-banner h1 {
  font-size: clamp(3rem, 5vw, 4.5rem);
}

.page-banner p {
  max-width: 660px;
  margin: 0;
}

.faq-wrap {
  max-width: 900px;
}

.faq-wrap details {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 8px;
  margin: 10px 0;
  padding: 0 20px;
}

.faq-wrap summary {
  cursor: pointer;
  font-weight: 750;
  padding: 18px 30px 18px 0;
}

.faq-wrap details p {
  padding: 0 0 18px;
  margin: 0;
}

.related-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.related-grid a {
  border: 1px solid var(--border);
  border-radius: 10px;
  overflow: hidden;
  background: #fff;
}

.related-grid img {
  width: 100%;
    height: 230px;
    object-fit: cover;
    object-position: top;
}


.related-grid span {
  display: block;
  padding: 14px;
  font-weight: 750;
}

.catalogue-layout {
  display: grid;
  grid-template-columns: .75fr 1.25fr;
  gap: 70px;
  align-items: center;
}

.catalogue-cover {
  border-radius: 16px;
  overflow: hidden;
  box-shadow: var(--shadow);
  background: #fff;
}

.catalogue-cover img {
  width: 100%;
}

.value-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}

.value-grid>div {
  padding: 24px;
  border: 1px solid var(--border);
  border-radius: 12px;
}

.value-grid i {
  font-size: 2rem;
  color: var(--orange);
}

.value-grid h3 {
  font-size: 1.35rem;
  margin-top: 10px;
}

.value-grid p {
  font-size: .9rem;
  margin: 0;
}

.contact-layout {
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  gap: 70px;
}

.contact-cards {
  display: grid;
  gap: 12px;
  margin-top: 30px;
}

.contact-cards>a,
.contact-cards>div {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 18px;
  border: 1px solid var(--border);
  border-radius: 10px;
}

.contact-cards i {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: var(--cream);
  color: var(--orange);
}

.contact-cards span {
  display: flex;
  flex-direction: column;
  color: var(--muted);
}

.contact-cards b {
  color: var(--navy);
}

.quote-form {
  padding: 34px;
  border-radius: 14px;
  box-shadow: var(--shadow);
  border-top: 5px solid var(--orange);
}

.quote-form label {
  display: grid;
  gap: 6px;
  margin-bottom: 15px;
  font-weight: 650;
}

.quote-form input,
.quote-form select,
.quote-form textarea {
  width: 100%;
  padding: 12px;
  border: 1px solid #cdd9de;
  border-radius: 6px;
  font: inherit;
  color: var(--text);
  background: #fff;
}

.quote-form input:focus,
.quote-form select:focus,
.quote-form textarea:focus {
  outline: 3px solid rgba(245, 106, 0, .18);
  border-color: var(--orange);
}

.form-note {
  font-size: .78rem;
  margin: 12px 0 0;
}

.legal {
  max-width: 850px;
}

.legal h2 {
  font-size: 2rem;
  margin-top: 35px;
}

.final-cta {
  background: var(--navy);
  color: #fff;
  padding: 50px 0;
}

.final-cta h2,
.final-cta p {
  color: #fff;
}

.final-cta p {
  margin: 0;
}

.cta-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

footer {
  background: var(--navy-dark);
  color: #fff;
  padding-top: 58px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr .7fr 1fr 1.15fr;
  gap: 48px;
}

.footer-brand {
  margin-bottom: 20px;
}

.footer-brand .brand-main {
  color: #fff;
  font-size: 2.4rem;
}

.footer-brand small {
  color: #aebfc8;
}

.footer-grid p,
.footer-grid li {
  color: #bdced7;
  font-size: .9rem;
}

.footer-grid h3 {
  color: #fff;
  font-size: 1.35rem;
}

.footer-grid ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
}

.footer-grid li {
    margin: 6px 0;
    display: inline-flex;
}

ul.contact-list {
    display: flex;
    flex-direction: column;
}

.footer-grid a:hover {
  color: #fff;
}

.contact-list i {
  margin-right: 8px;
  color: #ff9a43;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, .14);
  margin-top: 40px;
  padding: 20px 0;
  display: flex;
  justify-content: space-between;
  color: #aebfc8;
  font-size: .8rem;
}

.floating-wa {
  position: fixed;
  right: 20px;
  bottom: 20px;
  width: 58px;
  height: 58px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: var(--green);
  color: #fff;
  font-size: 1.7rem;
  box-shadow: 0 10px 25px rgba(0, 0, 0, .28);
  z-index: 90;
}

@media (max-width: 1100px) {
  .main-nav {
    position: absolute;
    top: 82px;
    left: 0;
    right: 0;
    display: none;
    flex-direction: column;
    align-items: stretch;
    background: #fff;
    border-bottom: 1px solid var(--border);
    padding: 10px 24px;
  }

  .main-nav.open {
    display: flex;
  }

  .nav-link {
    padding: 12px !important;
    border: 0;
  }

  .menu-toggle {
    display: block;
    margin-left: auto;
  }

  .header-actions {
    display: none;
  }

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

  .inner-hero-grid {
    grid-template-columns: 1fr 1fr;
    gap: 30px;
  }

  .spec-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }

  .desktop-only {
    display: none;
  }
}

@media (max-width: 760px) {
  .container-custom {
    width: min(100% - 30px, 1280px);
  }

  .top-bar {
    text-align: center;
  }

  .top-row {
    display: block;
  }

  .top-email {
    display: none;
  }

  .header-row {
    height: 70px;
  }

  .brand-main {
    font-size: 1.85rem;
  }

  .brand-logo small {
    font-size: .56rem;
  }

  .main-nav {
    top: 70px;
  }

  .home-hero {
    min-height: auto;
  }

  .hero-grid {
    display: block;
  }

  .hero-copy {
    padding: 65px 0;
    /* background: rgba(255, 255, 255, .84); */
  }

  .home-hero {
    background: #fefaf6 !important;
}

  .hero-copy h1 {
    font-size: 3.3rem;
  }

  .trust-row {
    gap: 14px;
    display: grid;
  }

  .section {
    padding: 58px 0;
  }

  .product-grid,
  .steps-grid,
  .two-col,
  .image-copy,
  .catalogue-layout,
  .contact-layout,
  .value-grid,
  .related-grid,
  .inner-hero-grid {
    grid-template-columns: 1fr;
  }

  .product-copy p {
    min-height: auto;
  }

  .strip-row,
  .cta-row {
    align-items: flex-start;
    flex-direction: column;
  }

  .inner-hero-grid {
    padding: 46px 0;
  }

  .inner-hero-image {
    height: 300px;
  }

  .breadcrumb {
    margin-bottom: 24px;
    flex-wrap: wrap;
  }

  .spec-grid {
    grid-template-columns: 1fr 1fr;
  }

  .image-copy {
    gap: 30px;
  }

  .image-copy>div:first-child {
    height: 320px;
  }

  .use-grid {
    grid-template-columns: 1fr;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .footer-bottom {
    gap: 12px;
    flex-direction: column;
  }

  .button-row .btn,
  .cta-actions .btn {
    width: 100%;
  }

  .page-banner {
    padding: 48px 0;
  }

  .section-heading {
    text-align: left;
  }
}

@media (max-width: 430px) {

  .product-grid,
  .spec-grid {
    grid-template-columns: 1fr;
  }

  .top-row span {
    margin: 0 5px;
  }

  .top-bar {
    font-size: .72rem;
  }

  .hero-copy h1,
  .inner-hero h1,
  .page-banner h1 {
    font-size: 2.8rem;
  }
}