* {
  font-family: "Newsreader", serif;
  font-optical-sizing: auto;
  font-style: normal;
}

body, html {
  margin: 0;
  padding: 0;
  min-height: 100vh;
  overflow-x: hidden;
  color: white;
}

.video-container {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
  overflow: hidden;
}

.video-container video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background: rgba(0, 0, 0, 0.4);
  backdrop-filter: blur(8px);
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 20px;
  height: 120px;
}

.navbar-brand img {
  height: 140px;
  width: auto;
  transition: all 0.3s ease;
  margin-left: -3vw;
}

.nav-link {
  color: white !important;
  font-weight: 500;
}

.nav-link:hover {
  color: #ffd700 !important;
}

@media (min-width: 992px) {
  .navbar .dropdown:hover .dropdown-menu {
    display: block;
    margin-top: 0;
  }
}
@media (max-width: 991px) {
  .navbar {
    background: rgba(0, 30, 80, 0.9) !important;
    backdrop-filter: none !important;
    height: auto;
    padding: 15px 20px;
  }

  .navbar-brand img {
    height: 80px;
    margin-left: 0;
    margin-top: -20px;
  }

  .navbar-collapse {
    background: rgba(0, 30, 80, 0.95); 
    padding: 15px;
  }

  .nav-link {
    color: #ffffff !important;
  }

  .nav-link:hover {
    color: #ffd700 !important;
  }
}

.dropdown-menu .dropdown-item {
  background-color: transparent;
  transition: color 0.3s ease, background-color 0.3s ease;
}

.dropdown-menu .dropdown-item:hover {
  color: #ffd700 !important;
  background-color: rgba(255, 255, 255, 0.1);
}

#loader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgb(6, 11, 59);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 2000;
  transition: opacity 0.5s ease, visibility 0.5s ease;
}

.spinner {
  width: 70px;
  height: 70px;
  border: 6px solid rgba(255, 255, 255, 0.2);
  border-top-color: #237eff;
  border-radius: 50%;
  animation: spin 1s linear infinite;
}

@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}

#loader.hidden {
  opacity: 0;
  visibility: hidden;
}

.content {
  margin-top: 150px;
}

.hero-section {
  display: flex;
  justify-content: space-between;
  align-items: center;
  min-height: 90vh;
  padding: 0 6vw;
  flex-wrap: wrap;
}

.hero-text {
  flex: 1 1 55%;
  text-align: left;
}

.hero-title {
  font-weight: 700;
  background: linear-gradient(90deg, #1f0086, #ffffff, #5566bd);
  background-size: 200% auto;
  color: transparent;
  background-clip: text;
  -webkit-background-clip: text;
  animation: shine 4s linear infinite;
  font-size: 3.5vw;
  line-height: 1.2;
}

@keyframes shine {
  0% { background-position: 0% center; }
  100% { background-position: 200% center; }
}

.hero-sub {
  font-size: 1.3vw;
  color: #ddd;
  max-width: 600px;
  margin-top: 1rem;
}

.hero-buttons {
  flex: 1 1 35%;
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 1rem;
}

.btn-book, .btn-call {
  font-size: 1.2vw;
  padding: 12px 28px;
  border-radius: 30px;
  text-decoration: none;
  transition: all 0.3s ease;
  font-weight: 500;
}

.btn-book {
  background-color: #ffd700;
  color: #000;
}

.btn-book:hover {
  background-color: #fff;
  color: #1f0086;
  transform: translateY(-2px);
}

.btn-call {
  border: 2px solid #ffd700;
  color: #ffd700;
}

.btn-call:hover {
  background-color: #ffd700;
  color: #000;
  transform: translateY(-2px);
}

@media (max-width: 992px) {
  .navbar {
    height: 100px;
  }

  .navbar-brand img {
    height: 100px;
  }

  .hero-section {
    flex-direction: column;
    text-align: center;
  }

  .hero-text, .hero-buttons {
    flex: 1 1 100%;
    justify-content: center;
    text-align: center;
  }

  .hero-title {
    font-size: 6vw;
  }

  .hero-sub {
    font-size: 2.8vw;
  }

  .btn-book, .btn-call {
    font-size: 3vw;
    padding: 10px 24px;
  }
}


.hero-section {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  padding: 80px 10%;
  flex-wrap: wrap;
  color: white;
}

.hero-text {
  flex: 1 1 45%;
  max-width: 600px;
}

.hero-text h1 {
  font-size: 3rem;
  font-weight: 700;
  margin-bottom: 20px;
  line-height: 1.2;
}

.hero-text p {
  font-size: 1.2rem;
  line-height: 1.6;
  margin-bottom: 25px;
}

.hero-buttons {
  display: flex;
  gap: 15px;
  flex-wrap: wrap;
}

.hero-buttons a {
  padding: 12px 28px;
  border-radius: 6px;
  font-weight: 600;
  text-decoration: none;
  transition: 0.3s ease;
}

.hero-buttons .btn-primary {
  background-color: #ffd700;
  color: #000;
}

.hero-buttons .btn-primary:hover {
  background-color: #e5be00;
}

.hero-buttons .btn-outline {
  border: 2px solid #ffd700;
  color: #ffd700;
}

.hero-buttons .btn-outline:hover {
  background-color: #ffd700;
  color: #000;
}

.hero-media {
  flex: 1 1 45%;
  display: flex;
  justify-content: center;
  align-items: center;
}

.hero-media iframe {
  width: 100%;
  max-width: 560px;
  aspect-ratio: 16/9;
  border-radius: 12px;
  border: none;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.6);
}

@media (max-width: 992px) {
  .hero-section {
    flex-direction: column;
    text-align: center;
    padding: 60px 5%;
  }

  .hero-text, .hero-media {
    flex: 1 1 100%;
    max-width: 100%;
  }

  .hero-media iframe {
    max-width: 100%;
  }

  .hero-buttons {
    justify-content: center;
  }
}

.values-section1 {
  text-align: center;
  color: white;
  padding: 100px 20px;
  background: rgba(0, 0, 0, 0.3);
}

.values-subtitle {
  font-size: 1.5rem;
  font-weight: 500;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 20px;
  color: #ffd700;
  position: relative;
}

.values-title {
  font-size: 4vw;
  font-weight: 800;
  letter-spacing: 5px;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}

.square {
  width: 18px;
  height: 18px;
  background-color: #ffd700;
  display: inline-block;
  animation: rotateSquare 3s linear infinite;
  transform-origin: center;
  border-radius: 2px;
}

@keyframes rotateSquare {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

.values-text {
  max-width: 700px;
  margin: 30px auto 0;
  font-size: 1.3vw;
  line-height: 1.6;
  font-weight: 300;
}

@media (max-width: 768px) {
  .values-title {
    font-size: 8vw;
    gap: 12px;
  }
  .square {
    width: 12px;
    height: 12px;
  }
  .values-text {
    font-size: 3.5vw;
    padding: 0 15px;
  }
}

.team-section {
  position: relative;
  background: url('img/bg.jpg') center/cover no-repeat; 
  padding: 100px 0;
  overflow: hidden;
  text-align: center;
}

.team-section::before {
  content: "";
  position: absolute;
  inset: 0;
  backdrop-filter: blur(12px);
  z-index: 0;
}

.team-container {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 50px;
  flex-wrap: wrap;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  color: #ffffff;
}

.team-images {
  position: relative;
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  justify-content: center;
}

.team-member {
  position: relative;
  overflow: hidden;
  border-radius: 10px;
}

.team-member img {
  width: 300px;
  height: 400px;
  object-fit: cover;
  border-radius: 10px;
  transition: transform 0.4s ease;
}

.team-member:hover img {
  transform: scale(1.05);
  filter: brightness(0.7);
}

.team-name {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  text-align: center;
  padding: 15px 0;
  color: #fff;
  background: rgba(0, 0, 0, 0.4);
  font-size: 1.3rem;
  font-weight: 500;
  letter-spacing: 1px;
  opacity: 0;
  transform: translateY(100%);
  transition: all 0.4s ease;
}

.team-member:hover .team-name {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 992px) {
  .team-member img {
    width: 250px;
    height: 330px;
  }
}

.problems-banner {
  background-color: #0b1d53;
  color: white;
  text-align: center;
  padding: 90px 20px;
  margin: 0;
}

.problems-banner h2 {
  font-size: 2.3rem;
  font-weight: 700;
  text-transform: lowercase;
  margin-bottom: 15px;
  letter-spacing: 0.5px;
}

.problems-banner p {
  font-size: 1.1rem;
  font-weight: 400;
  color: #d9e4ff;
  max-width: 700px;
  margin: 0 auto 40px auto;
  line-height: 1.6;
}

.problems-btn {
  background-color: white;
  color: #0b1d53;
  font-weight: 600;
  padding: 12px 30px;
  border-radius: 4px;
  text-decoration: none;
  transition: all 0.3s ease;
}

.problems-btn:hover {
  background-color: #d9e4ff;
  color: #0b1d53;
  transform: translateY(-2px);
}

@media (max-width: 768px) {
  .problems-banner {
    padding: 60px 15px;
  }

  .problems-banner h2 {
    font-size: 1.8rem;
  }

  .problems-banner p {
    font-size: 1rem;
  }
}



.logo-slider {
  overflow: hidden;
  position: relative;
  width: 100%;
  padding: 40px 0;
}

.slide-track {
  display: flex;
  width: calc(250px * 8); 
  animation: scroll 20s linear infinite;
}

.slide-track img {
  width: 200px;
  height: auto;
  margin: 0 30px;
  transition: transform 0.3s ease;
  filter: brightness(0.95);
}

.slide-track img:hover {
  transform: scale(1.05);
  filter: brightness(1.1);
}

@keyframes scroll {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

.tech-hero {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  min-height: 100vh;
  text-align: center;
  background: none;
  padding: 0 20px;
}

.tech-hero h1 {
  font-size: clamp(36px, 6vw, 80px); 
  font-weight: 800;
  text-transform: lowercase;
  color: #222;
  letter-spacing: 2px;
  margin: 0;
}

.tech-hero h1 span {
  color: #d6b25e; 
}
.tech-hero p {
  font-size: clamp(16px, 2.5vw, 22px);
  color: rgba(255, 255, 255, 0.85);
  margin-top: 20px;
  font-weight: 300;
  letter-spacing: 0.5px;
  max-width: 700px;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.footer {
  background-color: #0e1a1f;
  color: #f2f2f2;
  padding: 80px 50px 40px;
  font-family: 'Poppins', sans-serif;
}

.footer-container {
  max-width: 1300px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 50px;
}

.footer-section h3 {
  color: #d4a017;
  font-size: 18px;
  margin-bottom: 15px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.footer-logo {
  width: 140px;
  margin-bottom: 20px;
}

.footer p {
  font-size: 15px;
  line-height: 1.8;
  color: #dcdcdc;
}

.footer ul {
  list-style: none;
  padding: 0;
}

.footer ul li {
  margin-bottom: 10px;
}

.footer ul li a {
  color: #cccccc;
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer ul li a:hover {
  color: #d4a017;
}

.footer-section i {
  color: #d4a017;
  margin-right: 10px;
}

.footer-socials {
  margin-top: 15px;
}

.footer-socials a {
  color: #f2f2f2;
  font-size: 18px;
  margin-right: 15px;
  transition: all 0.3s ease;
}

.footer-socials a:hover {
  color: #d4a017;
  transform: translateY(-3px);
}

.footer-bottom {
  border-top: 1px solid #223238;
  margin-top: 50px;
  text-align: center;
  padding-top: 20px;
  color: #aaa;
  font-size: 14px;
}

.developer-credit {
  margin-top: 20px;
  font-size: 14px;
  color: #bfbfbf;
}

.developer-credit strong {
  color: #d4a017;
}

@media (max-width: 768px) {
  .footer {
    padding: 60px 25px 30px;
  }

  .footer-section {
    text-align: center;
  }

  .footer-socials a {
    margin: 0 8px;
  }
}


#backToTop {
  position: fixed;
  bottom: 30px;
  right: 30px;
  z-index: 1500;
  background-color: rgba(255, 255, 255, 0.1); 
  color: #f0f0f0; 
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 6px;
  padding: 10px 18px;
  font-size: 15px;
  letter-spacing: 0.5px;
  cursor: pointer;
  display: none;
  transition: all 0.3s ease;
  backdrop-filter: blur(6px);
}

#backToTop:hover {
  background-color: rgba(255, 255, 255, 0.25);
  color: #ffffff;
  transform: translateY(-3px);
}

#backToTop:active {
  transform: scale(0.98);
}

.hover-tooltip {
  position: relative;
  cursor: pointer;
}

.hover-tooltip::after {
  content: "Tap to go back home";
  position: absolute;
  bottom: -30px; 
  left: 50%;
  transform: translateX(-50%);
  background-color: rgba(0, 0, 0, 0.75);
  color: #fff;
  padding: 5px 8px;
  border-radius: 5px;
  font-size: 14px;
  white-space: nowrap;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.1s ease, bottom 0.1s ease;
}

.hover-tooltip:hover::after {
  opacity: 1;
  bottom: -40px;
}

.about-pearl {
  display: flex;
  justify-content: left;
  align-items: left;
  text-align: left;
  padding: 80px 20px;
  color: #ffffff; 
  margin-top: 10vw;
}

.about-pearl h1 {
  font-size: clamp(3rem, 8vw, 5rem); 
  margin-bottom: 20px;
  font-weight: 800;
}

.about-pearl h2 {
  font-size: clamp(1.5rem, 4vw, 2.5rem); 
  margin-bottom: 15px;
  font-weight: 600;
}

.about-pearl p {
  font-size: clamp(1.8rem, 3vw, 2rem); 
  font-weight: 400;
  margin: 0;
}

.about-pearl h1{
  font-size: clamp(3rem, 8vw, 5rem);
  margin-bottom: 20px;
  font-weight: 800;
  color: #ffffff;
  overflow: hidden;
  white-space: nowrap;
  border-right: 4px solid #ffffff;
  width: 0;
  animation: typing 4s steps(30, end) infinite, blink 0.7s step-end infinite alternate;
}

@keyframes typing {
  0% { width: 0; }
  40% { width: 100%; }   
  60% { width: 100%; }     
  100% { width: 0; }       
}

@keyframes blink {
  50% { border-color: transparent; }
}

.team-text{
  margin-top: 8vw;
  margin-left: 5vw;
  margin-right: 5vw;
}

.footer {
  background: linear-gradient(to top, rgb(10, 25, 73), rgb(0, 0, 0));
  color: white;
  padding: 50px 0;
  text-align: center;
  position: relative;
  z-index: 1;
}

.footer::before {
  content: "";
  position: absolute;
  top: -40px;
  left: 0;
  width: 100%;
  height: 80px;
  background: linear-gradient(to bottom, rgba(10, 25, 73, 1), rgba(0, 0, 0, 0.8));
  filter: blur(20px);
  z-index: -1;
}

.team-member {
  position: relative;
  display: inline-block;
  text-decoration: none;
  color: inherit;
  transition: transform 0.3s ease;
  overflow: hidden;
}

.team-member img {
  width: 100%;
  border-radius: 10px;
  transition: transform 0.4s ease;
}

.overlay-text {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.6);
  color: #fff;
  font-size: 1.1rem;
  font-weight: 500;
  display: flex;
  justify-content: center;
  align-items: center;
  opacity: 0;
  transition: opacity 0.4s ease;
  border-radius: 10px;
}

.team-member:hover img {
  transform: scale(1.1);
}

.team-member:hover .overlay-text {
  opacity: 1;
}

.team-member:hover {
  transform: translateY(-5px);
}

.team-name {
  text-align: center;
  margin-top: 10px;
  font-weight: 600;
  font-size: 1.2rem;
}


.values-section {
  max-width: 1200px;
  margin: 0 auto;
  padding: 100px 40px;
  display: grid;
  grid-template-columns: 1fr 1px 1fr;
  column-gap: 80px;
   background-color:rgb(0, 10, 42);
}

.values-divider {
  background-color: #e6d8ca;
  width: 1px;
  height: auto;
}

.values-column {
  display: flex;
  flex-direction: column;
  gap: 120px;
}

.value-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start; 
  text-align: left;
}

.value-header {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-bottom: 15px;
}

.value-header img {
  width: 60px;
  height: 60px;
  opacity: 0.95;
}
.value-header img {
  width: 60px;
  height: auto;
  animation: perlFloatEnhanced 4s ease-in-out infinite;
  transition: transform 0.4s ease, filter 0.4s ease;
  display: inline-block;
  will-change: transform;
}

@keyframes perlFloatEnhanced {
  0% {
    transform: translateY(0px) rotate(0deg) scale(1);
  }
  25% {
    transform: translateY(-8px) rotate(-3deg) scale(1.05);
  }
  50% {
    transform: translateY(4px) rotate(3deg) scale(0.97);
  }
  75% {
    transform: translateY(-6px) rotate(-2deg) scale(1.03);
  }
  100% {
    transform: translateY(0px) rotate(0deg) scale(1);
  }
}

.value-header img:hover {
  animation: perlHoverPulse 1.2s ease-in-out infinite;
  filter: drop-shadow(0 6px 10px rgba(217, 164, 105, 0.5));
}

@keyframes perlHoverPulse {
  0%, 100% {
    transform: translateY(-5px) scale(1.1) rotate(0deg);
  }
  50% {
    transform: translateY(2px) scale(0.95) rotate(5deg);
  }
}

.value-title {
  font-size: 2.2rem;
  font-weight: 700;
  color: #ffffff;
  margin: 0;
}

.value-text {
  font-size: 1.25rem;
  line-height: 2;
  color: #ffffff;
  max-width: 95%;
  margin-bottom: 15px;
}

@media (max-width: 900px) {
  .values-section {
    grid-template-columns: 1fr;
  }
  .values-divider {
    display: none;
  }
  .values-column {
    gap: 80px;
  }
  .value-header img {
    width: 45px;
    height: 45px;
  }
  .value-title {
    font-size: 1.8rem;
  }
  .value-text {
    font-size: 1.1rem;
  }
}

.explore-section {
  color: #ffffff;
  text-align: center;
  padding: 100px 20px;
}

.explore-title {
  font-size: 3rem;
  font-weight: 700;
  margin-bottom: 50px;
  letter-spacing: 1px;
}

.explore-buttons {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
  margin-bottom: 60px;
}

.explore-buttons button {
  background: transparent;
  color: #ffffff;
  border: 2px solid #ffd700;
  padding: 12px 25px;
  font-size: 1.1rem;
  border-radius: 30px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.explore-buttons button:hover,
.explore-buttons button.active {
  background-color: #ffd700;
  color: #0b1224;
}

.explore-gallery {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 25px;
  max-width: 1100px;
  margin: 0 auto;
}

.explore-gallery img {
  width: 100%;
  height: 250px;
  object-fit: cover;
  border-radius: 15px;
  transition: transform 0.4s ease, opacity 0.4s ease;
}
.explore-placeholder {
  color: #ffd700;
  font-size: 1.5rem;
  text-align: center;
  grid-column: 1 / -1; 
}

.explore-gallery img:hover {
  transform: scale(1.03);
  opacity: 0.9;
}

@media (max-width: 768px) {
  .explore-title {
    font-size: 2.3rem;
  }
  .explore-buttons button {
    font-size: 1rem;
    padding: 10px 18px;
  }
}


.perl-testimonials-section .p1 {
      font-weight: 700;
      font-size: 4vw;
      text-align: center;
      margin-bottom: 0.5rem;
    }

    .perl-testimonials-subtitle {
      text-align: center;
      margin-bottom: 3rem;
      color: #969696;
      font-size: 1.1rem;
    }

    .perl-testimonial-item {
      border: 1px solid #f0dcbf;
      border-radius: 12px;
      padding: 2rem;
      background-color: #fff;
      max-width: 900px;
      margin: 0 auto;
      text-align: left;
      box-shadow: 0 3px 10px rgba(0, 0, 0, 0.05);
    }

    .perl-quote-icon {
      width: 45px;
      height: 45px;
      margin-bottom: 1rem;
      background: url("../img/quotes.png") no-repeat center center;
      background-size: contain;
    }

    .perl-testimonial-name {
      color: #d9a469;
      font-weight: 600;
      font-size: 1.1rem;
      margin-bottom: 0.3rem;
    }

    .perl-stars {
      color: #d9a469;
      margin-bottom: 1rem;
      font-size: 1rem;
    }

    .perl-testimonial-text {
      color: #333;
      font-size: 1rem;
      line-height: 1.6;
    }

    .carousel-indicators [data-bs-target] {
      background-color: #d9a469;
    }

    .carousel-control-prev-icon,
    .carousel-control-next-icon {
      filter: invert(67%) sepia(47%) saturate(308%) hue-rotate(347deg) brightness(91%) contrast(92%);
    }

    .services-intro {
  text-align: center;
  padding: 160px 20px 100px;
  color: #fff;
  font-family: "Newsreader", serif;
  max-width: 900px;
  margin: 0 auto;
}

.intro-subtitle {
  font-size: 1.2rem;
  font-weight: 500;
  letter-spacing: 2px;
  color: #ffd700;
  text-transform: uppercase;
  margin-bottom: 25px;
}

.intro-headline {
  font-size: 5vw;
  font-weight: 800;
  margin: 20px 0;
  line-height: 1.2;
}

.gradient-text {
  background: linear-gradient(90deg, #e0d36f 0%, #3e69c6 50%, #615656 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  text-shadow: 0 0 20px rgba(255, 255, 255, 0.3);
}

.intro-description {
  font-size: 1.1rem;
  line-height: 1.7;
  max-width: 700px;
  margin: 20px auto;
  color: #bac2da;
}

.intro-tagline {
  font-size: 1.6rem;
  font-weight: 500;
  color: #ffffff;
  margin-top: 30px;
}

@media (max-width: 992px) {
  .services-intro {
    padding: 120px 15px 80px;
  }

  .intro-headline {
    font-size: 7vw;
  }

  .intro-tagline {
    font-size: 1.3rem;
  }
}

@media (max-width: 576px) {
  .services-intro {
    padding: 100px 10px 60px;
  }

  .intro-subtitle {
    font-size: 1rem;
    letter-spacing: 1px;
  }

  .intro-headline {
    font-size: 9vw;
  }

  .intro-description {
    font-size: 1rem;
  }

  .intro-tagline {
    font-size: 1.1rem;
  }
}


.moving-gallery {
  position: relative;
  overflow: hidden;
  width: 100%;
  height: 260px;
  margin: 90px 0;
}

.gallery-track {
  display: flex;
  gap: 0;
  animation: scrollGallery 20s linear infinite;
}

.gallery-track img {
  width: 320px;
  height: 260px;
  object-fit: cover;
  filter: brightness(0.95) contrast(1.1) saturate(1.2);
  transition: transform 0.8s ease, filter 0.8s ease;
  transform-origin: center;
  opacity: 0.85;
}

.gallery-track img:nth-child(odd) {
  animation: pulseSize 4s ease-in-out infinite alternate;
}
.gallery-track img:nth-child(even) {
  animation: pulseSize 4s ease-in-out infinite alternate-reverse;
}

.moving-gallery::before,
.moving-gallery::after {
  content: "";
  position: absolute;
  top: 0;
  width: 200px;
  height: 100%;
  z-index: 2;
  pointer-events: none;
}

.moving-gallery::before {
  left: 0;
  background: linear-gradient(to right, rgba(0, 10, 42, 1), transparent);
}

.moving-gallery::after {
  right: 0;
  background: linear-gradient(to left, rgba(0, 10, 42, 1), transparent);
}

@keyframes scrollGallery {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

@keyframes pulseSize {
  0% {
    transform: scale(1) rotateY(3deg);
    opacity: 0.8;
  }
  50% {
    transform: scale(1.1) rotateY(-3deg);
    opacity: 1;
  }
  100% {
    transform: scale(1) rotateY(3deg);
    opacity: 0.85;
  }
}

@media (max-width: 768px) {
  .moving-gallery {
    height: 180px;
  }

  .gallery-track img {
    width: 200px;
    height: 180px;
  }

  .gallery-track {
    animation: scrollGallery 15s linear infinite;
  }
}


.services-grid {
  text-align: center;
  padding: 100px 20px;
  color: #fff;
}

.services-title {
  font-size: 2.8rem;
  font-weight: 700;
  color: #35007a;
  letter-spacing: 2px;
  margin-bottom: 60px;
  text-shadow: 0 0 12px rgba(255, 215, 0, 0.3);
}

.services-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 40px;
}

.service-card {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 20px;
  width: 230px;
  height: 260px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-decoration: underline; 
  text-decoration-color: #fff6b3;
  text-underline-offset: 5px;
  color: white;
  backdrop-filter: blur(10px);
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.2);
  transition: all 0.4s ease;
}

.service-card img {
  width: 80px;
  height: 80px;
  object-fit: contain;
  margin-bottom: 25px;
  filter: drop-shadow(0 0 10px rgba(255, 255, 255, 0.3));
  transition: transform 0.5s ease;
}

.service-card h3 {
  font-size: 1.2rem;
  font-weight: 600;
  color: #f7faff;
  text-shadow: 0 0 8px rgba(255, 255, 255, 0.3);
}

.service-card:hover {
  transform: translateY(-10px) scale(1.05);
  box-shadow: 0 0 25px rgba(255, 215, 0, 0.3);
  border-color: rgba(255, 215, 0, 0.4);
}

.service-card:hover img {
  transform: rotate(-3deg) scale(1.08);
}

@media (max-width: 768px) {
  .services-container {
    gap: 25px;
  }

  .service-card {
    width: 170px;
    height: 210px;
  }

  .service-card img {
    width: 60px;
    height: 60px;
  }

  .services-title {
    font-size: 2rem;
    margin-bottom: 40px;
  }
}

.teeth-whitening-section {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  gap: 80px;
  padding: 100px 10%;
  position: relative;
  color: white;
}

.vertical-gallery {
  position: relative;
  height: 500px;
  width: 300px;
  overflow: hidden;
  border-radius: 20px;
  mask-image: linear-gradient(to bottom, transparent 0%, black 20%, black 80%, transparent 100%);
}

.vertical-track {
  display: flex;
  flex-direction: column;
  animation: scrollVertical 18s linear infinite;
}

.vertical-track img {
  width: 100%;
  height: 250px;
  object-fit: cover;
  filter: brightness(0.9) blur(0.5px);
  transition: transform 0.4s ease, filter 0.4s ease;
}

.vertical-track img:nth-child(even) {
  transform: scale(1.02) rotate(1deg);
}

@keyframes scrollVertical {
  from { transform: translateY(0); }
  to { transform: translateY(-50%); }
}

.whitening-info {
  flex: 1;
  max-width: 600px;
}

.whitening-info h2 {
  font-size: 2.5rem;
  color: #ffe97f;
  margin-bottom: 20px;
}

.whitening-desc {
  font-size: 1.2rem;
  margin-bottom: 40px;
  color: #f2f5ff;
  line-height: 1.6;
}

.faq-item {
  margin-bottom: 15px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

.faq-question {
  width: 100%;
  background: none;
  border: none;
  color: #fff;
  text-align: left;
  font-size: 1.1rem;
  padding: 12px 0;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.faq-question span {
  font-size: 1.5rem;
  transition: transform 0.3s ease;
}

.faq-answer {
  display: none;
  font-size: 1rem;
  color: #dfe7ff;
  padding-bottom: 10px;
  line-height: 1.5;
}

.faq-item.active .faq-answer {
  display: block;
}

.faq-item.active .faq-question span {
  transform: rotate(45deg);
}

@media (max-width: 900px) {
  .teeth-whitening-section {
    flex-direction: column;
    align-items: center;
  }
  .vertical-gallery {
    width: 90%;
    height: 400px;
  }
}


.dental-implants-section {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  gap: 80px;
  padding: 100px 10%;
  position: relative;
  color: white;
}

.implants-info {
  flex: 1;
  max-width: 600px;
}

.implants-info h2 {
  font-size: 2.5rem;
  color: #ffe97f;
  margin-bottom: 20px;
}

.implants-desc {
  font-size: 1.2rem;
  margin-bottom: 40px;
  color: #f2f5ff;
  line-height: 1.6;
}

.implants-gallery {
  position: relative;
  height: 500px;
  width: 300px;
  overflow: hidden;
  border-radius: 20px;
  mask-image: linear-gradient(to bottom, transparent 0%, black 20%, black 80%, transparent 100%);
}

.implants-gallery .vertical-track {
  display: flex;
  flex-direction: column;
  animation: scrollVerticalReverse 18s linear infinite;
}

.implants-gallery img {
  width: 100%;
  height: 250px;
  object-fit: cover;
  filter: brightness(0.9) blur(0.5px);
  transition: transform 0.4s ease, filter 0.4s ease;
}

.implants-gallery img:nth-child(even) {
  transform: scale(1.02) rotate(-1deg);
}

@keyframes scrollVerticalReverse {
  from { transform: translateY(-50%); }
  to { transform: translateY(0); }
}

@media (max-width: 900px) {
  .dental-implants-section {
    flex-direction: column-reverse;
    align-items: center;
  }
  .implants-gallery {
    width: 90%;
    height: 400px;
  }
}

html {
  scroll-behavior: smooth;
}

.teeth-cleaning-section {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  gap: 80px;
  padding: 100px 10%;
  position: relative;
  color: white;
}

.cleaning-gallery {
  position: relative;
  height: 500px;
  width: 300px;
  overflow: hidden;
  border-radius: 20px;
  mask-image: linear-gradient(to bottom, transparent 0%, black 20%, black 80%, transparent 100%);
}

.cleaning-gallery .vertical-track {
  display: flex;
  flex-direction: column;
  animation: scrollVertical 18s linear infinite;
}

.cleaning-gallery img {
  width: 100%;
  height: 250px;
  object-fit: cover;
  filter: brightness(0.9) blur(0.5px);
  transition: transform 0.4s ease, filter 0.4s ease;
}

.cleaning-gallery img:nth-child(odd) {
  transform: scale(1.02) rotate(1deg);
}

@keyframes scrollVertical {
  from { transform: translateY(0); }
  to { transform: translateY(-50%); }
}

.cleaning-info {
  flex: 1;
  max-width: 600px;
}

.cleaning-info h2 {
  font-size: 2.5rem;
  color: #ffe97f;
  margin-bottom: 20px;
}

.cleaning-desc {
  font-size: 1.2rem;
  margin-bottom: 40px;
  color: #f2f5ff;
  line-height: 1.6;
}

@media (max-width: 900px) {
  .teeth-cleaning-section {
    flex-direction: column;
    align-items: center;
  }
  .cleaning-gallery {
    width: 90%;
    height: 400px;
  }
}

.orthodontics-section {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  gap: 80px;
  padding: 100px 10%;
  position: relative;
  color: white;
}

.orthodontics-info {
  flex: 1;
  max-width: 600px;
}

.orthodontics-info h2 {
  font-size: 2.5rem;
  color: #ffe97f;
  margin-bottom: 20px;
}

.orthodontics-desc {
  font-size: 1.2rem;
  margin-bottom: 40px;
  color: #f2f5ff;
  line-height: 1.6;
}

.orthodontics-gallery {
  position: relative;
  height: 500px;
  width: 300px;
  overflow: hidden;
  border-radius: 20px;
  mask-image: linear-gradient(to bottom, transparent 0%, black 20%, black 80%, transparent 100%);
}

.orthodontics-gallery .vertical-track {
  display: flex;
  flex-direction: column;
  animation: scrollVerticalReverse 18s linear infinite;
}

.orthodontics-gallery img {
  width: 100%;
  height: 250px;
  object-fit: cover;
  filter: brightness(0.9) blur(0.5px);
  transition: transform 0.4s ease, filter 0.4s ease;
}

.orthodontics-gallery img:nth-child(even) {
  transform: scale(1.02) rotate(-1deg);
}

@media (max-width: 900px) {
  .orthodontics-section {
    flex-direction: column-reverse;
    align-items: center;
  }
  .orthodontics-gallery {
    width: 90%;
    height: 400px;
  }
}


.why-treat-section {
background: linear-gradient(
  180deg,
  rgba(0, 40, 80, 0) 0%,     
  rgba(0, 40, 80, 0.4) 25%,    
  rgba(0, 40, 80, 0) 0%,      
);
  padding: 80px 0;
  color: #fff;
  font-family: 'Newsreader', serif;
}

.why-treat-section .section-title {
  text-align: center;
  font-weight: 700;
  font-size: 2.3rem;
  margin-bottom: 50px;
  color: #cfe6ff;
}

.why-card {
  background-color: rgba(255, 255, 255, 0.05);
  border-radius: 20px;
  padding: 30px;
  text-align: center;
  height: 100%;
  transition: all 0.3s ease;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
}

.why-card.light-bg {
  background-color: rgba(255, 255, 255, 0.1);
}

.why-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 8px 16px rgba(0, 150, 255, 0.3);
}

.why-card h5 {
  font-weight: 700;
  font-size: 1.2rem;
  margin-top: 20px;
  margin-bottom: 10px;
  color: #0f0067;
}

.why-card p {
  font-size: 0.95rem;
  color: #184272;
  line-height: 1.6;
}

.why-icon {
  width: 60px;
  height: 60px;
  object-fit: contain;
}

@media (max-width: 992px) {
  .why-treat-section {
    padding: 60px 20px;
  }
}

@media (max-width: 768px) {
  .why-card {
    padding: 25px;
  }

  .why-treat-section .section-title {
    font-size: 1.9rem;
  }

  .why-icon {
    width: 50px;
    height: 50px;
  }
}

@media (max-width: 576px) {
  .why-card h5 {
    font-size: 1.1rem;
  }

  .why-card p {
    font-size: 0.9rem;
  }
}


.problems-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 10px;
  margin: 40px auto;
  width: 100%;
  max-width: 1400px;
  padding: 0 20px;
}

  .problem-box {
    position: relative;
    height: 280px;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    overflow: hidden;
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
  }

  .problem-box::before {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.35);
    transition: background 0.3s ease;
  }

  .problem-box:hover::before {
    background: rgba(0, 0, 0, 0.55);
  }

  .problem-box h3 {
    position: relative;
    z-index: 2;
    color: white;
    font-size: 1.8rem;
    font-weight: 300;
    text-transform: lowercase;
  }

.problem-box {
  transition: transform 0.5s ease;
}

.problem-box:hover {
  transform: scale(1.03);
}
@media (max-width: 600px) {
  .problem-box {
    height: 200px;
  }

  .problem-box h3 {
    font-size: 1.4rem;
  }
}

.problems-title {
  text-align: center;
  margin: 15vw 0 40px;

}
@media (max-width: 600px) {
  .problems-title {
    margin-top: 15vw !important;
  }
}

.problems-title h1 {
  font-size: 4.5rem;        
  line-height: 1.1;
  margin: 0;
}

.problems-title .bold {
  font-weight: 700;
  display: block;
}

.problems-title .light {
  font-weight: 300;
  display: inline-block;
}

.cursor {
  display: inline-block;
  width: 3px;
  height: 45px;           
  background-color: #3ac6ff; 
  margin-left: 6px;
  animation: blink 0.8s infinite;
  transform: translateY(10px);
}

@keyframes blink {
  0%, 50% { opacity: 1; }
  50.01%, 100% { opacity: 0; }
}

@media (max-width: 600px) {
  .problems-title h1 {
    font-size: 3rem;
    margin-top: 10vw;
  }
  .cursor {
    height: 32px;
  }
}


.faq-title {
  text-align: center;
  font-size: 32px;
  color: #003366;
  margin-bottom: 40px;
  font-size: 3.5vw;
  font-weight: 900;
}

.faq-container {
  max-width: 800px;
  margin: auto;
  padding: 0 20px;
}

.faq-item {
  background: #ffffff;
  border: 1px solid #cfe2ff;
  border-radius: 12px;
  margin-bottom: 15px;
  overflow: hidden;
  transition: background 0.3s ease;
}

.faq-item:hover {
  background: #e6f0ff; 
}

.faq-question {
  width: 100%;
  background: none;
  border: none;
  padding: 18px 20px;
  text-align: left;
  font-size: 20px;
  color: #003366;
  font-weight: bold;
  display: flex;
  justify-content: space-between;
  cursor: pointer;
}

.arrow {
  transition: transform 0.3s ease;
}

.faq-item.active .arrow {
  transform: rotate(180deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  background: #f7faff;
  color: #003366;
  padding: 0 20px;
  line-height: 1.6;
  transition: max-height 0.5s ease, padding 0.3s ease;
}

.faq-item.active .faq-answer {
  max-height: 300px;
  padding: 15px 20px 20px 20px;
}

@media (max-width: 600px) {
  .faq-question {
    font-size: 18px;
  }
  .faq-title {
    font-size: 26px;
  }
}

.toothache-section {
  padding: 80px 20px;
 background: linear-gradient(to bottom, rgba(245,241,234,0) 0%, #f5f1ea 100%);}

.toothache-container {
  max-width: 1200px;
  margin: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  position: relative;
}

.toothache-container::before {
  content: "";
  position: absolute;
  width: 450px;
  height: 450px;
  background: #dcdfef; 
  border-radius: 50%;
  top: 50%;
  left: 25%;
  transform: translate(-50%, -50%);
  z-index: 0;
}

.toothache-image img {
  width: 100%;
  max-width: 420px;
  border-radius: 12px;
  position: relative;
  z-index: 2;
}

.toothache-text {
  max-width: 500px;
  position: relative;
  z-index: 2;
}

.toothache-title {
  font-size: 2.8rem;
  font-weight: 700;
  color: #084c4c;
  line-height: 1.2;
  margin-bottom: 20px;
}

.toothache-title span {
  border-bottom: 8px solid #fddf7d; 

}

.toothache-text p {
  font-size: 1.1rem;
  color: #344;
  line-height: 1.6;
  margin-bottom: 14px;
}

@media (max-width: 900px) {
  .toothache-container {
    flex-direction: column;
    text-align: center;
  }

  .toothache-container::before {
    width: 300px;
    height: 300px;
    left: 50%;
  }

  .toothache-title {
    font-size: 2.2rem;
  }
}

.gum-section {
  padding: 80px 20px;
  background-color: #f5f1ea;
}

.gum-container {
  max-width: 1200px;
  margin: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  position: relative;
}

.gum-container::before {
  content: "";
  position: absolute;
  width: 450px;
  height: 450px;
  background: #efdfdc; 
  border-radius: 50%;
  top: 50%;
  right: 25%;         
  transform: translate(50%, -50%);
  z-index: 0;
}

.gum-text {
  max-width: 500px;
  position: relative;
  z-index: 2;
}

.gum-title {
  font-size: 2.8rem;
  font-weight: 700;
  color: #084c4c;
  line-height: 1.2;
  margin-bottom: 20px;
}

.gum-title span {
  border-bottom: 8px solid #fddf7d;
}

.gum-text p {
  font-size: 1.1rem;
  color: #344;
  line-height: 1.6;
  margin-bottom: 14px;
}

.gum-image img {
  width: 100%;
  max-width: 420px;
  border-radius: 12px;
  position: relative;
  z-index: 2;
}

@media (max-width: 900px) {
  .gum-container {
    flex-direction: column-reverse;
    text-align: center;
  }

  .gum-container::before {
    width: 300px;
    height: 300px;
    right: 50%;
    transform: translate(50%, -50%);
  }

  .gum-title {
    font-size: 2.2rem;
  }
}

.sensitivity-section {
  padding: 80px 20px;
  background-color: #f5f1ea;
}

.sensitivity-container {
  max-width: 1200px;
  margin: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  position: relative;
}

.sensitivity-container::before {
  content: "";
  position: absolute;
  width: 450px;
  height: 450px;
  background: #dcefee;
  border-radius: 50%;
  top: 50%;
  left: 25%;                
  transform: translate(-50%, -50%);
  z-index: 0;
}

.sensitivity-image img {
  width: 100%;
  max-width: 420px;
  border-radius: 12px;
  position: relative;
  z-index: 2;
}

.sensitivity-text {
  max-width: 500px;
  position: relative;
  z-index: 2;
}

.sensitivity-title {
  font-size: 2.8rem;
  font-weight: 700;
  color: #084c4c;
  line-height: 1.2;
  margin-bottom: 20px;
}

.sensitivity-title span {
  border-bottom: 8px solid #fddf7d;
}

.sensitivity-text p {
  font-size: 1.1rem;
  color: #344;
  line-height: 1.6;
  margin-bottom: 14px;
}

@media (max-width: 900px) {
  .sensitivity-container {
    flex-direction: column;
    text-align: center;
  }

  .sensitivity-container::before {
    width: 300px;
    height: 300px;
    left: 50%;
    transform: translate(-50%, -50%);
  }

  .sensitivity-title {
    font-size: 2.2rem;
  }
}

.broken-section {
  padding: 80px 20px;
  background-color: #f5f1ea;
}

.broken-container {
  max-width: 1200px;
  margin: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  position: relative;
}

.broken-container::before {
  content: "";
  position: absolute;
  width: 450px;
  height: 450px;
  background: #cbd0d0;
  border-radius: 50%;
  top: 50%;
  right: 25%;        
  transform: translate(50%, -50%);
  z-index: 0;
}

.broken-text {
  max-width: 500px;
  position: relative;
  z-index: 2;
}

.broken-title {
  font-size: 2.8rem;
  font-weight: 700;
  color: #084c4c;
  line-height: 1.2;
  margin-bottom: 20px;
}

.broken-title span {
  border-bottom: 8px solid #fddf7d;
}

.broken-text p {
  font-size: 1.1rem;
  color: #344;
  line-height: 1.6;
  margin-bottom: 14px;
}

.broken-image img {
  width: 100%;
  max-width: 420px;
  border-radius: 12px;
  position: relative;
  z-index: 2;
}

@media (max-width: 900px) {
  .broken-container {
    flex-direction: column-reverse; 
    text-align: center;
  }

  .broken-container::before {
    width: 300px;
    height: 300px;
    right: 50%;
    transform: translate(50%, -50%);
  }

  .broken-title {
    font-size: 2.2rem;
  }
}

.contact-section {
  position: relative;
  width: 100%;
  overflow: hidden;
}

.contact-img {
  width: 100%;
  height: auto;
  display: block;
}

.contact-content {
  position: absolute;
  top: 50%;
  left: 5%;
  transform: translateY(-50%);
  color: white;
}

.contact-content h1 {
  font-size: 4rem;
  font-weight: 800;
  margin: 0;
}

.line {
  width: 140px;
  height: 3px;
  background-color: white;
  margin: 25px 0 40px 0;
  opacity: 0.8;
}

.contact-content p {
  font-size: 1.6rem;
  margin: 0;
}

.phone {
  color: white;
  text-decoration: underline;
  transition: 0.3s;
}

.phone:hover {
  opacity: 0.7;
}

@media (max-width: 768px) {
  .contact-content {
    top: 80%; 
    transform: translateY(-50%);
    left: 5%;
  }

  .contact-content h1 {
    font-size: 2.2rem;
    line-height: 1.2;
  }

  .contact-content p {
    font-size: 1.1rem;
  }

  .line {
    width: 90px;
    margin: 15px 0 25px 0;
  }
}

.form-section {
  padding: 60px 20px;
  background: linear-gradient(180deg, #020c1e, #0a1a37);
  color: #fff;
  text-align: center;
}

.form-title {
  font-size: 2.4rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: #d4af37;
  margin-bottom: 10px;
}

.form-sub {
  color: #c9c9c9;
  margin-bottom: 40px;
  font-size: 1.1rem;
}

.contact-form {
  max-width: 650px;
  margin: auto;
  display: grid;
  gap: 25px;
}

.form-group {
  text-align: left;
}

.form-group label {
  display: block;
  margin-bottom: 8px;
  font-weight: 600;
  font-size: 1rem;
}

input, textarea {
  width: 100%;
  padding: 14px;
  border-radius: 10px;
  border: 1px solid #3e4a63;
  background: rgba(255, 255, 255, 0.05);
  color: #fff;
  font-size: 1rem;
  transition: 0.3s;
}

input:focus, textarea:focus {
  border-color: #d4af37;
  box-shadow: 0 0 8px rgba(212, 175, 55, 0.6);
  outline: none;
}

input[type="radio"] {
  appearance: none;
  -webkit-appearance: none;
  margin: 0;
  width: 20px;
  height: 20px;
  border: 2px solid #d4af37;
  border-radius: 50%;
  background: transparent;
  display: grid;
  place-content: center;
  cursor: pointer;
  transition: 0.25s;
}

input[type="radio"]::before {
  content: "";
  width: 12px;
  height: 12px;
  border-radius: 50%;
  transform: scale(0);
  transition: 0.25s;
  background-color: #d4af37; 
}

input[type="radio"]:checked::before {
  transform: scale(1);
}

.radio-group {
  display: flex;
  gap: 30px;
  margin-top: 8px;
}

.radio-item {
  display: flex;
  align-items: center;
  gap: 10px;
}

.radio-group label {
  font-weight: 400;
}

.send-btn {
  margin-top: 10px;
  padding: 15px 20px;
  width: 100%;
  border: none;
  border-radius: 12px;
  font-size: 1.2rem;
  font-weight: 700;
  cursor: pointer;
  background: #d4af37;
  color: #000;
  transition: 0.3s;
}

.send-btn:hover {
  background: #f4d67c;
  transform: translateY(-2px);
}

@media (max-width: 600px) {
  .radio-group {
    flex-direction: column;
    gap: 10px;
  }
}


.office-section{
  padding: 48px 18px;
  background: linear-gradient(180deg, #0a1a37 0%, #1a3363 100%); 
  font-family: Inter, system-ui, -apple-system, "Helvetica Neue", Arial;
  color: #0a1a37;
}

.office-inner{
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
  align-items: stretch;
}

.office-info{
  background: linear-gradient(180deg, #ffffff 0%, #f6f9fb 100%);
  border-radius: 14px;
  padding: 28px;
  box-shadow: 0 8px 30px rgba(10,26,55,0.06);
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.office-title{
  font-size: 1.6rem;
  margin: 0 0 6px;
  color: #0a1a37;
  letter-spacing: 0.4px;
  font-weight: 800;
}

.office-sub{
  color: #556680;
  margin-bottom: 18px;
  font-size: 0.98rem;
}

.info-list{
  list-style: none;
  padding: 0;
  margin: 6px 0 18px;
  display: grid;
  gap: 14px;
}

.info-list li{
  display: flex;
  gap: 12px;
  align-items: center;
}

.icon{
  width: 44px;
  height: 44px;
  min-width: 44px;
  border-radius: 10px;
  background: linear-gradient(180deg, rgba(10,26,55,0.95), rgba(10,26,55,0.9));
  display: grid;
  place-items: center;
  box-shadow: 0 6px 18px rgba(10,26,55,0.06);
}

.small-title{
  font-weight: 700;
  font-size: 0.9rem;
  color: #0a1a37;
}

.info-link{
  color: #0a1a37;
  font-weight: 700;
  text-decoration: none;
  display: inline-block;
  margin-top: 4px;
}

.info-text{
  color: #435c75;
  margin-top: 4px;
  font-size: 0.95rem;
}

.btn-directions{
  margin-top: 18px;
  display: inline-block;
  text-decoration: none;
  padding: 12px 18px;
  border-radius: 10px;
  background: linear-gradient(90deg, #e6c867 0%, #d4af37 100%);
  color: #061028;
  font-weight: 800;
  box-shadow: 0 8px 24px rgba(212,175,55,0.12);
}

.office-map{
  display: grid;
  gap: 12px;
  align-content: start;
}

.map-wrap{
  border-radius: 14px;
  overflow: hidden;
  height: 100%;
  min-height: 280px;
  box-shadow: 0 12px 34px rgba(10,26,55,0.08);
}

.map-wrap iframe{
  width: 100%;
  height: 100%;
  min-height: 280px;
  border: 0;
}

.map-snapshot{
  display: flex;
  gap: 12px;
  align-items: center;
  background: #fff;
  border-radius: 10px;
  padding: 10px;
  box-shadow: 0 6px 20px rgba(10,26,55,0.04);
}

.map-snapshot img{
  width: 84px;
  height: 60px;
  object-fit: cover;
  border-radius: 6px;
  border: 1px solid rgba(10,26,55,0.04);
}

.snapshot-label{
  color: #5b6f85;
  font-size: 0.85rem;
}

@media (max-width: 900px){
  .office-inner{
    grid-template-columns: 1fr;
  }

  .map-wrap iframe{
    min-height: 360px;
  }
}

@media (max-width: 480px){
  .office-section{
    padding: 24px 14px;
  }

  .office-info{
    padding: 18px;
  }

  .icon{
    width: 40px;
    height: 40px;
    min-width: 40px;
  }

  .office-title{
    font-size: 1.25rem;
  }

  .map-wrap iframe{
    min-height: 300px;
  }
}

.device.phone {
  width: 200px;
  height: 350px;
  background: #222;
  border-radius: 35px;
  position: relative;
  display: flex;
  justify-content: center;
  padding-top: 20px;
  box-shadow: 0 8px 20px rgba(0,0,0,0.3);
}

.device.phone .top-notch {
  width: 60px;
  height: 10px;
  background: #111;
  border-radius: 5px;
  position: absolute;
  top: 5px;
}

.device-showcase {
  display: flex;
  justify-content: center;
  align-items: flex-end;
  gap: 40px;
  flex-wrap: nowrap;
  padding: 50px 20px;
  background: #f5f5f5;
}

.device.phone .screen {
  width: 90%;
  height: 90%; 
  background: #fff;
  border-radius: 25px; 
  overflow: hidden;
  display: flex;
  justify-content: center;
  align-items: center;
}

.device.phone .screen img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.device.tablet {
  width: 350px;
  height: 350px;
  background: #222;
  border-radius: 15px;
  display: flex;
  justify-content: center;
  padding: 15px;
}

.device.tablet .screen {
  width: 100%;
  height: 100%;
  background: #fff;
  border-radius: 10px;
  overflow: hidden;
  display: flex;
  justify-content: center;
  align-items: center;
}

.device.tablet .screen img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.device.laptop {
  width: 450px;
  height: 400px;
  background: #222;
  border-radius: 10px 10px 0 0;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
  padding: 10px;
  box-shadow: 0 8px 20px rgba(0,0,0,0.3);
}

.device.laptop .screen {
  width: 100%;
  height: 85%;
  background: #fff;
  border-radius: 5px 5px 0 0;
  overflow: hidden;
  display: flex;
  justify-content: center;
  align-items: center;
}

.device.laptop .screen img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.device.laptop .keyboard {
  width: 95%;
  height: 40px;
  background: #333;
  border-radius: 0 0 10px 10px;
  margin-top: 5px;
  display: flex;
  justify-content: center;
  align-items: center;
  box-shadow: inset 0 2px 4px rgba(0,0,0,0.3);
}

@media (max-width: 950px) {
  .device-showcase {
    flex-direction: column;
    align-items: center;
    gap: 40px;
  }

  .device.laptop {
    width: 400px;
  }
}

.fancy-title {
  text-align: center;
  font-size: 48px;
  font-weight: 900;
  background: linear-gradient(90deg, #b0acee, #09003e, #430891);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-bottom: 30px;
}

.fancy-title .subtitle {
  display: block;
  font-size: 20px;
  font-weight: 600;
  margin-top: 10px;
  color: #003366;
}

.fancy-title .subtitle a {
  color: #E1306C;
  text-decoration: none;
  transition: color 0.3s;
}

.fancy-title .subtitle a:hover {
  color: #C13584;
}

.device-showcase .device {
  position: relative;
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.device-showcase .device:hover {
  transform: scale(1.05);
  cursor: pointer;
}

.device .hover-text {
  position: absolute;
  bottom: 10px;
  width: 90%;
  left: 50%;
  transform: translateX(-50%);
  text-align: center;
  color: #fff;
  font-weight: bold;
  background: rgba(0,0,0,0.6);
  padding: 6px 0;
  border-radius: 5px;
  opacity: 0;
  transition: opacity 0.3s ease;
  font-size: 14px;
}

.device .screen:hover .hover-text {
  opacity: 1;
}


.device-showcase {
  display: flex;
  justify-content: center;
  align-items: flex-end;
  gap: 40px;
  flex-wrap: nowrap;
  padding: 50px 20px;
  background: #f5f5f5;
}

@media (max-width: 950px) {
  .device-showcase {
    flex-direction: column;
    align-items: center;
    gap: 40px;
    flex-wrap: wrap;
  }
}


.offer-button {
  position: fixed;
  left: 20px;
  bottom: 50px;
  background: linear-gradient(90deg, #ffcc00, #ff6600, #ff3300);
  color: #fff;
  font-weight: 700;
  font-size: 14px;
  padding: 10px 16px;
  border-radius: 10px;
  text-decoration: none;
  box-shadow: 0 3px 10px rgba(255, 102, 0, 0.4);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  z-index: 9999;
  display: flex;
  flex-direction: column; 
  align-items: center;
  justify-content: center;

  animation: vibrate 1.2s infinite;
}

.offer-button:hover {
  transform: scale(1.08);
  box-shadow: 0 5px 20px rgba(255, 102, 0, 0.6);
}

@keyframes vibrate {
  0% { transform: translate(0, 0) scale(1); }
  10% { transform: translate(-2px, 0) scale(1); }
  20% { transform: translate(2px, 0) scale(1); }
  30% { transform: translate(-2px, 0) scale(1); }
  40% { transform: translate(2px, 0) scale(1); }
  50% { transform: translate(-1px, 0) scale(1); }
  60% { transform: translate(1px, 0) scale(1); }
  70% { transform: translate(-1px, 0) scale(1); }
  80% { transform: translate(1px, 0) scale(1); }
  90% { transform: translate(0, 0) scale(1); }
  100% { transform: translate(0, 0) scale(1); }
}

.offer-button span {
  font-size: 16px;
  line-height: 1;
}


.big-offer {
  padding: 120px 0;
}

.offer-content {
  max-width: 1250px;
  margin: auto;
  display: flex;
  align-items: center;
  gap: 60px;
  padding: 30px 20px;
}

.offer-content.reverse {
  flex-direction: row-reverse;
}

.offer-img {
  width: 50%;
  border-radius: 16px;
  object-fit: cover;
  box-shadow: 0 10px 35px rgba(0,0,0,0.25);
}

.offer-text {
  width: 50%;
  color: white;
}

.offer-subtitle {
  font-size: 0.95rem;
  font-weight: 700;
  letter-spacing: 1px;
  margin-bottom: 15px;
  opacity: 0.8;
}

.offer-title {
  font-size: 2.4rem;
  font-weight: 700;
  margin-bottom: 20px;
}

.offer-desc {
  font-size: 1.15rem;
  line-height: 1.6;
  max-width: 480px;
  margin-bottom: 30px;
}

.offer-buttons {
  display: flex;
  gap: 15px;
}

.btn-offer-main {
  background: #fff;
  color: #000;
  padding: 13px 28px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 600;
  transition: 0.3s;
}

.btn-offer-main:hover {
  opacity: 0.75;
}

.btn-offer-outline {
  background: transparent;
  border: 2px solid white;
  color: white;
  padding: 13px 28px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 600;
  transition: 0.3s;
}

.btn-offer-outline:hover {
  background: white;
  color: black;
}

@media (max-width: 900px) {
  .offer-content,
  .offer-content.reverse {
    flex-direction: column;
    text-align: center;
  }

  .offer-img,
  .offer-text {
    width: 100%;
  }

  .offer-buttons {
    justify-content: center;
    flex-wrap: wrap;
  }
}

.offer-price {
  font-size: 1.4rem;
  margin: 20px 0 25px;
  font-weight: 600;
}

.old-price {
  text-decoration: line-through;
  color: #ffdfdf;
  margin-right: 10px;
  opacity: 0.6;
}

.new-price {
  color: #ffffff;
  font-size: 1.6rem;
  margin-right: 15px;
}

.sale-tag {
  background: #ff3939;
  padding: 4px 10px;
  border-radius: 6px;
  font-size: 0.9rem;
  font-weight: 700;
  color: white;
}

.offer-contact-link {
  color: #ffeaa7;
  font-weight: 600;
  text-decoration: none;
  font-size: 1.1rem;
  transition: 0.3s;
}

.offer-contact-link:hover {
  opacity: 0.7;
}
