/* ======================================
   Bornedecharge.lu - Main Stylesheet
   ====================================== */

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

:root {
  --primary: #2563eb;
  --primary-dark: #1d4ed8;
  --secondary: #10b981;
  --background: #ffffff;
  --foreground: #111827;
  --gray-50: #f9fafb;
  --gray-100: #f3f4f6;
  --gray-200: #e5e7eb;
  --gray-300: #d1d5db;
  --gray-600: #4b5563;
  --gray-700: #374151;
  --gray-800: #1f2937;
  --gray-900: #111827;
  --gray-400: #9ca3af;
  --gray-500: #6b7280;

}

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  line-height: 1.6;
  color: var(--foreground);
  background: var(--background);
  overflow-x: hidden;
}

.container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 1rem;
}

@media (min-width: 640px) {
  .container { padding: 0 1.5rem; }
}

@media (min-width: 1024px) {
  .container { padding: 0 2rem; }
}

/* Header Styles */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  transition: all 0.3s ease;
}

.header.transparent {
  background: transparent;
}

.header.scrolled {
  background: white;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}

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

.header-logo {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  cursor: pointer;
}

.logo-icon {
  width: 40px;
  height: 40px;
  background: linear-gradient(135deg, #2563eb, #10b981);
  border-radius: 0.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
}

.header-logo-text {
  font-size: 1.25rem;
  font-weight: 700;
  transition: color 0.3s;
  cursor: pointer;
}

.header.transparent .header-logo-text {
  color: white;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.header.scrolled .header-logo-text {
  color: var(--gray-900);
}

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

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

.nav-link {
  font-size: 0.875rem;
  font-weight: 500;
  text-decoration: none;
  transition: color 0.2s;
}

.header.transparent .nav-link {
  color: white;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.header.scrolled .nav-link {
  color: var(--gray-700);
}

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

.header-actions {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

/* Language Switcher */
.lang-switcher-desktop {
  display: none;
  gap: 0.25rem;
  padding: 0.25rem;
  border-radius: 0.5rem;
  transition: background 0.3s;
}

@media (min-width: 768px) {
  .lang-switcher-desktop { display: flex; }
}

.header.transparent .lang-switcher-desktop {
  background: rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(8px);
}

.header.scrolled .lang-switcher-desktop {
  background: var(--gray-100);
}

.lang-btn {
  padding: 0.375rem 0.75rem;
  font-size: 0.75rem;
  font-weight: 500;
  border: none;
  background: transparent;
  border-radius: 0.375rem;
  cursor: pointer;
  transition: all 0.3s;
}

.header.transparent .lang-btn {
  color: rgba(255, 255, 255, 0.8);
}

.header.scrolled .lang-btn {
  color: var(--gray-600);
}

.header.transparent .lang-btn.active {
  background: rgba(255, 255, 255, 0.3);
  color: white;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
}

.header.scrolled .lang-btn.active {
  background: white;
  color: var(--primary);
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);
}

.lang-btn:hover {
  opacity: 1;
}

/* Mobile Language Button */
.mobile-lang-btn {
  display: block;
  padding: 0.5rem 0.75rem;
  font-size: 0.875rem;
  font-weight: 600;
  border: none;
  border-radius: 0.5rem;
  cursor: pointer;
  transition: all 0.3s;
}

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

.header.transparent .mobile-lang-btn {
  background: rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(8px);
  color: white;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.header.scrolled .mobile-lang-btn {
  background: var(--gray-100);
  color: var(--gray-900);
}

/* Mobile Menu Button */
.mobile-menu-btn {
  display: block;
  padding: 0.5rem;
  border: none;
  background: transparent;
  cursor: pointer;
  transition: all 0.3s;
}

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

.header.transparent .mobile-menu-btn {
  color: white;
  filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.3));
}

.header.scrolled .mobile-menu-btn {
  color: var(--gray-700);
}

.mobile-menu-btn.open svg path:nth-child(2) {
  display: none;
}

/* Mobile Backdrop */
.mobile-backdrop {
  display: none;
  position: fixed;
  top: 80px;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.2);
  z-index: 40;
  opacity: 0;
  transition: opacity 0.3s;
}

.mobile-backdrop.active {
  display: block;
  opacity: 1;
}

/* Mobile Menus */
.mobile-menu {
  display: none;
  position: relative;
  z-index: 50;
  background: white;
  border-top: 1px solid var(--gray-200);
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
}

.mobile-menu.active {
  display: block;
  max-height: 500px;
}

@media (min-width: 1024px) {
  .mobile-menu { display: none !important; }
}

.mobile-menu-content {
  padding: 1rem;
}

.mobile-menu-label {
  display: block;
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--gray-700);
  margin-bottom: 0.75rem;
}

.mobile-lang-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.75rem;
}

.mobile-lang-option {
  padding: 0.75rem 1rem;
  border: none;
  border-radius: 0.5rem;
  font-weight: 500;
  font-size: 0.875rem;
  cursor: pointer;
  background: var(--gray-100);
  color: var(--gray-700);
  transition: all 0.2s;
  text-align: center;
}

.mobile-lang-option:hover {
  background: var(--gray-200);
}

.mobile-lang-option.active {
  background: var(--primary);
  color: white;
  box-shadow: 0 2px 4px rgba(37, 99, 235, 0.3);
}

.mobile-lang-option div:first-child {
  font-weight: 700;
  font-size: 1rem;
  margin-bottom: 0.25rem;
}

.lang-full {
  font-size: 0.75rem;
  opacity: 0.9;
}

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

.mobile-nav-link {
  padding: 0.75rem 1rem;
  font-size: 1rem;
  font-weight: 500;
  color: var(--gray-700);
  text-decoration: none;
  border-radius: 0.5rem;
  transition: all 0.2s;
}

.mobile-nav-link:hover {
  color: var(--primary);
  background: var(--gray-50);
}

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

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

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

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, rgba(17, 24, 39, 0.95), rgba(17, 24, 39, 0.85), rgba(17, 24, 39, 0.7));
}

.hero-content {
  position: relative;
  z-index: 10;
  padding: 8rem 0;
}

.hero-text {
  max-width: 48rem;
}

.hero h1 {
  font-size: 2.5rem;
  font-weight: 700;
  color: white;
  line-height: 1.2;
  margin-bottom: 1.5rem;
}

@media (min-width: 640px) {
  .hero h1 { font-size: 3rem; }
}

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

.hero p {
  font-size: 1.25rem;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 2.5rem;
}

@media (min-width: 640px) {
  .hero p { font-size: 1.5rem; }
}

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

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

.btn {
  padding: 1rem 2rem;
  font-size: 1rem;
  font-weight: 600;
  border: none;
  border-radius: 0.5rem;
  cursor: pointer;
  transition: all 0.3s;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
}

.btn-primary {
  background: var(--primary);
  color: white;
  box-shadow: 0 4px 6px rgba(37, 99, 235, 0.3);
}

.btn-primary:hover {
  background: var(--primary-dark);
  transform: translateY(-1px);
  box-shadow: 0 6px 8px rgba(37, 99, 235, 0.4);
}

.btn-secondary {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(8px);
  color: white;
  border: 2px solid rgba(255, 255, 255, 0.3);
}

.btn-secondary:hover {
  background: rgba(255, 255, 255, 0.2);
}

.hero-counters {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  margin-top: 3rem;
}

.counter {
  color: white;
}

.counter-value {
  font-size: 1.875rem;
  font-weight: 700;
  color: var(--secondary);
}

.counter-label {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.8);
}

.scroll-indicator {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 10;
  animation: bounce 2s infinite;
}

@keyframes bounce {
  0%, 20%, 50%, 80%, 100% { transform: translateX(-50%) translateY(0); }
  40% { transform: translateX(-50%) translateY(-10px); }
  60% { transform: translateX(-50%) translateY(-5px); }
}

.scroll-dot {
  width: 24px;
  height: 40px;
  border: 2px solid rgba(255, 255, 255, 0.5);
  border-radius: 20px;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  padding: 8px;
}

.scroll-dot::before {
  content: '';
  width: 6px;
  height: 12px;
  background: rgba(255, 255, 255, 0.7);
  border-radius: 3px;
}

/* Section Styles */
.section {
  padding: 5rem 0;
}

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

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

@media (min-width: 640px) {
  .section-header h2 { font-size: 2.5rem; }
}

@media (min-width: 1024px) {
  .section-header h2 { font-size: 3rem; }
}

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

/* Services Section */
.services {
  background: var(--gray-50);
}

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

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

.service-card {
  background: white;
  border-radius: 1rem;
  overflow: hidden;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  transition: all 0.5s;
}

.service-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 20px rgba(0, 0, 0, 0.15);
}

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

.service-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s;
}

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

.service-icon {
  position: absolute;
  top: 1rem;
  right: 1rem;
  width: 3.5rem;
  height: 3.5rem;
  border-radius: 0.75rem;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.2);
}

.service-icon.blue {
  background: linear-gradient(135deg, #2563eb, #3b82f6);
}

.service-icon.green {
  background: linear-gradient(135deg, #10b981, #34d399);
}

.service-icon.purple {
  background: linear-gradient(135deg, #8b5cf6, #a78bfa);
}

.service-icon.orange {
  background: linear-gradient(135deg, #f59e0b, #fbbf24);
}

.service-content {
  padding: 1.5rem;
}

.service-content h3 {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--gray-900);
  margin-bottom: 0.75rem;
}

.service-content p {
  color: var(--gray-600);
  line-height: 1.6;
}

/* Benefits Section */
.benefits {
  background: white;
}

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

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

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

.benefit-card {
  text-align: center;
  padding: 2rem;
  background: var(--gray-50);
  border-radius: 1rem;
  transition: all 0.3s;
}

.benefit-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 20px rgba(0, 0, 0, 0.1);
}

.benefit-icon {
  width: 4rem;
  height: 4rem;
  margin: 0 auto 1.5rem;
  border-radius: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.3s;
}

.benefit-card:hover .benefit-icon {
  transform: scale(1.1);
}

.benefit-icon.blue {
  background: linear-gradient(135deg, #dbeafe, #bfdbfe);
  color: var(--primary);
}

.benefit-icon.green {
  background: linear-gradient(135deg, #d1fae5, #a7f3d0);
  color: var(--secondary);
}

.benefit-icon.yellow {
  background: linear-gradient(135deg, #fef3c7, #fde68a);
  color: #f59e0b;
}

.benefit-icon.purple {
  background: linear-gradient(135deg, #e9d5ff, #d8b4fe);
  color: #8b5cf6;
}

.benefit-card h3 {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--gray-900);
  margin-bottom: 0.75rem;
}

.benefit-card p {
  color: var(--gray-600);
}

/* Process Section */
/* Process Section */
.process {
  background: var(--gray-50);
}

/* Line + wrapper to match Version 01 */
.process-wrapper {
  position: relative;
  margin-top: 1rem;
  margin-bottom: 3rem;
}

.process-line {
  display: none;
}

@media (min-width: 1024px) {
  .process-line {
    display: block;
    position: absolute;
    top: 5.8rem;          /* line passes behind icons */
    left: 2%;
    right: 2%;
    height: 4px;
    background: linear-gradient(to right, #3b82f6, #10b981, #6366f1, #f59e0b, #8b5cf6);
    opacity: 0.2;
    border-radius: 999px;
  }

  .process-grid {
    position: relative;
    z-index: 1;           /* icons above the line */
  }
}

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

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

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

.process-step {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.step-icon-wrapper {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-bottom: 1.5rem;
}

.step-icon {
  width: 5rem;
  height: 5rem;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.15);
  position: relative;
  z-index: 10;
}

.step-icon.blue { background: #3b82f6; }
.step-icon.green { background: #10b981; }
.step-icon.indigo { background: #6366f1; }
.step-icon.orange { background: #f59e0b; }
.step-icon.purple { background: #8b5cf6; }

.step-number {
  position: absolute;
  bottom: -0.5rem;
  right: -0.5rem;
  width: 2rem;
  height: 2rem;
  background: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 0.875rem;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
  z-index: 11;
}

.step-number.blue { color: #3b82f6; }
.step-number.green { color: #10b981; }
.step-number.indigo { color: #6366f1; }
.step-number.orange { color: #f59e0b; }
.step-number.purple { color: #8b5cf6; }

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

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

.step-bullets {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  text-align: left;
}

.step-bullets li::before {
    content: "";
}




/* each bullet line */
.process-bullet {
    display: flex;
    align-items: flex-start;
    gap: 0.5rem;
    color: var(--gray-700);
    font-size: 0.875rem;
    line-height: 1.5;
}


/* small green dot like Version 01 */
.bullet-dot {
    width: 0.4rem;
    height: 0.4rem;
    background: #10b981; /* green dot */
    border-radius: 50%;
    flex-shrink: 0;
    margin-top: 0.45rem;
    display: inline-block;
}


/* text part */
.process-bullet span:last-child {
  flex: 1;
}

/* Testimonials Section */
.testimonials {
  background: white;
}

.testimonials-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  margin-bottom: 4rem;
}

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


















.testimonial-card {
  position: relative;
  background: var(--gray-50);
  border-radius: 1rem;
  padding: 2rem;
  transition: all 0.3s;
}

.testimonial-card:hover {
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
}





.testimonial-quote {
    position: absolute;
    top: 1rem;
    right: 1rem;
    pointer-events: none;
}

.testimonial-quote-icon {
    width: 40px;
    height: 40px;
    color: rgba(37, 99, 235, 0.25); /* exact light blue tone from V1 */
}


.testimonial-stars {
  color: #fbbf24;
  font-size: 1.25rem;
  margin-bottom: 1rem;
}

.testimonial-text {
  color: var(--gray-700);
  font-style: italic;
  margin-bottom: 1.5rem;
  line-height: 1.6;
}

.testimonial-author strong {
  display: block;
  font-weight: 700;
  color: var(--gray-900);
  margin-bottom: 0.25rem;
}

.testimonial-author span {
  font-size: 0.875rem;
  color: var(--gray-600);
}

.cases-title {
  text-align: center;
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--gray-900);
  margin: 4rem 0 3rem;
}


























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

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

.case-card {
  position: relative;
  border-radius: 1rem;
  overflow: hidden;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  transition: all 0.5s;
}

.case-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 20px rgba(0, 0, 0, 0.15);
}

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

.case-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s;
}

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

.case-content {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 1.5rem;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.8), rgba(0, 0, 0, 0.4), transparent);
  color: white;
}

.case-content h4 {
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.case-content p {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.9);
}

/* FAQ Section */
.faq {
  background: var(--gray-50);
}

.faq-list {
  max-width: 56rem;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.faq-item {
  background: white;
  border-radius: 0.75rem;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  transition: all 0.3s;
}

.faq-item:hover {
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.15);
}

.faq-question {
  width: 100%;
  padding: 1.25rem 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  background: transparent;
  border: none;
  text-align: left;
  cursor: pointer;
  font-weight: 600;
  color: var(--gray-900);
  transition: all 0.2s;
}

.faq-question:hover {
  color: var(--primary);
}

.faq-icon {
  flex-shrink: 0;
  font-size: 1.5rem;
  font-weight: 300;
  color: var(--primary);
  transition: transform 0.3s;
}

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

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

.faq-answer p {
  padding: 0 1.5rem 1.25rem;
  color: var(--gray-600);
  line-height: 1.6;
}

/* Contact Section */
.contact {
  background: white;
}

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

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

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

.contact-cards {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.contact-card {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 1rem;
  background: var(--gray-50);
  border-radius: 0.75rem;
}

.contact-icon {
  flex-shrink: 0;
  width: 3rem;
  height: 3rem;
  border-radius: 0.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

.contact-icon.blue {
  background: #dbeafe;
  color: var(--primary);
}

.contact-icon.green {
  background: #d1fae5;
  color: var(--secondary);
}

.contact-icon.purple {
  background: #e9d5ff;
  color: #8b5cf6;
}

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

.contact-link {
  color: var(--primary);
  text-decoration: none;
  font-weight: 500;
}

.contact-link:hover {
  text-decoration: underline;
}

.contact-text {
  color: var(--gray-600);
}

/* Quote Form */
.quote-form {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

/* Status message styles */
.form-status {
  margin-top: 12px;
  font-size: 0.95rem;
  line-height: 1.4;
  color: #333; /* default text color */
}

.form-status-success {
    color: #16a34a !important; /* Tailwind green-600 */
    font-weight: 500;
}

.form-status-error {
    color: #dc2626 !important; /* Tailwind red-600 */
    font-weight: 500;
}



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

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

.form-group label {
  display: block;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--gray-900);
  margin-bottom: 0.5rem;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 0.75rem 1rem;
  border: 1px solid var(--gray-300);
  border-radius: 0.5rem;
  font-family: inherit;
  font-size: 1rem;
  transition: all 0.2s;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.1);
}

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

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

.file-preview {
  position: relative;
  border-radius: 0.5rem;
  overflow: hidden;
  border: 2px solid var(--gray-300);
}

.file-preview img {
  width: 100%;
  height: 8rem;
  object-fit: cover;
}

.remove-file {
  position: absolute;
  top: 0.5rem;
  right: 0.5rem;
  width: 2rem;
  height: 2rem;
  background: #ef4444;
  color: white;
  border: none;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  opacity: 0;
  transition: opacity 0.2s;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.file-preview:hover .remove-file {
  opacity: 1;
}

.file-success {
  position: absolute;
  top: 0.5rem;
  left: 0.5rem;
  width: 2rem;
  height: 2rem;
  background: var(--secondary);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.upload-button {
  margin-top: 1rem;
}

.upload-label {
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px dashed var(--gray-300);
  border-radius: 0.5rem;
  padding: 2rem;
  cursor: pointer;
  transition: all 0.3s ease;
  background: var(--gray-50);
}

.upload-label-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start; /* ICON AT TOP */
  gap: 0.25rem;
}


.upload-label:hover {
  border-color: var(--primary);
  background: rgba(37, 99, 235, 0.05);
}

.upload-label svg {
  color: var(--gray-400);
  margin-bottom: 0.75rem;
  width: 28px;
  height: 28px;
}

.upload-text {
  font-size: 0.875rem;
  font-weight: 400 !important;   /* Remove bold */
  color: var(--gray-600);
}

.upload-subtext {
  font-size: 0.75rem;
  font-weight: 400 !important;   /* Remove bold */
  color: var(--gray-500);
}

.btn-submit {
  width: 100%;
  padding: 1rem 2rem;
  background: var(--primary);
  color: white;
  font-weight: 600;
  border: none;
  border-radius: 0.5rem;
  cursor: pointer;
  transition: all 0.3s;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  box-shadow: 0 4px 6px rgba(37, 99, 235, 0.3);
}

.btn-submit:hover:not(:disabled) {
  background: var(--primary-dark);
  transform: translateY(-1px);
  box-shadow: 0 6px 8px rgba(37, 99, 235, 0.4);
}

.btn-submit:disabled {
  opacity: 0.6;
  cursor: not-allowed;
}

.spinner {
  width: 1.25rem;
  height: 1.25rem;
  border: 2px solid white;
  border-top-color: transparent;
  border-radius: 50%;
  animation: spin 0.6s linear infinite;
}

@keyframes spin {
  to { transform: rotate(360deg); }
}



/* ============================
   FOOTER — VERSION 1 STYLE (FINAL)
   ============================ */

.footer {
  background: #0f172a; /* deep navy */
  color: #94a3b8;      /* soft gray */
  padding: 3.5rem 0 2rem;
}

/* Layout */
.footer-content {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
  margin-bottom: 3rem;
}

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

@media (min-width: 1024px) {
  .footer-content {
    grid-template-columns: 2fr 1fr 1fr;
    column-gap: 4rem;
  }
}

/* Main left block */
.footer-main {
  max-width: 30rem;
}

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

.footer-logo span {
  font-size: 1.35rem;
  font-weight: 700;
  color: #ffffff;
}

.footer-main p {
  color: #cbd5e1;
  margin-bottom: 1.75rem;
  line-height: 1.6;
}

/* CONTACT LIST (identical to Version 1) */
.footer-contacts {
  display: flex;
  flex-direction: column;
  gap: 0.75rem; /* perfect spacing like V1 */
}

/* PERFECT ICON + TEXT ALIGNMENT LIKE VERSION 1 */
.footer-contacts a {
  display: inline-flex;
  align-items: center;     /* forces center vertical alignment */
  gap: 0.85rem;
  font-size: 1rem;
  color: #cbd5e1;
  text-decoration: none;
  line-height: 1.35;
  transition: color 0.2s ease;
}

/* ICONS — exact alignment */
.footer-contacts a svg {
  width: 18px;
  height: 18px;
  stroke-width: 1.8;
  flex-shrink: 0;
  display: inline-block;    /* critical for baseline alignment */
  transform: translateY(0px);  /* reset previous offset */
  vertical-align: middle;      /* PERFECT LEVELING */
  opacity: 0.9;
}

/* ICON COLORS — EXACT Version 1 */
.footer-contacts a:nth-child(1) svg { stroke: #60A5FA; } /* Email: Blue  */
.footer-contacts a:nth-child(2) svg { stroke: #22C55E; } /* Phone: Green */
.footer-contacts a:nth-child(3) svg { stroke: #FB923C; } /* Location: Orange */

.footer-contacts a:hover {
  color: #ffffff;
  opacity: 1;
}

/* Right columns */
.footer-col h4 {
  color: #ffffff;
  font-weight: 700;
  margin-bottom: 1rem;
  font-size: 1rem;
}

.footer-col a {
  display: block;
  color: #cbd5e1;
  text-decoration: none;
  margin-bottom: 0.65rem;
  transition: color 0.2s ease;
}

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

/* Bottom bar */
.footer-bottom {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  align-items: center;
  justify-content: space-between;
  padding-top: 2rem;
  border-top: 1px solid #1e293b;
  font-size: 0.9rem;
  color: #94a3b8;
}

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

/* VAT */
.footer-bottom div:last-child {
  opacity: 0.9;
}



/* WhatsApp Button */
.whatsapp-btn {
  position: fixed;
  bottom: 1.5rem;
  right: 1.5rem;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 4rem;
  height: 4rem;
  background: #25d366;
  color: white;
  border-radius: 50%;
  text-decoration: none;
  box-shadow: 0 4px 12px rgba(37, 211, 102, 0.4);
  cursor: pointer;
}

/* Pulses */
.whatsapp-pulse,
.whatsapp-pulse-2 {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  background: #25d366;
  opacity: 0.7;
  animation: whatsapp-pulse 0.85s ease-out infinite; /* VERSION 1 timing */
  z-index: -1;
}

/* Second pulse 
.whatsapp-pulse-2 {
  animation-delay: 0.75s; 
}*/

/* Icon always on top */
.whatsapp-btn svg {
  z-index: 2;
  position: relative;
}

@keyframes whatsapp-pulse {
  0% {
    transform: scale(1);
    opacity: 0.8;
  }
  100% {
    transform: scale(1.8); /* VERSION 1 scale */
    opacity: 0;
  }
}

.whatsapp-tooltip {
  position: absolute;
  right: 5rem;
  top: 50%;
  transform: translateY(-50%);
  background: var(--gray-900);
  color: white;
  padding: 0.5rem 1rem;
  border-radius: 0.5rem;
  font-size: 0.875rem;
  font-weight: 500;
  white-space: nowrap;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.2);
}

.whatsapp-tooltip::after {
  content: '';
  position: absolute;
  top: 50%;
  right: -8px;
  transform: translateY(-50%);
  border: 8px solid transparent;
  border-left-color: var(--gray-900);
}

.whatsapp-tooltip.show {
  opacity: 1;
}

/* Toast Notification */
.toast {
  position: fixed;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%) translateY(100px);
  background: var(--gray-900);
  color: white;
  padding: 1rem 1.5rem;
  border-radius: 0.5rem;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
  opacity: 0;
  transition: all 0.3s;
  z-index: 1000;
  max-width: 90%;
  text-align: center;
}

.toast.show {
  transform: translateX(-50%) translateY(0);
  opacity: 1;
}

.toast.success {
  background: var(--secondary);
}

.toast.error {
  background: #ef4444;
}

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

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

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

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

/* Selection */
::selection {
  background: var(--primary);
  color: white;
}





/* ========================================
   PROJECTS PAGE STYLES
   ======================================== */

/* Projects Hero Section */
.projects-hero {
  background: linear-gradient(135deg, #1e3a8a 0%, #3b82f6 100%);
  padding: 8rem 0 4rem;
  text-align: center;
  color: white;
}

.projects-hero h1 {
  font-size: 3rem;
  font-weight: 800;
  margin-bottom: 1rem;
}

.projects-hero p {
  font-size: 1.25rem;
  opacity: 0.9;
}

@media (max-width: 768px) {
  .projects-hero {
    padding: 6rem 0 3rem;
  }
  
  .projects-hero h1 {
    font-size: 2rem;
  }
  
  .projects-hero p {
    font-size: 1rem;
  }
}

/* Projects Section */
.projects-section {
  padding: 4rem 0;
  background: var(--gray-50);
}

/* Projects Filters */
.projects-filters {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1rem;
  margin-bottom: 3rem;
}

.filter-btn {
  padding: 0.75rem 1.5rem;
  background: white;
  border: 2px solid var(--gray-300);
  border-radius: 2rem;
  font-weight: 600;
  color: var(--gray-700);
  cursor: pointer;
  transition: all 0.3s;
  font-size: 0.9rem;
}

.filter-btn:hover {
  border-color: var(--primary);
  color: var(--primary);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(59, 130, 246, 0.2);
}

.filter-btn.active {
  background: var(--primary);
  border-color: var(--primary);
  color: white;
  box-shadow: 0 4px 12px rgba(59, 130, 246, 0.3);
}

/* Projects Grid */
.projects-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}

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

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

/* Project Card */
.project-card {
  background: white;
  border-radius: 1rem;
  overflow: hidden;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
  transition: all 0.3s;
  cursor: pointer;
}

.project-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.15);
}

.project-image {
  position: relative;
  height: 240px;
  overflow: hidden;
}

.project-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s;
}

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

.project-category {
  position: absolute;
  top: 1rem;
  right: 1rem;
  background: rgba(255, 255, 255, 0.95);
  padding: 0.5rem 1rem;
  border-radius: 2rem;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: var(--primary);
  backdrop-filter: blur(8px);
}

.project-content {
  padding: 1.5rem;
}

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

.project-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-bottom: 1rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid var(--gray-200);
}

.project-location,
.project-specs {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.875rem;
  color: var(--gray-600);
}

.project-location svg,
.project-specs svg {
  color: var(--primary);
}

.project-description {
  font-size: 0.9rem;
  color: var(--gray-600);
  line-height: 1.6;
}

/* Header solid state for projects page */
.header.solid {
  background: white;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.header.solid .header-logo-text,
.header.solid .nav-link {
  color: var(--gray-900);
}

.header.solid .logo-icon svg {
  stroke: var(--primary);
}

.header.solid .nav-link.active {
  color: var(--primary);
  font-weight: 600;
}

.header.solid .mobile-menu-btn svg {
  stroke: var(--gray-900);
}

/* Empty state */
.projects-empty {
  text-align: center;
  padding: 4rem 2rem;
  color: var(--gray-500);
}

.projects-empty svg {
  width: 64px;
  height: 64px;
  margin-bottom: 1rem;
  opacity: 0.3;
}

.projects-empty h3 {
  font-size: 1.5rem;
  margin-bottom: 0.5rem;
  color: var(--gray-700);
}

/* Animation for cards entering */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.project-card {
  animation: fadeInUp 0.5s ease-out;
}

.project-card:nth-child(1) { animation-delay: 0.1s; }
.project-card:nth-child(2) { animation-delay: 0.2s; }
.project-card:nth-child(3) { animation-delay: 0.3s; }
.project-card:nth-child(4) { animation-delay: 0.4s; }
.project-card:nth-child(5) { animation-delay: 0.5s; }
.project-card:nth-child(6) { animation-delay: 0.6s; }

