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

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto,
    sans-serif;
  line-height: 1.6;
  color: #1e293b;
  background-color: #fafafa;
  overflow-x: hidden;
}

/* CSS Variables - Design System */
:root {
  /* Colors in HSL for consistency */
  --background: 0 0% 98%;
  --foreground: 220 13% 18%;
  --card: 0 0% 100%;
  --card-foreground: 220 13% 18%;
  --primary: 197 85% 24%;
  --primary-foreground: 0 0% 100%;
  --primary-glow: 197 85% 35%;
  --secondary: 220 13% 91%;
  --secondary-foreground: 220 13% 18%;
  --muted: 220 13% 95%;
  --muted-foreground: 220 9% 46%;
  --accent: 197 85% 95%;
  --accent-foreground: 197 85% 24%;
  --border: 220 13% 91%;
  --ring: 197 85% 24%;

  /* Gradients */
  --gradient-primary: linear-gradient(
    135deg,
    hsl(197 85% 24%),
    hsl(197 85% 35%)
  );
  --gradient-hero: linear-gradient(135deg, hsl(197 85% 24%), hsl(220 13% 18%));
  --gradient-subtle: linear-gradient(180deg, hsl(0 0% 100%), hsl(220 13% 98%));

  /* Shadows */
  --shadow-elegant: 0 10px 30px -10px hsl(197 85% 24% / 0.15);
  --shadow-glow: 0 0 40px hsl(197 85% 35% / 0.2);
  --shadow-card: 0 4px 6px -1px rgb(0 0 0 / 0.1),
    0 2px 4px -2px rgb(0 0 0 / 0.1);

  /* Spacing */
  --container-padding: 1rem;
  --section-padding: 4rem 0;

  /* Border Radius */
  --radius: 0.75rem;

  /* Transitions */
  --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Container */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 var(--container-padding);
}

/* Typography */
h1,
h2,
h3,
h4,
h5,
h6 {
  font-weight: 600;
  line-height: 1.2;
  color: hsl(var(--foreground));
}

h1 {
  font-size: 2.5rem;
}
h2 {
  font-size: 2rem;
}
h3 {
  font-size: 1.5rem;
}
h4 {
  font-size: 1.25rem;
}

@media (max-width: 768px) {
  h1 {
    font-size: 2rem;
  }
  h2 {
    font-size: 1.75rem;
  }
  h3 {
    font-size: 1.25rem;
  }
}

/* Button Styles */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.75rem 1.5rem;
  font-size: 0.875rem;
  font-weight: 500;
  text-decoration: none;
  border: none;
  border-radius: var(--radius);
  cursor: pointer;
  transition: var(--transition);
  white-space: nowrap;
}

.btn-hero {
  background: linear-gradient(to right, #00ae62, #00784b);
  color: white;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.btn-hero:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.3);
}

.btn-secondary {
  background: linear-gradient(to right, #00ae62, #00784b);
  color: white;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.btn-secondary:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.3);
}
.btn-cta {
  background: var(--gradient-primary);
  color: hsl(var(--primary-foreground));
  box-shadow: var(--shadow-elegant);
}
.btn-outline {
  background: transparent;
  color: hsl(var(--primary));
  border: 1px solid hsl(var(--primary));
}

.btn-outline:hover {
  background: hsl(var(--primary));
  color: hsl(var(--primary-foreground));
}
.serviciibuton a,
.serviciibuton {
  text-decoration: none;
}

.btn-full {
  width: 100%;
}

/* Header */
.header {
  position: sticky;
  top: 0;
  left: 0;
  right: 0;
  z-index: 9999999;
  background-color: #00ae62;
  backdrop-filter: blur(10px);
  /*border-bottom: 1px solid hsl(var(--border));*/
}

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

/* Logo */
.logo {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

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

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

.logo-image {
  width: 120px;
  height: auto;
  display: block;
}

/* Navigation */
.nav-desktop {
  display: flex;
  align-items: center;
  gap: 2rem;
}

.nav-link {
  color: #ffff;
  text-decoration: none;
  transition: var(--transition);
}

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

.cta-desktop {
  display: flex;
}

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

.hamburger-line {
  width: 1.5rem;
  height: 2px;
  background: hsl(var(--foreground));
  transition: var(--transition);
}

.mobile-menu {
  display: none;
  position: absolute;
  top: 4rem;
  left: 0;
  right: 0;
  background: #00ae62;
  border-bottom: 1px solid hsl(var(--border));
  box-shadow: var(--shadow-elegant);
}

.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  padding: 1rem;
}

.mobile-nav-link {
  color: #ffff;
  text-decoration: none;
  transition: var(--transition);
}

.mobile-nav-link:hover {
  color: hsl(var(--primary));
}

@media (max-width: 768px) {
  .nav-desktop,
  .cta-desktop {
    display: none;
  }

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

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

  .logo-text img {
    width: 120px;
  }
}

/* Hero Section */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: -2;
}

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

.hero-overlay {
  position: absolute;
  inset: 0;
  background: var(--gradient-hero);
  opacity: 0.8;
}

.hero-content {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 3rem;
  align-items: center;
  color: hsl(var(--primary-foreground));
  padding: 6rem 0;
}

.hero-text {
  max-width: 600px;
}

.hero-title {
  font-size: 2.3rem;
  line-height: 1.3;
  font-weight: 700;
  text-align: center;
  margin-bottom: 1rem;
}

/*.text-gradient {
    background: linear-gradient(135deg, hsl(197 85% 65%), hsl(197 85% 85%));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}
*/
.hero-description {
  font-size: 1.125rem;
  margin-bottom: 2rem;
  opacity: 0.9;
}

.hero-cta {
  display: flex;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
  margin-top: 1.5rem;
}

.hero-stats {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.stat-card {
  background: hsl(var(--card) / 0.1);
  backdrop-filter: blur(10px);
  border: 1px solid hsl(var(--primary-foreground) / 0.2);
  border-radius: var(--radius);
  padding: 1.5rem;
  text-align: center;
  min-width: 120px;
}

.stat-number {
  font-size: 2rem;
  font-weight: bold;
  color: hsl(var(--primary-foreground));
}

.stat-label {
  font-size: 0.875rem;
  opacity: 0.8;
  margin-top: 0.5rem;
}

@media (max-width: 768px) {
  .hero-content {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 2rem;
  }

  .hero-title {
    font-size: 2.5rem;
  }

  .hero-stats {
    flex-direction: row;
    justify-content: center;
  }

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

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

.section-title {
  font-size: 2.5rem;
  margin-bottom: 1rem;
  color: hsl(var(--foreground));
}

.section-description {
  font-size: 1.125rem;
  color: hsl(var(--muted-foreground));
  max-width: 600px;
  margin: 0 auto;
}

/* Services Section */
.services {
  padding: var(--section-padding);
  background: var(--gradient-subtle);
}

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

.service-card {
  background: hsl(var(--card));
  border-radius: var(--radius);
  padding: 2rem;
  box-shadow: var(--shadow-card);
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

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

.service-card:hover .service-image {
  opacity: 0.55;
  transform: scale(1.05);
}

.service-image {
  position: absolute;
  top: 0;
  right: 0;
  width: 250px;
  height: 160px;
  border-radius: 0 var(--radius) 0 100%;
  overflow: hidden;
  opacity: 0.8;
  z-index: 0;
  display: block;
  pointer-events: none;
  transition: var(--transition);
}

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

.service-icon {
  width: 3rem;
  height: 3rem;
  background: var(--gradient-primary);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  color: hsl(var(--primary-foreground));
  margin-bottom: 1.5rem;
}

.service-title {
  color: hsl(var(--foreground));
  margin-bottom: 1rem;
}

.service-description {
  color: hsl(var(--muted-foreground));
  margin-bottom: 1.5rem;
}

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

.service-features li {
  position: relative;
  padding-left: 1.5rem;
  margin-bottom: 0.5rem;
  color: hsl(var(--muted-foreground));
}

.service-features li:before {
  content: "✓";
  position: absolute;
  left: 0;
  color: hsl(var(--primary));
  font-weight: bold;
}

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

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

/* Contact Form */
.contact-form-container {
  background: hsl(var(--card));
  padding: 2rem;
  border-radius: var(--radius);
  box-shadow: var(--shadow-card);
}

.form-title {
  margin-bottom: 1.5rem;
  color: hsl(var(--foreground));
}

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

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

.form-input,
.form-select,
.form-textarea {
  width: 100%;
  padding: 0.75rem;
  border: 1px solid hsl(var(--border));
  border-radius: var(--radius);
  font-size: 0.875rem;
  transition: var(--transition);
  background: hsl(var(--background));
}

.form-input:focus,
.form-select:focus,
.form-textarea:focus {
  outline: none;
  border-color: hsl(var(--primary));
  box-shadow: 0 0 0 3px hsl(var(--primary) / 0.1);
}

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

/* Contact Info */
.contact-info {
  background: hsl(var(--card));
  padding: 2rem;
  border-radius: var(--radius);
  box-shadow: var(--shadow-card);
}

.contact-info-title {
  margin-bottom: 1.5rem;
  color: hsl(var(--foreground));
}

.contact-item {
  display: flex;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.contact-icon {
  flex-shrink: 0;
  width: 2.5rem;
  height: 2.5rem;
  background: hsl(var(--accent));
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  color: hsl(var(--accent-foreground));
}

.contact-details {
  flex: 1;
}

.contact-label {
  font-weight: 500;
  color: hsl(var(--foreground));
  margin-bottom: 0.25rem;
}

.contact-value {
  color: hsl(var(--muted-foreground));
}

.business-info {
  margin-top: 2rem;
  padding-top: 2rem;
  border-top: 1px solid hsl(var(--border));
}

.business-info h4 {
  margin-bottom: 1rem;
  color: hsl(var(--foreground));
}

.business-details p {
  margin-bottom: 0.5rem;
  color: hsl(var(--muted-foreground));
}

@media (max-width: 768px) {
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

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

  .service-card {
    padding: 1.5rem;
  }

  .service-image {
    width: 180px;
    height: 120px;
  }

  .hero-stats {
    gap: 1rem;
  }

  .stat-card {
    padding: 1rem;
    min-width: 100px;
  }

  .hero-content {
    padding: 4rem 0;
  }

  .contact-form-container,
  .contact-info {
    padding: 1.5rem;
  }
}

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

.footer-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  padding: 3rem 0;
}

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

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

.footer-description {
  color: hsl(var(--muted-foreground));
}

.footer-title {
  font-weight: 600;
  color: hsl(var(--foreground));
}

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

.footer-links a,
.footer-info a {
  color: hsl(var(--muted-foreground));
  text-decoration: none;
  transition: var(--transition);
}

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

.footer-info li {
  color: hsl(var(--muted-foreground));
}

.footer-bottom {
  border-top: 1px solid hsl(var(--border));
  padding: 1.5rem 0;
}

.footer-bottom-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
}

.copyright {
  color: hsl(var(--muted-foreground));
  font-size: 0.875rem;
}

.footer-note {
  font-size: 0.75rem;
  color: hsl(var(--muted-foreground));
}

@media (max-width: 768px) {
  .footer-bottom-content {
    flex-direction: column;
    text-align: center;
  }
}

/* Extra Small Devices (320px - 480px) */
@media (max-width: 480px) {
  :root {
    --container-padding: 0.75rem;
  }

  .hero-title {
    font-size: 2rem !important;
    line-height: 1.2;
  }

  .hero-description {
    font-size: 1rem;
  }

  .hero-cta {
    flex-direction: column;
    gap: 0.75rem;
  }

  .btn {
    padding: 0.625rem 1.25rem;
    font-size: 0.8rem;
  }

  .service-image {
    width: 150px;
    height: 100px;
  }

  .services-grid {
    gap: 1rem;
  }

  .service-card {
    padding: 1.25rem;
  }

  .contact-form-container,
  .contact-info {
    padding: 1.25rem;
  }

  .form-input,
  .form-select,
  .form-textarea {
    padding: 0.625rem;
    font-size: 0.8rem;
  }

  .section-title {
    font-size: 2rem;
  }

  .section-description {
    font-size: 1rem;
  }

  .stat-card {
    padding: 0.75rem;
    min-width: 80px;
  }

  .stat-number {
    font-size: 1.5rem;
  }

  .stat-label {
    font-size: 0.75rem;
  }

  .anpc-logo {
    max-width: 100%;
    height: auto;
  }
}

/* Animations */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

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

/* Utility Classes */
.text-center {
  text-align: center;
}
.hidden {
  display: none;
}
.block {
  display: block;
}

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

::-webkit-scrollbar-track {
  background: hsl(var(--muted));
}

::-webkit-scrollbar-thumb {
  background: hsl(var(--primary));
  border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
  background: hsl(var(--primary-glow));
}
