@charset "UTF-8";
/* Brand Colors - Sophisticated Red & Charcoal */
/* Fonts */
/* Transitions */
/* Shadows & Glass */
:root {
  --primary-color: #1F2937;
  --accent-color: #EF4444;
  --secondary-color: #4B5563;
  --dark-color: #111827;
  --light-color: #FFFFFF;
  --gray-light: #F9FAFB;
  --gray-medium: #F3F4F6;
  --gray-dark: #6B7280;
  --text-color: #374151;
}

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: "Open Sans", sans-serif;
  line-height: 1.6;
  color: #374151;
  background-color: #FFFFFF;
  overflow-x: hidden;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

ul, ol {
  list-style: none;
}

a {
  text-decoration: none;
  color: inherit;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

button {
  cursor: pointer;
  border: none;
  background: none;
  font-family: inherit;
}

input, select, textarea {
  font-family: inherit;
  outline: none;
}

h1, h2, h3, h4, h5, h6 {
  font-family: "Poppins", sans-serif;
  font-weight: 700;
  line-height: 1.2;
  color: #111827;
  margin-bottom: 1rem;
}

h1 {
  font-size: clamp(2.5rem, 5vw, 4rem);
  letter-spacing: -0.02em;
}

h2 {
  font-size: clamp(1.8rem, 4vw, 3rem);
  text-align: center;
  margin-bottom: 2rem;
}
@media (max-width: 768px) {
  h2 {
    margin-bottom: 1.5rem;
  }
}

h3 {
  font-size: 1.75rem;
}
@media (max-width: 768px) {
  h3 {
    font-size: 1.4rem;
  }
}

p {
  margin-bottom: 1.5rem;
}

.text-center {
  text-align: center;
}

.text-accent {
  color: #EF4444;
}

.text-primary {
  color: #1F2937;
}

.text-muted {
  color: #6B7280;
}

.section-title {
  position: relative;
  display: inline-block;
}
.section-title::after {
  content: "";
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 4px;
  background-color: #EF4444;
  border-radius: 2px;
}

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

.grid {
  display: grid;
  gap: 2rem;
}
@media (max-width: 576px) {
  .grid {
    gap: 1.5rem;
  }
}

.grid-2 {
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 350px), 1fr));
}

.grid-3 {
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 300px), 1fr));
}

.grid-4 {
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 250px), 1fr));
}

/* Responsive Display Utilities */
.d-none {
  display: none;
}

.d-block {
  display: block;
}

.d-flex {
  display: flex;
}

@media (min-width: 768px) {
  .d-md-none {
    display: none;
  }
  .d-md-block {
    display: block;
  }
  .d-md-flex {
    display: flex;
  }
}
@media (max-width: 767px) {
  .hidden-mobile {
    display: none !important;
  }
}
.section-padding {
  padding: 80px 0;
}
@media (max-width: 991px) {
  .section-padding {
    padding: 60px 0;
  }
}
@media (max-width: 576px) {
  .section-padding {
    padding: 40px 0;
  }
}

.bg-light {
  background-color: #F9FAFB;
}

.flex {
  display: flex;
  align-items: center;
}

.justify-between {
  justify-content: space-between;
}

.gap-1 {
  gap: 1rem;
}

.relative {
  position: relative;
}

.logo {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.logo .logo-img {
  max-height: 48px;
  width: auto;
  -o-object-fit: contain;
     object-fit: contain;
}
@media (max-width: 991px) {
  .logo .logo-img {
    max-height: 40px;
  }
}
@media (max-width: 768px) {
  .logo .logo-img {
    max-height: 34px;
  }
}

.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  padding: 1rem 0;
}
.header.scrolled {
  background: white;
  padding: 0.8rem 0;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
  border-bottom: 1px solid #F3F4F6;
}
.header .nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.header .nav-links {
  display: flex;
  gap: 2rem;
}
@media (max-width: 991px) {
  .header .nav-links {
    display: none;
  }
}
.header .nav-links a {
  font-weight: 500;
  color: #111827;
  position: relative;
}
.header .nav-links a::after {
  content: "";
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 0;
  height: 2px;
  background: #EF4444;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}
.header .nav-links a:hover, .header .nav-links a.active {
  color: #1F2937;
}
.header .nav-links a:hover::after, .header .nav-links a.active::after {
  width: 100%;
}
.header .mobile-toggle {
  display: none;
  font-size: 1.8rem;
  color: #1F2937;
  cursor: pointer;
  background: transparent;
  border: none;
  padding: 0.5rem;
  position: relative;
  z-index: 1100;
}
@media (max-width: 991px) {
  .header .mobile-toggle {
    display: flex;
    align-items: center;
    justify-content: center;
  }
}

.mobile-menu {
  position: fixed;
  top: 0;
  right: -100%;
  width: 80%;
  max-width: 400px;
  height: 100vh;
  background: #FFFFFF;
  z-index: 2000;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  padding: 2rem;
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
}
.mobile-menu.active {
  right: 0;
}
.mobile-menu .close-menu {
  position: absolute;
  top: 1rem;
  right: 1rem;
  font-size: 2rem;
}
.mobile-menu ul {
  margin-top: 3rem;
}
.mobile-menu ul li {
  margin-bottom: 2rem;
}
.mobile-menu ul li a {
  font-size: 1.5rem;
  font-weight: 600;
  display: block;
}

.menu-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.5);
  z-index: 1500;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}
.menu-overlay.active {
  opacity: 1;
  visibility: visible;
}

.footer {
  background: #111827;
  color: #FFFFFF;
  padding: 80px 0 20px;
}
.footer h4 {
  color: #FFFFFF;
  margin-bottom: 2rem;
  font-size: 1.25rem;
}
.footer .footer-links {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.footer .footer-links a {
  color: rgba(255, 255, 255, 0.7);
}
.footer .footer-links a:hover {
  color: #EF4444;
  padding-left: 5px;
}
.footer .contact-info {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}
.footer .contact-info .item {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
}
.footer .contact-info .item i {
  color: #EF4444;
  font-size: 1.2rem;
}
.footer .bottom-bar {
  margin-top: 60px;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  text-align: center;
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.5);
}

.book-now-fixed {
  display: none !important;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.8rem 2rem;
  border-radius: 50px;
  font-weight: 600;
  transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  gap: 0.5rem;
  position: relative;
  overflow: hidden;
}
.btn::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  transform: translate(-50%, -50%);
  transition: width 0.6s, height 0.6s;
}
.btn:active::before {
  width: 300px;
  height: 300px;
  opacity: 0;
}
.btn-primary {
  background: #1F2937;
  color: #FFFFFF;
}
.btn-primary:hover {
  background: rgb(49.3837209302, 65.3139534884, 87.6162790698);
  transform: translateY(-3px);
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
}
.btn-accent {
  background: #EF4444;
  color: #FFFFFF;
}
.btn-accent:hover {
  background: rgb(234.9802955665, 21.0197044335, 21.0197044335);
  transform: translateY(-3px);
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
}
.btn-outline {
  border: 2px solid #1F2937;
  color: #1F2937;
}
.btn-outline:hover {
  background: #1F2937;
  color: #FFFFFF;
  transform: translateY(-3px);
}
.btn-block {
  display: flex;
  width: 100%;
}
.btn-sm {
  padding: 0.5rem 1.2rem;
  font-size: 0.9rem;
}
.btn-floating {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  z-index: 1000;
  padding: 0.64rem 1.6rem;
  font-size: 0.9rem;
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
  animation: bounceIn 0.8s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  border: none;
}
@media (max-width: 768px) {
  .btn-floating {
    bottom: 1.5rem;
    right: 1.5rem;
    padding: 0.6rem 1.4rem;
    font-size: 0.85rem;
  }
}

@keyframes bounceIn {
  from {
    transform: scale(0) translateY(100px);
    opacity: 0;
  }
  to {
    transform: scale(1) translateY(0);
    opacity: 1;
  }
}
.ripple-effect {
  position: absolute;
  background: rgba(255, 255, 255, 0.4);
  border-radius: 50%;
  transform: translate(-50%, -50%);
  pointer-events: none;
  animation: ripple 0.6s linear;
}

@keyframes ripple {
  from {
    width: 0;
    height: 0;
    opacity: 0.5;
  }
  to {
    width: 400px;
    height: 400px;
    opacity: 0;
  }
}
.card {
  background: #FFFFFF;
  border-radius: 20px;
  overflow: hidden;
  transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  border: 1px solid #F3F4F6;
}
.card:hover {
  transform: translateY(-10px);
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
}
.card:hover .card-img img {
  transform: scale(1.1);
}
.card-glass {
  background: rgba(255, 255, 255, 0.8);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.3);
}
.card-img {
  height: 200px;
  overflow: hidden;
  position: relative;
}
.card-img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}
.card-img .badge {
  position: absolute;
  top: 1rem;
  right: 1rem;
  background: #EF4444;
  padding: 0.2rem 0.8rem;
  border-radius: 10px;
  font-size: 0.8rem;
  font-weight: 600;
}
.card-content {
  padding: 1.5rem;
}
.card-content h3 {
  font-size: 1.25rem;
  margin-bottom: 0.5rem;
}
.card-content p {
  font-size: 0.9rem;
  color: #6B7280;
  margin-bottom: 1.5rem;
}

.service-card {
  text-align: center;
  padding: 2rem;
}
.service-card .icon {
  width: 70px;
  height: 70px;
  background: rgba(31, 41, 55, 0.1);
  color: #1F2937;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  font-size: 2rem;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}
.service-card:hover .icon {
  background: #1F2937;
  color: #FFFFFF;
  transform: rotateY(360deg);
}

.form-group {
  margin-bottom: 1.5rem;
}
.form-group label {
  display: block;
  font-weight: 600;
  margin-bottom: 0.5rem;
  font-size: 0.9rem;
  color: #111827;
}
.form-group input, .form-group select, .form-group textarea {
  width: 100%;
  padding: 1rem 1.2rem;
  background: #F9FAFB;
  border: 1px solid #F3F4F6;
  border-radius: 12px;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}
.form-group input:focus, .form-group select:focus, .form-group textarea:focus {
  background: #FFFFFF;
  border-color: #1F2937;
  box-shadow: 0 0 0 4px rgba(31, 41, 55, 0.1);
}
.form-group textarea {
  min-height: 120px;
  resize: vertical;
}

.booking-form {
  background: #FFFFFF;
  padding: 2.5rem;
  border-radius: 24px;
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
}
.booking-form h3 {
  margin-bottom: 1.5rem;
  text-align: left;
}

.mini-booking {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1rem;
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(5px);
  padding: 1.5rem;
  border-radius: 20px;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
  margin-top: 2rem;
}
@media (max-width: 991px) {
  .mini-booking {
    margin-left: auto;
    margin-right: auto;
    max-width: 600px;
    text-align: left;
  }
}
@media (max-width: 576px) {
  .mini-booking {
    grid-template-columns: 1fr;
    padding: 1rem;
    gap: 0.8rem;
  }
  .mini-booking .btn {
    padding: 1rem;
    height: auto;
  }
}
.mini-booking .form-group {
  margin-bottom: 0;
}
.mini-booking .btn {
  height: 100%;
}

[data-reveal] {
  opacity: 0;
  transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

[data-reveal=top] {
  transform: translateY(-50px);
}

[data-reveal=bottom] {
  transform: translateY(50px);
}

[data-reveal=left] {
  transform: translateX(-50px);
}

[data-reveal=right] {
  transform: translateX(50px);
}

.revealed {
  opacity: 1 !important;
  transform: translate(0) !important;
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@keyframes slideUp {
  from {
    transform: translateY(30px);
    opacity: 0;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}
.animate-fade {
  animation: fadeIn 1s forwards;
}

.animate-slide-up {
  animation: slideUp 0.8s ease-out forwards;
}

.stagger-1 {
  transition-delay: 0.1s;
}

.stagger-2 {
  transition-delay: 0.2s;
}

.stagger-3 {
  transition-delay: 0.3s;
}

.stagger-4 {
  transition-delay: 0.4s;
}

@keyframes float {
  0% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(-20px);
  }
  100% {
    transform: translateY(0px);
  }
}
@keyframes glowPulse {
  0% {
    box-shadow: 0 0 5px rgba(0, 209, 255, 0.2);
  }
  50% {
    box-shadow: 0 0 25px rgba(0, 209, 255, 0.5);
  }
  100% {
    box-shadow: 0 0 5px rgba(0, 209, 255, 0.2);
  }
}
@keyframes textShine {
  0% {
    background-position: 0% 50%;
  }
  100% {
    background-position: 100% 50%;
  }
}
.animate-float {
  animation: float 6s ease-in-out infinite;
}

.animate-glow {
  animation: glowPulse 4s infinite;
}

.gradient-text {
  background: linear-gradient(90deg, #1F2937, #EF4444, #4B5563, #EF4444);
  background-size: 300% auto;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  display: inline-block;
  animation: textShine 6s linear infinite alternate;
}

.futuristic-card {
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: 0 8px 32px 0 rgba(31, 38, 135, 0.37);
}

.branches-section {
  padding: 60px 0;
  background: white;
}
@media (max-width: 768px) {
  .branches-section {
    padding: 40px 0;
  }
}
.branches-section .branches-container {
  position: relative;
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 60px;
}
@media (max-width: 991px) {
  .branches-section .branches-container {
    padding: 0 50px;
  }
}
@media (max-width: 768px) {
  .branches-section .branches-container {
    padding: 0 15px;
  }
}
.branches-section .branches-slider {
  overflow: hidden;
  border-radius: 32px;
  background: #F9FAFB;
  border: 1px solid #F3F4F6;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
}
@media (max-width: 768px) {
  .branches-section .branches-slider {
    border-radius: 20px;
  }
}
.branches-section .branches-track {
  display: flex;
  transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}
.branches-section .studio-slide {
  min-width: 100%;
  padding: 4rem;
}
@media (max-width: 991px) {
  .branches-section .studio-slide {
    padding: 2.5rem;
  }
}
@media (max-width: 768px) {
  .branches-section .studio-slide {
    padding: 1.5rem;
  }
}
@media (max-width: 480px) {
  .branches-section .studio-slide {
    padding: 1rem;
  }
}
.branches-section .studio-slide .grid-2 {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  align-items: stretch;
  gap: 4rem;
}
@media (max-width: 991px) {
  .branches-section .studio-slide .grid-2 {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
}
@media (max-width: 768px) {
  .branches-section .studio-slide .grid-2 {
    gap: 1.2rem;
  }
}
.branches-section .studio-slide h3 {
  color: #1F2937;
  margin-bottom: 2rem;
  display: flex;
  align-items: center;
  gap: 1rem;
  font-size: 2.2rem;
  font-weight: 800;
}
@media (max-width: 768px) {
  .branches-section .studio-slide h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    gap: 0.8rem;
  }
}
.branches-section .studio-slide h3 i {
  color: #EF4444;
}
@media (max-width: 768px) {
  .branches-section .studio-slide h3 i {
    width: 24px;
    height: 24px;
  }
}
.branches-section .studio-slide .branch-details {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}
@media (max-width: 768px) {
  .branches-section .studio-slide .branch-details {
    gap: 1rem;
  }
}
.branches-section .studio-slide .branch-details .detail-item {
  display: flex;
  gap: 1.5rem;
  align-items: flex-start;
  color: #6B7280;
  font-size: 1.15rem;
  line-height: 1.6;
}
@media (max-width: 768px) {
  .branches-section .studio-slide .branch-details .detail-item {
    gap: 1rem;
    font-size: 1rem;
  }
}
.branches-section .studio-slide .branch-details .detail-item i {
  color: #EF4444;
  font-size: 1.6rem;
  margin-top: 4px;
  flex-shrink: 0;
}
@media (max-width: 768px) {
  .branches-section .studio-slide .branch-details .detail-item i {
    font-size: 1.2rem;
    margin-top: 2px;
  }
}
.branches-section .studio-slide .branch-details .detail-item strong {
  color: #111827;
  display: block;
  margin-bottom: 0.4rem;
  font-weight: 700;
  font-family: "Poppins", sans-serif;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-size: 0.9rem;
}
@media (max-width: 768px) {
  .branches-section .studio-slide .branch-details .detail-item strong {
    font-size: 0.8rem;
    margin-bottom: 0.2rem;
  }
}
.branches-section .studio-slide .studio-map-container {
  width: 100%;
  height: 100%;
  min-height: 400px;
  background: rgb(228.4285714286, 230.6428571429, 235.0714285714);
  border-radius: 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: #6B7280;
  font-weight: 600;
  overflow: hidden;
  position: relative;
  border: 1px solid #F3F4F6;
}
@media (max-width: 991px) {
  .branches-section .studio-slide .studio-map-container {
    min-height: 250px;
    order: -1;
  }
}
@media (max-width: 768px) {
  .branches-section .studio-slide .studio-map-container {
    min-height: 200px;
    border-radius: 12px;
  }
}
.branches-section .studio-slide .studio-map-container i {
  font-size: 3rem;
  color: #1F2937;
  margin-bottom: 1rem;
}
@media (max-width: 768px) {
  .branches-section .studio-slide .studio-map-container i {
    font-size: 2rem;
    margin-bottom: 0.5rem;
  }
}
.branches-section .studio-slide .studio-map-container span {
  font-size: 1.1rem;
}
@media (max-width: 768px) {
  .branches-section .studio-slide .studio-map-container span {
    font-size: 0.9rem;
  }
}
.branches-section .studio-slide .studio-map-container::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(45deg, rgba(31, 41, 55, 0.05), transparent);
}
.branches-section .branch-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 54px;
  height: 54px;
  border-radius: 50%;
  background: white;
  border: 1px solid #F3F4F6;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 10;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1), 0 1px 2px rgba(0, 0, 0, 0.06);
  color: #1F2937;
}
.branches-section .branch-nav:hover {
  background: #1F2937;
  color: white;
  border-color: #1F2937;
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
  transform: translateY(-50%) scale(1.1);
}
.branches-section .branch-nav:active {
  transform: translateY(-50%) scale(0.95);
}
.branches-section .branch-nav.branch-prev {
  left: 0;
}
.branches-section .branch-nav.branch-next {
  right: 0;
}
@media (max-width: 768px) {
  .branches-section .branch-nav {
    width: 40px;
    height: 40px;
  }
  .branches-section .branch-nav.branch-prev {
    left: 2px;
  }
  .branches-section .branch-nav.branch-next {
    right: 2px;
  }
  .branches-section .branch-nav i {
    width: 18px;
    height: 18px;
  }
}

.hero {
  padding: 160px 0 100px;
  background: linear-gradient(135deg, #FFFFFF 0%, #F9FAFB 100%);
  position: relative;
  overflow: hidden;
}
@media (max-width: 991px) {
  .hero {
    padding: 100px 0 40px;
    text-align: center;
  }
  .hero .grid-2 {
    display: flex;
    flex-direction: column;
    gap: 3rem;
  }
  .hero .hero-content {
    padding: 0 15px;
  }
}
@media (max-width: 768px) {
  .hero {
    padding: 80px 0 30px;
  }
  .hero h1 {
    font-size: 2.2rem;
  }
  .hero p {
    font-size: 1rem;
  }
}
.hero::before {
  content: "";
  position: absolute;
  top: -10%;
  right: -10%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(31, 41, 55, 0.05) 0%, transparent 70%);
  border-radius: 50%;
}
.hero.futuristic-hero {
  background: radial-gradient(circle at top left, #f8fbff, #ffffff);
  overflow: hidden;
}
.hero.futuristic-hero::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: linear-gradient(rgba(239, 68, 68, 0.05) 1px, transparent 1px), linear-gradient(90deg, rgba(239, 68, 68, 0.05) 1px, transparent 1px);
  background-size: 50px 50px;
  z-index: 1;
  pointer-events: none;
}
.hero.futuristic-hero .container {
  position: relative;
  z-index: 5;
}
.hero .hero-content {
  position: relative;
  z-index: 2;
}
.hero .hero-content h1 {
  margin-bottom: 1.5rem;
}
.hero .hero-content p {
  font-size: 1.25rem;
  color: #6B7280;
}
.hero .hero-img {
  position: relative;
  z-index: 2;
}
.hero .hero-img .glow-container {
  position: relative;
}
.hero .hero-img .glow-container::before {
  content: "";
  position: absolute;
  inset: -20px;
  background: radial-gradient(circle, rgba(239, 68, 68, 0.2) 0%, transparent 70%);
  z-index: -1;
  filter: blur(30px);
}
.hero .hero-img .main-hero-img {
  border-radius: 40px;
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
  border: 1px solid rgba(239, 68, 68, 0.1);
}

.floating-badge {
  position: absolute;
  background: rgba(255, 255, 255, 0.8);
  backdrop-filter: blur(12px);
  padding: 0.8rem 1.5rem;
  border-radius: 20px;
  font-weight: 700;
  display: flex;
  align-items: center;
  gap: 0.8rem;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.5);
  z-index: 10;
  color: #1F2937;
}
.floating-badge i {
  color: #EF4444;
}
.floating-badge.top-right {
  top: 20px;
  right: -30px;
}
.floating-badge.bottom-left {
  bottom: 40px;
  left: -40px;
}
@media (max-width: 768px) {
  .floating-badge {
    display: none;
  }
}

.trust-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  margin-top: 3rem;
}
@media (max-width: 991px) {
  .trust-badges {
    justify-content: center;
    gap: 1rem;
  }
}
@media (max-width: 576px) {
  .trust-badges {
    flex-direction: column;
    align-items: center;
  }
}
.trust-badges .badge {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-weight: 600;
  font-size: 0.9rem;
  color: #111827;
}
.trust-badges .badge i {
  color: #EF4444;
}

.client-section {
  padding: 40px 0;
  background: white;
  overflow: hidden;
  border-top: 1px solid #F3F4F6;
  border-bottom: 1px solid #F3F4F6;
}
.client-section .client-slider {
  display: flex;
  width: 2500px;
  animation: scroll 15s linear infinite;
  gap: 4rem;
  align-items: center;
}
.client-section .client-slider .client-logo {
  width: 150px;
  filter: grayscale(1);
  opacity: 0.5;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}
.client-section .client-slider .client-logo:hover {
  filter: grayscale(0);
  opacity: 1;
}

@keyframes scroll {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-1250px);
  }
}
.how-it-works .step {
  text-align: center;
  position: relative;
  z-index: 1;
}
.how-it-works .step::after {
  content: "";
  position: absolute;
  top: 25px;
  left: 60%;
  width: 80%;
  height: 2px;
  background: rgba(31, 41, 55, 0.2);
  z-index: -1;
}
@media (max-width: 991px) {
  .how-it-works .step::after {
    display: none;
  }
}
.how-it-works .step:last-child::after {
  display: none;
}
.how-it-works .step .number {
  width: 50px;
  height: 50px;
  background: #1F2937;
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  font-weight: 700;
  font-size: 1.2rem;
}

.before-after-container {
  max-width: 800px;
  margin: 0 auto;
  position: relative;
  aspect-ratio: 16/9;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
}
@media (max-width: 768px) {
  .before-after-container {
    aspect-ratio: 4/3;
    border-radius: 12px;
  }
}
@media (max-width: 480px) {
  .before-after-container {
    aspect-ratio: 1/1;
  }
}
.before-after-container .image-before, .before-after-container .image-after {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.before-after-container .image-before img, .before-after-container .image-after img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.before-after-container .image-before {
  z-index: 2;
  clip-path: inset(0 50% 0 0);
}
.before-after-container .slider-handle {
  position: absolute;
  top: 0;
  left: 50%;
  width: 4px;
  height: 100%;
  background: white;
  z-index: 3;
  pointer-events: none;
  transform: translateX(-50%);
}
.before-after-container .slider-handle::after {
  content: "↔";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 40px;
  height: 40px;
  background: #1F2937;
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
}
@media (max-width: 768px) {
  .before-after-container .slider-handle::after {
    width: 32px;
    height: 32px;
    font-size: 0.8rem;
  }
}
.before-after-container .slider-input {
  position: absolute;
  inset: 0;
  opacity: 0;
  z-index: 4;
  width: 100%;
  cursor: ew-resize;
}

.gallery-section {
  height: 100vh;
  position: relative;
  overflow: hidden;
  background: #111827;
}
@media (max-width: 768px) {
  .gallery-section {
    height: 70vh;
  }
}
.gallery-section .gallery-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 1s ease-in-out;
}
.gallery-section .gallery-slide.active {
  opacity: 1;
  z-index: 10;
}
.gallery-section .gallery-slide img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  filter: brightness(0.6);
}
.gallery-section .gallery-slide .gallery-caption {
  position: absolute;
  bottom: 10%;
  left: 10%;
  color: white;
  z-index: 20;
  max-width: 500px;
  padding: 2rem;
}
.gallery-section .gallery-slide .gallery-caption h2 {
  color: white;
  margin-bottom: 0.5rem;
  font-size: 3rem;
}
.gallery-section .gallery-slide .gallery-caption span {
  color: #EF4444;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
}
@media (max-width: 768px) {
  .gallery-section .gallery-slide .gallery-caption h2 {
    font-size: 2rem;
  }
}
.gallery-section .gallery-nav {
  position: absolute;
  bottom: 2rem;
  right: 2rem;
  z-index: 30;
  display: flex;
  gap: 1rem;
}
.gallery-section .gallery-nav button {
  width: 50px;
  height: 50px;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(5px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.gallery-section .gallery-nav button:hover {
  background: #EF4444;
  color: #111827;
}

.why-us-card {
  padding: 2.5rem !important;
}
@media (max-width: 768px) {
  .why-us-card {
    padding: 15px !important;
    margin-bottom: 1rem;
  }
}

.why-choose-grid .why-item {
  background: #FFFFFF;
  padding: 3.5rem 2.5rem;
  border-radius: 32px;
  border: 1px solid rgba(243, 244, 246, 0.5);
  transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  text-align: center;
}
.why-choose-grid .why-item i {
  font-size: 3rem;
  color: #1F2937;
  margin-bottom: 2rem;
  display: inline-block;
  padding: 1.8rem;
  background: rgba(31, 41, 55, 0.03);
  border-radius: 24px;
  transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}
.why-choose-grid .why-item h3 {
  margin-bottom: 1.2rem;
  font-size: 1.6rem;
  color: #111827;
}
.why-choose-grid .why-item p {
  font-size: 1rem;
  line-height: 1.6;
}
.why-choose-grid .why-item:hover {
  background: #1F2937;
  color: white;
}
.why-choose-grid .why-item:hover i {
  background: rgba(255, 255, 255, 0.1);
  color: #EF4444;
  transform: rotate(10deg);
}
.why-choose-grid .why-item:hover h3 {
  color: white;
}
.why-choose-grid .why-item:hover p {
  color: rgba(255, 255, 255, 0.9);
}

.pricing-preview .price-card {
  padding: 3rem 2rem;
  text-align: center;
  border: 2px solid transparent;
}
.pricing-preview .price-card.featured {
  border-color: #EF4444;
  position: relative;
}
.pricing-preview .price-card.featured::before {
  content: "POPULAR";
  position: absolute;
  top: 0;
  left: 50%;
  transform: translate(-50%, -50%);
  background: #EF4444;
  padding: 0.2rem 1rem;
  font-size: 0.8rem;
  font-weight: 700;
  border-radius: 50px;
}
.pricing-preview .price-card .price {
  font-size: 3rem;
  font-weight: 800;
  color: #1F2937;
  margin: 1.5rem 0;
}
.pricing-preview .price-card .price span {
  font-size: 1rem;
  color: #6B7280;
  font-weight: 400;
}

.counter-grid {
  background: #1F2937;
  color: white;
  padding: 4rem 0;
  border-radius: 30px;
}
.counter-grid .counter-item {
  text-align: center;
}
.counter-grid .counter-item h2 {
  color: #EF4444;
  font-size: 3rem;
  margin-bottom: 0.5rem;
}
.counter-grid .counter-item p {
  color: rgba(255, 255, 255, 0.8);
  font-weight: 600;
  margin: 0;
}

.testimonial-slider {
  overflow: hidden;
}
.testimonial-slider .slider-track {
  display: flex;
  transition: transform 0.5s ease;
}
.testimonial-slider .slide {
  min-width: 100%;
  padding: 1rem;
}
.testimonial-slider .testimonial-card {
  background: #F9FAFB;
  padding: 3rem;
  border-radius: 24px;
  text-align: center;
}
.testimonial-slider .testimonial-card img {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  margin: 0 auto 1.5rem;
  border: 4px solid white;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
}
.testimonial-slider .testimonial-card .quote {
  font-size: 1.2rem;
  font-style: italic;
  margin-bottom: 2rem;
}
.testimonial-slider .testimonial-card .author {
  font-weight: 700;
  color: #1F2937;
}

.faq-accordion {
  max-width: 800px;
  margin: 0 auto;
}
.faq-accordion .faq-item {
  background: #F9FAFB;
  border-radius: 12px;
  margin-bottom: 1rem;
}
.faq-accordion .faq-item .faq-header {
  padding: 1.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  font-weight: 600;
}
.faq-accordion .faq-item .faq-body {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
  padding: 0 1.5rem;
  color: #6B7280;
}
.faq-accordion .faq-item.active .faq-header i {
  transform: rotate(180deg);
}
.faq-accordion .faq-item.active .faq-body {
  max-height: 200px;
  padding-bottom: 1.5rem;
}

.modal {
  position: fixed;
  inset: 0;
  z-index: 3000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}
.modal.active {
  opacity: 1;
  visibility: visible;
}
.modal .modal-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.8);
  backdrop-filter: blur(5px);
}
.modal .modal-content {
  position: relative;
  width: 100%;
  max-width: 450px;
  background: white;
  border-radius: 30px;
  padding: 3rem;
  text-align: center;
  transform: translateY(30px);
  transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}
.modal .modal-content h3 {
  margin-bottom: 1rem;
  color: #1F2937;
}
.modal .modal-content p {
  margin-bottom: 2rem;
  color: #6B7280;
}
.modal.active .modal-content {
  transform: translateY(0);
}
.modal .booking-options {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.modal .booking-options .btn {
  padding: 1.2rem;
  border-radius: 15px;
  font-size: 1.1rem;
}
.modal .booking-options .btn.btn-whatsapp {
  background: #25D366;
  color: white;
}
.modal .booking-options .btn.btn-whatsapp:hover {
  background: #128C7E;
  transform: scale(1.02);
}
.modal .booking-options .btn.btn-whatsapp {
  background: #25D366;
  color: white;
}
.modal .booking-options .btn.btn-whatsapp:hover {
  background: #128C7E;
  transform: scale(1.02);
}
.modal .booking-options .btn.btn-call {
  background: #1F2937;
  color: white;
}
.modal .booking-options .btn.btn-call:hover {
  transform: scale(1.02);
}
.modal .close-modal {
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  font-size: 1.5rem;
  color: #6B7280;
  cursor: pointer;
}

.service-hero {
  background: #1F2937;
  color: white;
  padding: 120px 0 60px;
  text-align: center;
}
.service-hero h1 {
  color: white;
}

.service-section {
  padding: 80px 0;
}
.service-section:nth-child(even) {
  background: #F9FAFB;
}
.service-section .service-flex {
  display: flex;
  gap: 4rem;
  align-items: center;
}
@media (max-width: 768px) {
  .service-section .service-flex {
    flex-direction: column;
  }
}
.service-section .service-flex .service-info {
  flex: 1;
}
.service-section .service-flex .service-img {
  flex: 1;
}
.service-section .service-flex .service-img img {
  border-radius: 24px;
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
}
.service-section.reverse .service-flex {
  flex-direction: row-reverse;
}
@media (max-width: 768px) {
  .service-section.reverse .service-flex {
    flex-direction: column;
  }
}

.benefits-list {
  margin-top: 2rem;
}
.benefits-list li {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  margin-bottom: 1rem;
}
.benefits-list li i {
  color: #EF4444;
  margin-top: 4px;
}

.about-header {
  padding: 100px 0;
  text-align: center;
}

.story-section .flex {
  gap: 4rem;
}
@media (max-width: 768px) {
  .story-section .flex {
    flex-direction: column;
  }
}
.story-section .story-content {
  flex: 1;
}
.story-section .story-img {
  flex: 1;
}
.story-section .story-img img {
  border-radius: 30px;
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
}

.team-grid {
  margin-top: 4rem;
}
.team-grid .team-member {
  text-align: center;
}
.team-grid .team-member img {
  border-radius: 50%;
  width: 200px;
  height: 200px;
  -o-object-fit: cover;
     object-fit: cover;
  margin-bottom: 1.5rem;
  border: 5px solid #F3F4F6;
}
.team-grid .team-member h4 {
  margin-bottom: 0.2rem;
}
.team-grid .team-member span {
  color: #EF4444;
  font-weight: 600;
  font-size: 0.9rem;
}

.achievements {
  background: #F9FAFB;
  padding: 80px 0;
}
.achievements .achievement-item {
  text-align: center;
}
.achievements .achievement-item i {
  font-size: 3rem;
  color: #1F2937;
  margin-bottom: 1.5rem;
  display: block;
}

.contact-hero {
  padding: 120px 0 80px;
  text-align: center;
  background: #1F2937;
  color: white;
}
.contact-hero h1 {
  color: white;
  margin-bottom: 1rem;
}
.contact-hero p {
  color: rgba(255, 255, 255, 0.8);
  max-width: 700px;
  margin: 0 auto;
}

.contact-layout {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 4rem;
}
@media (max-width: 991px) {
  .contact-layout {
    grid-template-columns: 1fr;
  }
}

.contact-card {
  background: #1F2937;
  color: white;
  padding: 3rem;
  border-radius: 24px;
}
.contact-card h3 {
  color: white;
  margin-bottom: 2rem;
}
.contact-card .contact-method {
  display: flex;
  gap: 1.5rem;
  margin-bottom: 2.5rem;
}
.contact-card .contact-method .icon {
  width: 56px;
  height: 56px;
  background: #EF4444;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  color: white;
  flex-shrink: 0;
  box-shadow: 0 8px 16px rgba(239, 68, 68, 0.25);
}
.contact-card .contact-method h4 {
  color: white;
  margin-bottom: 0.2rem;
  font-size: 1.1rem;
}
.contact-card .contact-method p {
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 0;
}
.contact-card .social-links {
  display: flex;
  gap: 1.2rem;
  margin-top: 3rem;
}
.contact-card .social-links a {
  width: 44px;
  height: 44px;
  background: rgba(255, 255, 255, 0.15);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
}
.contact-card .social-links a:hover {
  background: #EF4444;
  color: white;
  transform: translateY(-3px);
  box-shadow: 0 5px 15px rgba(239, 68, 68, 0.3);
}

.map-placeholder {
  width: 100%;
  height: 400px;
  background: #F3F4F6;
  border-radius: 24px;
  margin-top: 4rem;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #6B7280;
  font-weight: 600;
}/*# sourceMappingURL=main.css.map */