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

:root {
  --primary-color: #0891b2;
  --secondary-color: #06b6d4;
  --accent-color: #f43f5e;
  --dark-bg: #0f172a;
  --light-bg: #f8fafc;
  --text-dark: #1e293b;
  --text-light: #64748b;
  /* Spacing scale */
  --space-1: 4px;
  --space-2: 8px;
  --space-3: 12px;
  --space-4: 16px;
  --space-5: 24px;
  --space-6: 32px;
  --space-7: 40px;
  --space-8: 48px;
  --section-padding: 100px;
}

body {
  font-family: "Inter", sans-serif;
  line-height: 1.6;
  color: var(--text-dark);
  overflow-x: hidden;
  scroll-behavior: smooth;
  scroll-padding-top: 100px;
}

html {
  scroll-behavior: smooth;
}

/* AI-Inspired Animations & Effects */
@keyframes gradient-shift {
  0%, 100% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
}

@keyframes float-particles {
  0%, 100% {
    transform: translateY(0) translateX(0);
    opacity: 0.3;
  }
  25% {
    transform: translateY(-20px) translateX(10px);
    opacity: 0.6;
  }
  50% {
    transform: translateY(-40px) translateX(-10px);
    opacity: 0.8;
  }
  75% {
    transform: translateY(-20px) translateX(15px);
    opacity: 0.6;
  }
}

@keyframes shimmer {
  0% {
    background-position: -1000px 0;
  }
  100% {
    background-position: 1000px 0;
  }
}

@keyframes glow-pulse {
  0%, 100% {
    box-shadow: 0 0 5px rgba(8, 145, 178, 0.5), 0 0 10px rgba(8, 145, 178, 0.3);
  }
  50% {
    box-shadow: 0 0 20px rgba(8, 145, 178, 0.8), 0 0 30px rgba(8, 145, 178, 0.5);
  }
}

@keyframes sparkle-float {
  0%, 100% {
    transform: translateY(0) scale(1);
    opacity: 0.5;
  }
  50% {
    transform: translateY(-30px) scale(1.2);
    opacity: 1;
  }
}

.glow {
  animation: glow-pulse 2s ease-in-out infinite;
}

.shimmer {
  position: relative;
  overflow: hidden;
}

.shimmer::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, 
    transparent, 
    rgba(255, 255, 255, 0.3), 
    transparent);
  animation: shimmer 3s infinite;
}

.glow-on-hover {
  transition: all 0.3s ease;
}

.glow-on-hover:hover {
  box-shadow: 0 0 20px rgba(6, 182, 212, 0.6), 0 0 40px rgba(6, 182, 212, 0.4);
  transform: translateY(-4px);
}

.animate-fade {
  animation: fadeInUp 1s ease;
}

/* Performance-Optimized Animations */
@keyframes slideUp {
  from {
    opacity: 0;
    transform: translateY(40px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes scaleIn {
  from {
    opacity: 0;
    transform: scale(0.9);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

@keyframes bounceIn {
  0% {
    opacity: 0;
    transform: scale(0.3) translateY(-20px);
  }
  50% {
    opacity: 1;
    transform: scale(1.05);
  }
  70% {
    transform: scale(0.97);
  }
  100% {
    opacity: 1;
    transform: scale(1);
  }
}

@keyframes fadeSlide {
  from {
    opacity: 0;
    transform: translateX(-30px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes rotateIn {
  from {
    opacity: 0;
    transform: rotate(-5deg) scale(0.9);
  }
  to {
    opacity: 1;
    transform: rotate(0) scale(1);
  }
}

.animate-slide-up {
  animation: slideUp 0.8s cubic-bezier(0.4, 0, 0.2, 1) both;
  will-change: transform, opacity;
}

.animate-scale-in {
  animation: scaleIn 0.7s cubic-bezier(0.34, 1.56, 0.64, 1) both;
  will-change: transform, opacity;
}

.animate-bounce-in {
  animation: bounceIn 0.9s cubic-bezier(0.68, -0.55, 0.265, 1.55) both;
  will-change: transform, opacity;
}

.animate-fade-slide {
  animation: fadeSlide 0.8s ease both;
  will-change: transform, opacity;
}

.animate-rotate-in {
  animation: rotateIn 0.7s ease both;
  will-change: transform, opacity;
}

/* Micro-interactions */
.gallery-meta span {
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.gallery-meta span:hover {
  transform: translateY(-2px);
  background: linear-gradient(135deg, #06b6d4, #0891b2);
  color: white;
  box-shadow: 0 4px 12px rgba(8, 145, 178, 0.3);
}

.stat-number {
  transition: all 0.3s ease;
}

.stat-item:hover .stat-number {
  transform: scale(1.15);
  color: #06b6d4;
  text-shadow: 0 0 20px rgba(6, 182, 212, 0.5);
}

/* Counter animation effect */
@keyframes numberPop {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.1); }
}

.counter {
  display: inline-block;
  animation: numberPop 2s ease infinite;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

/* Navbar */
.navbar {
  position: fixed;
  top: 0;
  width: 100%;
  background: rgba(255, 255, 255, 0.98);
  backdrop-filter: blur(12px);
  z-index: 1000;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
}

.navbar .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 16px 24px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}

.logo-circle {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid var(--primary-color);
  box-shadow: 0 4px 12px rgba(8, 145, 178, 0.2);
  transition: transform 0.3s ease;
}

.logo:hover .logo-circle {
  transform: scale(1.05);
}

.logo-text {
  font-size: 22px;
  font-weight: 700;
  color: var(--primary-color);
  letter-spacing: -0.5px;
}

.nav-menu {
  display: flex;
  list-style: none;
  gap: 32px;
  align-items: center;
}

.nav-menu a {
  color: var(--text-dark);
  text-decoration: none;
  font-weight: 500;
  font-size: 15px;
  transition: color 0.3s;
  position: relative;
}

.nav-menu a:hover,
.nav-menu a.active {
  color: var(--primary-color);
}

.nav-menu a.active::after {
  content: "";
  position: absolute;
  bottom: -8px;
  left: 0;
  width: 100%;
  height: 2px;
  background: var(--primary-color);
}

.menu-toggle {
  display: none;
  flex-direction: column;
  gap: 4px;
  cursor: pointer;
}

.menu-toggle span {
  width: 24px;
  height: 3px;
  background: var(--primary-color);
  border-radius: 2px;
  transition: all 0.3s;
}

/* Hero Section */
.hero {
  min-height: 100vh;
  background: linear-gradient(135deg, #0f172a 0%, #1e293b 50%, #334155 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  margin-top: 82px;
  padding: var(--section-padding) 0;
}

.hero::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(
      circle at 20% 50%,
      rgba(8, 145, 178, 0.1) 0%,
      transparent 50%
    ),
    radial-gradient(
      circle at 80% 50%,
      rgba(6, 182, 212, 0.1) 0%,
      transparent 50%
    );
  animation: pulse-bg 8s ease-in-out infinite;
}

@keyframes pulse-bg {
  0%,
  100% {
    opacity: 1;
  }
  50% {
    opacity: 0.5;
  }
}

.hero-content {
  text-align: center;
  color: white;
  z-index: 2;
  padding: 0 24px;
  max-width: 900px;
  margin: 0 auto;
  position: relative;
}

/* Hero background video and overlay for aquatic feel */
.hero-video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.35;
  filter: saturate(1.2) contrast(1.05);
}

.hero-video-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(15, 23, 42, 0.65) 0%,
    rgba(15, 23, 42, 0.35) 40%,
    rgba(15, 23, 42, 0.75) 100%
  );
  z-index: 1;
}

.offer-badge {
  display: inline-block;
  background: linear-gradient(135deg, #06b6d4, #0891b2);
  padding: 12px 24px;
  border-radius: 50px;
  margin-bottom: 24px;
  box-shadow: 0 8px 24px rgba(8, 145, 178, 0.4);
  animation: float 3s ease-in-out infinite;
}

@keyframes float {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-8px);
  }
}

.discount {
  font-size: 24px;
  font-weight: 700;
  display: block;
}

.offer-text {
  font-size: 13px;
  font-weight: 400;
}

.hero-title {
  font-size: 64px;
  font-weight: 800;
  margin-bottom: 24px;
  line-height: 1.1;
  letter-spacing: -2px;
}

.gradient-text {
  background: linear-gradient(
    135deg,
    var(--secondary-color),
    var(--primary-color)
  );
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-subtitle {
  font-size: 20px;
  margin-bottom: 40px;
  opacity: 0.85;
  font-weight: 400;
}

.cta-buttons {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

.btn {
  padding: 14px 32px;
  border-radius: 12px;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
  border: none;
  cursor: pointer;
  font-size: 15px;
  display: inline-block;
}

.btn-primary {
  background: var(--primary-color);
  color: white;
  box-shadow: 0 4px 16px rgba(8, 145, 178, 0.3);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(8, 145, 178, 0.4);
  background: var(--secondary-color);
}

.btn-secondary {
  background: transparent;
  color: white;
  border: 2px solid white;
}

.btn-secondary:hover {
  background: white;
  color: var(--dark-bg);
  transform: translateY(-2px);
}

.btn-primary-large {
  padding: 16px 40px;
  font-size: 16px;
  border-radius: 12px;
}

.btn-secondary-large {
  padding: 16px 40px;
  font-size: 16px;
  border-radius: 12px;
}

/* Special Offer Section */
.special-offer {
  padding: 80px 0;
  background: linear-gradient(135deg, #0891b2, #06b6d4);
  color: white;
  position: relative;
  overflow: hidden;
}

.special-offer::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: radial-gradient(
    circle,
    rgba(255, 255, 255, 0.1) 1px,
    transparent 1px
  );
  background-size: 30px 30px;
  animation: dots-move 15s linear infinite;
  z-index: 0;
}

@keyframes dots-move {
  0% {
    transform: translate(0, 0);
  }
  100% {
    transform: translate(30px, 30px);
  }
}

.special-offer .container {
  position: relative;
  z-index: 1;
}

.offer-box {
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
}

.offer-icon {
  font-size: 72px;
  margin-bottom: 24px;
  animation: bounce 2s infinite;
}

@keyframes bounce {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-10px);
  }
}

.offer-box h2 {
  font-size: 48px;
  margin-bottom: 20px;
  font-weight: 800;
}

.offer-box p {
  font-size: 22px;
  margin-bottom: 32px;
  line-height: 1.6;
}

.offer-box strong {
  font-size: 32px;
  font-weight: 800;
}

.btn-offer {
  background: white;
  color: #0891b2;
  padding: 18px 48px;
  font-size: 18px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
  border-radius: 12px;
  font-weight: 700;
}

.btn-offer:hover {
  transform: translateY(-2px) scale(1.05);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.3);
}

.offer-terms {
  font-size: 14px;
  margin-top: 24px;
  opacity: 0.9;
}

/* Section Styles */
.section-title {
  font-size: 48px;
  text-align: center;
  margin-bottom: 16px;
  color: var(--text-dark);
  font-weight: 800;
  letter-spacing: -1px;
}

/* Fancy Section Headers */
.section-header-fancy {
  text-align: center;
  margin-bottom: 16px;
  position: relative;
}

.section-icon {
  font-size: 48px;
  display: block;
  margin-bottom: 16px;
  animation: bounce 2s infinite;
}

.gradient-title {
  background: linear-gradient(135deg, #0891b2, #06b6d4, #14b8a6);
  background-size: 200% 200%;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: gradient-shift 5s ease infinite;
  display: inline-block;
}

.title-underline {
  width: 120px;
  height: 4px;
  background: linear-gradient(90deg, transparent, #06b6d4, transparent);
  margin: 16px auto;
  border-radius: 2px;
  animation: shimmer 3s infinite;
}

.section-subtitle {
  text-align: center;
  font-size: 18px;
  color: var(--text-light);
  margin-bottom: 60px;
}

/* Featured Preview Section */
.featured-preview {
  padding: 100px 0;
  background: linear-gradient(180deg, #ffffff 0%, #f0fdfa 100%);
  position: relative;
  overflow: hidden;
}

.featured-preview::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 150px;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1440 320"><path fill="%2306b6d4" fill-opacity="0.1" d="M0,160L48,144C96,128,192,96,288,106.7C384,117,480,171,576,186.7C672,203,768,181,864,154.7C960,128,1056,96,1152,101.3C1248,107,1344,149,1392,170.7L1440,192L1440,320L1392,320C1344,320,1248,320,1152,320C1056,320,960,320,864,320C768,320,672,320,576,320C480,320,384,320,288,320C192,320,96,320,48,320L0,320Z"></path></svg>');
  background-size: cover;
  animation: wave-move 10s linear infinite;
}

@keyframes wave-move {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

.preview-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(500px, 1fr));
  gap: 32px;
  margin-bottom: 48px;
}

.preview-card {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
  display: block;
  text-decoration: none;
  height: 400px;
}

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

.video-link .preview-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.7), transparent);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: white;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.video-link:hover .preview-overlay {
  opacity: 1;
}

.video-link:hover img {
  transform: scale(1.05);
}

.play-button {
  width: 80px;
  height: 80px;
  background: rgba(8, 145, 178, 0.95);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 32px;
  margin-bottom: 16px;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 8px 24px rgba(8, 145, 178, 0.4);
  animation: pulse-ring 2s infinite;
}

@keyframes pulse-ring {
  0% {
    box-shadow: 0 0 0 0 rgba(8, 145, 178, 0.7);
  }
  70% {
    box-shadow: 0 0 0 15px rgba(8, 145, 178, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(8, 145, 178, 0);
  }
}

.video-link:hover .play-button {
  transform: scale(1.2) rotate(90deg);
  background: var(--secondary-color);
  box-shadow: 0 12px 32px rgba(6, 182, 212, 0.6);
}

.preview-overlay h3 {
  font-size: 24px;
  font-weight: 700;
  text-align: center;
}

.preview-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.12);
}

.cta-center {
  text-align: center;
  margin-top: 40px;
}

/* Services Preview */
.services-preview {
  padding: 100px 0;
  background: linear-gradient(135deg, #f0fdfa, #ecfeff);
}

.services-grid-modern {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 32px;
  margin-bottom: 48px;
}

.service-modern {
  background: white;
  padding: 48px 32px;
  border-radius: 20px;
  text-align: center;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.06);
  transition: all 0.3s ease;
  border: 2px solid transparent;
}

.service-modern:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 32px rgba(8, 145, 178, 0.15);
  border-color: var(--primary-color);
}

.service-icon-modern {
  font-size: 56px;
  margin-bottom: 24px;
}

.service-modern h3 {
  font-size: 26px;
  margin-bottom: 12px;
  color: var(--text-dark);
  font-weight: 700;
}

.service-modern p {
  color: var(--text-light);
  line-height: 1.8;
  font-size: 16px;
}

/* Page Header */
.page-header {
  padding: 160px 0 80px;
  background: linear-gradient(135deg, #0f172a, #1e293b, #334155);
  background-size: 200% 200%;
  animation: gradient-shift 15s ease infinite;
  color: white;
  text-align: center;
  margin-top: 82px;
  position: relative;
  overflow: hidden;
}

.page-header::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(circle at 30% 50%, rgba(8, 145, 178, 0.15) 0%, transparent 50%),
              radial-gradient(circle at 70% 50%, rgba(6, 182, 212, 0.15) 0%, transparent 50%);
  animation: pulse-bg 8s ease-in-out infinite;
}

/* Floating Particles Effect */
.particles-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  z-index: 0;
}

.particle {
  position: absolute;
  width: 8px;
  height: 8px;
  background: rgba(6, 182, 212, 0.6);
  border-radius: 50%;
  animation: float-particles 8s infinite ease-in-out;
  box-shadow: 0 0 10px rgba(6, 182, 212, 0.8);
}

.particle:nth-child(1) { left: 10%; top: 20%; animation-delay: 0s; animation-duration: 7s; }
.particle:nth-child(2) { left: 20%; top: 80%; animation-delay: 1s; animation-duration: 9s; }
.particle:nth-child(3) { left: 30%; top: 40%; animation-delay: 2s; animation-duration: 6s; }
.particle:nth-child(4) { left: 50%; top: 60%; animation-delay: 0.5s; animation-duration: 8s; }
.particle:nth-child(5) { left: 70%; top: 30%; animation-delay: 1.5s; animation-duration: 7s; }
.particle:nth-child(6) { left: 80%; top: 70%; animation-delay: 2.5s; animation-duration: 9s; }
.particle:nth-child(7) { left: 90%; top: 50%; animation-delay: 3s; animation-duration: 6s; }
.particle:nth-child(8) { left: 60%; top: 10%; animation-delay: 3.5s; animation-duration: 8s; }

.page-header .container {
  position: relative;
  z-index: 1;
}

.page-header h1 {
  font-size: 56px;
  font-weight: 800;
  margin-bottom: 16px;
  letter-spacing: -1px;
  animation: fadeInUp 0.8s ease;
  text-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

/* Glitch Text Effect */
.glitch-text {
  position: relative;
}

.glitch-text::before,
.glitch-text::after {
  content: attr(data-text);
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
}

.glitch-text:hover::before {
  animation: glitch-1 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94) both infinite;
  color: #06b6d4;
  z-index: -1;
}

.glitch-text:hover::after {
  animation: glitch-2 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94) reverse both infinite;
  color: #f43f5e;
  z-index: -2;
}

@keyframes glitch-1 {
  0%, 100% {
    transform: translate(0);
    opacity: 0.7;
  }
  33% {
    transform: translate(-2px, 2px);
    opacity: 0.8;
  }
  66% {
    transform: translate(2px, -2px);
    opacity: 0.6;
  }
}

@keyframes glitch-2 {
  0%, 100% {
    transform: translate(0);
    opacity: 0.6;
  }
  33% {
    transform: translate(2px, -2px);
    opacity: 0.7;
  }
  66% {
    transform: translate(-2px, 2px);
    opacity: 0.5;
  }
}

.page-header p {
  font-size: 20px;
  opacity: 0.85;
  animation: fadeInUp 1s ease;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.gallery-stats {
  display: flex;
  justify-content: center;
  gap: 48px;
  margin-top: 40px;
  animation: fadeInUp 1.2s ease;
}

.stat-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}

.stat-number {
  font-size: 36px;
  font-weight: 800;
  color: var(--secondary-color);
}

.stat-label {
  font-size: 14px;
  opacity: 0.8;
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* Video Gallery Page */
.video-gallery-page {
  padding: 100px 0;
  background: white;
}

.video-grid-modern {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(500px, 1fr));
  gap: 40px;
}

.preview-card {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
  display: block;
  text-decoration: none;
  height: 400px;
}

.video-badge {
  position: absolute;
  top: 16px;
  right: 16px;
  padding: 8px 16px;
  border-radius: 20px;
  font-size: 13px;
  font-weight: 700;
  z-index: 2;
  backdrop-filter: blur(10px);
  animation: slideInRight 0.6s cubic-bezier(0.4, 0, 0.2, 1);
  transition: all 0.3s ease;
}

.video-badge:hover {
  transform: scale(1.1) rotate(-3deg);
  filter: brightness(1.2);
}

@keyframes slideInRight {
  from {
    opacity: 0;
    transform: translateX(20px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

.video-badge.hot {
  background: linear-gradient(135deg, #ff6b6b, #ee5a6f);
  color: white;
  box-shadow: 0 4px 12px rgba(255, 107, 107, 0.4);
}

.video-badge.trending {
  background: linear-gradient(135deg, #ffd93d, #f6c23e);
  color: #1e293b;
  box-shadow: 0 4px 12px rgba(255, 217, 61, 0.4);
}

.video-badge.new {
  background: linear-gradient(135deg, #06b6d4, #0891b2);
  color: white;
  box-shadow: 0 4px 12px rgba(8, 145, 178, 0.4);
}

.video-description {
  font-size: 15px;
  margin-top: 8px;
  opacity: 0.9;
}

.preview-card:hover {
  transform: translateY(-8px) scale(1.02);
  box-shadow: 0 16px 40px rgba(8, 145, 178, 0.2);
}

.video-card video,
.video-card iframe {
  width: 100%;
  height: auto;
  aspect-ratio: 16/9;
  object-fit: cover;
  background: #000;
  border: none;
}

.video-card iframe {
  border: none;
}

/* Native video grid for local MP4s */
.video-grid-native {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
  margin-top: 24px;
}

.video-card .video-title {
  font-size: 18px;
  font-weight: 700;
  margin-top: 12px;
}

.video-info {
  padding: 24px;
}

.video-info h3 {
  font-size: 24px;
  margin-bottom: 8px;
  color: var(--text-dark);
  font-weight: 700;
}

.video-info p {
  color: var(--text-light);
}

/* Image Gallery Page */
.image-gallery-page {
  padding: 100px 0;
  background: var(--light-bg);
  position: relative;
}

/* Sparkle Effect */
.sparkle-container {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  overflow: hidden;
}

.sparkle {
  position: absolute;
  font-size: 24px;
  animation: sparkle-float 4s infinite ease-in-out;
}

.sparkle:nth-child(1) {
  left: 15%;
  top: 20%;
  animation-delay: 0s;
  animation-duration: 5s;
}

.sparkle:nth-child(2) {
  left: 50%;
  top: 40%;
  animation-delay: 1.5s;
  animation-duration: 4s;
}

.sparkle:nth-child(3) {
  left: 80%;
  top: 30%;
  animation-delay: 3s;
  animation-duration: 6s;
}

.gallery-grid-modern {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(500px, 1fr));
  gap: 40px;
  position: relative;
  z-index: 1;
}

.gallery-card {
  background: white;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  cursor: pointer;
  position: relative;
}

.gallery-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(8, 145, 178, 0.1), rgba(6, 182, 212, 0.1));
  opacity: 0;
  transition: opacity 0.3s ease;
  pointer-events: none;
  z-index: 1;
}

.gallery-card:hover::before {
  opacity: 1;
}

.gallery-card:hover {
  transform: translateY(-12px) scale(1.02);
  box-shadow: 0 20px 50px rgba(8, 145, 178, 0.25);
}

.gallery-card img {
  width: 100%;
  height: 400px;
  object-fit: cover;
  transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.gallery-card:hover img {
  transform: scale(1.08) rotate(1deg);
}

.gallery-info {
  padding: 24px;
}

.gallery-info h3 {
  font-size: 24px;
  margin-bottom: 8px;
  color: var(--text-dark);
  font-weight: 700;
}

.gallery-info p {
  color: var(--text-light);
  margin-bottom: 12px;
}

.gallery-meta {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 12px;
}

.gallery-meta span {
  font-size: 13px;
  padding: 6px 12px;
  background: var(--light-bg);
  border-radius: 20px;
  color: var(--text-dark);
  font-weight: 500;
}

/* Testimonials Section */
.testimonials-section {
  padding: 100px 0;
  background: linear-gradient(135deg, #f0fdfa, #ecfeff, #e0f2fe);
  background-size: 200% 200%;
  animation: gradient-shift 10s ease infinite;
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 32px;
  margin-top: 60px;
}

.testimonial-card {
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(10px);
  padding: 32px;
  border-radius: 20px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.08);
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  animation: fadeInUp 0.8s ease;
  border: 1px solid rgba(8, 145, 178, 0.1);
  position: relative;
  overflow: hidden;
}

.testimonial-card::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(6, 182, 212, 0.1) 0%, transparent 70%);
  opacity: 0;
  transition: opacity 0.5s ease;
}

.testimonial-card:hover::before {
  opacity: 1;
}

.testimonial-card:hover {
  transform: translateY(-12px) scale(1.03);
  box-shadow: 0 20px 60px rgba(8, 145, 178, 0.2);
  border-color: rgba(6, 182, 212, 0.3);
}

.stars {
  font-size: 20px;
  margin-bottom: 16px;
  color: #fbbf24;
  display: inline-block;
  animation: star-twinkle 3s ease-in-out infinite;
}

@keyframes star-twinkle {
  0%, 100% {
    filter: drop-shadow(0 0 2px #fbbf24);
  }
  50% {
    filter: drop-shadow(0 0 8px #fbbf24);
  }
}

.testimonial-text {
  font-size: 16px;
  line-height: 1.8;
  color: var(--text-dark);
  margin-bottom: 20px;
  font-style: italic;
}

.testimonial-author {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.testimonial-author strong {
  font-size: 16px;
  color: var(--primary-color);
}

.testimonial-author span {
  font-size: 14px;
  color: var(--text-light);
}

/* Services Detail Page */
.services-detail {
  padding: 100px 0;
  background: white;
}

.service-detail-card {
  display: grid;
  grid-template-columns: 120px 1fr;
  gap: 40px;
  padding: 48px;
  margin-bottom: 40px;
  background: var(--light-bg);
  border-radius: 16px;
  align-items: start;
}

.service-detail-card.reverse {
  background: white;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
}

.service-detail-icon {
  font-size: 64px;
  text-align: center;
}

.service-detail-content h2 {
  font-size: 32px;
  margin-bottom: 16px;
  color: var(--text-dark);
  font-weight: 700;
}

.service-detail-content p {
  font-size: 16px;
  color: var(--text-light);
  margin-bottom: 24px;
  line-height: 1.8;
}

.service-features {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 12px;
}

.service-features li {
  padding: 12px 16px;
  background: white;
  border-radius: 8px;
  color: var(--text-dark);
  font-weight: 500;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
}

.service-detail-card.reverse .service-features li {
  background: var(--light-bg);
}

/* Special Offer Banner */
.special-offer-banner {
  padding: 80px 0;
  background: linear-gradient(135deg, var(--accent-color), #dc2626);
  color: white;
  text-align: center;
}

.offer-content-modern {
  max-width: 700px;
  margin: 0 auto;
}

.offer-tag {
  display: inline-block;
  padding: 8px 16px;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 50px;
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 16px;
}

.offer-content-modern h2 {
  font-size: 48px;
  margin-bottom: 16px;
  font-weight: 800;
}

.offer-content-modern p {
  font-size: 20px;
  margin-bottom: 32px;
  opacity: 0.9;
}

/* Contact Page */
.contact-page {
  padding: 100px 0;
  background: white;
}

.contact-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
}

.contact-info-section h2 {
  font-size: 40px;
  margin-bottom: 16px;
  color: var(--text-dark);
  font-weight: 700;
}

.contact-info-section > p {
  font-size: 16px;
  color: var(--text-light);
  margin-bottom: 40px;
  line-height: 1.8;
}

.contact-items {
  display: flex;
  flex-direction: column;
  gap: 24px;
  margin-bottom: 40px;
}

.contact-item {
  display: flex;
  gap: 20px;
  padding: 24px;
  background: var(--light-bg);
  border-radius: 12px;
  transition: all 0.3s ease;
}

.contact-item:hover {
  background: #e0f2fe;
  transform: translateX(8px);
}

.contact-icon {
  font-size: 32px;
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: white;
  border-radius: 12px;
  flex-shrink: 0;
}

.contact-details h3 {
  font-size: 18px;
  margin-bottom: 8px;
  color: var(--text-dark);
  font-weight: 600;
}

.contact-details p {
  color: var(--text-light);
  margin-bottom: 8px;
}

.contact-link {
  color: var(--primary-color);
  font-weight: 600;
  text-decoration: none;
  transition: color 0.3s;
}

.contact-link:hover {
  color: var(--secondary-color);
}

.special-offer-box {
  padding: 32px;
  background: linear-gradient(135deg, var(--accent-color), #dc2626);
  border-radius: 16px;
  color: white;
  text-align: center;
}

.offer-badge-contact {
  display: inline-block;
  padding: 8px 16px;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 50px;
  font-size: 14px;
  font-weight: 700;
  margin-bottom: 16px;
}

.special-offer-box h3 {
  font-size: 28px;
  margin-bottom: 12px;
  font-weight: 700;
}

.special-offer-box p {
  font-size: 16px;
  opacity: 0.95;
  line-height: 1.6;
}

.map-section {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
  height: 100%;
  min-height: 500px;
}

.map-placeholder {
  width: 100%;
  height: 100%;
  position: relative;
}

.map-placeholder img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.map-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 32px;
  background: linear-gradient(to top, rgba(15, 23, 42, 0.95), transparent);
  color: white;
}

.map-overlay h3 {
  font-size: 24px;
  margin-bottom: 8px;
  font-weight: 700;
}

.map-overlay p {
  font-size: 16px;
  opacity: 0.9;
}

/* CTA Section */
.cta-section {
  padding: 100px 0;
  background: linear-gradient(135deg, #0891b2, #06b6d4);
  background-size: 200% 200%;
  animation: gradient-shift 10s ease infinite;
  text-align: center;
  color: white;
  position: relative;
  overflow: hidden;
}

.cta-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: linear-gradient(
      30deg,
      rgba(255, 255, 255, 0.05) 12%,
      transparent 12.5%,
      transparent 87%,
      rgba(255, 255, 255, 0.05) 87.5%,
      rgba(255, 255, 255, 0.05)
    ),
    linear-gradient(
      150deg,
      rgba(255, 255, 255, 0.05) 12%,
      transparent 12.5%,
      transparent 87%,
      rgba(255, 255, 255, 0.05) 87.5%,
      rgba(255, 255, 255, 0.05)
    );
  background-size: 80px 80px;
  animation: pattern-move 20s linear infinite;
}

@keyframes pattern-move {
  0% {
    background-position: 0 0;
  }
  100% {
    background-position: 80px 80px;
  }
}

.cta-section .container {
  position: relative;
  z-index: 1;
}

.cta-content h2 {
  font-size: 48px;
  margin-bottom: 16px;
  color: white;
  font-weight: 800;
}

.cta-content p {
  font-size: 20px;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 40px;
}

.urgency-badge {
  display: inline-block;
  padding: 10px 24px;
  background: rgba(244, 63, 94, 0.9);
  border-radius: 50px;
  font-size: 14px;
  font-weight: 700;
  margin-bottom: 24px;
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0%, 100% {
    transform: scale(1);
    box-shadow: 0 0 0 0 rgba(244, 63, 94, 0.7);
  }
  50% {
    transform: scale(1.05);
    box-shadow: 0 0 0 10px rgba(244, 63, 94, 0);
  }
}

.cta-features {
  display: flex;
  justify-content: center;
  gap: 24px;
  margin-bottom: 32px;
  flex-wrap: wrap;
}

.feature-item {
  padding: 8px 20px;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 50px;
  font-size: 15px;
  font-weight: 600;
  backdrop-filter: blur(10px);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  cursor: pointer;
}

.feature-item:hover {
  background: rgba(255, 255, 255, 0.35);
  transform: translateY(-3px) scale(1.05);
  box-shadow: 0 6px 20px rgba(255, 255, 255, 0.2);
}

.cta-note {
  margin-top: 24px;
  font-size: 16px;
  opacity: 0.9;
  font-weight: 500;
}

.cta-buttons {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

.btn-secondary-large {
  background: white;
  color: var(--primary-color);
  border: 2px solid white;
}

.btn-secondary-large:hover {
  background: transparent;
  color: white;
}

/* Footer */
footer {
  background: var(--dark-bg);
  color: white;
  padding: 80px 0 32px;
}

.footer-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 48px;
  margin-bottom: 48px;
}

.footer-logo .logo-circle {
  width: 60px;
  height: 60px;
  margin-bottom: 16px;
  border-color: var(--secondary-color);
}

.footer-logo h3 {
  font-size: 24px;
  margin-bottom: 12px;
  color: var(--secondary-color);
  font-weight: 700;
}

.footer-logo p {
  opacity: 0.8;
  line-height: 1.6;
  color: #cbd5e1;
}

.footer-links h4,
.footer-contact h4 {
  margin-bottom: 20px;
  font-size: 18px;
  font-weight: 600;
  color: var(--secondary-color);
}

.footer-links ul {
  list-style: none;
}

.footer-links a {
  color: #cbd5e1;
  text-decoration: none;
  opacity: 0.8;
  transition: all 0.3s;
  display: block;
  margin-bottom: 12px;
}

.footer-links a:hover {
  opacity: 1;
  color: var(--secondary-color);
  padding-left: 8px;
}

.footer-contact p {
  margin-bottom: 12px;
  color: #cbd5e1;
  opacity: 0.9;
}

.instagram-link {
  color: #06b6d4;
  text-decoration: none;
  font-weight: 600;
  transition: color 0.3s;
}

.instagram-link:hover {
  color: #0891b2;
}

.instagram-nav {
  color: var(--primary-color) !important;
  font-weight: 600;
}

.instagram-nav:hover {
  color: var(--secondary-color) !important;
}

.footer-bottom {
  text-align: center;
  padding-top: 32px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  color: #94a3b8;
  font-size: 14px;
}

/* Responsive Design */
@media (max-width: 768px) {
  .nav-menu {
    position: fixed;
    top: 82px;
    left: -100%;
    width: 100%;
    background: white;
    flex-direction: column;
    padding: 32px 24px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    transition: left 0.3s ease;
  }

  .nav-menu.active {
    left: 0;
  }

  .menu-toggle {
    display: flex;
  }

  .hero {
    margin-top: 82px;
    padding: 60px 0;
  }

  .hero-title {
    font-size: 36px;
  }

  .hero-subtitle {
    font-size: 16px;
  }

  .section-title {
    font-size: 32px;
  }

  .page-header h1 {
    font-size: 36px;
  }

  .page-header {
    padding: 120px 0 60px;
  }

  .video-grid-modern,
  .gallery-grid-modern,
  .preview-grid {
    grid-template-columns: 1fr;
  }
  .video-grid-native {
    grid-template-columns: 1fr;
  }

  .gallery-stats {
    flex-direction: column;
    gap: 24px;
  }

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

  .cta-features {
    flex-direction: column;
    gap: 12px;
  }

  .service-detail-card {
    grid-template-columns: 1fr;
    padding: 32px 24px;
    gap: 24px;
  }

  .service-detail-icon {
    text-align: left;
  }

  .contact-wrapper {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .offer-box h2,
  .offer-content-modern h2,
  .cta-content h2 {
    font-size: 28px;
  }

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

/* Smooth Scroll Navigation Buttons */
.scroll-to-top {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 50px;
  height: 50px;
  background: linear-gradient(135deg, #0891b2, #06b6d4);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  cursor: pointer;
  z-index: 999;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 4px 20px rgba(8, 145, 178, 0.4);
}

.scroll-to-top.visible {
  opacity: 1;
  visibility: visible;
}

.scroll-to-top:hover {
  transform: translateY(-5px) scale(1.1);
  box-shadow: 0 8px 30px rgba(8, 145, 178, 0.6);
  background: linear-gradient(135deg, #06b6d4, #0891b2);
}

.scroll-to-top:active {
  transform: translateY(-3px) scale(1.05);
}

/* Quick Navigation Menu */
.quick-nav {
  position: fixed;
  left: 30px;
  top: 50%;
  transform: translateY(-50%);
  display: flex;
  flex-direction: column;
  gap: 16px;
  z-index: 999;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
}

.quick-nav.visible {
  opacity: 1;
  visibility: visible;
}

.quick-nav-btn {
  width: 50px;
  height: 50px;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  text-decoration: none;
  color: var(--primary-color);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  border: 2px solid transparent;
}

.quick-nav-btn:hover {
  transform: translateX(8px) scale(1.15);
  background: linear-gradient(135deg, #0891b2, #06b6d4);
  color: white;
  box-shadow: 0 6px 25px rgba(8, 145, 178, 0.4);
  border-color: white;
}

.quick-nav-btn:active {
  transform: translateX(6px) scale(1.1);
}

@media (max-width: 480px) {
  .hero-title {
    font-size: 28px;
  }

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

  .btn {
    width: 100%;
    text-align: center;
  }

  .scroll-to-top {
    bottom: 20px;
    right: 20px;
    width: 45px;
    height: 45px;
  }

  .quick-nav {
    left: 10px;
    gap: 12px;
  }

  .quick-nav-btn {
    width: 45px;
    height: 45px;
    font-size: 18px;
  }
}
