@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;
}

.service-locations {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 0.75rem 1.25rem;
  margin-top: 2rem;
  font-size: 1.2rem;
  font-weight: 600;
  color: #374151;
}
.service-locations .location-item {
  display: inline-flex;
  align-items: center;
  color: #1F2937;
  letter-spacing: 0.01em;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}
.service-locations .location-item:hover {
  color: #EF4444;
  transform: translateY(-1px);
}
.service-locations .pipe-divider {
  color: #EF4444;
  font-weight: 400;
  font-size: 1.3rem;
  line-height: 1;
  opacity: 0.85;
  user-select: none;
}
@media (max-width: 576px) {
  .service-locations {
    font-size: 1.05rem;
    gap: 0.5rem 0.75rem;
  }
  .service-locations .pipe-divider {
    font-size: 1.1rem;
  }
}

.logo {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.logo .logo-img {
  max-height: 48px;
  width: auto;
  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.header-on-dark:not(.scrolled) {
  background: linear-gradient(180deg, rgba(15, 23, 42, 0.45) 0%, rgba(15, 23, 42, 0.1) 100%);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}
.header.header-on-dark:not(.scrolled) .nav-links a {
  color: rgba(255, 255, 255, 0.95);
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
}
.header.header-on-dark:not(.scrolled) .nav-links a::after {
  background: #EF4444;
}
.header.header-on-dark:not(.scrolled) .nav-links a:hover {
  color: #ffffff;
}
.header.header-on-dark:not(.scrolled) .nav-links a:hover::after {
  width: 100%;
  background: #ffffff;
}
.header.header-on-dark:not(.scrolled) .nav-links a.active {
  color: #ffffff;
  font-weight: 600;
}
.header.header-on-dark:not(.scrolled) .nav-links a.active::after {
  width: 100%;
  background: #EF4444;
}
.header.header-on-dark:not(.scrolled) .mobile-toggle {
  color: #ffffff;
}
.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: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.6);
}
@media (max-width: 768px) {
  .footer .bottom-bar {
    flex-direction: column;
    text-align: center;
    justify-content: center;
    gap: 0.6rem;
  }
}
.footer .bottom-bar p {
  margin: 0;
}
.footer .bottom-bar .credit-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.88rem;
  color: rgba(255, 255, 255, 0.65);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}
.footer .bottom-bar .credit-badge .brand-highlight {
  color: rgba(255, 255, 255, 0.95);
  font-weight: 600;
  letter-spacing: 0.3px;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  text-decoration: none;
}
.footer .bottom-bar .credit-badge:hover {
  color: rgba(255, 255, 255, 0.9);
}
.footer .bottom-bar .credit-badge:hover .brand-highlight {
  color: #EF4444;
}

.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%;
  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: 3.5rem 0 3.75rem;
  background: #f8fafc;
  overflow: hidden;
  border-top: 1px solid rgba(226, 232, 240, 0.9);
  border-bottom: 1px solid rgba(226, 232, 240, 0.9);
  position: relative;
}
.client-section .client-header {
  text-align: center;
  margin-bottom: 2rem;
  padding: 0 1rem;
}
.client-section .client-header .client-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  background: rgba(30, 41, 59, 0.05);
  color: #334155;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  padding: 0.35rem 0.9rem;
  border-radius: 9999px;
  margin-bottom: 0.75rem;
  border: 1px solid rgba(203, 213, 225, 0.7);
}
.client-section .client-header .client-badge i {
  width: 14px;
  height: 14px;
  color: #EF4444;
}
.client-section .client-header h3 {
  font-size: 1.35rem;
  font-weight: 800;
  color: #0f172a;
  letter-spacing: -0.02em;
  margin-bottom: 0.4rem;
}
@media (max-width: 640px) {
  .client-section .client-header h3 {
    font-size: 1.125rem;
  }
}
.client-section .client-header p {
  color: #64748b;
  font-size: 0.9rem;
  max-width: 620px;
  margin: 0 auto;
}
.client-section .carousel-wrapper {
  position: relative;
  width: 100%;
  overflow: hidden;
  padding: 0.5rem 0;
}
.client-section .carousel-wrapper::before, .client-section .carousel-wrapper::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  width: 90px;
  z-index: 5;
  pointer-events: none;
}
@media (max-width: 640px) {
  .client-section .carousel-wrapper::before, .client-section .carousel-wrapper::after {
    width: 40px;
  }
}
.client-section .carousel-wrapper::before {
  left: 0;
  background: linear-gradient(to right, #f8fafc 20%, rgba(248, 250, 252, 0) 100%);
}
.client-section .carousel-wrapper::after {
  right: 0;
  background: linear-gradient(to left, #f8fafc 20%, rgba(248, 250, 252, 0) 100%);
}
.client-section .client-slider {
  display: flex;
  width: max-content;
  gap: 1.25rem;
  align-items: stretch;
  animation: clientCarouselMarquee 45s linear infinite;
  will-change: transform;
}
.client-section .client-slider:hover {
  animation-play-state: paused;
}
@media (max-width: 640px) {
  .client-section .client-slider {
    gap: 0.85rem;
    animation-duration: 35s;
  }
}
.client-section .client-card {
  flex: 0 0 160px;
  width: 160px;
  height: 120px;
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 12px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 1rem 0.75rem;
  box-shadow: 0 1px 3px rgba(15, 23, 42, 0.04), 0 1px 2px rgba(15, 23, 42, 0.02);
  transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
  user-select: none;
  box-sizing: border-box;
}
@media (max-width: 640px) {
  .client-section .client-card {
    flex: 0 0 135px;
    width: 135px;
    height: 106px;
    padding: 0.8rem 0.5rem;
    border-radius: 10px;
  }
}
.client-section .client-card .client-icon {
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #64748b;
  margin-bottom: 0.55rem;
  transition: color 0.2s ease, transform 0.2s ease;
}
@media (max-width: 640px) {
  .client-section .client-card .client-icon {
    width: 38px;
    height: 38px;
    margin-bottom: 0.4rem;
  }
}
.client-section .client-card .client-icon svg {
  width: 34px;
  height: 34px;
  fill: currentColor;
}
@media (max-width: 640px) {
  .client-section .client-card .client-icon svg {
    width: 28px;
    height: 28px;
  }
}
.client-section .client-card .client-name {
  font-size: 0.78rem;
  font-weight: 600;
  color: #475569;
  line-height: 1.25;
  text-align: center;
  display: block;
  width: 100%;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  letter-spacing: -0.01em;
}
@media (max-width: 640px) {
  .client-section .client-card .client-name {
    font-size: 0.72rem;
  }
}
.client-section .client-card:hover {
  border-color: #cbd5e1;
  transform: translateY(-3px);
  box-shadow: 0 8px 18px rgba(15, 23, 42, 0.08);
}
.client-section .client-card:hover .client-icon {
  color: #1e293b;
  transform: scale(1.08);
}
.client-section .client-card:hover .client-name {
  color: #0f172a;
}

@keyframes clientCarouselMarquee {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}
.how-it-works .process-subtitle {
  text-align: center;
  font-size: 0.95rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: #6B7280;
  margin-top: -1.25rem;
  margin-bottom: 3.5rem;
}
.how-it-works .process-subtitle span {
  color: #EF4444;
  margin: 0 0.5rem;
}
.how-it-works .process-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 1.25rem;
  position: relative;
}
@media (max-width: 1100px) {
  .how-it-works .process-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 1.25rem;
  }
}
@media (max-width: 768px) {
  .how-it-works .process-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
  }
}
@media (max-width: 540px) {
  .how-it-works .process-grid {
    grid-template-columns: 1fr;
    gap: 1.25rem;
  }
}
.how-it-works .process-card {
  background: #FFFFFF;
  border: 1px solid #F3F4F6;
  border-radius: 20px;
  padding: 1.75rem 1.25rem;
  display: flex;
  flex-direction: column;
  text-align: left;
  position: relative;
  transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1), 0 1px 2px rgba(0, 0, 0, 0.06);
}
.how-it-works .process-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
  border-color: rgba(239, 68, 68, 0.4);
}
.how-it-works .process-card:hover .step-icon {
  background: #EF4444;
  color: white;
  transform: scale(1.05);
}
.how-it-works .process-card:hover .step-badge {
  background: #EF4444;
  transform: scale(1.05);
}
.how-it-works .process-card .process-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 1.25rem;
}
.how-it-works .process-card .step-icon {
  width: 48px;
  height: 48px;
  border-radius: 14px;
  background: rgba(239, 68, 68, 0.08);
  color: #EF4444;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}
.how-it-works .process-card .step-icon i, .how-it-works .process-card .step-icon svg {
  width: 22px;
  height: 22px;
}
.how-it-works .process-card .step-badge {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: #1F2937;
  color: white;
  font-family: "Poppins", sans-serif;
  font-weight: 800;
  font-size: 1.1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.12);
}
.how-it-works .process-card h3 {
  font-size: 1.05rem;
  font-weight: 700;
  color: #111827;
  line-height: 1.35;
  margin-bottom: 0.6rem;
  min-height: 2.7rem;
  display: flex;
  align-items: center;
}
.how-it-works .process-card .step-desc {
  font-size: 0.88rem;
  color: #374151;
  line-height: 1.5;
  margin-bottom: 1.25rem;
}
.how-it-works .process-card .step-highlight {
  margin-top: auto;
  background: #F9FAFB;
  border-left: 3px solid #EF4444;
  border-radius: 0 10px 10px 0;
  padding: 0.65rem 0.75rem;
  font-size: 0.82rem;
  font-weight: 600;
  color: #1F2937;
  display: flex;
  align-items: flex-start;
  gap: 0.45rem;
  line-height: 1.4;
}
.how-it-works .process-card .step-highlight .arrow-indicator {
  color: #EF4444;
  font-weight: 800;
  font-size: 0.95rem;
  flex-shrink: 0;
  line-height: 1.2;
}
.how-it-works .process-card .step-highlight i, .how-it-works .process-card .step-highlight svg {
  width: 14px;
  height: 14px;
  color: #EF4444;
  flex-shrink: 0;
  margin-top: 2px;
}
.how-it-works .step {
  text-align: center;
  position: relative;
  z-index: 1;
}
.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%;
  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%;
  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: 1.5rem;
}
.benefits-list li {
  display: flex;
  gap: 0.75rem;
  align-items: flex-start;
  margin-bottom: 0.75rem;
  font-size: 0.95rem;
  color: #6B7280;
}
.benefits-list li i {
  color: #10B981;
  margin-top: 3px;
  flex-shrink: 0;
}

.service-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.35rem 0.85rem;
  background: rgba(15, 76, 129, 0.08);
  color: #1F2937;
  border-radius: 50px;
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 0.75rem;
}

.service-process-box {
  margin-top: 1.5rem;
  padding: 1.25rem 1.5rem;
  background: #FFFFFF;
  border: 1px solid rgba(15, 76, 129, 0.12);
  border-left: 4px solid #1F2937;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.03);
}
.service-process-box .process-box-title {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.9rem;
  font-weight: 700;
  color: #1F2937;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  margin-bottom: 0.5rem;
}
.service-process-box .process-box-title i {
  width: 16px;
  height: 16px;
}
.service-process-box p {
  font-size: 0.9rem;
  line-height: 1.6;
  color: #4B5563;
  margin: 0;
}

.services-nav-bar {
  background: #FFFFFF;
  padding: 1.25rem 0;
  border-bottom: 1px solid #E5E7EB;
  position: sticky;
  top: 70px;
  z-index: 90;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
}
.services-nav-bar .services-pills {
  display: flex;
  gap: 0.5rem;
  overflow-x: auto;
  padding: 0.25rem 0;
  scrollbar-width: none;
}
.services-nav-bar .services-pills::-webkit-scrollbar {
  display: none;
}
.services-nav-bar .services-pills a {
  white-space: nowrap;
  padding: 0.5rem 1rem;
  border-radius: 30px;
  background: #F3F4F6;
  color: #374151;
  font-size: 0.85rem;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.2s ease;
}
.services-nav-bar .services-pills a:hover {
  background: #1F2937;
  color: #FFFFFF;
}

.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;
  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;
}

.sitemap-hero {
  background: linear-gradient(135deg, #0F4C81 0%, #1e3a5f 100%);
  padding: 130px 0 60px;
  color: white;
  text-align: center;
}
.sitemap-hero h1 {
  color: white;
  font-size: 2.5rem;
  margin-bottom: 0.8rem;
}
@media (max-width: 768px) {
  .sitemap-hero h1 {
    font-size: 2rem;
  }
}
.sitemap-hero p {
  color: rgba(255, 255, 255, 0.9);
  max-width: 680px;
  margin: 0 auto 1.5rem;
  font-size: 1.05rem;
}
.sitemap-hero .breadcrumbs {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(255, 255, 255, 0.12);
  padding: 0.4rem 1rem;
  border-radius: 50px;
  font-size: 0.85rem;
  backdrop-filter: blur(4px);
}
.sitemap-hero .breadcrumbs a {
  color: rgba(255, 255, 255, 0.85);
  text-decoration: none;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}
.sitemap-hero .breadcrumbs a:hover {
  color: #ffffff;
}
.sitemap-hero .breadcrumbs span {
  color: rgba(255, 255, 255, 0.5);
}
.sitemap-hero .breadcrumbs .current {
  color: #ffffff;
  font-weight: 600;
}

.sitemap-section {
  padding: 60px 0 100px;
  background: #F9FAFB;
}

.sitemap-seo-notice {
  background: #ffffff;
  border-radius: 12px;
  padding: 1.5rem 2rem;
  margin-bottom: 2.5rem;
  border: 1px solid #E5E7EB;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1), 0 1px 2px rgba(0, 0, 0, 0.06);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1.5rem;
}
.sitemap-seo-notice .notice-content {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}
.sitemap-seo-notice .notice-content i {
  color: #0F4C81;
  font-size: 1.8rem;
  flex-shrink: 0;
  margin-top: 0.2rem;
}
.sitemap-seo-notice .notice-content h3 {
  font-size: 1.15rem;
  margin-bottom: 0.3rem;
  color: #111827;
}
.sitemap-seo-notice .notice-content p {
  color: #374151;
  font-size: 0.92rem;
  margin: 0;
}
.sitemap-seo-notice .notice-actions {
  display: flex;
  gap: 0.8rem;
  flex-wrap: wrap;
}
.sitemap-seo-notice .notice-actions .btn-xml {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.55rem 1.1rem;
  border-radius: 6px;
  font-size: 0.88rem;
  font-weight: 600;
  background: #0F4C81;
  color: #ffffff;
  text-decoration: none;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}
.sitemap-seo-notice .notice-actions .btn-xml:hover {
  background: #0B3961;
  transform: translateY(-2px);
}

.sitemap-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}
@media (max-width: 1024px) {
  .sitemap-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 768px) {
  .sitemap-grid {
    grid-template-columns: 1fr;
  }
}

.sitemap-card {
  background: #ffffff;
  border-radius: 12px;
  padding: 2rem;
  border: 1px solid #E5E7EB;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1), 0 1px 2px rgba(0, 0, 0, 0.06);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  display: flex;
  flex-direction: column;
}
.sitemap-card:hover {
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
  border-color: rgba(15, 76, 129, 0.3);
  transform: translateY(-3px);
}
.sitemap-card .card-header-wrap {
  display: flex;
  align-items: center;
  gap: 0.9rem;
  margin-bottom: 1.4rem;
  padding-bottom: 1rem;
  border-bottom: 2px solid #F3F4F6;
}
.sitemap-card .card-header-wrap .icon-box {
  width: 44px;
  height: 44px;
  border-radius: 8px;
  background: rgba(15, 76, 129, 0.1);
  color: #0F4C81;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  flex-shrink: 0;
}
.sitemap-card .card-header-wrap h2 {
  font-size: 1.25rem;
  margin: 0;
  color: #111827;
}
.sitemap-card .sitemap-links {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0.9rem;
}
.sitemap-card .sitemap-links li {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
}
.sitemap-card .sitemap-links li a {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: #1F2937;
  font-weight: 600;
  text-decoration: none;
  font-size: 0.95rem;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}
.sitemap-card .sitemap-links li a i {
  color: #EF4444;
  font-size: 0.9rem;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}
.sitemap-card .sitemap-links li a:hover {
  color: #EF4444;
  transform: translateX(4px);
}
.sitemap-card .sitemap-links li a:hover i {
  transform: translateX(2px);
}
.sitemap-card .sitemap-links li .link-desc {
  font-size: 0.82rem;
  color: #6B7280;
  padding-left: 1.4rem;
  line-height: 1.4;
}

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