/* ===================== RESET & BASE ===================== */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

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

body {
  font-family: 'Montserrat Alternates', 'Segoe UI', Arial, sans-serif;
  color: #222;
  background: #e9f2fb;
  line-height: 1.6;
  margin: 0;
  overflow-x: hidden;
}

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

ol, ul {
  list-style: none;
}

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

.site-header {
  background: #d9ecfb;
  padding: 14px 40px;
}

.header-inner {
  max-width: 1400px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
}

.logo img {
  height: 44px;
  width: auto;
  display: block;
}

.logo-left {
  order: 1;
  display: inline-flex;
  gap: 10px;
  align-items: center;
}

.main-nav {
  order: 2;
  display: flex;
  gap: 26px;
  font-size: 14px;
  font-weight: 600;
}

.main-nav a:hover {
  color: #e21b1b;
}

.header-actions {
  order: 3;
  display: flex;
  align-items: center;
  gap: 18px;
  font-size: 13px;
  font-weight: 600;
}

.icon-link {
  display: flex;
  align-items: center;
  gap: 4px;
  white-space: nowrap;
}

.btn-outline {
  border: 1.5px solid #e21b1b;
  color: #e21b1b;
  padding: 8px 18px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.5px;
}

.btn-outline:hover {
  background: #e21b1b;
  color: #fff;
}

.logo-right {
  order: 4;
}

/* Responsive: stack cleanly on smaller screens */
@media (max-width: 1000px) {
  .header-inner {
    justify-content: center;
  }
  .logo-left,
  .logo-right {
    order: 0;
  }
  .main-nav {
    width: 100%;
    justify-content: center;
    order: 3;
  }
}

@media (max-width: 480px) {
  .logo img {
    height: 32px;
  }
  .logo-left {
    gap: 6px;
  }
}

/* ===================== HERO ===================== */
.hero {
  position: relative;
  width: 100%;
  height: 60vh;
  overflow: hidden;
  background: linear-gradient(180deg, #1b2a4a 0%, #354a6b 60%, #6d7d99 100%);
}

.hero-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.9;
}

.hero-tag {
  position: absolute;
  top: 28px;
  right: 40px;
  background: #f4d03f;
  color: #222;
  font-weight: 700;
  font-size: 14px;
  padding: 10px 18px;
  border-radius: 4px;
  z-index: 2;
}

.hero-caption {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  padding: 30px 40px;
  background: linear-gradient(0deg, rgba(0,0,0,0.55) 0%, rgba(0,0,0,0) 100%);

  padding-left: max(40px, calc((100% - 1400px) / 2 + 40px));
  padding-right: max(40px, calc((100% - 1400px) / 2 + 40px));
}

.hero-caption h1 {
  color: #fff;
  font-size: 40px;
  font-weight: 800;
  max-width: 900px;
}

/* ===================== CONTENT LAYOUT ===================== */
.content-wrap {
  max-width: 1400px;
  margin: 0 auto;
  padding: 50px 40px;
  display: grid;
  grid-template-columns: 1fr 340px;
  gap: 60px;
}

/* LEFT COLUMN */
.title-hero {
  font-size: 32px;
  font-weight: 800;
  margin-bottom: 24px;
}

.content-main p {
  margin: 16px 0 8px;
}

.content-main ol {
  list-style: decimal;
  margin-left: 22px;
  padding-left: 4px;
}

.content-main ol li {
  margin: 6px 0;
  padding-left: 4px;
}

.content-main ol li::marker {
  font-weight: 700;
  color: #e21b1b;
}

/* GALLERY / TABS */
.gallery {
  margin-top: 50px;
}

.tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 4px;
  border-bottom: 2px solid #cfe0f2;
}

.tab {
  background: transparent;
  border: none;
  padding: 12px 18px;
  font-size: 13px;
  font-weight: 600;
  color: #555;
  cursor: pointer;
  border-bottom: 3px solid transparent;
}

.tab.active {
  color: #f4a300;
  border-bottom-color: #f4a300;
}

.tab-panel {
  display: none;
  padding: 24px 0;
}

.tab-panel.active {
  display: block;
}

.tab-panel img {
  max-width: 90%;
  border-radius: 4px;
  box-shadow: 0 6px 20px rgba(0,0,0,0.15);
}

/* RIGHT SIDEBAR */
.sidebar h3 {
  font-size: 15px;
  font-weight: 700;
  margin-bottom: 14px;
}

.sidebar h3:not(:first-child) {
  margin-top: 36px;
}

.share-buttons {
  display: flex;
  gap: 10px;
  margin-bottom: 30px;
}

.share {
  width: 40px;
  height: 40px;
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-weight: 700;
}

.share.fb { background: #3b5998; }
.share.wa { background: #25d366; }
.share.tw { background: #1da1f2; }
.share.mail { background: #e94b3c; }

.specs {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-bottom: 30px;
}

.specs li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 700;
  font-size: 14px;
  color: #e21b1b;
}

.spec-icon {
  font-size: 20px;
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.spec-icon img {
  width: 20px;
  height: 20px;
  object-fit: contain;
}

.cta-buttons {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.btn-cta {
  background: #f4d03f;
  color: #222;
  font-weight: 700;
  font-size: 13px;
  text-align: center;
  padding: 14px;
  border-radius: 4px;
}

.btn-cta:hover {
  background: #e2be2e;
}

.direction-icons {
  display: flex;
  gap: 14px;
}

.direction-icons a {
  width: 50px;
  height: 50px;
  border-radius: 8px;
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

.direction-icons img {
  width: 26px;
  height: 26px;
  object-fit: contain;
}

/* ===================== FOOTER ===================== */
footer {
  position: relative;
  background-color: #1b2a4a;
  color: #fff;
  padding: 3.5rem 0 2.5rem;
  font-family: 'Montserrat Alternates', 'Segoe UI', Arial, sans-serif;
  overflow: hidden;

  a {
    color: #fff;
  }

  p {
    font-size: 18px;
  }

  h6 {
    font-size: 21px;
    font-weight: 600;
    letter-spacing: 0.3px;
    color: #fff;
  }

  .mb-3 {
    margin-bottom: 1.1rem;
  }

  .mt-5 {
    margin-top: 0;
  }

  .container {
    max-width: 1300px;
    margin: 0 auto;
    padding: 0 40px;
  }

  /* top row: contact | connect | logo */
  > .container > .row:first-of-type {
    display: flex;
    flex-wrap: wrap;
    align-items: flex-start;
    gap: 40px;
  }

  .col-lg-4 {
    flex: 1 1 auto;
    min-width: 0;
  }

  .col-lg-8 {
    flex: 1 1 auto;
  }

  /* nested row: contact text + QR code */
  .col-lg-4 > .row {
    display: flex;
    align-items: flex-start;
    gap: 20px;
  }

  .contact-line {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14.5px;
    font-weight: 500;
    line-height: 1.5;
    margin-bottom: 16px;
  }

  .contact-line:last-child {
    margin-bottom: 0;
  }

  .contact-line:hover .icon-badge {
  background: #e21b1b;
  border-color: #e21b1b;
  }
  
  .icon-badge {
    width: 26px;
    height: 26px;
    min-width: 26px;
    border-radius: 50%;
    border: 1.5px solid rgba(255,255,255,0.85);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 11px;
  }

  .fa-whatsapp { color: #fff; }

  ul.large-icon {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-top: 4px;
  }

  ul.large-icon li {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14.5px;
    font-weight: 500;
  }

  ul.large-icon li a {
    width: 26px;
    height: 26px;
    min-width: 26px;
    border-radius: 50%;
    border: 1.5px solid rgba(255,255,255,0.85);
    background: transparent;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    transition: background 0.2s ease, color 0.2s ease;
  }

  ul.large-icon li a:hover {
    background: #e21b1b;
    border-color: #e21b1b;
  }

  .footer-logo-col {
    flex: 0 1 auto;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    margin-left: auto;
  }

  #Group_80 {
    max-width: 240px;
    width: 100%;
    margin: 0;
  }

  .vc_single_image-img {
    border-radius: 4px;
    background: #fff;
    padding: 6px;
    width: 76px;
    height: 76px;
  }

  /* disclaimer row */
  > .container > .row + .row {
    margin-top: 2.75rem;
  }

  .disclaimer-text {
    padding-left: 0%;
    padding-right: 0%;
    padding-bottom: 2%;
    color: #fff;
    font-size: 10px;
    font-family: Arial, sans-serif;
    text-align: justify;
    line-height: 1.7;
    font-weight: 600;
    letter-spacing: 0.1px;
  }

  #n-7 {
    position: absolute;
    bottom: 0;
    right: 0;
    z-index: -1;
  }
}

/* ===================== RESPONSIVE ===================== */
@media (max-width: 1000px) {
  .content-wrap {
    grid-template-columns: 1fr;
  }

  .main-nav {
    order: 3;
    width: 100%;
    justify-content: center;
  }

  .hero-caption h1 {
    font-size: 28px;
  }

  footer .container {
    padding: 0 20px;
  }
}

@media (max-width: 767px) {
  footer > .container > .row:first-of-type {
    flex-direction: column;
    align-items: center;
    gap: 36px;
    text-align: center;
  }

  footer .col-lg-4 {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
  }

  footer .col-lg-4 > .row {
    flex-direction: column;
    align-items: center;
    gap: 18px;
    width: 100%;
  }

  footer .col-lg-8 {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
  }

  footer .contact-line {
    justify-content: center;
  }

  footer ul.large-icon {
    align-items: center;
  }

  footer ul.large-icon li {
    justify-content: center;
  }

  footer .footer-logo-col {
    justify-content: center;
    margin-left: 0;
  }

  footer #Group_80 {
    max-width: 180px;
  }

  footer .mt-5 {
    margin-top: 0.5rem;
  }

  footer > .container > .row + .row {
    margin-top: 2rem;
  }
}

@media (max-width: 600px) {
  .site-header {
    padding: 10px 16px;
  }

  .content-wrap {
    padding: 30px 20px;
  }

  .hero {
    height: 320px;
  }

  .hero-caption {
    padding: 20px 20px;
  }

  .hero-caption h1 {
    font-size: 22px;
  }

  .hero-tag {
    top: 14px;
    right: 14px;
    font-size: 11px;
    padding: 6px 12px;
  }

  .title-hero {
    font-size: 24px;
  }

  .header-inner {
    justify-content: space-between;
    flex-wrap: nowrap;
    gap: 10px;
  }

  .logo-left,
  .logo-right {
    order: initial;
  }

  .logo-left {
    gap: 6px;
  }

  .logo-left img,
  .logo-right img {
    height: 40px;
  }

  .tabs {
    gap: 0;
  }

  .tab {
    flex: 1 1 auto;
    padding: 10px 8px;
    font-size: 11.5px;
    text-align: center;
  }

  .tab-panel img {
    max-width: 100%;
  }

  .specs {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .direction-icons {
    justify-content: left;
  }

  footer {
    padding-top: 2.25rem;
  }

  footer .container {
    padding: 0 16px;
  }

  footer p {
    font-size: 15px;
  }

  footer .disclaimer-text {
    font-size: 10px;
    text-align: left;
    padding-left: 10%;
    padding-right: 10%;
    padding-bottom: 10%;
  }

  footer h6 {
    font-size: 18px;
  }
}

@media (max-width: 380px) {
  .hero-caption h1 {
    font-size: 19px;
  }

  .tab {
    font-size: 10.5px;
    padding: 8px 6px;
  }

  .logo-left img,
  .logo-right img {
    height: 20px;
  }

  .logo-left {
    gap: 4px;
  }
}