@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@300;400;500;600;700&display=swap');

/* Brand Design Tokens (Parsed from original site variables) */
:root {
  --color-primary: #034459;       /* Deep Teal (Wix --color_19) */
  --color-accent: #035772;        /* Medium Teal (Wix --color_18) */
  --color-text-dark: #091405;     /* Dark Charcoal/Greenish Black (Wix --color_15) */
  --color-text-muted: #626462;    /* Muted Slate Grey (Wix --color_14) */
  --color-bg-light: #f6f9f5;      /* Light Greenish Off-white (Wix --color_11) */
  --color-bg-grey: #fafafa;       /* Section background grey */
  --color-white: #ffffff;
  --color-border: #e3e5e2;
  
  --font-main: 'Montserrat', sans-serif;
  
  --transition-normal: 0.3s ease-in-out;
  --wix-content-width: 980px;     /* Wix standard desktop content area grid */
}

/* Reset & Base Styles */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: var(--font-main);
  background-color: var(--color-white);
  color: var(--color-text-dark);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

/* Layout Containers */
.full-width-section {
  width: 100%;
  position: relative;
  padding: 80px 0;
}

.bg-light {
  background-color: var(--color-bg-light);
}

.bg-grey {
  background-color: var(--color-bg-grey);
}

.bg-white {
  background-color: var(--color-white);
}

/* Centered content container (980px like Wix layout columns) */
.content-container {
  width: 100%;
  max-width: var(--wix-content-width);
  margin: 0 auto;
  padding: 0 20px;
}

/* Typography (Mapped to original sizes) */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-main);
  font-weight: 300; /* Brandon Grotesque light look */
  letter-spacing: 0.06em;
  color: var(--color-primary);
  text-transform: uppercase;
  text-align: center;
}

/* 55px bold title block */
h2.section-title {
  font-size: 55px;
  line-height: 1.1;
  font-weight: 600; /* Lulo Clean bold style */
  margin-bottom: 50px;
  letter-spacing: 0.08em;
}

h3.section-subtitle {
  font-size: 25px;
  font-weight: 600;
  margin-bottom: 20px;
  color: var(--color-primary);
  text-transform: none;
}

h4.person-name {
  font-size: 23px;
  font-weight: 600;
  text-transform: none;
  text-align: left;
  margin-bottom: 5px;
}

/* Wix Lulo Clean 20px bold menu items and list elements */
h5.uppercase-item {
  font-size: 19px;
  font-weight: 700;
  letter-spacing: 0.05em;
  color: var(--color-primary);
  text-transform: uppercase;
}

/* Homepage intro paragraphs */
p.intro-bold {
  font-size: 25px;
  font-weight: 700;
  line-height: 1.4;
  color: var(--color-text-dark);
  text-align: center;
  margin-bottom: 30px;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

p.intro-regular {
  font-size: 23px;
  font-weight: 400;
  line-height: 1.4;
  color: var(--color-text-dark);
  text-align: center;
  margin-bottom: 35px;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

p.body-text {
  font-size: 16px;
  color: var(--color-text-muted);
  line-height: 1.6;
  margin-bottom: 20px;
}

/* Header & Navigation (Dark Teal with White text) */
header.site-header {
  width: 100%;
  background-color: var(--color-primary);
  padding: 15px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.header-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: none;     /* full-width: portrait & landscape both fill edge-to-edge (unified with the hero) */
  padding: 0 40px;
}

.header-logo-link {
  display: flex;
  align-items: center;
  gap: 14px;
  text-decoration: none;
}

.header-logo-img {
  width: 107px;
  height: 97px;
  object-fit: contain;
}

.header-logo-text {
  color: #ffffff;
  font-size: 19px;
  font-weight: 700;
  line-height: 1.35;
  white-space: nowrap;
}

@media (max-width: 560px) {
  .header-container {
    padding: 0 16px;
  }
  .header-logo-text {
    font-size: 14px;
    white-space: normal; /* allow long EN brand name to wrap instead of pushing the hamburger off-screen */
  }
  .header-logo-img {
    width: 72px;
    height: 66px;
    flex-shrink: 0;
  }
  .header-logo-link {
    gap: 10px;
    flex: 1 1 auto;
    min-width: 0; /* lets the brand text block shrink inside the flex row */
  }
  .lang-switch {
    margin: 0 10px;
    gap: 6px;
    flex-shrink: 0;
  }
  .hamburger {
    flex-shrink: 0;
  }
}

.nav-menu {
  display: flex;
  list-style: none;
  gap: 28px;                        /* fixed, equal spacing — looks identical in portrait & landscape */
}

.nav-link {
  font-size: 14px;
  font-weight: 500;
  color: var(--color-white);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  padding: 10px 5px;
  position: relative;
  white-space: nowrap;   /* keep each item like "ABOUT US" on a single line */
}

.nav-link:hover, .nav-link.active {
  color: #f5feba; /* Soft highlight color from Wix variables */
}

.hamburger {
  display: none;
  cursor: pointer;
  background: none;
  border: none;
}

.bar {
  display: block;
  width: 25px;
  height: 2px;
  margin: 5px auto;
  transition: var(--transition-normal);
  background-color: var(--color-white);
}

/* Footer (Off-white with dark text) */
footer.site-footer {
  background-color: var(--color-bg-light);
  color: var(--color-text-dark);
  padding: 60px 0 30px;
  font-size: 14px;
  border-top: 1px solid var(--color-border);
}

.footer-container {
  text-align: center;
}

.footer-address {
  font-style: normal;
  line-height: 1.8;
  margin-bottom: 20px;
}

.footer-divider {
  margin: 0 10px;
  color: var(--color-border);
}

.footer-license {
  font-size: 13px;
  color: var(--color-text-muted);
  margin-bottom: 25px;
}

.footer-bottom {
  margin-top: 30px;
  padding-top: 20px;
  border-top: 1px solid var(--color-border);
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.footer-privacy-link {
  text-decoration: underline;
  color: var(--color-text-dark);
}

.footer-privacy-link:hover {
  color: var(--color-accent);
}

/* Hero Banner (Urban Skyline - No Text Overlay) */
.hero-skyline-banner {
  width: 100%;
  height: 600px;
  background-image: url('../images/hero-skyline.jpg');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

/* Section specific styling */
.why-choose-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  margin-top: 50px;
}

.why-choose-card {
  text-align: center;
  padding: 20px;
}

.why-choose-card .uppercase-item {
  line-height: 1.4;
}

/* Video Section */
.video-player-container {
  width: 100%;
  max-width: 800px;
  margin: 0 auto 30px;
  aspect-ratio: 16/9;
  background-color: #000;
  position: relative;
  box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}

.video-player-mock {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background-image: linear-gradient(rgba(3, 68, 89, 0.4), rgba(3, 68, 89, 0.4)), url('../images/hero-skyline.jpg');
  background-size: cover;
  background-position: center;
  cursor: pointer;
}

.play-circle {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background-color: rgba(255,255,255,0.9);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  color: var(--color-primary);
  transition: var(--transition-normal);
}

.video-player-mock:hover .play-circle {
  transform: scale(1.1);
  background-color: var(--color-white);
}

.article-review-link {
  display: block;
  text-align: center;
  font-size: 19px;
  font-weight: 500;
  text-decoration: underline;
  color: var(--color-primary);
  margin-top: 25px;
}

.article-review-link:hover {
  color: var(--color-accent);
}

/* Contact Form Layout (Centered Block) */
.contact-block {
  max-width: 600px;
  margin: 0 auto;
  text-align: center;
}

.contact-details-text {
  font-size: 20px;
  line-height: 1.8;
  margin-bottom: 40px;
  color: var(--color-text-dark);
}

.contact-details-text a {
  text-decoration: underline;
}

.minimal-form {
  width: 100%;
  text-align: left;
}

.form-group {
  margin-bottom: 20px;
}

.form-control {
  width: 100%;
  padding: 12px;
  border: 1px solid var(--color-border);
  background-color: var(--color-white);
  font-family: var(--font-main);
  font-size: 16px;
  outline: none;
}

.form-control:focus {
  border-color: var(--color-primary);
}

.form-submit-btn {
  background-color: var(--color-primary);
  color: var(--color-white);
  border: none;
  padding: 12px 30px;
  font-size: 16px;
  font-family: var(--font-main);
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition-normal);
  width: 100%;
}

.form-submit-btn:hover {
  background-color: var(--color-accent);
}

.form-message {
  margin-top: 20px;
  padding: 10px;
  text-align: center;
  font-size: 15px;
  display: none;
}

.form-message.success {
  display: block;
  background-color: #e6f4ea;
  color: #137333;
}

.form-message.error {
  display: block;
  background-color: #fce8e6;
  color: #c5221f;
}

/* About Us Layout Blocks */
.about-block-box {
  border: 1px solid var(--color-border);
  padding: 40px;
  margin-bottom: 55px;
  background-color: var(--color-bg-light);
}

.about-subtitle-bar {
  font-size: 20px;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--color-primary);
  margin-bottom: 15px;
  border-bottom: 2px solid var(--color-primary);
  padding-bottom: 5px;
  display: inline-block;
}

.about-bullet-list {
  list-style: none;
  margin-bottom: 25px;
}

.about-bullet-list li {
  position: relative;
  padding-left: 20px;
  font-size: 16px;
  margin-bottom: 10px;
  color: var(--color-text-dark);
}

.about-bullet-list li::before {
  content: "•";
  position: absolute;
  left: 0;
  color: var(--color-primary);
  font-weight: bold;
}

.about-center-values {
  text-align: center;
  margin: 60px 0;
}

.about-center-values h4 {
  font-size: 18px;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--color-primary);
  margin-bottom: 20px;
  letter-spacing: 0.05em;
}

/* Team Grid - Text and Clean Placeholders */
.team-section-title {
  font-size: 30px;
  font-weight: 600;
  margin: 50px 0 30px;
  text-align: left;
  border-bottom: 2px solid var(--color-border);
  padding-bottom: 10px;
  text-transform: uppercase;
  color: var(--color-primary);
}

/* Team page: wider fluid container so landscape/desktop fills the screen, no empty side bands */
.content-container.team-wide {
  max-width: 1760px;
  width: 94%;
  padding: 0;
}

.team-members-grid {
  display: grid;
  /* auto-fit + 1fr stretches cards edge-to-edge in any orientation (portrait & landscape) */
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 28px;
  margin-bottom: 50px;
}

.team-member-card {
  background-color: var(--color-white);
  border: 1px solid var(--color-border);
  padding: 0 0 22px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  overflow: hidden;
  transition: var(--transition-normal);
}

.team-member-card:hover {
  box-shadow: 0 8px 24px rgba(3, 68, 89, 0.10);
  transform: translateY(-3px);
}

.team-member-photo-container {
  width: 100%;
  aspect-ratio: 4 / 5;            /* enlarged portrait frame, fills the whole card width */
  background-color: var(--color-bg-light);
  margin-bottom: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.team-member-photo-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;   /* keep faces in frame when cropping */
}

.team-member-initials {
  font-size: clamp(36px, 6vw, 52px);
  font-weight: 700;
  color: var(--color-primary);
  letter-spacing: 3px;
  opacity: 0.55;                 /* softer, reads as a placeholder until a photo is added */
}

.team-member-card h4 {
  font-size: 20px;
  font-weight: 600;
  color: var(--color-text-dark);
  text-align: center;
  margin: 0 0 5px;
  padding: 0 16px;
  text-transform: none;
}

.team-member-card .title {
  font-size: 14px;
  color: var(--color-text-muted);
  margin-bottom: 16px;
  padding: 0 16px;
  text-transform: none;
  font-style: italic;
}

.btn-view-bio {
  background: none;
  border: 1px solid var(--color-primary);
  color: var(--color-primary);
  padding: 6px 15px;
  font-size: 12px;
  font-family: var(--font-main);
  text-transform: uppercase;
  cursor: pointer;
  transition: var(--transition-normal);
}

.btn-view-bio:hover {
  background-color: var(--color-primary);
  color: var(--color-white);
}

/* Modals */
.modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(3, 68, 89, 0.5);
  backdrop-filter: blur(2px);
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}

.modal-overlay.active {
  opacity: 1;
  visibility: visible;
}

.modal-container {
  background-color: var(--color-white);
  width: 90%;
  max-width: 600px;
  max-height: 80vh;
  overflow-y: auto;
  border: 2px solid var(--color-primary);
  position: relative;
  box-shadow: 0 10px 30px rgba(0,0,0,0.15);
}

.modal-close {
  position: absolute;
  top: 15px;
  right: 15px;
  font-size: 24px;
  color: var(--color-primary);
  background: none;
  border: none;
  cursor: pointer;
}

.modal-body {
  padding: 40px;
}

.modal-header-info {
  border-bottom: 1px solid var(--color-border);
  padding-bottom: 15px;
  margin-bottom: 20px;
}

.modal-header-info h2 {
  font-size: 25px;
  font-weight: 600;
  text-align: left;
  text-transform: none;
}

.modal-header-info .modal-title {
  font-size: 15px;
  color: var(--text-muted);
  font-style: italic;
}

.modal-bio-text {
  font-size: 15px;
  line-height: 1.6;
}

.modal-bio-text p {
  margin-bottom: 15px;
}

/* Minimal Grid lists for Products, Services, Global Office */
.minimal-boxes-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin-top: 50px;
}

.minimal-box-card {
  border: 1px solid var(--color-border);
  padding: 40px 20px;
  background-color: var(--color-bg-light);
  text-align: center;
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: 150px;
}

.minimal-box-card h3 {
  font-size: 19px;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--color-primary);
  line-height: 1.4;
  margin-bottom: 0;
  text-align: center;
}

.minimal-box-card a {
  text-decoration: underline;
  color: var(--color-primary);
}

.minimal-box-card a:hover {
  color: var(--color-accent);
}

/* News Editorial layout */
.news-detail-container {
  background-color: var(--color-white);
  border: 1px solid var(--color-border);
  padding: 50px 40px;
  margin-top: 50px;
}

.news-meta {
  font-size: 13px;
  color: var(--color-text-muted);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 20px;
}

.news-detail-container h2 {
  text-align: left;
  text-transform: none;
  font-size: 30px;
  font-weight: 600;
  line-height: 1.3;
  margin-bottom: 30px;
}

.news-body p {
  font-size: 16px;
  line-height: 1.7;
  color: var(--color-text-dark);
  margin-bottom: 20px;
  text-align: justify;
}

.news-body blockquote {
  font-style: italic;
  font-size: 18px;
  border-left: 3px solid var(--color-primary);
  padding-left: 20px;
  margin: 30px 0;
  color: var(--color-accent);
}

/* Responsive Styles */
@media (max-width: 1024px) {
  .why-choose-grid, .minimal-boxes-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  h2.section-title {
    font-size: 42px;
  }
  p.intro-bold, p.intro-regular {
    font-size: 20px;
  }
}

/* Navigation collapses to a hamburger menu once the full horizontal nav no longer fits on one line */
@media (max-width: 1500px) {
  .hamburger {
    display: block;
  }
  .nav-menu {
    position: fixed;
    left: -100%;
    top: 128px; /* Header height offset */
    flex-direction: column;
    justify-content: flex-start;   /* reset desktop spread for the vertical menu */
    margin-left: 0;                /* reset desktop logo gap */
    background-color: var(--color-primary);
    width: 100%;
    height: calc(100vh - 128px);
    text-align: center;
    transition: var(--transition-normal);
    padding: 40px 0;
    gap: 25px;
    z-index: 99;
  }
  .nav-menu.active {
    left: 0;
  }
  .hamburger.active .bar:nth-child(2) {
    opacity: 0;
  }
  .hamburger.active .bar:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
  }
  .hamburger.active .bar:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
  }
}

@media (max-width: 768px) {
  .why-choose-grid, .minimal-boxes-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  h2.section-title {
    font-size: 32px;
  }
  p.intro-bold, p.intro-regular {
    font-size: 18px;
  }
  .footer-bottom {
    flex-direction: column;
    gap: 15px;
    text-align: center;
  }
}


/* ===== Disclaimer gate ===== */
.disclaimer-overlay {
  position: fixed;
  inset: 0;
  background: rgba(10, 15, 18, 0.6);
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
}

.disclaimer-panel {
  background: #ffffff;
  max-width: 1160px;
  width: 100%;
  max-height: 88vh;
  display: flex;
  flex-direction: column;
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.35);
}

.disclaimer-scroll {
  overflow-y: auto;
  padding: 34px 44px 24px;
  font-family: Georgia, 'Times New Roman', serif;
  color: #1b1b1b;
  font-size: 15.5px;
  line-height: 1.75;
  text-align: justify;
}

.disclaimer-scroll h2 {
  text-align: center;
  font-size: 19px;
  font-weight: 700;
  margin: 0 0 4px;
  font-family: inherit;
  color: #1b1b1b;
}

.disclaimer-scroll h3 {
  text-align: center;
  font-size: 17px;
  font-weight: 700;
  margin: 0 0 14px;
  font-family: inherit;
  color: #1b1b1b;
}

.disclaimer-scroll h4 {
  font-size: 15.5px;
  font-weight: 700;
  margin: 16px 0 4px;
  font-family: inherit;
  color: #1b1b1b;
}

.disclaimer-scroll p {
  margin: 0 0 10px;
}

.disclaimer-actions {
  padding: 14px 44px 22px;
  text-align: center;
}

.disclaimer-agree {
  background: #0a5670;
  color: #ffffff;
  border: none;
  cursor: pointer;
  font-family: inherit;
  font-size: 16px;
  padding: 12px 36px;
  letter-spacing: .02em;
}

.disclaimer-agree:hover {
  background: #083f52;
}

@media (max-width: 600px) {
  .disclaimer-overlay { padding: 12px; }
  .disclaimer-scroll { padding: 22px 18px 16px; font-size: 14.5px; }
  .disclaimer-actions { padding: 12px 18px 18px; }
}


/* ===== Language switcher ===== */
.lang-switch {
  display: flex;
  align-items: center;
  gap: 8px;
  margin: 0 16px;
  font-size: 13px;
  letter-spacing: .05em;
  white-space: nowrap;
}

.lang-switch a {
  color: #cfe0e5;
  text-decoration: none;
  padding: 2px 1px;
}

.lang-switch a.active {
  color: #ffffff;
  font-weight: 700;
  border-bottom: 2px solid #ffffff;
}

.lang-switch a:hover {
  color: #ffffff;
}

.lang-switch span {
  color: #5b8795;
}
