/* =======================
   GLOBAL STYLES
   ======================= */
   html {
    scroll-behavior: smooth;
  }
  
   @import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800&display=swap');

   * {
     margin: 0;
     padding: 0;
     box-sizing: border-box;
   }
   
   body {
     font-family: "Inter", sans-serif;
     background-color: #000000;
     color: #f5f5f5;
   }
   
   /* =======================
      NAVBAR
      ======================= */
   nav {
     position: fixed;
     top: 0;
     width: 100%;
     background: rgba(0, 0, 0, 0.6);
     backdrop-filter: blur(8px);
     display: flex;
     justify-content: space-between;
     align-items: center;
     padding: 14px 60px;
     box-shadow: 0 2px 10px rgba(0, 0, 0, 0.4);
     z-index: 100;
   }
   
   nav .logo {
     width: 80px;
   }
   
   nav ul {
     list-style: none;
     display: flex;
     gap: 40px;
   }
   
   nav ul li a {
     color: #f5f5f5;
     text-decoration: none;
     font-weight: 500;
     transition: color 0.3s ease;
   }
   
   nav ul li a:hover {
     color: #7cd1a5;
   }
   
   /* =========================
      HERO LAYOUT
      ========================= */
   #hero {
     position: relative;
     z-index: 1;
     height: 100vh;
     display: flex;
     flex-direction: column;
     align-items: center;
     justify-content: center;
     gap: 18px;
     text-align: center;
     background: linear-gradient(180deg, #050806 0%, #000000 100%);
     color: #fff;
   }
   
   .hero-logo {
     width: 150px;
     transform: scale(2);
     margin-bottom: 15px;
     margin-left: -30px; /* mută la stânga */

   }
   
   .hero-heading {
     font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, system-ui, sans-serif;
     font-weight: 900;
     font-size: 4.2rem;
     letter-spacing: -0.02em;
     line-height: 1.1;
     color: #ffffff;
     text-align: center;
     text-transform: none;
     text-shadow: none;
     font-smooth: always;
     -webkit-font-smoothing: antialiased;
   }
   
   /* underline turcoaz elegant */
   .hero-heading .fancy {
     position: relative;
     display: inline-block;
   }
   
   .hero-heading .fancy::after {
     content: "";
     position: absolute;
     left: -0.1em;
     right: -0.1em;
     bottom: -0.3em;
     height: 0.25em;
     background-image: url("data:image/svg+xml,%3Csvg width='100' height='64' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cg clip-path='url(%23a)'%3E%3Cpath d='M-17 30.5C-1 22 72-4 54 13 37.9 28.2-2.5 57.5 16 55.5s72-29 104-40' stroke='%2300FDCF' stroke-width='10'/%3E%3C/g%3E%3Cdefs%3E%3CclipPath id='a'%3E%3Cpath fill='%23fff' d='M0 0h100v64H0z'/%3E%3C/clipPath%3E%3C/defs%3E%3C/svg%3E");
     background-size: auto 100%;
     background-repeat: round;
     background-position: 0;
     filter: drop-shadow(0 0 6px rgba(0, 253, 207, 0.4));
     pointer-events: none;
   }
   
   #hero h2 {
     font-size: 1.4rem;
     font-weight: 400;
     color: #6d6c6c;
     margin-top: 30px;
     margin-bottom: 30px;
   }
   
   /* =========================
      BUTTON CONTAINER ALIGN
      ========================= */
   .button {
     margin-top: 100px;
   }
   
   /* From Uiverse.io by barisdogansutcu */
   button {
     display: flex;
     align-items: center;
     justify-content: center;
     gap: 10px;
     font-family: inherit;
     font-size: 13px;
     font-weight: 500;
     text-transform: uppercase;
     letter-spacing: 0.4px;
     color: #061714;
     background-color: #e0e8ef;
     border-style: solid;
     border-width: 2px;
     border-color: rgba(255, 255, 255, 0.333);
     border-radius: 40px;
     padding: 16px 24px;
     transform: translate(0px, 0px) rotate(0deg);
     transition: 0.2s;
     box-shadow: -4px -2px 16px 0px #ffffff, 4px 2px 16px 0px rgb(95 157 231 / 48%);
   }
   
   button:hover {
     color: #007c65;
     background-color: #E5EDF5;
     box-shadow: -2px -1px 8px 0px #ffffff, 2px 1px 8px 0px rgb(95 157 231 / 48%);
   }
   
   button:active {
     box-shadow: none;
   }
   
   h1, h2, h3 {
     font-family: var(--font-heading);
     letter-spacing: -0.02em;
     color: var(--text);
   }
   h1 { font-weight: 900; }
   
   #particles {
     position: absolute;
     inset: 0;
     z-index: 0;
     pointer-events: none;
     opacity: 0.5;
     mix-blend-mode: screen;
     background: radial-gradient(circle at center, #000 40%, #020a08 100%);
   }
   
   .contact-btn {
     border: 1px solid rgba(115, 115, 115, 0.5);
     background: rgba(63, 63, 63, 0.08);
     color: #ffffff;
     padding: 8px 18px;
     border-radius: 30px;
     font-weight: 600;
     text-decoration: none;
     transition: all 0.25s ease;
     box-shadow: 0 0 14px rgba(108, 108, 108, 0.25);
   }
   
   .contact-btn:hover {
     background: rgba(255, 255, 255, 0.15);
     box-shadow: 0 0 24px rgba(116, 116, 116, 0.45);
     transform: scale(1.05);
     color: #545454;
   }
   
   .contact-btn:active {
     transform: scale(0.96);
     box-shadow: 0 0 10px rgba(101, 101, 101, 0.25);
   }
   
   #about p{
    font-size: 1.4rem;
     font-weight: 500;
     color: #b9c8be;
     margin-top: 30px;
     margin-bottom: 30px;
   }







   /* =========================
   ABOUT SECTION (REVAMPED)
   ========================= */
#about {
  position: relative;
  min-height: 100vh;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  text-align: center;
  padding: 6rem 2rem;
  background: transparent; /* eliminăm stratul care ascundea canvasul */
  color: #fff;
}
#about::before {
  content: "";
  position: absolute;
  top: -40px; /* mic overlap peste hero */
  left: 0;
  width: 100%;
  height: 120px;
  background: none;
  z-index: 2;
  pointer-events: none;
}

#about-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  pointer-events: none;
  background: transparent;
}


.about-content {
  position: relative;
  z-index: 2;
  max-width: 850px;
}

/* titlu secundar */
.hero-heading2 {
  top: -50px;
  font-family: "Inter", sans-serif;
  font-weight: 900;
  font-size: 3.6rem;
  letter-spacing: -0.02em;
  color: #ffffff;
  margin-bottom: 2rem;
  position: relative;
  display: inline-block;
  filter: drop-shadow(0 0 12px rgba(0, 253, 207, 0.3));
}

.hero-heading2 .fancy::after {
  content: "";
  position: absolute;
  left: -0.1em;
  right: -0.1em;
  bottom: -0.3em;
  height: 0.25em;
  background-image: url("data:image/svg+xml,%3Csvg width='100' height='64' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cg clip-path='url(%23a)'%3E%3Cpath d='M-17 30.5C-1 22 72-4 54 13 37.9 28.2-2.5 57.5 16 55.5s72-29 104-40' stroke='%2300FDCF' stroke-width='10'/%3E%3C/g%3E%3Cdefs%3E%3CclipPath id='a'%3E%3Cpath fill='%23fff' d='M0 0h100v64H0z'/%3E%3C/clipPath%3E%3C/defs%3E%3C/svg%3E");
  background-repeat: round;
  background-size: auto 100%;
  filter: drop-shadow(0 0 6px rgba(0, 253, 207, 0.6));
  pointer-events: none;
}

#about p {
  max-width: 700px; /* ajustează între 600–750px */
  margin: 0 auto; /* centrează textul */
  line-height: 1.8; /* respiră frumos */
  font-size: 1.1rem; /* puțin mai mic dacă vrei */
  font-weight: 500; /* păstrează același weight */
  color: #b9c8be;
  padding-bottom: 20px;
}

.skills-grid {
  display: grid;
  grid-template-columns: repeat(4, auto); /* 3 coloane */
  gap: 34px; /* spațiere între ele */
  justify-content: center;
  align-items: center;
  margin-top: 70px;
}

.skills-grid img {
  width: 60px; /* dimensiune icon */
  height: auto;
  opacity: 0.9;
  transition: transform 0.3s ease, opacity 0.3s ease;
}

.skills-grid img:hover {
  transform: scale(1.1);
  opacity: 1;
}













.space-transition {
  position: relative;
  width: 100%;
  height: 500px;
  background: transparent;
  overflow: visible;
  z-index: 0;
}

/* 🌍 PLANETA MARE — cu oceane, reflexii */
.planet-big {
  position: absolute;
  top: 100px;
  left: -40px;
  width: 200px;
  height: 200px;
  border-radius: 50%;
  background: radial-gradient(circle at 45% 35%, rgba(0, 255, 200, 0.8), rgba(0, 40, 30, 0.7) 70%, rgba(0,0,0,0) 100%);
  box-shadow: 0 0 80px rgba(0, 253, 207, 0.4);
  filter: drop-shadow(0 0 60px rgba(0, 253, 207, 0.2));
  overflow: hidden;
  animation: floatLeft 12s ease-in-out infinite alternate;
}

/* textură oceanică subtilă */
.planet-big::after {
  content: "";
  position: absolute;
  inset: 0;
  background: repeating-radial-gradient(
    circle at 40% 40%,
    rgba(255,255,255,0.04) 0px,
    rgba(0,253,207,0.1) 3px,
    transparent 6px
  );
  opacity: 0.15;
  mix-blend-mode: overlay;
}

/* 🌕 PLANETA MICĂ — cu cratere */
.planet-small {
  position: absolute;
  bottom: 160px;
  right: -120px;
  width: 300px;
  height: 300px;
  border-radius: 50%;
  background: radial-gradient(circle at 60% 40%, rgba(180,255,240,0.7), rgba(0,50,40,0.6) 70%, rgba(0,0,0,0) 100%);
  box-shadow: 0 0 60px rgba(0, 253, 207, 0.25);
  filter: drop-shadow(0 0 40px rgba(0,253,207,0.25));
  overflow: hidden;
  animation: floatRight 9s ease-in-out infinite alternate;
}

/* cratere */
.planet-small::before,
.planet-small::after {
  content: "";
  position: absolute;
  border-radius: 50%;
  background: rgba(0,0,0,0.25);
  filter: blur(1px);
}
.planet-small::before {
  width: 40px; height: 40px;
  top: 90px; left: 120px;
  box-shadow: 
    80px -40px 0 5px rgba(0,0,0,0.2),
    40px 60px 0 10px rgba(0,0,0,0.15),
    -60px 20px 0 8px rgba(0,0,0,0.3);
}
.planet-small::after {
  width: 30px; height: 30px;
  top: 180px; left: 160px;
  box-shadow:
    -50px -50px 0 6px rgba(0,0,0,0.25),
    30px 40px 0 9px rgba(0,0,0,0.2);
}

/* 🌀 mișcări subtile */
@keyframes floatLeft {
  from { transform: translateY(0) scale(1); }
  to { transform: translateY(-20px) scale(1.03); }
}

@keyframes floatRight {
  from { transform: translateY(0) scale(1); }
  to { transform: translateY(-15px) scale(1.02); }
}











/* ======================
   WHY CHOOSE US SECTION
   ====================== */

   #why-choose-us {
    position: relative;
    background: #000;
    color: #fff;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    overflow: hidden;
    border-radius: 40px;
    padding: 90px 0;
  }
  
  /* GRID (puțin mai des și mai vizibil, fade la margini) */
  #why-choose-us::before {
    content: "";
    position: absolute;
    inset: 0;
    background-image:
      linear-gradient(rgba(255, 255, 255, 0.09) 1px, transparent 1px),
      linear-gradient(90deg, rgba(255, 255, 255, 0.09) 1px, transparent 1px);
    background-size: 48px 48px; /* mai des decât 60px */
    mask-image: radial-gradient(circle at center, #fff 30%, transparent 100%);
    -webkit-mask-image: radial-gradient(circle at center, #fff 30%, transparent 100%);
    z-index: 0;
  }
  
  /* CONȚINUT */
  .why-content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 20px;
    margin-bottom: 30px;
  }
  
  /* TITLU */
  .why-heading2 {
    font-family: "Inter", sans-serif;
    font-weight: 800;
    font-size: 3rem;
    margin-bottom: 6rem;
    color: #fff;
    display: inline-block;
    position: relative;
    
    
  }
  
  .why-heading2 .fancy {
    color: #ffffff;
  }
  
  /* LINIA TURCOAZ ORIGINALĂ DIN SITE (identică cu About Us) */
  .why-heading2 .fancy::after {
    content: "";
    position: absolute;
    left: -0.1em;
    right: -0.1em;
    bottom: -0.35em;
    height: 0.26em;
    background-image: url("data:image/svg+xml,%3Csvg width='100' height='64' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cg clip-path='url(%23a)'%3E%3Cpath d='M-17 30.5C-1 22 72-4 54 13 37.9 28.2-2.5 57.5 16 55.5s72-29 104-40' stroke='%2300FDCF' stroke-width='10'/%3E%3C/g%3E%3Cdefs%3E%3CclipPath id='a'%3E%3Cpath fill='%23fff' d='M0 0h100v64H0z'/%3E%3C/clipPath%3E%3C/defs%3E%3C/svg%3E");
    background-repeat: round;
    background-size: auto 100%;
    filter: drop-shadow(0 0 5px rgba(0, 253, 207, 0.4));
  }
  
  /* PARAGRAF */
  .why-content > p {
    font-size: 1.1rem;
    color: #d9d9d9;
    line-height: 1.75;
    margin-bottom: 60px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
  }
  
  /* CEAS + TEXT */
  .time-section {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 100px;
    flex-wrap: nowrap;
  }
  
  /* CEAS */
  .face {
    position: relative;
    width: 180px;
    height: 180px;
    border-radius: 50%;
    outline: 10px solid #111;
    background: repeating-radial-gradient(
        circle at 50% 50%,
        rgba(80, 80, 80, 0.2) 0%,
        rgba(80, 80, 80, 0.2) 2%,
        transparent 2%,
        transparent 3%
      ),
      conic-gradient(
        #222 0%,
        #333 10%,
        #222 35%,
        #333 45%,
        #222 60%,
        #333 70%,
        #222 80%,
        #333 95%,
        #222 100%
      );
    box-shadow: inset 0 0 30px #0009;
  }
  
  /* ACELE */
  .hour {
    position: absolute;
    width: 5px;
    height: 60px;
    background: #aaa;
    left: 87.5px;
    top: 43px;
    border-radius: 3px;
    transform-origin: 2px 47px;
    animation: watch 43200s linear infinite;
  }
  
  .minute {
    position: absolute;
    width: 4px;
    height: 78px;
    background: #aaa;
    left: 88px;
    top: 25px;
    border-radius: 3px;
    transform-origin: 2px 65px;
    animation: watch 3600s linear infinite;
  }
  
  .second {
    position: absolute;
    width: 10px;
    height: 10px;
    background: #00f3cf;
    left: 85px;
    top: 85px;
    border-radius: 50%;
    border: 1px solid #eee;
    animation: watch 60s steps(60, end) 0s infinite;
  }
  
  .second::before {
    content: "";
    position: absolute;
    width: 2px;
    height: 85px;
    left: 4px;
    bottom: -10px;
    background: #00f3cf;
    border-radius: 2px;
  }
  
  /* TEXT LÂNGĂ CEAS */
  .why-text {
    max-width: 380px;
    color: #838383;
    font-family: "Inter", sans-serif;
    line-height: 1.6;
    text-align: left;
  }
  
  .why-text h3 {
    font-size: 1.6rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 10px;
  }
  
  .why-text p {
    font-size: 1rem;
    opacity: 0.85;
  }
  
  /* ANIMATIE CEAS */
  @keyframes watch {
    0% {
      transform: rotate(0deg);
    }
    100% {
      transform: rotate(360deg);
    }
  }
  

  /* ============= DESIGN SECTION ============= */
.design-section {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 100px;
  margin-top: 60px;
}

/* Loader design adaptation */
.loader {
  --size: 200px;
  --duration: 2.5s;
  --logo-color: #00fdcf; /* turcoazul tău */
  --background: linear-gradient(
    0deg,
    rgba(0, 253, 207, 0.1) 0%,
    rgba(0, 253, 207, 0.15) 100%
  );
  height: var(--size);
  aspect-ratio: 1;
  position: relative;
  margin-left: 50px;
}

.loader .box {
  position: absolute;
  background: rgba(0, 253, 207, 0.05);
  background: var(--background);
  border-radius: 50%;
  border-top: 1px solid rgba(0, 253, 207, 0.4);
  animation: ripple var(--duration) infinite ease-in-out;
}

.loader .box:nth-child(1) { inset: 40%; animation-delay: 0s; }
.loader .box:nth-child(2) { inset: 30%; animation-delay: 0.2s; }
.loader .box:nth-child(3) { inset: 20%; animation-delay: 0.4s; }
.loader .box:nth-child(4) { inset: 10%; animation-delay: 0.6s; }
.loader .box:nth-child(5) { inset: 0%;  animation-delay: 0.8s; }

.loader .logo {
  position: absolute;
  inset: 0;
  display: grid;
  place-content: center;
  padding: 25%;
}

.loader .logo svg {
  fill: var(--logo-color);
  width: 100%;
  animation: color-change var(--duration) infinite ease-in-out;
}

@keyframes ripple {
  0%, 100% { transform: scale(1); opacity: 0.8; }
  50% { transform: scale(1.25); opacity: 1; }
}

@keyframes color-change {
  0%, 100% { fill: var(--logo-color); }
  50% { fill: white; }
}

/* Text beside loader */
.design-text {
  max-width: 420px;
  text-align: left;
  color: #eaeaea;
  font-family: "Inter", sans-serif;
  margin-left: -25px;
}

.design-text h3 {
  font-size: 1.7rem;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 10px;
}

.design-text p {
  font-size: 1.05rem;
  color: #838383;
  line-height: 1.6;
  opacity: 0.9;
}













/* =========================
   OUR WORK SECTION
   ========================= */
   #work {
    position: relative;
    min-height: 100vh;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    text-align: center;
    padding: 6rem 2rem;
    background: transparent; /* eliminăm complet negrul */
    color: #fff;
    z-index: 1;
  }
  
  #work-bg {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    display: block;
    z-index: 0; /* <--- magic: îl trimitem sub conținut */
    pointer-events: none;
  }
  
  
  
  .work-content {
    position: relative;
    z-index: 2;
    max-width: 850px;
  }
  
  .work-heading2 {
    font-family: "Inter", sans-serif;
    font-weight: 900;
    font-size: 3.6rem;
    letter-spacing: -0.02em;
    color: #ffffff;
    margin-bottom: 5rem;
    position: relative;
    display: inline-block;
    filter: drop-shadow(0 0 12px rgba(0, 253, 207, 0.3));
  }
  
  .work-heading2 .fancy::after {
    content: "";
    position: absolute;
    left: -0.1em;
    right: -0.1em;
    bottom: -0.3em;
    height: 0.25em;
    background-image: url("data:image/svg+xml,%3Csvg width='100' height='64' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cg clip-path='url(%23a)'%3E%3Cpath d='M-17 30.5C-1 22 72-4 54 13 37.9 28.2-2.5 57.5 16 55.5s72-29 104-40' stroke='%2300FDCF' stroke-width='10'/%3E%3C/g%3E%3Cdefs%3E%3CclipPath id='a'%3E%3Cpath fill='%23fff' d='M0 0h100v64H0z'/%3E%3C/clipPath%3E%3C/defs%3E%3C/svg%3E");
    background-repeat: round;
    background-size: auto 100%;
    filter: drop-shadow(0 0 6px rgba(0, 253, 207, 0.6));
    pointer-events: none;
  }
  
  #work p {
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.8;
    font-size: 1.1rem;
    font-weight: 500;
    color: #b9c8be;
    padding-bottom: 20px;
  }
  
  .work-skills-grid {
    display: grid;
    grid-template-columns: repeat(4, auto);
    gap: 34px;
    justify-content: center;
    align-items: center;
    margin-top: 70px;
  }
  
  .work-skills-grid img {
    width: 60px;
    height: auto;
    opacity: 0.9;
    transition: transform 0.3s ease, opacity 0.3s ease;
  }
  
  .work-skills-grid img:hover {
    transform: scale(1.1);
    opacity: 1;
  }
  





 /* ==== OUR WORK CARDS SECTION ==== */
.work-cards {
  display: grid;
  grid-template-columns: repeat(2, 298px);
  gap: 40px;
  margin-top: 60px;
  justify-items: center;

}

.highlightss{
  margin-top: 10px;
}
/* Card base */
.outer {
  width: 300px;
  height: 250px;
  border-radius: 10px;
  padding: 1px;
  background: radial-gradient(circle 230px at 0% 0%, #ffffff, #0c0d0d);
  position: relative;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.outer:hover {
  transform: translateY(-6px);
  box-shadow: 0 0 25px rgba(47, 47, 47, 0.25);
}

.dot {
  width: 5px;
  aspect-ratio: 1;
  position: absolute;
  background-color: #ffffff;
  box-shadow: 0 0 10px #ffffff;
  border-radius: 100px;
  z-index: 2;
  right: 10%;
  top: 10%;
  animation: moveDot 6s linear infinite;
}

@keyframes moveDot {
  0%, 100% { top: 10%; right: 10%; }
  25% { top: 10%; right: calc(100% - 35px); }
  50% { top: calc(100% - 30px); right: calc(100% - 35px); }
  75% { top: calc(100% - 30px); right: 10%; }
}

.card {
  z-index: 1;
  width: 100%;
  height: 100%;
  border-radius: 9px;
  border: solid 1px #202222;
  background-size: 20px 20px;
  background: radial-gradient(circle 280px at 0% 0%, #444444, #0c0d0d);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  position: relative;
  color: #fff;
}

.ray {
  width: 220px;
  height: 45px;
  border-radius: 100px;
  position: absolute;
  background-color: #c7c7c7;
  opacity: 0.1;
  box-shadow: 0 0 50px #fff;
  filter: blur(10px);
  transform-origin: 10%;
  top: 0%;
  left: 0;
  transform: rotate(40deg);
}

.card .text {
  font-weight: bolder;
  font-size: 2.5rem;
  background: #b0b0b0;
  background-clip: text;
  -webkit-background-clip: text;
  color: transparent;
  margin-bottom: 4px;
}

.line {
  width: 100%;
  height: 1px;
  position: absolute;
  background-color: #2c2c2c;
}

.topl {
  top: 10%;
  background: linear-gradient(90deg, #888888 30%, #1d1f1f 70%);
}
.bottoml {
  bottom: 10%;
}
.leftl {
  left: 10%;
  width: 1px;
  height: 100%;
  background: linear-gradient(180deg, #747474 30%, #222424 70%);
}
.rightl {
  right: 10%;
  width: 1px;
  height: 100%;
}

/* EasyStay specific */
.easystay-card {
  text-decoration: none;
}

.easystay-logo {
  width: 180px; /* 🔹 poți modifica dimensiunea logo-ului aici */
  filter: drop-shadow(0 0 3px rgba(255,255,255,0.3));
}


















/* =========================
   FOOTER SECTION (VISIBLE GRID)
   ========================= */
   #footer {
    position: relative;
    background: rgba(0, 0, 0, 0.92); /* semi-transparent ca să lase gridul să fie vizibil */
    padding: 14px 0;
    text-align: center;
    color: #b9c8be;
    font-family: "Inter", sans-serif;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    overflow: hidden;
    z-index: 0;
    isolation: isolate;
  }
  
  #footer::before {
    content: "";
    position: absolute;
    inset: 0;
    background-image:
      linear-gradient(rgba(255, 255, 255, 0.08) 1px, transparent 1px),
      linear-gradient(90deg, rgba(255, 255, 255, 0.08) 1px, transparent 1px);
    background-size: 48px 48px;
    opacity: 0.6;
    pointer-events: none;
    z-index: 0;
  
    /* ✨ fade top & bottom */
    mask-image: linear-gradient(to bottom, transparent 0%, black 25%, black 75%, transparent 100%);
    -webkit-mask-image: linear-gradient(to bottom, transparent 0%, black 25%, black 75%, transparent 100%);
  }
  
  
  .footer-content {
    position: relative;
    z-index: 5; /* asigură că textul e peste grid */
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 3px;
    transform: translateY(-2px);
  }
  
  .footer-logo {
    width: 110px;
    height: auto;
    margin-bottom: 2px;
    transform: scale(1.4);
    opacity: 0.9;
  }
  
  .footer-email {
    margin-bottom: 6px;
  }
  
  .footer-email a {
    color: #ffffff;
    text-decoration: none;
    font-weight: 400;
    font-size: 0.9rem;
    transition: color 0.3s ease;
  }
  .footer-email a:hover {
    color: #7f7f7f;
    text-shadow: 0 0 8px rgba(0,253,207,0.4);
  }
  
  .footer-copy {
    font-weight: 300;
    font-size: 0.8rem;
    color: #888;
    letter-spacing: 0.2px;
    margin-bottom: 50px;
  }
  








/* ==========================================================
   MOBILE FIX PATCH (<=768px) — align, scale, spacing, clock
   ========================================================== */
   @media (max-width: 768px) {

    html, body { overflow-x: hidden; max-width: 100%; }
  
    /* NAVBAR — doar Contact vizibil, logo stânga, subțire */
    nav{
      position:fixed!important;top:0;left:0;width:100%;
      height:80px!important;padding:6px 16px!important;
      background:rgba(0,0,0,.55)!important;backdrop-filter:blur(10px);
      box-shadow:0 1px 6px rgba(0,0,0,.35);display:flex!important;
      align-items:center!important;justify-content:space-between!important;z-index:999;
    }
    nav .logo{ width:100px!important; opacity:1!important; margin:0!important; transform:none!important; }
    /* ascunde About/Our Work, lasă doar Contact */
    nav ul{ display:flex!important; gap:12px; }
    nav ul li a{ display:none!important; }
    nav ul li a.contact-btn {
      display: inline-block !important;
      font-size: 13px !important;        /* 🔹 text mai mic */
      padding: 6px 18px !important;      /* 🔹 mai puțin înalt și lat */
      border-radius: 18px !important;    /* 🔹 colțuri elegante */
      border: 1px solid rgba(255, 255, 255, 0.25) !important;
      background: rgba(255, 255, 255, 0.08) !important;
      color: #fff !important;
      text-decoration: none !important;
      font-weight: 500 !important;
      letter-spacing: 0.3px !important;
      line-height: 1 !important;
      height: 36px !important;           /* 🔹 perfect centrat în bara de 65px */
      display: flex !important;
      align-items: center !important;
      justify-content: center !important;
    }
    
    
  
    /* HERO — logo FIX pe mijloc, titlu scalat, paragraf mic, spațiu sub buton */
    #hero{
      height:100vh!important; padding-top:78px!important; padding-bottom:70px!important;
      display:flex; flex-direction:column; justify-content:center!important; align-items:center!important; text-align:center!important;
    }
    .hero-logo {
      width: 240px !important;              /* 🔹 mai mare vizibil */
      margin: 10px auto 22px auto !important;
      transform: scale(1.1) !important;     /* puțin accent vizual */
      display: block !important;
      opacity: 0.6;
    }
    
    .hero-heading {
      font-size: clamp(2.9rem, 8vw, 3.4rem) !important;
      line-height: 1.15 !important;
      margin: 0 auto 12px auto !important;
      max-width: 92% !important;
    }
    
    #hero h2{
      font-size:clamp(.8rem,3.4vw,.95rem)!important; line-height:1.6!important; max-width:86%!important;
      margin:0 auto 24px auto!important; color:#6d6c6c!important;text-wrap: balance !important;padding-top: 14px !important;
      text-align: center !important;
      text-wrap: wrap !important;     /* overrides any previous balance/pretty */
  hyphens: none !important;
  word-break: normal !important;
  overflow-wrap: break-word !important;

  /* tidy look */
  line-height: 1.55 !important;
  letter-spacing: 0 !important;
  word-spacing: 0 !important;
  text-align: left !important; 
  text-align: center !important;          /* centrarea textului */
  margin-left: auto !important;
  margin-right: auto !important;
  max-width: clamp(28ch, 90vw, 36ch) !important;

    }
    button{ padding:12px 22px!important; font-size:11px!important; }
    /* mai mult spațiu între butonul din HERO și începutul secțiunii About */
    #hero button{ margin-bottom:26px!important; }
    #about{ padding-top:92px!important; }
  
    /* ABOUT — SVG-urile aduse spre centru, planetele mici reintrate */
    .hero-heading2{ font-size:clamp(1.9rem,6vw,2.2rem)!important; margin-bottom:22px!important; }
    #about p{ font-size:clamp(.9rem,3.5vw,1rem)!important; line-height:1.6!important; max-width:90%!important; margin:0 auto 30px!important; }
    .skills-grid{
      display:grid!important; grid-template-columns:repeat(2,1fr)!important;
      gap:18px!important; justify-items:center!important; align-items:center!important;
      max-width:220px!important; margin:38px auto 0 auto!important; /* vizual pe mijloc */
    }
    .skills-grid img{ width:50px!important; height:auto!important; }
    .planet-big{ display:block!important; width:88px!important; height:88px!important; left:-16px!important; top:150px!important; opacity:.9; }
    .planet-small{ display:block!important; width:112px!important; height:112px!important; right:-22px!important; bottom:210px!important; opacity:.8; }
    /* asigură craterele vizibile pe mobil (nu tăiate) */
    .planet-small::before, .planet-small::after{ opacity:.9!important; filter:blur(1px)!important; }
  
    /* WHY CHOOSE US — ceas centrat, limbile rotind din mijloc; text sub loader (nu side-by-side) */
    .time-section{ flex-direction:column!important; gap:38px!important; align-items:center!important; justify-content:center!important; }
    .face{ width:124px!important; height:124px!important; margin:0 auto!important; position:relative; }
    .why-heading2 {
      font-size: clamp(1.9rem, 6vw, 2.2rem) !important;
    }
    
    /* repoziționează toate limbile cu origine la baza elementului în CENTRU */
    .hour, .minute{
      left:50%!important; top:50%!important; transform-origin:50% 100%!important;
      background:#aaa!important; border-radius:3px;
    }
    .hour{ width:3px!important; height:38px!important; transform:translate(-50%,-100%) rotate(0deg); animation:hourSpin 43200s linear infinite; }
    .minute{ width:2px!important; height:54px!important; transform:translate(-50%,-100%) rotate(0deg); animation:minuteSpin 3600s linear infinite; }
  
    /* punct central + secundar animat din centru (folosim pseudo ca braț) */
    .second{
      left:50%!important; top:50%!important; width:10px!important; height:10px!important;
      border-radius:50%; background:#00f3cf!important; border:1px solid #eee!important;
      transform:translate(-50%,-50%)!important; position:absolute;
    }
    .second::before{
      content:""; position:absolute; left:50%; top:50%; width:1.5px!important; height:62px!important;
      background:#00f3cf!important; transform-origin:50% 0%!important; /* din centru în sus */
      transform:translate(-50%,0) rotate(0deg); animation:secondSpin 60s linear infinite;
    }
  
    @keyframes hourSpin { to{ transform:translate(-50%,-100%) rotate(360deg);} }
    @keyframes minuteSpin { to{ transform:translate(-50%,-100%) rotate(360deg);} }
    @keyframes secondSpin { to{ transform:translate(-50%,0) rotate(360deg);} }
  
    .why-text{ text-align:center!important; max-width:90%!important; }
    .why-text h3{ font-size:clamp(1.2rem,5vw,1.4rem)!important; }
    .why-text p{ font-size:clamp(.85rem,3.4vw,.95rem)!important; }
  
    /* DESIGN & QUALITY — UNA SUB ALTA, centrate */
    .design-section{ display:flex!important; flex-direction:column!important; gap:46px!important; align-items:center!important; justify-content:center!important; margin-top:40px!important; }
    .loader{ --size:132px!important; margin-left:0!important; }
    .design-text{ text-align:center!important; max-width:90%!important; margin:0 auto!important; }
    .design-text h3{ font-size:1.3rem!important; }
  
    /* WORK — o coloană, aerisit */
    #work{ padding:60px 20px!important; }
    .work-heading2{ font-size:clamp(1.9rem,6vw,2.2rem)!important; margin-bottom:30px!important; }
    #work p{ font-size:clamp(.85rem,3.5vw,.95rem)!important; line-height:1.6!important; }
    .work-cards{ grid-template-columns:1fr!important; gap:26px!important; justify-items:center!important; }
    .outer{ width:90%!important; max-width:320px!important; height:220px!important; }
  
    /* FOOTER */
    #footer{ padding:20px 0!important; }
    .footer-logo{ width:80px!important; }
    .footer-email a{ font-size:.85rem!important; }
    .footer-copy{ font-size:.75rem!important; }
  }
  
  /* telefoane mici */
  @media (max-width: 480px){
    .hero-logo{ width:200px!important; opacity: 0.6 !important;display: none !important;}
    .hero-heading{ font-size:clamp(2.6rem,7vw,2.2rem)!important; }
    #hero h2{ font-size:clamp(.78rem,3.6vw,.88rem)!important;text-wrap: balance !important;padding-top: 14px !important;text-align: center !important;
       
      text-wrap: wrap !important;     /* overrides any previous balance/pretty */
      hyphens: none !important;
      word-break: normal !important;
      overflow-wrap: break-word !important;
    
      /* tidy look */
      line-height: 1.55 !important;
      letter-spacing: 0 !important;
      word-spacing: 0 !important;
      text-align: left !important; 
      text-align: center !important;          /* centrarea textului */
  margin-left: auto !important;
  margin-right: auto !important;
  max-width: clamp(28ch, 90vw, 36ch) !important;
    
    }
    .skills-grid img{ width:44px!important; }
    
  }
  @media (max-width: 768px) {
    /* LOGO principal din HERO */
    #hero .hero-logo {
      width: clamp(200px, 40vw, 180px) !important;
      max-width: 60vw !important;
      height: auto !important;
      display: block !important;
      margin: 0 auto 20px auto !important;
      margin-top: 40px !important;
      position: relative !important;
      top: 30px !important;
      left: -6px !important;
      opacity: 0.6 !important;
      display: none !important;
    }
    .hero-heading {
      font-size: 3.6rem !important;  /* 🔹 clar mai mare pe telefon */
      line-height: 1.1 !important;
      margin: 0 auto 14px auto !important;
      max-width: 92% !important;
      margin-bottom: 20px !important;
    }
    
    .hero-heading2,
    .work-heading2,
    .why-heading2 {
      font-family: "Inter", sans-serif !important;
      font-weight: 700 !important;
      letter-spacing: -0.4px !important;
      color: #fff !important;
}


  }
  /* === FORCE HEADINGS TO MATCH HERO === */
#about .hero-heading2,
#why-choose-us .why-heading2,
#work .work-heading2 {
  font-family: "Inter", sans-serif !important;
  font-weight: 700 !important;
  color: #fff !important;
  letter-spacing: -0.4px !important;
  text-transform: none !important;
  opacity: 1 !important;
}

  
@media (max-width: 768px) {
  .hero-logo {
    display: none !important;
  }
  #hero {
    padding-top: 120px !important; /* era 78px, acum urcă textul frumos */
  }
  
}


/* ================================
   🔧 MOBILE STABILITY PATCH (no jump)
   ================================ */
   @media (max-width: 768px) {
    html, body {
      height: 100% !important;               /* să învingă orice definiție anterioară */
      overscroll-behavior: none;             /* oprește bounce-ul iOS/Android */
      scroll-behavior: smooth;
      overflow-x: hidden !important;
    }
  
    section {
      min-height: 100svh !important;         /* folosește înălțimea reală fără salturi */
    }
    *:not(.hour):not(.minute):not(.second):not(.hand) {
      -webkit-transform: translateZ(0);
      -webkit-backface-visibility: hidden;
    }
  
    /* aplică doar pe elemente generale, NU pe limbile ceasului */


  
    nav {
      position: sticky;
      top: 0;
      backface-visibility: hidden;
      -webkit-transform: translateZ(0);
    }
  }
  

















 