/* ============================================================
   EXISTING SITE STYLES
   ============================================================ */

/* Explore Our Properties Section */
.explore-section {
    width: 100%;
    margin: 260px 0 0 0;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.explore-title-row {
    display: flex;
    align-items: center;
    margin-left: 130px;
    margin-bottom: 40px;
}

.explore-title-stroke {
    width: 36px;
    height: 4px;
    background: #A5C3E6;
    margin-right: 18px;
    border-radius: 2px;
}

.explore-title {
    color: #2B3990;
    font-weight: 700;
    font-size: 28px;
    margin: 0;
    letter-spacing: 0.01em;
}

.explore-box {
    width: 900px;
    max-width: 95vw;
    margin: 0 auto;
    display: flex;
    background: #fff;
    border-radius: 0;
    overflow: hidden;
}

.explore-box-image {
    width: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #f4f7fc;
    aspect-ratio: 1 / 1;
}
.explore-box-image img {
    width: 90%;
    height: auto;
    object-fit: cover;
    border-radius: 0;
}

.explore-box-content {
    width: 50%;
    background: #D2E1F340;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    padding: 48px 40px;
    box-sizing: border-box;
}

.explore-box-heading {
    color: #2B3990;
    font-size: 24px;
    font-weight: 700;
    margin: 0 0 18px 0;
}
.explore-box-desc {
    color: #6B6B6B;
    font-size: 18px;
    font-weight: 400;
    margin: 0 0 28px 0;
    font-family: 'Arial', sans-serif;
}
.explore-btn {
    display: inline-block;
    background: #2B3990;
    color: #fff;
    font-size: 16px;
    font-weight: 400;
    padding: 12px 32px;
    border: none;
    border-radius: 10px;
    text-decoration: none;
    cursor: pointer;
    transition: background 0.2s;
}
.explore-btn:hover {
    background: #fff;
    color: #2B3990;
    border: 2px solid #2B3990;
}

.explore-arrows {
    width: 900px;
    max-width: 95vw;
    margin: 32px auto 0 auto;
    display: flex;
    justify-content: center;
    gap: 32px;
}
.explore-arrow {
    background: #F4F7FC;
    border: none;
    border-radius: 50%;
    width: 48px;
    height: 48px;
    font-size: 2rem;
    color: #2B3990;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: background 0.2s, color 0.2s;
}
.explore-arrow:hover {
    background: #A5C3E6;
    color: #fff;
}

@media (max-width: 1100px) {
    .explore-box, .explore-arrows {
        width: 98vw;
        max-width: 100vw;
    }
    .explore-title-row {
        margin-left: 24px;
    }
}
@media (max-width: 800px) {
    .explore-box {
        flex-direction: column;
        min-width: 0;
    }
    .explore-box-image, .explore-box-content {
        width: 100%;
        aspect-ratio: unset;
        padding: 32px;
    }
    .explore-arrows {
        width: 100vw;
    }
}

body {
    background: #ffffff;
    margin: 0;
    padding: 0;
    font-family: 'Futura', 'Arial', sans-serif;
}

.header {
    position: relative;
    height: 130px;
    background: #fff;
}

.logo {
    position: absolute;
    left: 102px;
    top: 61px;
    width: 207px;
    height: auto;
}

.menu {
    position: absolute;
    right: 102px;
    top: 61px;
    display: flex;
    gap: 13px;
}

.menu-item {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 160px;
    height: 40px;
    background: transparent;
    color: #2B3990;
    font-weight: 400;
    text-decoration: none;
    border: none;
    font-size: 1rem;
    box-sizing: border-box;
    font-family: 'Arial', sans-serif;
}

.menu-item.selected {
    font-weight: 700;
    text-decoration: underline;
    text-decoration-color: #A5C3E6;
}

.gradient-bg {
    width: 100%;
    min-height: 600px;
}

.hero {
    display: flex;
    align-items: flex-start;
    min-height: 400px;
    padding-top: 60px;
    padding-left: 130px;
}

.hero-left {
    width: 50%;
    max-width: 50%;
    display: flex;
    flex-direction: column;
}

.hero-title {
    color: #2B3990;
    font-weight: 700;
    font-size: 54px;
    margin: 180px 0 28px 0;
}

.hero-subtitle {
    color: #2B3990;
    font-weight: 400;
    font-size: 18px;
    line-height: 29px;
    letter-spacing: 0.17em;
    margin: 0 0 36px 0;
    font-family: 'Arial', sans-serif;
}

.hero-btn {
    display: inline-block;
    width: fit-content;
    background: #2B3990;
    color: #fff;
    font-family: Arial, Helvetica, sans-serif;
    font-weight: 400;
    font-size: 18px;
    padding: 14.5px 40px;
    border: none;
    border-radius: 13px;
    text-decoration: none;
    text-align: center;
    cursor: pointer;
    transition: background 0.2s;
}

.hero-btn:hover {
    background: #ffffff;
    border: #2B3990 2px solid;
    color: #2B3990;
}

.hero-right {
    width: 50%;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    padding-right: 102px;
    box-sizing: border-box;
    margin-top: 180px;
}

.promo {
  display: grid;
  place-items: center;
  padding: 0;
  background: transparent;
  min-height: auto;
  box-sizing: border-box;
  width: 100%;
}

.artboard {
  position: relative;
  width: min(520px, 92%);
  aspect-ratio: 16 / 10;
  background: transparent;
}

.photo {
  --shadow: 0 10px 22px rgba(0,0,0,.08);
  position: absolute;
  top: clamp(10px, 3vw, 24px);
  left: clamp(10px, 3vw, 24px);
  width: min(360px, 58%);
  margin: 0;
  box-shadow: var(--shadow);
  z-index: 2;
}
.photo img {
  display: block;
  width: 100%;
  height: auto;
}

.photo::before,
.photo::after {
  content: "";
  position: absolute;
  background: #98b3d4;
  opacity: .9;
  z-index: -1;
}

.photo::before {
  height: 2px;
  width: min(72%, 520px);
  top: 18%;
  left: 95%;
}

.photo::after {
  height: 2px;
  width: min(70%, 520px);
  bottom: -34px;
  left: -10%;
}

.sq {
  --c: #9eb6d3;
  position: absolute;
  background: var(--c);
  opacity: .7;
  z-index: 1;
  border-radius: 2px;
}

.s1 { width: 52px; height: 52px; right: 13%; top: 20%; }
.s2 { width: 30px; height: 30px; left: 46%; top: 52%; }
.s3 { width: 24px; height: 24px; left: 39%; bottom: 24%; }
.s4 { width: 14px; height: 14px; right: 10%; top: 28%; }
.s5 { width: 12px; height: 12px; right: 28%; bottom: 10%; }

.features {
    display: grid;
    grid-template-columns: repeat(3, 317px);
    gap: 48px;
    justify-content: center;
    margin: 100px auto;
    width: 100%;
    margin-top: 10em;
}

.feature-card {
    width: 317px;
    height: 317px;
    background: #F4F7FC;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 28px 20px;
    box-sizing: border-box;
    gap: 12px;
}

.feature-icon {
    display: flex;
    align-items: center;
    justify-content: center;
}

.feature-icon img,
.feature-icon svg {
    width: 64px;
    height: 64px;
    display: block;
    object-fit: contain;
}

.feature-title {
    color: #2B3990;
    font-weight: 700;
    font-size: 45px;
    line-height: 1.1;
    margin: 0;
}

.feature-text {
    font-family: 'Arial', sans-serif;
    font-weight: 400;
    font-size: 18px;
    line-height: 1.6;
    color: #2B3990;
    margin: 0;
}

:root {
  --slanted-strip-height: 360px;
}

.slanted-strip {
    width: 100%;
    height: var(--slanted-strip-height, 360px);
    background: #F4F7FC;
    clip-path: polygon(0 0, 100% 0, 100% calc(100% - 60px), 0 100%);
    margin: 0;
    position: relative;
    z-index: 1;
    margin-top: 15em;
}

.strip-box {
    position: relative;
    z-index: 2;
    width: 55.8em;
    height: 31em;
    margin: -250px auto 96px;
    background: #fff;
    border: 3px solid #A5C3E6;
    box-sizing: border-box;
    display: flex;
    overflow: visible;
    padding: 0;
}

.strip-box-content {
    display: flex;
    width: 100%;
    height: 100%;
}

.strip-box-image {
    width: 40%;
    position: relative;
    display: flex;
    align-items: flex-end;
    justify-content: flex-start;
    overflow: visible;
}

.strip-box-image img {
    width: 120%;
    min-width: 260px;
    max-width: none;
    position: absolute;
    left: -40px;
    bottom: -60px;
    z-index: 1;
}

.strip-box-text {
    width: 60%;
    padding: 60px 48px 40px 48px;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    background: transparent;
    z-index: 2;
}

.strip-box-title {
    color: #2B3990;
    font-size: 28px;
    font-weight: 700;
    line-height: 1.1;
    margin: 0 0 12px 0;
}

.strip-box-line {
    width: 60px;
    height: 4px;
    background: #A5C3E6;
    border: none;
    margin: 0 0 24px 0;
}

.strip-box-desc {
    font-family: 'Arial', sans-serif;
    color: #6B6B6B;
    font-size: 20px;
    font-weight: 400;
    line-height: 1.6;
    margin: 0;
}

@media (max-width: 1100px) {
    .features {
        grid-template-columns: repeat(2, 317px);
    }
    .strip-box {
        width: 95vw;
        min-width: 0;
        height: auto;
    }
    .strip-box-content {
        flex-direction: column;
    }
    .strip-box-image, .strip-box-text {
        width: 100%;
        padding: 32px;
    }
    .strip-box-image img {
        position: static;
        width: 100%;
        left: 0;
        bottom: 0;
        margin-bottom: -40px;
    }
}
@media (max-width: 720px) {
    .features {
        grid-template-columns: 317px;
        gap: 32px;
        margin: 72px auto;
    }
}

@media (max-width: 900px) {
  .hero { flex-direction: column; }
  .hero-left, .hero-right { width: 100%; padding-right: 0; }
  .hero-right { margin-top: 24px; }
  .artboard { width: min(560px, 92%); }
  .photo { width: 72%; }
  .photo::before, .photo::after { width: 48vw; }
  .strip-box {
    width: min(680px, 90%);
    height: 180px;
    margin: -90px auto 72px;
  }
}

/* Contact Us Section */
.contact-section {
  position: relative;
  width: 100%;
  min-height: 900px;
  margin-top: 180px;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  overflow: hidden;
}
.contact-bg {
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  z-index: 1;
  background: linear-gradient(
    to bottom,
    #F4F7FC 0%,
    #fff 100%
  ), url('assets/contact-bg.jpg') no-repeat center bottom/cover;
  width: 100%;
  height: 100%;
}
.contact-content {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 60px 0;
}
.contact-form-box {
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 6px 32px 0 rgba(43,57,144,0.10);
  padding: 48px 40px 48px 48px;
  width: 440px;
  min-height: 420px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  position: relative;
}
.contact-form-title {
  color: #2B3990;
  font-family: 'Futura', Arial, sans-serif;
  font-weight: 700;
  font-size: 28px;
  margin-bottom: 32px;
}
.contact-form {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 12px 16px;
  border: 1px solid #A5C3E6;
  border-radius: 8px;
  font-size: 16px;
  font-family: Arial, sans-serif;
  resize: none;
}
.contact-form-btn {
  background: #2B3990;
  color: #fff;
  font-size: 18px;
  font-weight: 700;
  border: none;
  border-radius: 8px;
  padding: 14px 0;
  margin-top: 12px;
  cursor: pointer;
  width: 100%;
  transition: background 0.2s;
}
.contact-form-btn:hover {
  background: #A5C3E6;
  color: #2B3990;
}

.contact-info-box {
  background: #2B3990;
  color: #fff;
  border-radius: 18px;
  width: 340px;
  min-height: 320px;
  padding: 36px 32px 32px 32px;
  position: absolute;
  right: -60px;
  bottom: 40px;
  box-shadow: 0 6px 32px 0 rgba(43,57,144,0.10);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.contact-info-title {
  font-family: 'Futura', Arial, sans-serif;
  font-weight: 700;
  font-style: bold;
  font-size: 28px;
  line-height: 100%;
  letter-spacing: 0;
  margin-bottom: 12px;
}
.contact-info-sub {
  font-family: Arial, sans-serif;
  font-weight: 400;
  font-size: 18px;
  line-height: 100%;
  letter-spacing: 0;
  margin-bottom: 18px;
}
.contact-info-line {
  width: 40px;
  height: 3px;
  background: #A5C3E6;
  border-radius: 2px;
  margin-bottom: 24px;
  transform: skewX(-20deg);
}
.contact-info-details {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 22px;
}
.contact-info-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
}
.contact-info-icon {
  font-size: 22px;
  margin-top: 2px;
}
.contact-info-item-title {
  font-family: Arial, sans-serif;
  font-weight: 700;
  font-size: 18px;
  margin-bottom: 2px;
}
.contact-info-item-text {
  font-family: Arial, sans-serif;
  font-weight: 400;
  font-size: 18px;
  line-height: 1.3;
}

@media (max-width: 900px) {
  .contact-content {
    flex-direction: column;
    align-items: center;
    padding: 40px 0;
  }
  .contact-form-box {
    width: 95vw;
    min-width: 0;
    padding: 32px 16px;
  }
  .contact-info-box {
    position: static;
    width: 95vw;
    margin-top: 32px;
    right: 0;
    bottom: 0;
  }
}

.contact-title-row {
  display: flex;
  align-items: center;
  margin-bottom: 32px;
}

.contact-title-stroke {
  width: 32px;
  height: 4px;
  background: #A5C3E6;
  margin-right: 16px;
  border-radius: 2px;
  transform: skewX(-20deg);
}

.contact-title {
  color: #2B3990;
  font-family: 'Futura', Arial, sans-serif;
  font-weight: 700;
  font-size: 28px;
  margin: 0;
}


/* ============================================================
   ANAX PAGE STYLES  (all prefixed with .anax- to avoid
   collisions with the existing site above)
   ============================================================ */

/* ── CSS VARIABLES (scoped to the anax page wrapper) ── */
.anax-page {
  --anax-navy:      #1a2a6c;
  --anax-blue-mid:  #2b3fa0;
  --anax-blue-light:#dce8f5;
  --anax-blue-pale: #eef4fb;
  --anax-white:     #ffffff;
  --anax-gray:      #d6d6d6;
  --anax-text-dark: #1c1c2e;
  --anax-text-mid:  #3a3a4a;
  --anax-text-body: #4a4a5a;
  font-family: 'Raleway', sans-serif;
  color: var(--anax-text-dark);
  overflow-x: hidden;
}

/* ── HEADER ── */
.anax-header {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 18px 40px;
  background: var(--anax-white);
  border-bottom: 1px solid #e8edf5;
  position: sticky;
  top: 0;
  z-index: 100;
  box-shadow: 0 2px 12px rgba(26,42,108,.06);
}

.anax-logo {
  display: flex;
  align-items: center;
  gap: 10px;
}

.anax-logo-icon {
  width: 42px;
  height: 42px;
}

.anax-logo-img {
  height: 48px;
  width: auto;
}

.anax-logo-text {
  font-family: 'Raleway', sans-serif;
  font-weight: 700;
  font-size: 1.5rem;
  letter-spacing: 0.18em;
  color: var(--anax-navy);
}

.anax-logo-sub {
  font-size: 0.62rem;
  letter-spacing: 0.12em;
  color: var(--anax-blue-mid);
  font-weight: 500;
  margin-top: 1px;
}

/* ── HERO ── */
.anax-hero {
  width: 100%;
  height: 480px;
  position: relative;
  overflow: hidden;
  background: #bcc8d8;
}

.anax-hero img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.anax-hero-placeholder {
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, #9dafc5 0%, #b8c8d8 40%, #8fa3bc 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.45);
  font-size: 1rem;
  letter-spacing: 0.1em;
}

/* ── LUXURY SECTION ── */
.anax-section-luxury {
  background: var(--anax-white);
  padding: 68px 80px 20px;
  text-align: center;
}

.anax-section-luxury h2 {
  font-family: 'Playfair Display', serif;
  font-size: 2rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  color: var(--anax-navy);
  margin-bottom: 52px;
}

.anax-two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  text-align: left;
  max-width: 900px;
  margin: 0 auto;
}

.anax-two-col h3 {
  font-family: 'Raleway', sans-serif;
  font-weight: 700;
  font-size: 1rem;
  letter-spacing: 0.08em;
  color: var(--anax-text-dark);
  margin-bottom: 14px;
  text-transform: uppercase;
}

.anax-two-col p {
  font-size: 0.92rem;
  line-height: 1.75;
  color: var(--anax-text-body);
  font-weight: 400;
}

/* ── DIAGONAL DIVIDERS ── */
.anax-diagonal-into-pale {
  height: 70px;
  background: linear-gradient(to bottom right, var(--anax-white) 49.9%, var(--anax-blue-pale) 50%);
}

.anax-diagonal-out-pale {
  height: 70px;
  background: linear-gradient(to bottom left, var(--anax-white) 49.9%, var(--anax-blue-pale) 50%);
}

.anax-diagonal-into-light {
  height: 70px;
  background: linear-gradient(to bottom right, var(--anax-white) 49.9%, var(--anax-blue-light) 50%);
}

/* ── TECHNICAL SPECS SECTION ── */
.anax-section-tech {
  background: var(--anax-blue-pale);
  padding: 0;
}

.anax-section-tech-inner {
  padding: 70px 80px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  max-width: 1100px;
  margin: 0 auto;
}

.anax-tech-left h3 {
  font-family: 'Raleway', sans-serif;
  font-weight: 800;
  font-size: 1rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--anax-text-dark);
  margin-bottom: 6px;
}

.anax-tech-left .anax-sub {
  font-size: 0.88rem;
  color: var(--anax-text-mid);
  font-style: italic;
  margin-bottom: 24px;
}

.anax-tech-left ul {
  list-style: disc;
  padding-left: 18px;
}

.anax-tech-left ul li {
  font-size: 0.9rem;
  color: var(--anax-text-body);
  line-height: 2;
}

.anax-tech-image {
  width: 100%;
  aspect-ratio: 4/3;
  background: var(--anax-gray);
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #aaa;
  font-size: 0.8rem;
  overflow: hidden;
}

.anax-tech-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* ── GALLERY SECTION ── */
.anax-section-gallery {
  background: var(--anax-white);
  padding: 70px 80px;
  text-align: center;
}

.anax-section-gallery h2 {
  font-family: 'Raleway', sans-serif;
  font-weight: 700;
  font-size: 1rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--anax-text-dark);
  margin-bottom: 36px;
}

.anax-gallery-main {
  width: 100%;
  max-width: 720px;
  margin: 0 auto 16px;
  aspect-ratio: 16/9;
  background: var(--anax-gray);
  border-radius: 4px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #bbb;
  cursor: pointer;
  position: relative;
}

.anax-gallery-main img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.anax-gallery-main:hover img {
  transform: scale(1.02);
}

.anax-gallery-main .anax-zoom-hint {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(26,42,108,0);
  transition: background 0.25s;
  color: white;
  font-size: 2rem;
  opacity: 0;
}

.anax-gallery-main:hover .anax-zoom-hint {
  background: rgba(26,42,108,0.22);
  opacity: 1;
}

/* .anax-gallery-thumbs is now defined inside the strip block above */

.anax-gallery-thumb {
  flex: 1;
  max-width: 160px;
  aspect-ratio: 4/3;
  background: var(--anax-gray);
  border-radius: 3px;
  cursor: pointer;
  overflow: hidden;
  position: relative;
  transition: opacity 0.2s, transform 0.2s;
  border: 2px solid transparent;
}

.anax-gallery-thumb:hover {
  opacity: 0.85;
  transform: translateY(-2px);
  border-color: var(--anax-blue-mid);
}

.anax-gallery-thumb.active {
  border-color: var(--anax-navy);
  opacity: 1;
}

.anax-gallery-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* ── GALLERY STRIP WITH ARROWS ── */
.anax-gallery-strip {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  max-width: 760px;
  margin: 0 auto;
}

.anax-gallery-thumbs {
  display: flex;
  gap: 12px;
  overflow: hidden;        /* hides thumbs outside the visible window */
  scroll-behavior: smooth;
  flex: 1;
  justify-content: center;
}

.anax-strip-arrow {
  flex-shrink: 0;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: none;
  background: var(--anax-blue-pale);
  color: var(--anax-navy);
  font-size: 1.5rem;
  line-height: 1;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s, color 0.2s;
  padding: 0;
}

.anax-strip-arrow:hover {
  background: var(--anax-navy);
  color: #fff;
}

/* ── LIGHTBOX ── */
.anax-lightbox {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 1000;
  background: rgba(10, 15, 40, 0.93);
  align-items: center;
  justify-content: center;
  animation: anaxFadeIn 0.2s ease;
}

.anax-lightbox.open {
  display: flex;
}

@keyframes anaxFadeIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}

.anax-lightbox-content {
  position: relative;
  max-width: 90vw;
  max-height: 88vh;
  display: flex;
  align-items: center;
  justify-content: center;
}

.anax-lightbox-content img {
  max-width: 90vw;
  max-height: 85vh;
  object-fit: contain;
  border-radius: 4px;
  box-shadow: 0 24px 80px rgba(0,0,0,0.7);
  animation: anaxZoomIn 0.25s ease;
}

@keyframes anaxZoomIn {
  from { transform: scale(0.93); opacity: 0; }
  to   { transform: scale(1);    opacity: 1; }
}

.anax-lightbox-placeholder {
  width: 70vw;
  max-width: 800px;
  aspect-ratio: 16/9;
  background: #2a3555;
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.3);
  font-size: 0.9rem;
  letter-spacing: 0.06em;
}

.anax-lightbox-close {
  position: fixed;
  top: 22px;
  right: 28px;
  background: none;
  border: none;
  color: rgba(255,255,255,0.75);
  font-size: 2.2rem;
  cursor: pointer;
  line-height: 1;
  transition: color 0.2s, transform 0.2s;
  z-index: 1001;
}

.anax-lightbox-close:hover {
  color: white;
  transform: rotate(90deg);
}

.anax-lightbox-nav {
  position: fixed;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255,255,255,0.1);
  border: none;
  color: white;
  font-size: 2rem;
  padding: 14px 18px;
  cursor: pointer;
  border-radius: 3px;
  transition: background 0.2s;
  z-index: 1001;
  line-height: 1;
}

.anax-lightbox-nav:hover { background: rgba(255,255,255,0.2); }
.anax-lightbox-prev { left: 16px; }
.anax-lightbox-next { right: 16px; }

.anax-lightbox-counter {
  position: fixed;
  bottom: 22px;
  left: 50%;
  transform: translateX(-50%);
  color: rgba(255,255,255,0.5);
  font-size: 0.82rem;
  letter-spacing: 0.1em;
}

/* ── CONTACT SECTION ── */
.anax-section-contact {
  background: var(--anax-blue-light);
  padding: 70px 80px;
}

.anax-contact-inner {
  max-width: 900px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
}

.anax-contact-map {
  width: 100%;
  aspect-ratio: 4/3;
  border-radius: 4px;
  overflow: hidden;
  background: var(--anax-gray);
}

.anax-contact-map img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.anax-contact-right h2 {
  font-family: 'Raleway', sans-serif;
  font-weight: 700;
  font-size: 1rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--anax-text-dark);
  margin-bottom: 30px;
}

.anax-contact-form {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.anax-contact-form input,
.anax-contact-form textarea {
  width: 100%;
  padding: 12px 16px;
  border: 1px solid #c5d4e8;
  border-radius: 3px;
  background: var(--anax-white);
  font-family: 'Raleway', sans-serif;
  font-size: 0.88rem;
  color: var(--anax-text-dark);
  outline: none;
  transition: border-color 0.2s;
}

.anax-contact-form input:focus,
.anax-contact-form textarea:focus {
  border-color: var(--anax-blue-mid);
}

.anax-contact-form textarea {
  resize: vertical;
  min-height: 110px;
}

.anax-btn-send {
  align-self: flex-start;
  background: var(--anax-navy);
  color: var(--anax-white);
  border: none;
  padding: 12px 30px;
  font-family: 'Raleway', sans-serif;
  font-weight: 600;
  font-size: 0.88rem;
  letter-spacing: 0.08em;
  cursor: pointer;
  border-radius: 3px;
  transition: background 0.2s;
}

.anax-btn-send:hover { background: var(--anax-blue-mid); }

/* ── FOOTER ── */
.anax-footer {
  background: #f0f3f9;
  color: var(--anax-navy);
  padding: 56px 80px 40px;
}

.anax-footer-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  align-items: start;
}

/* Brand column */
.anax-footer-brand {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.anax-footer-logo {
  height: 52px;
  width: auto;
}

.anax-footer-legal {
  font-size: 0.82rem;
  color: var(--anax-navy);
}

.anax-footer-legal a {
  color: var(--anax-navy);
  text-decoration: underline;
  text-underline-offset: 2px;
}

.anax-footer-legal a:hover {
  color: var(--anax-blue-mid);
}

.anax-footer-dev {
  font-size: 0.82rem;
  color: var(--anax-navy);
}

.anax-footer-dev-link {
  color: var(--anax-navy);
  font-weight: 600;
  text-decoration: underline;
  text-underline-offset: 2px;
}

.anax-footer-dev-link:hover {
  color: var(--anax-blue-mid);
}

/* Heading for each column */
.anax-footer-heading {
  font-family: 'Raleway', sans-serif;
  font-weight: 700;
  font-size: 0.95rem;
  color: var(--anax-navy);
  margin: 0 0 14px 0;
  padding-bottom: 10px;
  border-bottom: 2px solid var(--anax-navy);
  letter-spacing: 0.03em;
}

/* Link lists */
.anax-footer-links {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.anax-footer-links a {
  font-size: 0.88rem;
  color: var(--anax-navy);
  text-decoration: none;
  transition: color 0.2s;
}

.anax-footer-links a:hover {
  color: var(--anax-blue-mid);
  text-decoration: underline;
}

/* Contact list items */
.anax-footer-contact li {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  font-size: 0.88rem;
  color: var(--anax-navy);
  line-height: 1.4;
}

/* Social list items */
.anax-footer-social li {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.88rem;
  color: var(--anax-navy);
}

.anax-footer-icon {
  display: flex;
  align-items: center;
  flex-shrink: 0;
  color: var(--anax-navy);
  font-size: 1rem;
}

/* Responsive footer */
@media (max-width: 900px) {
  .anax-footer {
    padding: 40px 24px 32px;
  }
  .anax-footer-inner {
    grid-template-columns: 1fr 1fr;
    gap: 32px;
  }
  .anax-footer-brand {
    grid-column: 1 / -1;
  }
}

@media (max-width: 500px) {
  .anax-footer-inner {
    grid-template-columns: 1fr;
  }
}

/* ── RESPONSIVE ── */
@media (max-width: 768px) {
  .anax-section-luxury       { padding: 50px 24px; }
  .anax-section-tech-inner   { padding: 50px 24px; grid-template-columns: 1fr; }
  .anax-section-gallery      { padding: 50px 24px; }
  .anax-section-contact      { padding: 50px 24px; }
  .anax-two-col              { grid-template-columns: 1fr; gap: 36px; }
  .anax-contact-inner        { grid-template-columns: 1fr; gap: 36px; }
  .anax-hero                 { height: 260px; }
  .anax-section-luxury h2    { font-size: 1.4rem; }
  .anax-lightbox-nav         { display: none; }
}
