/* CSS Variables and Base Styles */
:root {
  --primary: #151238;
  --primary-foreground: #ffffff;
  --secondary: #f1f5f9;
  --secondary-foreground: #0f172a;
  --muted: #ececf0;
  --muted-foreground: #717182;
  --accent: #e9ebef;
  --accent-foreground: #030213;
  --background: #ffffff;
  --foreground: #0f172a;
  --card: #ffffff;
  --card-foreground: #0f172a;
  --border: rgba(0, 0, 0, 0.1);
  --input: #f3f3f5;
  --ring: #16a34a;
  --radius: 0.625rem;
  
  /* Typography */
  --font-size: 14px;
  --font-weight-normal: 400;
  --font-weight-medium: 500;
  --font-weight-semibold: 600;
  --font-weight-bold: 700;
  
  /* Spacing */
  --spacing-xs: 0.25rem;
  --spacing-sm: 0.5rem;
  --spacing-md: 1rem;
  --spacing-lg: 1.5rem;
  --spacing-xl: 2rem;
  --spacing-2xl: 3rem;
  --spacing-3xl: 4rem;
  
  /* Shadows */
  --shadow-sm: 0 1px 2px 0 rgb(0 0 0 / 0.05);
  --shadow-md: 0 4px 6px -1px rgb(0 0 0 / 0.1), 0 2px 4px -2px rgb(0 0 0 / 0.1);
  --shadow-lg: 0 10px 15px -3px rgb(0 0 0 / 0.1), 0 4px 6px -4px rgb(0 0 0 / 0.1);
  --shadow-xl: 0 20px 25px -5px rgb(0 0 0 / 0.1), 0 8px 10px -6px rgb(0 0 0 / 0.1);
  
  /* Brand Colors */
  --brand-green: #16a34a;
}

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

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', sans-serif;
  font-size: var(--font-size);
  line-height: 1.3;
  color: var(--foreground);
  background-color: var(--background);
}

/* Global link styles - Remove underlines */
a {
  text-decoration: none !important;
}

a:hover {
  text-decoration: none !important;
}

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

@media (min-width: 640px) {
  .container {
    padding: 0 1.5rem;
  }
}

@media (min-width: 1024px) {
  .container {
    padding: 0 2rem;
  }
}

/* Utility Classes */
.hidden {
  display: none !important;
}

.text-green {
  color: #16a34a;
}

.full-width {
  width: 100%;
}

/* Button Styles */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.5rem 1rem;
  border-radius: var(--radius);
  font-size: 0.875rem;
  font-weight: var(--font-weight-medium);
  text-decoration: none;
  border: 1px solid transparent;
  cursor: pointer;
  transition: all 0.2s ease-in-out;
  white-space: nowrap;
}

.btn:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}

.btn-primary {
  background-color: var(--primary);
  color: var(--primary-foreground);
  border-color: var(--primary);
}

.btn-primary:hover {
  background-color: #15803d;
  border-color: #15803d;
}

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

.btn-outline:hover {
  background-color: var(--primary);
  color: var(--primary-foreground);
}

.btn-sm {
  padding: 0.375rem 0.75rem;
  font-size: 0.75rem;
}

.btn-lg {
  padding: 0.75rem 1.5rem;
  font-size: 1rem;
}

.btn-mobile {
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
  border-radius: var(--radius);
  color: var(--foreground);
  transition: background-color 0.2s ease-in-out;
}

.btn-mobile:hover {
  background-color: var(--muted);
}

/* Card Styles */
.card {
  background-color: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.5rem;
  box-shadow: var(--shadow-sm);
}

.card h3 {
  font-size: 1.125rem;
  font-weight: var(--font-weight-semibold);
  margin-bottom: 0.5rem;
}

.card-subtitle {
  color: var(--muted-foreground);
  margin-bottom: 1rem;
}

/* Form Styles */
.form-row {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
}

@media (min-width: 768px) {
  .form-row {
    grid-template-columns: 1fr 1fr;
  }
}

.form-group {
  margin-bottom: 1rem;
}

.form-group label {
  display: block;
  font-weight: var(--font-weight-medium);
  margin-bottom: 0.5rem;
  color: var(--foreground);
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 0.75rem;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background-color: var(--input);
  font-size: 0.875rem;
  transition: border-color 0.2s ease-in-out;
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 2px rgba(22, 163, 74, 0.1);
}

/* Header Styles */
.header {
  background-color: var(--background);
  box-shadow: var(--shadow-sm);
  position: sticky;
  top: 0;
  z-index: 50;
}

.header-nav {
  position: relative;
}

.header-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 4rem;
}

.logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  cursor: pointer;
  transition: opacity 0.2s ease-in-out;
  text-decoration: none !important;
}

.logo:hover {
  opacity: 0.8;
}

.logo-icon {
  width: 2.5rem;
  height: 2.5rem;
  background-color: var(--primary);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary-foreground);
  font-weight: var(--font-weight-bold);
}

.logo-text {
  font-size: 1.25rem;
  font-weight: var(--font-weight-bold);
  color: var(--foreground);
}

.nav-menu {
  display: none;
  align-items: center;
  gap: 2rem;
}

@media (min-width: 768px) {
  .nav-menu {
    display: flex;
  }
}

.nav-link {
  background: none;
  border: none;
  font-size: 0.875rem;
  color: var(--muted-foreground);
  cursor: pointer;
  transition: color 0.2s ease-in-out;
  padding: 0.5rem 0;
  text-decoration: none !important;
}

.nav-link:hover,
.nav-link.active {
  color: var(--primary);
  text-decoration: none !important;
}

.nav-link.active {
  font-weight: var(--font-weight-medium);
}

.header-cta {
  display: none;
}

@media (min-width: 768px) {
  .header-cta {
    display: flex;
  }
}

.mobile-menu-btn {
  display: block;
}

@media (min-width: 768px) {
  .mobile-menu-btn {
    display: none;
  }
}

.mobile-menu {
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  background-color: var(--background);
  border-top: 1px solid var(--border);
  box-shadow: var(--shadow-lg);
}

.mobile-menu-content {
  padding: 1rem;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.mobile-nav-link {
  display: block;
  width: 100%;
  text-align: left;
  padding: 0.75rem;
  border-radius: var(--radius);
  background: none;
  border: none;
  color: var(--muted-foreground);
  font-size: 0.875rem;
  cursor: pointer;
  transition: all 0.2s ease-in-out;
  text-decoration: none;
}

.mobile-nav-link:hover,
.mobile-nav-link.active {
  color: var(--primary);
  background-color: rgba(22, 163, 74, 0.05);
}

.mobile-nav-link.active {
  font-weight: var(--font-weight-medium);
}

.mobile-cta {
  padding-top: 0.75rem;
  border-top: 1px solid var(--border);
}

/* Page Styles */
.page {
  display: none;
}

.page.active {
  display: block;
}

/* Banner Styles */
.banner {
  position: relative;
  min-height: 70vh;
  max-height: 700px;
  overflow: hidden;
  background-color: #ffffff;
}

.carousel-container {
  position: relative;
  width: 100%;
  height: 70vh;
  max-height: 700px;
}

.carousel-wrapper {
  position: relative;
  width: 100%;
  height: 100%;
  overflow: hidden;
}

.carousel-slides {
  display: flex;
  width: 300%;
  height: 100%;
  transition: transform 0.5s ease-in-out;
}

.carousel-slide {
  flex: 0 0 33.333%;
  position: relative;
  height: 100%;
  transition: all 1s ease-in-out;
}

.carousel-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 6000ms ease-out;
  will-change: transform;
}

.carousel-slide:hover img {
  transform: scale(1.1);
}

.carousel-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.7));
  transition: opacity 1s;
}

.banner-content {
  position: absolute;
  inset: 0;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: center;
}

.banner-text {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1rem;
  text-align: center;
}

.banner-text h1 {
  font-size: 2.5rem;
  font-weight: var(--font-weight-bold);
  color: white;
  margin-bottom: 1.5rem;
  line-height: 1.2;
  
}

@media (min-width: 768px) {
  .banner-text h1 {
    font-size: 3.75rem;
  }
}

.banner-text p {
  font-size: 1.25rem;
  color: #f3f4f6;
  margin-bottom: 2rem;
  max-width: 48rem;
  margin-left: auto;
  margin-right: auto;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.7);
}

@media (min-width: 768px) {
  .banner-text p {
    font-size: 1.5rem;
  }
}

.banner-cta {
  display: flex;
  justify-content: center;
}

.carousel-prev,
.carousel-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 20;
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(4px);
  color: white;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 12px;
  padding: 0.75rem;
  cursor: pointer;
  transition: all 0.3s ease-in-out;
  will-change: transform;
}

.carousel-prev:hover,
.carousel-next:hover {
  background: rgba(255, 255, 255, 0.25);
  transform: translateY(-50%) scale(1.1);
}

.carousel-prev {
  left: 1rem;
}

.carousel-next {
  right: 1rem;
}

.carousel-indicators {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 20;
  display: flex;
  gap: 0.5rem;
  background: rgba(0, 0, 0, 0.2);
  backdrop-filter: blur(4px);
  border-radius: 50px;
  padding: 8px 16px;
}

.indicator {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.5);
  border: none;
  cursor: pointer;
  transition: all 0.5s ease-in-out;
  will-change: transform;
}

.indicator.active {
  background: #22c55e;
  width: 32px;
  height: 12px;
  border-radius: 6px;
  box-shadow: 0 4px 8px rgba(34, 197, 94, 0.5);
}

.indicator:hover {
  background: rgba(255, 255, 255, 0.8);
  transform: scale(1.25);
}

.indicator.active:hover {
  background: #22c55e;
  transform: scale(1);
}

/* Progress bar styles */
.progress-bar {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: rgba(0, 0, 0, 0.2);
  z-index: 20;
}

.progress-fill {
  height: 100%;
  background: linear-gradient(to right, #22c55e, #16a34a);
  transition: width 5s linear;
  box-shadow: 0 0 10px rgba(34, 197, 94, 0.5);
}

/* Floating particles */
.floating-particles {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
  z-index: 5;
}

.particle {
  position: absolute;
  width: 8px;
  height: 8px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  animation: float 4s ease-in-out infinite;
}

/* Section Styles */
section {
  padding: 1rem 0;
}

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

.section-header h2 {
  font-size: 2.25rem;
  font-weight: var(--font-weight-bold);
  color: var(--foreground);
  margin-bottom: 1rem;
}

@media (min-width: 768px) {
  .section-header h2 {
    font-size: 2.5rem;
  }
}

.section-header p {
  font-size: 1.125rem;
  color: var(--muted-foreground);
  max-width: 48rem;
  margin: 0 auto;
}

/* About Section */
.about-section {
  background-color: var(--background);
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  align-items: center;
}

@media (min-width: 1024px) {
  .about-grid {
    grid-template-columns: 1fr 1fr;
  }
}

.about-content h2 {
  font-size: 2.25rem;
  font-weight: var(--font-weight-bold);
  color: var(--foreground);
  margin-bottom: 1.5rem;
}

@media (min-width: 768px) {
  .about-content h2 {
    font-size: 2.5rem;
  }
}

.about-content p {
  font-size: 1.125rem;
  color: var(--muted-foreground);
  margin-bottom: 1.5rem;
}

.stats-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
}

.stat-number {
  font-size: 2rem;
  font-weight: var(--font-weight-bold);
  color: var(--primary);
  margin-bottom: 0.5rem;
}

.stat p {
  color: var(--muted-foreground);
}

.about-image {
  position: relative;
}

.about-image img {
  width: 100%;
  height: 24rem;
  object-fit: cover;
  border-radius: var(--radius);
  box-shadow: var(--shadow-xl);
}

/* Video Section */
.video-section {
  background-color: #ffffff;
}

.video-content {
  text-align: center;
}

.video-content h2 {
  font-size: 2.25rem;
  font-weight: var(--font-weight-bold);
  color: var(--foreground);
  margin-bottom: 1rem;
}

.video-content p {
  font-size: 1.125rem;
  color: var(--muted-foreground);
  margin-bottom: 2rem;
}

.video-container {
  position: relative;
  max-width: 48rem;
  margin: 0 auto;
  margin-bottom: 3rem;
}

.video-placeholder {
  position: relative;
  aspect-ratio: 16 / 9;
  border-radius: var(--radius);
  overflow: hidden;
  cursor: pointer;
  box-shadow: var(--shadow-xl);
  background: linear-gradient(135deg, #3b82f6 0%, #8b5cf6 100%);
}

.video-placeholder.playing {
  cursor: default;
}

.video-placeholder img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease-in-out;
}

.video-placeholder:hover:not(.playing) img {
  transform: scale(1.05);
}

.play-button {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: rgba(255, 255, 255, 0.9);
  color: var(--primary);
  border-radius: 50%;
  width: 4rem;
  height: 4rem;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease-in-out;
}

.video-placeholder:hover:not(.playing) .play-button {
  background: white;
  transform: translate(-50%, -50%) scale(1.1);
}

.video-placeholder.playing .play-button {
  display: none;
}

.embedded-video {
  width: 100%;
  height: 100%;
  border-radius: var(--radius);
}

.video-features {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  max-width: 48rem;
  margin: 0 auto;
}

@media (min-width: 768px) {
  .video-features {
    grid-template-columns: repeat(3, 1fr);
  }
}

.video-feature {
  text-align: center;
}

.feature-icon {
  width: 3rem;
  height: 3rem;
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem;
  transition: transform 0.3s ease-in-out;
}

.feature-icon:hover {
  transform: scale(1.1);
}

.feature-icon-blue {
  background-color: #dbeafe;
  color: #2563eb;
}

.feature-icon-green {
  background-color: #dcfce7;
  color: #16a34a;
}

.feature-icon-purple {
  background-color: #f3e8ff;
  color: #9333ea;
}

.video-feature h4 {
  font-size: 1.125rem;
  font-weight: var(--font-weight-semibold);
  color: var(--foreground);
  margin-bottom: 0.5rem;
}

.video-feature p {
  font-size: 0.875rem;
  color: var(--muted-foreground);
  line-height: 1.6;
}

/* Products Section */
.products-section {
  background-color: var(--background);
}

.products-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}

@media (min-width: 640px) {
  .products-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .products-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

.product-card {
  background-color: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: all 0.3s ease-in-out;
}

.product-card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-2px);
}

.product-card img {
  width: 100%;
  height: 12rem;
  object-fit: cover;
}

.product-content {
  padding: 1.5rem;
}

.product-content h3 {
  font-size: 1.125rem;
  font-weight: var(--font-weight-semibold);
  color: var(--foreground);
  margin-bottom: 0.5rem;
}

.product-content p {
  color: var(--muted-foreground);
  margin-bottom: 1rem;
  line-height: 1.6;
}

.products-footer {
  text-align: center;
  margin-top: 3rem;
}

/* Products Pages */
.products-page-header {
  background-color: #ffffff;
  padding: 3rem 0;
  text-align: center;
}

.products-page-header h1 {
  font-size: 2.5rem;
  font-weight: var(--font-weight-bold);
  color: var(--foreground);
  margin-bottom: 1rem;
}

.products-page-header p {
  font-size: 1.125rem;
  color: var(--muted-foreground);
}

.products-page-content {
  padding: 4rem 0;
}

.products-horizontal-grid {
  display: grid;
  gap: 2rem;
}

.product-horizontal {
  background-color: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: all 0.3s ease-in-out;
}

.product-horizontal:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-2px);
}

.product-horizontal-content {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}

@media (min-width: 768px) {
  .product-horizontal-content {
    grid-template-columns: 300px 1fr;
  }
}

.product-horizontal img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

@media (min-width: 768px) {
  .product-horizontal img {
    height: 100%;
    min-height: 200px;
  }
}

.product-horizontal-text {
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.product-horizontal-text h3 {
  font-size: 1.25rem;
  font-weight: var(--font-weight-semibold);
  color: var(--foreground);
  margin-bottom: 0.75rem;
}

.product-horizontal-text p {
  color: var(--muted-foreground);
  margin-bottom: 1.5rem;
  line-height: 1.6;
}

/* Products horizontal layout alternating */
.product-horizontal-content.reverse {
  grid-template-columns: 1fr;
}

@media (min-width: 768px) {
  .product-horizontal-content.reverse {
    grid-template-columns: 1fr 300px;
  }
  
  .product-horizontal-content.reverse img {
    order: 2;
  }
  
  .product-horizontal-content.reverse .product-horizontal-text {
    order: 1;
  }
}

/* Products Navigation */
.products-navigation {
  margin-top: 3rem;
  padding-top: 2rem;
  border-top: 1px solid var(--border);
}

.products-nav-buttons {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  align-items: center;
}

@media (min-width: 640px) {
  .products-nav-buttons {
    flex-direction: row;
    justify-content: space-between;
  }
}

.products-nav-buttons .btn {
  min-width: 200px;
  text-align: center;
}

/* Contact Section */
.contact-section {
  background-color: var(--background);
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}

@media (min-width: 1024px) {
  .contact-grid {
    grid-template-columns: 1fr 2fr;
  }
}

.contact-info {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.contact-items {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
}

.contact-icon {
  width: 1.25rem;
  height: 1.25rem;
  color: #2563eb;
  margin-top: 0.125rem;
  flex-shrink: 0;
}

.contact-item strong {
  font-weight: var(--font-weight-medium);
  display: block;
  margin-bottom: 0.25rem;
}

.contact-link {
  color: var(--muted-foreground);
  text-decoration: none;
  transition: color 0.2s ease-in-out;
}

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

.map-card {
  padding: 0;
}

.map-container {
  aspect-ratio: 16 / 9;
  background-color: var(--muted);
  border-radius: var(--radius);
  overflow: hidden;
}

.map-container iframe {
  width: 100%;
  height: 100%;
  transition: filter 0.3s ease-in-out;
}

.map-container:hover iframe {
  filter: grayscale(0%);
}

.map-caption {
  padding: 1rem;
  font-size: 0.875rem;
  color: var(--muted-foreground);
  text-align: center;
}

.contact-form {
  flex: 1;
}

/* Form message styles */
.form-message {
  padding: 0.75rem 1rem;
  border-radius: var(--radius);
  margin-bottom: 1rem;
  font-size: 0.875rem;
  font-weight: var(--font-weight-medium);
}

.form-message.success {
  background-color: #dcfce7;
  color: #15803d;
  border: 1px solid #16a34a;
}

.form-message.error {
  background-color: #fef2f2;
  color: #dc2626;
  border: 1px solid #ef4444;
}

.form-message.hidden {
  display: none;
}

/* Footer Styles */
.footer {
  background-color: #1f2937;
  color: white;
  padding: 3rem 0 2rem;
}

.footer-content {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  margin-bottom: 2rem;
}

@media (min-width: 768px) {
  .footer-content {
    grid-template-columns: 1fr 2fr;
  }
}

.footer-brand {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

/* Make Diskali text white in footer */
.footer .logo-text {
  color: white;
}

.footer-brand p {
  color: #d1d5db;
  line-height: 1.6;
}

.social-links {
  display: flex;
  gap: 1rem;
}

.social-link {
  color: #2cc601;
  transition: color 0.2s ease-in-out;
}

.social-link:hover {
  color: white;
}

.footer-links {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 2rem;
}

.footer-section h4 {
  font-weight: var(--font-weight-semibold);
  margin-bottom: 1rem;
  color: white;
}

.footer-section ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.footer-section a {
  color: #d1d5db;
  text-decoration: none;
  transition: color 0.2s ease-in-out;
}

.footer-section a:hover {
  color: white;
}

.footer-bottom {
  padding-top: 2rem;
  border-top: 1px solid #374151;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
}

@media (min-width: 768px) {
  .footer-bottom {
    flex-direction: row;
    justify-content: space-between;
  }
}

.footer-bottom p {
  color: #d1d5db;
  font-size: 0.875rem;
}

.footer-legal {
  display: flex;
  gap: 1.5rem;
}

.footer-legal a {
  color: #d1d5db;
  text-decoration: none;
  font-size: 0.875rem;
  transition: color 0.2s ease-in-out;
}

.footer-legal a:hover {
  color: white;
}

/* Products Footer */
.products-footer {
  background-color: #ffffff;
  color: white;
  padding: 3rem 0 2rem;
}

/* Make Diskali text white in products footer too */
.products-footer .logo-text {
  color: white;
}

.products-footer-content {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  margin-bottom: 2rem;
}

@media (min-width: 1024px) {
  .products-footer-content {
    grid-template-columns: 1fr 1fr 1fr;
  }
}

.footer-contact h4,
.footer-map h4 {
  font-weight: var(--font-weight-semibold);
  margin-bottom: 1rem;
  color: white;
}

.footer-map .map-container {
  height: 16rem;
  margin-bottom: 0.5rem;
}

/* Responsive Design */
@media (max-width: 767px) {
  .banner {
    min-height: 60vh;
    max-height: 500px;
  }

  .carousel-container {
    height: 60vh;
    max-height: 500px;
  }

  .banner-text h1 {
    font-size: 2rem;
  }
  
  .banner-text p {
    font-size: 1rem;
  }
  
  .section-header h2 {
    font-size: 1.875rem;
  }
  
  .about-content h2 {
    font-size: 1.875rem;
  }
  
  .video-content h2 {
    font-size: 1.875rem;
  }
  
  .carousel-prev,
  .carousel-next {
    display: none;
  }
}

/* Animation Classes */
@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.fade-in {
  animation: fadeIn 0.6s ease-out;
}

/* Icon styles for Lucide icons */
[data-lucide] {
  width: 1rem;
  height: 1rem;
}

.contact-icon[data-lucide] {
  width: 1.25rem;
  height: 1.25rem;
}

.menu-icon,
.close-icon {
  width: 1.5rem;
  height: 1.5rem;
}

.play-button [data-lucide] {
  width: 1.5rem;
  height: 1.5rem;
  margin-left: 0.125rem;
}

.carousel-prev [data-lucide],
.carousel-next [data-lucide] {
  width: 1.5rem;
  height: 1.5rem;
}

.social-link [data-lucide] {
  width: 1.25rem;
  height: 1.25rem;
}

/* Captcha Styles */
.captcha-group {
  margin-bottom: 1.5rem;
}

.captcha-container {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 0.75rem;
}

.captcha-question-container {
  flex: 1;
}

.captcha-question {
  background-color: #f9fafb;
  border: 2px solid #e5e7eb;
  border-radius: var(--radius);
  padding: 1rem;
  min-width: 200px;
  text-align: center;
  font-family: 'Courier New', monospace;
  font-weight: bold;
  font-size: 1.125rem;
  color: #374151;
}

.captcha-refresh-btn {
  background-color: transparent;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 0.5rem;
  cursor: pointer;
  color: var(--muted-foreground);
  transition: all 0.2s ease-in-out;
  display: flex;
  align-items: center;
  justify-content: center;
}

.captcha-refresh-btn:hover {
  border-color: var(--primary);
  color: var(--primary);
  background-color: rgba(22, 163, 74, 0.05);
}

.captcha-refresh-btn:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}

.captcha-refresh-btn [data-lucide] {
  width: 1rem;
  height: 1rem;
}

.captcha-input {
  max-width: 300px;
}

.captcha-input:focus {
  border-color: var(--primary) !important;
  box-shadow: 0 0 0 2px rgba(22, 163, 74, 0.1) !important;
}cide] {
  width: 1.25rem;
  height: 1.25rem;
}