@import url('colors.css');

@font-face {
  font-family: 'OldStandardTT';
  src: url('fonts/OldStandardTT-Regular.ttf') format('truetype');
  font-weight: normal;
  font-style: normal;
}

@font-face {
  font-family: 'Inter';
  src: url('fonts/Inter.ttf') format('truetype');
  font-weight: normal;
  font-style: normal;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Inter', sans-serif;
  background-color: var(--bg-light);
  color: var(--text-dark);
  line-height: 1.6;
  overflow-x: hidden;
}

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

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

/* Header Styles */
.header-new {
  position: absolute;
  top: 31px;
  left: 73px;
  right: 73px;
  z-index: 100;
  background: transparent;
}

@media (max-width: 1100px) {
  .header-new {
    left: 20px;
    right: 20px;
  }
}

.hero-section {
  position: relative;
}

.header-container {
  max-width: 1294px;
  width: 100%;
  min-height: 88px;
  height: 88px;
  margin: 0 auto;
  background: rgba(255, 255, 255, 0.64);
  border-radius: 36px;
  padding: 15px 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.logo-container {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
  min-width: 0;
}

.logo-icon {
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.logo-icon img {
  width: auto;
  height: auto;
  max-width: 100%;
  max-height: 56px;
  object-fit: contain;
}

.logo-text {
  font-family: 'Inter', sans-serif;
  font-size: 12pt;
  font-weight: 600;
  color: var(--text-dark);
  letter-spacing: 0.5px;
}

.nav-new {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-left: 10px;
  margin-right: 24px;
}

.nav-link {
  font-family: 'Inter', sans-serif;
  font-size: 12pt;
  font-weight: 500;
  color: var(--text-dark);
  text-transform: uppercase;
  letter-spacing: 0%;
  line-height: 120%;
  transition: all 0.3s ease;
  position: relative;
  text-decoration: none;
}

.nav-link:hover {
  color: var(--text-dark);
}

.nav-link.active {
  font-weight: 900;
  color: var(--text-dark);
  text-decoration: underline;
  text-decoration-style: solid;
  text-underline-offset: 0%;
  text-decoration-thickness: auto;
}

.cta-button-header {
  display: flex;
  align-items: center;
  gap: 10px;
  width: 100%;
  max-width: 212px;
  height: 40px;
  padding: 7px 24px;
  background: rgba(192, 155, 128, 1);
  border: none;
  border-radius: 20px;
  color: var(--text-light);
  font-family: 'Inter', sans-serif;
  font-size: 10.5pt;
  font-weight: 600;
  text-transform: uppercase;
  cursor: pointer;
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease;
  box-shadow: 0 4px 15px rgba(192, 155, 128, 0.3);
  white-space: nowrap;
  justify-content: center;
}

.cta-button-header:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(168, 109, 0, 0.3);
}

.cta-button-header img {
  width: 16px;
  height: 16px;
  filter: brightness(0) invert(1);
}

.mobile-menu-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
}

.mobile-menu-toggle span {
  width: 25px;
  height: 3px;
  background: var(--text-dark);
  transition: all 0.3s ease;
}

.mobile-menu-new {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 9999;
  flex-direction: row;
  opacity: 0;
  visibility: hidden;
  transition:
    opacity 0.3s ease,
    visibility 0.3s ease;
}

.mobile-menu-new.active {
  display: flex;
  opacity: 1;
  visibility: visible;
}

.mobile-menu-overlay {
  flex: 0 0 33.333%;
  max-width: 33.333%;
  background: rgba(0, 0, 0, 0.5);
  cursor: pointer;
}

.mobile-menu-panel {
  flex: 1;
  background: #2e2e2e;
  padding: 48px 28px 32px;
  display: flex;
  flex-direction: column;
  min-width: 0;
  overflow-y: auto;
}

.nav-mobile {
  display: flex;
  flex-direction: column;
  gap: 8px;
  flex: 1;
}

.nav-mobile .nav-link {
  padding: 14px 0;
  border-bottom: none;
  color: rgba(255, 255, 255, 1);
  font-weight: 700;
  font-size: 12pt;
  text-transform: uppercase;
  letter-spacing: 0.02em;
}

.nav-mobile .cta-button-header {
  display: flex;
  justify-content: center;
  align-items: center;
  text-decoration: none;
  margin-top: auto;
  padding: 16px 24px;
  background: #b89f88;
  color: rgba(255, 255, 255, 1);
  border-radius: 12px;
  font-weight: 700;
  text-transform: uppercase;
  border: none;
  cursor: pointer;
  width: 100%;
  max-width: 280px;
  align-self: center;
}

/* Hero Section */
.hero-section {
  position: relative;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background-image: url('assets2/IMG_1885.jpg');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  padding-top: 0;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    to bottom,
    rgba(0, 0, 0, 0.3),
    rgba(0, 0, 0, 0.5)
  );
  z-index: 2;
}

.hero-content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 589px;
  height: 222px;
  z-index: 3;
  text-align: center;
  color: var(--text-light);
  padding: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.hero-title {
  font-family: 'Montserrat', sans-serif;
  font-size: 48pt;
  font-weight: 600;
  font-style: normal;
  text-transform: uppercase;
  letter-spacing: -0.01em;
  line-height: 120%;
  text-align: center;
  color: rgba(255, 255, 255, 1);
  margin-bottom: 20px;
  text-shadow: 2px 2px 10px rgba(0, 0, 0, 0.5);
  width: 589px;
  height: 58px;
}

.hero-subtitle {
  font-family: 'Inter', sans-serif;
  font-size: 24pt;
  font-weight: 700;
  font-style: normal;
  line-height: 120%;
  letter-spacing: 0%;
  text-align: center;
  color: rgba(254, 253, 246, 1);
  width: 550px;
  height: 37px;
  margin-bottom: 40px;
  text-shadow: 1px 1px 5px rgba(0, 0, 0, 0.5);
}

.hero-cta-button {
  width: 228px;
  height: 68px;
  padding: 20px 24px;
  background: rgba(192, 155, 128, 1);
  border: none;
  border-radius: 19px;
  color: var(--text-light);
  font-family: 'Inter', sans-serif;
  font-size: 12pt;
  font-weight: 600;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  transition: all 1.117s ease-out;
  box-shadow: 0 4px 15px rgba(192, 155, 128, 0.3);
}

.hero-cta-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

/* About Section */
.about-section {
  padding: 100px 40px;
  background: var(--bg-light);
}

.about-container {
  max-width: 1400px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.about-image {
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

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

.about-content {
  padding: 20px;
}

.section-label {
  font-family: 'Montserrat', sans-serif;
  font-size: 24pt;
  font-weight: 600;
  font-style: normal;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: rgba(0, 0, 0, 0.58);
  margin-bottom: 20px;
}

.section-title {
  font-family: 'Montserrat', sans-serif;
  font-size: 45pt;
  font-weight: 500;
  font-style: normal;
  color: rgba(192, 155, 128, 1);
  line-height: 1.2;
  margin-bottom: 30px;
}

.about-content .section-title {
  margin-bottom: 150px;
  transition: margin-bottom 0.4s ease;
}

.about-content.is-expanded .section-title {
  margin-bottom: 25px;
}

.section-title span {
  display: block;
}

/* Title inside info-cards-section (SANE RESIDENCE) */
.between-sections-title {
  font-family: 'Montserrat', sans-serif;
  font-size: 24pt;
  font-weight: 600;
  font-style: normal;
  line-height: 120%;
  letter-spacing: -0.01em;
  color: rgba(0, 0, 0, 0.58);
  text-align: left;
  margin-right: 5.71%;
  padding: 60px 20px;
  background: transparent;
  text-transform: uppercase;
  position: relative;
  z-index: 2;
}

.about-text {
  font-family: 'Inter', sans-serif;
  font-size: 13.5pt;
  font-weight: 300;
  color: var(--text-dark);
  line-height: 1.8;
  margin-bottom: 30px;
}

.see-more-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: 'Inter', sans-serif;
  font-size: 12pt;
  font-weight: 400;
  color: var(--text-dark);
  transition: color 0.3s ease;
}

.see-more-link:hover {
  color: var(--text-gold);
}

/* Info Cards Section */
.info-cards-section {
  padding: 100px 40px;
  height: 100vh;
  position: relative;
  background: linear-gradient(
    to bottom,
    rgba(248, 245, 241, 1) 0%,
    rgba(248, 245, 241, 1) 50%,
    rgba(40, 40, 38, 1) 50%,
    rgba(40, 40, 38, 1) 100%
  );
  overflow: visible;
  padding-bottom: 200px;
}

.info-cards-background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: center;
}

.section3-building {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.info-cards-container {
  max-width: 1400px;
  margin: 0 auto;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 40px;
  position: absolute;
  bottom: -123px;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
  padding: 0 40px;
  z-index: 2;
  flex-wrap: wrap;
}

.info-card {
  width: 100%;
  max-width: 406px;
  height: 246px;
  background: rgba(255, 255, 255, 0.46);
  box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25);
  border-radius: 20px;
  padding: 0;
  color: var(--text-dark);
  position: relative;
  overflow: hidden;
  flex: none;
  order: 0;
  flex-grow: 0;
}

.card-content-left {
  position: relative;
  z-index: 2;
  padding: 20px;
  width: 216px;
  height: 100%;
  min-height: 0;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  overflow: hidden;
}

.card-image-section {
  position: absolute;
  width: 180px;
  height: 225px;
  left: 216px;
  top: 11px;
  z-index: 1;
}

.card-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 20px;
}

.card-number {
  font-family: 'Montserrat', sans-serif;
  font-size: 45pt;
  font-weight: 500;
  font-style: normal;
  color: var(--text-dark);
  margin-bottom: 4px;
  line-height: 1;
  flex-shrink: 0;
}

.card-title {
  font-family: 'Montserrat', sans-serif;
  font-size: 12pt;
  font-weight: 400;
  font-style: normal;
  line-height: 120%;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  margin-bottom: 8px;
  color: var(--text-dark);
  flex-shrink: 0;
}

.card-description {
  font-family: 'Inter', sans-serif;
  font-size: 10.5pt;
  font-weight: 400;
  font-style: normal;
  line-height: 1.4;
  color: var(--text-dark);
  text-align: left;
  margin: 0;
  flex: 1;
  min-height: 0;
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 4;
  -webkit-box-orient: vertical;
  line-clamp: 4;
}

/* Two Column Section */
.two-column-section {
  padding: 100px 40px;
  background: var(--bg-light);
  height: 75vh;
  margin-top: 150px;
}

.two-column-container {
  max-width: 1400px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
}

.column-item {
  display: flex;
  flex-direction: column;
}

.column-image {
  width: 100%;
  height: 400px;
  border-radius: 20px;
  overflow: hidden;
  margin-bottom: 30px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

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

.column-title {
  font-family: 'Montserrat', sans-serif;
  font-weight: 500;
  font-size: 27pt;
  font-weight: 500;
  color: rgba(192, 155, 128, 1);
  text-align: center;
  margin-bottom: 30px;
  line-height: 1.3;
  text-align: left;
}

.column-content {
  font-family: 'Inter', sans-serif;
}

.column-content p {
  font-family: 'Inter', sans-serif;
  font-size: 13.5pt;
  font-weight: 300;
  font-style: normal;
  line-height: 140%;
  letter-spacing: 0%;
  color: var(--text-dark);
  margin-bottom: 20px;
}

.expanded-content {
  margin-top: 20px;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease-out;
}

.expanded-content.is-expanded {
  max-height: 900px;
}

.about-text-expanded {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease-out;
}

.about-text-expanded.is-expanded {
  max-height: 500px;
}

.expanded-content p {
  font-family: 'Inter', sans-serif;
  font-size: 13.5pt;
  font-weight: 300;
  font-style: normal;
  line-height: 140%;
  letter-spacing: 0%;
  color: var(--text-dark);
  margin-bottom: 20px;
}

.see-less-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: 'Inter', sans-serif;
  font-size: 12pt;
  font-weight: 400;
  color: var(--text-dark);
  transition: color 0.3s ease;
}

.see-less-link:hover {
  color: var(--text-gold);
}

/* CTA Section */
.cta-section {
  padding: 100px 40px;
  background: var(--bg-light);
  margin-top: 150px;
}

.cta-container {
  margin: 0 auto;
  max-width: 100%;
  position: relative;
  border-radius: 30px;
  overflow: hidden;
  min-height: 500px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

.cta-background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}

.cta-background img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.cta-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.6);
  z-index: 2;
}

.cta-content {
  position: relative;
  z-index: 3;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 500px;
  padding: 40px;
  text-align: center;
}

.cta-title {
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  font-style: normal;
  font-size: 60px;
  line-height: 120%;
  letter-spacing: -0.01em;
  color: rgba(255, 255, 255, 1);
  margin-bottom: 40px;
  text-transform: uppercase;
  text-shadow: 2px 2px 10px rgba(0, 0, 0, 0.5);
}

.cta-title span {
  display: block;
}

.cta-button-large {
  display: inline-block;
  padding: 18px 60px;
  background: rgba(192, 155, 128, 1);
  border: none;
  border-radius: 12px;
  color: rgba(254, 253, 246, 1);
  font-family: 'Inter', sans-serif;
  font-size: 13.5pt;
  font-weight: 600;
  cursor: pointer;
  text-decoration: none;
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
}

.cta-button-large:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.25);
}

/* Dark Info Section */
.dark-info-section {
  padding: 100px 40px;
  background: var(--bg-dark);
}

.dark-info-container {
  max-width: 1400px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: stretch;
}

.dark-info-left {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  height: 460px;
  min-height: 460px;
}

.dark-info-card {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 20px;
  padding: 30px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 15px;
  cursor: pointer;
  transition:
    background 0.25s ease,
    border-color 0.25s ease,
    box-shadow 0.25s ease;
  box-shadow:
    0 0 0 1px rgba(255, 255, 255, 0.08),
    inset 0 1px 0 rgba(255, 255, 255, 0.06);
}

.dark-info-card:hover {
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(255, 255, 255, 0.2);
}

.dark-info-card.selected {
  background: rgba(0, 0, 0, 0.1);
  border-color: rgba(255, 255, 255, 0.2);
  box-shadow:
    0 0 0 1px rgba(255, 255, 255, 0.1),
    inset 0 0 0 1px rgba(0, 0, 0, 0.15);
}

.dark-info-card.wide {
  grid-column: 1 / -1;
}

.dark-info-card .info-icon {
  width: 48px;
  height: 48px;
  color: rgba(255, 255, 255, 0.66);
  display: flex;
  align-items: center;
  justify-content: center;
}

.dark-info-card .info-icon img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
}

.dark-info-card .info-text {
  font-family: 'Inter', sans-serif;
  font-size: 12pt;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.66);
  text-align: center;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.dark-info-right {
  position: relative;
  height: 460px;
  min-height: 460px;
}

.location-image-card {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
  height: 460px;
  max-height: 460px;
}

.location-image-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.location-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: rgba(0, 0, 0, 0.4);
  padding: 30px;
  color: var(--text-light);
}

.location-title {
  font-family: 'Inter', sans-serif;
  font-size: 18pt;
  font-weight: 600;
  margin-bottom: 15px;
}

.location-text {
  font-family: 'Inter', sans-serif;
  font-size: 12pt;
  font-weight: 300;
  line-height: 1.6;
}

/* Security Section */
.security-section {
  padding: 100px 40px;
  background: var(--bg-dark);
}

.security-container {
  max-width: 1400px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.security-left {
  position: relative;
}

.security-image-card {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
}

.security-image-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.security-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: rgba(0, 0, 0, 0.8);
  padding: 30px;
  color: var(--text-light);
}

.security-title {
  font-family: 'Inter', sans-serif;
  font-size: 18pt;
  font-weight: 600;
  margin-bottom: 15px;
}

.security-text {
  font-family: 'Inter', sans-serif;
  font-size: 12pt;
  font-weight: 300;
  line-height: 1.6;
}

.security-right {
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.security-main-title {
  font-family: 'Inter', sans-serif;
  font-size: 36pt;
  font-weight: 600;
  color: var(--text-beige);
  text-transform: uppercase;
  letter-spacing: 2px;
  line-height: 1.2;
}

.contact-box {
  background: transparent;
  border: 1px solid var(--border-light);
  border-radius: 16px;
  padding: 30px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.contact-item {
  display: flex;
  align-items: center;
  gap: 15px;
  color: var(--text-beige);
  font-family: 'Inter', sans-serif;
  font-size: 12pt;
  font-weight: 400;
}

.contact-item img {
  width: 20px;
  height: 20px;
  filter: brightness(0) saturate(100%) invert(89%) sepia(12%) saturate(1000%)
    hue-rotate(5deg) brightness(95%) contrast(90%);
}

/* Footer */
.footer-new {
  background: var(--bg-dark);
  color: var(--text-beige);
  padding-top: 150px;
}

.footer-top-section {
  max-width: 1400px;
  margin: 0 auto 60px;
  display: grid;
  grid-template-columns: 1.6fr 1fr;
  gap: 60px;
  align-items: start;
  padding: 40px;
}

.footer-top-left {
  display: flex;
  flex-direction: column;
  gap: 35px;
  min-width: 0;
}

.footer-main-title {
  font-family: 'Montserrat', sans-serif;
  font-weight: 500;
  font-size: 60px;
  line-height: 120%;
  letter-spacing: -0.01em;
  text-transform: uppercase;
  color: var(--text-light);
  margin: 0;
}

.footer-title-line {
  display: block;
  color: rgba(192, 155, 128, 1);
}

.footer-top-right {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 15px;
}

.footer-logo-image {
  max-width: 180px;
  height: auto;
  display: block;
}

.footer-logo-text {
  font-family: 'Montserrat', sans-serif;
  font-size: 18pt;
  font-weight: 500;
  color: var(--text-beige);
  text-transform: uppercase;
  letter-spacing: 0.02em;
}

.footer-contact-bar {
  background: transparent;
  border: 1px solid var(--border-light);
  border-radius: 16px;
  padding: 28px 45px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: nowrap;
  gap: 40px;
}

.footer-contact-item {
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: 'Inter', sans-serif;
  font-size: 12pt;
  font-weight: 400;
  color: var(--text-beige);
  white-space: nowrap;
}

.footer-contact-item img {
  width: 20px;
  height: 20px;
  filter: brightness(0) saturate(100%) invert(89%) sepia(12%) saturate(1000%)
    hue-rotate(5deg) brightness(95%) contrast(90%);
}

.footer-content {
  max-width: 1400px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 60px;
  padding: 40px;
}

.footer-column {
  display: flex;
  flex-direction: column;
}

.footer-heading {
  font-family: 'Inter', sans-serif;
  font-size: 18pt;
  font-weight: 600;
  margin-bottom: 30px;
  color: var(--text-light);
}

.footer-info {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.footer-info-item {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.footer-info-item strong {
  font-family: 'Inter', sans-serif;
  font-size: 13.5pt;
  font-weight: 600;
  color: var(--text-light);
}

.footer-info-item p {
  font-family: 'Inter', sans-serif;
  font-size: 12pt;
  font-weight: 400;
  color: var(--text-beige);
  line-height: 1.6;
}

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

.footer-links a {
  font-family: 'Inter', sans-serif;
  font-size: 12pt;
  font-weight: 400;
  color: var(--text-beige);
  transition: color 0.3s ease;
}

.footer-links a:hover {
  color: var(--text-light);
}

.footer-social {
  display: flex;
  gap: 15px;
  margin-top: 20px;
}

.footer-social a {
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.3s ease;
}

.footer-social a:hover {
  transform: scale(1.1);
}

.footer-social img {
  width: 24px;
  height: 24px;
  filter: brightness(0) saturate(100%) invert(89%) sepia(12%) saturate(1000%)
    hue-rotate(5deg) brightness(95%) contrast(90%);
}

.footer-bottom {
  background: rgba(192, 155, 128, 1);
  color: var(--text-dark);
  padding: 0 40px 0 200px;
  min-height: 246px;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  font-family: 'Inter', sans-serif;
  font-size: 10.5pt;
  font-weight: 400;
  text-align: left;
}

.footer-bottom p {
  margin: 0;
}

.footer-bottom-name {
  height: 1.4em;
  width: auto;
  vertical-align: middle;
  display: inline-block;
}

.footer-bottom strong {
  font-weight: 600;
}

/* Responsive Design */
@media (max-width: 1200px) {
  .hero-title {
    font-size: 42pt;
  }

  .section-title {
    font-size: 30pt;
  }

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

@media (max-width: 1100px) {
  .nav-new {
    display: none;
  }

  .header-container .cta-button-header {
    display: none;
  }

  .mobile-menu-toggle {
    display: flex;
  }

  .mobile-menu-new {
    display: none;
  }
  .mobile-menu-new.active {
    display: flex;
  }

  .header-container {
    padding: 15px 20px;
  }

  .nav-new {
    margin-left: 0;
    margin-right: 0;
  }
}

@media (max-width: 968px) {
  .about-container,
  .two-column-container,
  .dark-info-container,
  .security-container {
    grid-template-columns: 1fr;
  }

  .two-column-section {
    height: auto;
    min-height: 0;
    margin-top: 60px;
  }

  .two-column-container {
    gap: 48px;
  }

  .column-item {
    margin-bottom: 0;
  }

  .column-item + .column-item {
    margin-top: 0;
  }

  .cta-section {
    margin-top: 60px;
  }

  .cta-container {
    min-height: 400px;
  }

  .cta-content {
    min-height: 400px;
    padding: 32px 24px;
  }

  .info-cards-container {
    grid-template-columns: 1fr;
  }

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

  .footer-top-section {
    grid-template-columns: 1fr;
    gap: 40px;
    text-align: center;
  }

  .footer-top-left {
    align-items: center;
  }

  .footer-contact-bar {
    flex-direction: column;
    align-items: center;
  }
}

@media (max-width: 768px) {
  .header-container {
    padding: 0 20px;
  }

  .hero-title {
    font-size: 31.5pt;
  }

  .hero-subtitle {
    font-size: 13.5pt;
  }

  .section-title {
    font-size: 24pt;
  }

  .column-title {
    font-size: 21pt;
  }

  .cta-title {
    font-size: 32px;
  }

  .security-main-title {
    font-size: 27pt;
  }

  .footer-main-title {
    font-size: 32px;
  }

  .about-section,
  .info-cards-section,
  .two-column-section,
  .cta-section,
  .dark-info-section,
  .security-section {
    padding: 60px 20px;
  }

  .two-column-section {
    margin-top: 48px;
  }

  .two-column-container {
    gap: 40px;
  }

  .column-image {
    height: 280px;
    margin-bottom: 20px;
  }

  .cta-section {
    margin-top: 48px;
  }

  .cta-container {
    min-height: 340px;
    border-radius: 20px;
  }

  .cta-content {
    min-height: 340px;
    padding: 28px 20px;
  }

  .cta-title {
    font-size: 26px;
    margin-bottom: 28px;
  }
}
