@font-face {
  font-family: 'Integral CF';
  src: url('Typo/IntegralCF-Regular.otf') format('opentype');
  font-weight: 400;
  font-style: normal;
}

@font-face {
  font-family: 'Integral CF';
  src: url('Typo/IntegralCF-Bold.otf') format('opentype');
  font-weight: 700;
  font-style: normal;
}

@font-face {
  font-family: 'Integral CF';
  src: url('Typo/IntegralCF-ExtraBold.otf') format('opentype');
  font-weight: 800;
  font-style: normal;
}

@font-face {
  font-family: 'Integral CF';
  src: url('Typo/IntegralCF-Heavy.otf') format('opentype');
  font-weight: 900;
  font-style: normal;
}

*{
margin:0;
padding:0;
box-sizing:border-box;
--color-black:#0c0c0c;
--color-orange:#ffa300;
}

body{
font-family:'Integral CF', sans-serif;
background:#0c0c0c;
color:white;
}

/* navbar */

.navbar{
display:flex;
justify-content:center;
align-items:center;
padding:25px 60px;
position:relative;
width:100%;
background:rgba(0,0,0,0.5);
backdrop-filter:blur(10px);
z-index:999;
}

.navbar nav{
display:flex;
align-items:center;
justify-content:center;
width:100%;
max-width:1200px;
margin:0 auto;
padding:0 10px;
position:relative;
}

.nav-links{
display:flex;
gap:30px;
}

.navbar a{
text-decoration:none;
color:white;
font-weight:400;
transition:all 0.3s ease;
}

.navbar a {
  color: white;
  background: transparent;
  padding: 8px 16px;
  border-radius: 8px;
  transition: all 0.3s ease;
}

.navbar a:hover{
  color:white;
  background:var(--color-orange);
  transform: translateY(-2px);
}

.navbar a.active {
  color: var(--color-orange);
  border-bottom: 2px solid var(--color-orange);
}

/* Bouton VMotion Tools (haut droite) */
.nav-tools-btn {
  position: absolute;
  right: 10px;
  border: 1px solid var(--color-orange);
  color: var(--color-orange) !important;
  font-size: 14px;
  white-space: nowrap;
}

.nav-tools-btn:hover {
  background: var(--color-orange);
  color: #000 !important;
}

@media (max-width: 768px) {
  .nav-tools-btn { display: none; }
}

/* Navbar logo (appears when hero logo scrolls out) */
.navbar-logo {
  height: 30px;
  opacity: 0;
  transform: translateX(-20px);
  transition: opacity 0.4s ease, transform 0.4s ease;
  pointer-events: none;
  position: absolute;
  left: 60px;
}

.navbar.logo-visible .navbar-logo {
  opacity: 1;
  transform: translateX(0);
  pointer-events: auto;
}


/* Section logo centré */
.hero-logo {
  height: 50vh;
  display: flex;
  justify-content: center;
  align-items: center;
  background: #0c0c0c;
}

.logo-center {
  width: 600px;
  display: block;
  margin: 0 auto 100px auto;
  position:relative;
  z-index:2;
}

/* hero */

.hero{
height:100vh;
display:flex;
flex-direction:column;
align-items:center;
justify-content:center;
text-align:center;
background:linear-gradient(120deg,#111,#000);
padding:20px;
position:relative;
overflow:hidden;
}

.hero-video{
position:absolute;
top:0;
left:0;
width:100%;
height:100%;
object-fit:cover;
z-index:1;
}

.hero h1{
font-size:60px;
margin-bottom:20px;
position:relative;
z-index:2;
}

.hero-text{
position:relative;
z-index:2;
}

.hero p{
opacity:1;
margin-bottom:30px;
text-shadow:0 2px 8px rgba(0,0,0,0.8);
position:relative;
z-index:2;
}

.hero button{
padding:14px 28px;
border:none;
border-radius:8px;
background:white;
color:black;
font-weight:600;
cursor:pointer;
position:relative;
z-index:2;
}

/* projects */

.projects{
padding:120px 40px;
background:var(--color-black);
}

.projects-container{
display:grid;
grid-template-columns:1fr 1fr;
gap:40px;
max-width:1200px;
margin:0 auto;
}

.project-card{
position:relative;
width:100%;
height:400px;
overflow:hidden;
border-radius:12px;
transition:all 0.3s ease;
}

.project-card a{
display:block;
width:100%;
height:100%;
position:relative;
text-decoration:none;
}

.project-card img{
width:100%;
height:100%;
object-fit:cover;
transition:filter 0.3s ease, transform 0.3s ease;
}

.project-overlay{
position:absolute;
top:0;
left:0;
width:100%;
height:100%;
background:rgba(255,163,0,0.7);
display:flex;
flex-direction:column;
align-items:center;
justify-content:center;
text-align:center;
opacity:0;
transition:opacity 0.3s ease;
padding:20px;
}

.project-card:hover img{
filter:brightness(0.5);
transform:scale(1.05);
}

.project-card:hover{
box-shadow:0 8px 20px rgba(255,163,0,0.4);
}

.project-card:hover .project-overlay{
opacity:1;
}

.project-overlay h3{
font-size:28px;
margin-bottom:10px;
color:white;
}

.project-overlay p{
font-size:16px;
opacity:0.9;
color:white;
}

@media(max-width:768px){
.projects-container{
grid-template-columns:1fr;
}
}

/* ===== CAROUSEL SCROLL-DRIVEN ===== */

.carousel {
  position: relative;
  background: linear-gradient(to bottom, #0c0c0c, #1a1a1a);
  min-height: auto;
}

.carousel-spacer {
  width: 100%;
  height: 100px; /* overridden by JS */
  position: relative;
}

.carousel-viewport {
  position: sticky;
  top: 0;
  width: 100%;
  height: 100vh;
  overflow: hidden;
  z-index: 10;
  background: linear-gradient(135deg, #0c0c0c 0%, #1a1a1a 100%);
  display: flex;
  align-items: center;
}

.carousel-container {
  display: flex;
  gap: 40px;
  flex-wrap: nowrap;
  width: max-content;
  will-change: transform;
  transform: translate3d(0, 0, 0);
  padding: 60px 80px;
  align-items: center;
  height: 100%;
}

.carousel-item {
  position: relative;
  width: 450px;
  height: 550px;
  flex-shrink: 0;
  overflow: hidden;
  border-radius: 16px;
  cursor: pointer;
  opacity: 0.6;
  transform: scale(0.9);
  transition: opacity 0.3s ease, transform 0.3s ease;
  filter: brightness(0.8);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.8);
}

/* Active item styling */
.carousel-item.active {
  opacity: 1;
  transform: scale(1);
  filter: brightness(1);
  box-shadow: 0 30px 80px rgba(255, 163, 0, 0.3);
}

.carousel-item a {
  display: block;
  width: 100%;
  height: 100%;
  position: relative;
  text-decoration: none;
}

.carousel-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  will-change: transform;
  transition: transform 0.6s cubic-bezier(0.23, 1, 0.320, 1);
}

.carousel-item:hover img {
  transform: scale(1.1);
}

.carousel-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    135deg,
    rgba(255, 163, 0, 0.85) 0%,
    rgba(255, 100, 0, 0.75) 100%
  );
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-end;
  text-align: center;
  opacity: 0;
  backdrop-filter: blur(4px);
  transition: opacity 0.4s cubic-bezier(0.23, 1, 0.320, 1);
  padding: 30px;
}

.carousel-item:hover .carousel-overlay {
  opacity: 1;
}

.carousel-overlay h3 {
  font-size: 26px;
  margin-bottom: 12px;
  color: white;
  font-weight: 700;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
}

.carousel-overlay p {
  font-size: 15px;
  opacity: 0.95;
  color: white;
  font-weight: 400;
  text-shadow: 0 1px 4px rgba(0, 0, 0, 0.2);
}

/* ===== ANIMATIONS ===== */

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes scaleIn {
  from {
    opacity: 0;
    transform: scale(0.95);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

.carousel-item {
  animation: scaleIn 0.6s ease forwards;
}

.carousel-item:nth-child(1) { animation-delay: 0.1s; }
.carousel-item:nth-child(2) { animation-delay: 0.2s; }
.carousel-item:nth-child(3) { animation-delay: 0.3s; }
.carousel-item:nth-child(4) { animation-delay: 0.4s; }
.carousel-item:nth-child(5) { animation-delay: 0.5s; }
.carousel-item:nth-child(6) { animation-delay: 0.6s; }
.carousel-item:nth-child(7) { animation-delay: 0.7s; }

/* ===== RESPONSIVE DESIGN ===== */

@media (max-width: 1024px) {
  .carousel-container {
    gap: 30px;
    padding: 40px 60px;
  }

  .carousel-item {
    width: 380px;
    height: 480px;
  }
}

@media (max-width: 768px) {
  .carousel-viewport {
    position: relative;
    height: auto;
    min-height: 100vh;
    padding: 40px 0;
  }

  .carousel-spacer {
    height: auto;
    min-height: auto;
  }

  .carousel-container {
    gap: 20px;
    padding: 20px;
    justify-content: flex-start;
    overflow-x: auto;
    scroll-behavior: smooth;
    -webkit-overflow-scrolling: touch;
  }

  .carousel-item {
    width: 280px;
    height: 400px;
    opacity: 1;
    transform: scale(1);
    filter: brightness(1);
  }

  .carousel-item.active {
    box-shadow: 0 20px 50px rgba(255, 163, 0, 0.2);
  }
}

@media (max-width: 480px) {
  .carousel-viewport {
    min-height: 100vh;
  }

  .carousel-container {
    padding: 15px;
    gap: 15px;
  }

  .carousel-item {
    width: 240px;
    height: 350px;
  }

  .carousel-overlay h3 {
    font-size: 20px;
    margin-bottom: 8px;
  }

  .carousel-overlay p {
    font-size: 13px;
  }
}

/* ===== SCROLL INDICATOR ===== */

.scroll-indicator {
  position: fixed;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 100;
  opacity: 0;
  transition: opacity 0.3s ease;
  pointer-events: none;
}

.scroll-indicator.visible {
  opacity: 1;
}

.indicator-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--color-orange);
  box-shadow: 0 0 20px rgba(255, 163, 0, 0.6);
  animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
  0%, 100% {
    transform: scale(1);
    opacity: 1;
  }
  50% {
    transform: scale(1.3);
    opacity: 0.7;
  }
}

/* ===== PARALLAX EFFECT ===== */

.carousel-item::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    135deg,
    rgba(255, 163, 0, 0) 0%,
    rgba(255, 163, 0, 0.1) 100%
  );
  pointer-events: none;
  z-index: 5;
}

/* ===== ENHANCED DESKTOP EXPERIENCE ===== */

@media (min-width: 769px) {
  .carousel-viewport::after {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 200px;
    height: 100%;
    background: linear-gradient(
      to right,
      rgba(12, 12, 12, 0),
      rgba(12, 12, 12, 0.8)
    );
    pointer-events: none;
    z-index: 20;
  }

  .carousel-viewport::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100px;
    height: 100%;
    background: linear-gradient(
      to left,
      rgba(12, 12, 12, 0),
      rgba(12, 12, 12, 0.8)
    );
    pointer-events: none;
    z-index: 20;
  }
}

/* CTA */

.cta{
text-align:center;
padding:100px 20px;
background:#111;
}

.cta h2{
margin-bottom:20px;
}

.cta button{
padding:14px 28px;
border:none;
border-radius:8px;
background:white;
color:black;
cursor:pointer;
}

/* button */
button {
padding:14px 28px;
border:none;
border-radius:8px;
background:var(--color-orange);
color: white;
font-weight:600;
cursor:pointer;
transition:all 0.3s ease;
font-family:'Integral CF', sans-serif;
}

button:hover {
background:white;
color:var(--color-orange);
transform:scale(1.05);
box-shadow:0 8px 20px rgba(255, 163, 0, 0.4);
}

/* footer */

footer{
text-align:center;
padding:40px;
opacity:.6;
}

/* project pages */

.project-header {
  padding-top: 150px;
  padding-bottom: 80px;
  text-align: center;
  background: linear-gradient(120deg, #111, #000);
}

.project-header h1 {
  font-size: 72px;
  margin-bottom: 20px;
  color: white;
}

.project-header .subtitle {
  font-size: 24px;
  color: #ffa300;
  margin-bottom: 20px;
  opacity: 0.9;
}

.project-header p {
  font-size: 18px;
  color: white;
  opacity: 0.7;
  max-width: 800px;
  margin: 0 auto;
}

.project-gallery {
  padding: 80px 60px;
  background: #0c0c0c;
}

.gallery-container {
  display: grid;
  grid-template-columns: repeat(2, minmax(320px, 1fr));
  gap: 40px;
  max-width: 1400px;
  margin: 0 auto;
}

.gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: 12px;
  height: 400px;
  background: #151515;
  transition: all 0.3s ease;
}

.gallery-item img,
.gallery-item video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.gallery-item-featured {
  grid-column: 1 / -1;
  justify-self: center;
  width: min(100%, 980px);
  height: 560px;
}

.video-sound-toggle {
  position: absolute;
  right: 16px;
  bottom: 16px;
  z-index: 2;
  padding: 10px 14px;
  border: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: 8px;
  background: rgba(0, 0, 0, 0.65);
  color: #fff;
  font-size: 14px;
  font-weight: 700;
  line-height: 1;
  cursor: pointer;
  transition: background 0.2s ease, transform 0.2s ease;
}

.video-sound-toggle:hover {
  background: rgba(255, 163, 0, 0.9);
  color: #0c0c0c;
  transform: translateY(-1px);
}

.gallery-item:hover img {
  transform: scale(1.05);
}

.gallery-item:hover video {
  transform: scale(1.02);
}

.project-description {
  padding: 80px 60px;
  background: #111;
  max-width: 1000px;
  margin: 0 auto;
}

.project-description h2 {
  font-size: 42px;
  margin-bottom: 30px;
  color: white;
}

.project-description p {
  font-size: 18px;
  line-height: 1.8;
  color: white;
  opacity: 0.8;
  margin-bottom: 20px;
}

@media(max-width: 768px) {
  .gallery-container {
    grid-template-columns: 1fr;
  }

  .gallery-item-featured {
    width: 100%;
    height: 300px;
  }

  .video-sound-toggle {
    right: 12px;
    bottom: 12px;
    padding: 9px 12px;
    font-size: 13px;
  }
  
  .project-header h1 {
    font-size: 48px;
  }
  
  .project-header .subtitle {
    font-size: 20px;
  }
}

/* contact page */
.container-contact {
    max-width: 800px;
    margin: 50px auto;
    background: #000000;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    }

label {
    display: block;
    margin-top: 15px;
    font-weight: bold;
    }

        input, select, textarea {
            width: 100%;
            padding: 10px;
            margin-top: 5px;
            border-radius: 5px;
            border: 1px solid #ccc;
        }

        textarea {
            resize: vertical;
            height: 120px;
        }

        .checkbox-group {
            margin-top: 10px;
        }

        .checkbox-group label {
            font-weight: normal;
            display: block;
            margin-bottom: 5px;
        }

/* ===== SHARED LAYOUT UTILITIES ===== */

.container {
  max-width: 1200px;
  margin: 0 auto;
}

/* ===== ACTIVITIES ===== */

.activities {
  position: relative;
  padding: 130px 40px;
  background: linear-gradient(160deg, #101010 0%, #181818 100%);
  overflow: hidden;
}

.activities::before,
.activities::after {
  content: '';
  position: absolute;
  border-radius: 999px;
  pointer-events: none;
  z-index: 0;
}

.activities::before {
  width: 420px;
  height: 420px;
  top: -180px;
  right: -120px;
  background: radial-gradient(circle, rgba(255, 163, 0, 0.26) 0%, rgba(255, 163, 0, 0) 70%);
}

.activities::after {
  width: 360px;
  height: 360px;
  left: -120px;
  bottom: -140px;
  background: radial-gradient(circle, rgba(255, 120, 0, 0.2) 0%, rgba(255, 120, 0, 0) 75%);
}

.activities .container {
  position: relative;
  z-index: 1;
}

.activities h2 {
  font-size: clamp(34px, 5vw, 48px);
  margin-bottom: 16px;
  text-align: center;
  letter-spacing: 0.02em;
}

.activities > .container > p {
  text-align: center;
  margin: 0 auto 64px;
  max-width: 720px;
  opacity: 0.82;
  font-size: 17px;
  line-height: 1.65;
}

.activities-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 24px;
}

.activity-card {
  position: relative;
  background: linear-gradient(175deg, rgba(255, 255, 255, 0.08) 0%, rgba(255, 255, 255, 0.03) 100%);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 18px;
  overflow: hidden;
  padding: 28px 24px 24px;
  min-height: 250px;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  gap: 14px;
  backdrop-filter: blur(8px);
  transition: transform 0.35s ease, box-shadow 0.35s ease, border-color 0.35s ease;
  text-decoration: none;
  color: white;
}

.activity-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: linear-gradient(90deg, rgba(255, 163, 0, 0.95), rgba(255, 98, 0, 0.9));
}

.activity-card:hover {
  transform: translateY(-9px);
  border-color: rgba(255, 163, 0, 0.5);
  box-shadow: 0 24px 40px rgba(0, 0, 0, 0.38), 0 12px 30px rgba(255, 163, 0, 0.22);
}

.activity-icon {
  width: 58px;
  height: 58px;
  border-radius: 14px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  background: linear-gradient(145deg, rgba(255, 163, 0, 0.3), rgba(255, 98, 0, 0.22));
  border: 1px solid rgba(255, 163, 0, 0.35);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.08);
}

.activity-card h3 {
  font-size: 22px;
  padding: 0;
  line-height: 1.35;
}

.activity-card p {
  padding: 0;
  opacity: 0.84;
  font-size: 15px;
  line-height: 1.7;
}

/* ===== SERVICE PROCESS ===== */

.service-process {
  padding: 60px 40px;
  background: #111;
}

.service-process h3 {
  font-size: 36px;
  margin-bottom: 10px;
  text-align: center;
}

.process-subtitle {
  text-align: center;
  opacity: 0.7;
  margin-bottom: 80px;
}

.process-steps {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px;
  max-width: 1000px;
  margin: 0 auto;
}

.step {
  background: #0c0c0c;
  padding: 30px;
  border-radius: 12px;
  border-left: 4px solid var(--color-orange);
}

.step-number {
  font-size: 42px;
  font-weight: 700;
  color: var(--color-orange);
  margin-bottom: 15px;
}

.step h4 {
  font-size: 18px;
  margin-bottom: 15px;
}

.step p {
  opacity: 0.8;
  line-height: 1.6;
}

/* ===== FAQ ===== */

.faq {
  padding: 120px 40px;
  background: #0c0c0c;
}

.faq h2 {
  font-size: 36px;
  margin-bottom: 10px;
  text-align: center;
}

.faq > .container > p {
  text-align: center;
  opacity: 0.7;
  margin-bottom: 60px;
}

.faq-list {
  margin-bottom: 60px;
}

.faq-item {
  background: #1a1a1a;
  margin-bottom: 15px;
  border-radius: 8px;
  overflow: hidden;
}

.faq-item summary {
  padding: 20px;
  cursor: pointer;
  font-weight: 600;
  user-select: none;
  transition: background 0.3s ease;
}

.faq-item:hover summary {
  background: #222;
}

.faq-item p {
  padding: 0 20px 20px;
  opacity: 0.8;
}

.faq h3 {
  font-size: 20px;
  margin: 40px 0 20px;
  text-align: center;
}

.button {
  display: block;
  padding: 14px 28px;
  background: var(--color-orange);
  color: #0c0c0c;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
  width: fit-content;
  margin: 0 auto;
}

.button:hover {
  transform: scale(1.05);
  box-shadow: 0 8px 20px rgba(255, 163, 0, 0.4);
}

/* ===== FOOTER (grid layout) ===== */

footer.footer-grid {
  text-align: left;
  padding: 60px 40px 40px;
  background: #000;
  border-top: 1px solid #333;
  opacity: 1;
}

.footer-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 40px;
  margin-bottom: 40px;
}

.footer-section h4 {
  font-size: 16px;
  margin-bottom: 20px;
  color: var(--color-orange);
}

.footer-section p {
  opacity: 0.7;
  line-height: 1.6;
}

.footer-section ul {
  list-style: none;
}

.footer-section ul li {
  margin-bottom: 10px;
}

.footer-section a {
  color: white;
  text-decoration: none;
  opacity: 0.7;
  transition: all 0.3s ease;
}

.footer-section a:hover {
  color: var(--color-orange);
  opacity: 1;
}

.footer-bottom {
  text-align: center;
  padding-top: 40px;
  border-top: 1px solid #333;
  opacity: 0.6;
}

/* ===== WORK PAGE - PROJECTS GRID ===== */

.projects-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 30px;
}

.project-card {
  position: relative;
  overflow: hidden;
  border-radius: 12px;
  height: 350px;
  cursor: pointer;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.8);
  transition: all 0.3s ease;
}

.project-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 30px 80px rgba(255, 163, 0, 0.3);
}

.project-card a {
  display: block;
  width: 100%;
  height: 100%;
  text-decoration: none;
  position: relative;
}

.project-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.23, 1, 0.32, 1);
}

.project-card:hover img {
  transform: scale(1.1);
}

.project-card.hidden {
  display: none;
}

/* ===== FILTER BUTTONS ===== */

.filter-section {
  text-align: center;
  margin-bottom: 50px;
}

.filter-buttons {
  display: flex;
  justify-content: center;
  gap: 15px;
  flex-wrap: wrap;
}

.filter-btn {
  padding: 10px 20px;
  border: 2px solid var(--color-orange);
  background: transparent;
  color: var(--color-orange);
  border-radius: 25px;
  cursor: pointer;
  font-weight: 600;
  transition: all 0.3s ease;
  font-family: 'Integral CF', sans-serif;
  transform: none;
  box-shadow: none;
}

.filter-btn:hover,
.filter-btn.active {
  background: var(--color-orange);
  color: #0c0c0c;
  transform: none;
  box-shadow: none;
}

/* ===== CONTACT PAGE ===== */

.contact-section {
  padding: 80px 40px;
  background: #0c0c0c;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
}

.contact-form h2,
.contact-info h2 {
  font-size: 28px;
  margin-bottom: 30px;
  color: var(--color-orange);
}

.form-group {
  margin-bottom: 25px;
}

.form-group label {
  display: block;
  margin-bottom: 10px;
  font-weight: 600;
  font-size: 14px;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 12px 16px;
  border: 2px solid #333;
  border-radius: 8px;
  background: #1a1a1a;
  color: white;
  font-family: 'Integral CF', sans-serif;
  font-size: 14px;
  transition: all 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--color-orange);
  background: #222;
  box-shadow: 0 0 10px rgba(255, 163, 0, 0.2);
}

.form-group select { cursor: pointer; }
.form-group select option { background: #1a1a1a; color: white; }
.form-group textarea { resize: vertical; min-height: 120px; }

.submit-btn {
  width: 100%;
  padding: 14px;
  background: var(--color-orange);
  color: #0c0c0c;
  border: none;
  border-radius: 8px;
  font-weight: 700;
  font-size: 16px;
  cursor: pointer;
  transition: all 0.3s ease;
  font-family: 'Integral CF', sans-serif;
}

.submit-btn:hover {
  transform: scale(1.02);
  box-shadow: 0 8px 20px rgba(255, 163, 0, 0.4);
}

.submit-btn:disabled {
  cursor: wait;
  opacity: 0.75;
  transform: none;
  box-shadow: none;
}

.form-message {
  display: none;
  padding: 20px;
  margin-bottom: 20px;
  border-radius: 8px;
  text-align: center;
  font-weight: 600;
}

.form-message.success { background: rgba(50,200,100,0.2); color: #32c864; display: block; }
.form-message.error   { background: rgba(255,100,100,0.2); color: #ff6464; display: block; }

.info-block { margin-bottom: 40px; }

.info-block h3 {
  font-size: 18px;
  margin-bottom: 12px;
  color: var(--color-orange);
}

.info-block p { opacity: 0.8; }

.info-block a {
  color: var(--color-orange);
  text-decoration: none;
}

.social-links {
  display: flex;
  gap: 20px;
  margin-top: 20px;
}

.social-links a {
  display: inline-flex;
  width: 50px;
  height: 50px;
  background: #1a1a1a;
  border-radius: 50%;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  border: 2px solid transparent;
  opacity: 1;
}

.social-links a:hover {
  background: var(--color-orange);
  border-color: var(--color-orange);
  opacity: 1;
}

.social-links a svg { color: white; }

/* ===== RESPONSIVE - SHARED ===== */

@media (max-width: 1024px) {
  .process-steps { grid-template-columns: 1fr; }
  .contact-grid  { grid-template-columns: 1fr; gap: 40px; }
  .projects-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
  .activities { padding: 60px 20px; }
  .activities h2 { font-size: 32px; }
  .activities-grid { grid-template-columns: 1fr; }
  .service-process-section { padding: 60px 20px; }
  .process-steps { gap: 20px; }
  .faq { padding: 60px 20px; }
  .contact-section { padding: 60px 20px; }
  .projects-grid { grid-template-columns: 1fr; gap: 20px; }
  .filter-buttons { gap: 10px; }
  .footer-content { grid-template-columns: 1fr; }
  .navbar-logo { left: 30px; }
}

@media (max-width: 480px) {
  .project-card { height: 280px; }
  .social-links { flex-wrap: wrap; }
}


/* ===== NAVBAR — logo in top-left ===== */

.navbar {
  position: relative; /* needed for absolute logo positioning */
}

.navbar-logo {
  height: 32px;
  opacity: 0;
  transform: translateX(-20px);
  transition: opacity 0.4s ease, transform 0.4s ease;
  pointer-events: none;
  position: absolute;
  left: 40px;
  top: 50%;
  translate: 0 -50%;
}

.navbar.logo-visible .navbar-logo {
  opacity: 1;
  transform: translateX(0);
  pointer-events: auto;
}

/* ===== MOBILE CAROUSEL ===== */

@media (max-width: 768px) {
  .carousel {
    overflow: hidden;
  }

  .carousel-spacer {
    display: none;
  }

  .carousel-viewport {
    position: relative !important;
    height: auto !important;
    overflow: hidden !important;
    display: block;
    padding: 60px 0;
  }

  .carousel-container {
    display: flex !important;
    gap: 20px !important;
    padding: 20px 24px !important;
    overflow-x: auto !important;
    overflow-y: hidden;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    width: 100% !important;
    transform: none !important;
  }

  .carousel-item {
    flex-shrink: 0;
    width: 280px !important;
    height: 400px !important;
    scroll-snap-align: center;
    opacity: 1 !important;
    transform: scale(1) !important;
    filter: brightness(1) !important;
  }
}

@media (max-width: 480px) {
  .carousel-container {
    padding: 15px !important;
    gap: 15px !important;
  }

  .carousel-item {
    width: 240px !important;
    height: 340px !important;
  }
}

/* ===== HERO — contact & work pages ===== */

.hero-page {
  margin-top: 80px;
  min-height: 40vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  background: linear-gradient(135deg, #111, #0c0c0c);
  padding: 80px 40px 60px;
}

.hero-page h1 {
  font-size: 48px;
  margin-bottom: 16px;
}

.hero-page p {
  font-size: 18px;
  opacity: 0.8;
  max-width: 600px;
}

/* ===== WORK PAGE — hero ===== */

.hero.hero-work {
  margin-top: 80px;
  height: 40vh;
}

.hero-text h1 {
  font-size: 48px;
  margin-bottom: 20px;
}

.hero-text p {
  font-size: 18px;
  opacity: 0.8;
}

/* ===== PROJECT PAGES — CTA section ===== */

.project-cta {
  padding: 80px 40px 60px;
  text-align: center;
  background: #0c0c0c;
}

.project-cta h3 {
  font-size: 22px;
  margin-bottom: 30px;
  opacity: 0.8;
}

/* ===== FILTER BUTTON — fix hover override ===== */

.filter-btn {
  padding: 10px 20px;
  border: 2px solid var(--color-orange);
  background: transparent;
  color: var(--color-orange);
  border-radius: 25px;
  cursor: pointer;
  font-weight: 600;
  transition: background 0.25s ease, color 0.25s ease;
  font-family: 'Integral CF', sans-serif;
}

.filter-btn:hover,
.filter-btn.active {
  background: var(--color-orange) !important;
  color: #0c0c0c !important;
  transform: none !important;
  box-shadow: none !important;
}

/* ===== RESPONSIVE — shared ===== */

@media (max-width: 768px) {
  .hero-page {
    margin-top: 70px;
    padding: 50px 20px 40px;
    min-height: 35vh;
  }

  .hero-page h1  { font-size: 32px; }
  .hero-page p   { font-size: 16px; }
  .navbar-logo   { left: 20px; }
}

@media (max-width: 480px) {
  .hero-page h1 { font-size: 26px; }
}

/* ===== GLOBAL OVERRIDES (2026-06) ===== */

/* Navbar fixed on all pages */
.navbar {
  position: fixed !important;
  top: 0 !important;
  left: 0 !important;
  width: 100%;
}

/* Section offsets for fixed navbar */
.hero-page {
  margin-top: 90px !important;
}

.project-header {
  padding-top: 150px;
}

/* Stronger section contrast across the site */
.hero {
  background: linear-gradient(120deg, #191919, #080808);
}

.carousel {
  background: linear-gradient(to bottom, #101010, #1f1f1f);
}

.activities {
  background: linear-gradient(160deg, #101010 0%, #181818 100%);
}

.service-process,
.service-process-section {
  background: #0d0d0d;
}

.faq {
  background: #171717;
}

.projects {
  background: #121212;
}

.contact-section {
  background: #161616;
}

.project-header {
  background: linear-gradient(120deg, #202020, #0f0f0f);
}

.project-gallery {
  background: #131313;
}

.project-description {
  background: #1a1a1a;
}

.project-cta {
  background: #101010;
}

/* Unified footer for all pages */
footer {
  text-align: left;
  padding: 64px 40px 40px;
  background: linear-gradient(180deg, #080808 0%, #141414 100%);
  border-top: 1px solid #2b2b2b;
  opacity: 1;
}

.footer-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 36px;
  margin-bottom: 36px;
}

.footer-logo {
  width: 120px;
  height: auto;
  margin-bottom: 14px;
  display: block;
}

.footer-section h4 {
  color: var(--color-orange);
}

.footer-bottom {
  border-top: 1px solid #2e2e2e;
}

@media (max-width: 768px) {
  footer {
    padding: 48px 20px 30px;
  }

  .footer-logo {
    width: 96px;
  }
}
