/* ============================================
   RESET & BASE STYLES
   ============================================ */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --primary: #20B2AA;
  --primary-light: #4ECDC4;
  --primary-dark: #1A9B94;
  --accent: #2E8B87;
  --accent-light: #6ED3D0;
  --text-primary: #ffffff;
  --text-secondary: rgba(255, 255, 255, 0.7);
  --text-muted: rgba(255, 255, 255, 0.5);
  --bg-dark: #0a0a0f;
  --bg-darker: #050508;
  --surface: rgba(255, 255, 255, 0.03);
  --surface-hover: rgba(255, 255, 255, 0.06);
  --border: rgba(255, 255, 255, 0.1);
  --shadow: rgba(0, 0, 0, 0.3);
  --shadow-glow: rgba(32, 178, 170, 0.4);
}

html {
  scroll-behavior: smooth;
}

/* Hide scrollbar for Chrome, Safari and Opera */
html::-webkit-scrollbar {
  display: none;
}

/* Hide scrollbar for IE, Edge and Firefox */
html {
  -ms-overflow-style: none;  /* IE and Edge */
  scrollbar-width: none;  /* Firefox */
}

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  background: var(--bg-dark);
  color: var(--text-primary);
  overflow-x: hidden;
  line-height: 1.6;
  position: relative;
  -ms-overflow-style: none;  /* IE and Edge */
  scrollbar-width: none;  /* Firefox */
}

body::-webkit-scrollbar {
  display: none;
}

/* ============================================
   ANIMATED BACKGROUND
   ============================================ */
.animated-bg {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  overflow: hidden;
  pointer-events: none;
}

.gradient-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.4;
  animation: float 20s ease-in-out infinite;
}

.orb-1 {
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, var(--primary) 0%, transparent 70%);
  top: -200px;
  left: -200px;
  animation-delay: 0s;
}

.orb-2 {
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, var(--accent) 0%, transparent 70%);
  bottom: -150px;
  right: -150px;
  animation-delay: 7s;
}

.orb-3 {
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, var(--primary-light) 0%, transparent 70%);
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  animation-delay: 14s;
}

@keyframes float {
  0%, 100% {
    transform: translate(0, 0) scale(1);
  }
  33% {
    transform: translate(50px, -50px) scale(1.1);
  }
  66% {
    transform: translate(-30px, 30px) scale(0.9);
  }
}

.noise-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 400 400' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noiseFilter'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noiseFilter)' opacity='0.03'/%3E%3C/svg%3E");
  opacity: 0.3;
  pointer-events: none;
}

/* ============================================
   GEOMETRIC SHAPES
   ============================================ */
.geometric-shapes {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  pointer-events: none;
  overflow: hidden;
}

.shape {
  position: absolute;
  border: 1px solid var(--border);
  opacity: 0.1;
  animation: rotate 30s linear infinite;
}

.shape-1 {
  width: 300px;
  height: 300px;
  top: 10%;
  right: 10%;
  border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
  animation-duration: 20s;
}

.shape-2 {
  width: 200px;
  height: 200px;
  bottom: 20%;
  left: 15%;
  border-radius: 50%;
  animation-duration: 25s;
  animation-direction: reverse;
}

.shape-3 {
  width: 150px;
  height: 150px;
  top: 60%;
  right: 20%;
  transform: rotate(45deg);
  animation-duration: 15s;
}

@keyframes rotate {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}

/* ============================================
   NAVIGATION
   ============================================ */
.main-nav {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  padding: 1.5rem 0;
  background: rgba(10, 10, 15, 0.5);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
}

.nav-container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-left: -0.5rem;
}

.logo-image {
  height: 60px;
  width: auto;
  object-fit: contain;
  flex-shrink: 0;
  margin-right: 0.5rem;
}

.logo-text-wrapper {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
}

.logo-text {
  font-size: 1.5rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  background: linear-gradient(135deg, var(--text-primary) 0%, var(--primary-light) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.logo-subtitle {
  font-size: 0.7rem;
  font-weight: 400;
  letter-spacing: 0.3em;
  color: var(--text-muted);
  text-transform: uppercase;
}

.nav-links {
  display: flex;
  gap: 2.5rem;
  align-items: center;
}

.nav-item {
  color: var(--text-secondary);
  text-decoration: none;
  font-size: 0.95rem;
  font-weight: 500;
  position: relative;
  transition: color 0.3s ease;
  padding: 0.5rem 0;
}

.nav-item::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--primary-light) 0%, var(--primary) 100%);
  border-radius: 2px;
  transition: width 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 0 8px rgba(32, 178, 170, 0.5);
}

.nav-item:hover,
.nav-item.active {
  color: var(--text-primary);
}

.nav-item:hover::after {
  width: 60%;
}

.nav-item.active::after {
  width: 100%;
  box-shadow: 0 0 12px rgba(32, 178, 170, 0.7);
}

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
}

.nav-toggle span {
  width: 25px;
  height: 2px;
  background: var(--text-primary);
  transition: all 0.3s ease;
}

/* ============================================
   HERO SECTION
   ============================================ */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 8rem 2rem 4rem;
  max-width: 1400px;
  margin: 0 auto;
  z-index: 1;
  gap: 4rem;
}

.hero-content {
  flex: 1;
  max-width: 600px;
  z-index: 2;
}

.hero-badge {
  display: inline-block;
  padding: 0.5rem 1.5rem;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 50px;
  font-size: 0.85rem;
  color: var(--text-secondary);
  margin-bottom: 2rem;
  backdrop-filter: blur(10px);
  animation: fadeInUp 0.8s ease;
}

.hero-title {
  font-size: clamp(3rem, 8vw, 6rem);
  font-weight: 900;
  line-height: 1.1;
  margin-bottom: 1.5rem;
  animation: fadeInUp 0.8s ease 0.2s both;
}

.title-line {
  display: block;
  background: linear-gradient(135deg, var(--text-primary) 0%, var(--text-secondary) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.title-line.highlight {
  background: linear-gradient(135deg, var(--primary-light) 0%, var(--accent) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  position: relative;
}

.hero-description {
  font-size: 1.2rem;
  color: var(--text-secondary);
  margin-bottom: 3rem;
  line-height: 1.8;
  animation: fadeInUp 0.8s ease 0.4s both;
}

.hero-cta {
  display: flex;
  gap: 1.5rem;
  margin-bottom: 0.5rem;
  flex-wrap: wrap;
  animation: fadeInUp 0.8s ease 0.6s both;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 1rem 2.5rem;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 600;
  font-size: 1rem;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.btn-primary {
  background: var(--surface);
  color: var(--text-primary);
  border: 1px solid var(--border);
  backdrop-filter: blur(10px);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.btn-primary::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
  transition: left 0.5s ease;
}

.btn-primary:hover::before {
  left: 100%;
}

.btn-primary:hover {
  background: var(--surface-hover);
  border-color: var(--primary-light);
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
}

.btn-secondary {
  background: var(--surface);
  color: var(--text-primary);
  border: 1px solid var(--border);
  backdrop-filter: blur(10px);
}

.btn-secondary:hover {
  background: var(--surface-hover);
  border-color: var(--primary);
  transform: translateY(-2px);
}

.btn-outline {
  background: transparent;
  color: var(--text-primary);
  border: 2px solid var(--primary);
}

.btn-outline:hover {
  background: var(--primary);
  transform: translateY(-2px);
}

.hero-stats {
  display: flex;
  gap: 3rem;
  flex-wrap: wrap;
  animation: fadeInUp 0.8s ease 0.8s both;
}

.stat-item {
  text-align: left;
}

.stat-number {
  font-size: 3rem;
  font-weight: 800;
  background: linear-gradient(135deg, var(--primary-light) 0%, var(--accent) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
  margin-bottom: 0.5rem;
}

.stat-label {
  font-size: 0.9rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.hero-visual {
  flex: 1;
  max-width: 1000px;
  position: relative;
  z-index: 1;
  pointer-events: none;
  margin-top: 2rem;
  margin-bottom: 0.5rem;
}

.hero-visual-container {
  display: flex;
  flex-direction: row;
  gap: 3rem;
  width: 100%;
  position: relative;
  z-index: 1;
}

.hero-image-wrapper {
  position: relative;
  border-radius: 30px;
  overflow: hidden;
  transform-style: preserve-3d;
  flex: 1;
  min-height: 700px;
  transition: none;
  cursor: pointer;
  pointer-events: auto;
  will-change: auto;
}

.hero-image-wrapper:hover {
  transform: none;
}

.image-glow {
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, var(--primary) 0%, transparent 70%);
  opacity: 0.3;
  filter: blur(60px);
  animation: pulse 3s ease-in-out infinite;
}

@keyframes pulse {
  0%, 100% {
    transform: scale(1);
    opacity: 0.3;
  }
  50% {
    transform: scale(1.1);
    opacity: 0.5;
  }
}

.hero-image {
  width: 100%;
  height: 100%;
  min-height: 700px;
  display: block;
  border-radius: 30px;
  position: relative;
  z-index: 1;
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.5);
  object-fit: cover;
  object-position: center;
  transition: transform 0.3s ease, filter 0.3s ease;
}

.hero-image-wrapper-left .hero-image {
  object-position: center 15%;
}

.hero-image-wrapper-right .hero-image {
  object-position: center 15%;
  transform: none;
}

.hero-image-wrapper:hover .hero-image {
  filter: brightness(0.8);
}

.hero-image-wrapper-left:hover .hero-image {
  transform: none;
}

.hero-image-wrapper-right:hover .hero-image {
  transform: none;
}

.hero-status-overlay {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  opacity: 0;
  transition: opacity 0.3s ease;
  z-index: 2;
}

.hero-image-wrapper:hover .hero-status-overlay {
  opacity: 1;
}

.hero-status-text {
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--text-primary);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  padding: 0.5rem 1.5rem;
  background: rgba(0, 0, 0, 0.7);
  backdrop-filter: blur(10px);
  border-radius: 5px;
  white-space: nowrap;
}

.floating-card {
  position: absolute;
  background: var(--surface);
  backdrop-filter: blur(20px);
  border: 1px solid var(--border);
  border-radius: 15px;
  padding: 1rem 1.5rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  z-index: 2;
  animation: floatCard 3s ease-in-out infinite;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.card-icon {
  font-size: 1.5rem;
}

.card-text {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--text-primary);
}

.card-1 {
  top: 10%;
  right: -10%;
  animation-delay: 0s;
}

.card-2 {
  bottom: 20%;
  left: -15%;
  animation-delay: 1s;
}

.card-3 {
  top: 50%;
  right: -5%;
  animation-delay: 2s;
}

@keyframes floatCard {
  0%, 100% {
    transform: translateY(0) rotate(0deg);
  }
  50% {
    transform: translateY(-20px) rotate(5deg);
  }
}

/* ============================================
   SECTION STYLES
   ============================================ */
section {
  position: relative;
  z-index: 1;
  padding: 6rem 2rem;
  max-width: 1400px;
  margin: 0 auto;
}

.section-header {
  text-align: center;
  margin-bottom: 4rem;
}

.section-tag {
  display: inline-block;
  padding: 0.5rem 1.5rem;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 50px;
  font-size: 0.85rem;
  color: var(--text-secondary);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 1rem;
}

.section-title {
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 800;
  line-height: 1.2;
  background: linear-gradient(135deg, var(--text-primary) 0%, var(--text-secondary) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ============================================
   GALLERY SECTION
   ============================================ */
.gallery-section {
  padding: 2rem 0 6rem 0;
  overflow: visible;
  margin: 0;
  width: 100%;
  max-width: 100%;
  position: relative;
  z-index: 10;
  padding-left: 0;
  padding-right: 0;
}

.gallery-section .section-header {
  max-width: 1400px;
  margin: 0 auto 4rem;
  padding: 0 2rem;
}

.gallery-container {
  overflow: hidden;
  margin-bottom: 3rem;
  padding: 1rem 0;
  width: 100vw;
  max-width: none;
  position: relative;
  left: 50%;
  right: auto;
  transform: translateX(-50%);
  padding-left: 0;
  padding-right: 0;
  margin-left: 0;
  margin-right: 0;
  box-sizing: border-box;
  overflow-x: hidden;
}

.gallery-track {
  display: flex;
  gap: 2rem;
  animation: scrollGallery 50s linear infinite;
  width: fit-content;
  padding: 0;
  margin: 0;
  justify-content: flex-start;
  position: relative;
  left: auto;
  right: 0;
  margin-left: auto;
}

.gallery-item {
  flex-shrink: 0;
  width: 400px;
  height: 500px;
  border-radius: 20px;
  overflow: hidden;
  position: relative;
  cursor: pointer;
  transition: transform 0.3s ease;
}

.gallery-item:hover {
  transform: scale(1.05);
}

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

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

.gallery-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.8) 0%, transparent 100%);
  display: flex;
  align-items: flex-end;
  padding: 2rem;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.gallery-item:hover .gallery-overlay {
  opacity: 1;
}

.gallery-overlay span {
  color: var(--text-primary);
  font-weight: 600;
  font-size: 1.1rem;
}

@keyframes scrollGallery {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(calc(-50% - 2rem));
  }
}

/* ============================================
   SERVICES SECTION
   ============================================ */
.services-section {
  padding: 6rem 2rem;
  overflow: visible;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
  gap: 3rem;
  padding: 1rem 0;
}

.service-card {
  position: relative;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 25px;
  padding: 3rem;
  backdrop-filter: blur(20px);
  transition: all 0.3s ease;
  overflow: hidden;
  cursor: pointer;
}

.service-card.supplementary {
  display: flex;
  flex-direction: column;
  min-height: 180px;
  padding: 2rem;
}

.service-card.supplementary .service-content {
  text-align: center;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.service-card.supplementary h3 {
  margin-bottom: 1rem;
  font-size: 1.3rem;
  flex: 1;
}

.service-card.supplementary .pricing-price-small {
  font-size: 1.5rem;
  margin-top: auto;
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, var(--primary-light) 0%, var(--primary) 100%);
  opacity: 0;
  transition: opacity 0.3s ease;
  z-index: 0;
}

.service-card:hover::before {
  opacity: 0.1;
}

.service-card:hover {
  transform: translateY(-10px);
  border-color: var(--primary);
  box-shadow: 0 20px 60px rgba(32, 178, 170, 0.3);
}

.service-number {
  font-size: 6rem;
  font-weight: 900;
  background: linear-gradient(135deg, var(--primary-light) 0%, var(--primary) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  opacity: 0.2;
  line-height: 1;
  margin-bottom: -2rem;
  position: relative;
  z-index: 1;
}

.service-content {
  position: relative;
  z-index: 1;
}

.service-content h3 {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 1rem;
  color: var(--text-primary);
}

.service-content p {
  color: var(--text-secondary);
  margin-bottom: 2rem;
  line-height: 1.8;
  font-size: 1.1rem;
}

.service-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--primary-light);
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
}

.service-link:hover {
  gap: 1rem;
  color: var(--accent);
}

/* Pricing card styles */
.service-content .pricing-price {
  font-size: 3rem;
  font-weight: 700;
  background: linear-gradient(135deg, var(--primary-light) 0%, var(--primary) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin: 1rem 0;
}

.service-content .pricing-list {
  list-style: none;
  padding: 0;
  margin: 1.5rem 0;
}

.service-content .pricing-list li {
  padding: 0.5rem 0;
  color: var(--text-secondary);
  border-bottom: 1px solid var(--border);
}

.service-content .pricing-list li:last-child {
  border-bottom: none;
}

.service-content .pricing-badge {
  text-align: center;
  margin-bottom: 1rem;
}

.service-content .pricing-badge span {
  background: linear-gradient(135deg, var(--primary-light) 0%, var(--primary) 100%);
  color: var(--text-primary);
  padding: 0.3rem 1rem;
  border-radius: 20px;
  font-size: 0.9rem;
  font-weight: 600;
  display: inline-block;
}

.service-content .pricing-price-small {
  font-size: 2rem;
  font-weight: 700;
  background: linear-gradient(135deg, var(--primary-light) 0%, var(--primary) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.service-bg {
  position: absolute;
  bottom: 0;
  right: 0;
  width: 200px;
  height: 200px;
  background: radial-gradient(circle, var(--primary) 0%, transparent 70%);
  opacity: 0.1;
  filter: blur(40px);
  z-index: 0;
}

/* ============================================
   TEAM SECTION
   ============================================ */
.team-section {
  padding: 6rem 2rem;
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 3rem;
}

.team-card {
  text-align: center;
  position: relative;
}

.team-image-wrapper {
  position: relative;
  width: 250px;
  height: 250px;
  margin: 0 auto 2rem;
  border-radius: 50%;
  overflow: hidden;
  border: 3px solid var(--primary);
  transition: all 0.3s ease;
}

.team-card:hover .team-image-wrapper {
  transform: scale(1.05);
  border-color: var(--accent);
  box-shadow: 0 20px 60px rgba(32, 178, 170, 0.4);
}

.team-image-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 35%;
  transition: transform 0.5s ease;
}

.team-image-wrapper img[alt="Soren Wanks"] {
  object-position: center 8%;
}

.team-image-wrapper img[alt="Sun Price"] {
  object-position: center 3%;
}

.team-image-wrapper img[alt="Inaya Kinslow"] {
  object-position: center 3%;
}

.team-image-wrapper img[alt="Andres Henarnandez"] {
  object-position: center 0%;
}

.team-image-wrapper img[alt="Yoruhime Yoshikage"] {
  object-position: center 18%;
}

.team-card:hover .team-image-wrapper img {
  transform: scale(1.1);
}

.team-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.8);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.team-card:hover .team-overlay {
  opacity: 1;
}

.team-social {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.team-social a {
  color: var(--text-primary);
  text-decoration: none;
  font-weight: 600;
  transition: color 0.3s ease;
}

.team-social a:hover {
  color: var(--primary-light);
}

.team-info h3 {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
  color: var(--text-primary);
}

.team-info p {
  color: var(--text-secondary);
  font-size: 1rem;
}

/* ============================================
   LOCATION SECTION
   ============================================ */
.location-section {
  padding: 6rem 2rem;
}

.location-container {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 25px;
  padding: 2rem;
  backdrop-filter: blur(20px);
  overflow: hidden;
}

.location-map img {
  width: 100%;
  height: auto;
  border-radius: 15px;
}

.location-addresses {
  display: flex;
  gap: 2rem;
  margin-top: 2rem;
  flex-wrap: wrap;
  justify-content: center;
}

.address-item {
  text-align: center;
  padding: 1.5rem;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 15px;
  backdrop-filter: blur(20px);
  min-width: 250px;
}

.address-item h3 {
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 0.5rem;
  background: linear-gradient(135deg, var(--text-primary) 0%, var(--primary-light) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.address-item p {
  color: var(--text-secondary);
  font-size: 1rem;
  margin: 0;
}

/* ============================================
   REVIEWS SECTION
   ============================================ */
.reviews-section {
  padding: 6rem 0;
  overflow: visible;
  margin: 0;
  width: 100%;
  max-width: 100%;
  position: relative;
  padding-left: 0;
  padding-right: 0;
}

.reviews-section .section-header {
  max-width: 1400px;
  margin: 0 auto 4rem;
  padding: 0 2rem;
}

.reviews-container {
  overflow: hidden;
  margin-bottom: 3rem;
  padding: 1rem 0;
  width: 100vw;
  max-width: none;
  position: relative;
  left: 50%;
  right: auto;
  transform: translateX(-50%);
  padding-left: 0;
  padding-right: 0;
  margin-left: 0;
  margin-right: 0;
  box-sizing: border-box;
  overflow-x: hidden;
}

.reviews-track {
  display: flex;
  gap: 2rem;
  animation: scrollReviews 180s linear infinite;
  width: fit-content;
  padding: 0;
  margin: 0;
  justify-content: flex-start;
  position: relative;
  left: auto;
  right: 0;
  margin-left: auto;
}

.review-card {
  flex-shrink: 0;
  width: 400px;
  background: rgba(255, 255, 255, 0.02);
  border: none;
  border-radius: 20px;
  padding: 2.5rem;
  backdrop-filter: blur(20px);
  transition: transform 0.3s ease;
  box-shadow: none;
}

.review-card:hover {
  transform: translateY(-5px);
  border: none;
  box-shadow: none;
  background: rgba(255, 255, 255, 0.04);
}

.review-stars {
  color: #ffd700;
  font-size: 1.5rem;
  margin-bottom: 1.5rem;
}

.review-card h3 {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
  color: var(--text-primary);
}

.review-card p {
  color: var(--text-secondary);
  line-height: 1.8;
  margin-bottom: 1.5rem;
  font-size: 1.05rem;
}

.review-author {
  color: var(--text-muted);
  font-size: 0.9rem;
  font-style: italic;
}

@keyframes scrollReviews {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(calc(-50% - 1rem));
  }
}

.reviews-cta {
  text-align: center;
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 2rem;
}

/* ============================================
   FAQ SECTION
   ============================================ */
.faq-section {
  padding: 6rem 2rem;
}

.faq-container {
  max-width: 900px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.faq-item {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 20px;
  overflow: hidden;
  backdrop-filter: blur(20px);
  transition: all 0.3s ease;
}

.faq-item:hover {
  border-color: var(--primary);
}

.faq-item.active {
  border-color: var(--primary);
}

.faq-question {
  padding: 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  transition: background 0.3s ease;
}

.faq-question:hover {
  background: var(--surface-hover);
}

.faq-question h3 {
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--text-primary);
}

.faq-icon {
  font-size: 2rem;
  color: var(--primary);
  font-weight: 300;
  transition: transform 0.3s ease;
  line-height: 1;
}

.faq-item.active .faq-icon {
  transform: rotate(45deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
}

.faq-item.active .faq-answer {
  max-height: 500px;
}

.faq-answer p {
  padding: 0 2rem 2rem;
  color: var(--text-secondary);
  line-height: 1.8;
}

/* ============================================
   HERITAGE SECTION
   ============================================ */
.heritage-section {
  padding: 6rem 2rem;
  background: transparent;
  position: relative;
}

.heritage-container {
  max-width: 900px;
  margin: 0 auto;
}

.heritage-content {
  background: var(--surface);
  border: 2px solid var(--primary);
  border-radius: 25px;
  padding: 4rem 3rem;
  backdrop-filter: blur(20px);
  box-shadow: 0 20px 60px rgba(150, 100, 200, 0.2);
  text-align: center;
}

.heritage-image-wrapper {
  margin-bottom: 3rem;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
}

.heritage-image {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 20px;
}

.heritage-title {
  font-size: clamp(2rem, 4vw, 2.5rem);
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 2.5rem;
  background: linear-gradient(135deg, var(--text-primary) 0%, var(--primary) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.heritage-text {
  color: var(--text-secondary);
  line-height: 2;
  font-size: 1.1rem;
}

.heritage-text p {
  margin-bottom: 1.5rem;
}

.heritage-text p:last-child {
  margin-bottom: 0;
}

.heritage-memory {
  margin-top: 2rem;
  padding-top: 2rem;
  border-top: 1px solid var(--border);
  font-style: italic;
  color: var(--text-primary);
  font-size: 1.15rem;
}

/* ============================================
   FOOTER
   ============================================ */
.main-footer {
  position: relative;
  z-index: 1;
  padding: 4rem 2rem 2rem;
  border-top: 1px solid var(--border);
  background: rgba(5, 5, 8, 0.5);
  backdrop-filter: blur(20px);
}

.footer-content {
  max-width: 1400px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 2rem;
}

.footer-logo {
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 1rem;
}

.footer-logo-image {
  height: 50px;
  width: auto;
  object-fit: contain;
  flex-shrink: 0;
}

.footer-logo-text-wrapper {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
}

.footer-logo-text {
  font-size: 1.3rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  background: linear-gradient(135deg, var(--text-primary) 0%, var(--primary-light) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.footer-logo-subtitle {
  font-size: 0.6rem;
  font-weight: 400;
  letter-spacing: 0.3em;
  color: var(--text-muted);
  text-transform: uppercase;
}

.footer-brand h3 {
  font-size: 1.5rem;
  font-weight: 800;
  margin-bottom: 0.5rem;
  background: linear-gradient(135deg, var(--text-primary) 0%, var(--primary-light) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.footer-brand p {
  color: var(--text-muted);
  font-size: 0.9rem;
}

.footer-links {
  display: flex;
  gap: 2rem;
  flex-wrap: wrap;
}

.footer-links a {
  color: var(--text-secondary);
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-links a:hover {
  color: var(--primary-light);
}

/* ============================================
   FIXED CTA BUTTON
   ============================================ */
.fixed-cta {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0.75rem 1.5rem;
  background: var(--surface);
  color: var(--text-primary);
  text-decoration: none;
  font-weight: 600;
  font-size: 0.85rem;
  border-radius: 50px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  z-index: 999;
  transition: opacity 0.3s ease, transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  overflow: hidden;
  backdrop-filter: blur(10px);
  border: 1px solid var(--border);
}

.fixed-cta::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
  transition: left 0.6s ease;
}

.fixed-cta:hover::before {
  left: 100%;
}

.fixed-cta:hover {
  background: var(--surface-hover);
  border-color: var(--primary-light);
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
}

.fixed-cta:active {
  transform: translateY(-1px);
}

.cta-text {
  position: relative;
  z-index: 1;
  white-space: nowrap;
  letter-spacing: 0.05em;
}

.scroll-to-top {
  position: fixed;
  bottom: 2rem;
  right: calc(2rem + 120px);
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: var(--surface);
  color: var(--text-primary);
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  z-index: 999;
  transition: opacity 0.3s ease, transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  overflow: hidden;
  backdrop-filter: blur(10px);
  opacity: 0;
  pointer-events: none;
}

.scroll-to-top.visible {
  opacity: 1;
  pointer-events: auto;
}

.scroll-to-top::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
  transition: left 0.6s ease;
  border-radius: 50%;
}

.scroll-to-top:hover::before {
  left: 100%;
}

.scroll-to-top:hover {
  background: var(--surface-hover);
  border-color: var(--primary-light);
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
}

.scroll-to-top:active {
  transform: translateY(-1px);
}

.scroll-to-top svg {
  position: relative;
  z-index: 1;
  transition: transform 0.3s ease;
}

.scroll-to-top:hover svg {
  transform: translateY(-2px);
}

@media (max-width: 768px) {
  .scroll-to-top {
    width: 45px;
    height: 45px;
    bottom: 1rem;
    right: calc(1rem + 110px);
  }

  .scroll-to-top svg {
    width: 18px;
    height: 18px;
  }
}

/* ============================================
   MODAL
   ============================================ */
.modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.9);
  backdrop-filter: blur(10px);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10000;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
}

.modal.active {
  opacity: 1;
  visibility: visible;
}

.modal-content {
  background: var(--bg-dark);
  border: 1px solid var(--border);
  border-radius: 25px;
  padding: 3rem;
  max-width: 500px;
  width: 90%;
  position: relative;
  backdrop-filter: blur(20px);
  transform: scale(0.9);
  transition: transform 0.3s ease;
}

.modal.active .modal-content {
  transform: scale(1);
}

.modal-close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  width: 40px;
  height: 40px;
  border: none;
  background: var(--surface);
  border-radius: 50%;
  color: var(--text-primary);
  font-size: 1.5rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

.modal-close:hover {
  background: var(--surface-hover);
}

.modal-content h2 {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 1rem;
  color: var(--text-primary);
}

.modal-content p {
  color: var(--text-secondary);
  line-height: 1.8;
}

/* ============================================
   LIGHTBOX
   ============================================ */
.lightbox {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.95);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10001;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
}

.lightbox.active {
  opacity: 1;
  visibility: visible;
}

.lightbox-content {
  position: relative;
  max-width: 90%;
  max-height: 90%;
}

.lightbox-content img {
  max-width: 100%;
  max-height: 90vh;
  border-radius: 15px;
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.5);
}

.lightbox-close {
  position: absolute;
  top: 20px;
  right: 20px;
  width: 40px;
  height: 40px;
  border: none;
  background: var(--surface);
  border-radius: 50%;
  color: var(--text-primary);
  font-size: 1.5rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.3s ease;
  z-index: 10;
}

.lightbox-close:hover {
  background: var(--surface-hover);
}

/* ============================================
   ANIMATIONS
   ============================================ */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ============================================
   RESPONSIVE DESIGN
   ============================================ */
@media (max-width: 1024px) {
  .hero {
    flex-direction: column;
    text-align: center;
    gap: 3rem;
  }

  .hero-content {
    max-width: 100%;
  }

  .hero-visual {
    max-width: 100%;
    position: relative;
    transform: none;
    margin-top: 1rem;
    width: 100%;
  }

  .hero-visual-container {
    flex-direction: column;
    align-items: center;
    gap: 2rem;
  }

  .hero-image-wrapper {
    width: 342px;
    max-width: 100%;
    height: 200px;
    flex: none;
  }

  .hero-image {
    width: 342px;
    height: 200px;
    object-fit: cover;
    object-position: center 15%;
  }

  .floating-card {
    display: none;
  }

  .services-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .nav-links {
    position: fixed;
    top: 80px;
    left: 0;
    width: 100%;
    background: rgba(10, 10, 15, 0.98);
    backdrop-filter: blur(20px);
    flex-direction: column;
    padding: 2rem;
    gap: 1.5rem;
    transform: translateY(-100%);
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    border-bottom: 1px solid var(--border);
  }

  .nav-links.active {
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
  }

  .nav-toggle {
    display: flex;
  }

  .nav-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(8px, 8px);
  }

  .nav-toggle.active span:nth-child(2) {
    opacity: 0;
  }

  .nav-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -7px);
  }

  .hero {
    padding: 7rem 1.5rem 3rem;
  }

  .hero-badge {
    margin-top: 1rem;
  }

  .hero-cta {
    flex-direction: column;
  }

  .btn {
    width: 100%;
    justify-content: center;
  }

  .hero-stats {
    justify-content: center;
    gap: 2rem;
  }

  .gallery-item {
    width: 300px;
    height: 400px;
  }

  .team-grid {
    grid-template-columns: 1fr;
  }

  .review-card {
    width: 300px;
  }


  .footer-content {
    flex-direction: column;
    text-align: center;
  }

  .footer-links {
    justify-content: center;
  }

  .fixed-cta {
    padding: 0.7rem 1.25rem;
    bottom: 1rem;
    right: 1rem;
    font-size: 0.8rem;
  }
}

@media (max-width: 480px) {
  section {
    padding: 4rem 1.5rem;
  }

  .hero-title {
    font-size: 2.5rem;
  }

  .section-title {
    font-size: 2rem;
  }

  .hero-visual {
    position: relative;
    transform: none;
    margin-top: 1rem;
    width: 100%;
  }

  .hero-visual-container {
    gap: 0.8rem;
  }

  .hero-image-wrapper {
    min-height: 180px;
  }

  .hero-image {
    min-height: 180px;
  }

  .service-card {
    padding: 2rem;
  }

  .service-number {
    font-size: 4rem;
  }
}

