@import url('https://fonts.googleapis.com/css2?family=Manrope:wght@400;500;600;700;800;900&display=swap');

:root {
  /* Color Palette - Light Resort Theme (Default) */
  --color-primary: #0E76BC; /* Pool Blue */
  --color-primary-dark: #0369A1;
  --color-primary-light: #E0F2FE;
  --color-secondary: #06B6D4; /* Turquoise / Water color */
  --color-cta: #F97316; /* Sunset Orange */
  --color-cta-hover: #EA580C;
  --color-background: #FFFFFF;
  --color-water-bg: #F0F9FF; /* Warm soft pool-water blue */
  --color-card-bg: rgba(255, 255, 255, 0.85);
  --color-text: #0F172A; /* Deep Navy-Slate for elegant contrast */
  --color-text-muted: #475569;
  --color-white: #FFFFFF;
  --color-border: rgba(14, 118, 188, 0.12);
  
  /* Fonts */
  --font-heading: 'Manrope', sans-serif;
  --font-body: 'Manrope', sans-serif;
  
  /* Shadows - Premium Soft Shadow System for Light Theme */
  --shadow-sm: 0 2px 8px rgba(15, 32, 54, 0.04);
  --shadow-md: 0 8px 24px rgba(15, 32, 54, 0.06);
  --shadow-lg: 0 16px 40px rgba(14, 118, 188, 0.08);
  --shadow-xl: 0 24px 60px rgba(14, 118, 188, 0.12);
  
  /* Spacing */
  --space-xs: 0.25rem;
  --space-sm: 0.5rem;
  --space-md: 1rem;
  --space-lg: 1.5rem;
  --space-xl: 2rem;
  --space-2xl: 3rem;
  --space-3xl: 5rem;
  
  /* Borders */
  --radius-sm: 8px;
  --radius-md: 16px;
  --radius-lg: 28px;
  --radius-full: 9999px;
  
  /* Transitions */
  --transition-fast: 150ms cubic-bezier(0.4, 0, 0.2, 1);
  --transition-normal: 250ms cubic-bezier(0.4, 0, 0.2, 1);
  --transition-slow: 400ms cubic-bezier(0.4, 0, 0.2, 1);
}

/* Base resets & global styles */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

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

body {
  font-family: var(--font-body);
  background-color: var(--color-background);
  color: var(--color-text);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  color: var(--color-text);
  font-weight: 800;
  line-height: 1.15;
}

h1 {
  font-size: clamp(2.5rem, 5vw, 4.25rem);
  font-weight: 800;
  letter-spacing: -1px;
}

h2 {
  font-size: clamp(2rem, 4vw, 2.75rem);
  font-weight: 800;
  letter-spacing: -0.5px;
}

h3 {
  font-size: clamp(1.35rem, 2.5vw, 1.7rem);
  font-weight: 700;
}

p {
  color: var(--color-text-muted);
}

/* Custom Scrollbar */
::-webkit-scrollbar {
  width: 8px;
}
::-webkit-scrollbar-track {
  background: var(--color-background);
}
::-webkit-scrollbar-thumb {
  background: var(--color-primary);
  border-radius: var(--radius-full);
}
::-webkit-scrollbar-thumb:hover {
  background: var(--color-secondary);
}

/* Container */
.container {
  width: 100%;
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
  padding-left: var(--space-lg);
  padding-right: var(--space-lg);
}

/* Dynamic Header: Transparent over dark Hero, White Glass over light sections */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  transition: all var(--transition-normal);
  padding: var(--space-lg) 0;
  background: linear-gradient(to bottom, rgba(4, 28, 50, 0.4), rgba(4, 28, 50, 0));
}

.header.scrolled {
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(14, 118, 188, 0.1);
  padding: var(--space-sm) 0;
  box-shadow: var(--shadow-sm);
}

.nav-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

/* Substantial Logo Upgrade (+40%) */
.logo-wrapper {
  position: relative;
  height: 90px;
  width: 300px;
  transition: transform var(--transition-normal);
}

.logo-wrapper:hover {
  transform: scale(1.03);
}

.logo-img {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  object-fit: contain;
  transition: opacity var(--transition-normal);
}

/* Over Hero: Show White logo | Scrolled: Show Dark/Colored logo */
.logo-dark {
  opacity: 0;
}

.logo-white {
  opacity: 1;
}

.header.scrolled .logo-dark {
  opacity: 1;
}

.header.scrolled .logo-white {
  opacity: 0;
}

.nav-links {
  display: flex;
  gap: var(--space-xl);
  list-style: none;
  align-items: center;
}

.nav-link {
  color: rgba(255, 255, 255, 0.9); /* Default white navigation over Hero */
  text-decoration: none;
  font-weight: 600;
  font-size: 0.9rem;
  transition: all var(--transition-fast);
  cursor: pointer;
  letter-spacing: 0.3px;
}

.nav-link:hover {
  color: var(--color-primary-light);
}

.header.scrolled .nav-link {
  color: var(--color-text); /* Dark links on scroll */
}

.header.scrolled .nav-link:hover {
  color: var(--color-primary);
}

.nav-btn {
  display: inline-block;
  padding: 0.65rem 1.6rem;
  border-radius: var(--radius-full);
  font-weight: 700;
  text-decoration: none;
  font-size: 0.9rem;
  transition: all var(--transition-fast);
  cursor: pointer;
}

.nav-btn-white {
  background: var(--color-cta);
  color: var(--color-white);
  box-shadow: 0 4px 14px rgba(249, 115, 22, 0.3);
}

.nav-btn-white:hover {
  background: var(--color-cta-hover);
  transform: translateY(-1px);
}

/* Mobile Nav Toggle */
.mobile-nav-toggle {
  display: none;
  background: none;
  border: none;
  color: var(--color-white);
  cursor: pointer;
  z-index: 1100;
}

.header.scrolled .mobile-nav-toggle {
  color: var(--color-text);
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-sm);
  padding: 1.1rem 2.2rem;
  border-radius: var(--radius-md);
  font-weight: 600;
  text-decoration: none;
  transition: all var(--transition-normal);
  border: none;
  cursor: pointer;
  text-align: center;
  font-size: 0.95rem;
  letter-spacing: 0.5px;
  font-family: var(--font-body);
}

.btn-primary {
  background: linear-gradient(135deg, var(--color-cta), #EA580C);
  color: var(--color-white);
  box-shadow: 0 8px 24px rgba(249, 115, 22, 0.3);
}

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 30px rgba(249, 115, 22, 0.4);
}

.btn-secondary {
  background-color: rgba(255, 255, 255, 0.15);
  color: var(--color-white);
  border: 1px solid rgba(255, 255, 255, 0.3);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.btn-secondary:hover {
  background-color: rgba(255, 255, 255, 0.25);
  transform: translateY(-3px);
}

/* Floating WhatsApp Button */
.whatsapp-float {
  position: fixed;
  bottom: 30px;
  right: 30px;
  background-color: #25D366;
  color: white;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 30px rgba(37, 211, 102, 0.4);
  z-index: 999;
  transition: all var(--transition-normal);
  cursor: pointer;
  text-decoration: none;
}

.whatsapp-float:hover {
  transform: translateY(-5px) scale(1.05);
  box-shadow: 0 12px 35px rgba(37, 211, 102, 0.5);
}

.whatsapp-float svg {
  width: 32px;
  height: 32px;
  fill: currentColor;
}

/* Wave Divider */
.wave-container {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  overflow: hidden;
  line-height: 0;
  z-index: 15;
}

.waves {
  position: relative;
  width: 100%;
  height: 12vh;
  min-height: 80px;
  max-height: 150px;
}

/* Wave Parallax Animation */
.parallax > use {
  animation: move-forever 25s cubic-bezier(.55,.5,.45,.5) infinite;
}
.parallax > use:nth-child(1) {
  animation-delay: -2s;
  animation-duration: 7s;
}
.parallax > use:nth-child(2) {
  animation-delay: -3s;
  animation-duration: 10s;
}
.parallax > use:nth-child(3) {
  animation-delay: -4s;
  animation-duration: 13s;
}
.parallax > use:nth-child(4) {
  animation-delay: -5s;
  animation-duration: 20s;
}

@keyframes move-forever {
  0% {
    transform: translate3d(-90px,0,0);
  }
  100% {
    transform: translate3d(85px,0,0);
  }
}

/* Hero Section (DEEP DARK ORGANIC WATER EFFECT FOR MAXIMUM CRO EMOTIONAL HOOK) */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding-top: 200px;
  padding-bottom: 100px;
  background: linear-gradient(135deg, #041C32 0%, #063B6F 50%, #0E76BC 100%);
  color: var(--color-white);
  overflow: hidden;
}

/* Water Ripples/Blobs */
.water-ripple {
  position: absolute;
  background: radial-gradient(circle, rgba(14, 118, 188, 0.28) 0%, rgba(6, 59, 111, 0) 70%);
  border-radius: 40% 60% 70% 30% / 40% 50% 60% 50%;
  filter: blur(50px);
  z-index: 1;
  pointer-events: none;
  animation: water-ripple-flow 12s infinite alternate ease-in-out;
}

.ripple-1 {
  width: 650px;
  height: 650px;
  top: -100px;
  right: -100px;
}

.ripple-2 {
  width: 550px;
  height: 550px;
  bottom: -150px;
  left: -100px;
  animation-delay: -4s;
}

@keyframes water-ripple-flow {
  0% {
    transform: rotate(0deg) translate(0, 0) scale(1);
    border-radius: 40% 60% 70% 30% / 40% 50% 60% 50%;
  }
  100% {
    transform: rotate(180deg) translate(50px, -20px) scale(1.15);
    border-radius: 60% 40% 30% 70% / 50% 60% 40% 60%;
  }
}

/* Sparkling reflections (like sun hitting pool water ripples) */
.water-sparkle {
  position: absolute;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.45) 0%, rgba(14, 118, 188, 0) 70%);
  border-radius: 50%;
  pointer-events: none;
  z-index: 2;
  filter: blur(12px);
  animation: sparkle-pulse 5s infinite alternate ease-in-out;
}

.sparkle-1 { width: 140px; height: 140px; top: 15%; left: 45%; animation-delay: 0s; }
.sparkle-2 { width: 90px; height: 90px; top: 55%; left: 20%; animation-delay: -2s; }
.sparkle-3 { width: 160px; height: 160px; bottom: 25%; left: 45%; animation-delay: -3.5s; }
.sparkle-4 { width: 110px; height: 110px; top: 35%; right: 15%; animation-delay: -1s; }

@keyframes sparkle-pulse {
  0% { transform: scale(0.8) translateY(0); opacity: 0.15; }
  50% { transform: scale(1.2) translateY(-8px) rotate(45deg); opacity: 0.55; }
  100% { transform: scale(0.9) translateY(4px); opacity: 0.25; }
}

.hero .container {
  position: relative;
  z-index: 10;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.12fr 0.88fr;
  gap: var(--space-3xl);
  align-items: center;
}

/* Tagline without dash */
.hero-tagline {
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 3px;
  color: var(--color-primary-light);
  font-weight: 800;
  margin-bottom: var(--space-md);
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  font-family: var(--font-body);
}

.gradient-text {
  background: linear-gradient(135deg, #FFF 30%, #38BDF8 70%, #00F2FE 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  display: inline-block;
}

.hero-title {
  margin-bottom: var(--space-lg);
  line-height: 1.15;
  color: var(--color-white);
}

.hero-subtitle {
  font-size: clamp(1.05rem, 2vw, 1.2rem);
  color: rgba(255, 255, 255, 0.75);
  margin-bottom: var(--space-2xl);
  max-width: 620px;
  font-weight: 400;
  font-family: var(--font-body);
  line-height: 1.7;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-md);
  margin-bottom: var(--space-3xl);
}

.hero-trust-badges {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-xl);
  border-top: 1px solid rgba(255, 255, 255, 0.15);
  padding-top: var(--space-xl);
}

.trust-badge {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  font-size: 0.85rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.9);
  font-family: var(--font-body);
}

.trust-badge svg {
  color: var(--color-primary-light);
  width: 18px;
  height: 18px;
  flex-shrink: 0;
}

/* Right Side: Interactive Fiber Pool Preview with Hotspots */
.hero-visual-wrapper {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}

.hero-pool-card {
  position: relative;
  width: 100%;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-xl);
  border: 1px solid rgba(255, 255, 255, 0.1);
  transform: perspective(1000px) rotateY(-3deg) rotateX(3deg);
  transition: transform var(--transition-slow);
}

.hero-pool-card:hover {
  transform: perspective(1000px) rotateY(0deg) rotateX(0deg);
}

.hero-pool-img {
  width: 100%;
  height: 480px;
  object-fit: cover;
  display: block;
}

/* Interactive Hotspots */
.hotspot {
  position: absolute;
  z-index: 20;
}

.hotspot-1 { top: 46%; left: 52%; }
.hotspot-2 { top: 50%; left: 78%; }
.hotspot-3 { top: 58%; left: 42%; }

.hotspot-trigger {
  width: 32px;
  height: 32px;
  background: var(--color-primary);
  border: 3px solid var(--color-white);
  border-radius: 50%;
  cursor: pointer;
  box-shadow: 0 0 10px rgba(14, 118, 188, 0.5);
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-white);
  font-weight: 700;
  font-size: 14px;
}

.hotspot-trigger::after {
  content: '';
  position: absolute;
  top: -6px;
  left: -6px;
  right: -6px;
  bottom: -6px;
  border-radius: 50%;
  border: 2px solid var(--color-secondary);
  opacity: 0.8;
  animation: pulse-hotspot 2s infinite;
}

@keyframes pulse-hotspot {
  0% { transform: scale(1); opacity: 0.8; }
  100% { transform: scale(1.6); opacity: 0; }
}

.hotspot-content {
  position: absolute;
  bottom: 44px;
  left: 50%;
  transform: translateX(-50%) translateY(10px);
  width: 240px;
  background: rgba(4, 28, 50, 0.95);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(14, 118, 188, 0.35);
  padding: var(--space-md);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-lg);
  opacity: 0;
  visibility: hidden;
  transition: all var(--transition-normal);
  color: var(--color-white);
  pointer-events: none;
  font-family: var(--font-body);
}

.hotspot-content h4 {
  font-size: 0.9rem;
  margin-bottom: var(--space-xs);
  color: var(--color-primary-light);
  font-family: var(--font-heading);
}

.hotspot-content p {
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.4;
}

.hotspot:hover .hotspot-content {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
}

/* Sections Global - Transition to White Resort Light Theme starting from fold 2 */
.section {
  padding: var(--space-3xl) 0;
  position: relative;
  background-color: var(--color-background); /* Pure White resort background */
  color: var(--color-text);
}

.section-alt {
  background-color: var(--color-water-bg); /* Soft pool blue background */
}

.section-header {
  text-align: center;
  max-width: 700px;
  margin: 0 auto var(--space-3xl) auto;
}

.section-title {
  margin-bottom: var(--space-md);
  color: var(--color-text); /* Dark titles for maximum legibility */
}

.section-subtitle {
  font-size: 1.05rem;
  color: var(--color-text-muted);
}

/* Premium Form Section */
.form-section {
  scroll-margin-top: 100px;
}

.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-3xl);
  align-items: flex-start;
}

.form-info h2 {
  margin-bottom: var(--space-lg);
  color: var(--color-text);
}

.form-info p {
  margin-bottom: var(--space-xl);
  font-size: 1.05rem;
}

.feature-check-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
}

.feature-check-item {
  display: flex;
  align-items: center;
  gap: var(--space-md);
  font-weight: 600;
  color: var(--color-text);
}

.feature-check-item svg {
  color: var(--color-primary);
  width: 22px;
  height: 22px;
  flex-shrink: 0;
}

.form-card {
  background: var(--color-white);
  border-radius: var(--radius-lg);
  padding: var(--space-2xl);
  box-shadow: var(--shadow-xl);
  border: 1px solid var(--color-border);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
}

.form-group {
  margin-bottom: var(--space-lg);
}

.form-group-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-md);
  margin-bottom: var(--space-lg);
}

.form-label {
  display: block;
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: var(--space-sm);
  color: var(--color-text-muted);
}

.form-input {
  width: 100%;
  padding: 0.9rem 1.1rem;
  border: 1.5px solid rgba(14, 118, 188, 0.2);
  border-radius: var(--radius-md);
  font-family: var(--font-body);
  font-size: 0.95rem;
  transition: all var(--transition-fast);
  color: var(--color-text);
  background: var(--color-white);
}

.form-input:focus {
  outline: none;
  border-color: var(--color-primary);
  background: var(--color-white);
  box-shadow: 0 0 0 4px rgba(14, 118, 188, 0.15);
}

/* Custom Select styling */
select.form-input option {
  background: var(--color-white);
  color: var(--color-text);
}

.radio-group {
  display: flex;
  gap: var(--space-sm);
}

.radio-option {
  flex: 1;
  position: relative;
}

.radio-option input[type="radio"] {
  position: absolute;
  opacity: 0;
  width: 0;
  height: 0;
}

.radio-label {
  display: block;
  padding: 0.85rem var(--space-sm);
  text-align: center;
  border: 1.5px solid rgba(14, 118, 188, 0.2);
  border-radius: var(--radius-md);
  cursor: pointer;
  font-size: 0.85rem;
  font-weight: 600;
  background: var(--color-white);
  transition: all var(--transition-fast);
  color: var(--color-text-muted);
}

.radio-option input[type="radio"]:checked + .radio-label {
  border-color: var(--color-primary);
  background-color: var(--color-primary-light);
  color: var(--color-primary-dark);
}

/* Pricing Section */
.pricing-card-highlight {
  max-width: 960px;
  margin: 0 auto;
  background: var(--color-white);
  border-radius: var(--radius-lg);
  padding: var(--space-3xl) var(--space-2xl);
  box-shadow: var(--shadow-xl);
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: var(--space-3xl);
  align-items: center;
  border: 1px solid var(--color-border);
}

.pricing-details h3 {
  font-size: 1.85rem;
  margin-bottom: var(--space-md);
  color: var(--color-text);
}

.pricing-details p {
  margin-bottom: var(--space-lg);
  font-size: 0.95rem;
}

.pricing-details-list {
  list-style: none;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-md);
}

.pricing-details-item {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--color-text);
}

.pricing-details-item svg {
  color: var(--color-primary);
  width: 18px;
  height: 18px;
  flex-shrink: 0;
}

.pricing-cta-block {
  text-align: center;
  padding-left: var(--space-xl);
  border-left: 1px solid rgba(14, 118, 188, 0.15);
}

.pricing-cta-price-tag {
  font-size: 0.75rem;
  font-weight: 800;
  text-transform: uppercase;
  color: var(--color-primary-dark);
  letter-spacing: 2px;
  margin-bottom: var(--space-xs);
}

.pricing-cta-headline {
  font-family: var(--font-heading);
  font-size: 2rem;
  color: var(--color-text);
  margin-bottom: var(--space-lg);
  font-weight: 800;
}

/* Gallery Section */
.gallery-filter-tabs {
  display: flex;
  justify-content: center;
  gap: var(--space-sm);
  margin-bottom: var(--space-2xl);
  flex-wrap: wrap;
}

.filter-tab {
  background: var(--color-white);
  border: 1px solid rgba(14, 118, 188, 0.2);
  padding: 0.65rem 1.6rem;
  border-radius: var(--radius-full);
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.85rem;
  color: var(--color-text-muted);
  cursor: pointer;
  transition: all var(--transition-fast);
}

.filter-tab.active {
  background: var(--color-primary);
  border-color: var(--color-primary);
  color: var(--color-white);
  box-shadow: 0 4px 15px rgba(14, 118, 188, 0.3);
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: var(--space-lg);
}

.gallery-item {
  position: relative;
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  height: 340px;
  cursor: pointer;
  transition: all var(--transition-normal);
  border: 4px solid var(--color-white);
}

.gallery-item:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
  border-color: var(--color-primary-light);
}

.gallery-item.col-6 { grid-column: span 6; }
.gallery-item.col-4 { grid-column: span 4; }
.gallery-item.col-8 { grid-column: span 8; }

.gallery-item-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition-slow);
}

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

.gallery-item-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(180deg, rgba(15, 23, 42, 0), rgba(15, 23, 42, 0.85));
  padding: var(--space-xl) var(--space-lg) var(--space-lg) var(--space-lg);
  color: var(--color-white);
  opacity: 0;
  transition: opacity var(--transition-normal);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}

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

.gallery-item-title {
  color: var(--color-white);
  font-family: var(--font-heading);
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 0.25rem;
}

.gallery-item-desc {
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.8);
}

/* Lightbox */
.lightbox {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(15, 23, 42, 0.95);
  backdrop-filter: blur(10px);
  z-index: 2000;
  display: none;
  align-items: center;
  justify-content: center;
}

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

.lightbox-img {
  max-width: 100%;
  max-height: 80vh;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-xl);
}

.lightbox-close {
  position: absolute;
  top: -40px;
  right: 0;
  background: none;
  border: none;
  color: var(--color-white);
  font-size: 2rem;
  cursor: pointer;
}

/* Differentials Section */
.diff-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-lg);
}

.diff-card {
  background: var(--color-white);
  border-radius: var(--radius-md);
  padding: var(--space-xl);
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--color-border);
  transition: all var(--transition-normal);
  cursor: pointer;
}

.diff-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(14, 118, 188, 0.3);
  background: var(--color-water-bg);
}

.diff-icon-wrapper {
  background-color: var(--color-primary-light);
  color: var(--color-primary-dark);
  width: 48px;
  height: 48px;
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: var(--space-lg);
  transition: all var(--transition-normal);
}

.diff-card:hover .diff-icon-wrapper {
  background-color: var(--color-primary-dark);
  color: var(--color-white);
}

.diff-icon-wrapper svg {
  width: 22px;
  height: 22px;
}

.diff-card h3 {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: var(--space-sm);
  color: var(--color-text);
}

.diff-card p {
  font-size: 0.85rem;
}

/* How It Works Section */
.steps-container {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-xl);
  position: relative;
}

.steps-container::before {
  content: '';
  position: absolute;
  top: 40px;
  left: 10%;
  right: 10%;
  height: 2px;
  background: rgba(14, 118, 188, 0.15);
  z-index: 1;
}

.step-card {
  position: relative;
  z-index: 2;
  text-align: center;
}

.step-number {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: var(--color-white);
  border: 2px solid rgba(14, 118, 188, 0.3);
  color: var(--color-primary-dark);
  font-family: var(--font-heading);
  font-size: 1.35rem;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto var(--space-lg) auto;
  transition: all var(--transition-normal);
}

.step-card:hover .step-number {
  border-color: var(--color-primary-dark);
  background: var(--color-primary-dark);
  color: var(--color-white);
  box-shadow: 0 0 0 5px var(--color-primary-light);
}

.step-card h3 {
  font-family: var(--font-heading);
  font-size: 1.15rem;
  font-weight: 700;
  margin-bottom: var(--space-sm);
}

.step-card p {
  font-size: 0.85rem;
}

/* Social Proof (Testimonials) */
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-xl);
  margin-bottom: var(--space-3xl);
}

.review-card {
  background: var(--color-white);
  border-radius: var(--radius-md);
  padding: var(--space-xl);
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--color-border);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.review-stars {
  color: #FBBF24;
  margin-bottom: var(--space-md);
  display: flex;
  gap: 2px;
}

.review-stars svg {
  width: 16px;
  height: 16px;
  fill: currentColor;
}

.review-text {
  font-style: italic;
  color: var(--color-text);
  font-size: 0.9rem;
  margin-bottom: var(--space-lg);
}

.review-user {
  display: flex;
  align-items: center;
  gap: var(--space-md);
}

.review-name {
  font-weight: 700;
  font-size: 0.9rem;
  color: var(--color-text);
}

.review-location {
  font-size: 0.75rem;
  color: var(--color-text-muted);
}

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

.video-wrapper {
  position: relative;
  padding-bottom: 56.25%;
  height: 0;
  overflow: hidden;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-xl);
  border: 4px solid var(--color-white);
  background-color: var(--color-water-bg);
}

.video-placeholder-img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.95;
}

.video-overlay-btn {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 70px;
  height: 70px;
  border-radius: 50%;
  background: var(--color-white);
  color: var(--color-primary-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  border: none;
  cursor: pointer;
  transition: all var(--transition-normal);
  z-index: 10;
  box-shadow: var(--shadow-lg);
}

.video-overlay-btn:hover {
  transform: translate(-50%, -50%) scale(1.1);
  color: var(--color-cta);
  box-shadow: 0 0 0 8px rgba(14, 165, 233, 0.2);
}

.video-overlay-btn svg {
  width: 26px;
  height: 26px;
  fill: currentColor;
  margin-left: 3px;
}

/* About Us Section */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-3xl);
  align-items: center;
}

.about-img-frame {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-xl);
  height: 460px;
  border: 4px solid var(--color-white);
}

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

.about-stats {
  position: absolute;
  bottom: 20px;
  left: 20px;
  right: 20px;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-radius: var(--radius-md);
  padding: var(--space-lg);
  display: flex;
  justify-content: space-around;
  border: 1px solid rgba(14, 165, 233, 0.2);
}

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

.stat-num {
  font-family: var(--font-heading);
  font-size: 2rem;
  color: var(--color-primary-dark);
  font-weight: 800;
  display: block;
}

.stat-label {
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-weight: 700;
  color: var(--color-text);
}

.about-content h2 {
  margin-bottom: var(--space-lg);
}

.about-content p {
  margin-bottom: var(--space-lg);
  font-size: 0.95rem;
}

.about-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-md);
  margin-top: var(--space-xl);
}

.about-feat-item {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  font-weight: 600;
  font-size: 0.85rem;
  color: var(--color-text);
}

.about-feat-item svg {
  color: var(--color-primary);
  width: 18px;
  height: 18px;
}

/* FAQ Section */
.faq-container {
  max-width: 800px;
  margin: 0 auto;
}

.faq-item {
  background: var(--color-white);
  border-radius: var(--radius-md);
  border: 1px solid var(--color-border);
  margin-bottom: var(--space-md);
  overflow: hidden;
  transition: all var(--transition-normal);
}

.faq-item.active {
  border-color: rgba(14, 165, 233, 0.3);
  box-shadow: var(--shadow-md);
}

.faq-question {
  width: 100%;
  background: none;
  border: none;
  padding: 1.2rem 1.5rem;
  text-align: left;
  font-family: var(--font-heading);
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--color-text);
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.faq-question:hover {
  color: var(--color-primary-dark);
}

.faq-question svg {
  width: 18px;
  height: 18px;
  transition: transform var(--transition-normal);
  color: var(--color-text-muted);
}

.faq-item.active .faq-question svg {
  transform: rotate(180deg);
  color: var(--color-primary-dark);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height var(--transition-normal) ease-out;
}

.faq-answer-inner {
  padding: 0 1.5rem 1.2rem 1.5rem;
  color: var(--color-text-muted);
  font-size: 0.85rem;
  line-height: 1.6;
}

/* CTA Climax Section */
.cta-section {
  background-color: var(--color-primary-light);
  color: var(--color-text);
  position: relative;
  overflow: hidden;
  text-align: center;
}

.cta-section-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.25;
}

.cta-section-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle, rgba(14, 165, 233, 0.1), var(--color-water-bg) 80%);
}

.cta-section .container {
  position: relative;
  z-index: 10;
  max-width: 800px;
}

.cta-section h2 {
  font-size: clamp(2rem, 5vw, 2.75rem);
  margin-bottom: var(--space-md);
  font-weight: 800;
  color: var(--color-text);
}

.cta-section p {
  color: var(--color-text-muted);
  font-size: 1.15rem;
  margin-bottom: var(--space-2xl);
  font-weight: 500;
}

/* Footer */
.footer {
  background: #091E3A; /* Deep navy footer */
  color: rgba(255, 255, 255, 0.7);
  padding: var(--space-3xl) 0 var(--space-xl) 0;
  border-top: 1px solid rgba(14, 165, 233, 0.1);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1.5fr;
  gap: var(--space-3xl);
  margin-bottom: var(--space-3xl);
}

.footer-brand h4 {
  color: var(--color-white);
  margin-bottom: var(--space-lg);
}

.footer-brand p {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.6);
}

.footer-links-title {
  color: var(--color-white);
  font-size: 0.9rem;
  font-weight: 700;
  margin-bottom: var(--space-lg);
  text-transform: uppercase;
  letter-spacing: 1px;
}

.footer-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
}

.footer-link {
  color: rgba(255, 255, 255, 0.6);
  text-decoration: none;
  font-size: 0.85rem;
  transition: color var(--transition-fast);
}

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

.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: var(--space-sm);
  font-size: 0.85rem;
  margin-bottom: var(--space-md);
  color: rgba(255, 255, 255, 0.7);
}

.footer-contact-item svg {
  color: var(--color-secondary);
  width: 16px;
  height: 16px;
  margin-top: 3px;
  flex-shrink: 0;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  padding-top: var(--space-xl);
  text-align: center;
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.45);
}

/* Accessibility Focus States */
a:focus-visible, button:focus-visible, input:focus-visible, select:focus-visible, textarea:focus-visible {
  outline: 3px solid var(--color-cta);
  outline-offset: 2px;
}

/* Media Queries (Responsive) */
@media (max-width: 1024px) {
  .hero-grid {
    grid-template-columns: 1fr;
    gap: var(--space-2xl);
    text-align: center;
  }
  
  .hero-tagline {
    justify-content: center;
  }
  
  .hero-actions {
    justify-content: center;
  }
  
  .hero-trust-badges {
    justify-content: center;
  }
  
  .hero-pool-card {
    transform: none;
  }
  
  .hero-pool-card:hover {
    transform: none;
  }
  
  .hero-pool-img {
    height: 380px;
  }
  
  .form-grid, .about-grid, .footer-grid {
    grid-template-columns: 1fr;
    gap: var(--space-2xl);
  }
  
  .pricing-card-highlight {
    grid-template-columns: 1fr;
    padding: var(--space-2xl);
    gap: var(--space-2xl);
  }
  
  .pricing-cta-block {
    padding-left: 0;
    border-left: none;
    border-top: 1px solid rgba(14, 118, 188, 0.15);
    padding-top: var(--space-2xl);
  }
  
  .diff-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .steps-container {
    grid-template-columns: repeat(2, 1fr);
    gap: var(--space-xl);
  }
  
  .steps-container::before {
    display: none;
  }
  
  .reviews-grid {
    grid-template-columns: 1fr;
    gap: var(--space-lg);
  }
}

@media (max-width: 768px) {
  :root {
    --space-3xl: 3.5rem;
  }
  
  .header {
    padding: var(--space-xs) 0;
  }

  .nav-container {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
  }

  .mobile-nav-toggle {
    display: block;
    position: absolute;
    right: var(--space-lg);
    top: 50%;
    transform: translateY(-50%);
  }
  
  .logo-wrapper {
    height: 110px;
    width: 280px;
    margin: 0 auto;
  }
  
  .nav-links {
    position: fixed;
    top: 0;
    right: -100%;
    width: 280px;
    height: 100vh;
    background: #020c16;
    flex-direction: column;
    padding: 100px var(--space-2xl) var(--space-2xl) var(--space-2xl);
    transition: right var(--transition-normal);
    box-shadow: -10px 0 30px rgba(0,0,0,0.5);
    z-index: 1000;
    gap: var(--space-lg);
    align-items: flex-start;
  }
  
  .nav-links.active {
    right: 0;
  }
  
  .nav-link {
    font-size: 1.05rem;
    padding: var(--space-sm) 0;
    color: rgba(255, 255, 255, 0.9) !important;
  }
  
  .nav-btn {
    width: 100%;
    text-align: center;
    margin-top: var(--space-md);
  }
  
  .hero-pool-img {
    height: 280px;
  }
  
  .gallery-grid {
    grid-template-columns: 1fr;
  }
  
  .gallery-item.col-4, .gallery-item.col-6, .gallery-item.col-8 {
    grid-column: span 12;
  }
  
  .diff-grid {
    grid-template-columns: 1fr;
  }
  
  .steps-container {
    grid-template-columns: 1fr;
  }
  
  .about-img-frame {
    height: 300px;
  }
  
  .about-stats {
    flex-direction: column;
    gap: var(--space-md);
    position: relative;
    bottom: 0;
    left: 0;
    right: 0;
    margin-top: var(--space-md);
    background: rgba(255, 255, 255, 0.95);
  }
  
  .pricing-details-list {
    grid-template-columns: 1fr;
  }
}

/* Journey Storytelling Section */
.journey-section {
  background: var(--color-background);
  padding: var(--space-3xl) 0;
  overflow: hidden;
}

.journey-wrapper {
  position: relative;
  max-width: 800px;
  margin: 0 auto;
  padding: var(--space-xl) 0;
}

/* Vertical progress bar line simulating water pipe */
.journey-progress-bar {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 24px;
  width: 6px;
  background: rgba(14, 118, 188, 0.1);
  border-radius: var(--radius-full);
  z-index: 1;
}

.journey-progress-fill {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 0%; /* Fills with water on scroll */
  background: linear-gradient(to bottom, var(--color-primary), var(--color-secondary));
  border-radius: var(--radius-full);
  transition: height 0.4s cubic-bezier(0.1, 0.76, 0.55, 0.94);
  box-shadow: 0 0 15px var(--color-primary);
}

.journey-steps {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  gap: var(--space-3xl);
}

.journey-step {
  display: flex;
  gap: var(--space-xl);
  align-items: flex-start;
  opacity: 0.1;
  filter: blur(2px);
  transform: translateY(40px) scale(0.95);
  transition: all 0.8s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.journey-step.active {
  opacity: 1;
  filter: blur(0);
  transform: translateY(0) scale(1);
}

.journey-step-marker {
  width: 54px;
  height: 54px;
  border-radius: 50%;
  background: var(--color-white);
  border: 3px solid rgba(14, 118, 188, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-text-muted);
  flex-shrink: 0;
  box-shadow: var(--shadow-sm);
  transition: all 0.6s cubic-bezier(0.34, 1.56, 0.64, 1);
  transform: scale(0.85) rotate(-45deg);
}

.journey-step.active .journey-step-marker {
  border-color: var(--color-primary);
  background: var(--color-primary);
  color: var(--color-white);
  box-shadow: 0 0 0 6px rgba(14, 118, 188, 0.2);
  transform: scale(1.15) rotate(0deg);
}

.journey-step-marker svg {
  width: 22px;
  height: 22px;
}

.journey-step-content {
  background: var(--color-white);
  border: 1px solid var(--color-border);
  padding: var(--space-lg) var(--space-xl);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
  flex-grow: 1;
  transition: all 0.6s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.journey-step.active .journey-step-content {
  box-shadow: var(--shadow-xl);
  border-color: rgba(14, 118, 188, 0.25);
  background: var(--color-water-bg);
  transform: scale(1.02);
}

.journey-step-content h3 {
  font-size: 1.25rem;
  margin-bottom: var(--space-xs);
  color: var(--color-text);
  font-weight: 800;
}

.journey-step-content p {
  font-size: 0.9rem;
  color: var(--color-text-muted);
  line-height: 1.6;
}

/* Floating water droplet particles along the pipe line */
.water-droplet {
  position: absolute;
  left: 21px; /* Align precisely with center of progress filled bar */
  width: 12px;
  height: 12px;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.9) 0%, rgba(14, 118, 188, 0.85) 60%, rgba(14, 118, 188, 0) 100%);
  border-radius: 50% 50% 50% 50% / 60% 60% 40% 40%;
  pointer-events: none;
  z-index: 5;
  animation: float-up-droplet 2s forwards cubic-bezier(0.1, 0.8, 0.3, 1);
}

@keyframes float-up-droplet {
  0% {
    transform: translateY(0) scale(0.6) rotate(0deg);
    opacity: 0;
  }
  10% {
    opacity: 1;
    transform: translateY(-5px) scale(1.1) rotate(15deg);
  }
  100% {
    transform: translateY(-120px) scale(0.3) rotate(45deg);
    opacity: 0;
  }
}

/* Adjust responsiveness */
@media (max-width: 768px) {
  .journey-progress-bar {
    left: 16px;
  }
  .journey-step-marker {
    width: 38px;
    height: 38px;
    border-width: 2px;
  }
  .journey-step-marker svg {
    width: 18px;
    height: 18px;
  }
  .journey-step {
    gap: var(--space-md);
  }
  .journey-step-content {
    padding: var(--space-md);
  }
}

/* Fluid Scroll Reveal Effects */
.reveal-on-scroll {
  opacity: 0;
  transform: translateY(40px) scale(0.97);
  transition: opacity 1.2s cubic-bezier(0.16, 1, 0.3, 1), transform 1.2s cubic-bezier(0.16, 1, 0.3, 1);
  will-change: transform, opacity;
}

.reveal-active {
  opacity: 1;
  transform: translateY(0) scale(1);
}

/* Stagger reveals for grids to create a sweeping wave effect */
.diff-grid .diff-card:nth-child(1) { transition-delay: 100ms; }
.diff-grid .diff-card:nth-child(2) { transition-delay: 200ms; }
.diff-grid .diff-card:nth-child(3) { transition-delay: 300ms; }
.diff-grid .diff-card:nth-child(4) { transition-delay: 400ms; }

.steps-container .step-card:nth-child(1) { transition-delay: 100ms; }
.steps-container .step-card:nth-child(2) { transition-delay: 200ms; }
.steps-container .step-card:nth-child(3) { transition-delay: 300ms; }
.steps-container .step-card:nth-child(4) { transition-delay: 400ms; }

.gallery-grid .gallery-item:nth-child(1) { transition-delay: 50ms; }
.gallery-grid .gallery-item:nth-child(2) { transition-delay: 150ms; }
.gallery-grid .gallery-item:nth-child(3) { transition-delay: 250ms; }
.gallery-grid .gallery-item:nth-child(4) { transition-delay: 350ms; }
.gallery-grid .gallery-item:nth-child(5) { transition-delay: 450ms; }
.gallery-grid .gallery-item:nth-child(6) { transition-delay: 550ms; }

/* Success Modal & Checkmark Animation */
.success-modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(4, 28, 50, 0.85);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9999;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
}
.success-modal.active {
  opacity: 1;
  visibility: visible;
}
.success-modal-content {
  background: var(--color-white);
  padding: var(--space-2xl);
  border-radius: var(--radius-lg);
  text-align: center;
  box-shadow: var(--shadow-2xl);
  max-width: 400px;
  width: 90%;
  transform: scale(0.8);
  transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
}
.success-modal.active .success-modal-content {
  transform: scale(1);
}
.success-modal-content h3 {
  margin-top: var(--space-md);
  font-size: 1.5rem;
  color: var(--color-text);
  font-family: var(--font-heading);
}
.success-modal-content p {
  margin-top: var(--space-sm);
  font-size: 0.95rem;
  color: var(--color-text-muted);
  line-height: 1.5;
  font-family: var(--font-body);
}

/* Checkmark Animation */
.success-checkmark {
  width: 80px;
  height: 80px;
  margin: 0 auto;
}
.success-checkmark .check-icon {
  width: 80px;
  height: 80px;
  position: relative;
  border-radius: 50%;
  box-sizing: content-box;
  border: 4px solid rgba(76, 175, 80, .5);
}
.success-checkmark .check-icon::before, .success-checkmark .check-icon::after {
  content: '';
  height: 100px;
  position: absolute;
  background: var(--color-white);
  transform: rotate(-45deg);
}
.success-checkmark .check-icon::before {
  border-radius: 100px 0 0 100px;
  top: -7px;
  left: -30px;
  transform-origin: 100% 50%;
  transform: rotate(-45deg);
}
.success-checkmark .check-icon::after {
  border-radius: 0 100px 100px 0;
  top: -30px;
  left: 30px;
  transform-origin: 0 50%;
  transform: rotate(-45deg);
}
.success-checkmark .check-icon .icon-line {
  height: 5px;
  background-color: #4CAF50;
  display: block;
  border-radius: 2px;
  position: absolute;
  z-index: 10;
}
.success-checkmark .check-icon .icon-line.line-tip {
  top: 43px;
  left: 14px;
  width: 25px;
  transform: rotate(45deg);
  animation: icon-line-tip 0.75s;
}
.success-checkmark .check-icon .icon-line.line-long {
  top: 38px;
  right: 8px;
  width: 47px;
  transform: rotate(-45deg);
  animation: icon-line-long 0.75s;
}
.success-checkmark .check-icon .icon-circle {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  border: 4px solid #4CAF50;
  position: absolute;
  left: -4px;
  top: -4px;
  z-index: 10;
  box-sizing: content-box;
}
.success-checkmark .check-icon .icon-fix {
  width: 5px;
  height: 90px;
  background-color: var(--color-white);
  position: absolute;
  left: 28px;
  top: 8px;
  z-index: 1;
  transform: rotate(-45deg);
}
@keyframes icon-line-tip {
  0% { width: 0; left: 1px; top: 19px; }
  54% { width: 0; left: 1px; top: 19px; }
  70% { width: 50px; left: -8px; top: 37px; }
  84% { width: 17px; left: 21px; top: 48px; }
  100% { width: 25px; top: 43px; left: 14px; }
}
@keyframes icon-line-long {
  0% { width: 0; right: 46px; top: 54px; }
  65% { width: 0; right: 46px; top: 54px; }
  84% { width: 55px; right: 0px; top: 35px; }
  100% { width: 47px; top: 38px; right: 8px; }
}

/* Error Icon Styling */
.error-cross {
  width: 80px;
  height: 80px;
  margin: 0 auto 20px auto;
}
.error-cross .cross-icon {
  width: 80px;
  height: 80px;
  position: relative;
  border-radius: 50%;
  box-sizing: content-box;
  border: 4px solid rgba(244, 67, 54, .5);
}
.error-cross .cross-icon .cross-line {
  height: 5px;
  background-color: #F44336;
  display: block;
  border-radius: 2px;
  position: absolute;
  z-index: 10;
}
.error-cross .cross-icon .cross-line.line-left {
  top: 38px;
  left: 17px;
  width: 46px;
  transform: rotate(45deg);
  animation: icon-line-left 0.5s forwards ease-in-out;
}
.error-cross .cross-icon .cross-line.line-right {
  top: 38px;
  left: 17px;
  width: 46px;
  transform: rotate(-45deg);
  animation: icon-line-right 0.5s forwards ease-in-out;
}
.error-cross .cross-icon .cross-circle {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  border: 4px solid #F44336;
  position: absolute;
  left: -4px;
  top: -4px;
  z-index: 10;
  box-sizing: content-box;
}

@keyframes icon-line-left {
  0% { width: 0; left: 40px; top: 40px; }
  100% { width: 46px; left: 17px; top: 38px; }
}
@keyframes icon-line-right {
  0% { width: 0; left: 40px; top: 40px; }
  100% { width: 46px; left: 17px; top: 38px; }
}


