/* Import distinctive fonts */
@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;500;600;700;800&family=Sora:wght@300;400;500;600;700;800&display=swap');

:root {
  /* Brand Colors - Vibrant & Modern (Dark Mode) */
  --primary-orange: #FF6B35;
  --primary-dark: #0a0a0f;
  --primary-light: #121218;
  --secondary-dark: #1a1a24;
  --tertiary-dark: #242433;
  --accent-cyan: #00f5ff;
  --accent-pink: #ff006e;
  --accent-yellow: #ffbe0b;
  --accent-purple: #8338ec;

  /* Dark Mode Neutrals */
  --bg-primary: #0a0a0f;
  --bg-secondary: #121218;
  --bg-tertiary: #1a1a24;
  --bg-elevated: #242433;
  --bg-hover: #2d2d3d;

  --text-primary: #ffffff;
  --text-secondary: #b8b8c7;
  --text-tertiary: #8a8a9a;
  --text-muted: #6a6a7a;

  --border-color: rgba(255, 255, 255, 0.1);
  --border-color-light: rgba(255, 255, 255, 0.05);

  /* Gradients */
  --gradient-primary: linear-gradient(135deg, #FF6B35 0%, #ff006e 100%);
  --gradient-dark: linear-gradient(135deg, #0a0a0f 0%, #121218 100%);
  --gradient-accent: linear-gradient(135deg, #00f5ff 0%, #8338ec 100%);
  --gradient-overlay: linear-gradient(135deg, rgba(255, 107, 53, 0.1) 0%, rgba(0, 245, 255, 0.1) 100%);

  /* Typography */
  --font-display: 'Sora', sans-serif;
  --font-body: 'Outfit', sans-serif;

  /* Dark Mode Shadows */
  --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.4);
  --shadow-md: 0 4px 20px rgba(0, 0, 0, 0.5);
  --shadow-lg: 0 8px 40px rgba(0, 0, 0, 0.6);
  --shadow-glow: 0 0 30px rgba(255, 107, 53, 0.4);
  --shadow-glow-cyan: 0 0 30px rgba(0, 245, 255, 0.3);

  /* Spacing */
  --space-xs: 0.5rem;
  --space-sm: 1rem;
  --space-md: 2rem;
  --space-lg: 4rem;
  --space-xl: 6rem;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: var(--font-body);
  color: var(--text-secondary);
  line-height: 1.7;
  overflow-x: hidden;
  background: var(--bg-primary);
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-display);
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 1rem;
  color: var(--text-primary);
}

h1 {
  font-size: clamp(2.5rem, 5vw, 4.5rem);
  font-weight: 800;
  letter-spacing: -0.02em;
}

h2 {
  font-size: clamp(2rem, 4vw, 3.5rem);
  font-weight: 700;
}

h3 {
  font-size: clamp(1.5rem, 3vw, 2.5rem);
  font-weight: 600;
}

p {
  font-size: 1.125rem;
  margin-bottom: 1.5rem;
  color: var(--text-secondary);
}

ul {
	margin-left: 1.1em;
}
/* Showcase Section */
.showcase-section {
  padding: var(--space-md) 0;
  background: var(--bg-primary);
}

.showcase-section .container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 2rem;
}

.showcase-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 3rem;
  align-items: center;
  margin-bottom: 6rem;
}

.showcase-grid:nth-child(even) {
  grid-template-columns: 1fr 1.2fr;
}

.showcase-grid:nth-child(even) .showcase-image {
  order: 2;
}

.showcase-content h3 {
  margin-bottom: 1rem;
  color: var(--text-primary);
}

.showcase-content p {
  color: var(--text-tertiary);
  margin-bottom: 1.5rem;
}

.showcase-content ul {
  list-style: none;
  margin-bottom: 2rem;
}

.showcase-content li {
  padding: 0.75rem 0;
  padding-left: 2rem;
  position: relative;
  color: var(--text-secondary);
}

.showcase-content li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--accent-cyan);
  font-weight: 700;
  font-size: 1.2rem;
}

.showcase-image {
  position: relative;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--border-color);
}

.showcase-image img {
  width: 100%;
  height: auto;
  display: block;
}

.showcase-image::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: var(--gradient-primary);
  opacity: 0;
  transition: opacity 0.3s ease;
  z-index: 1;
}

.showcase-image:hover::before {
  opacity: 0.15;
}
/* Feature Grid Section  ***************************************************************************  */
.features-grid {
  padding: var(--space-md) 0;
  background: var(--bg-secondary);
}

.features-grid .container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 2rem;
}

.section-header {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 4rem;
}

.section-header .label {
  display: inline-block;
  padding: 0.5rem 1.5rem;
  background: rgba(255, 107, 53, 0.15);
  border: 1px solid rgba(255, 107, 53, 0.4);
  border-radius: 50px;
  color: var(--primary-orange);
  font-size: 0.9rem;
  font-weight: 600;
  margin-bottom: 1rem;
	cursor: pointer;
}

.section-header h2 {
  margin-bottom: 1rem;
  color: var(--text-primary);
}

.section-header p {
  color: var(--text-tertiary);
  font-size: 1.125rem;
}

.feature-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}

.feature-card {
  background: var(--bg-tertiary);
  border: 1px solid var(--border-color);
  border-radius: 24px;
  padding: 2.5rem;
  box-shadow: var(--shadow-sm);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.feature-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: var(--gradient-primary);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s ease;
}

.feature-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
  background: var(--bg-elevated);
  border-color: rgba(255, 107, 53, 0.3);
}

.feature-card:hover::before {
  transform: scaleX(1);
}

.feature-card .icon {
  width: 64px;
  height: 64px;
  background: var(--gradient-primary);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  margin-bottom: 1.5rem;
  box-shadow: var(--shadow-glow);
}

.feature-card h3 {
  font-size: 1.5rem;
  margin-bottom: 1rem;
  color: var(--text-primary);
}

.feature-card p {
  color: var(--text-tertiary);
  margin-bottom: 1.5rem;
}

.feature-card .learn-more {
  color: var(--primary-orange);
  font-weight: 600;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  transition: gap 0.3s ease;
}

.feature-card .learn-more:hover {
  gap: 1rem;
  color: var(--accent-cyan);
}
/********************************************************************* Additional Styles */

/* Value Proposition Cards */
.value-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin: -80px auto 0;
  max-width: 1200px;
  position: relative;
  z-index: 10;
  padding: 0 2rem;
}

.value-card {
  background: var(--bg-tertiary);
  border: 1px solid var(--border-color);
  border-radius: 16px;
  padding: 2.5rem;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.4);
  text-align: center;
  transition: all 0.3s ease;
}

.value-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.6);
  background: var(--bg-elevated);
  border-color: rgba(0, 245, 255, 0.3);
}

.value-card .number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  background: rgba(0, 245, 255, 0.15);
  border: 2px solid var(--accent-cyan);
  border-radius: 50%;
  color: var(--accent-cyan);
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  box-shadow: 0 0 20px rgba(0, 245, 255, 0.3);
}

.value-card h3 {
  font-size: 1.25rem;
  margin-bottom: 0.75rem;
  color: var(--text-primary);
}

.value-card p {
  color: var(--text-tertiary);
  font-size: 0.95rem;
  line-height: 1.6;
  margin-bottom: 0;
}

/* Photo-Driven Sections  */
.photo-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  align-items: center;
  margin-bottom: 4rem;
}

.photo-section:nth-child(even) {
  direction: rtl;
}

.photo-section:nth-child(even) > * {
  direction: ltr;
}

.photo-image {
  position: relative;
  height: 500px;
  overflow: hidden;
  border: 1px solid var(--border-color-light);
}

.photo-image img,.photo-image video {
  width: 100%;
  height: 100%;
  object-fit: cover;
	object-position: 100% 0%;
  transition: object-position 1.2s ease;
}

.photo-section:hover .photo-image img,.photo-section:hover .photo-image video {
  object-position: 0% 100%;
}

.photo-content {
  padding: 4rem;
  background: var(--bg-primary);
}

.photo-content .label {
  display: inline-block;
  padding: 0.4rem 1.2rem;
  background: rgba(255, 107, 53, 0.15);
  border: 1px solid rgba(255, 107, 53, 0.4);
  border-radius: 50px;
  color: var(--primary-orange);
  font-size: 0.85rem;
  font-weight: 600;
  margin-bottom: 1rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
	cursor: pointer;
}

.photo-content h3 {
  font-size: 2rem;
  margin-bottom: 1rem;
  line-height: 1.3;
  color: var(--text-primary);
}

.photo-content p {
  color: var(--text-tertiary);
  margin-bottom: 1.5rem;
  line-height: 1.8;
}

.photo-content .arrow-link {
  color: var(--primary-orange);
  font-weight: 600;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  transition: all 0.3s ease;
}

.photo-content .arrow-link:hover {
  gap: 1rem;
  color: var(--accent-cyan);
}

/* Stats Section */
.stats-section {
  background: var(--bg-secondary);
  padding: 4rem 0;
  border-top: 1px solid var(--border-color);
  border-bottom: 1px solid var(--border-color);
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 3rem;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}

.stat-item {
  text-align: center;
}

.stat-item .number {
  font-family: var(--font-display);
  font-size: 3rem;
  font-weight: 800;
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-bottom: 0.5rem;
  text-shadow: 0 0 30px rgba(255, 107, 53, 0.3);
}

.stat-item .label {
  color: var(--text-tertiary);
  font-size: 1rem;
  font-weight: 500;
}

/* CTA Banner  */
.cta-banner {
  background: linear-gradient(135deg, var(--bg-primary) 0%, var(--bg-secondary) 100%);
  padding: 4rem 2rem;
  text-align: center;
  position: relative;
  overflow: hidden;
  border-top: 1px solid var(--border-color);
  border-bottom: 1px solid var(--border-color);
}

.cta-banner::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background:
    radial-gradient(circle at 30% 50%, rgba(255, 107, 53, 0.2) 0%, transparent 50%),
    radial-gradient(circle at 70% 50%, rgba(0, 245, 255, 0.2) 0%, transparent 50%);
}

.cta-banner .container {
  max-width: 900px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.cta-banner h2 {
  color: var(--text-primary);
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

.cta-banner p {
  color: var(--text-secondary);
  font-size: 1.25rem;
  margin-bottom: 2rem;
}

.cta-banner .btn-group {
  display: flex;
  gap: 1.5rem;
  justify-content: center;
  flex-wrap: wrap;
}

/* Location/Map Section  */
.location-section {
  padding: 4rem 0;
  background: var(--bg-primary);
}

.location-section .container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
  text-align: center;
}

.location-section h2 {
  margin-bottom: 2rem;
  color: var(--text-primary);
}

.location-input {
  max-width: 500px;
  margin: 0 auto 3rem;
  display: flex;
  gap: 1rem;
}

.location-input input {
  flex: 1;
  padding: 1rem 1.5rem;
  background: var(--bg-tertiary);
  border: 2px solid var(--border-color);
  border-radius: 50px;
  font-size: 1rem;
  font-family: var(--font-body);
  color: var(--text-primary);
  transition: all 0.3s ease;
}

.location-input input:focus {
  outline: none;
  border-color: var(--primary-orange);
  background: var(--bg-elevated);
}

.location-input input::placeholder {
  color: var(--text-muted);
}

.location-input button {
  padding: 1rem 2.5rem;
}

/* Responsive adjustments  */
@media (max-width: 1024px) {
  .value-cards {
    grid-template-columns: 1fr;
    margin-top: 2rem;
  }

  .photo-section {
    grid-template-columns: 1fr;
  }

  .photo-image {
    height: 400px;
  }

  .photo-content {
    padding: 3rem 2rem;
  }

  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .stats-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .cta-banner h2 {
    font-size: 2rem;
  }

  .cta-banner .btn-group {
    flex-direction: column;
  }

  .location-input {
    flex-direction: column;
  }
}
