/* Import Inter font */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700&display=swap');

/* CSS Variables */
:root {
  /* Brand Colors */
  --brand-blue-50: hsl(214, 100%, 95%);
  --brand-blue-500: hsl(217, 91%, 60%);
  --brand-blue-600: hsl(221, 83%, 53%);
  --brand-blue-700: hsl(224, 76%, 48%);
  --brand-blue-900: hsl(224, 64%, 33%);
  
  --brand-orange-50: hsl(24, 100%, 91%);
  --brand-orange-500: hsl(20, 91%, 62%);
  --brand-orange-600: hsl(20, 90%, 48%);
  --brand-orange-700: hsl(17, 88%, 40%);
  
  --brand-green-50: hsl(151, 81%, 86%);
  --brand-green-500: hsl(158, 64%, 52%);
  --brand-green-600: hsl(158, 64%, 43%);
  --brand-green-700: hsl(158, 64%, 35%);

  /* Neutral Colors */
  --gray-50: hsl(210, 20%, 98%);
  --gray-100: hsl(220, 14%, 96%);
  --gray-200: hsl(220, 13%, 91%);
  --gray-300: hsl(216, 12%, 84%);
  --gray-400: hsl(218, 11%, 65%);
  --gray-500: hsl(220, 9%, 46%);
  --gray-600: hsl(215, 14%, 34%);
  --gray-700: hsl(217, 19%, 27%);
  --gray-800: hsl(215, 28%, 17%);
  --gray-900: hsl(221, 39%, 11%);

  /* Typography */
  --font-sans: 'Inter', 'Open Sans', sans-serif;
  --font-serif: Georgia, serif;
  --font-mono: Menlo, monospace;

  /* Spacing */
  --radius: 1rem;

  /* Shadows */
  --shadow-sm: 0 1px 2px 0 rgb(0 0 0 / 0.05);
  --shadow: 0 1px 3px 0 rgb(0 0 0 / 0.1), 0 1px 2px -1px rgb(0 0 0 / 0.1);
  --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);
  --shadow-2xl: 0 25px 50px -12px rgb(0 0 0 / 0.25);
}

/* Reset and Base Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: var(--font-sans);
  line-height: 1.6;
  color: var(--gray-900);
  background-color: var(--gray-50);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* Utility Classes */
.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;
  }
}

/* Gradient Text */
.gradient-text {
  background: linear-gradient(135deg, var(--brand-blue-600), var(--brand-orange-600), var(--brand-green-600));
  background-size: 200% 200%;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: gradient-shift 3s ease infinite;
}

@keyframes gradient-shift {
  0%, 100% { 
    background-position: 0% 50%; 
  }
  50% { 
    background-position: 100% 50%; 
  }
}

/* Hero Gradient */
.hero-gradient {
  background: linear-gradient(135deg, var(--brand-blue-900) 0%, var(--brand-blue-600) 25%, var(--brand-orange-600) 75%, var(--brand-green-600) 100%);
  background-size: 400% 400%;
  animation: gradient-shift 8s ease infinite;
}

/* Float Animation */
@keyframes float {
  0%, 100% { 
    transform: translateY(0px); 
  }
  50% { 
    transform: translateY(-10px); 
  }
}

.floating-image {
  animation: float 6s ease-in-out infinite;
}

/* Bounce Animation */
@keyframes bounce-slow {
  0%, 100% {
    transform: translateY(-25%);
    animation-timing-function: cubic-bezier(0.8, 0, 1, 1);
  }
  50% {
    transform: none;
    animation-timing-function: cubic-bezier(0, 0, 0.2, 1);
  }
}

.animate-bounce-slow {
  animation: bounce-slow 2s infinite;
}

/* Navigation */
.navbar {
  background: white;
  box-shadow: var(--shadow-lg);
  position: sticky;
  top: 0;
  z-index: 50;
  transition: all 0.3s ease;
}

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

.nav-brand {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.logo-main {
  height: auto;
  max-height: 60px;
  width: auto;
  max-width: 200px;
  transition: all 0.3s ease;
}

.logo-main:hover {
  transform: scale(1.05);
}

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

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

.nav-link {
  text-decoration: none;
  color: var(--gray-700);
  font-weight: 500;
  font-size: 0.875rem;
  padding: 0.5rem 0.75rem;
  transition: color 0.3s ease;
}

.nav-link:hover {
  color: var(--brand-blue-600);
}

.contact-btn {
  background: linear-gradient(to right, var(--brand-blue-600), var(--brand-orange-600));
  color: white !important;
  padding: 0.5rem 1.5rem;
  border-radius: 9999px;
  font-weight: 600;
  transition: all 0.3s ease;
}

.contact-btn:hover {
  box-shadow: var(--shadow-lg);
  transform: scale(1.05);
}

/* Mobile Menu */
.mobile-menu-btn {
  display: flex;
  flex-direction: column;
  cursor: pointer;
  gap: 0.25rem;
}

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

.mobile-menu-btn span {
  width: 1.5rem;
  height: 2px;
  background: var(--gray-700);
  transition: all 0.3s ease;
}

.mobile-menu {
  display: none;
  background: white;
  border-top: 1px solid var(--gray-200);
  padding: 1rem;
}

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

.mobile-link {
  display: block;
  padding: 0.75rem 0;
  text-decoration: none;
  color: var(--gray-700);
  font-weight: 500;
  border-bottom: 1px solid var(--gray-100);
  transition: color 0.3s ease;
}

.mobile-link:hover {
  color: var(--brand-blue-600);
}

.mobile-link:last-child {
  border-bottom: none;
}

/* Hero Section */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, var(--brand-blue-900) 0%, var(--brand-blue-600) 25%, var(--brand-orange-600) 75%, var(--brand-green-600) 100%);
  background-size: 400% 400%;
  animation: gradient-shift 8s ease infinite;
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.2);
}

.hero-container {
  position: relative;
  z-index: 10;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1rem;
}

.hero-content {
  display: grid;
  gap: 3rem;
  align-items: center;
}

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

.hero-text {
  color: white;
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.hero-title {
  font-size: 3rem;
  font-weight: 700;
  line-height: 1.2;
}

@media (min-width: 768px) {
  .hero-title {
    font-size: 3.75rem;
  }
}

.hero-title .gradient-text {
  color: var(--brand-orange-50);
}

.hero-subtitle {
  font-size: 1.25rem;
  color: rgba(255, 255, 255, 0.9);
  line-height: 1.6;
}

.hero-buttons {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

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

.hero-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  padding-top: 2rem;
}

.stat {
  text-align: center;
}

.stat-number {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--brand-orange-50);
  animation: bounce-slow 2s infinite;
}

.stat-label {
  color: rgba(255, 255, 255, 0.8);
  margin-top: 0.5rem;
}

.hero-image img {
  width: 100%;
  height: auto;
  border-radius: 1.5rem;
  box-shadow: var(--shadow-2xl);
  transition: all 0.5s ease;
}

.hero-image img:hover {
  transform: scale(1.05);
}

@media (min-width: 1024px) {
  .hero-image {
    text-align: right;
  }
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 1rem 2rem;
  font-weight: 600;
  text-decoration: none;
  border-radius: 9999px;
  transition: all 0.3s ease;
  border: none;
  cursor: pointer;
  font-size: 0.875rem;
}

.btn-primary {
  background: white;
  color: var(--brand-blue-700);
}

.btn-primary:hover {
  box-shadow: var(--shadow-xl);
  transform: scale(1.05);
}

.btn-secondary {
  border: 2px solid white;
  color: white;
  background: transparent;
}

.btn-secondary:hover {
  background: white;
  color: var(--brand-blue-700);
}

.btn-gradient {
  background: linear-gradient(to right, var(--brand-blue-600), var(--brand-orange-600));
  color: white;
}

.btn-gradient:hover {
  box-shadow: var(--shadow-xl);
  transform: scale(1.05);
}

.btn-white {
  background: white;
  color: var(--brand-blue-700);
}

.btn-white:hover {
  box-shadow: var(--shadow-xl);
  transform: scale(1.05);
}

.btn-full {
  width: 100%;
}

/* Section Styles */
.section-header {
  text-align: center;
  margin-bottom: 4rem;
}

.section-title {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--gray-900);
  margin-bottom: 1rem;
}

.section-subtitle {
  font-size: 1.25rem;
  color: var(--gray-600);
  max-width: 48rem;
  margin: 0 auto;
}

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

.features-grid {
  display: grid;
  gap: 2rem;
}

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

.feature-card {
  padding: 2rem;
  border-radius: 1rem;
  transition: all 0.3s ease;
}

.feature-card:hover {
  box-shadow: var(--shadow-xl);
  transform: scale(1.05);
}

.feature-card.blue {
  background: linear-gradient(to bottom right, var(--brand-blue-50), hsl(214, 100%, 90%));
}

.feature-card.orange {
  background: linear-gradient(to bottom right, var(--brand-orange-50), hsl(24, 100%, 86%));
}

.feature-card.green {
  background: linear-gradient(to bottom right, var(--brand-green-50), hsl(151, 81%, 81%));
}

.feature-icon {
  width: 4rem;
  height: 4rem;
  border-radius: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
  color: white;
}

.feature-card.blue .feature-icon {
  background: var(--brand-blue-600);
}

.feature-card.orange .feature-icon {
  background: var(--brand-orange-600);
}

.feature-card.green .feature-icon {
  background: var(--brand-green-600);
}

.feature-title {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--gray-900);
  margin-bottom: 1rem;
}

.feature-description {
  color: var(--gray-600);
  line-height: 1.6;
}

/* About Company Section */
.about-company {
  padding: 5rem 0;
  background: var(--gray-50);
}

.about-grid {
  display: grid;
  gap: 3rem;
  align-items: center;
}

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

.about-label {
  color: var(--brand-blue-600);
  font-weight: 600;
  margin-bottom: 1rem;
}

.about-title {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--gray-900);
  margin-bottom: 1.5rem;
}

.about-description {
  font-size: 1.125rem;
  color: var(--gray-600);
  line-height: 1.6;
  margin-bottom: 2rem;
}

.about-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-bottom: 2rem;
}

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

.about-stat .stat-number {
  font-size: 2rem;
  font-weight: 700;
}

.about-stat .stat-number.blue {
  color: var(--brand-blue-600);
}

.about-stat .stat-number.orange {
  color: var(--brand-orange-600);
}

.about-stat .stat-number.green {
  color: var(--brand-green-600);
}

.about-stat .stat-label {
  color: var(--gray-600);
  font-size: 0.875rem;
}

.about-images {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.about-image-1,
.about-image-2 {
  border-radius: 0.75rem;
  box-shadow: var(--shadow-lg);
  transition: all 0.3s ease;
  width: 100%;
  height: auto;
}

.about-image-1:hover,
.about-image-2:hover {
  transform: scale(1.05);
}

.about-image-2 {
  margin-top: 2rem;
}

/* Services Section */
.services {
  padding: 5rem 0;
  background: white;
}

.services-grid {
  display: grid;
  gap: 2rem;
}

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

.service-card {
  background: linear-gradient(to bottom right, var(--gray-50), var(--gray-100));
  border-radius: 1.5rem;
  overflow: hidden;
  transition: all 0.3s ease;
  box-shadow: var(--shadow);
}

.service-card:hover {
  box-shadow: var(--shadow-2xl);
  transform: scale(1.05);
}

.service-image {
  width: 100%;
  height: 16rem;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.service-card:hover .service-image {
  transform: scale(1.1);
}

.service-content {
  padding: 2rem;
}

.service-header {
  display: flex;
  align-items: center;
  margin-bottom: 1rem;
}

.service-icon {
  width: 3rem;
  height: 3rem;
  border-radius: 0.75rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 1rem;
  color: white;
}

.service-icon.blue-orange {
  background: linear-gradient(to right, var(--brand-blue-600), var(--brand-orange-600));
}

.service-icon.blue-green {
  background: linear-gradient(to right, var(--brand-blue-600), var(--brand-green-600));
}

.service-icon.orange-green {
  background: linear-gradient(to right, var(--brand-orange-600), var(--brand-green-600));
}

.service-icon.green-blue {
  background: linear-gradient(to right, var(--brand-green-600), var(--brand-blue-600));
}

.service-title {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--gray-900);
}

.service-description {
  color: var(--gray-600);
  line-height: 1.6;
  margin-bottom: 1.5rem;
}

.service-features {
  list-style: none;
  margin-bottom: 1.5rem;
}

.service-features li {
  display: flex;
  align-items: center;
  color: var(--gray-600);
  margin-bottom: 0.5rem;
}

.service-features li::before {
  content: "✓";
  color: var(--brand-green-600);
  font-weight: 600;
  margin-right: 0.75rem;
}

.service-link {
  color: var(--brand-blue-600);
  font-weight: 600;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  transition: color 0.3s ease;
}

.service-link:hover {
  color: var(--brand-orange-600);
}

.services-cta {
  text-align: center;
  margin-top: 3rem;
}

.services-cta .cta-content {
  background: linear-gradient(to right, var(--brand-blue-600), var(--brand-orange-600));
  border-radius: 1.5rem;
  padding: 2rem;
  color: white;
}

.services-cta .cta-title {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
}

.services-cta .cta-description {
  font-size: 1.125rem;
  margin-bottom: 1.5rem;
  opacity: 0.9;
}

/* Products Section */
.products {
  padding: 5rem 0;
  background: var(--gray-50);
}

.products-grid {
  display: grid;
  gap: 3rem;
}

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

.product-card {
  background: white;
  border-radius: 1.5rem;
  padding: 0;
  box-shadow: var(--shadow-xl);
  transition: all 0.3s ease;
  overflow: hidden;
}

.product-image {
  width: 100%;
  height: 300px;
  object-fit: cover;
  border-radius: 0;
}

.product-card > *:not(.product-image) {
  padding-left: 2rem;
  padding-right: 2rem;
}

.product-card .product-badge {
  margin-top: 2rem;
}

.product-card .btn {
  margin: 0 2rem 2rem 2rem;
}

.product-card:hover {
  box-shadow: var(--shadow-2xl);
  transform: scale(1.05);
}

.product-badge {
  display: inline-block;
  color: white;
  padding: 0.5rem 1rem;
  border-radius: 9999px;
  font-size: 0.875rem;
  font-weight: 600;
  margin-bottom: 1.5rem;
}

.product-badge.orange-green {
  background: linear-gradient(to right, var(--brand-orange-600), var(--brand-green-600));
}

.product-badge.blue-green {
  background: linear-gradient(to right, var(--brand-blue-600), var(--brand-green-600));
}

.product-title {
  font-size: 1.875rem;
  font-weight: 700;
  color: var(--gray-900);
  margin-bottom: 1rem;
}

.product-description {
  color: var(--gray-600);
  line-height: 1.6;
  margin-bottom: 1.5rem;
}

.product-features {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.product-feature {
  display: flex;
  align-items: center;
  color: var(--gray-600);
  gap: 0.75rem;
}

.product-feature svg {
  color: var(--brand-blue-600);
}

/* About Section */
.about {
  padding: 5rem 0;
  background: white;
}

.about-main-image {
  border-radius: 1.5rem;
  box-shadow: var(--shadow-xl);
  width: 100%;
  height: auto;
  transition: all 0.3s ease;
}

.about-main-image:hover {
  transform: scale(1.05);
}

.story-title {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--gray-900);
  margin-bottom: 1rem;
}

.story-text {
  color: var(--gray-600);
  line-height: 1.6;
  margin-bottom: 1.5rem;
}

.story-stats {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
}

.story-stat {
  text-align: center;
  background: var(--gray-50);
  padding: 1.5rem;
  border-radius: 1rem;
}

.story-stat.blue {
  background: var(--brand-blue-50);
}

.story-stat.orange {
  background: var(--brand-orange-50);
}

.story-stat .stat-number {
  font-size: 2rem;
  font-weight: 700;
}

.story-stat.blue .stat-number {
  color: var(--brand-blue-600);
}

.story-stat.orange .stat-number {
  color: var(--brand-orange-600);
}

.values-section {
  margin-top: 5rem;
}

.values-title {
  font-size: 1.875rem;
  font-weight: 700;
  color: var(--gray-900);
  text-align: center;
  margin-bottom: 3rem;
}

.values-grid {
  display: grid;
  gap: 2rem;
}

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

.value-card {
  text-align: center;
  padding: 1.5rem;
}

.value-icon {
  width: 4rem;
  height: 4rem;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  color: white;
}

.value-icon.blue-orange {
  background: linear-gradient(to right, var(--brand-blue-600), var(--brand-orange-600));
}

.value-icon.orange-green {
  background: linear-gradient(to right, var(--brand-orange-600), var(--brand-green-600));
}

.value-icon.green-blue {
  background: linear-gradient(to right, var(--brand-green-600), var(--brand-blue-600));
}

.value-title {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--gray-900);
  margin-bottom: 1rem;
}

.value-description {
  color: var(--gray-600);
}

/* Modal Styles */
.modal {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(4px);
}

.modal.active {
    display: flex;
    align-items: center;
    justify-content: center;
    animation: modalFadeIn 0.3s ease;
}

@keyframes modalFadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

.modal-content {
    background: white;
    border-radius: 1.5rem;
    width: 90%;
    max-width: 600px;
    max-height: 90vh;
    overflow-y: auto;
    box-shadow: 0 20px 60px -5px rgba(0, 0, 0, 0.3);
    transform: scale(0.9);
    transition: transform 0.3s ease;
}

.modal.active .modal-content {
    transform: scale(1);
}

.modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 2rem 2rem 1rem;
    border-bottom: 1px solid #e2e8f0;
}

.modal-header h2 {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--brand-blue-600);
    margin: 0;
}

.modal-close {
    background: none;
    border: none;
    font-size: 2rem;
    color: var(--gray-500);
    cursor: pointer;
    padding: 0;
    width: 2rem;
    height: 2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 0.5rem;
    transition: background-color 0.2s ease, color 0.2s ease;
}

.modal-close:hover {
    background-color: var(--gray-100);
    color: var(--gray-700);
}

.modal-body {
    padding: 2rem;
}

.modal-subtitle {
    color: var(--gray-600);
    margin-bottom: 1.5rem;
    line-height: 1.5;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin-bottom: 2rem;
}

.benefit-compact {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem;
    background: #f8fafc;
    border-radius: 0.75rem;
    border: 1px solid #e2e8f0;
}

.benefit-icon-small {
    font-size: 1.25rem;
    width: 2rem;
    height: 2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--brand-blue-600), var(--brand-orange-600));
    border-radius: 0.5rem;
    color: white;
    flex-shrink: 0;
}

.benefit-compact span {
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--brand-blue-600);
}

.consultation-modal-form .form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.consultation-modal-form .form-group {
    margin-bottom: 1.5rem;
}

.consultation-modal-form label {
    display: block;
    font-weight: 500;
    color: var(--brand-blue-600);
    margin-bottom: 0.5rem;
    font-size: 0.9rem;
}

.consultation-modal-form input,
.consultation-modal-form select,
.consultation-modal-form textarea {
    width: 100%;
    padding: 0.75rem 1rem;
    border: 2px solid #e2e8f0;
    border-radius: 0.5rem;
    font-size: 1rem;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.consultation-modal-form input:focus,
.consultation-modal-form select:focus,
.consultation-modal-form textarea:focus {
    outline: none;
    border-color: var(--brand-blue-600);
    box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.1);
}

.consultation-modal-form textarea {
    resize: vertical;
    min-height: 80px;
}

.modal-submit {
    width: auto;
    min-width: 140px;
    padding: 12px 24px;
    margin-top: 1rem;
    align-self: flex-start;
}

.availability-notice {
    background: #f1f5f9;
    border: 1px solid #cbd5e1;
    border-radius: 0.75rem;
    padding: 1rem;
    margin: 1.5rem 0;
}

.availability-notice p {
    margin: 0.25rem 0;
    color: #475569;
    font-size: 0.9rem;
}

.availability-notice strong {
    color: var(--brand-blue-600);
}

/* Mobile responsiveness for modal */
@media (max-width: 768px) {
    .modal-content {
        width: 95%;
        margin: 1rem;
    }
    
    .modal-header,
    .modal-body {
        padding: 1.5rem;
    }
    
    .modal-header {
        padding-bottom: 1rem;
    }
    
    .benefits-grid {
        grid-template-columns: 1fr;
    }
    
    .consultation-modal-form .form-row {
        grid-template-columns: 1fr;
    }
    
    .modal-header h2 {
        font-size: 1.25rem;
    }
}

/* Contact Section */
.contact {
  padding: 5rem 0;
  background: var(--gray-50);
}

/* Contact Success Message */
.contact-success-message {
  background: linear-gradient(135deg, #d4edda 0%, #c3e6cb 100%);
  border: 2px solid #28a745;
  border-radius: 12px;
  padding: 20px 24px;
  margin-top: 24px;
  animation: slideInDown 0.5s ease-out;
}

.success-content {
  display: flex;
  align-items: center;
  gap: 16px;
}

.success-icon {
  color: #28a745;
  flex-shrink: 0;
  background: rgba(40, 167, 69, 0.1);
  padding: 8px;
  border-radius: 50%;
  width: 40px;
  height: 40px;
}

.success-text {
  flex: 1;
}

.success-title {
  color: #155724;
  font-size: 18px;
  font-weight: 600;
  margin: 0 0 4px 0;
}

.success-description {
  color: #155724;
  font-size: 14px;
  margin: 0;
  opacity: 0.8;
}

@keyframes slideInDown {
  from {
    opacity: 0;
    transform: translateY(-20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.contact-grid {
  display: grid;
  gap: 3rem;
}

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

.contact-form-container {
  background: white;
  border-radius: 1.5rem;
  padding: 2rem;
  box-shadow: var(--shadow-xl);
}

.form-title {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--gray-900);
  margin-bottom: 1.5rem;
}

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

.form-row {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
}

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

.form-label {
  font-weight: 600;
  color: var(--gray-700);
  margin-bottom: 0.5rem;
}

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

.form-input:focus,
.form-select:focus,
.form-textarea:focus {
  outline: none;
  border-color: var(--brand-blue-600);
}

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

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

.contact-info-card {
  background: white;
  border-radius: 1.5rem;
  padding: 2rem;
  box-shadow: var(--shadow-xl);
}

.info-title {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--gray-900);
  margin-bottom: 1.5rem;
}

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

.info-item {
  display: flex;
  align-items: flex-start;
}

.info-icon {
  width: 3rem;
  height: 3rem;
  border-radius: 0.75rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 1rem;
  flex-shrink: 0;
  color: white;
}

.info-icon.blue {
  background: var(--brand-blue-100);
  color: var(--brand-blue-600);
}

.info-icon.orange {
  background: var(--brand-orange-100);
  color: var(--brand-orange-600);
}

.info-icon.green {
  background: var(--brand-green-100);
  color: var(--brand-green-600);
}

.info-label {
  font-weight: 600;
  color: var(--gray-900);
  margin-bottom: 0.25rem;
}

.info-text {
  color: var(--gray-600);
  line-height: 1.5;
}

.consultation-cta {
  background: linear-gradient(to right, var(--brand-blue-600), var(--brand-orange-600));
  border-radius: 1.5rem;
  padding: 2rem;
  color: white;
  text-align: center;
}

.consultation-cta .cta-title {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
}

.consultation-cta .cta-description {
  font-size: 1.125rem;
  margin-bottom: 1.5rem;
  opacity: 0.9;
}

/* Social Newsletter Section */
.social-newsletter {
  padding: 4rem 0;
  background: white;
}

.newsletter-card {
  background: linear-gradient(to right, var(--brand-blue-600), var(--brand-orange-600), var(--brand-green-600));
  border-radius: 1.5rem;
  padding: 3rem;
  color: white;
  text-align: center;
}

.newsletter-title {
  font-size: 1.875rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
}

.newsletter-description {
  font-size: 1.25rem;
  margin-bottom: 2rem;
  opacity: 0.9;
}

.social-links {
  display: flex;
  justify-content: center;
  gap: 1.5rem;
  margin-bottom: 2rem;
}

.social-link {
  width: 3rem;
  height: 3rem;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 0.75rem;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  color: white;
  transition: all 0.3s ease;
}

.social-link:hover {
  background: rgba(255, 255, 255, 0.3);
  transform: scale(1.1);
}

.newsletter-signup {
  max-width: 24rem;
  margin: 0 auto;
}

.newsletter-form {
  display: flex;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 9999px;
  padding: 0.5rem;
}

.newsletter-input {
  flex: 1;
  background: transparent;
  border: none;
  outline: none;
  padding: 0.75rem 1rem;
  color: white;
  font-size: 1rem;
}

.newsletter-input::placeholder {
  color: rgba(255, 255, 255, 0.7);
}

.newsletter-btn {
  background: white;
  color: var(--brand-blue-700);
  padding: 0.75rem 1.5rem;
  border-radius: 9999px;
  font-weight: 600;
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
}

.newsletter-btn:hover {
  box-shadow: var(--shadow-lg);
}

/* Footer */
.footer {
  background: var(--gray-900);
  color: white;
  padding: 3rem 0;
}

.footer-content {
  display: grid;
  gap: 2rem;
}

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

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

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

.footer-logo-img {
  height: auto;
  max-height: 48px;
  width: auto;
  max-width: 160px;
  transition: all 0.3s ease;
}

.footer-logo-img:hover {
  transform: scale(1.05);
}

.footer-description {
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.6;
}

.footer-links {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.footer-title {
  font-size: 1.125rem;
  font-weight: 600;
  margin-bottom: 1rem;
}

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

.footer-link {
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
  transition: color 0.3s ease;
}

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

.footer-bottom {
  border-top: 1px solid var(--gray-800);
  margin-top: 3rem;
  padding-top: 2rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  align-items: center;
  justify-content: space-between;
}

@media (min-width: 768px) {
  .footer-bottom {
    flex-direction: row;
    gap: 0;
  }
}

.footer-copyright {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.875rem;
}

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

.footer-social-link {
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
  transition: color 0.3s ease;
}

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

/* Loading States */
.btn-loading {
  display: none;
}

.btn.loading .btn-text {
  display: none;
}

.btn.loading .btn-loading {
  display: inline;
}

/* Responsive Design */
@media (max-width: 640px) {
  .hero-title {
    font-size: 2.5rem;
  }
  
  .section-title {
    font-size: 2rem;
  }
  
  .hero-buttons {
    flex-direction: column;
  }
  
  .form-row {
    grid-template-columns: 1fr;
  }
  
  .about-stats {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .product-features {
    grid-template-columns: 1fr;
  }
}

/* Smooth Scrolling */
html {
  scroll-behavior: smooth;
}

/* Focus States for Accessibility */
.btn:focus,
.nav-link:focus,
.form-input:focus,
.form-select:focus,
.form-textarea:focus {
  outline: 2px solid var(--brand-blue-600);
  outline-offset: 2px;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
  width: 8px;
}

::-webkit-scrollbar-track {
  background: var(--gray-100);
}

::-webkit-scrollbar-thumb {
  background: var(--brand-blue-600);
  border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
  background: var(--brand-blue-700);
}