@charset "UTF-8";
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Poppins", "Montserrat", sans-serif;
}

body {
  line-height: 1.6;
  color: #ffffff;
  overflow-x: hidden;
  background-color: #0f1528;
}

.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

section {
  padding: 4rem 0;
}

.section-heading {
  text-align: center;
  margin-bottom: 10rem;
}
.section-heading h2 {
  font-size: 2.5rem;
  color: #4facfe;
  margin-bottom: 1rem;
  position: relative;
  display: inline-block;
  padding-bottom: 15px;
}
.section-heading h2::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 3px;
  background-color: #f39c12;
}
.section-heading p {
  color: #94a3b8;
  max-width: 700px;
  margin: 0 auto;
  font-size: 1.1rem;
}

.btn {
  display: inline-block;
  background-color: #f39c12;
  color: white;
  padding: 1rem 2.5rem;
  border-radius: 20px;
  text-decoration: none;
  font-weight: 600;
  font-size: 1.1rem;
  transition: all 0.3s;
  border: none;
  cursor: pointer;
  box-shadow: 0 4px 15px rgba(243, 156, 18, 0.3);
}
.btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(243, 156, 18, 0.4);
  background-color: rgb(226.659946988, 143.4556626506, 11.476453012);
}

h1 {
  font-size: 3.5rem;
  font-weight: 800;
  line-height: 1.2;
  color: #ffffff;
  letter-spacing: -0.02em;
  text-shadow: 0 0 30px rgba(255, 255, 255, 0.1);
}
@media (max-width: 992px) {
  h1 {
    font-size: 2.5rem;
  }
}
@media (max-width: 768px) {
  h1 {
    font-size: 2rem;
  }
}

h2 {
  font-size: 2rem;
  font-weight: 700;
  line-height: 1.2;
  color: #ffffff;
  letter-spacing: -0.01em;
  position: relative;
  display: inline-block;
  padding-bottom: 1.5rem;
}
h2::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 4px;
  background: linear-gradient(90deg, #4facfe 0%, #a855f7 100%);
  border-radius: 2px;
  box-shadow: 0 0 20px rgba(79, 172, 254, 0.3);
}
@media (max-width: 992px) {
  h2 {
    font-size: 1.4rem;
  }
}
@media (max-width: 768px) {
  h2 {
    font-size: 1.2rem;
  }
}

h3 {
  font-size: 1.2rem;
  font-weight: 600;
  line-height: 1.2;
  color: #ffffff;
}
@media (max-width: 768px) {
  h3 {
    font-size: 1.1rem;
  }
}

h4,
h5,
h6 {
  color: #ffffff;
  font-weight: 600;
}

p {
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.6;
}

a {
  color: #4facfe;
  text-decoration: none;
  transition: color 0.3s ease;
  cursor: pointer;
}
a:hover {
  color: #00f2fe;
}

button,
.btn,
[type=button],
[type=submit],
[role=button],
.clickable {
  cursor: pointer;
}

.text-gradient {
  background: linear-gradient(120deg, #4facfe 0%, #00f2fe 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.glass-card {
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 24px;
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.5);
  transition: all 0.3s ease;
}
.glass-card:hover {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.2);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.6);
}

header {
  background: linear-gradient(90deg, #0d1220 0%, #1a253a 100%);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  color: #ffffff;
  padding: 0.5rem 0;
  position: fixed;
  width: 100%;
  z-index: 1000;
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.5);
  overflow: hidden;
  backdrop-filter: blur(10px);
}
header .header-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 2%;
  max-width: 100%;
  height: 60px;
}
@media (max-width: 768px) {
  header .header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 2%;
    height: 55px;
  }
}
header .logo {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  height: 100%;
  overflow: visible;
}
header .logo-img {
  height: 250px;
  width: auto;
  object-fit: contain;
  object-position: center center;
  filter: drop-shadow(0 4px 12px rgba(0, 0, 0, 0.4));
  transform: translateY(2px);
}
@media (max-width: 768px) {
  header .logo-img {
    height: 80px;
    transform: translateY(1px);
  }
}
header .logo-text {
  font-size: 2.205rem;
  font-weight: 800;
  letter-spacing: 1px;
}
header .logo-text span {
  color: #f39c12;
}
header .hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  z-index: 1001;
}
@media (max-width: 768px) {
  header .hamburger {
    display: flex;
  }
}
header .hamburger span {
  width: 28px;
  height: 3px;
  background-color: #ffffff;
  transition: all 0.3s ease;
  border-radius: 2px;
}
header .hamburger.active span:nth-child(1) {
  transform: rotate(45deg) translate(8px, 8px);
}
header .hamburger.active span:nth-child(2) {
  opacity: 0;
}
header .hamburger.active span:nth-child(3) {
  transform: rotate(-45deg) translate(7px, -7px);
}
header nav {
  flex: 1;
  display: flex;
  justify-content: center;
  align-items: center;
}
@media (max-width: 768px) {
  header nav {
    position: fixed;
    top: 0;
    right: -100%;
    width: 100%;
    height: 100vh;
    background-color: #0b0f19;
    transition: right 0.3s ease;
    padding-top: 80px;
    box-shadow: -5px 0 15px rgba(0, 0, 0, 0.5);
  }
  header nav.active {
    right: 0;
  }
}
header nav ul {
  display: flex;
  list-style: none;
  gap: 2rem;
  align-items: center;
}
@media (max-width: 768px) {
  header nav ul {
    flex-direction: column;
    gap: 0;
    padding: 2rem;
  }
}
@media (max-width: 768px) {
  header nav ul li {
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  }
}
header nav ul li a {
  color: #ffffff;
  text-decoration: none;
  text-transform: uppercase;
  transition: color 0.3s ease;
  font-weight: 600;
  font-size: 1.05rem;
  letter-spacing: 1px;
  position: relative;
}
@media (max-width: 768px) {
  header nav ul li a {
    display: block;
    padding: 1.5rem 0;
    font-size: 1.1rem;
  }
}
header nav ul li a:hover {
  color: #4facfe;
}
header nav ul li a::after {
  content: "";
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 0;
  height: 2px;
  background: linear-gradient(120deg, #4facfe 0%, #00f2fe 100%);
  transition: width 0.3s ease;
}
@media (max-width: 768px) {
  header nav ul li a::after {
    display: none;
  }
}
header nav ul li a:hover::after {
  width: 100%;
}

.hero {
  position: relative;
  background-color: #0b0f19;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  padding: 0 1rem;
  z-index: 1;
}
.hero .hero-video-wrapper {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
  overflow: hidden;
}
.hero .hero-video-wrapper video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  opacity: 0.9;
}
.hero .hero-video-wrapper .video-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to bottom, rgba(11, 15, 25, 0.6) 0%, rgba(11, 15, 25, 0.7) 40%, rgba(11, 15, 25, 0.85) 70%, rgba(11, 15, 25, 0.95) 85%, #0b0f19 100%);
  box-shadow: inset 0 0 150px rgba(0, 0, 0, 0.8);
}
.hero::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 200px;
  background: linear-gradient(to bottom, transparent 0%, rgba(11, 15, 25, 0.3) 30%, rgba(11, 15, 25, 0.6) 60%, #0b0f19 100%);
  z-index: 1;
  pointer-events: none;
}
.hero .container {
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
  text-align: center;
}
.hero .hero-content {
  max-width: 900px;
  margin: 0 auto;
}
.hero h1 {
  font-family: "Montserrat", sans-serif;
  font-size: clamp(3rem, 7vw, 6.5rem);
  font-weight: 900;
  line-height: 1;
  margin-bottom: 2rem;
  letter-spacing: -0.03em;
  text-transform: uppercase;
  color: #ffffff;
  text-shadow: 0 20px 50px rgba(0, 0, 0, 0.8);
}
.hero h1 .gradient-text {
  background: linear-gradient(120deg, #ffffff 20%, #a855f7 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  display: inline-block;
  filter: drop-shadow(0 0 30px rgba(168, 85, 247, 0.6));
}
.hero p {
  font-family: "Poppins", sans-serif;
  font-size: clamp(1.1rem, 2vw, 1.4rem);
  font-weight: 500;
  line-height: 1.6;
  margin-bottom: 3.5rem;
  max-width: 750px;
  margin-left: auto;
  margin-right: auto;
  background: linear-gradient(180deg, #ffffff 0%, #94a3b8 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  filter: drop-shadow(0 2px 10px rgba(0, 0, 0, 0.9));
}
.hero p::before {
  content: "";
  display: block;
  width: 80px;
  height: 4px;
  background: #f39c12;
  margin: 0 auto 1.5rem;
  border-radius: 2px;
  box-shadow: 0 0 15px #f39c12;
}
.hero .hero-buttons {
  display: flex;
  justify-content: center;
  gap: 1.5rem;
  flex-wrap: wrap;
}
.hero .hero-buttons .cta-button {
  padding: 1rem 2.5rem;
  border-radius: 50px;
  font-weight: 700;
  font-size: 1rem;
  text-decoration: none;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
  text-transform: uppercase;
  letter-spacing: 1px;
}
.hero .hero-buttons .cta-button.primary-btn {
  background: linear-gradient(135deg, #4facfe 0%, #a855f7 100%);
  color: white;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
  border: none;
}
.hero .hero-buttons .cta-button.primary-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 20px 40px rgba(79, 172, 254, 0.5);
}
.hero .hero-buttons .cta-button.secondary-btn {
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(10px);
  color: white;
  border: 1px solid rgba(255, 255, 255, 0.3);
}
.hero .hero-buttons .cta-button.secondary-btn:hover {
  background: rgba(255, 255, 255, 0.15);
  border-color: white;
  transform: translateY(-3px);
}
.hero .scroll-arrow {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  animation: bounce 2s infinite;
  opacity: 0.8;
  z-index: 2;
}
.hero .scroll-arrow .arrow-icon {
  width: 50px;
  height: 50px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0, 0, 0, 0.4);
  backdrop-filter: blur(5px);
  transition: all 0.3s ease;
}
.hero .scroll-arrow .arrow-icon svg {
  fill: white;
  width: 24px;
  height: 24px;
}
.hero .scroll-arrow .arrow-icon:hover {
  background: rgba(243, 156, 18, 0.8);
  border-color: #f39c12;
}

@keyframes bounce {
  0%, 20%, 50%, 80%, 100% {
    transform: translateX(-50%) translateY(0);
  }
  40% {
    transform: translateX(-50%) translateY(-10px);
  }
  60% {
    transform: translateX(-50%) translateY(-5px);
  }
}
@media (max-width: 768px) {
  .hero {
    padding-top: 25vh;
  }
  .hero h1 {
    font-size: 2.8rem;
    margin-bottom: 1.5rem;
  }
  .hero p {
    font-size: 1rem;
    margin-bottom: 2.5rem;
  }
  .hero .hero-buttons {
    flex-direction: column;
    width: 100%;
  }
  .hero .hero-buttons .cta-button {
    width: 100%;
    text-align: center;
  }
}
.services-flip {
  position: relative;
  background: linear-gradient(180deg, #0d1220 0%, #0f1528 20%, #111830 50%, #0f1528 80%, #0d1220 100%);
  padding: 8rem 0;
  overflow: hidden;
}
.services-flip::before {
  content: "";
  position: absolute;
  top: 15%;
  left: -5%;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(79, 172, 254, 0.06) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
  animation: float 20s ease-in-out infinite;
}
.services-flip::after {
  content: "";
  position: absolute;
  bottom: 15%;
  right: -5%;
  width: 450px;
  height: 450px;
  background: radial-gradient(circle, rgba(168, 85, 247, 0.05) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
  animation: float 25s ease-in-out infinite reverse;
}
@keyframes float {
  0%, 100% {
    transform: translate(0, 0);
  }
  50% {
    transform: translate(20px, 20px);
  }
}
.services-flip .container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 2rem;
  position: relative;
  z-index: 2;
}
.services-flip .section-heading {
  text-align: center;
  margin-bottom: 6rem;
}
.services-flip .section-heading h1 {
  font-size: clamp(3rem, 6vw, 5rem);
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: -0.02em;
  line-height: 1.1;
  margin: 0 0 1rem 0;
  color: #ffffff;
  filter: drop-shadow(0 0 30px rgba(255, 255, 255, 0.15));
}
.services-flip .section-heading .section-subtitle {
  font-size: clamp(1rem, 2vw, 1.2rem);
  color: rgba(255, 255, 255, 0.6);
  font-weight: 400;
  letter-spacing: 0.05em;
  margin: 0;
}
.services-flip .section-heading::after {
  content: "";
  display: block;
  width: 60px;
  height: 6px;
  background: linear-gradient(90deg, #4facfe 0%, #00f2fe 100%);
  margin: 1.5rem auto 0;
  border-radius: 3px;
  box-shadow: 0 0 20px rgba(79, 172, 254, 0.6);
}
.services-flip .flip-cards-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 3rem;
  margin-bottom: 4rem;
}
@media (max-width: 992px) {
  .services-flip .flip-cards-grid {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }
}
.services-flip .flip-card-wrapper {
  perspective: 1000px;
  height: 500px;
}
@media (max-width: 768px) {
  .services-flip .flip-card-wrapper {
    height: 450px;
  }
}
.services-flip .flip-card {
  position: relative;
  width: 100%;
  height: 100%;
  transition: transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
  transform-style: preserve-3d;
}
.services-flip .flip-card.flipped {
  transform: rotateY(180deg);
}
.services-flip .flip-card-front,
.services-flip .flip-card-back {
  position: absolute;
  width: 100%;
  height: 100%;
  backface-visibility: hidden;
  border-radius: 24px;
  overflow: hidden;
}
.services-flip .flip-card-front {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(79, 172, 254, 0.15);
  backdrop-filter: blur(10px);
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
  display: flex;
  flex-direction: column;
}
.services-flip .flip-card-front .card-image {
  position: relative;
  width: 100%;
  height: 60%;
  overflow: hidden;
}
.services-flip .flip-card-front .card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}
.services-flip .flip-card-front .card-image .card-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(180deg, transparent 0%, rgba(13, 18, 32, 0.8) 100%);
}
.services-flip .flip-card-front .card-content {
  flex: 1;
  padding: 2rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.services-flip .flip-card-front .card-content .card-number {
  font-size: 1rem;
  font-weight: 800;
  color: #4facfe;
  font-family: "Montserrat", sans-serif;
  letter-spacing: 0.1em;
  text-shadow: 0 0 15px rgba(79, 172, 254, 0.4);
  margin-bottom: 0.5rem;
}
.services-flip .flip-card-front .card-content .card-title {
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 800;
  color: #ffffff;
  font-family: "Montserrat", sans-serif;
  letter-spacing: -0.02em;
  line-height: 1.2;
  margin: 0 0 0.8rem 0;
  min-height: 2.4rem;
}
.services-flip .flip-card-front .card-content .card-intro {
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.6;
  margin: 0 0 1.5rem 0;
  flex: 1;
}
.services-flip .flip-card-front .card-content .flip-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.9rem 1.8rem;
  background: rgba(79, 172, 254, 0.1);
  border: 1px solid rgba(79, 172, 254, 0.3);
  border-radius: 50px;
  color: #ffffff;
  font-weight: 600;
  font-size: 0.9rem;
  cursor: pointer;
  transition: all 0.3s ease;
  align-self: flex-start;
}
.services-flip .flip-card-front .card-content .flip-button svg {
  width: 16px;
  height: 16px;
  transition: transform 0.3s ease;
}
.services-flip .flip-card-front .card-content .flip-button:hover {
  background: rgba(79, 172, 254, 0.2);
  border-color: #4facfe;
  box-shadow: 0 0 20px rgba(79, 172, 254, 0.3);
}
.services-flip .flip-card-front .card-content .flip-button:hover svg {
  transform: translateY(3px);
}
.services-flip .flip-card-front:hover .card-image img {
  transform: scale(1.05);
}
.services-flip .flip-card-back {
  background: linear-gradient(135deg, rgba(30, 30, 50, 0.95) 0%, rgba(20, 20, 35, 0.98) 100%);
  border: 1px solid rgba(79, 172, 254, 0.3);
  backdrop-filter: blur(15px);
  box-shadow: 0 15px 50px rgba(0, 0, 0, 0.5), 0 0 40px rgba(79, 172, 254, 0.2);
  transform: rotateY(180deg);
  padding: 2.5rem;
  display: flex;
  flex-direction: column;
}
.services-flip .flip-card-back .back-content {
  display: flex;
  flex-direction: column;
  height: 100%;
}
.services-flip .flip-card-back .back-content .back-number {
  font-size: 1rem;
  font-weight: 800;
  color: #4facfe;
  font-family: "Montserrat", sans-serif;
  letter-spacing: 0.1em;
  text-shadow: 0 0 15px rgba(79, 172, 254, 0.4);
  margin-bottom: 0.8rem;
}
.services-flip .flip-card-back .back-content .back-title {
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 800;
  color: #ffffff;
  font-family: "Montserrat", sans-serif;
  letter-spacing: -0.02em;
  line-height: 1.2;
  margin: 0 0 1.2rem 0;
  min-height: 2.4rem;
}
.services-flip .flip-card-back .back-content .back-description {
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.7;
  margin: 0 0 1.5rem 0;
}
.services-flip .flip-card-back .back-content .back-features {
  list-style: none;
  padding: 0;
  margin: 0 0 auto 0;
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
}
.services-flip .flip-card-back .back-content .back-features li {
  position: relative;
  padding-left: 2rem;
  color: rgba(255, 255, 255, 0.85);
  font-size: 0.95rem;
  line-height: 1.5;
  transition: all 0.3s ease;
}
.services-flip .flip-card-back .back-content .back-features li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: #4facfe;
  font-weight: bold;
  font-size: 1.1rem;
}
.services-flip .flip-card-back .back-content .back-features li:hover {
  color: #ffffff;
  padding-left: 2.3rem;
}
.services-flip .flip-card-back .back-content .flip-button-back {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.9rem 1.8rem;
  background: rgba(79, 172, 254, 0.15);
  border: 1px solid rgba(79, 172, 254, 0.4);
  border-radius: 50px;
  color: #ffffff;
  font-weight: 600;
  font-size: 0.9rem;
  cursor: pointer;
  transition: all 0.3s ease;
  align-self: flex-start;
  margin-top: 1.5rem;
}
.services-flip .flip-card-back .back-content .flip-button-back svg {
  width: 16px;
  height: 16px;
  transition: transform 0.3s ease;
}
.services-flip .flip-card-back .back-content .flip-button-back:hover {
  background: rgba(79, 172, 254, 0.25);
  border-color: #4facfe;
  box-shadow: 0 0 25px rgba(79, 172, 254, 0.4);
}
.services-flip .flip-card-back .back-content .flip-button-back:hover svg {
  transform: translateY(-3px);
}
.services-flip .services-cta {
  text-align: center;
  margin-top: 4rem;
}
.services-flip .services-cta .cta-button {
  display: inline-flex;
  align-items: center;
  gap: 1rem;
  padding: 1.5rem 3.5rem;
  background: linear-gradient(135deg, #4facfe 0%, #00f2fe 100%);
  border: none;
  border-radius: 50px;
  color: #ffffff;
  text-decoration: none;
  font-weight: 700;
  font-size: 1.1rem;
  letter-spacing: 0.02em;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 10px 30px rgba(79, 172, 254, 0.3);
  position: relative;
  overflow: hidden;
}
@media (max-width: 768px) {
  .services-flip .services-cta .cta-button {
    padding: 1.2rem 2.5rem;
    font-size: 1rem;
  }
}
.services-flip .services-cta .cta-button::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
  transition: left 0.6s ease;
}
.services-flip .services-cta .cta-button svg {
  width: 20px;
  height: 20px;
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}
.services-flip .services-cta .cta-button:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 40px rgba(79, 172, 254, 0.5);
}
.services-flip .services-cta .cta-button:hover::before {
  left: 100%;
}
.services-flip .services-cta .cta-button:hover svg {
  transform: translateX(5px);
}
.services-flip .services-cta .cta-button:active {
  transform: translateY(-1px);
}
@media (max-width: 768px) {
  .services-flip {
    padding: 5rem 0;
  }
  .services-flip .section-heading {
    margin-bottom: 4rem;
  }
  .services-flip .flip-card-wrapper {
    height: 420px;
  }
  .services-flip .flip-card-front .card-content,
  .services-flip .flip-card-back {
    padding: 1.8rem;
  }
}

.advantages {
  position: relative;
  background: linear-gradient(180deg, #0b0f19 0%, #0b0f19 70%, #0d1220 90%, #0d1220 100%);
  padding: 8rem 0 10rem;
  overflow: hidden;
  color: #ffffff;
  z-index: 1;
}
.advantages::before, .advantages::after {
  content: "";
  position: absolute;
  width: 900px;
  height: 900px;
  border-radius: 50%;
  filter: blur(100px);
  opacity: 0.25;
  z-index: 0;
  animation: floatLights 15s ease-in-out infinite alternate;
}
.advantages::before {
  top: -15%;
  left: -10%;
  background: radial-gradient(circle, rgba(168, 85, 247, 0.4) 0%, rgba(168, 85, 247, 0.2) 50%, transparent 70%);
}
.advantages::after {
  bottom: -15%;
  right: -10%;
  background: radial-gradient(circle, rgba(79, 172, 254, 0.4) 0%, rgba(79, 172, 254, 0.2) 50%, transparent 70%);
  animation-delay: -5s;
}
.advantages .container {
  position: relative;
  z-index: 2;
}
.advantages .section-heading {
  text-align: center;
  margin-bottom: 6rem;
  position: relative;
}
.advantages .section-heading h1 {
  font-size: clamp(3rem, 6vw, 5rem);
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: -0.02em;
  line-height: 1.1;
  margin: 0;
  color: #ffffff;
  text-shadow: 0 0 40px rgba(255, 255, 255, 0.2);
}
.advantages .section-heading::after {
  content: "";
  display: block;
  width: 60px;
  height: 6px;
  background: #4facfe;
  margin: 1.5rem auto 0;
  border-radius: 3px;
  box-shadow: 0 0 30px #4facfe, 0 0 60px rgba(79, 172, 254, 0.5);
}
.advantages-container {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 3rem;
  counter-reset: adv-counter;
  padding: 0 1rem;
}
@media (max-width: 768px) {
  .advantages-container {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
}

.advantage-item {
  position: relative;
  counter-increment: adv-counter;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.1) 0%, rgba(255, 255, 255, 0.05) 100%);
  border: 2px solid rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(20px);
  padding: 4rem 2.5rem;
  border-radius: 24px;
  overflow: hidden;
  transition: all 0.5s cubic-bezier(0.23, 1, 0.32, 1);
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.4), 0 2px 8px rgba(0, 0, 0, 0.3), inset 0 1px 0 rgba(255, 255, 255, 0.1);
}
.advantage-item::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(79, 172, 254, 0.03) 0%, rgba(168, 85, 247, 0.03) 100%);
  opacity: 1;
  transition: opacity 0.5s ease;
  z-index: 0;
  pointer-events: none;
}
.advantage-item:nth-child(even) {
  margin-top: 4rem;
}
@media (max-width: 768px) {
  .advantage-item:nth-child(even) {
    margin-top: 0;
  }
}
.advantage-item:hover {
  transform: translateY(-15px) scale(1.02);
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.15) 0%, rgba(255, 255, 255, 0.08) 100%);
  border-color: rgba(79, 172, 254, 0.5);
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.6), 0 15px 30px rgba(79, 172, 254, 0.3), 0 0 40px rgba(79, 172, 254, 0.2), inset 0 1px 0 rgba(255, 255, 255, 0.2);
}
.advantage-item:hover::after {
  opacity: 0.5;
}
.advantage-item:hover::before {
  transform: translateY(-50%) translateX(15px) scale(1.15);
  opacity: 0.15;
  color: #4facfe;
  text-shadow: 0 0 40px rgba(79, 172, 254, 0.5);
}
.advantage-item:hover .advantage-icon {
  transform: scale(1.15) rotate(5deg) translateY(-5px);
  background: linear-gradient(120deg, #4facfe 0%, #00f2fe 100%);
  color: #ffffff;
  box-shadow: 0 10px 40px rgba(79, 172, 254, 0.6), 0 0 30px rgba(79, 172, 254, 0.4);
  border-color: rgba(79, 172, 254, 0.5);
}
.advantage-item:hover .advantage-text h3 {
  color: #ffffff;
  text-shadow: 0 0 20px rgba(255, 255, 255, 0.3);
}
.advantage-item:hover .advantage-text p {
  color: rgba(255, 255, 255, 0.9);
}
.advantage-item::before {
  content: "0" counter(adv-counter);
  position: absolute;
  top: 50%;
  right: -10px;
  transform: translateY(-50%);
  font-size: 13rem;
  font-weight: 900;
  color: #ffffff;
  opacity: 0.08;
  line-height: 0;
  pointer-events: none;
  transition: all 0.5s ease;
  font-family: "Montserrat", sans-serif;
  z-index: 0;
  text-shadow: 0 0 30px rgba(255, 255, 255, 0.1);
}
.advantage-item .advantage-icon {
  position: relative;
  z-index: 1;
  width: 75px;
  height: 75px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  color: #4facfe;
  background: linear-gradient(135deg, rgba(79, 172, 254, 0.2) 0%, rgba(79, 172, 254, 0.1) 100%);
  border-radius: 18px;
  margin-bottom: 2rem;
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  border: 2px solid rgba(79, 172, 254, 0.3);
  box-shadow: 0 5px 20px rgba(79, 172, 254, 0.2), inset 0 1px 0 rgba(255, 255, 255, 0.1);
}
.advantage-item .advantage-text {
  position: relative;
  z-index: 1;
}
.advantage-item .advantage-text h3 {
  font-size: 1.9rem;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.95);
  margin-bottom: 1.2rem;
  transition: all 0.3s ease;
  letter-spacing: -0.01em;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}
.advantage-item .advantage-text p {
  color: rgba(255, 255, 255, 0.75);
  font-size: 1.05rem;
  line-height: 1.7;
  margin: 0;
  transition: color 0.3s ease;
}

@keyframes floatLights {
  0% {
    transform: translate(0, 0);
    opacity: 0.25;
  }
  50% {
    opacity: 0.35;
  }
  100% {
    transform: translate(-40px, 40px);
    opacity: 0.25;
  }
}
.timeline-section {
  padding: 6rem 0;
  background: #0b0f19;
  position: relative;
  overflow: hidden;
}
.timeline-section::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 800px;
  height: 800px;
  background: radial-gradient(circle, rgba(79, 172, 254, 0.06) 0%, transparent 70%);
  pointer-events: none;
}
.timeline-section .section-heading {
  text-align: center;
  margin-bottom: 4rem;
  position: relative;
  z-index: 2;
}
.timeline-section .section-heading h2 {
  color: white;
  font-size: clamp(2rem, 5vw, 3rem);
  font-weight: 800;
  margin-bottom: 1rem;
  text-transform: uppercase;
  letter-spacing: 2px;
}
.timeline-section .section-heading h2 span {
  background: linear-gradient(120deg, #4facfe 0%, #00f2fe 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.timeline-section .section-heading p {
  color: rgba(255, 255, 255, 0.7);
  font-size: 1.1rem;
  max-width: 600px;
  margin: 0 auto;
}

.timeline-container {
  position: relative;
  max-width: 100%;
  margin: 0 auto;
  padding: 0 2rem;
  z-index: 2;
}

.timeline-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 2px solid rgba(79, 172, 254, 0.3);
  color: white;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
}
.timeline-arrow svg {
  width: 28px;
  height: 28px;
  transition: transform 0.3s ease;
}
.timeline-arrow:hover:not(:disabled) {
  background: linear-gradient(135deg, #4facfe 0%, #00f2fe 100%);
  border-color: transparent;
  transform: translateY(-50%) scale(1.1);
  box-shadow: 0 8px 30px rgba(79, 172, 254, 0.5);
}
.timeline-arrow:hover:not(:disabled) svg {
  transform: scale(1.2);
}
.timeline-arrow:active:not(:disabled) {
  transform: translateY(-50%) scale(0.95);
}
.timeline-arrow:disabled {
  opacity: 0.3;
  cursor: not-allowed;
  border-color: rgba(255, 255, 255, 0.1);
}
.timeline-arrow.timeline-arrow-left {
  left: 0;
}
.timeline-arrow.timeline-arrow-right {
  right: 0;
}
@media (max-width: 768px) {
  .timeline-arrow {
    width: 50px;
    height: 50px;
  }
  .timeline-arrow svg {
    width: 24px;
    height: 24px;
  }
}
@media (max-width: 480px) {
  .timeline-arrow {
    width: 45px;
    height: 45px;
  }
  .timeline-arrow svg {
    width: 20px;
    height: 20px;
  }
}

.timeline-wrapper {
  position: relative;
  overflow-x: auto;
  overflow-y: hidden;
  padding: 4rem 0;
  scroll-behavior: smooth;
}
.timeline-wrapper::-webkit-scrollbar {
  height: 8px;
}
.timeline-wrapper::-webkit-scrollbar-track {
  background: rgba(255, 255, 255, 0.05);
  border-radius: 10px;
}
.timeline-wrapper::-webkit-scrollbar-thumb {
  background: linear-gradient(90deg, #4facfe 0%, #00f2fe 100%);
  border-radius: 10px;
  transition: all 0.3s;
}
.timeline-wrapper::-webkit-scrollbar-thumb:hover {
  background: linear-gradient(90deg, #00f2fe 0%, #4facfe 100%);
}

.timeline-track {
  position: relative;
  display: flex;
  align-items: center;
  min-width: max-content;
  padding: 0 2rem;
}
.timeline-track::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, rgba(79, 172, 254, 0.1) 0%, rgba(79, 172, 254, 0.3) 50%, rgba(79, 172, 254, 0.1) 100%);
  transform: translateY(-50%);
  z-index: 1;
}

.timeline-item {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  margin: 0 2.5rem;
  z-index: 3;
  opacity: 0;
  transform: translateY(30px);
  animation: fadeInUp 0.6s ease-out forwards;
}
.timeline-item:nth-child(2) {
  animation-delay: 0.1s;
}
.timeline-item:nth-child(3) {
  animation-delay: 0.2s;
}
.timeline-item:nth-child(4) {
  animation-delay: 0.3s;
}
.timeline-item:nth-child(5) {
  animation-delay: 0.4s;
}
.timeline-item:nth-child(6) {
  animation-delay: 0.5s;
}
.timeline-item:nth-child(7) {
  animation-delay: 0.6s;
}
.timeline-item:nth-child(8) {
  animation-delay: 0.7s;
}
.timeline-item:nth-child(9) {
  animation-delay: 0.8s;
}
.timeline-item:nth-child(10) {
  animation-delay: 0.9s;
}
.timeline-item:nth-child(11) {
  animation-delay: 1s;
}
.timeline-item:nth-child(12) {
  animation-delay: 1.1s;
}
.timeline-item:nth-child(13) {
  animation-delay: 1.2s;
}
.timeline-item:nth-child(14) {
  animation-delay: 1.3s;
}
.timeline-item:nth-child(15) {
  animation-delay: 1.4s;
}
.timeline-item:nth-child(16) {
  animation-delay: 1.5s;
}
.timeline-item:nth-child(17) {
  animation-delay: 1.6s;
}
.timeline-item:nth-child(18) {
  animation-delay: 1.7s;
}
.timeline-item:nth-child(19) {
  animation-delay: 1.8s;
}
.timeline-item:nth-child(20) {
  animation-delay: 1.9s;
}
.timeline-item:nth-child(21) {
  animation-delay: 2s;
}
.timeline-item:nth-child(22) {
  animation-delay: 2.1s;
}
.timeline-item:nth-child(23) {
  animation-delay: 2.2s;
}
.timeline-item:nth-child(24) {
  animation-delay: 2.3s;
}
.timeline-item:nth-child(25) {
  animation-delay: 2.4s;
}
.timeline-item:nth-child(26) {
  animation-delay: 2.5s;
}
.timeline-item:nth-child(27) {
  animation-delay: 2.6s;
}
.timeline-item:nth-child(28) {
  animation-delay: 2.7s;
}
.timeline-item:nth-child(29) {
  animation-delay: 2.8s;
}
.timeline-item:nth-child(30) {
  animation-delay: 2.9s;
}
.timeline-item:nth-child(31) {
  animation-delay: 3s;
}
.timeline-item:nth-child(32) {
  animation-delay: 3.1s;
}
.timeline-item:nth-child(33) {
  animation-delay: 3.2s;
}
.timeline-item:nth-child(34) {
  animation-delay: 3.3s;
}
.timeline-item:nth-child(35) {
  animation-delay: 3.4s;
}
.timeline-item:nth-child(36) {
  animation-delay: 3.5s;
}
.timeline-item .timeline-marker {
  width: 18px;
  height: 18px;
  background: linear-gradient(135deg, #4facfe 0%, #00f2fe 100%);
  border: 3px solid rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  position: relative;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 0 0 0 rgba(79, 172, 254, 0.4);
}
.timeline-item .timeline-marker:hover {
  transform: scale(1.3);
  box-shadow: 0 0 20px rgba(79, 172, 254, 0.6);
  border-color: rgba(255, 255, 255, 0.5);
}
.timeline-item .timeline-marker.pulse {
  animation: markerPulse 0.6s ease-out;
}
.timeline-item.active .timeline-marker {
  transform: scale(1.4);
  box-shadow: 0 0 25px rgba(79, 172, 254, 0.8), 0 0 0 8px rgba(79, 172, 254, 0.2);
  border-color: rgba(255, 255, 255, 0.8);
}
.timeline-item.active .timeline-year {
  color: #4facfe;
  text-shadow: 0 0 20px rgba(79, 172, 254, 0.6);
  transform: scale(1.1);
}
.timeline-item .timeline-year {
  position: absolute;
  top: -50px;
  font-size: 1.5rem;
  font-weight: 800;
  color: white;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
  white-space: nowrap;
  letter-spacing: 1px;
}
.timeline-item .timeline-content {
  display: none;
}

.timeline-bus {
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  width: 100px;
  height: 60px;
  z-index: 10;
  filter: drop-shadow(0 5px 15px rgba(79, 172, 254, 0.3));
  will-change: left, transform;
  transition: filter 0.3s ease;
}
.timeline-bus svg {
  width: 100%;
  height: 100%;
  transition: transform 0.3s ease;
}
.timeline-bus.driving {
  animation: busRide 0.3s ease-in-out infinite;
  filter: drop-shadow(0 8px 20px rgba(79, 172, 254, 0.5)) drop-shadow(0 0 30px rgba(79, 172, 254, 0.3));
}
.timeline-bus.driving svg {
  animation: busWheels 0.15s linear infinite;
}
.timeline-bus.driving::after {
  content: "";
  position: absolute;
  left: -20px;
  top: 50%;
  width: 30px;
  height: 20px;
  background: radial-gradient(ellipse at center, rgba(79, 172, 254, 0.2) 0%, transparent 70%);
  border-radius: 50%;
  animation: exhaustSmoke 0.6s ease-out infinite;
  pointer-events: none;
}
.timeline-bus.accelerating {
  animation: busAccelerate 0.3s ease-out forwards;
}
.timeline-bus.decelerating {
  animation: busDecelerate 0.3s ease-in forwards;
}
.timeline-bus:not(.driving):hover {
  filter: drop-shadow(0 8px 25px rgba(79, 172, 254, 0.6));
  transform: translateY(-50%) scale(1.05);
}
.timeline-bus:not(.driving):hover svg {
  transform: scale(1.05);
}

@keyframes busRide {
  0%, 100% {
    transform: translateY(-50%) rotate(0deg) translateX(0);
  }
  25% {
    transform: translateY(-48%) rotate(-1deg) translateX(1px);
  }
  50% {
    transform: translateY(-50%) rotate(0deg) translateX(0);
  }
  75% {
    transform: translateY(-52%) rotate(1deg) translateX(-1px);
  }
}
@keyframes busWheels {
  0% {
    filter: drop-shadow(0 5px 15px rgba(79, 172, 254, 0.3));
  }
  50% {
    filter: drop-shadow(0 7px 20px rgba(79, 172, 254, 0.5));
  }
  100% {
    filter: drop-shadow(0 5px 15px rgba(79, 172, 254, 0.3));
  }
}
@keyframes busAccelerate {
  0% {
    transform: translateY(-50%) scale(1);
  }
  50% {
    transform: translateY(-50%) scale(1.05) rotate(-2deg);
  }
  100% {
    transform: translateY(-50%) scale(1) rotate(0deg);
  }
}
@keyframes busDecelerate {
  0% {
    transform: translateY(-50%) scale(1);
  }
  50% {
    transform: translateY(-50%) scale(0.98) rotate(2deg);
  }
  100% {
    transform: translateY(-50%) scale(1) rotate(0deg);
  }
}
@keyframes exhaustSmoke {
  0% {
    opacity: 0.6;
    transform: translateX(0) scale(0.8);
  }
  50% {
    opacity: 0.3;
    transform: translateX(-15px) scale(1.2);
  }
  100% {
    opacity: 0;
    transform: translateX(-30px) scale(1.5);
  }
}
@keyframes fadeInUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes markerPulse {
  0% {
    transform: scale(1);
    box-shadow: 0 0 0 0 rgba(79, 172, 254, 0.7);
  }
  50% {
    transform: scale(1.5);
    box-shadow: 0 0 0 15px rgba(79, 172, 254, 0);
  }
  100% {
    transform: scale(1);
    box-shadow: 0 0 0 0 rgba(79, 172, 254, 0);
  }
}
@media (max-width: 768px) {
  .timeline-section {
    padding: 4rem 0;
  }
  .timeline-section .section-heading h2 {
    font-size: 2rem;
  }
  .timeline-section .section-heading p {
    font-size: 1rem;
    padding: 0 1rem;
  }
  .timeline-item {
    margin: 0 2rem;
  }
  .timeline-item .timeline-year {
    font-size: 1.3rem;
    top: -40px;
  }
  .timeline-item .timeline-content {
    width: 250px;
    padding: 1.2rem;
  }
  .timeline-item .timeline-content h3 {
    font-size: 1.1rem;
  }
  .timeline-item .timeline-content p {
    font-size: 0.9rem;
  }
  .timeline-item .timeline-content .timeline-icon {
    font-size: 2rem;
  }
  .timeline-bus {
    width: 70px;
    height: 45px;
  }
}
@media (max-width: 480px) {
  .timeline-item {
    margin: 0 1.5rem;
  }
  .timeline-item .timeline-content {
    width: 220px;
    padding: 1rem;
  }
}
.story-display {
  margin-top: 4rem;
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 24px;
  padding: 3rem;
  position: relative;
  overflow: hidden;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.6);
  transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
}
.story-display::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(79, 172, 254, 0.05) 0%, rgba(168, 85, 247, 0.05) 100%);
  opacity: 1;
  transition: opacity 0.4s ease;
  z-index: 0;
  pointer-events: none;
}
.story-display:hover {
  border-color: rgba(79, 172, 254, 0.3);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.6), 0 0 20px rgba(79, 172, 254, 0.3);
}
.story-display .story-content {
  position: relative;
  z-index: 1;
}
.story-display .story-year-bg {
  position: absolute;
  top: 50%;
  right: 2rem;
  transform: translateY(-50%);
  font-size: clamp(8rem, 15vw, 12rem);
  font-weight: 900;
  color: #ffffff;
  opacity: 0.03;
  line-height: 1;
  pointer-events: none;
  font-family: "Montserrat", sans-serif;
  z-index: 0;
  transition: all 0.5s ease;
}
.story-display .story-title {
  font-size: clamp(1.8rem, 4vw, 2.5rem);
  font-weight: 800;
  color: #ffffff;
  margin-bottom: 1.5rem;
  letter-spacing: -0.02em;
  background: linear-gradient(120deg, #4facfe 0%, #00f2fe 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  position: relative;
  z-index: 1;
}
.story-display .story-description {
  font-size: 1.1rem;
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 2rem;
  position: relative;
  z-index: 1;
}
.story-display .story-fact {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1.2rem 1.5rem;
  background: rgba(79, 172, 254, 0.08);
  border-left: 4px solid #4facfe;
  border-radius: 12px;
  position: relative;
  z-index: 1;
}
.story-display .story-fact .fact-icon {
  font-size: 1.8rem;
  flex-shrink: 0;
}
.story-display .story-fact .fact-text {
  color: rgba(255, 255, 255, 0.85);
  font-size: 1rem;
  font-style: italic;
  line-height: 1.6;
}
.story-display.fade-out {
  opacity: 0;
  transform: translateY(10px);
}
.story-display.fade-in {
  opacity: 1;
  transform: translateY(0);
}
@media (max-width: 768px) {
  .story-display {
    padding: 2rem;
    margin-top: 3rem;
  }
  .story-display .story-year-bg {
    font-size: 6rem;
    right: 1rem;
  }
  .story-display .story-title {
    font-size: 1.5rem;
    margin-bottom: 1rem;
  }
  .story-display .story-description {
    font-size: 1rem;
    margin-bottom: 1.5rem;
  }
  .story-display .story-fact {
    padding: 1rem;
    gap: 0.8rem;
  }
  .story-display .story-fact .fact-icon {
    font-size: 1.5rem;
  }
  .story-display .story-fact .fact-text {
    font-size: 0.95rem;
  }
}

.flota {
  background: linear-gradient(135deg, #ffffff 0%, #f5f7fa 100%);
  position: relative;
  overflow: hidden;
  text-align: center;
}
.flota::before {
  content: "";
  position: absolute;
  top: -30%;
  right: -15%;
  width: 700px;
  height: 700px;
  background: radial-gradient(circle, rgba(168, 85, 247, 0.04) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}
.flota::after {
  content: "";
  position: absolute;
  bottom: -30%;
  left: -15%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(243, 156, 18, 0.03) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}
.flota .container {
  position: relative;
  z-index: 1;
}
.flota .section-heading {
  text-align: center;
  margin-bottom: 5rem;
}
.flota .section-heading h2 {
  font-size: 3.5rem;
  font-weight: 700;
  color: #4facfe;
  letter-spacing: -0.02em;
  margin-bottom: 1.5rem;
  position: relative;
  display: inline-block;
  padding-bottom: 1rem;
  text-transform: uppercase;
}
.flota .section-heading h2::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background: linear-gradient(90deg, #a855f7 0%, #f39c12 100%);
  border-radius: 2px;
}
@media (max-width: 992px) {
  .flota .section-heading h2 {
    font-size: 2.5rem;
  }
}
@media (max-width: 768px) {
  .flota .section-heading h2 {
    font-size: 2rem;
  }
}
.flota .section-heading p {
  color: #94a3b8;
  font-size: 1.1rem;
  max-width: 700px;
  margin: 1.5rem auto 0;
  line-height: 1.8;
}
.flota-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-top: 5rem;
}
@media (max-width: 992px) {
  .flota-list {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
  }
}
@media (max-width: 768px) {
  .flota-list {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
}

.flota-item {
  background: white;
  border-radius: 10px;
  padding: 5rem 4rem;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(79, 172, 254, 0.08);
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: left;
  min-height: 320px;
  cursor: pointer;
}
.flota-item::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, #a855f7 0%, #f39c12 100%);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s ease;
}
.flota-item::after {
  content: "";
  position: absolute;
  top: 20px;
  right: 20px;
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, rgba(79, 172, 254, 0.03), rgba(168, 85, 247, 0.05));
  border-radius: 50%;
  opacity: 0;
  transform: scale(0.5);
  transition: all 0.3s ease;
}
.flota-item:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
  border-color: rgba(168, 85, 247, 0.25);
}
.flota-item:hover::before {
  transform: scaleX(1);
}
.flota-item:hover::after {
  opacity: 1;
  transform: scale(1);
}
.flota-item:hover h3 {
  color: #a855f7;
  transform: translateY(-3px);
}
.flota-item-icon {
  width: 100%;
  height: 200px;
  background: #f5f7fa;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 2rem;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  position: relative;
  overflow: hidden;
}
.flota-item-icon svg,
.flota-item-icon i,
.flota-item-icon img {
  font-size: 3rem;
  color: white;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  transition: transform 0.3s ease;
  position: relative;
  z-index: 1;
}
.flota-item:last-child .flota-item-icon img {
  object-position: center top;
  transform: scale(1.05) translateY(-5%);
}
.flota-item h3 {
  font-size: 1.5rem;
  color: #4facfe;
  margin-bottom: 1.5rem;
  font-weight: 700;
  line-height: 1.2;
  text-transform: uppercase;
  letter-spacing: 1px;
  transition: all 0.3s ease;
  width: 100%;
}
.flota-item p {
  color: #94a3b8;
  line-height: 1.8;
  font-size: 1.1rem;
  margin: 0;
  flex-grow: 1;
  width: 100%;
}
.flota-item-badge {
  position: absolute;
  top: 15px;
  left: 15px;
  background: linear-gradient(135deg, #f39c12 0%, rgb(204.9478915663, 129.7138554217, 10.3771084337) 100%);
  color: white;
  padding: 6px 14px;
  border-radius: 20px;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  box-shadow: 0 3px 10px rgba(243, 156, 18, 0.3);
  z-index: 2;
}
.flota-item-specs {
  display: flex;
  gap: 1.5rem;
  margin-top: 1.5rem;
  flex-wrap: wrap;
  justify-content: center;
}
.flota-item-specs span {
  display: flex;
  align-items: center;
  gap: 6px;
  color: #94a3b8;
  font-size: 0.9rem;
}
.flota-item-specs span svg,
.flota-item-specs span i {
  color: #a855f7;
  font-size: 1rem;
}

@media (max-width: 992px) {
  .flota .section-heading h2 {
    font-size: 2.5rem;
  }
  .flota-item {
    padding: 4rem 2rem;
    min-height: 280px;
  }
  .flota-item-icon {
    width: 85px;
    height: 85px;
  }
  .flota-item-icon svg,
  .flota-item-icon i,
  .flota-item-icon img {
    font-size: 2.5rem;
    width: 50px;
    height: 50px;
  }
  .flota-item h3 {
    font-size: 1.5rem;
  }
  .flota-item p {
    font-size: 1rem;
  }
}
@media (max-width: 768px) {
  .flota .section-heading h2 {
    font-size: 2rem;
  }
  .flota-item {
    padding: 2rem 1.5rem;
    min-height: 260px;
  }
  .flota-item-icon {
    width: 100%;
    height: 180px;
  }
  .flota-item-icon svg,
  .flota-item-icon i,
  .flota-item-icon img {
    font-size: 2rem;
    width: 100%;
    height: 100%;
  }
  .flota-item h3 {
    font-size: 1.35rem;
  }
  .flota-item p {
    font-size: 0.95rem;
  }
  .flota-item-specs {
    gap: 0.5rem;
  }
  .flota-item-specs span {
    font-size: 0.85rem;
  }
}
.stats-section {
  padding: 8rem 0;
  background: linear-gradient(180deg, #0d1220 0%, #0f1528 25%, #1a253a 50%, #0f1528 75%, #0d1220 100%);
  position: relative;
  overflow: hidden;
}
.stats-section::before {
  content: "";
  position: absolute;
  top: -50%;
  right: -20%;
  width: 800px;
  height: 800px;
  background: radial-gradient(circle, rgba(79, 172, 254, 0.15) 0%, rgba(79, 172, 254, 0.08) 40%, transparent 70%);
  border-radius: 50%;
  animation: float 15s ease-in-out infinite;
}
.stats-section::after {
  content: "";
  position: absolute;
  bottom: -50%;
  left: -20%;
  width: 700px;
  height: 700px;
  background: radial-gradient(circle, rgba(168, 85, 247, 0.12) 0%, rgba(168, 85, 247, 0.06) 40%, transparent 70%);
  border-radius: 50%;
  animation: float 18s ease-in-out infinite reverse;
}
@keyframes float {
  0%, 100% {
    transform: translate(0, 0);
  }
  50% {
    transform: translate(40px, 40px);
  }
}
.stats-section .container {
  position: relative;
  z-index: 2;
}
.stats-section .section-heading {
  text-align: center;
  margin-bottom: 5rem;
}
.stats-section .section-heading h2 {
  color: #ffffff;
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 900;
  margin-bottom: 1.5rem;
  text-transform: uppercase;
  letter-spacing: -0.02em;
  text-shadow: 0 0 30px rgba(255, 255, 255, 0.1);
}
.stats-section .section-heading p {
  color: rgba(255, 255, 255, 0.7);
  font-size: 1.2rem;
  max-width: 700px;
  margin: 0 auto;
  line-height: 1.8;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2.5rem;
}
@media (max-width: 992px) {
  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
  }
}
@media (max-width: 576px) {
  .stats-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
}

.stat-card {
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 24px;
  padding: 3rem 2rem;
  text-align: center;
  transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
  position: relative;
  overflow: hidden;
}
.stat-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, #4facfe 0%, #a855f7 100%);
  opacity: 0;
  transition: opacity 0.4s ease;
  z-index: 0;
}
.stat-card:hover {
  transform: translateY(-10px);
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.2);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.6), 0 0 20px rgba(79, 172, 254, 0.3);
}
.stat-card:hover::before {
  opacity: 0.05;
}
.stat-card:hover .stat-icon {
  transform: scale(1.1) rotate(5deg);
  color: #4facfe;
}
.stat-card:hover .stat-number {
  color: #4facfe;
  text-shadow: 0 0 20px rgba(79, 172, 254, 0.5);
}
.stat-card .stat-icon {
  font-size: 3.5rem;
  margin-bottom: 1.5rem;
  display: inline-block;
  color: #f39c12;
  transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
  position: relative;
  z-index: 1;
}
.stat-card .stat-number {
  font-size: 4rem;
  font-weight: 900;
  color: #ffffff;
  line-height: 1;
  margin-bottom: 1rem;
  display: block;
  transition: all 0.4s ease;
  position: relative;
  z-index: 1;
  letter-spacing: -0.02em;
}
.stat-card .stat-label {
  color: rgba(255, 255, 255, 0.7);
  font-size: 1.1rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 2px;
  position: relative;
  z-index: 1;
}
@media (max-width: 768px) {
  .stat-card {
    padding: 2.5rem 1.5rem;
  }
  .stat-card .stat-icon {
    font-size: 2.8rem;
  }
  .stat-card .stat-number {
    font-size: 3rem;
  }
  .stat-card .stat-label {
    font-size: 0.95rem;
    letter-spacing: 1px;
  }
}

.contact-premium {
  position: relative;
  background: linear-gradient(180deg, #0d1220 0%, #0f1528 50%, #0d1220 100%);
  padding: 5rem 0;
  overflow: hidden;
}
.contact-premium::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at 20% 30%, rgba(79, 172, 254, 0.08) 0%, transparent 50%), radial-gradient(circle at 80% 70%, rgba(168, 85, 247, 0.06) 0%, transparent 50%);
  animation: backgroundPulse 15s ease-in-out infinite;
  pointer-events: none;
}
.contact-premium::after {
  content: "";
  position: absolute;
  top: 10%;
  right: 10%;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(79, 172, 254, 0.15) 0%, transparent 70%);
  border-radius: 50%;
  filter: blur(60px);
  animation: floatOrb 20s ease-in-out infinite;
  pointer-events: none;
}
.contact-premium .container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 2rem;
  position: relative;
  z-index: 2;
}
.contact-premium .section-header {
  text-align: center;
  margin-bottom: 3rem;
  position: relative;
}
.contact-premium .section-header::before {
  content: "";
  position: absolute;
  top: -30px;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 4px;
  background: linear-gradient(120deg, #4facfe 0%, #00f2fe 100%);
  border-radius: 2px;
  animation: lineExpand 2s ease-out;
}
.contact-premium .section-header .section-title {
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 900;
  color: #ffffff;
  margin: 0 0 1rem 0;
  letter-spacing: -0.02em;
  line-height: 1.1;
  position: relative;
  display: inline-block;
  animation: titleSlideUp 1s cubic-bezier(0.23, 1, 0.32, 1);
  background: linear-gradient(120deg, #ffffff 0%, #4facfe 50%, #ffffff 100%);
  background-size: 200% auto;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: titleSlideUp 1s cubic-bezier(0.23, 1, 0.32, 1), shimmer 3s linear infinite;
}
.contact-premium .section-header .section-subtitle {
  font-size: clamp(1rem, 2vw, 1.2rem);
  color: rgba(255, 255, 255, 0.6);
  margin: 0;
  font-weight: 400;
  animation: fadeInUp 1s cubic-bezier(0.23, 1, 0.32, 1) 0.2s both;
}
.contact-premium .contact-equal-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  margin-bottom: 5rem;
  perspective: 1000px;
}
@media (max-width: 992px) {
  .contact-premium .contact-equal-grid {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }
}
.contact-premium .glass-panel {
  background: rgba(255, 255, 255, 0.03);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(79, 172, 254, 0.15);
  border-radius: 24px;
  padding: 3rem;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3), 0 0 0 1px rgba(79, 172, 254, 0.1) inset;
  height: 100%;
  display: flex;
  flex-direction: column;
  position: relative;
  overflow: hidden;
  transition: all 0.6s cubic-bezier(0.23, 1, 0.32, 1);
  animation: panelSlideIn 0.8s cubic-bezier(0.23, 1, 0.32, 1) both;
}
.contact-premium .glass-panel::before {
  content: "";
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: linear-gradient(45deg, transparent 30%, rgba(255, 255, 255, 0.05) 50%, transparent 70%);
  transform: rotate(45deg);
  transition: all 0.8s cubic-bezier(0.23, 1, 0.32, 1);
  opacity: 0;
}
.contact-premium .glass-panel:hover {
  transform: translateY(-8px) scale(1.01);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4), 0 0 0 1px rgba(79, 172, 254, 0.3) inset, 0 0 40px rgba(79, 172, 254, 0.1);
  border-color: rgba(79, 172, 254, 0.3);
}
.contact-premium .glass-panel:hover::before {
  opacity: 1;
  left: 100%;
}
@media (max-width: 768px) {
  .contact-premium .glass-panel {
    padding: 2rem;
  }
}
.contact-premium .info-panel {
  animation-delay: 0.1s;
}
.contact-premium .form-panel {
  animation-delay: 0.3s;
}
.contact-premium .panel-header {
  margin-bottom: 2.5rem;
  position: relative;
}
.contact-premium .panel-header .panel-title {
  font-size: 1.8rem;
  font-weight: 800;
  color: #ffffff;
  margin: 0 0 0.5rem 0;
  font-family: "Montserrat", sans-serif;
  position: relative;
  display: inline-block;
}
.contact-premium .panel-header .panel-title::after {
  content: "";
  position: absolute;
  bottom: -8px;
  left: 0;
  width: 0;
  height: 3px;
  background: linear-gradient(120deg, #4facfe 0%, #00f2fe 100%);
  border-radius: 2px;
  transition: width 0.6s cubic-bezier(0.23, 1, 0.32, 1);
}
.contact-premium .panel-header .panel-subtitle {
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.6);
  margin: 0;
}
.contact-premium .glass-panel:hover .panel-title::after {
  width: 100%;
}
.contact-premium .info-panel .info-list {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  margin-bottom: 2rem;
  flex: 1;
}
.contact-premium .info-panel .info-row {
  display: flex;
  align-items: flex-start;
  gap: 1.5rem;
  padding: 1.2rem;
  border-radius: 16px;
  text-decoration: none;
  transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
  margin: 0 -1.2rem;
  position: relative;
  overflow: hidden;
}
.contact-premium .info-panel .info-row::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(79, 172, 254, 0.08), transparent);
  transition: left 0.6s cubic-bezier(0.23, 1, 0.32, 1);
}
.contact-premium .info-panel .info-row:hover {
  background: rgba(79, 172, 254, 0.05);
  transform: translateX(8px) scale(1.02);
  box-shadow: 0 4px 20px rgba(79, 172, 254, 0.15);
}
.contact-premium .info-panel .info-row:hover::before {
  left: 100%;
}
.contact-premium .info-panel .info-row:hover .icon-box {
  transform: scale(1.15) rotate(5deg);
  box-shadow: 0 12px 30px rgba(79, 172, 254, 0.4);
}
.contact-premium .info-panel .info-row:hover .value.highlight {
  transform: translateX(4px);
}
.contact-premium .info-panel .info-row .icon-box {
  width: 56px;
  height: 56px;
  flex-shrink: 0;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
  position: relative;
}
.contact-premium .info-panel .info-row .icon-box::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  height: 100%;
  border-radius: 16px;
  opacity: 0;
  transition: all 0.4s ease;
}
.contact-premium .info-panel .info-row .icon-box svg {
  width: 26px;
  height: 26px;
  color: #ffffff;
  filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.3));
  transition: transform 0.4s cubic-bezier(0.23, 1, 0.32, 1);
}
.contact-premium .info-panel .info-row .icon-box.blue {
  background: linear-gradient(135deg, #4facfe 0%, #00f2fe 100%);
  box-shadow: 0 8px 20px rgba(79, 172, 254, 0.3);
}
.contact-premium .info-panel .info-row .icon-box.blue::after {
  background: linear-gradient(135deg, #4facfe 0%, #00f2fe 100%);
}
.contact-premium .info-panel .info-row .icon-box.purple {
  background: linear-gradient(135deg, #a855f7 0%, #d946ef 100%);
  box-shadow: 0 8px 20px rgba(168, 85, 247, 0.3);
}
.contact-premium .info-panel .info-row .icon-box.purple::after {
  background: linear-gradient(135deg, #a855f7 0%, #d946ef 100%);
}
.contact-premium .info-panel .info-row .icon-box.orange {
  background: linear-gradient(135deg, #f39c12 0%, #f97316 100%);
  box-shadow: 0 8px 20px rgba(243, 156, 18, 0.3);
}
.contact-premium .info-panel .info-row .icon-box.orange::after {
  background: linear-gradient(135deg, #f39c12 0%, #f97316 100%);
}
.contact-premium .info-panel .info-row:hover .icon-box::after {
  opacity: 0.3;
  width: 140%;
  height: 140%;
}
.contact-premium .info-panel .info-row:hover .icon-box svg {
  transform: scale(1.1) rotate(-5deg);
}
.contact-premium .info-panel .info-row .row-content {
  flex: 1;
}
.contact-premium .info-panel .info-row .row-content .label {
  display: block;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: rgba(255, 255, 255, 0.5);
  margin-bottom: 0.5rem;
  font-weight: 600;
  transition: color 0.3s ease;
}
.contact-premium .info-panel .info-row .row-content .value {
  display: block;
  font-size: 1.1rem;
  color: #ffffff;
  font-weight: 600;
  line-height: 1.6;
  transition: all 0.3s cubic-bezier(0.23, 1, 0.32, 1);
}
.contact-premium .info-panel .info-row .row-content .value.highlight {
  color: #4facfe;
  font-size: 1.15rem;
  text-shadow: 0 0 20px rgba(79, 172, 254, 0.3);
}
.contact-premium .info-panel .info-row:hover .label {
  color: rgba(255, 255, 255, 0.8);
}
.contact-premium .info-panel .info-row:nth-child(1) {
  animation: slideInLeft 0.6s cubic-bezier(0.23, 1, 0.32, 1) 0.4s both;
}
.contact-premium .info-panel .info-row:nth-child(2) {
  animation: slideInLeft 0.6s cubic-bezier(0.23, 1, 0.32, 1) 0.5s both;
}
.contact-premium .info-panel .info-row:nth-child(3) {
  animation: slideInLeft 0.6s cubic-bezier(0.23, 1, 0.32, 1) 0.6s both;
}
.contact-premium .info-panel .panel-footer {
  margin-top: auto;
  padding-top: 0;
  border-top: none;
  animation: fadeInUp 0.6s cubic-bezier(0.23, 1, 0.32, 1) 0.7s both;
}
.contact-premium .info-panel .panel-footer .status-indicator {
  background: rgba(79, 172, 254, 0.15);
  border: 2px solid rgba(79, 172, 254, 0.3);
  border-radius: 12px;
  padding: 1.3rem 1.6rem;
  font-size: 0.95rem;
  color: #ffffff;
  line-height: 1.8;
  font-weight: 500;
  box-shadow: 0 4px 15px rgba(79, 172, 254, 0.2);
  position: relative;
  overflow: hidden;
  transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
}
.contact-premium .info-panel .panel-footer .status-indicator::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(79, 172, 254, 0.2), transparent);
  transition: left 0.8s ease;
}
.contact-premium .info-panel .panel-footer .status-indicator:hover {
  background: rgba(79, 172, 254, 0.2);
  border-color: rgba(79, 172, 254, 0.5);
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(79, 172, 254, 0.3);
}
.contact-premium .info-panel .panel-footer .status-indicator:hover::before {
  left: 100%;
}
.contact-premium .info-panel .panel-footer .status-indicator strong {
  display: block;
  color: #ffffff;
  font-weight: 700;
  margin-bottom: 0.8rem;
  font-size: 1.05rem;
}
.contact-premium .info-panel .panel-footer .status-indicator ul {
  list-style: none;
  padding: 0;
  margin: 0.5rem 0 0 0;
}
.contact-premium .info-panel .panel-footer .status-indicator ul li {
  position: relative;
  padding-left: 1.8rem;
  margin-bottom: 0.5rem;
  color: #ffffff;
  font-weight: 500;
  transition: transform 0.3s ease;
}
.contact-premium .info-panel .panel-footer .status-indicator ul li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: #4facfe;
  font-weight: bold;
  font-size: 1.1rem;
  transition: transform 0.3s ease;
}
.contact-premium .info-panel .panel-footer .status-indicator ul li:hover {
  transform: translateX(4px);
}
.contact-premium .info-panel .panel-footer .status-indicator ul li:hover::before {
  transform: scale(1.2);
}
.contact-premium .info-panel .panel-footer .status-indicator ul li:last-child {
  margin-bottom: 0;
}
.contact-premium .form-panel .equal-form {
  display: flex;
  flex-direction: column;
  flex: 1;
}
.contact-premium .form-panel .input-stack {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  flex: 1;
  min-height: 0;
}
.contact-premium .form-panel .input-group {
  position: relative;
  animation: fadeInUp 0.6s cubic-bezier(0.23, 1, 0.32, 1) both;
}
.contact-premium .form-panel .input-group:nth-child(1) {
  animation-delay: 0.5s;
}
.contact-premium .form-panel .input-group:nth-child(2) {
  animation-delay: 0.6s;
}
.contact-premium .form-panel .input-group:nth-child(3) {
  animation-delay: 0.7s;
}
.contact-premium .form-panel .input-group:nth-child(4) {
  animation-delay: 0.8s;
  flex: 1;
  display: flex;
  flex-direction: column;
}
.contact-premium .form-panel .input-group input,
.contact-premium .form-panel .input-group textarea {
  width: 100%;
  background: linear-gradient(135deg, rgba(15, 23, 42, 0.8) 0%, rgba(20, 30, 50, 0.8) 100%);
  border: 2px solid rgba(79, 172, 254, 0.2);
  border-radius: 14px;
  padding: 1.3rem 1.6rem;
  font-size: 1rem;
  color: #ffffff;
  outline: none;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  font-family: inherit;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  position: relative;
}
.contact-premium .form-panel .input-group input::placeholder,
.contact-premium .form-panel .input-group textarea::placeholder {
  color: transparent;
}
.contact-premium .form-panel .input-group input:hover,
.contact-premium .form-panel .input-group textarea:hover {
  border-color: rgba(79, 172, 254, 0.4);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}
.contact-premium .form-panel .input-group input:focus, .contact-premium .form-panel .input-group input:not(:placeholder-shown),
.contact-premium .form-panel .input-group textarea:focus,
.contact-premium .form-panel .input-group textarea:not(:placeholder-shown) {
  border-color: #4facfe;
  background: linear-gradient(135deg, rgba(15, 23, 42, 0.95) 0%, rgba(20, 30, 50, 0.95) 100%);
  box-shadow: 0 0 0 4px rgba(79, 172, 254, 0.15), 0 8px 25px rgba(79, 172, 254, 0.2);
  transform: translateY(-2px);
}
.contact-premium .form-panel .input-group input:focus + label, .contact-premium .form-panel .input-group input:not(:placeholder-shown) + label,
.contact-premium .form-panel .input-group textarea:focus + label,
.contact-premium .form-panel .input-group textarea:not(:placeholder-shown) + label {
  transform: translateY(-32px) scale(0.85);
  background: linear-gradient(90deg, rgb(13, 18, 32) 0%, rgb(13, 18, 32) 100%);
  color: #4facfe;
  padding: 0.2rem 0.8rem;
  border-radius: 6px;
  font-weight: 600;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
}
.contact-premium .form-panel .input-group textarea {
  min-height: 200px;
  resize: vertical;
  flex: 1;
}
.contact-premium .form-panel .input-group label {
  position: absolute;
  left: 1.4rem;
  top: 1.3rem;
  color: rgba(255, 255, 255, 0.6);
  pointer-events: none;
  transform-origin: left top;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  font-size: 1rem;
  font-weight: 500;
}
.contact-premium .form-panel .submit-btn {
  width: 100%;
  padding: 1.5rem;
  background: linear-gradient(135deg, #4facfe 0%, #00f2fe 100%);
  border: none;
  border-radius: 14px;
  color: #ffffff;
  font-size: 1.15rem;
  font-weight: 800;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.8rem;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 10px 35px rgba(79, 172, 254, 0.4), 0 0 0 0 rgba(79, 172, 254, 0.5);
  margin-top: auto;
  position: relative;
  overflow: hidden;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  animation: fadeInUp 0.6s cubic-bezier(0.23, 1, 0.32, 1) 0.9s both;
}
.contact-premium .form-panel .submit-btn::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
  transition: left 0.6s ease;
}
.contact-premium .form-panel .submit-btn::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.3);
  transform: translate(-50%, -50%);
  transition: width 0.6s ease, height 0.6s ease;
}
.contact-premium .form-panel .submit-btn svg {
  width: 24px;
  height: 24px;
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.2));
}
.contact-premium .form-panel .submit-btn:hover {
  transform: translateY(-4px) scale(1.02);
  box-shadow: 0 20px 50px rgba(79, 172, 254, 0.6), 0 0 0 4px rgba(79, 172, 254, 0.2);
}
.contact-premium .form-panel .submit-btn:hover::before {
  left: 100%;
}
.contact-premium .form-panel .submit-btn:hover svg {
  transform: translateX(8px) rotate(-15deg) scale(1.1);
}
.contact-premium .form-panel .submit-btn:active {
  transform: translateY(-2px) scale(1);
  box-shadow: 0 10px 30px rgba(79, 172, 254, 0.5);
}
.contact-premium .form-panel .submit-btn:active::after {
  width: 300px;
  height: 300px;
}
.contact-premium .map-section {
  margin-top: 5rem;
  animation: fadeInUp 0.8s cubic-bezier(0.23, 1, 0.32, 1) 1s both;
}
.contact-premium .map-section .map-heading {
  text-align: center;
  margin-bottom: 3rem;
}
.contact-premium .map-section .map-heading .map-title {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  color: #ffffff;
  margin: 0 0 0.8rem 0;
  font-family: "Montserrat", sans-serif;
  letter-spacing: -0.02em;
}
.contact-premium .map-section .map-heading .map-subtitle {
  font-size: 1.1rem;
  color: rgba(255, 255, 255, 0.6);
  margin: 0;
}
.contact-premium .map-section .map-container {
  width: 100%;
  max-width: 900px;
  margin: 0 auto;
  height: 400px;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
  border: 1px solid rgba(79, 172, 254, 0.2);
  padding: 0;
  transition: all 0.6s cubic-bezier(0.23, 1, 0.32, 1);
}
.contact-premium .map-section .map-container:hover {
  transform: translateY(-8px) scale(1.01);
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.5), 0 0 0 1px rgba(79, 172, 254, 0.4);
  border-color: rgba(79, 172, 254, 0.4);
}
.contact-premium .map-section .map-container iframe {
  width: 100%;
  height: 100%;
  display: block;
  border: none;
  transition: filter 0.4s ease;
}
@media (max-width: 768px) {
  .contact-premium .map-section .map-container {
    height: 350px;
  }
}
@media (max-width: 576px) {
  .contact-premium .map-section .map-container {
    height: 300px;
  }
}
@keyframes backgroundPulse {
  0%, 100% {
    opacity: 1;
  }
  50% {
    opacity: 0.6;
  }
}
@keyframes floatOrb {
  0%, 100% {
    transform: translate(0, 0) scale(1);
  }
  33% {
    transform: translate(30px, -30px) scale(1.1);
  }
  66% {
    transform: translate(-30px, 30px) scale(0.9);
  }
}
@keyframes lineExpand {
  from {
    width: 0;
    opacity: 0;
  }
  to {
    width: 60px;
    opacity: 1;
  }
}
@keyframes titleSlideUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes shimmer {
  to {
    background-position: 200% center;
  }
}
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes panelSlideIn {
  from {
    opacity: 0;
    transform: translateY(40px) scale(0.95);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}
@keyframes slideInLeft {
  from {
    opacity: 0;
    transform: translateX(-30px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}
@media (max-width: 768px) {
  .contact-premium {
    padding: 5rem 0;
  }
  .contact-premium .section-header {
    margin-bottom: 3rem;
  }
  .contact-premium .contact-equal-grid {
    margin-bottom: 3rem;
  }
  .contact-premium .map-section {
    margin-top: 3rem;
  }
  .contact-premium .map-section .map-heading {
    margin-bottom: 2rem;
  }
  .contact-premium .glass-panel:hover {
    transform: translateY(-4px) scale(1);
  }
}

.custom-cursor {
  position: fixed;
  width: 40px;
  height: 40px;
  border: 2px solid rgba(79, 172, 254, 0.5);
  border-radius: 50%;
  pointer-events: none;
  z-index: 9999;
  transform: translate(-50%, -50%);
  transition: width 0.3s ease, height 0.3s ease, border-color 0.3s ease;
  mix-blend-mode: difference;
}
.custom-cursor.cursor-hover {
  width: 60px;
  height: 60px;
  border-color: rgba(79, 172, 254, 0.8);
  background: rgba(79, 172, 254, 0.1);
}

.cursor-dot {
  position: fixed;
  width: 8px;
  height: 8px;
  background: linear-gradient(135deg, #4facfe 0%, #00f2fe 100%);
  border-radius: 50%;
  pointer-events: none;
  z-index: 10000;
  transform: translate(-50%, -50%);
  box-shadow: 0 0 10px rgba(79, 172, 254, 0.5);
}
.cursor-dot.cursor-hover {
  width: 12px;
  height: 12px;
  box-shadow: 0 0 20px rgba(79, 172, 254, 0.8);
}

@media (max-width: 768px) {
  .custom-cursor,
  .cursor-dot {
    display: none;
  }
}
.notification {
  position: fixed;
  top: 20px;
  right: 20px;
  min-width: 320px;
  max-width: 400px;
  background: rgba(15, 21, 40, 0.95);
  backdrop-filter: blur(20px);
  border-radius: 16px;
  padding: 1.2rem 1.5rem;
  display: flex;
  align-items: center;
  gap: 1rem;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5), 0 0 0 1px rgba(79, 172, 254, 0.2) inset;
  z-index: 10001;
  transform: translateX(450px);
  opacity: 0;
  transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
}
.notification.show {
  transform: translateX(0);
  opacity: 1;
}
.notification .notification-icon {
  width: 40px;
  height: 40px;
  flex-shrink: 0;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.notification .notification-icon svg {
  width: 24px;
  height: 24px;
  color: white;
}
.notification .notification-content {
  flex: 1;
}
.notification .notification-content p {
  margin: 0;
  color: white;
  font-size: 0.95rem;
  font-weight: 500;
  line-height: 1.5;
}
.notification .notification-close {
  width: 32px;
  height: 32px;
  flex-shrink: 0;
  background: rgba(255, 255, 255, 0.1);
  border: none;
  border-radius: 8px;
  color: white;
  font-size: 1.5rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}
.notification .notification-close:hover {
  background: rgba(255, 255, 255, 0.2);
  transform: scale(1.1);
}
.notification.success {
  border-left: 4px solid #4facfe;
}
.notification.success .notification-icon {
  background: linear-gradient(135deg, #4facfe 0%, #00f2fe 100%);
  box-shadow: 0 4px 15px rgba(79, 172, 254, 0.4);
}
.notification.error {
  border-left: 4px solid #ef4444;
}
.notification.error .notification-icon {
  background: linear-gradient(135deg, #ef4444 0%, #dc2626 100%);
  box-shadow: 0 4px 15px rgba(239, 68, 68, 0.4);
}
.notification.info {
  border-left: 4px solid #a855f7;
}
.notification.info .notification-icon {
  background: linear-gradient(135deg, #a855f7 0%, #d946ef 100%);
  box-shadow: 0 4px 15px rgba(168, 85, 247, 0.4);
}
@media (max-width: 576px) {
  .notification {
    min-width: auto;
    max-width: calc(100% - 40px);
    right: 20px;
    left: 20px;
  }
}

.input-group.valid input,
.input-group.valid textarea {
  border-color: #4facfe !important;
  box-shadow: 0 0 0 4px rgba(79, 172, 254, 0.15), 0 4px 15px rgba(79, 172, 254, 0.2) !important;
}
.input-group.valid label {
  color: #4facfe !important;
}
.input-group.valid::after {
  content: "✓";
  position: absolute;
  right: 1.5rem;
  top: 50%;
  transform: translateY(-50%);
  color: #4facfe;
  font-size: 1.2rem;
  font-weight: bold;
  animation: checkmarkPop 0.3s cubic-bezier(0.23, 1, 0.32, 1);
}
.input-group.invalid input,
.input-group.invalid textarea {
  border-color: #ef4444 !important;
  box-shadow: 0 0 0 4px rgba(239, 68, 68, 0.15), 0 4px 15px rgba(239, 68, 68, 0.2) !important;
}
.input-group.invalid label {
  color: #ef4444 !important;
}
.input-group.invalid::after {
  content: "✕";
  position: absolute;
  right: 1.5rem;
  top: 50%;
  transform: translateY(-50%);
  color: #ef4444;
  font-size: 1.2rem;
  font-weight: bold;
  animation: errorShake 0.4s ease;
}
.input-group.focused input,
.input-group.focused textarea {
  border-color: #4facfe !important;
}

.input-ripple {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  border-radius: 50%;
  background: rgba(79, 172, 254, 0.3);
  transform: translate(-50%, -50%);
  animation: rippleEffect 0.6s ease-out;
  pointer-events: none;
}

.submit-btn.loading {
  pointer-events: none;
  opacity: 0.8;
}
.submit-btn.loading .spinner {
  width: 20px;
  height: 20px;
  border: 3px solid rgba(255, 255, 255, 0.3);
  border-top-color: white;
  border-radius: 50%;
  animation: spin 0.8s linear infinite;
}
.submit-btn.success {
  background: linear-gradient(135deg, #10b981 0%, #059669 100%) !important;
  box-shadow: 0 10px 35px rgba(16, 185, 129, 0.4) !important;
}
.submit-btn.success svg {
  animation: checkmarkPop 0.4s cubic-bezier(0.23, 1, 0.32, 1);
}
.submit-btn.error {
  animation: errorShake 0.4s ease;
}

.particles-container {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  pointer-events: none;
  z-index: 1;
}

.particle {
  position: absolute;
  background: radial-gradient(circle, rgba(79, 172, 254, 0.6) 0%, transparent 70%);
  border-radius: 50%;
  animation: floatParticle 15s ease-in-out infinite;
  opacity: 0;
}
.particle:nth-child(odd) {
  background: radial-gradient(circle, rgba(168, 85, 247, 0.5) 0%, transparent 70%);
}

@keyframes rippleEffect {
  from {
    width: 0;
    height: 0;
    opacity: 1;
  }
  to {
    width: 500px;
    height: 500px;
    opacity: 0;
  }
}
@keyframes checkmarkPop {
  0% {
    transform: translateY(-50%) scale(0);
    opacity: 0;
  }
  50% {
    transform: translateY(-50%) scale(1.2);
  }
  100% {
    transform: translateY(-50%) scale(1);
    opacity: 1;
  }
}
@keyframes errorShake {
  0%, 100% {
    transform: translateX(0);
  }
  25% {
    transform: translateX(-10px);
  }
  75% {
    transform: translateX(10px);
  }
}
@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}
@keyframes floatParticle {
  0% {
    transform: translate(0, 0) scale(0);
    opacity: 0;
  }
  10% {
    opacity: 0.6;
  }
  50% {
    transform: translate(var(--tx, 50px), var(--ty, -100px)) scale(1);
    opacity: 0.8;
  }
  90% {
    opacity: 0.4;
  }
  100% {
    transform: translate(var(--tx, 100px), var(--ty, -200px)) scale(0);
    opacity: 0;
  }
}
.glass-panel.animate-in,
.info-row.animate-in,
.input-group.animate-in,
.map-container.animate-in {
  animation: fadeInScale 0.6s cubic-bezier(0.23, 1, 0.32, 1) forwards;
}

@keyframes fadeInScale {
  from {
    opacity: 0;
    transform: scale(0.95) translateY(20px);
  }
  to {
    opacity: 1;
    transform: scale(1) translateY(0);
  }
}
.spinner {
  display: inline-block;
  width: 20px;
  height: 20px;
  border: 3px solid rgba(255, 255, 255, 0.3);
  border-top-color: white;
  border-radius: 50%;
  animation: spin 0.8s linear infinite;
}

@media (max-width: 768px) {
  .notification {
    min-width: auto;
    max-width: calc(100% - 40px);
  }
  .particles-container {
    display: none;
  }
}
@media (prefers-reduced-motion: reduce) {
  .custom-cursor,
  .cursor-dot,
  .particle,
  .input-ripple {
    animation: none !important;
    transition: none !important;
  }
  .glass-panel,
  .notification {
    transition: opacity 0.2s ease !important;
  }
}
@media print {
  .custom-cursor,
  .cursor-dot,
  .notification,
  .particles-container {
    display: none !important;
  }
}
.footer-modern {
  background: linear-gradient(135deg, #12182b 0%, #151b35 25%, #1a2240 50%, #1d2548 75%, #1f2850 100%);
  color: #fff;
  padding: 4rem 0 0;
  position: relative;
  overflow: hidden;
}
.footer-modern::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent 0%, rgba(79, 172, 254, 0.4) 30%, rgba(138, 85, 247, 0.3) 70%, transparent 100%);
}
.footer-modern .container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}
.footer-modern .footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 3rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}
@media (max-width: 992px) {
  .footer-modern .footer-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 2.5rem;
  }
}
@media (max-width: 576px) {
  .footer-modern .footer-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
}
.footer-modern .footer-col.footer-brand .footer-logo {
  margin-bottom: 1.5rem;
}
.footer-modern .footer-col.footer-brand .footer-logo .footer-logo-img {
  height: 60px;
  width: auto;
  filter: brightness(1.1);
}
.footer-modern .footer-col.footer-brand .footer-desc {
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.8;
  margin-bottom: 1.5rem;
  font-size: 0.95rem;
}
.footer-modern .footer-col.footer-brand .footer-social {
  display: flex;
  gap: 0.8rem;
}
.footer-modern .footer-col.footer-brand .footer-social .social-link {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}
.footer-modern .footer-col.footer-brand .footer-social .social-link svg {
  width: 18px;
  height: 18px;
  color: rgba(255, 255, 255, 0.7);
  transition: color 0.3s ease;
}
.footer-modern .footer-col.footer-brand .footer-social .social-link:hover {
  background: rgba(79, 172, 254, 0.1);
  border-color: #4facfe;
  transform: translateY(-3px);
}
.footer-modern .footer-col.footer-brand .footer-social .social-link:hover svg {
  color: #4facfe;
}
.footer-modern .footer-col .footer-title {
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  color: #fff;
  position: relative;
  padding-bottom: 0.8rem;
}
.footer-modern .footer-col .footer-title::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 40px;
  height: 2px;
  background: linear-gradient(90deg, #4facfe 0%, transparent 100%);
}
.footer-modern .footer-col .footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
}
.footer-modern .footer-col .footer-links li {
  margin-bottom: 0.8rem;
}
.footer-modern .footer-col .footer-links li a {
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
  font-size: 0.95rem;
  transition: all 0.3s ease;
  display: inline-block;
}
.footer-modern .footer-col .footer-links li a:hover {
  color: #4facfe;
  transform: translateX(5px);
}
.footer-modern .footer-col .footer-contact {
  list-style: none;
  padding: 0;
  margin: 0;
}
.footer-modern .footer-col .footer-contact li {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  margin-bottom: 1.2rem;
}
.footer-modern .footer-col .footer-contact li svg {
  width: 20px;
  height: 20px;
  color: #4facfe;
  flex-shrink: 0;
  margin-top: 2px;
}
.footer-modern .footer-col .footer-contact li span {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.95rem;
  line-height: 1.6;
}
.footer-modern .footer-col .footer-contact li span a {
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
  transition: color 0.3s ease;
}
.footer-modern .footer-col .footer-contact li span a:hover {
  color: #4facfe;
}
.footer-modern .footer-bottom {
  padding: 2rem 0;
}
.footer-modern .footer-bottom .footer-bottom-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
}
@media (max-width: 768px) {
  .footer-modern .footer-bottom .footer-bottom-content {
    flex-direction: column;
    text-align: center;
  }
}
.footer-modern .footer-bottom .footer-bottom-content .copyright {
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.9rem;
  margin: 0;
}
.footer-modern .footer-bottom .footer-bottom-content .copyright strong {
  color: #4facfe;
  font-weight: 700;
}
.footer-modern .footer-bottom .footer-bottom-content .footer-bottom-links {
  display: flex;
  align-items: center;
  gap: 1rem;
}
.footer-modern .footer-bottom .footer-bottom-content .footer-bottom-links a {
  color: rgba(255, 255, 255, 0.5);
  text-decoration: none;
  font-size: 0.9rem;
  transition: color 0.3s ease;
}
.footer-modern .footer-bottom .footer-bottom-content .footer-bottom-links a:hover {
  color: #4facfe;
}
.footer-modern .footer-bottom .footer-bottom-content .footer-bottom-links .separator {
  color: rgba(255, 255, 255, 0.3);
}

.contact-premium {
  position: relative;
  background: #0f172a;
  background: linear-gradient(180deg, #0f172a 0%, #1e293b 100%);
  padding: clamp(4rem, 8vh, 8rem) 0;
  overflow: hidden;
  color: #fff;
}
.contact-premium .glow-bg {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 800px;
  height: 800px;
  background: radial-gradient(circle, rgba(79, 172, 254, 0.15) 0%, transparent 70%);
  border-radius: 50%;
  filter: blur(80px);
  z-index: 0;
  pointer-events: none;
}
.contact-premium .container {
  position: relative;
  z-index: 2;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}
.contact-premium .section-header {
  text-align: center;
  margin-bottom: 4rem;
}
.contact-premium .section-header .badge {
  display: inline-block;
  padding: 6px 14px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 50px;
  color: #4facfe;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 2px;
  margin-bottom: 1.5rem;
}
.contact-premium .section-header .title {
  font-size: clamp(2.5rem, 5vw, 3.5rem);
  font-weight: 800;
  color: #fff;
  margin-bottom: 1rem;
  line-height: 1.1;
}
.contact-premium .section-header .desc {
  color: rgba(255, 255, 255, 0.6);
  font-size: 1.1rem;
}
.contact-premium .contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: stretch;
}
@media (max-width: 992px) {
  .contact-premium .contact-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
}
.contact-premium .glass-panel {
  background: rgba(255, 255, 255, 0.03);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 24px;
  padding: 3rem;
  display: flex;
  flex-direction: column;
  height: 100%;
  box-shadow: 0 20px 40px -10px rgba(0, 0, 0, 0.3);
  transition: transform 0.3s ease;
}
.contact-premium .glass-panel:hover {
  border-color: rgba(255, 255, 255, 0.15);
  background: rgba(255, 255, 255, 0.04);
}
.contact-premium .glass-panel .panel-title {
  font-size: 1.8rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
  color: #fff;
}
.contact-premium .glass-panel .panel-desc {
  color: rgba(255, 255, 255, 0.5);
  margin-bottom: 2.5rem;
  font-size: 1rem;
}
@media (max-width: 576px) {
  .contact-premium .glass-panel {
    padding: 2rem;
  }
}
.contact-premium .info-panel .contact-list {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}
.contact-premium .info-panel .contact-row {
  display: flex;
  align-items: flex-start;
  gap: 1.5rem;
}
.contact-premium .info-panel .contact-row .icon-circle {
  width: 48px;
  height: 48px;
  flex-shrink: 0;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.contact-premium .info-panel .contact-row .icon-circle svg {
  width: 22px;
  height: 22px;
  color: white;
}
.contact-premium .info-panel .contact-row .icon-circle.blue {
  background: linear-gradient(135deg, #4facfe, #00f2fe);
  box-shadow: 0 4px 12px rgba(79, 172, 254, 0.3);
}
.contact-premium .info-panel .contact-row .icon-circle.purple {
  background: linear-gradient(135deg, #a855f7, #d946ef);
  box-shadow: 0 4px 12px rgba(168, 85, 247, 0.3);
}
.contact-premium .info-panel .contact-row .icon-circle.orange {
  background: linear-gradient(135deg, #fb923c, #f97316);
  box-shadow: 0 4px 12px rgba(251, 146, 60, 0.3);
}
.contact-premium .info-panel .contact-row .row-content .label {
  display: block;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: rgba(255, 255, 255, 0.4);
  margin-bottom: 5px;
  font-weight: 600;
}
.contact-premium .info-panel .contact-row .row-content .value {
  display: block;
  font-size: 1.1rem;
  color: white;
  font-weight: 500;
  line-height: 1.4;
}
.contact-premium .info-panel .contact-row .row-content .value.link {
  transition: color 0.2s;
}
.contact-premium .info-panel .contact-row .row-content .value.link:hover {
  color: #4facfe;
}
.contact-premium .info-panel .panel-footer {
  margin-top: auto;
  padding-top: 2rem;
  opacity: 0.3;
}
.contact-premium .form-panel .form-inputs-stack {
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
}
.contact-premium .form-panel .input-group {
  position: relative;
}
.contact-premium .form-panel .input-group input,
.contact-premium .form-panel .input-group textarea {
  width: 100%;
  background: rgba(15, 23, 42, 0.6);
  border: 2px solid rgba(255, 255, 255, 0.08);
  border-radius: 12px;
  padding: 1rem 1.2rem;
  font-size: 1rem;
  color: white;
  outline: none;
  transition: all 0.3s ease;
  font-family: inherit;
}
.contact-premium .form-panel .input-group input:focus, .contact-premium .form-panel .input-group input:not(:placeholder-shown),
.contact-premium .form-panel .input-group textarea:focus,
.contact-premium .form-panel .input-group textarea:not(:placeholder-shown) {
  border-color: #4facfe;
  background: rgba(15, 23, 42, 0.9);
}
.contact-premium .form-panel .input-group input:focus + label, .contact-premium .form-panel .input-group input:not(:placeholder-shown) + label,
.contact-premium .form-panel .input-group textarea:focus + label,
.contact-premium .form-panel .input-group textarea:not(:placeholder-shown) + label {
  transform: translateY(-24px) scale(0.85);
  background: #0f172a;
  color: #4facfe;
  padding: 0 5px;
}
.contact-premium .form-panel .input-group textarea {
  min-height: 120px;
  resize: vertical;
}
.contact-premium .form-panel .input-group label {
  position: absolute;
  left: 1rem;
  top: 1rem;
  color: rgba(255, 255, 255, 0.5);
  pointer-events: none;
  transform-origin: left top;
  transition: all 0.3s ease;
}
.contact-premium .form-panel .submit-btn {
  margin-top: 1rem;
  width: 100%;
  padding: 1rem;
  background: #4facfe;
  background: linear-gradient(90deg, #4facfe, #00f2fe);
  border: none;
  border-radius: 12px;
  color: white;
  font-weight: 700;
  font-size: 1rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  transition: all 0.3s ease;
  box-shadow: 0 10px 20px rgba(79, 172, 254, 0.3);
}
.contact-premium .form-panel .submit-btn svg {
  width: 20px;
  height: 20px;
  transition: transform 0.3s;
}
.contact-premium .form-panel .submit-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 15px 30px rgba(79, 172, 254, 0.5);
}
.contact-premium .form-panel .submit-btn:hover svg {
  transform: translate(3px, -3px);
}

/*# sourceMappingURL=style.css.map */
