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

body {
  font-family: sans-serif;
  color: #fff;
  background-color: #000;
  overflow-x: hidden;
}

.hero-section {
  position: relative;
  height: 100vh;
  overflow: hidden;
}

.video-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}

.overlay {
  position: relative;
  z-index: 1;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 30px 40px;
}

.top-bar {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  font-size: 18px;
  letter-spacing: 2px;
  position: relative;
  height: 70px;
  min-height: 70px;
}

.top-left {
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  display: flex;
  align-items: center;
  font-weight: bold;
  opacity: 0.9;
  color: #fff;
  padding-left: 40px;
  line-height: 1;
}

.top-right {
  position: absolute;
  right: 0;
  top: 0;
  height: 100%;
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: bold;
  opacity: 0.9;
  color: #fff;
  padding-right: 40px;
  line-height: 1;
}

.top-right a {
  color: #fff;
  text-decoration: none;
  opacity: 0.85;
  transition: opacity 0.2s, text-decoration 0.2s;
  font-weight: bold;
}

.main-nav {
  display: flex;
  gap: 36px;
  justify-content: center;
  align-items: center;
  height: 100%;
}

.main-nav a {
  color: #fff;
  text-decoration: none;
  opacity: 0.85;
  transition: opacity 0.2s, text-decoration 0.2s;
  font-weight: bold;
}

.main-nav a:hover {
  opacity: 1;
  text-decoration: underline;
}

.lang-option {
  cursor: pointer;
  font-weight: bold;
  opacity: 0.85;
  transition: opacity 0.2s;
}

.lang-option:hover {
  opacity: 1;
  text-decoration: underline;
}

.logo {
  width: 220px;
  height: 90px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto;
}

.bottom-text {
  text-align: center;
  font-size: 1.2rem;
  letter-spacing: 2px;
  padding-bottom: 30px;
}

.footer {
  width: 100vw;
  background: #111;
  color: #fff;
  padding: 60px 0 40px 0;
  position: static;
  z-index: 10;
  margin-top: 0;
}

.footer-content {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: flex-start;
  gap: 40px;
  padding: 0 40px;
}

.footer-contact {
  flex: 1;
  max-width: 400px;
}

.footer-contact h3 {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 20px;
  color: #fff;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
}

.footer-contact .contact-info-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
  font-size: 1rem;
  color: #fff;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-weight: 400;
}

.footer-contact .contact-info-list a {
  color: #fff;
  text-decoration: underline;
  word-break: break-all;
}

.footer-contact .contact-info-list a:hover {
  color: #c7323a;
}

.footer-socials {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 28px;
}

.footer-icon {
  color: #fff;
  font-size: 1.7rem;
  transition: color 0.2s;
}

.footer-icon:hover {
  color: #c7323a;
}

.footer-text {
  font-size: 1rem;
  letter-spacing: 1.5px;
  text-align: center;
  color: #fff;
  margin-top: 20px;
}

/* Responsive Design */
@media (max-width: 900px) {
  .main-nav {
    gap: 18px;
  }
  .top-left, .top-right {
    padding-left: 10px;
    padding-right: 10px;
  }
  .footer-content {
    gap: 10px;
  }
  .footer-socials {
    gap: 16px;
  }
}

@media (max-width: 600px) {
  .logo {
    width: 120px;
    height: 50px;
  }
  .top-bar {
    font-size: 13px;
    padding: 0 10px;
  }
  .main-nav {
    gap: 8px;
  }
  .top-left, .top-right {
    padding-left: 5px;
    padding-right: 5px;
  }
  .footer-text {
    font-size: 0.8rem;
  }
}

.contact-hero-bg {
  background: url('../Images/placeholder.jpg') center center/cover no-repeat;
  width: 100%;
  height: 400px;
  min-height: 320px;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.contact-hero-bg .top-bar {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 2;
}

.contact-info-overlay {
  position: absolute;
  left: 50%;
  top: 55%;
  transform: translate(-50%, -50%);
  background: rgba(0,0,0,0.4);
  color: #fff;
  padding: 32px 32px 24px 32px;
  border-radius: 16px;
  box-shadow: 0 4px 24px rgba(0,0,0,0.18);
  min-width: 320px;
  max-width: 90vw;
  text-align: center;
  z-index: 2;
}

.contact-info-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
  font-size: 1.1rem;
  color: #fff;
}

.contact-info-list a {
  color: #fff;
  text-decoration: underline;
  word-break: break-all;
}

.contact-info-list a:hover {
  color: #c7323a;
}

.contact-socials {
  display: flex;
  gap: 18px;
  margin: 8px 0 0 0;
  justify-content: center;
}

.contact-info-overlay .footer-icon {
  color: #fff;
  font-size: 1.5rem;
  transition: color 0.2s;
}

.contact-info-overlay .footer-icon:hover {
  color: #c7323a;
}

@media (max-width: 700px) {
  .contact-hero-bg {
    height: 200px;
    min-height: 120px;
  }
  .contact-info-overlay {
    padding: 14px 4vw 10px 4vw;
    min-width: 0;
    font-size: 1rem;
  }
}

/* --- Split Gallery Layout --- */
.gallery-item {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  gap: 0;
  margin-bottom: 80px;
  min-height: 480px;
  position: relative;
  background: #fff;
  border-radius: 0;
  box-shadow: none;
}
.gallery-item:nth-child(even) {
  flex-direction: row-reverse;
}
.gallery-img-col, .gallery-text-col {
  flex: 1 1 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 0;
}
.gallery-img-link {
  width: 100%;
  max-width: 700px;
  border-radius: 0;
  box-shadow: 0 4px 24px rgba(0,0,0,0.13);
  overflow: hidden;
  transition: transform 0.35s cubic-bezier(0.23, 1, 0.32, 1), box-shadow 0.35s cubic-bezier(0.23, 1, 0.32, 1);
}
.gallery-img-link:hover .gallery-img {
  transform: scale(1.045);
  box-shadow: 0 8px 32px rgba(0,0,0,0.22);
  z-index: 2;
}
.gallery-img {
  width: 100%;
  height: 420px;
  object-fit: cover;
  display: block;
  border-radius: 0;
  transition: transform 0.35s cubic-bezier(0.23, 1, 0.32, 1), box-shadow 0.35s cubic-bezier(0.23, 1, 0.32, 1);
}
.gallery-text-col {
  background: #fff;
  height: 100%;
  min-height: 420px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.gallery-text-split {
  text-align: left;
  max-width: 420px;
  margin: 0 40px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
}
.gallery-item:nth-child(even) .gallery-text-split {
  text-align: right;
  align-items: flex-end;
}
.gallery-text-split .address {
  font-size: 2.8rem;
  font-weight: 700;
  margin-bottom: 18px;
  color: #111;
  line-height: 1.1;
}
.gallery-text-split div:last-child {
  font-size: 1.25rem;
  color: #333;
  font-weight: 400;
  margin-bottom: 0;
}
@media (max-width: 900px) {
  .gallery-item {
    flex-direction: column !important;
    min-height: 0;
    margin-bottom: 40px;
  }
  .gallery-img-col, .gallery-text-col {
    width: 100%;
    min-width: 0;
    max-width: 100vw;
  }
  .gallery-img-link, .gallery-img {
    width: 100vw;
    max-width: 100vw;
    height: 220px;
  }
  .gallery-text-col {
    min-height: 0;
    padding: 18px 0;
  }
  .gallery-text-split {
    margin: 0 10vw;
    max-width: 90vw;
    text-align: center !important;
    align-items: center !important;
  }
}

.section-divider {
  border: none;
  border-top: 1px solid rgba(0,0,0,0.08);
  width: 100vw;
  margin: 0 0 48px 0;
  height: 0;
  background: none;
  display: block;
}

.featured-logos-static {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 60px;
  padding: 36px 0 32px 0;
}
.featured-logos-static a {
  display: inline-block;
  transition: transform 0.25s cubic-bezier(0.23, 1, 0.32, 1);
}
.featured-logos-static img {
  height: 48px;
  width: auto;
  filter: grayscale(1) brightness(0.8);
  opacity: 0.7;
  transition: transform 0.25s cubic-bezier(0.23, 1, 0.32, 1), filter 0.25s, opacity 0.25s;
}
.featured-logos-static a:hover img {
  transform: scale(1.18);
  filter: none;
  opacity: 1;
}
@media (max-width: 700px) {
  .featured-logos-static {
    gap: 24px;
    flex-wrap: wrap;
    padding: 18px 0 12px 0;
  }
  .featured-logos-static img {
    height: 32px;
  }
}

/* =========================
   GALLERY PAGE STYLES
   ========================= */

/* ===== Gallery Back Button ===== */
.gallery-back {
  display: inline-block;
  margin: 32px 0 0 32px;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-size: 18px;
  font-weight: bold;
  letter-spacing: 2px;
  color: #111;
  text-decoration: none;
  cursor: pointer;
  text-transform: uppercase;
  transition: text-decoration 0.2s;
}

.gallery-back:hover {
  text-decoration: underline;
}

/* ===== Video Section ===== */
.video-section {
  max-width: 1100px;
  margin: 40px auto 0 auto;
  text-align: center;
  padding: 0;
  margin-left: 150px
}

.video-container {
  position: relative;
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  overflow: hidden;
  box-shadow: 0 8px 32px rgba(0,0,0,0.15);
  background: #000;
}

.video-container video {
  width: 100%;
  height: auto;
  display: block;
  cursor: pointer;
  border-radius: 0;
}

.video-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 1;
  transition: opacity 0.3s ease;
  pointer-events: none;
}

.video-container.playing .video-overlay {
  opacity: 0;
  pointer-events: none;
}

.play-button {
  width: 80px;
  height: 80px;
  background: rgba(255,255,255,0.9);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
  pointer-events: auto;
}

.play-button:hover {
  background: rgba(255,255,255,1);
  transform: scale(1.1);
}

.play-button i {
  font-size: 2rem;
  color: #333;
  margin-left: 4px;
}

/* ===== Gallery Grid Layout ===== */
.gallery-grid {
  max-width: 1200px;
  margin: 40px auto;
  text-align: center;
}

/* ===== Gallery Cards ===== */
.gallery-card {
  width: 350px;
  margin-bottom: 32px;
  background: #fff;
  box-shadow: 0 4px 24px rgba(0,0,0,0.13);
  overflow: hidden;
  display: inline-block;
  vertical-align: top;
  margin-right: 16px;
  margin-left: 16px;
  opacity: 0;
  animation: fadeInGallery 1.2s ease-out forwards;
}

.gallery-card img {
  width: 100%;
  display: block;
  object-fit: cover;
  transition: transform 0.3s cubic-bezier(0.4,0,0.2,1);
}

.gallery-card img:hover {
  transform: scale(1.08);
  z-index: 2;
}

/* ===== Gallery Animation Classes ===== */
.gallery-card.fade-in-left {
  animation: fadeInLeft 1.2s ease-out forwards;
}

.gallery-card.fade-in-center {
  animation: fadeInCenter 1.2s ease-out forwards;
}

.gallery-card.fade-in-right {
  animation: fadeInRight 1.2s ease-out forwards;
}

/* ===== Staggered Animation Delays ===== */
.gallery-card:nth-child(1) { animation-delay: 0.1s; }
.gallery-card:nth-child(2) { animation-delay: 0.2s; }
.gallery-card:nth-child(3) { animation-delay: 0.3s; }
.gallery-card:nth-child(4) { animation-delay: 0.4s; }
.gallery-card:nth-child(5) { animation-delay: 0.5s; }
.gallery-card:nth-child(6) { animation-delay: 0.6s; }
.gallery-card:nth-child(7) { animation-delay: 0.7s; }
.gallery-card:nth-child(8) { animation-delay: 0.8s; }
.gallery-card:nth-child(9) { animation-delay: 0.9s; }
.gallery-card:nth-child(10) { animation-delay: 1.0s; }
.gallery-card:nth-child(11) { animation-delay: 1.1s; }
.gallery-card:nth-child(12) { animation-delay: 1.2s; }
.gallery-card:nth-child(13) { animation-delay: 1.3s; }
.gallery-card:nth-child(14) { animation-delay: 1.4s; }
.gallery-card:nth-child(15) { animation-delay: 1.5s; }
.gallery-card:nth-child(16) { animation-delay: 1.6s; }
.gallery-card:nth-child(17) { animation-delay: 1.7s; }
.gallery-card:nth-child(18) { animation-delay: 1.8s; }
.gallery-card:nth-child(19) { animation-delay: 1.9s; }
.gallery-card:nth-child(20) { animation-delay: 2.0s; }
.gallery-card:nth-child(21) { animation-delay: 2.1s; }
.gallery-card:nth-child(22) { animation-delay: 2.2s; }
.gallery-card:nth-child(23) { animation-delay: 2.3s; }
.gallery-card:nth-child(24) { animation-delay: 2.4s; }
.gallery-card:nth-child(25) { animation-delay: 2.5s; }
.gallery-card:nth-child(26) { animation-delay: 2.6s; }
.gallery-card:nth-child(27) { animation-delay: 2.7s; }

/* ===== Animation Keyframes ===== */
@keyframes fadeInLeft {
  0% {
    opacity: 0;
    transform: translateX(-60px);
  }
  100% {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes fadeInCenter {
  0% {
    opacity: 0;
    transform: translateY(-60px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeInRight {
  0% {
    opacity: 0;
    transform: translateX(60px);
  }
  100% {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes fadeInGallery {
  0% {
    opacity: 0;
    transform: translateY(30px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ===== Modal Styles ===== */
#img-modal {
  display: none;
  position: fixed;
  z-index: 1000;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(0,0,0,0.85);
  align-items: center;
  justify-content: center;
}

#modal-close {
  position: absolute;
  top: 32px;
  right: 48px;
  font-size: 2.5rem;
  color: #fff;
  cursor: pointer;
  font-family: sans-serif;
}

#modal-prev {
  position: absolute;
  left: 32px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 3rem;
  color: #fff;
  cursor: pointer;
  font-family: sans-serif;
  user-select: none;
}

#modal-img {
  max-width: 90vw;
  max-height: 80vh;
  box-shadow: 0 8px 32px rgba(0,0,0,0.4);
  border-radius: 8px;
  display: block;
  margin: auto;
}

#modal-next {
  position: absolute;
  right: 32px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 3rem;
  color: #fff;
  cursor: pointer;
  font-family: sans-serif;
  user-select: none;
}

/* ===== Responsive Design ===== */
@media (max-width: 1200px) {
  .gallery-card { 
    width: 30vw; 
  }
}

@media (max-width: 900px) {
  .gallery-card { 
    width: 48vw; 
  }
}

@media (max-width: 600px) {
  .gallery-card { 
    width: 98vw; 
  }
  
  .video-section {
    padding: 0 10px;
    margin: 20px auto;
  }
  
  .play-button {
    width: 60px;
    height: 60px;
  }
  
  .play-button i {
    font-size: 1.5rem;
  }
}
