:root {
  /* Colors - Dark Blue Theme */
  --color-primary: #0D1B2A;
  --color-secondary: #1B263B;
  --color-accent: #1E3A5F;
  --color-dark: #264653;
  --color-deep: #2A3D66;
  --color-light: #E8F4F8;
  --color-white: #FFFFFF;
  --color-text: #1B263B;
  --color-text-light: #6B7A8F;
  
  /* Typography */
  --font-primary: 'Inter', sans-serif;
  --font-secondary: 'Poppins', sans-serif;
  --font-size-xs: 0.75rem;
  --font-size-sm: 0.875rem;
  --font-size-base: 1rem;
  --font-size-md: 1.125rem;
  --font-size-lg: 1.25rem;
  --font-size-xl: 1.5rem;
  --font-size-2xl: 2rem;
  --font-size-3xl: 2.5rem;
  --font-weight-normal: 400;
  --font-weight-medium: 500;
  --font-weight-semibold: 600;
  --font-weight-bold: 700;
  
  /* Spacing */
  --space-xs: 0.25rem;
  --space-sm: 0.5rem;
  --space-md: 1rem;
  --space-lg: 1.5rem;
  --space-xl: 2rem;
  --space-2xl: 3rem;
  --space-3xl: 4rem;
  
  /* Shadows */
  --shadow-sm: 0 1px 2px rgba(13, 27, 42, 0.1);
  --shadow-md: 0 4px 6px rgba(13, 27, 42, 0.15);
  --shadow-lg: 0 10px 20px rgba(13, 27, 42, 0.2);
  --shadow-xl: 0 20px 40px rgba(13, 27, 42, 0.25);
  
  /* Radius */
  --radius-sm: 0.25rem;
  --radius-md: 0.5rem;
  --radius-lg: 0.75rem;
  --radius-xl: 1rem;
  --radius-full: 9999px;
  
  /* Transitions */
  --transition-fast: 150ms ease;
  --transition-base: 300ms ease;
  --transition-slow: 500ms ease;
}

/* Reset & Base Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  font-size: 16px;
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-primary);
  font-size: var(--font-size-base);
  line-height: 1.6;
  color: var(--color-text);
  background-color: var(--color-white);
  overflow-x: hidden;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-secondary);
  font-weight: var(--font-weight-bold);
  line-height: 1.2;
  margin-bottom: var(--space-md);
  color: var(--color-primary);
}

h1 { font-size: var(--font-size-3xl); }
h2 { font-size: var(--font-size-2xl); }
h3 { font-size: var(--font-size-xl); }
h4 { font-size: var(--font-size-lg); }
h5 { font-size: var(--font-size-md); }
h6 { font-size: var(--font-size-base); }

p {
  margin-bottom: var(--space-md);
  color: var(--color-text-light);
}

a {
  color: var(--color-accent);
  text-decoration: none;
  transition: color var(--transition-base);
}

a:hover {
  color: var(--color-primary);
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

/* Header - Unique Design (Collapsing on Scroll) */
.header {
  background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-secondary) 100%);
  color: var(--color-white);
  padding: var(--space-lg) var(--space-md);
  position: relative;
  transition: transform var(--transition-slow), opacity var(--transition-slow);
  z-index: 1000;
}

.header.hidden {
  transform: translateY(-100%);
  opacity: 0;
}

.header-container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: var(--space-md);
}

.logo {
  font-family: var(--font-secondary);
  font-size: 17px;
  font-weight: var(--font-weight-bold);
  color: var(--color-white);
  text-decoration: none;
  letter-spacing: 0.05em;
}

.nav-toggle {
  display: none;
  background: transparent;
  border: 2px solid var(--color-white);
  color: var(--color-white);
  padding: var(--space-sm) var(--space-md);
  border-radius: var(--radius-md);
  cursor: pointer;
  font-size: var(--font-size-lg);
  transition: all var(--transition-base);
}

.nav-toggle:hover {
  background: var(--color-white);
  color: var(--color-primary);
}

.nav-menu {
  display: flex;
  list-style: none;
  gap: var(--space-lg);
  align-items: center;
}

.nav-menu li a {
  color: var(--color-white);
  font-weight: var(--font-weight-medium);
  padding: var(--space-sm) var(--space-md);
  border-radius: var(--radius-sm);
  transition: background var(--transition-base);
}

.nav-menu li a:hover {
  background: rgba(255, 255, 255, 0.1);
}

/* Main Content */
.main-content {
  min-height: calc(100vh - 200px);
  padding: var(--space-xl) var(--space-md);
}

.container {
  max-width: 1200px;
  margin: 0 auto;
}

.section {
  margin-bottom: var(--space-3xl);
  padding: var(--space-xl) 0;
}

/* Hero Section with 3D Slide Effect */
.hero {
  position: relative;
  height: 80vh;
  min-height: 500px;
  max-height: 700px;
  overflow: hidden;
  background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-accent) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  perspective: 1000px;
}

.hero-slides {
  position: relative;
  width: 100%;
  height: 100%;
}

.hero-slide {
  position: absolute;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  text-align: center;
  color: var(--color-white);
  opacity: 0;
  transform: rotateY(90deg) translateZ(200px);
  transition: all var(--transition-slow);
}

.hero-slide.active {
  opacity: 1;
  transform: rotateY(0deg) translateZ(0);
}

.hero-slide h1 {
  font-size: clamp(2rem, 5vw, 3.5rem);
  margin-bottom: var(--space-lg);
  color: var(--color-white);
}

.hero-slide p {
  font-size: clamp(1rem, 2vw, 1.25rem);
  max-width: 600px;
  margin: 0 auto var(--space-xl);
  color: rgba(255, 255, 255, 0.9);
}

.hero-dots {
  position: absolute;
  bottom: var(--space-xl);
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: var(--space-md);
  z-index: 10;
}

.hero-dot {
  width: 12px;
  height: 12px;
  border-radius: var(--radius-full);
  background: rgba(255, 255, 255, 0.5);
  border: 2px solid var(--color-white);
  cursor: pointer;
  transition: all var(--transition-base);
}

.hero-dot.active {
  background: var(--color-white);
  transform: scale(1.2);
}

/* Buttons */
.btn {
  display: inline-block;
  padding: var(--space-md) var(--space-xl);
  background: var(--color-accent);
  color: var(--color-white);
  border: none;
  border-radius: var(--radius-lg);
  font-weight: var(--font-weight-semibold);
  font-size: var(--font-size-base);
  cursor: pointer;
  transition: all var(--transition-base);
  box-shadow: var(--shadow-md);
  text-decoration: none;
}

.btn:hover {
  background: var(--color-primary);
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
}

.btn-secondary {
  background: transparent;
  border: 2px solid var(--color-white);
  color: black;
}

.btn-secondary:hover {
  background: var(--color-white);
  color: var(--color-primary);
}

/* Product Cards */
.product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: var(--space-xl);
  margin-top: var(--space-xl);
}

.product-card {
  background: var(--color-white);
  border-radius: var(--radius-xl);
  padding: var(--space-xl);
  box-shadow: var(--shadow-md);
  transition: all var(--transition-base);
  border: 1px solid rgba(13, 27, 42, 0.1);
}

.product-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
}

.product-card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: var(--radius-md);
  margin-bottom: var(--space-lg);
}

.product-card h3 {
  margin-bottom: var(--space-sm);
}

.product-price {
  font-size: var(--font-size-xl);
  font-weight: var(--font-weight-bold);
  color: var(--color-accent);
  margin: var(--space-md) 0;
}

/* Forms */
.form-group {
  margin-bottom: var(--space-lg);
}

.form-label {
  display: block;
  margin-bottom: var(--space-sm);
  font-weight: var(--font-weight-medium);
  color: var(--color-text);
}

.form-input,
.form-textarea {
  width: 100%;
  padding: var(--space-md);
  border: 2px solid rgba(13, 27, 42, 0.2);
  border-radius: var(--radius-md);
  font-family: var(--font-primary);
  font-size: var(--font-size-base);
  transition: border-color var(--transition-base);
}

.form-input:focus,
.form-textarea:focus {
  outline: none;
  border-color: var(--color-accent);
}

.form-textarea {
  min-height: 150px;
  resize: vertical;
}

.form-checkbox {
  display: flex;
  align-items: flex-start;
  gap: var(--space-sm);
  margin-top: var(--space-md);
}

.form-checkbox input[type="checkbox"] {
  margin-top: 0.25rem;
  cursor: pointer;
}

/* Privacy Popup */
.privacy-popup {
  position: fixed;
  bottom: var(--space-lg);
  right: var(--space-lg);
  background: var(--color-white);
  padding: var(--space-xl);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-xl);
  max-width: 400px;
  z-index: 10000;
  transform: translateY(150%);
  transition: transform var(--transition-slow);
  border: 2px solid var(--color-accent);
}

.privacy-popup.show {
  transform: translateY(0);
}

.privacy-popup h3 {
  margin-bottom: var(--space-md);
  font-size: var(--font-size-lg);
}

.privacy-popup p {
  font-size: var(--font-size-sm);
  margin-bottom: var(--space-md);
}

.privacy-popup-buttons {
  display: flex;
  gap: var(--space-md);
  margin-top: var(--space-lg);
}

.privacy-popup .btn {
  flex: 1;
  padding: var(--space-sm) var(--space-md);
  font-size: var(--font-size-sm);
}

/* Footer */
.footer {
  background: var(--color-primary);
  color: var(--color-white);
  padding: var(--space-xl) var(--space-md);
  text-align: center;
  margin-top: var(--space-3xl);
}

.footer-content {
  max-width: 1200px;
  margin: 0 auto;
}

.footer-links {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: var(--space-lg);
  margin-bottom: var(--space-lg);
  list-style: none;
}

.footer-links a {
  color: var(--color-white);
  opacity: 0.8;
  transition: opacity var(--transition-base);
}

.footer-links a:hover {
  opacity: 1;
}

.footer-info {
  font-size: var(--font-size-sm);
  opacity: 0.7;
  margin-top: var(--space-md);
}

/* Google Maps */
.map-container {
  width: 100%;
  height: 400px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  margin: var(--space-xl) 0;
  box-shadow: var(--shadow-md);
}

.map-container iframe {
  width: 100%;
  height: 100%;
  border: none;
}

/* Utility Classes */
.text-center {
  text-align: center;
}

.mt-lg {
  margin-top: var(--space-lg);
}

.mb-lg {
  margin-bottom: var(--space-lg);
}

/* Responsive Design */
@media (max-width: 768px) {
  .nav-toggle {
    display: block;
  }
  
  .nav-menu {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--color-primary);
    flex-direction: column;
    padding: var(--space-lg);
    transform: translateY(-100%);
    opacity: 0;
    visibility: hidden;
    transition: all var(--transition-base);
    box-shadow: var(--shadow-lg);
  }
  
  .nav-menu.active {
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
  }
  
  .hero {
    height: 60vh;
    min-height: 400px;
  }
  
  .product-grid {
    grid-template-columns: 1fr;
  }
  
  .privacy-popup {
    right: var(--space-md);
    left: var(--space-md);
    max-width: none;
  }
  
  .footer-links {
    flex-direction: column;
    gap: var(--space-md);
  }
}

@media (max-width: 480px) {
  html {
    font-size: 14px;
  }
  
  .hero {
    height: 50vh;
    min-height: 350px;
  }
  
  .section {
    padding: var(--space-lg) 0;
  }
  
  .product-card {
    padding: var(--space-lg);
  }
}

@media (max-width: 320px) {
  html {
    font-size: 12px;
  }
  
  .header-container {
    text-align: center;
  }
  
  .hero-slide h1 {
    font-size: 1.5rem;
  }
  
  .product-grid {
    gap: var(--space-md);
  }
}

