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

html, body {
    height: 100%;
    scroll-behavior: smooth;
}
body {
    font-family: 'Lato', sans-serif;
    font-weight: 400;
    line-height: 1.6;
    letter-spacing: 0.3px;
    -webkit-font-smoothing: antialiased;
  }
  


header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100px; 
    background-color: hsl(0, 0%, 100%);
    color: white;
    display: flex;
    align-items: center;
    padding: 0 20px; 
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    z-index: 1000;
}


.header-container {
    display: flex;
    align-items: center;
    justify-content: space-between; 
    width: 100%;
}


.logo {
    height: 80px;
    margin-right: 15px;
}



.nav-menu {
    display: flex;
    gap: 15px; 
}


.nav-menu a {
    color: #000000;
    white-space: nowrap; 
    text-decoration: none;
    font-size: 1,2rem; 
    font-weight: bold;
    transition: background-color 1s ease, color 1.5s ease;
    position: relative;
    padding: 1px 7px;
}


.nav-menu a.active {
    background-color: #f0c040;
    color: #333;
}



@media (max-width: 799px) {
    header {
        height: 100px;
    }

    .logo {
        height: 60px;
        display: block;
        position: absolute;
        top: 10px; 
        left: 50%;
        transform: translateX(-50%); 
    }

    .nav-menu {
        position: absolute;
        bottom: 0; 
        left: 50%;
        transform: translateX(-50%);
        display: flex;
        gap: 10px;
    }

    .nav-menu a {
        font-size: 1rem;
        padding: 7px 10px;
    }
}
@media (max-width: 400px) {
    header {
        height: 100px;
    }

    .logo {
        height: 60px;
        display: block;
        position: absolute;
        top: 10px; 
        left: 50%;
        transform: translateX(-50%); 
    }

    .nav-menu {
        position: absolute;
        bottom: 5px; 
        left: 50%;
        transform: translateX(-50%);
        display: flex;
        gap: 10px;
    }

    .nav-menu a {
        font-size: 0.6rem;
        padding: 2px 7px;
    }
}





.container {
    height: 100svh; 
    scroll-snap-type: y mandatory; 
    overflow-y: scroll; 
    scroll-behavior: smooth; 
    -webkit-overflow-scrolling: touch; 
    overscroll-behavior: none; 
}



body::-webkit-scrollbar,
html::-webkit-scrollbar,
.container::-webkit-scrollbar {
  display: none;
}


body,
html,
.container {
  scrollbar-width: none;
  -ms-overflow-style: none; 
}



.section {
    height: 100svh; 
    padding-top: 100px;
    scroll-snap-align: start; 
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 2rem;
    color: white;
    text-align: center;
}

#section1 {
  position: relative;
  overflow: hidden;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  height: 100%;
}

.hero-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transform-origin: center center;
  filter: brightness(0.9);
  z-index: 1;
  animation: slowZoom 10s ease-in-out infinite alternate;
}

@keyframes slowZoom {
  0% {
    transform: scale(1);
  }
  100% {
    transform: scale(1.1); 
  }
}


.hero-box {
  position: absolute;
  right: 5%;
  bottom: 5%;
  z-index: 2;
  background: white;
  padding: 20px 25px;
  border-radius: 10px;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
  text-align: left;
  max-width: 600px;
  width: 80%;
  animation: fadeInUp 0.8s ease forwards;
}

.hero-scroll {
  max-height: 300px;
  overflow-y: auto;
  padding-right: 10px; 
}


.hero-scroll::-webkit-scrollbar {
  width: 6px;
}
.hero-scroll::-webkit-scrollbar-thumb {
  background-color: rgba(0, 0, 0, 0.2);
  border-radius: 6px;
}

.hero-box h1 {
  font-size: clamp(2rem, 5vw, 2rem);
  margin-bottom: 20px;
  text-align: center;
  font-weight: 600;
  color: #111;
}

.hero-box p {
  font-size: clamp(1rem, 2.5vw, 1.3rem);
  line-height: 1.5;
  color: #333;
  margin-bottom: 30px;
}
.hero-box::-webkit-scrollbar {
  width: 6px;
}
.hero-box::-webkit-scrollbar-thumb {
  background-color: rgba(0, 0, 0, 0.2);
  border-radius: 6px;
}





@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}
@media (max-width: 799px) {
  .hero-bg {
    object-fit: contain;
    object-position: top;
    z-index: 1;
    margin-top: 70px;
  }
}




#section2 {
    background-color: hsl(0, 0%, 100%);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}


.simple-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr); 
    gap: 5px; 
    max-width: 1400px;
    margin: 0 auto;
}


.grid-item {
    position: relative;
    overflow: hidden;
    border-radius: 20px;
    cursor: pointer;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    border: 1px solid hsl(0, 0%, 0%); 
    background-color: rgb(255, 255, 255);
    transition: transform 0.3s ease-in-out;
    animation: fadeInUp 0.6s ease-in-out;
    display: flex;
    align-items: center;
    justify-content: center;
    aspect-ratio: 4 / 3; 
    height: auto;
}


.grid-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 20px;
    transition: transform 0.4s ease-in-out;
}

.grid-item:hover img {
    transform: scale(1.1);
}




.grid-title {
    position: absolute;
    bottom: 0;
    width: 100%;
    background-color: white;
    color: black;
    text-align: center;
    font-size: 1.2rem;
    font-weight: 600;
    padding: 12px 10px;
    border-bottom-left-radius: 20px;
    border-bottom-right-radius: 20px;
    z-index: 5;
    box-shadow: 0 -1px 5px rgba(0, 0, 0, 0.05);
  }
  

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.grid-item {
    animation: fadeInUp 0.6s ease-in-out;
}


@media (max-width: 799px) {
    .simple-grid {
        display: flex;
        flex-wrap: nowrap;
        overflow-x: auto;
        height: 70%;
        scroll-snap-type: x mandatory; 
        -webkit-overflow-scrolling: touch;
        width: 100%;
        position: relative;
        padding-bottom: 30px; 
    }
    
  
    .grid-item {
        flex: 0 0 90%;
        scroll-snap-align: center; 
        text-align: center;
        transition: transform 0.3s ease-in-out;
    }
    .simple-grid::after {
      content: "";
      flex: 0 0 5%; 
    }
 

    .grid-item img {
        width: 100%;
        display: block;
        border-radius: 15px;
        transition: transform 0.3s ease;
    }
    .grid-item:hover img {
        transform: scale(1.05);
        will-change: transform;
    }

    #section2 {
        position: relative; 
    }

  
    #section2 .slider-dots {
        position: absolute;
        bottom: 5px;
        left: 50%;
        transform: translateX(-50%);
        display: flex;
        gap: 8px;
    }

    #section2 .dot-oferta {
        width: 10px;
        height: 10px;
        background-color: #0a090980;
        border-radius: 50%;
        transition: background-color 0.3s ease;
        cursor: pointer;
    }

    #section2 .dot-oferta.active {
        background-color: hsl(46, 94%, 55%);
    }
}



.modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    justify-content: center;
    align-items: center;
    z-index: 2000;
}


.modal.active {
    display: flex;
    backdrop-filter: blur(4px);
}


.modal-content {
    background: #ffffff;
    width: 80%;
    height: 90%;
    border-radius: 30px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    border: 1px solid hwb(0 19% 80%); 
    display: flex;
    flex-direction: column;
    overflow: hidden;
}


.modal-header {
    background-color: hsl(0, 0%, 100%); 
    display: flex;
    align-items: center; 
    justify-content: center; 
    border-bottom: 1px solid #ddd; 
    position: relative; 
    height: 70px; 
    z-index: 2000;
}


.modal-header h2.modal-title {
    font-size: 1.8rem;
    font-weight: bold;
    color: hsl(0, 0%, 0%);
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%); 
    text-align: center;
}


.close-button {
    position: absolute;
    right: 20px; 
    top: 50%;
    transform: translateY(-50%); 
    background: none;
    border: none;
    font-size: 2rem;
    color: #000;
    cursor: pointer;
    transition: color 0.3s ease;
}

.close-button:hover {
    color: #f0c040;
}

.modal-description {
    font-size: 1.1rem;
    line-height: 1.6;
    color: hsl(0, 0%, 0%);
    background: white;
    border-bottom: 1px solid #ddd;
  }
  
  .hero-description1 {
    text-align: center;
  }
  
  .hero-description1 h3 {
    font-size: 2.4rem;
    font-weight: bold;
    color: #000;
  }
  
  .hero-description1 p {
    font-size: 1.2rem;
    color: hsl(48, 85%, 48%); 
    line-height: 1.6;
  }
  
  .modal-gallery {
    display: flex;
    gap: 16px;
    padding: 80px 200px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
  }
  
 
  
  .modal-gallery img {
    flex: 0 0 auto;
    width: clamp(280px, 35vw, 600px); 
    aspect-ratio: 4 / 3; 
    object-fit: cover;
    border-radius: 20px;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
    scroll-snap-align: start;
    transition: transform 0.3s ease;
  }
  
  
  
  .modal-gallery img:hover {
    transform: scale(1.03);
  }
  
  
  .modal.active .modal-content {
    animation: fadeUp 0.4s ease;
  }
  
  @keyframes fadeUp {
    from {
      transform: translateY(20px);
      opacity: 0;
    }
    to {
      transform: translateY(0);
      opacity: 1;
    }
  }
@media (max-width: 799px) {
  .modal-content {
    width: 95%;
    height: 92%;
    border-radius: 20px;
    padding: 0;
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    justify-content: space-between; 
  }
  

  .modal-gallery {
    display: flex;
    justify-content: center;
    padding: 0 0 20px 0; 
    margin-top: auto; 
  }
  
  .modal-gallery img {
    width: 90vw;
    max-height: 45vh;
    object-fit: cover;
    border-radius: 20px;
  }
  

  .hero-description1 {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    background: rgba(255, 255, 255, 0.92);
    padding: 10px 16px;
    border-radius: 16px;
    width: 85%;
    max-width: 360px;
    text-align: center;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    z-index: 20;
  }
  
  .hero-description1 {
    top: 70px;
  }
  

  
  .hero-description1 h3 {
    font-size: 1.2rem;
    margin-bottom: 4px;
    line-height: 1.2;
  }
  
  .hero-description1 p {
    font-size: 0,8rem;
    line-height: 1.3;
    color: #d88c00;
    margin: 0;
  }
  
  .modal-header h2.modal-title {
    font-size: 1.4rem;
  }


  .close-button {
    font-size: 1.6rem;
    top: 50%;
    transform: translateY(-50%);
    right: 20px;
  }
}



#section3 {
    background-color: #fff;
  }
  
  .interior-steps {
    height: 100%;
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
    padding: 40px 20px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    box-sizing: border-box;
    position: relative;
  }
  

  .section-heading {
    font-size: clamp(2rem, 5vw, 3.2rem);
    font-weight: 700;
    text-align: center;
    color: #111;
  }
  
  .section-subtext {
    font-size: clamp(1rem, 2vw, 1.6rem);
    text-align: center;
    margin: 10px auto 40px auto;
    max-width: 700px;
    color: #444;
    line-height: 1.6;
  }
  
  .steps-wrapper {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 40px;
    width: 100%;
    align-items: center;
    justify-content: center;
  }
  

  .step {
    background: #f9f9f9;
    border-radius: 20px;
    border: 1px solid hsl(0, 0%, 0%);
    padding: 40px 30px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
  }
  
  .step:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.08);
  }
  
  .step-icon svg {
    width: 56px;
    height: 56px;
    stroke: #f0c040;
    stroke-width: 2;
    margin-bottom: 20px;
  }
  
  .step h3 {
    font-size: 1.6rem;
    margin-bottom: 10px;
    font-weight: 600;
    color: #111;
  }
  

  

  .scroll-down-cta {
    text-align: center;
    animation: fadeInUp 0.8s ease both;
    padding-bottom: 10px;
  }
  
  .scroll-down-cta p {
    font-size: 1.1rem;
    font-weight: 500;
    color: #333;
    margin-bottom: 6px;
  }
  
  .scroll-down-cta .arrow-down svg {
    width: 28px;
    height: 28px;
    stroke: #f0c040;
    stroke-width: 2;
    animation: bounce 1.5s infinite;
  }
  
 
  @keyframes bounce {
    0%, 100% {
      transform: translateY(0);
    }
    50% {
      transform: translateY(8px);
    }
  }
  
  @keyframes fadeInUp {
    from {
      opacity: 0;
      transform: translateY(20px);
    }
    to {
      opacity: 1;
      transform: translateY(0);
    }
  }
  
  
  @media (max-width: 800px) {
    .interior-steps {
      padding: clamp(16px, 4vw, 30px);
      margin-top: clamp(10px, 3vh, 20px);
    }
  
    .interior-steps .section-heading {
      font-size: clamp(1.2rem, 2.5vw, 1.6rem);
      margin-bottom: 20px;
      text-align: center;
      padding: 0 clamp(10px, 4vw, 20px);
      line-height: 1.3;
    }
  
    .steps-wrapper {
      display: grid;
      grid-template-columns: repeat(2, 1fr);
      gap: 10px;
      align-items: stretch;
      padding: 0;
    }
  
    .step {
      background: #f9f9f9;
      border: 1px solid #000;
      border-radius: 12px;
      padding: 16px;
      display: flex;
      flex-direction: column;
      justify-content: flex-start;
      align-items: center;
      text-align: center;
      box-shadow: 0 4px 16px rgba(0,0,0,0.05);
      height: 100%;
    }
  
    .step-icon {
      width: 48px;
      height: 48px;
      margin-bottom: 1px;
      display: flex;
      align-items: center;
      justify-content: center;
    }
  
    .step-icon svg {
      width: 32px;
      height: 32px;
      stroke: #f0c040;
      stroke-width: 2;
    }
  
    .step h3 {
      font-size: 1rem;
      font-weight: 600;
      white-space: nowrap;
      color: #111;
      margin-bottom: 6px;
    }
  

 
    .scroll-down-cta {
      margin-top: 10px;
      padding-bottom: 20px;
      text-align: center;
    }
  
    .scroll-down-cta p {
      font-size: 1rem;
      margin-bottom: 1px;
      color: #333;
    }
  
    .scroll-down-cta .arrow-down svg {
      width: 26px;
      height: 26px;
      stroke: #f0c040;
      animation: bounce 1.5s infinite;
    }
  
    @keyframes bounce {
      0%, 100% { transform: translateY(0); }
      50% { transform: translateY(6px); }
    }
  }
  

  
  

  


#section4 { background-color: hsl(0, 0%, 100%); }
.gallery-container {
    display: grid;
    grid-template-columns: repeat(3, 1fr); 
    grid-template-rows: repeat(3, 1fr); 
    gap: 5px; 
    width: 100%; 
    max-width: 1400px;
    height: 100%; 
    padding: 10px; 
}


.gallery-item {
    position: relative;
    perspective: 1000px;
    overflow: hidden;
    border: 1px solid hsl(0, 0%, 0%); 
    border-radius: 10px;
    transition: transform 0.3s ease;
    width: 100%;
    height: 100%;
    aspect-ratio: 4 / 3; 
    cursor: pointer;
}

.gallery-item img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}


.gallery-item:hover img {
    transform: scale(1.1); 
}
.gallery-item .title {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    background: hsl(0, 0%, 100%);
    color: #000000;
    text-align: center;
    padding: 10px 0;
    font-size: 1rem;
    opacity: 0; 
    transition: opacity 0.3s ease, transform 0.3s ease;
    transform: translateY(20px);
}

.gallery-item:hover .title {
    opacity: 1; 
    transform: translateY(0);
}
.gallery-item {
    animation: fadeIn 0.6s ease both;
  }
  
  @keyframes fadeIn {
    from {
      opacity: 0;
      transform: translateY(10px);
    }
    to {
      opacity: 1;
      transform: translateY(0);
    }
  }
  



.lightbox {
    position: fixed;
    inset: 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(10px);
    visibility: hidden;
    opacity: 0;
    transition: opacity 0.3s ease-in-out;
    z-index: 2000;
  }
  
  .lightbox.visible {
    visibility: visible;
    opacity: 1;
  }
  body:has(.lightbox.visible) header {
    display: none;
  }
  
 
  .lightbox-carousel {
    position: relative;
    width: 90%;
    max-width: 1200px;
    height: 70vh;
    display: flex;
    justify-content: center;
    align-items: center;
  }
  

  .carousel {
    display: flex;
    overflow: hidden;
    width: 100%;
    height: 100%;
  }
  

  .carousel img {
    flex-shrink: 0;
    width: 100%;
    height: 100%;
    object-fit: contain;
    display: none;
    border-radius: 12px;
    transition: opacity 0.4s ease;
  }
  
  .carousel img.active {
    display: block;
  }
  

  .nav-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.1);
    border: none;
    color: #eec249;
    font-size: 2rem;
    border-radius: 50%;
    padding: 10px 14px;
    cursor: pointer;
    z-index: 10;
  }
  
  .nav-arrow:hover {
    background: rgba(255, 255, 255, 0.4);
  }
  
  .nav-arrow.left {
    left: -50px;
  }
  
  .nav-arrow.right {
    right: -50px;
  }
  

  .dots {
    display: flex;
    justify-content: center;
    gap: 10px;
    position: absolute;
    bottom: 20px; 
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
  }
  
  
  
  .dot-lightbox {
    width: 12px;
    height: 12px;
    background: #ccc;
    border-radius: 50%;
    cursor: pointer;
    transition: background-color 0.3s ease;
  }
  
  .dot-lightbox.active {
    background: white;
  }
  

  .description {
    margin-top: 25px;
    color: rgb(255, 255, 255);
    font-size: 1.1rem;
    text-align: center;
    padding: 10px 20px;
    max-width: 90%;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(4px);
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.4);
  }
  .close-buttonr {
    position: absolute;
    top: 20px;
    right: 25px;
    font-size: 2rem;
    color: #e2c336;
    background: transparent;
    border: none;
    cursor: pointer;
    z-index: 100;
    transition: color 0.3s ease;
  }
  
  .close-button:hover {
    color: #f0c040;
  }
  @media (max-width: 800px) {
    .lightbox-carousel {
      width: 95%;
      height: 60vh;
      flex-direction: column;
    }
  
    .carousel img {
      border-radius: 8px;
      max-height: 100%;
      object-fit: contain;
    }
  
    .nav-arrow {
      font-size: 1.5rem;
      padding: 8px 12px;
      top: 50%;
      transform: translateY(-50%);
      background: rgba(255, 255, 255, 0.15);
    }
  
    .nav-arrow.left {
      left: 10px;
    }
  
    .nav-arrow.right {
      right: 10px;
    }
  
    .dots {
      bottom: 12px;
      gap: 8px;
    }
  
    .dot {
      width: 10px;
      height: 10px;
    }
  
    .description {
      font-size: 0.9rem;
      margin-top: 20px;
      padding: 8px 16px;
      max-width: 95%;
    }
  
    .close-buttonr {
      top: 15px;
      right: 15px;
      font-size: 1.8rem;
    }
  }
  
  



#section5 {
    background: linear-gradient(to bottom, #ffffffe6, #c0c0c0cc); 
}


.contact-split-section {
  background: linear-gradient(to bottom, #ffffff, #eeeeee);
  padding: 80px 40px;
}

.contact-split-container {
  display: flex;
  max-width: 1200px;
  margin: 0 auto;
  background: white;
  border-radius: 24px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.05);
  overflow: hidden;
}

.contact-left, .contact-right {
  flex: 1;
  padding: 60px;
}

.contact-left {
  border-right: 1px solid #ddd;
  background: hsl(0, 0%, 100%);
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 60px 30px;
  text-align: center;
}

.avatar-wrapper {
  width: 150px;
  height: 150px;
  margin-bottom: 30px;
}

.avatar-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 50%;
  border: 1px solid hsl(0, 0%, 0%);
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

.contact-left h2 {
  font-size: 1.8rem;
  margin-bottom: 30px;
  color: #111;
}

.contact-info-wrapper {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-bottom: 20px;
}

.contact-detail {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  color: #444;
  font-size: 1rem;
}

.contact-detail i {
  color: #f0c040;
  font-size: 1.1rem;
}

.contact-socials {
  display: flex;
  justify-content: center;
  gap: 15px;
  margin-top: 10px;
}

.contact-socials a {
  font-size: 1.2rem;
  color: #555;
  transition: color 0.3s;
}

.contact-socials a:hover {
  color: #f0c040;
}

.contact-right h2 {
  font-size: 2.4rem;
  margin-bottom: 10px;
  color: #111;
}

.contact-right p {
  font-size: 1.1rem;
  color: #666;
  margin-bottom: 30px;
}

.contact-right form input,
.contact-right form textarea {
  width: 100%;
  padding: 14px;
  margin-bottom: 20px;
  border: 1px solid #ccc;
  border-radius: 12px;
  font-size: 1rem;
}

.contact-right form button {
  padding: 14px 30px;
  background-color: #f0c040;
  color: #000;
  border: none;
  border-radius: 999px;
  font-size: 1rem;
  font-weight: bold;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.contact-right form button:hover {
  background-color: #e0b030;
}
.contact-split-container {
  animation: fadeIn 0.8s ease forwards;
  opacity: 0;
}
/* Domyślnie */
.desktop-only {
  display: block;
}
.mobile-only {
  display: none;
}
@keyframes fadeIn {
  to { opacity: 1; transform: none; }
  from { opacity: 0; transform: translateY(20px); }
}

@media (max-width: 799px) {

  .contact-right {
    display: none;
  }
  .contact-split-container {
    flex-direction: column;
    padding: 0 50px;
    border-radius: 20px;
    box-shadow: none;
  }

  .contact-left {
    width: 100%;
    padding: 30px 20px;
    box-sizing: border-box;
    text-align: center;
    border-right: none;
  }

  .contact-left h2 {
    font-size: 1rem;
    margin-bottom: 15px;
  }

  .avatar-wrapper {
    width: 110px;
    height: 110px;
    margin: 0 auto 20px auto;
  }

  .avatar-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
  }

  .contact-info-wrapper {
    gap: 5px;
    margin-bottom: 1px;
  }

  .contact-detail {
    flex-direction: column;
    font-size: 0.6rem;
    gap: 6px;
  }

  .contact-socials {
    justify-content: center;
    margin-top: 15px;
    gap: 12px;
  }

  .contact-socials a {
    font-size: 1.2rem;
  }


  

  .floating-contact-btn {
    position: fixed;
    bottom: 24px;
    right: 20px;
    width: 60px;
    height: 60px;
    background-color: #f0c040;
    border: none;
    border-radius: 50%;
    box-shadow: 0 4px 14px rgba(0,0,0,0.2);
    color: black;
    font-size: 1.5rem;
    z-index: 999;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
  }

  .floating-contact-btn:hover {
    background-color: #e0b030;
  }


  .floating-form-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.5);
    backdrop-filter: blur(4px);
    display: none;
    justify-content: center;
    align-items: center;
    z-index: 1000;
  }

  .floating-form-overlay.active {
    display: flex;
  }

  .floating-form-box {
    background: #fff;
    border-radius: 20px;
    padding: 10px 10px;
    width: 90%;
    max-width: 400px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
    position: relative;
  }

  .floating-form-box h2 {
    text-align: center;
    font-size: 1.4rem;
    margin-bottom: 5px;
    color: #111;
  }

  .floating-form-box form input,
  .floating-form-box form textarea {
    width: 100%;
    margin-bottom: 15px;
    padding: 12px;
    border-radius: 10px;
    border: 1px solid #ccc;
    font-size: 1rem;
  }

  .floating-form-box form button {
    width: 100%;
    padding: 12px;
    background: #f0c040;
    border: none;
    border-radius: 999px;
    font-weight: bold;
    color: #000;
    font-size: 1rem;
    cursor: pointer;
  }

  .close-floating-form {
    position: absolute;
    top: 12px;
    right: 16px;
    background: none;
    border: none;
    font-size: 1.6rem;
    color: #999;
    cursor: pointer;
  }

  .close-floating-form:hover {
    color: #e0b030;
  }

}
