:root {
  --bg-primary: #ffffff;
  --bg-secondary: #f9fafb;
  --accent-color: #ff6b00;
  --accent-gradient: linear-gradient(135deg, #ff6b00 0%, #ff8c00 100%);
  --text-main: #111827;
  --text-muted: #4b5563;
  --glass-bg: rgba(255, 255, 255, 0.85);
  --glass-border: rgba(0, 0, 0, 0.08);
  --glass-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

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

body {
  font-family: 'Outfit', sans-serif;
  background-color: var(--bg-primary);
  color: var(--text-main);
  line-height: 1.6;
  overflow-x: hidden;
}

/* Scrollbar Customization */
::-webkit-scrollbar {
  width: 8px;
}
::-webkit-scrollbar-track {
  background: var(--bg-primary);
}
::-webkit-scrollbar-thumb {
  background: #e5e7eb;
  border-radius: 4px;
}
::-webkit-scrollbar-thumb:hover {
  background: var(--accent-color);
}

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

/* Header */
.main-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  background: #ffffff;
  border-bottom: 1px solid var(--glass-border);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.03);
  z-index: 1000;
  transition: var(--transition);
}

nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 80px;
}

.logo {
  font-size: 1.8rem;
  font-weight: 800;
  color: var(--text-main);
  display: flex;
  align-items: center;
  gap: 0.2rem;
  letter-spacing: -0.5px;
}

.logo span {
  color: var(--accent-color);
}

.nav-links {
  display: flex;
  gap: 2.5rem;
  list-style: none;
}

.nav-links a {
  color: var(--text-muted);
  text-decoration: none;
  font-size: 1rem;
  font-weight: 500;
  transition: var(--transition);
  position: relative;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--accent-gradient);
  transition: var(--transition);
}

.nav-links a:hover::after {
  width: 100%;
}

.nav-links a:hover {
  color: var(--text-main);
}

.btn-cta {
  background: var(--accent-gradient);
  color: white;
  border: none;
  padding: 0.8rem 1.8rem;
  border-radius: 8px;
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition);
  box-shadow: 0 4px 15px rgba(255, 107, 0, 0.2);
  text-decoration: none;
  display: inline-block;
  text-align: center;
}

.btn-cta:hover {
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(255, 107, 0, 0.4);
}

/* Hero Section */
.hero {
  padding: 200px 0 120px 0;
  text-align: center;
  position: relative;
  background: radial-gradient(circle at 50% 120%, rgba(255, 107, 0, 0.08), transparent 60%);
}

.hero-badge {
  background: rgba(255, 107, 0, 0.08);
  border: 1px solid rgba(255, 107, 0, 0.2);
  padding: 0.5rem 1.2rem;
  border-radius: 50px;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--accent-color);
  display: inline-block;
  margin-bottom: 2rem;
}

.hero h1 {
  font-size: 4rem;
  font-weight: 800;
  line-height: 1.15;
  margin-bottom: 1.5rem;
  letter-spacing: -1.5px;
  color: var(--text-main);
}

.hero h1 span {
  color: var(--accent-color);
  background: none;
  -webkit-text-fill-color: initial;
}

.hero p {
  font-size: 1.25rem;
  color: var(--text-muted);
  max-width: 800px;
  margin: 0 auto 3rem auto;
}

.hero-actions {
  display: flex;
  justify-content: center;
  gap: 1.5rem;
}

.btn-secondary {
  background: transparent;
  color: var(--text-main);
  border: 1px solid #d1d5db;
  padding: 0.8rem 1.8rem;
  border-radius: 8px;
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition);
  text-decoration: none;
  display: inline-block;
}

.btn-secondary:hover {
  background: #f3f4f6;
  border-color: #9ca3af;
}

/* Features/Services Section */
.services {
  padding: 100px 0;
  background: var(--bg-secondary);
  border-top: 1px solid var(--glass-border);
  border-bottom: 1px solid var(--glass-border);
}

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

.section-header h2 {
  font-size: 2.5rem;
  font-weight: 800;
  margin-bottom: 1rem;
  letter-spacing: -0.5px;
}

.section-header p {
  color: var(--text-muted);
  max-width: 600px;
  margin: 0 auto;
}

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

.card {
  background: #ffffff;
  border: 1px solid var(--glass-border);
  border-radius: 12px;
  padding: 2.5rem;
  box-shadow: var(--glass-shadow);
  transition: var(--transition);
  position: relative;
}

.card:hover {
  transform: translateY(-4px);
  border-color: rgba(255, 107, 0, 0.2);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.08);
}

.card-icon {
  font-size: 2.2rem;
  margin-bottom: 1.5rem;
  display: inline-block;
  padding: 0.5rem;
  background: rgba(255, 107, 0, 0.05);
  border-radius: 8px;
}

.card h3 {
  font-size: 1.4rem;
  font-weight: 700;
  margin-bottom: 1rem;
}

.card p {
  color: var(--text-muted);
  font-size: 0.95rem;
  line-height: 1.6;
}

/* Processes Infographics Section */
.processes {
  padding: 100px 0;
  background: #ffffff;
  border-bottom: 1px solid var(--glass-border);
}

.map-container {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 3rem;
  align-items: start;
}

.map-steps {
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
}

.step-btn {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  padding: 1.5rem;
  background: #f9fafb;
  border: 1px solid var(--glass-border);
  border-left: 4px solid #d1d5db;
  border-radius: 8px;
  cursor: pointer;
  transition: var(--transition);
}

.step-btn:hover {
  background: #f3f4f6;
  border-left-color: var(--accent-color);
  transform: translateX(5px);
}

.step-btn.active {
  background: rgba(255, 107, 0, 0.05);
  border-left-color: var(--accent-color);
  border-color: rgba(255, 107, 0, 0.15);
}

.step-num {
  font-size: 1.8rem;
  font-weight: 800;
  color: var(--accent-color);
}

.step-text h4 {
  font-size: 1.15rem;
  font-weight: 700;
  margin-bottom: 0.2rem;
}

.step-text p {
  font-size: 0.88rem;
  color: var(--text-muted);
}

.map-details {
  background: #f9fafb;
  border: 1px solid var(--glass-border);
  border-radius: 16px;
  padding: 3rem;
  min-height: 420px;
  box-shadow: var(--glass-shadow);
  position: relative;
}

.details-card {
  display: none;
  animation: fadeIn 0.4s ease-in-out forwards;
}

.details-card.active {
  display: block;
}

@keyframes fadeIn {
  from { opacity: 0; transform: translateY(10px); }
  to { opacity: 1; transform: translateY(0); }
}

.details-card h3 {
  font-size: 1.8rem;
  font-weight: 800;
  margin-bottom: 1.2rem;
  color: var(--text-main);
  border-bottom: 2px solid rgba(255, 107, 0, 0.2);
  padding-bottom: 0.5rem;
  display: inline-block;
}

.details-desc {
  font-size: 1.1rem;
  color: var(--text-muted);
  margin-bottom: 2rem;
}

.detail-bullets {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.bullet-item strong {
  display: block;
  font-size: 0.95rem;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--accent-color);
  margin-bottom: 0.4rem;
  letter-spacing: 0.5px;
}

.bullet-item p {
  font-size: 0.98rem;
  color: var(--text-main);
}

/* Contact Form Section */
.contact {
  padding: 100px 0;
  background: var(--bg-secondary);
}

.contact-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.contact-info h2 {
  font-size: 2.5rem;
  font-weight: 800;
  margin-bottom: 1.5rem;
  letter-spacing: -0.5px;
}

.contact-info p {
  color: var(--text-muted);
  margin-bottom: 2.5rem;
}

.info-item {
  display: flex;
  align-items: center;
  gap: 1.2rem;
  margin-bottom: 1.8rem;
}

.info-icon {
  width: 48px;
  height: 48px;
  background: rgba(255, 107, 0, 0.08);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent-color);
  font-size: 1.2rem;
}

.contact-form {
  background: #ffffff;
  border: 1px solid var(--glass-border);
  border-radius: 16px;
  padding: 3rem;
  box-shadow: var(--glass-shadow);
}

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

.form-group label {
  display: block;
  font-size: 0.88rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
  color: var(--text-main);
}

.form-group input,
.form-group textarea {
  width: 100%;
  background: #f9fafb;
  border: 1px solid #d1d5db;
  border-radius: 6px;
  padding: 0.8rem 1rem;
  color: var(--text-main);
  font-family: inherit;
  transition: var(--transition);
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--accent-color);
  background: #ffffff;
  box-shadow: 0 0 0 3px rgba(255, 107, 0, 0.15);
}

/* Footer */
footer {
  background: #111827;
  color: #f3f4f6;
  padding: 4rem 0 2rem 0;
  text-align: center;
}

footer .logo {
  color: #ffffff;
  justify-content: center;
}

.footer-nav {
  display: flex;
  justify-content: center;
  gap: 2rem;
  margin: 2rem 0;
  list-style: none;
}

.footer-nav a {
  color: #9ca3af;
  text-decoration: none;
  transition: var(--transition);
  font-size: 0.9rem;
}

.footer-nav a:hover {
  color: #ffffff;
}

.copyright {
  color: #6b7280;
  font-size: 0.85rem;
}

/* Cookies Consent Banner */
#cookie-banner {
  position: fixed;
  bottom: 24px;
  right: 24px;
  max-width: 400px;
  background: #ffffff;
  border: 1px solid #e5e7eb;
  color: var(--text-main);
  padding: 1.8rem;
  border-radius: 12px;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
  z-index: 10000;
  display: none;
  border-left: 4px solid var(--accent-color);
}

#cookie-banner h3 {
  font-size: 1.15rem;
  font-weight: 700;
  margin-bottom: 0.6rem;
}

#cookie-banner p {
  font-size: 0.88rem;
  color: var(--text-muted);
  margin-bottom: 1.2rem;
  line-height: 1.5;
}

#cookie-banner .btn-cta {
  width: 100%;
  padding: 0.7rem;
  font-size: 0.9rem;
}

/* Floating Background Blobs */
.bg-blobs {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  overflow: hidden;
  z-index: -1;
  pointer-events: none;
}
.blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(100px);
  opacity: 0.06;
  animation: float-blob 20s infinite alternate;
}
.blob-1 {
  top: 15%;
  left: 5%;
  width: 350px;
  height: 350px;
  background: var(--accent-color);
}
.blob-2 {
  top: 50%;
  right: 5%;
  width: 450px;
  height: 450px;
  background: #ff8c00;
  animation-delay: -5s;
}

@keyframes float-blob {
  0% { transform: translateY(0px) scale(1); }
  100% { transform: translateY(40px) scale(1.15); }
}

/* Stats Section inside Hero */
.hero-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  max-width: 850px;
  margin: 5rem auto 0 auto;
  border-top: 1px solid var(--glass-border);
  padding-top: 3.5rem;
}
.stat-item h3 {
  font-size: 2.8rem;
  font-weight: 800;
  color: var(--accent-color);
  margin-bottom: 0.3rem;
  letter-spacing: -1px;
}
.stat-item p {
  font-size: 0.95rem !important;
  color: var(--text-muted);
  margin: 0 !important;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

/* FAQ Section */
.faq {
  padding: 100px 0;
  background: var(--bg-secondary);
  border-top: 1px solid var(--glass-border);
  border-bottom: 1px solid var(--glass-border);
}
.faq-grid {
  max-width: 800px;
  margin: 4rem auto 0 auto;
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
}
.faq-item {
  background: #ffffff;
  border: 1px solid var(--glass-border);
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 10px rgba(0,0,0,0.01);
  transition: var(--transition);
}
.faq-item:hover {
  border-color: rgba(255, 107, 0, 0.2);
  box-shadow: 0 10px 25px rgba(0,0,0,0.02);
}
.faq-question {
  padding: 1.5rem 2rem;
  font-weight: 700;
  font-size: 1.1rem;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  user-select: none;
  transition: var(--transition);
}
.faq-question:hover {
  color: var(--accent-color);
}
.faq-question::after {
  content: '+';
  font-size: 1.4rem;
  transition: transform 0.3s ease;
}
.faq-item.active .faq-question::after {
  content: '−';
}
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease-out, padding 0.3s ease;
  padding: 0 2rem;
  color: var(--text-muted);
  font-size: 0.98rem;
  line-height: 1.6;
}
.faq-item.active .faq-answer {
  padding: 0 2rem 1.5rem 2rem;
  max-height: 300px;
  border-top: 1px dashed var(--glass-border);
  padding-top: 1.2rem;
}

/* Featured Blog Section */
.featured-blog {
  padding: 100px 0;
  background: #ffffff;
}
.featured-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-top: 4rem;
}
.blog-card {
  background: #ffffff;
  border: 1px solid var(--glass-border);
  border-radius: 12px;
  overflow: hidden;
  box-shadow: var(--glass-shadow);
  transition: var(--transition);
  display: flex;
  flex-direction: column;
}
.blog-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.08);
  border-color: rgba(255, 107, 0, 0.2);
}
.blog-card-content {
  padding: 2rem;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}
.blog-card-meta {
  font-size: 0.82rem;
  color: var(--accent-color);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 0.8rem;
}
.blog-card h3 {
  font-size: 1.3rem;
  font-weight: 700;
  line-height: 1.35;
  margin-bottom: 1rem;
  color: var(--text-main);
}
.blog-card p {
  font-size: 0.92rem;
  color: var(--text-muted);
  line-height: 1.6;
  margin-bottom: 1.5rem;
  flex-grow: 1;
}
.blog-card-link {
  font-weight: 600;
  color: var(--text-main);
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  transition: var(--transition);
  font-size: 0.9rem;
}
.blog-card-link:hover {
  color: var(--accent-color);
}

/* Responsive Extra */
@media (max-width: 992px) {
  .featured-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* Responsive */
@media (max-width: 768px) {
  .featured-grid {
    grid-template-columns: 1fr;
  }
  .hero-stats {
    grid-template-columns: 1fr;
    gap: 1.8rem;
    margin-top: 3rem;
  }
  .stat-item h3 {
    font-size: 2.4rem;
  }
  .nav-links {
    display: none;
  }
  .hero h1 {
    font-size: 2.8rem;
  }
  .map-container {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  .map-details {
    min-height: auto;
    padding: 2rem;
  }
  .contact-wrapper {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
  .contact-form {
    padding: 2rem;
  }
  #cookie-banner {
    left: 20px;
    right: 20px;
    max-width: none;
  }
}
