/* =====================================================
   GLOBAL TEXT SELECTION DISABLE (DESKTOP + MOBILE)
   Prevents left-click + drag selection & blue highlight
   ===================================================== */

html, body {
  -webkit-user-select: none; /* Chrome / Safari */
  -moz-user-select: none;    /* Firefox */
  -ms-user-select: none;     /* Edge */
  user-select: none;         /* Standard */
}

/* Remove blue highlight entirely */
::selection {
  background: transparent;
  color: inherit;
}

::-moz-selection {
  background: transparent;
  color: inherit;
}

/* Reset & Base */
* { 
  margin: 0; 
  padding: 0; 
  box-sizing: border-box; 
}

html {
  scroll-behavior: smooth;
}

body { 
  font-family: 'avenir-lt-w01_35-light1475496', 'Avenir Light', sans-serif; 
  font-weight: 300; 
  font-size: 18px; 
  line-height: 1.7; 
  color: #5C5C5C; 
  background: #fff; 
  overflow-x: hidden;
}

img { 
  max-width: 100%; 
  display: block; 
  user-select: none;
  -webkit-user-drag: none;
}

a { 
  text-decoration: none; 
  color: inherit; 
}

.container { 
  max-width: 1200px; 
  margin: 0 auto; 
  padding: 0 40px; 
}

section { 
  padding: 80px 0; 
  position: relative; 
}

h1 { 
  font-family: 'futura-lt-w01-book', 'Futura', sans-serif; 
  font-weight: 700; 
  font-size: 60px; 
  margin-bottom: 30px; 
  text-transform: lowercase; 
  text-align: center; 
  color: #000;
  letter-spacing: 0.05em;
}

h3 {
  font-family: 'din-next-w01-light', 'DIN Next', sans-serif;
  font-weight: 700;
  font-size: 20px;
  color: #000;
}

p {
  font-family: 'avenir-lt-w01_35-light1475496', 'Avenir Light', sans-serif;
  font-weight: 300;
  font-size: 18px;
  color: #5C5C5C;
  line-height: 1.7;
}

.hidden { 
  display: none; 
}

/* Section Line Styling */
.section-line-wrapper {
  display: flex;
  justify-content: center;
  margin: 5px 0 0 0;
}

.section-line {
  width: auto;
  height: 300px;
  object-fit: contain;
  opacity: 1;
}

.architect .section-line {
  height: 300px; 
  object-fit: contain;
}

/* Hero Header Section */
.hero-header {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: url('images/header-bg.jpg') center/cover no-repeat;
  padding: 60px 40px;
  position: relative;
}

.header-bg-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(255, 255, 255, 0.85);
  z-index: 0;
}

.hero-content {
  text-align: center;
  max-width: 900px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.hero-header .logo {
  margin-bottom: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-header .logo svg {
  width: min(400px, 90vw);
  height: auto;
}

.hero-header .nav {
  display: flex;
  justify-content: center;
  gap: 300px;
  margin-bottom: 60px;
}

/* Hide navigation and section line initially */
.hero-header .nav,
.hero-header .section-line-wrapper {
  opacity: 0;
  animation: fadeInContent 1s ease forwards;
}

/* Nav appears after logo animation completes (3s draw + 2s fill = 5s) */
.hero-header .nav {
  animation-delay: 1s;
}

/* Section line appears slightly after nav */
.hero-header .section-line-wrapper {
  animation-delay: 4s;
}

/* Fade-in animation */
@keyframes fadeInContent {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Optional: Add a subtle animation to individual nav items */
.nav-item {
  opacity: 0;
  animation: fadeInContent 0.8s ease forwards;
}

.nav-item:nth-child(1) {
  animation-delay: 1s;
}

.nav-item:nth-child(2) {
  animation-delay: 2s;
}

.nav-item:nth-child(3) {
  animation-delay: 3s;
}


/* ==============================
   LOGO DRAW + FILL ANIMATION
   ============================== */

.logo svg path {
  /* FORCE stroke existence */
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;

  /* Hide fill initially */
  fill-opacity: 0;

  /* Drawing setup */
  stroke-dasharray: 3000;
  stroke-dashoffset: 3000;

  animation:
    draw-logo 10s ease forwards,
    fill-logo 2s ease forwards;

  animation-delay:
    0s,
    1s;
}

/* Preserve original colors */
.logo svg path[fill="#000000"] {
  stroke: #000000;
}

.logo svg path[fill="#7F7F7F"],
.logo svg path[fill="#848484"] {
  stroke: #7F7F7F;
}

/* Draw outline */
@keyframes draw-logo {
  to {
    stroke-dashoffset: 0;
  }
}

/* Fill after draw */
@keyframes fill-logo {
  to {
    fill-opacity: 1;
    stroke-width: 0;
  }
}

.logo svg {
  display: block;
  width: 100%;
  height: auto;
  overflow: visible;
}

.logo {
  transform: translateZ(0);
}

.nav-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 25px;
}

.nav-item a:first-child {
  font-family: 'futura-lt-w01-book', 'Futura', sans-serif;
  font-weight: 400;
  font-size: 30px;
  color: #5C5C5C;
  transition: color 0.3s;
  letter-spacing: 0.05em;
}

.nav-item a:first-child:hover {
  color: #E2BA33;
}

.social-icon img {
  width: 40px;
  height: 40px;
  transition: opacity 0.3s;
  object-fit: contain; 
}

/* Hover color to #E2BA33 */
.social-icon:hover img {
  filter: invert(74%) sepia(52%) saturate(643%) hue-rotate(5deg) brightness(95%) contrast(87%);
}

.nav-item img[alt="LinkedIn"],
.nav-item img[alt="Meta"] {
  width: 40px;
  height: 40px;
  object-fit: contain; /* Match LinkedIn & Meta icon size to Instagram */ 
}

.social-icon:hover img {
  opacity: 0.7;
}

/* Projects Section */
.projects-section {
  background: #fff;
  padding-top: 100px;
}

.projects-section .container {
  text-align: center;
}

.projects-section h1 {
  color: #000;
}

.projects-section p {
  max-width: 900px;
  margin: 0 auto 60px;
}

.projects-gallery {
      position: relative;
	  width: 100%;
	  max-width: 1200px;
	  aspect-ratio: 16 / 9; /* keeps proportions */
	  margin: 60px auto;
	  overflow: hidden;
    }

    .gallery-track {
      position: relative;
      width: 100%;
      height: 100%;
    }

    .gallery-item {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  z-index: 1;
  /* Animation is paused by default */
  animation: slideShow 258s ease-in-out infinite;
  animation-play-state: paused;
}

/* Start animation when triggered */
.gallery-item.gallery-active {
  animation-play-state: running;
}
    
    .gallery-item.active {
      z-index: 2;
    }

    .gallery-item img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      display: block;
    }

    /* Stagger animations for each image */
    .gallery-item:nth-child(1) { animation-delay: 0s; }
    .gallery-item:nth-child(2) { animation-delay: 6s; }
    .gallery-item:nth-child(3) { animation-delay: 12s; }
    .gallery-item:nth-child(4) { animation-delay: 18s; }
    .gallery-item:nth-child(5) { animation-delay: 24s; }
    .gallery-item:nth-child(6) { animation-delay: 30s; }
    .gallery-item:nth-child(7) { animation-delay: 36s; }
    .gallery-item:nth-child(8) { animation-delay: 42s; }
    .gallery-item:nth-child(9) { animation-delay: 48s; }
    .gallery-item:nth-child(10) { animation-delay: 54s; }
    .gallery-item:nth-child(11) { animation-delay: 60s; }
    .gallery-item:nth-child(12) { animation-delay: 66s; }
    .gallery-item:nth-child(13) { animation-delay: 72s; }
    .gallery-item:nth-child(14) { animation-delay: 78s; }
    .gallery-item:nth-child(15) { animation-delay: 84s; }
    .gallery-item:nth-child(16) { animation-delay: 90s; }
    .gallery-item:nth-child(17) { animation-delay: 96s; }
    .gallery-item:nth-child(18) { animation-delay: 102s; }
    .gallery-item:nth-child(19) { animation-delay: 108s; }
    .gallery-item:nth-child(20) { animation-delay: 114s; }
    .gallery-item:nth-child(21) { animation-delay: 120s; }
    .gallery-item:nth-child(22) { animation-delay: 126s; }
    .gallery-item:nth-child(23) { animation-delay: 132s; }
    .gallery-item:nth-child(24) { animation-delay: 138s; }
    .gallery-item:nth-child(25) { animation-delay: 144s; }
    .gallery-item:nth-child(26) { animation-delay: 150s; }
    .gallery-item:nth-child(27) { animation-delay: 156s; }
    .gallery-item:nth-child(28) { animation-delay: 162s; }
    .gallery-item:nth-child(29) { animation-delay: 168s; }
    .gallery-item:nth-child(30) { animation-delay: 174s; }
    .gallery-item:nth-child(31) { animation-delay: 180s; }
    .gallery-item:nth-child(32) { animation-delay: 186s; }
    .gallery-item:nth-child(33) { animation-delay: 192s; }
    .gallery-item:nth-child(34) { animation-delay: 198s; }
    .gallery-item:nth-child(35) { animation-delay: 204s; }
    .gallery-item:nth-child(36) { animation-delay: 210s; }
    .gallery-item:nth-child(37) { animation-delay: 216s; }
    .gallery-item:nth-child(38) { animation-delay: 222s; }
    .gallery-item:nth-child(39) { animation-delay: 228s; }
    .gallery-item:nth-child(40) { animation-delay: 234s; }
    .gallery-item:nth-child(41) { animation-delay: 240s; }
    .gallery-item:nth-child(42) { animation-delay: 246s; }
	.gallery-item:nth-child(43) { animation-delay: 252s; }
	.gallery-item:nth-child(44) { animation-delay: 258s; }

    /* Slide and fade animation - NO OVERLAP */
    @keyframes slideShow {
      0% {
        opacity: 0;
        transform: translateX(100%);
        z-index: 2;
      }
      0.5% {
        opacity: 1;
        transform: translateX(0);
        z-index: 2;
      }
      2% {
        opacity: 1;
        transform: translateX(0);
        z-index: 2;
      }
      2.5% {
        opacity: 0;
        transform: translateX(-100%);
        z-index: 1;
      }
      100% {
        opacity: 0;
        transform: translateX(-100%);
        z-index: 1;
      }
    }

    /* Optional: Add navigation dots */
    .gallery-dots {
      position: absolute;
      bottom: 30px;
      left: 50%;
      transform: translateX(-50%);
      display: flex;
      gap: 10px;
      z-index: 10;
    }

    .gallery-dot {
      width: 12px;
      height: 12px;
      border-radius: 50%;
      background: rgba(255, 255, 255, 0.5);
      cursor: pointer;
      transition: background 0.3s;
    }

    .gallery-dot:hover {
      background: rgba(226, 186, 51, 0.8);
    }
	
.gallery-watermark {
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 50;

  font-size: 14px;
  letter-spacing: 0.08em;
  color: rgba(255, 255, 255, 0.75);
  background: rgba(0, 0, 0, 0);
  padding: 6px 12px;

  pointer-events: none;
  user-select: none;
}

    /* Mobile responsive gallery */
@media (max-width: 600px) {
  .projects-gallery {
    height: 75vh;
    width: 100%;
    margin: 30px auto;
  }

  .projects-gallery .gallery-item {
    width: 100%;
    height: 100%;
  }

  .projects-gallery .gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
}

@media (max-width: 900px) {
  .projects-gallery {
    height: 95vh;
    width: 100%;
    margin: 30px auto;
  }

  .projects-gallery .gallery-item {
    width: 100%;
    height: 100%;
  }

  .projects-gallery .gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
}

/* Testimonial 3D carousel */
.testimonials {
  text-align: center;
  background: #F5F5F5;
  color: #5C5C5C;
  padding: 120px 0;
  position: relative;
  overflow: hidden;
}

.testimonial-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0.25;
  z-index: 0;
}

.testimonial-bg video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.testimonials .container {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.testimonials h1 {
  color: #000;
}

.testimonials p {
  color: #5C5C5C;
  max-width: 900px;
  margin: 0 auto 5px;
}

.testimonials .section-line-wrapper {
  margin-bottom: 5px;
}

@media (max-width: 768px) {
  .testimonials-carousel-container {
    max-width: 100%;
    margin-left: auto;
    margin-right: auto;
  }
}

/* 3D Carousel Container */
.testimonials-carousel-container {
  width: 100%;
  max-width: 900px;      /* match testimonial text width */
  height: 450px;
  margin: 0 auto;        /* centers horizontally */
  overflow: visible;
  perspective: 900px;
  perspective-origin: center;
}

/* Carousel Track */
.testimonials-carousel {
  position: center;
  width: 100%;
  height: 100px;
  display: block;
  transform-style: preserve-3d;
  overflow: visible;
}

/* Individual Testimonial Cards */
.testimonial-item {
  position: absolute;
  background: none;
  border: none;
  box-shadow: none;
  border-radius: 0;
  overflow: visible;
  pointer-events: auto;
}

.testimonial-item img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
  padding: 0;
  transition: transform 0.6s ease, filter 0.6s ease;
}

/* Navigation Arrows */
    .testimonial-nav {
      position: absolute;
      top: 50%;
      transform: translateY(-50%);
      font-size: 50px;
      color: rgba(255, 255, 255, 0.9);
      background: rgba(0, 0, 0, 0.4);
      width: 60px;
      height: 60px;
      display: flex;
      align-items: center;
      justify-content: center;
      cursor: pointer;
      z-index: 200;
      border-radius: 50%;
      transition: all 0.3s ease;
      user-select: none;
      border: 2px solid rgba(255, 255, 255, 0.3);
    }

/* Hide arrows on main testimonials carousel */
	.testimonials .testimonial-nav {
	  display: none;
}

    .testimonial-nav:hover {
      background: rgba(226, 186, 51, 0.9);
      color: #fff;
      border-color: #E2BA33;
      transform: translateY(-50%) scale(1.1);
    }
	
	.testimonial-item img {
     transition: transform 1.6s ease, filter 1.6s ease;
}

	.testimonial-item:hover img {
     transform: scale(1.05);
}

    .testimonial-prev {
      left: 30px;
    }

    .testimonial-next {
      right: 30px;
    }

    /* Lightbox Overlay */
    #testimonial-lightbox {
      display: none;
      position: fixed;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background: rgba(0, 0, 0, 0.95);
      z-index: 9999;
      justify-content: center;
      align-items: center;
    }

    #testimonial-lightbox.active {
      display: flex;
    }

    #testimonial-lightbox img {
      max-width: 85%;
      max-height: 85%;
      object-fit: contain;
      border-radius: 8px;
      box-shadow: 0 20px 60px rgba(0, 0, 0, 0.8);
    }

    #testimonial-lightbox .lightbox-close {
      position: absolute;
      top: 30px;
      right: 40px;
      font-size: 46px;
      color: #fff;
      cursor: pointer;
      background: none !important;
      border: none !important;
      z-index: 10000;
      transition: color 0.3s;
      font-weight: 300;
    }

    #testimonial-lightbox .lightbox-close:hover {
      color: #E2BA33;
    }

    #testimonial-lightbox .lightbox-nav {
	  background: none !important;
	  padding: 250px;
	  border: none !important;
	  box-shadow: none !important;
	  font-size: 46px;
	  color: rgba(255, 255, 255, 0.65);
	  cursor: pointer;
	  transition: color 0.25s ease, transform 0.15s ease;
}

    #testimonial-lightbox .lightbox-nav:hover {
     color: #E2BA33;
    }

	#testimonial-lightbox .lightbox-nav:active {
	  color: #ffffff;
	  transform: scale(0.92);
}

    #testimonial-lightbox .lightbox-prev {
      left: 80px;  
    }

    #testimonial-lightbox .lightbox-next {
      right: 80px;  
    }

	#testimonial-lightbox .lightbox-prev,
	#testimonial-lightbox .lightbox-next {
	  display: none !important;
}

    /* Responsive Design */
    @media (max-width: 968px) {
      .testimonials-carousel-container {
        height: 400px;
      }
    }

    @media (max-width: 600px) {
      .testimonials-carousel-container {
        height: 350px;
      }

      .testimonial-nav {
        width: 50px;
        height: 50px;
        font-size: 40px;
      }
    }	

/* About */
.about {
  background: #fff;
}

.about .container {
  text-align: center;
}

.about h1 {
  color: #000;
}

.about p {
  max-width: 900px;
  margin: 0 auto 60px;
}

.about-img {
  max-width: 600px;
  margin: 60px auto;
}

/* Services */
.services {
  padding: 0;
}

.services-full-width {
  background: #3A3A3A;
  width: 100%;
  padding: 20px 0;
}

.services h1 {
  color: #fff;
  font-weight: 700;
}

.services-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  margin-top: 60px;
  text-align: left;
}

.service {
  display: flex;
  align-items: flex-start;
  gap: 30px;
  padding: 40px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  background: rgba(255, 255, 255, 0.02);
}

.service-number {
  font-family: 'futura-lt-w01-book', 'Futura', sans-serif;
  font-size: 70px;
  font-weight: 700;
  color: #fff;
  line-height: 1;
  flex-shrink: 0;
}

.service-content h3 {
  font-family: 'din-next-w01-light', 'DIN Next', sans-serif;
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 20px;
  color: #fff;
}

.service ul {
  list-style: none;
  color: #fff;
}

.service li {
  margin: 10px 0;
  font-family: 'avenir-lt-w01_35-light1475496', 'Avenir Light', sans-serif;
  font-weight: 300;
  font-size: 16px;
  color: rgba(255, 255, 255, 0.85);
  line-height: 1.6;
}

.services .section-line-wrapper .section-line {
  filter: invert(1) brightness(2);
  margin: 30px 0 0 0;
  margin-bottom: 60px;
}

/* Architect */
.architect {
  background: #fff;
  text-align: center;
}

.architect h1 {
  color: #000;
  font-weight: 700;
}

.architect img {
  width: 200px;
  height: 200px;
  margin: 40px auto;
  object-fit: cover;
}

/* Portrait only (circular) */
.architect img.architect-portrait {
  border-radius: 50%;
}

.bio {
  max-width: 900px;
  margin: 0 auto;
}

.bio h3 {
  font-family: 'din-next-w01-light', 'DIN Next', sans-serif;
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 20px;
  color: #000;
}

.bio p {
  color: #5C5C5C;
}

/* ================================
   Certification Logos
   ================================ */

/* Space between text and logos (first row) */
.certification-logos {
  margin-top: 30px;   /* adjust as needed */
}

/* Space between first-row logos and BIM logo */
.cert-bim {
  margin-top: 30px;   /* adjust as needed */
}

/* Space between BIM logo and line.png */
.section-line {
  margin-top: 60px;   /* adjust as needed */
}

/* Overall wrapper */
.certification-logos {
  display: flex;
  flex-direction: column;
  align-items: center;
}

/* Main row: all logos except BIM */
.cert-row {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 40px;
  flex-wrap: nowrap; /* desktop: single row */
}

/* BIM wrapper (separate row) */
.cert-bim {
  margin-top: 30px;
  display: flex;
  justify-content: center;
}

/* Base logo behavior (SVG only) */
.cert-row svg,
.cert-bim svg {
  display: block;
  height: 60px;
  width: auto;
  flex-shrink: 0;
  opacity: 0.85;
  transition: transform 0.3s ease, opacity 0.3s ease;
}

/* Hover behavior */
.cert-row svg:hover,
.cert-bim svg:hover {
  transform: scale(1.05);
  opacity: 1;
}

/* BIM logo */
.cert-bim svg.bim-logo {
  height: 160px;
}

/* ================================
   Responsive behavior
   ================================ */

/* Tablet */
@media (max-width: 1024px) {
  .cert-row svg {
    height: 50px;
  }

  .cert-bim svg.bim-logo {
    height: 160px; 
  }
}

/* Mobile */
@media (max-width: 700px) {
  .cert-row {
    flex-wrap: wrap;
    justify-content: center;
    align-content: center;
    gap: 30px 40px;
  }

  .cert-row svg {
    height: 55px;
  }

  .cert-bim svg.bim-logo {
    height: 160px; 
  }
}

/* ================================
   COA Logo Color Control
   ================================ */

.coa-logo {
  height: 60px;
  width: auto;
}

/* Icon stays gold */
.coa-logo .coa-icon path {
  fill: #E2BA33;
}

/* Text stays neutral */
.coa-logo .coa-text path {
  fill: #5C5C5C;
}

/* ================================
   Certification Logo Draw Animation
   ================================ */

/* Initial hidden state */
.certification-logos svg path {
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
  fill-opacity: 0;
  stroke-dasharray: 3000;
  stroke-dashoffset: 3000;
}

/* Activated animation */
.certification-logos.animate svg path {
  animation:
    cert-draw 19s ease forwards,
    cert-fill 6s ease forwards;
  animation-delay:
    0s,
    1s;
}

/* Outline draw */
@keyframes cert-draw {
  to {
    stroke-dashoffset: 0;
  }
}

/* Fill after outline */
@keyframes cert-fill {
  to {
    fill-opacity: 1;
    stroke-width: 0;
  }
}

/* =====================================================
   BIM LOGO – SEQUENTIAL DRAW ANIMATION
   ===================================================== */

/* Base reset for BIM SVG drawing */
.certification-logos.animate svg.bim-logo
.internal-box-walls,
.certification-logos.animate svg.bim-logo
.push.pull.highlight,
.certification-logos.animate svg.bim-logo
.arrow-top,
.certification-logos.animate svg.bim-logo
.arrow-right,
.certification-logos.animate svg.bim-logo
.arrow-left,
.certification-logos.animate svg.bim-logo
.dashed-arrow-left,
.certification-logos.animate svg.bim-logo
.dashed-arrow-right,
.certification-logos.animate svg.bim-logo
.dashed-arrow-bottom {
  fill: none;
  stroke-dasharray: 1200;
  stroke-dashoffset: 1200;
  animation-fill-mode: forwards;
}

/* ------------------------------
   1. Internal box walls (first)
-------------------------------- */
.certification-logos.animate svg.bim-logo .internal-box-walls {
  animation: bim-draw 1s ease forwards;
}

/* ------------------------------
   2. Push / Pull highlights
-------------------------------- */
.certification-logos.animate svg.bim-logo .top-push-pull-highlight {
  animation: bim-draw 2s ease forwards;
  animation-delay: 1s;
}

.certification-logos.animate svg.bim-logo .right-push-pull-highlight {
  animation: bim-draw 4s ease forwards;
  animation-delay: 2s;
}

.certification-logos.animate svg.bim-logo .left-push-pull-highlight {
  animation: bim-draw 6s ease forwards;
  animation-delay: 3s;
}

/* ------------------------------
   3. TOP arrow
-------------------------------- */
.certification-logos.animate svg.bim-logo .arrow-top {
  animation: bim-draw 2s ease forwards;
  animation-delay: 1s;
}

/* ------------------------------
   4. RIGHT arrow
-------------------------------- */
.certification-logos.animate svg.bim-logo .arrow-right {
  animation: bim-draw 4s ease forwards;
  animation-delay: 2s;
}

/* ------------------------------
   5. LEFT arrow
-------------------------------- */
.certification-logos.animate svg.bim-logo .arrow-left {
  animation: bim-draw 6s ease forwards;
  animation-delay: 3s;
}

/* ------------------------------
   6. Dashed arrows (sequential, no rotation)
-------------------------------- */

.certification-logos.animate svg.bim-logo
.dashedlinetop,
.certification-logos.animate svg.bim-logo
.dashedlineright,
.certification-logos.animate svg.bim-logo
.dashedlinebottom {
  stroke-opacity: 0;
  fill: none;
  stroke-dasharray: 2000;
  stroke-dashoffset: 2000;
}

/* Dashed line */
.certification-logos.animate svg.bim-logo .dashedlinetop {
  animation: bim-draw 2s ease forwards;
  animation-delay: 2s;
}

.certification-logos.animate svg.bim-logo .dashedlineright {
  animation: bim-draw 4s ease forwards;
  animation-delay: 2s;
}

.certification-logos.animate svg.bim-logo .dashedlinebottom {
  animation: bim-draw 6s ease forwards;
  animation-delay: 2s;
}

/* ------------------------------
   7. BIM ARCHITECT text
-------------------------------- */
.certification-logos.animate svg.bim-logo .Architect-text-bimlogo,
.certification-logos.animate svg.bim-logo .bim-text {
  fill-opacity: 0;
  animation: bim-fade-in 4s ease forwards;
  animation-delay: 2s;
}

/* ------------------------------
   Keyframes
-------------------------------- */
@keyframes bim-draw {
  to {
    stroke-dashoffset: 0;
	stroke-opacity: 1;
	fill: beige;
  }
}

@keyframes bim-fade-in {
  to {
    fill-opacity: 1;
	fill: black;
  }
}

/* Contact */
.contact {
  background: #3A3A3A;
  padding: 100px 0 0 0;
}

.contact .container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 100px;
  align-items: start;
  padding-bottom: 80px;
}

.contact-left {
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.contact-left img {
  max-width: 100%;
  height: auto;
}

.contact-right {
  text-align: left;
}

.contact-right h1 {
  color: #E2BA33;
  text-align: left;
  font-size: 60px;
  font-weight: 700;
  margin-bottom: 10px;
}

.phone {
  color: #fff;
  font-size: 22px;
  margin-bottom: 50px;
  font-family: 'avenir-lt-w01_35-light1475496', 'Avenir Light', sans-serif;
}

.contact input,
.contact textarea {
  width: 100%;
  padding: 12px 15px;
  margin: 0 0 20px 0;
  border: none;
  border-bottom: 1px solid rgba(255, 255, 255, 0.3);
  background: transparent;
  color: #fff;
  font-family: 'avenir-lt-w01_35-light1475496', 'Avenir Light', sans-serif;
  font-size: 16px;
}

.contact input:focus,
.contact textarea:focus {
  outline: none;
  border-bottom-color: #E2BA33;
}

.contact input::placeholder,
.contact textarea::placeholder {
  color: rgba(255, 255, 255, 0.5);
}

.contact textarea {
  min-height: 100px;
  resize: vertical;
}

.form-submit {
  display: flex;
  justify-content: flex-end;
  margin-top: 20px;
}

.contact button {
  background: transparent;
  color: #fff;
  padding: 12px 40px;
  border: none;
  cursor: pointer;
  font-size: 18px;
  font-family: 'avenir-lt-w01_35-light1475496', 'Avenir Light', sans-serif;
  transition: color 0.3s;
}

.contact button:hover {
  color: #E2BA33;
}

.operating-hours {
  color: #fff;
}

.operating-hours h3 {
  color: #E2BA33;
  font-size: 30px;
  font-weight: 700;
  margin-bottom: 20px;
  font-family: 'din-next-w01-light', 'DIN Next', sans-serif;
}

.operating-hours-right p {
  color: rgba(255, 255, 255, 0.85);
  margin: 8px 0;
  font-size: 18px;
}

.operating-hours-right span {
  color: #E2BA33;
  margin-left: 20px;
}

.operating-hours-right .utc-center {
  text-align: center;
  justify-content: flex-end;
  color: rgba(255, 255, 255, 0.6);
  font-style: italic;
  margin: 10px 0;
  font-size: 16px;
}

/* Map Section - Full Width */
.map-full-width {
  display: flex;
  width: 100%;
  margin: 0;
  padding: 0;
  gap: 0;
}

.map-full-width iframe {
  width: 50%;
  height: 400px;
  border: none;
  filter: grayscale(1);
}

/* Footer */
footer {
  text-align: center;
  padding: 30px 0;
  background: #fff;
  color: #000;
}

.footer-logo {
  height: 50px;
  margin: 0 auto 5px;
}

footer p {
  color: #5C5C5C;
  font-size: 10px;
}

/* Responsive */
@media (max-width: 968px) {
  h1 {
    font-size: 40px;
  }

  .hero-header .nav {
    flex-direction: column;
    gap: 40px;
  }

  .nav-item {
    gap: 15px;
  }

  .nav-item a:first-child {
    font-size: 24px;
  }

  .services-grid {
    grid-template-columns: 1fr;
  }

  .service {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .contact .container {
    grid-template-columns: 1fr;
    gap: 60px;
  }
  
  .contact-left .operating-hours {
    display: none;
  }
  
  .operating-hours-right::before {
    content: "Operating hours";
    display: block;
    color: #E2BA33;
    font-size: 24px;
    font-weight: 700;
    margin: 30px 0 15px;
    font-family: 'din-next-w01-light', 'DIN Next', sans-serif;
  }

  .map-full-width {
    flex-direction: column;
  }

  .map-full-width iframe {
    width: 100%;
    height: 350px;
  }

  .gallery-item {
    width: 300px;
    height: 225px;
  }

  @keyframes galleryScroll {
    0% {
      transform: translateX(0);
    }
    100% {
      transform: translateX(calc(-320px * 43));
    }
}

/* Disable text selection */
body {
  -webkit-user-select: none; /* Chrome, Safari */
  -moz-user-select: none;    /* Firefox */
  -ms-user-select: none;     /* IE/Edge */
  user-select: none;
}

/* Disable image dragging */
img {
  pointer-events: none;
  -webkit-user-drag: none;
}

.protected-image {
  position: relative;
}

.watermark {
  position: absolute;
  bottom: 12px;
  right: 12px;
  font-size: 14px;
  color: #fff;
  background: rgba(0,0,0,0.5);
  padding: 4px 8px;
  pointer-events: none;
  z-index: 5;
}

/* Disable ALL text selection */
* {
  -webkit-user-select: none !important;
  -moz-user-select: none !important;
  -ms-user-select: none !important;
  user-select: none !important;
}

/* Completely disable text selection everywhere (desktop + mobile) */
html, body, * {
  -webkit-user-select: none !important; /* Chrome, Safari */
  -webkit-touch-callout: none !important; /* iOS */
  -moz-user-select: none !important; /* Firefox */
  -ms-user-select: none !important; /* Edge */
  user-select: none !important;
}

*:focus,
*:active {
  outline: none !important;
}

/* Disable all text selection and drag highlighting */
html, body {
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

/* Disable selection visuals (blue highlight) */
::selection {
  background: transparent;
}

::-moz-selection {
  background: transparent;
}