/* Base Styles */
:root {
  /* Color Variables */
  --background: #050505;
  --foreground: #f9f9f9;
  --card: #0d0d0d;
  --border: #333333;
  --primary: #0ea5e9;
  --secondary: #10b981;
  --muted: #262626;
  --muted-foreground: #b3b3b3;
  --success: #28a745;
  --danger: #dc3545;
  --warning: #ffc107;
  --info: #17a2b8;
  --light: #f8f9fa;
  --dark: #343a40;
  --white: #ffffff;
  --black: #000000;
  
  /* Theme Colors */
  --text: #333333;
  
  /* Typography */
  --font-family-base: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
  --font-family-heading: 'Poppins', var(--font-family-base);
  
  /* Spacing */
  --spacing-unit: 1rem;
  --spacing-xs: calc(var(--spacing-unit) * 0.25);
  --spacing-sm: calc(var(--spacing-unit) * 0.5);
  --spacing-md: var(--spacing-unit);
  --spacing-lg: calc(var(--spacing-unit) * 1.5);
  --spacing-xl: calc(var(--spacing-unit) * 2);
  --spacing-xxl: calc(var(--spacing-unit) * 3);
  
  /* Border Radius */
  --border-radius-sm: 0.25rem;
  --border-radius-md: 0.5rem;
  --border-radius-lg: 1rem;
  --border-radius-xl: 2rem;
  
  /* Shadows */
  --shadow-sm: 0 2px 4px rgba(0, 0, 0, 0.1);
  --shadow-md: 0 4px 6px rgba(0, 0, 0, 0.1);
  --shadow-lg: 0 10px 15px rgba(0, 0, 0, 0.1);
  --shadow-xl: 0 20px 25px rgba(0, 0, 0, 0.1);
  
  /* Transitions */
  --transition-fast: 0.2s ease;
  --transition-normal: 0.3s ease;
  --transition-slow: 0.5s ease;
  
  /* Container Widths */
  --container-sm: 100%;
  --container-md: 720px;
  --container-lg: 960px;
  --container-xl: 1140px;
  
  /* Breakpoints */
  --breakpoint-sm: 576px;
  --breakpoint-md: 768px;
  --breakpoint-lg: 992px;
  --breakpoint-xl: 1200px;
}

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

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

body {
  font-family: var(--font-family-base);
  line-height: 1.6;
  color: var(--foreground);
  background-color: var(--background);
  overflow-x: hidden;
}

main {
  flex: 1;
  margin-top: 60px;
}

img {
  max-width: 100%;
  height: auto;
}

a {
  color: inherit;
  text-decoration: none;
  transition: color 0.3s ease;
}

ul {
  list-style: none;
}

.container {
  width: 100%;
  max-width: var(--container-xl);
  margin: 0 auto;
  padding: 0 var(--spacing-md);
}

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

.bg-dark {
  background-color: var(--card);
}

.mt-12 {
  margin-top: 3rem;
}

/* Typography */
h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--font-family-heading);
  line-height: 1.2;
  margin-bottom: var(--spacing-md);
  color: var(--foreground);
}

h1 {
  font-size: clamp(2rem, 5vw, 3.5rem);
}

h2 {
  font-size: clamp(1.75rem, 4vw, 2.5rem);
}

h3 {
  font-size: clamp(1.5rem, 3vw, 2rem);
}

h4 {
  font-size: clamp(1.25rem, 2.5vw, 1.75rem);
}

p {
  font-size: clamp(1rem, 2vw, 1.125rem);
  margin-bottom: var(--spacing-md);
  color: var(--muted-foreground);
}

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

/* Buttons */
.btn {
  display: inline-block;
  padding: var(--spacing-sm) var(--spacing-md);
  font-size: clamp(0.875rem, 2vw, 1rem);
  border-radius: var(--border-radius-md);
  text-decoration: none;
  transition: all var(--transition-fast);
  text-align: center;
  cursor: pointer;
  border: none;
  color: var(--foreground);
}

.btn svg {
  margin-left: 0.5rem;
}

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

.btn-primary:hover {
  background-color: rgba(14, 165, 233, 0.9);
}

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

.btn-outline:hover {
  background-color: rgba(14, 165, 233, 0.1);
}

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

.btn-block {
  display: flex;
  width: 100%;
  justify-content: space-between;
}

/* Header/Navbar */
.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  transition: background-color 0.3s ease, box-shadow 0.3s ease;
}

.header.scrolled {
  background-color: rgba(5, 5, 5, 0.9);
  backdrop-filter: blur(10px);
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
}

.header-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 5rem;
}

.logo {
  display: flex;
  align-items: center;
}

.logo a {
  display: flex;
  align-items: center;
}

.logo img {
  width: 2.5rem;
  height: 2.5rem;
  margin-right: 0.5rem;
}

.logo span {
  font-size: 1.25rem;
  font-weight: 700;
}

.nav-desktop {
  display: none;
}

@media (min-width: 768px) {
  .nav-desktop {
    display: flex;
    align-items: center;
  }
}

.nav-links {
  display: flex;
  gap: 2rem;
}

.nav-links a {
  font-size: 0.875rem;
  font-weight: 500;
}

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

.nav-buttons {
  display: flex;
  gap: 1rem;
  margin-left: 2rem;
}

.nav-buttons .btn.active {
  background-color: var(--primary);
  color: white;
  border-color: var(--primary);
}

.nav-buttons .btn.btn-outline.active:hover {
  background-color: rgba(14, 165, 233, 0.9);
}

.mobile-menu-toggle {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 2.5rem;
  height: 2.5rem;
  background: transparent;
  border: none;
  cursor: pointer;
}

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

.hamburger {
  position: relative;
  width: 1.5rem;
  height: 2px;
  background-color: var(--foreground);
  transition: all 0.3s ease;
}

.hamburger::before,
.hamburger::after {
  content: "";
  position: absolute;
  width: 1.5rem;
  height: 2px;
  background-color: var(--foreground);
  transition: all 0.3s ease;
}

.hamburger::before {
  transform: translateY(-8px);
}

.hamburger::after {
  transform: translateY(8px);
}

.mobile-menu-toggle.active .hamburger {
  background-color: transparent;
}

.mobile-menu-toggle.active .hamburger::before {
  transform: rotate(45deg);
}

.mobile-menu-toggle.active .hamburger::after {
  transform: rotate(-45deg);
}

.mobile-menu {
  display: none;
  background-color: rgba(5, 5, 5, 0.95);
  backdrop-filter: blur(10px);
  padding: 1rem 0;
}

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

.mobile-nav-links {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.mobile-nav-links a {
  display: block;
  padding: 0.75rem 1.5rem;
  font-size: 1rem;
  font-weight: 500;
  border-radius: 0.375rem;
}

.mobile-nav-links a:hover,
.mobile-nav-links a.active {
  background-color: var(--muted);
}

.mobile-nav-buttons {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  padding: 1rem 1.5rem;
  margin-top: 1rem;
}

.mobile-nav-buttons .btn.active {
  background-color: var(--primary);
  color: white;
  border-color: var(--primary);
}

/* Footer */
.footer {
  background-color: var(--card);
  padding-top: 3rem;
  border-top: 1px solid var(--border);
}

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

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

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

.footer-logo {
  display: flex;
  align-items: center;
  margin-bottom: 1rem;
}

.footer-logo img {
  width: 2.5rem;
  height: 2.5rem;
  margin-right: 0.5rem;
}

.footer-column p {
  color: var(--muted-foreground);
  margin-bottom: 1.5rem;
}

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

.social-links a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 2rem;
  height: 2rem;
  border-radius: 9999px;
  background-color: var(--muted);
  color: var(--muted-foreground);
  transition: all 0.3s ease;
}

.social-links a:hover {
  color: var(--primary);
}

.footer-column h3 {
  margin-bottom: 1.5rem;
  font-size: 1.25rem;
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.footer-links a {
  color: var(--muted-foreground);
}

.footer-links a:hover {
  color: var(--primary);
}

address {
  font-style: normal;
  color: var(--muted-foreground);
}

address p {
  margin-bottom: 0.5rem;
}

address a:hover {
  color: var(--primary);
}

.footer-bottom {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 2rem 0;
  margin-top: 3rem;
  border-top: 1px solid var(--border);
  color: var(--muted-foreground);
  font-size: 0.875rem;
}

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

/* Hero Section */
.hero {
  padding: calc(var(--spacing-xxl) * 2) 0 var(--spacing-xxl);
  background-color: var(--background);
  position: relative;
  overflow: hidden;
}

.hero-content {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--spacing-xl);
  align-items: center;
}

@media (min-width: 992px) {
  .hero-content {
    grid-template-columns: 1fr 1fr;
  }
}

.hero-text {
  max-width: 100%;
}

.hero-text h1 {
  font-size: clamp(2.5rem, 5vw, 4rem);
  margin-bottom: var(--spacing-md);
  line-height: 1.2;
}

.hero-text p {
  font-size: clamp(1rem, 2vw, 1.25rem);
  margin-bottom: var(--spacing-xl);
  color: var(--muted-foreground);
  opacity: 0.9;
}

.hero-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: var(--spacing-md);
}

.hero-image {
  position: relative;
  width: 100%;
  max-width: 600px;
  margin: 0 auto;
}

.hero-image img {
  width: 100%;
  height: auto;
  object-fit: contain;
}

/* NFC Animation */
.nfc-animation {
  position: relative;
  width: 100%;
  height: clamp(200px, 40vw, 400px);
  margin: var(--spacing-xl) auto;
  display: flex;
  align-items: center;
  justify-content: center;
}

.glow {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: clamp(150px, 30vw, 300px);
  height: clamp(150px, 30vw, 300px);
  background: radial-gradient(circle, var(--primary) 0%, transparent 70%);
  opacity: 0.3;
  z-index: 1;
}

.phone {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: clamp(150px, 30vw, 300px);
  z-index: 2;
}

.nfc-card {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: clamp(100px, 20vw, 200px);
  z-index: 3;
  transition: all var(--transition-normal);
}

.nfc-waves {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: clamp(150px, 30vw, 300px);
  height: clamp(150px, 30vw, 300px);
  z-index: 1;
}

.wave {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  border-radius: 50%;
  border: 2px solid var(--primary);
  animation: wave 2s infinite;
  opacity: 0;
}

@media (max-width: 768px) {
  .hero {
    padding: calc(var(--spacing-xl) * 2) 0 var(--spacing-xl);
  }

  .hero-text {
    text-align: center;
  }

  .hero-buttons {
    justify-content: center;
  }

  .nfc-animation {
    height: clamp(250px, 50vw, 350px);
  }

  .phone {
    top: 45%;
    left: 55%;
  }

  .nfc-card {
    top: 60%;
    left: 45%;
    width: clamp(120px, 25vw, 200px);
  }

  .nfc-waves {
    top: 65%;
    left: 40%;
  }
}

/* Services Section */
.services {
  padding: var(--spacing-xxl) 0;
  background-color: var(--card);
}

.services-header {
  text-align: center;
  max-width: 800px;
  margin: 0 auto var(--spacing-xl);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: var(--spacing-lg);
  padding: 0 var(--spacing-md);
}

.service-card {
  background-color: var(--background);
  border-radius: var(--border-radius-lg);
  padding: var(--spacing-lg);
  transition: transform var(--transition-normal), box-shadow var(--transition-normal);
  height: 100%;
  display: flex;
  flex-direction: column;
}

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

.service-icon {
  width: clamp(3rem, 5vw, 4rem);
  height: clamp(3rem, 5vw, 4rem);
  margin-bottom: var(--spacing-md);
  display: flex;
  align-items: center;
  justify-content: center;
  /* background-color: var(--primary); */
  border-radius: var(--border-radius-md);
  color: var(--white);
}

.service-icon i {
  font-size: clamp(1.5rem, 2.5vw, 2rem);
}

.service-card h3 {
  font-size: clamp(1.25rem, 2vw, 1.5rem);
  margin-bottom: var(--spacing-sm);
}

.service-card p {
  font-size: clamp(0.875rem, 1.5vw, 1rem);
  color: var(--muted-foreground);
  opacity: 0.9;
  margin-bottom: var(--spacing-md);
}

.service-features {
  list-style: none;
  margin-top: auto;
  padding-top: var(--spacing-md);
  border-top: 1px solid var(--border);
}

.service-features li {
  display: flex;
  align-items: center;
  gap: var(--spacing-sm);
  margin-bottom: var(--spacing-sm);
  font-size: clamp(0.875rem, 1.5vw, 1rem);
}

.service-features li i {
  color: var(--primary);
  font-size: 1rem;
}

@media (max-width: 768px) {
  .services {
    padding: var(--spacing-xl) 0;
  }

  .services-header {
    margin-bottom: var(--spacing-lg);
    padding: 0 var(--spacing-md);
  }

  .services-grid {
    grid-template-columns: 1fr;
    gap: var(--spacing-md);
  }

  .service-card {
    padding: var(--spacing-md);
  }
}

/* Why Choose Us Section */
.why-choose-us {
  padding: 4rem 0;
}

.why-choose-us-content {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
}

@media (min-width: 992px) {
  .why-choose-us-content {
    grid-template-columns: 1fr 1fr;
    align-items: center;
  }
}

.why-choose-us-image {
  position: relative;
  height: 25rem;
  border-radius: 1rem;
  overflow: hidden;
}

.why-choose-us-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.why-choose-us-text {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.why-choose-us-text .btn {
  align-self: center;
  margin-top: 1rem;
}

.why-choose-us-text h2 {
  margin-bottom: 1rem;
}

.why-choose-us-text > p {
  font-size: 1.125rem;
  color: var(--muted-foreground);
  margin-bottom: 2rem;
}

.features {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  margin-bottom: 2rem;
}

.feature {
  display: flex;
  gap: 1rem;
}

.feature-icon {
  flex-shrink: 0;
  width: 3rem;
  height: 3rem;
  border-radius: 9999px;
  background-color: rgba(14, 165, 233, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
}

.feature-text h3 {
  margin-bottom: 0.5rem;
}

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

/* Featured Products Section */
.featured-products {
  padding: 4rem 0;
}

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

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

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

.product-card {
  background-color: var(--background);
  border: 1px solid var(--border);
  border-radius: 0.5rem;
  overflow: hidden;
}

.product-image {
  position: relative;
  height: 16rem;
  overflow: hidden;
}

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

.product-content {
  padding: 1.5rem;
}

.product-content h3 {
  margin-bottom: 0.5rem;
}

.product-content p {
  color: var(--muted-foreground);
  margin-bottom: 1.5rem;
}

.product-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.price {
  font-size: 1.25rem;
  font-weight: 700;
}

.nfc-card {
  position: relative;
  overflow: hidden;
}

.nfc-card::after {
  content: "";
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(14, 165, 233, 0.1) 0%, transparent 70%);
  opacity: 0;
  transform: scale(0.5);
  transition: transform 0.5s ease-out, opacity 0.5s ease-out;
}

.nfc-card:hover::after {
  opacity: 1;
  transform: scale(1);
}

/* Testimonials Section */
.testimonials {
  padding: 4rem 0;
}

.testimonial-carousel {
  position: relative;
  margin-top: 3rem;
}

.testimonial-slides {
  overflow: hidden;
}

.testimonial-slide {
  display: none;
  width: 100%;
  padding: 0 1rem;
}

.testimonial-slide.active {
  display: block;
  animation: fadeIn 0.5s ease-in-out;
}

.testimonial-card {
  background-color: var(--card);
  border: 1px solid var(--border);
  border-radius: 0.5rem;
  overflow: hidden;
}

.testimonial-content {
  padding: 2rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 1.5rem;
}

@media (min-width: 768px) {
  .testimonial-content {
    flex-direction: row;
    text-align: left;
    align-items: flex-start;
  }
}

.testimonial-image {
  flex-shrink: 0;
  width: 6rem;
  height: 6rem;
  border-radius: 9999px;
  overflow: hidden;
}

@media (min-width: 768px) {
  .testimonial-image {
    width: 8rem;
    height: 8rem;
  }
}

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

.testimonial-text {
  flex-grow: 1;
}

.quote-icon {
  margin-bottom: 1rem;
}

.quote {
  font-size: 1.125rem;
  font-style: italic;
  margin-bottom: 1.5rem;
}

.testimonial-author h4 {
  margin-bottom: 0.25rem;
}

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

.testimonial-controls {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 2rem;
  gap: 0.5rem;
}

.testimonial-prev,
.testimonial-next {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 9999px;
  background-color: transparent;
  border: 1px solid var(--border);
  color: var(--foreground);
  cursor: pointer;
  transition: all 0.3s ease;
}

.testimonial-prev:hover,
.testimonial-next:hover {
  background-color: var(--muted);
}

.testimonial-dots {
  display: flex;
  gap: 0.5rem;
}

.testimonial-dot {
  width: 0.75rem;
  height: 0.75rem;
  border-radius: 9999px;
  background-color: transparent;
  border: 1px solid var(--border);
  cursor: pointer;
  padding: 0;
}

.testimonial-dot.active {
  background-color: var(--primary);
  border-color: var(--primary);
}

/* CTA Section */
.cta-section {
  padding: 4rem 0;
  margin: 2rem 1rem;
  background: linear-gradient(to right, rgba(14, 165, 233, 0.2), rgba(16, 185, 129, 0.2));
  border-radius: 1.5rem;
}

.cta-content {
  max-width: 48rem;
  margin: 0 auto;
}

.cta-content h2 {
  margin-bottom: 1.5rem;
}

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

.cta-buttons {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  justify-content: center;
}

@media (min-width: 640px) {
  .cta-buttons {
    flex-direction: row;
  }
}

/* About Page Styles */
.page-hero {
  padding-top: 3rem;
  padding-bottom: 1rem;
}

.page-hero-content {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}

@media (min-width: 992px) {
  .page-hero-content {
    grid-template-columns: 1fr 1fr;
    align-items: center;
  }
}

.page-hero-image {
  position: relative;
  height: 20rem;
  border-radius: 1rem;
  overflow: hidden;
}

.page-hero-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.mission-vision {
  padding: 4rem 0;
}

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

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

.mission-card,
.vision-card {
  background-color: var(--background);
  border: 1px solid var(--border);
  border-radius: 0.5rem;
  padding: 2rem;
}

.mission-header,
.vision-header {
  display: flex;
  align-items: center;
  margin-bottom: 1.5rem;
}

.mission-icon,
.vision-icon {
  width: 3rem;
  height: 3rem;
  border-radius: 9999px;
  background-color: rgba(14, 165, 233, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 1rem;
}

.our-story {
  padding: 4rem 0;
}

.services-overview {
  padding: 4rem 0;
}

.our-story-content {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
}

@media (min-width: 992px) {
  .our-story-content {
    grid-template-columns: 1fr 1fr;
    align-items: center;
  }
}

.our-story-image {
  position: relative;
  height: 25rem;
  border-radius: 1rem;
  overflow: hidden;
  order: 2;
}

@media (min-width: 992px) {
  .our-story-image {
    order: 1;
  }

  .our-story-text {
    order: 2;
  }
}

.our-story-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.our-values {
  padding: 4rem 0;
}

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

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

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

.value-card {
  background-color: var(--background);
  border: 1px solid var(--border);
  border-radius: 0.5rem;
  padding: 1.5rem;
}

.value-icon {
  width: 3rem;
  height: 3rem;
  border-radius: 9999px;
  background-color: rgba(14, 165, 233, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
}

.value-card h3 {
  margin-bottom: 0.5rem;
}

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

/* Legal Pages Styling */
.legal-header {
  background-color: var(--color-dark);
  color: white;
  padding: 80px 0 40px;
  text-align: center;
}

.legal-header h1 {
  font-size: 2.5rem;
  margin-bottom: 10px;
}

.legal-content {
  padding: 60px 0;
}

.legal-container {
  max-width: 800px;
  margin: 0 auto;
}

.legal-section {
  margin-bottom: 40px;
}

.legal-section h2 {
  font-size: 1.8rem;
  color: var(--color-primary);
  margin-bottom: 20px;
  padding-bottom: 10px;
  border-bottom: 1px solid var(--color-light-gray);
}

.legal-section h3 {
  font-size: 1.4rem;
  margin: 20px 0 15px;
  color: var(--color-dark);
}

.legal-section p,
.legal-section ul,
.legal-section address {
  margin-bottom: 15px;
  line-height: 1.6;
}

.legal-section ul {
  padding-left: 20px;
}

.legal-section ul li {
  margin-bottom: 10px;
}

.legal-section a {
  color: var(--color-primary);
  text-decoration: none;
  transition: color 0.3s ease;
}

.legal-section a:hover {
  text-decoration: underline;
}

/* Contact Page Styling */
.contact-info {
  padding: 4rem 0;
}

.contact-info-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.contact-card {
  background-color: var(--card);
  border-radius: 0.5rem;
  padding: 2rem;
  text-align: center;
  transition: var(--transition);
}

.contact-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--box-shadow);
}

.contact-icon {
  margin-bottom: 1.5rem;
}

.contact-icon svg {
  width: 48px;
  height: 48px;
  color: var(--primary);
}

.contact-card h3 {
  font-size: 1.25rem;
  margin-bottom: 1rem;
  color: var(--foreground);
}

.contact-card p {
  color: var(--muted-foreground);
  margin-bottom: 0.5rem;
}

.contact-card a {
  color: var(--primary);
  text-decoration: none;
  transition: var(--transition);
}

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

/* Contact Form Section */
.contact-form-section {
  padding: 4rem 0;
  background-color: var(--card);
}

.contact-form-container {
  max-width: 800px;
  margin: 0 auto;
}

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

.contact-form-header h2 {
  font-size: 2rem;
  margin-bottom: 1rem;
  color: var(--foreground);
}

.contact-form-header p {
  color: var(--muted-foreground);
}

.contact-form {
  display: grid;
  gap: 1.5rem;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.form-group label {
  font-weight: 500;
  color: var(--foreground);
}

.form-group input,
.form-group select,
.form-group textarea {
  padding: 0.75rem 1rem;
  border: 1px solid var(--border);
  border-radius: 0.5rem;
  background-color: var(--background);
  color: var(--foreground);
  transition: all 0.3s ease;
  font-size: 1rem;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 2px rgba(14, 165, 233, 0.1);
}

.form-group textarea {
  resize: vertical;
  min-height: 150px;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: var(--muted-foreground);
  opacity: 0.7;
}

.contact-form .btn-primary {
  width: auto;
  max-width: 200px;
  padding: 0.75rem 1.5rem;
  font-size: 1rem;
  font-weight: 500;
  background-color: var(--primary);
  color: white;
  border: none;
  border-radius: 0.5rem;
  cursor: pointer;
  transition: all 0.3s ease;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  margin: 1rem auto 0;
}

.contact-form .btn-primary:hover {
  background-color: rgba(14, 165, 233, 0.9);
  transform: translateY(-2px);
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.contact-form .btn-primary:active {
  transform: translateY(0);
  box-shadow: none;
}

.contact-form .btn-primary svg {
  width: 1rem;
  height: 1rem;
}

@media (max-width: 768px) {
  .contact-form-container {
    padding: 0 1rem;
  }
  
  .contact-form-header h2 {
    font-size: 1.75rem;
  }
  
  .contact-form {
    gap: 1rem;
  }
  
  .form-group input,
  .form-group select,
  .form-group textarea {
    padding: 0.625rem 0.875rem;
  }
}

/* Map Section */
.map-section {
  padding: 4rem 0;
}

.map-container {
  max-width: 800px;
  margin: 0 auto;
  border-radius: 0.5rem;
  overflow: hidden;
  box-shadow: var(--box-shadow);
}

.map-container iframe {
  width: 100%;
  height: 450px;
  border: none;
}

/* FAQ Section */
.faq-section {
  padding: 4rem 0;
  background-color: var(--card);
}

.faq-container {
  max-width: 800px;
  margin: 0 auto;
}

.faq-item {
  background-color: var(--background);
  border: 1px solid var(--border);
  border-radius: 0.5rem;
  margin-bottom: 1rem;
  overflow: hidden;
  transition: var(--transition);
}

.faq-item:hover {
  box-shadow: var(--box-shadow);
}

.faq-question {
  padding: 1.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
}

.faq-question h3 {
  font-size: 1.125rem;
  font-weight: 600;
  color: var(--foreground);
  margin: 0;
}

.faq-toggle {
  background: none;
  border: none;
  color: var(--primary);
  cursor: pointer;
  padding: 0.5rem;
  transition: transform 0.3s ease;
}

.faq-toggle svg {
  width: 1.5rem;
  height: 1.5rem;
}

.faq-toggle.active {
  transform: rotate(45deg);
}

.faq-answer {
  padding: 0 1.5rem;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease, padding 0.3s ease;
}

.faq-answer.active {
  padding: 0 1.5rem 1.5rem;
  max-height: 1000px;
}

.faq-answer p {
  color: var(--muted-foreground);
  margin: 0;
  line-height: 1.6;
}

/* Responsive Styles */
@media (max-width: 768px) {
  .contact-info-grid {
    grid-template-columns: 1fr;
  }
  
  .contact-form-container {
    padding: 0 1rem;
  }
  
  .map-container iframe {
    height: 300px;
  }
  
  .faq-question {
    padding: 1rem;
  }
  
  .faq-question h3 {
    font-size: 1rem;
  }
}

/* Active state for navigation buttons */
.nav-buttons .btn.active {
  background-color: var(--primary);
  color: white;
  border-color: var(--primary);
}

.nav-buttons .btn.btn-outline.active:hover {
  background-color: rgba(14, 165, 233, 0.9);
}

.mobile-nav-buttons .btn.active {
  display: flex;
  flex-direction: column;
  background-color: var(--primary);
  color: white;
  border-color: var(--primary);
}

/* Contact Form Button */
.contact-form .btn-primary {
  width: auto;
  max-width: 200px;
  padding: 0.75rem 1.5rem;
  font-size: 1rem;
  font-weight: 500;
  background-color: var(--primary);
  color: white;
  border: none;
  border-radius: 0.5rem;
  cursor: pointer;
  transition: all 0.3s ease;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  margin: 1rem auto 0;
}

.contact-form .btn-primary:hover {
  background-color: var(--primary-hover);
  transform: translateY(-2px);
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.contact-form .btn-primary:active {
  transform: translateY(0);
  box-shadow: none;
}

.contact-form .btn-primary svg {
  width: 1rem;
  height: 1rem;
}

/* Responsive Grid */
.grid {
  display: grid;
  gap: var(--spacing-md);
}

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

/* Responsive Spacing Utilities */
.mt-1 { margin-top: var(--spacing-xs); }
.mt-2 { margin-top: var(--spacing-sm); }
.mt-3 { margin-top: var(--spacing-md); }
.mt-4 { margin-top: var(--spacing-lg); }
.mt-5 { margin-top: var(--spacing-xl); }

.mb-1 { margin-bottom: var(--spacing-xs); }
.mb-2 { margin-bottom: var(--spacing-sm); }
.mb-3 { margin-bottom: var(--spacing-md); }
.mb-4 { margin-bottom: var(--spacing-lg); }
.mb-5 { margin-bottom: var(--spacing-xl); }

.p-1 { padding: var(--spacing-xs); }
.p-2 { padding: var(--spacing-sm); }
.p-3 { padding: var(--spacing-md); }
.p-4 { padding: var(--spacing-lg); }
.p-5 { padding: var(--spacing-xl); }

.consultation-form .btn-primary {
  width: auto;
  max-width: 200px;
  padding: 0.75rem 1.5rem;
  font-size: 1rem;
  font-weight: 500;
  background-color: var(--primary);
  color: white;
  border: none;
  border-radius: 0.5rem;
  cursor: pointer;
  transition: all 0.3s ease;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  margin: 1rem auto 0;
}



