/* ZincArt - Premium Zinc/Metal Website Styles */

/* CSS Variables */
:root {
  --z-50: #f8fafc;
  --z-100: #f1f5f9;
  --z-200: #e2e8f0;
  --z-300: #cbd5e1;
  --z-400: #94a3b8;
  --z-500: #64748b;
  --z-600: #475569;
  --z-700: #334155;
  --z-800: #1e293b;
  --z-900: #0f172a;
  
  --accent-blue: #3b82f6;
  --accent-green: #10b981;
  --accent-orange: #f59e0b;
  --accent-red: #ef4444;
  --accent-purple: #8b5cf6;
  
  --primary: var(--z-800);
  --secondary: var(--z-600);
  --light: var(--z-100);
  --dark: var(--z-900);
}

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

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  line-height: 1.6;
  color: var(--z-800);
  background: #fff;
}

/* Modern Loader */
.modern-loader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, var(--z-900) 0%, var(--z-800) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9999;
  transition: opacity 0.6s ease, visibility 0.6s ease, transform 0.6s ease;
  padding: 1rem;
  box-sizing: border-box;
}

.modern-loader.hidden {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: scale(0.98);
}

/* Loader fade out animation */
@keyframes loaderFadeOut {
  0% {
    opacity: 1;
    transform: scale(1);
  }
  50% {
    opacity: 0.5;
    transform: scale(0.99);
  }
  100% {
    opacity: 0;
    transform: scale(0.98);
    visibility: hidden;
  }
}

@-webkit-keyframes loaderFadeOut {
  0% {
    opacity: 1;
    -webkit-transform: scale(1);
    transform: scale(1);
  }
  50% {
    opacity: 0.5;
    -webkit-transform: scale(0.99);
    transform: scale(0.99);
  }
  100% {
    opacity: 0;
    -webkit-transform: scale(0.98);
    transform: scale(0.98);
    visibility: hidden;
  }
}

.modern-loader.fade-out {
  animation: loaderFadeOut 0.8s ease-in-out forwards;
}

.loader-content {
  text-align: center;
  color: #fff;
  max-width: 300px;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.loader-logo {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-bottom: 2rem;
}

.hexagon-loader {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, var(--z-600), var(--z-700));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
  animation: pulse 2s ease-in-out infinite;
}

.hexagon-loader i {
  font-size: 2rem;
  color: #fff;
}

.loader-text {
  font-size: 2rem;
  font-weight: 700;
  color: #fff;
  letter-spacing: 2px;
}

.loader-progress-bar {
  width: 100%;
  height: 4px;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 2px;
  overflow: hidden;
  margin-bottom: 1rem;
  max-width: 200px;
}

.progress-fill {
  height: 100%;
  background: linear-gradient(90deg, var(--z-600), var(--z-700));
  border-radius: 2px;
  animation: progress 2s ease-in-out infinite;
}

.loader-subtitle {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.8);
  font-weight: 500;
}

@keyframes pulse {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.05); }
}

@keyframes progress {
  0% { width: 0%; }
  50% { width: 70%; }
  100% { width: 100%; }
}

@keyframes fadeIn {
  0% { opacity: 0; transform: translateY(20px); }
  100% { opacity: 1; transform: translateY(0); }
}

/* Modern Professional Navigation */
.modern-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.modern-header.scrolled {
  background: rgba(255, 255, 255, 0.98);
  box-shadow: 0 4px 32px rgba(0, 0, 0, 0.12);
  border-bottom: 1px solid rgba(0, 0, 0, 0.08);
}

.navbar {
  padding: 0;
  background: #fff;
  border: none;
}

.navbar .container-fluid {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 2rem;
  max-width: 1400px;
  margin: 0 auto;
  width: 100%;
}

/* Ensure logo stays on the left */
.navbar-brand {
  order: 1;
}

/* Ensure actions stay on the right */
.navbar-actions {
  order: 3;
}

/* Desktop navigation in the center */
.navbar-nav-desktop {
  order: 2;
}

/* Brand Logo */
.navbar-brand {
  display: flex;
  align-items: center;
  text-decoration: none;
  transition: all 0.3s ease;
  flex-shrink: 0;
}

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

.logo-img {
  height: 80px;
  width: auto;
  transition: all 0.3s ease;
}

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

/* Desktop Navigation */
.navbar-nav-desktop {
  flex: 1;
  display: flex;
  justify-content: center;
  margin: 0 2rem;
}

.nav-list {
  display: flex;
  align-items: center;
  gap: 2rem;
  list-style: none;
  margin: 0;
  padding: 0;
}

.nav-item {
  position: relative;
}

.nav-link {
  color: var(--z-700);
  font-weight: 500;
  font-size: 0.95rem;
  text-decoration: none;
  padding: 0.5rem 0;
  position: relative;
  transition: all 0.3s ease;
  letter-spacing: 0.25px;
}

.nav-link:hover {
  color: var(--z-900);
  text-decoration: none;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--z-600), var(--z-800));
  transition: width 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  border-radius: 1px;
}

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

/* Right Actions */
.navbar-actions {
  display: flex;
  align-items: center;
  gap: 1rem;
  flex-shrink: 0;
}

/* Language Selector */
.language-selector {
  display: flex;
  background: var(--z-100);
  border-radius: 8px;
  padding: 2px;
  border: 1px solid var(--z-200);
}

.lang-btn {
  background: transparent;
  border: none;
  padding: 0.5rem 0.75rem;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--z-600);
  border-radius: 6px;
  transition: all 0.3s ease;
  cursor: pointer;
  min-width: 40px;
}

.lang-btn.active {
  background: var(--z-800);
  color: white;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
}

.lang-btn:hover:not(.active) {
  background: var(--z-200);
  color: var(--z-800);
}

/* CTA Buttons */
.cta-buttons {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.btn-whatsapp {
  background: #25D366;
  color: white;
  border: none;
  padding: 0.75rem 1.25rem;
  border-radius: 8px;
  font-weight: 600;
  font-size: 0.9rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  transition: all 0.3s ease;
  text-decoration: none;
}

.btn-whatsapp:hover {
  background: #128C7E;
  color: white;
  transform: translateY(-1px);
  box-shadow: 0 4px 16px rgba(37, 211, 102, 0.3);
}

.btn-primary {
  background: var(--z-800);
  color: white;
  border: none;
  padding: 0.75rem 1.5rem;
  border-radius: 8px;
  font-weight: 600;
  font-size: 0.9rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  transition: all 0.3s ease;
  text-decoration: none;
}

.btn-primary:hover {
  background: var(--z-900);
  color: white;
  transform: translateY(-1px);
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.2);
}

/* Mobile Menu Toggle */
.mobile-menu-toggle {
  background: none;
  border: none;
  padding: 0.5rem;
  cursor: pointer;
  display: flex;
  flex-direction: column;
  gap: 4px;
  transition: all 0.3s ease;
}

.hamburger-line {
  width: 24px;
  height: 2px;
  background: var(--z-700);
  border-radius: 1px;
  transition: all 0.3s ease;
}

.mobile-menu-toggle:hover .hamburger-line {
  background: var(--z-900);
}

.mobile-menu-toggle:hover {
  transform: scale(1.05);
}

/* Mobile Menu */
.mobile-menu {
  width: 320px;
  background: rgba(255, 255, 255, 0.98);
  backdrop-filter: blur(20px);
  border-left: 1px solid rgba(0, 0, 0, 0.1);
}

.mobile-menu-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.5rem 2rem;
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
  background: #fff;
}

.mobile-brand {
  display: flex;
  align-items: center;
}

.mobile-logo {
  height: 70px;
  width: auto;
}

.mobile-menu-body {
  padding: 2rem;
  display: flex;
  flex-direction: column;
  gap: 2rem;
  background: #fff;
}

.mobile-nav-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.mobile-nav-list li a {
  display: block;
  padding: 1rem 0;
  color: var(--z-700);
  text-decoration: none;
  font-weight: 500;
  font-size: 1.1rem;
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
}

.mobile-nav-list li a:hover {
  color: var(--z-900);
  padding-left: 0.5rem;
  text-decoration: none;
}

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

.btn-whatsapp-mobile {
  background: #25D366;
  color: white;
  border: none;
  padding: 1rem 1.5rem;
  border-radius: 8px;
  font-weight: 600;
  font-size: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  transition: all 0.3s ease;
  text-decoration: none;
}

.btn-whatsapp-mobile:hover {
  background: #128C7E;
  color: white;
  transform: translateY(-1px);
  box-shadow: 0 4px 16px rgba(37, 211, 102, 0.3);
}

.btn-primary-mobile {
  background: var(--z-800);
  color: white;
  border: none;
  padding: 1rem 1.5rem;
  border-radius: 8px;
  font-weight: 600;
  font-size: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  transition: all 0.3s ease;
  text-decoration: none;
}

.btn-primary-mobile:hover {
  background: var(--z-900);
  color: white;
  transform: translateY(-1px);
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.2);
}

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

.hero-background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}

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

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.6));
  z-index: 2;
}

.hero-content {
  position: relative;
  z-index: 3;
}

.hero-title {
  font-size: 3.5rem;
  font-weight: 800;
  line-height: 1.1;
  margin-bottom: 1.5rem;
}

.sheen {
  position: relative;
  overflow: hidden;
}

.sheen::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
  animation: sheen 3s infinite;
}

@keyframes sheen {
  0% { left: -100%; }
  50% { left: 100%; }
  100% { left: 100%; }
}

/* Hero Title Colors */
.hero-title-zinc {
  background: linear-gradient(135deg, #fff, #e5e7eb);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-title-copper {
  background: linear-gradient(135deg, #fbbf24, #f59e0b);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-subtitle {
  font-size: 1.25rem;
  margin-bottom: 2rem;
  opacity: 0.9;
}

.trust-strip {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 0;
  padding: 1rem;
  margin-top: 2rem;
}

.trust-strip .row {
  align-items: center;
}

.trust-item {
  text-align: center;
  color: #fff;
  font-size: 0.9rem;
  font-weight: 500;
}

.trust-item i {
  color: #fbbf24;
  margin-right: 0.5rem;
}

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

.bg-light {
  background: var(--z-50);
}

/* Reveal Animation */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.6s ease;
}

.reveal.active {
  opacity: 1;
  transform: translateY(0);
}

/* Cards */
.card {
  border: none;
  border-radius: 0;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
  background: #fff;
}

.card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

/* Service Cards */
.service-card {
  border: none;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
  border-left: 4px solid var(--z-300);
}

.service-card:hover {
  border-left-color: var(--z-600);
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.service-card .card-body {
  padding: 2rem;
}

.service-card h5 {
  color: var(--z-800);
  font-weight: 600;
  margin-bottom: 1rem;
}

.service-card p {
  color: var(--z-600);
  margin-bottom: 0;
}

/* KPI Cards */
.kpi-card {
  border: none;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
  border-top: 3px solid var(--z-300);
}

.kpi-card:hover {
  border-top-color: var(--z-600);
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
}

.kpi-card .card-body {
  padding: 2rem;
  text-align: center;
}

.kpi-card h3 {
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--z-800);
  margin-bottom: 0.5rem;
}

.kpi-card p {
  color: var(--z-600);
  font-weight: 500;
  margin-bottom: 0;
}

/* Counter Animation */
.counter {
  font-size: 3rem;
  font-weight: 800;
  color: var(--z-800);
  display: block;
}

.counter-label {
  font-size: 1rem;
  color: var(--z-600);
  font-weight: 500;
  margin-top: 0.5rem;
}

/* Modern Technology Cards */
.tech-card-modern {
  background: #fff;
  border: 2px solid var(--z-200);
  border-radius: 0;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
  height: 100%;
}

.tech-card-modern:hover {
  border-color: var(--z-600);
  transform: translateY(-8px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.tech-card-modern::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, var(--z-300), var(--z-600));
  transform: scaleX(0);
  transition: transform 0.3s ease;
}

.tech-card-modern:hover::before {
  transform: scaleX(1);
}

.tech-card-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 2rem 2rem 1rem;
  position: relative;
}

.tech-icon-wrapper {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, var(--z-100), var(--z-200));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  color: var(--z-600);
  transition: all 0.3s ease;
}

.tech-card-modern:hover .tech-icon-wrapper {
  background: linear-gradient(135deg, var(--z-600), var(--z-700));
  color: #fff;
  transform: scale(1.1);
}

.tech-number {
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--z-300);
  transition: all 0.3s ease;
}

.tech-card-modern:hover .tech-number {
  color: var(--z-600);
}

.tech-card-body {
  padding: 0 2rem 2rem;
}

.tech-card-body h5 {
  color: var(--z-800);
  font-weight: 600;
  margin-bottom: 1rem;
  font-size: 1.25rem;
}

.tech-card-body p {
  color: var(--z-600);
  margin-bottom: 1.5rem;
  line-height: 1.6;
}

.tech-features {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.tech-tag {
  background: var(--z-100);
  color: var(--z-700);
  padding: 0.25rem 0.75rem;
  font-size: 0.8rem;
  font-weight: 500;
  border-radius: 0;
  transition: all 0.3s ease;
}

.tech-card-modern:hover .tech-tag {
  background: var(--z-600);
  color: #fff;
}

/* Modern Quality Cards */
.quality-card-modern {
  background: #fff;
  border: 2px solid var(--z-200);
  border-radius: 0;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
  height: 100%;
}

.quality-card-modern:hover {
  border-color: var(--z-600);
  transform: translateY(-5px);
  box-shadow: 0 12px 35px rgba(0, 0, 0, 0.12);
}

.quality-card-border {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, var(--z-300), var(--z-500));
  transform: scaleX(0);
  transition: transform 0.3s ease;
}

.quality-card-modern:hover .quality-card-border {
  transform: scaleX(1);
}

.quality-card-content {
  padding: 2rem;
  position: relative;
}

.quality-icon-modern {
  width: 50px;
  height: 50px;
  background: linear-gradient(135deg, var(--z-100), var(--z-200));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  color: var(--z-600);
  margin-bottom: 1.5rem;
  transition: all 0.3s ease;
}

.quality-card-modern:hover .quality-icon-modern {
  background: linear-gradient(135deg, var(--z-600), var(--z-700));
  color: #fff;
  transform: scale(1.1);
}

.quality-card-content h5 {
  color: var(--z-800);
  font-weight: 600;
  margin-bottom: 1rem;
  font-size: 1.25rem;
}

.quality-card-content p {
  color: var(--z-600);
  margin-bottom: 1.5rem;
  line-height: 1.6;
}

.quality-stats {
  margin-top: 1.5rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--z-200);
}

.stat {
  text-align: center;
}

.stat-number {
  display: block;
  font-size: 2rem;
  font-weight: 800;
  color: var(--z-800);
  margin-bottom: 0.25rem;
}

.stat-label {
  font-size: 0.9rem;
  color: var(--z-600);
  font-weight: 500;
}

/* GLightbox Fixes */
.glightbox-clean .gslide-description {
  background: rgba(0, 0, 0, 0.8);
  color: #fff;
  padding: 1rem;
  border-radius: 8px;
}

.glightbox-clean .gslide-title {
  color: #fff;
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.glightbox-clean .gslide-desc {
  color: #fff;
  opacity: 0.9;
}

/* GLightbox Navigation Buttons */
.glightbox-clean .gnext,
.glightbox-clean .gprev {
  background: rgba(0, 0, 0, 0.7);
  border: 2px solid #fff;
  border-radius: 50%;
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 1.5rem;
  z-index: 9999;
  transition: all 0.3s ease;
}

.glightbox-clean .gnext:hover,
.glightbox-clean .gprev:hover {
  background: rgba(255, 255, 255, 0.9);
  color: #000;
  transform: scale(1.1);
}

.glightbox-clean .gclose {
  background: rgba(0, 0, 0, 0.7);
  border: 2px solid #fff;
  border-radius: 50%;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 1.2rem;
  z-index: 9999;
  transition: all 0.3s ease;
  position: fixed;
  top: 20px;
  right: 20px;
}

.glightbox-clean .gclose:hover {
  background: rgba(255, 0, 0, 0.8);
  color: #fff;
  transform: scale(1.1);
}

/* GLightbox Overlay */
.glightbox-clean .goverlay {
  background: rgba(0, 0, 0, 0.9);
  z-index: 9998;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: block !important;
}

/* GLightbox Container */
.glightbox-clean .gcontainer {
  z-index: 9999;
}

/* GLightbox Image */
.glightbox-clean .gslide-image img {
  max-width: 90vw;
  max-height: 90vh;
  object-fit: contain;
  border-radius: 8px;
}

/* Ensure lightbox controls are always visible */
.glightbox-clean .gnext,
.glightbox-clean .gprev,
.glightbox-clean .gclose {
  opacity: 1 !important;
  visibility: visible !important;
  display: flex !important;
}

/* Lightbox counter */
.glightbox-clean .gcounter {
  background: rgba(0, 0, 0, 0.7);
  color: #fff;
  padding: 0.5rem 1rem;
  border-radius: 20px;
  font-size: 0.9rem;
  position: fixed;
  top: 20px;
  left: 20px;
  z-index: 9999;
}

/* Lightbox description */
.glightbox-clean .gslide-description {
  position: fixed;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  max-width: 80vw;
  text-align: center;
  z-index: 9999;
}

/* Mobile lightbox fixes */
@media (max-width: 768px) {
  .glightbox-clean .gnext,
  .glightbox-clean .gprev {
    width: 40px;
    height: 40px;
    font-size: 1.2rem;
  }
  
  .glightbox-clean .gclose {
    width: 35px;
    height: 35px;
    font-size: 1rem;
  }
  
  .glightbox-clean .gcounter {
    font-size: 0.8rem;
    padding: 0.4rem 0.8rem;
  }
}

/* Normal Gallery with Rounded Corners */
.gallery {
  margin-top: 2rem;
}

.gallery-thumb {
  display: block;
  position: relative;
  overflow: hidden;
  border-radius: 12px;
  transition: all 0.3s ease;
  text-decoration: none;
  color: inherit;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.gallery-thumb:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.gallery-thumb img {
  width: 100%;
  height: 250px;
  object-fit: cover;
  transition: all 0.3s ease;
  border-radius: 12px;
}

.gallery-thumb:hover img {
  transform: scale(1.05);
}

.gallery-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.7);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: all 0.3s ease;
  z-index: 2;
  border-radius: 12px;
}

.gallery-thumb:hover .gallery-overlay {
  opacity: 1;
}

.gallery-overlay i {
  color: #fff;
  font-size: 2rem;
  transition: all 0.3s ease;
}

.gallery-thumb:hover .gallery-overlay i {
  transform: scale(1.1);
}

/* Mobile Gallery Fixes */
@media (max-width: 768px) {
  .gallery-thumb img {
    height: 200px;
  }
  
  .gallery-overlay i {
    font-size: 1.5rem;
  }
}

@media (max-width: 576px) {
  .gallery-thumb img {
    height: 180px;
  }
  
  .gallery-overlay i {
    font-size: 1.2rem;
  }
}

/* Modern Navigation */
.modern-nav {
  background: #fff;
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  padding: 0.5rem 0;
}

.modern-nav.scrolled {
  background: #fff;
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.15);
}

.navbar-brand {
  margin-right: 0;
  padding-left: 0;
}

.navbar-logo {
  width: 120px;
  height: 50px;
  background-image: url('../images/logo.png');
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
  transition: all 0.3s ease;
  clip-path: inset(15% 0 15% 0);
  display: block;
  min-height: 50px;
  min-width: 120px;
}

/* Language Switcher */
.language-switcher .btn-group {
  border-radius: 25px;
  overflow: hidden;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.btn-lang {
  background: transparent;
  border: 1px solid var(--z-300);
  color: var(--z-600);
  padding: 0.3rem 0.6rem;
  font-size: 0.8rem;
  font-weight: 500;
  transition: all 0.3s ease;
  border-radius: 0;
}

.btn-lang:first-child {
  border-top-left-radius: 25px;
  border-bottom-left-radius: 25px;
}

.btn-lang:last-child {
  border-top-right-radius: 25px;
  border-bottom-right-radius: 25px;
}

.btn-lang.active {
  background: var(--z-800);
  color: #fff;
  border-color: var(--z-800);
}

.btn-lang:hover:not(.active) {
  background: var(--z-100);
  color: var(--z-800);
}

/* Modern Navigation Links */
.modern-nav-links {
  gap: 0.5rem;
}

.nav-link.modern-link {
  position: relative;
  color: var(--z-700) !important;
  font-weight: 500;
  padding: 0.5rem 1rem !important;
  border-radius: 8px;
  transition: all 0.3s ease;
  display: inline-block;
  text-decoration: none !important;
  border: none !important;
}

.nav-link.modern-link:hover {
  color: var(--z-800) !important;
  background: var(--z-50);
  transform: translateY(-1px);
  text-decoration: none !important;
}

.nav-link.modern-link::after {
  content: '';
  position: absolute;
  bottom: 6px;
  left: 50%;
  width: 0;
  height: 2px;
  background: var(--z-800);
  transition: all 0.3s ease;
  transform: translateX(-50%);
  border-radius: 1px;
}

.nav-link.modern-link:hover::after {
  width: 80%;
}

/* Modern Toggler */
.modern-toggler {
  border: none;
  padding: 0.5rem;
  background: transparent;
  position: relative;
  width: 30px;
  height: 30px;
}

.toggler-line {
  display: block;
  width: 20px;
  height: 2px;
  background: var(--z-700);
  margin: 4px 0;
  transition: all 0.3s ease;
  border-radius: 1px;
}

.modern-toggler:hover .toggler-line {
  background: var(--z-800);
}

/* Footer Logo */
.footer-brand {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 0;
}

.footer-logo {
  height: 70px;
  width: auto;
  transition: all 0.3s ease;
}

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

/* Minimalistic Footer */
.site-footer {
  background: var(--z-900);
  color: #fff;
  padding: 2rem 0 1.5rem;
}

.site-footer h5 {
  color: #fff;
  font-weight: 700;
  margin-bottom: 1rem;
}

.site-footer h6 {
  color: var(--z-300);
  font-weight: 600;
  margin-bottom: 1rem;
}

.contact-info {
  color: var(--z-200);
}

.contact-info i {
  color: var(--z-400);
  width: 20px;
}

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

@media (min-width: 768px) {
  .social-section {
    text-align: right;
  }
}

.instagram-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: #fff;
  text-decoration: none;
  padding: 0.75rem 1.5rem;
  background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
  border-radius: 25px;
  font-weight: 600;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(188, 24, 136, 0.3);
}

.instagram-link:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(188, 24, 136, 0.4);
  color: #fff;
  text-decoration: none;
}

.instagram-link i {
  font-size: 1.2rem;
}

/* Mobile Navigation Fixes */
@media (max-width: 991px) {
  .language-switcher {
    margin-right: 0.5rem;
  }
  
  .btn-lang {
    padding: 0.25rem 0.5rem;
    font-size: 0.75rem;
  }
  
  .navbar-logo {
    width: 100px;
    height: 40px;
    clip-path: inset(12% 0 12% 0);
  }
}

@media (max-width: 768px) {
  /* Fix mobile navigation to stick to top */
  .modern-nav {
    padding: 0.4rem 0;
    position: sticky !important;
    top: 0 !important;
    z-index: 1030 !important;
    width: 100% !important;
    max-width: 100% !important;
    overflow-x: hidden;
  }
  
  .navbar {
    position: sticky !important;
    top: 0 !important;
    z-index: 1030 !important;
    width: 100% !important;
    max-width: 100% !important;
    overflow-x: hidden;
  }
  
  /* Fix logo and language switcher layout */
  .navbar .container {
    width: 100% !important;
    max-width: 100% !important;
    overflow-x: hidden;
    padding-left: 1rem;
    padding-right: 1rem;
    display: flex;
    align-items: center;
  }
  
  .navbar .d-flex {
    width: 100% !important;
    max-width: 100% !important;
    overflow-x: hidden;
    flex-wrap: nowrap;
    justify-content: space-between;
    align-items: center;
    gap: 0.5rem;
    display: grid !important;
    grid-template-columns: auto 1fr auto;
    align-items: center;
  }
  
  /* Fix logo sizing and positioning - bigger for mobile */
  .navbar-brand {
    justify-self: start;
    grid-column: 1;
    width: auto;
    max-width: 100px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    overflow: hidden;
  }
  
  .navbar-logo {
    width: 100px;
    height: 40px;
    clip-path: inset(8% 0 8% 0);
    flex-shrink: 0;
    min-width: 100px;
    max-width: 100px;
  }
  
  /* Fix language switcher positioning */
  .language-switcher {
    order: 0;
    margin-right: 0;
    margin-left: 0;
    flex-shrink: 0;
    max-width: 70px;
    justify-self: center;
    grid-column: 2;
    display: flex;
    justify-content: center;
  }
  
  .language-switcher .btn-group {
    width: 100%;
    max-width: 70px;
    overflow: hidden;
  }
  
  .btn-lang {
    padding: 0.2rem 0.3rem;
    font-size: 0.65rem;
    white-space: nowrap;
    flex: 1;
    min-width: 0;
  }
  
  /* Fix mobile toggler */
  .modern-toggler {
    width: 40px;
    height: 40px;
    padding: 0.4rem;
    flex-shrink: 0;
    margin-left: 0.5rem;
    justify-self: end;
    grid-column: 3;
  }
  
  .toggler-line {
    width: 22px;
    height: 2px;
    margin: 4px 0;
  }
}

/* Mobile Footer Fixes */
@media (max-width: 767px) {
  .site-footer {
    padding: 1.5rem 0 1rem;
  }
  
  .site-footer .row {
    text-align: center;
  }
  
  .footer-brand {
    justify-content: center;
    margin-bottom: 1rem;
  }
  
  .footer-logo {
    height: 90px;
  }
  
  .contact-info {
    margin: 1rem 0;
  }
  
  .social-section {
    margin-top: 1rem;
  }
  
  .instagram-link {
    padding: 0.6rem 1.2rem;
    font-size: 0.9rem;
  }
}

/* General Mobile Fixes */
@media (max-width: 768px) {
  /* Typography - Enhanced mobile font sizes */
  .h1 {
    font-size: 2.2rem;
    line-height: 1.2;
    font-weight: 700;
  }
  
  .h2 {
    font-size: 1.9rem;
    line-height: 1.3;
    font-weight: 600;
  }
  
  .h3 {
    font-size: 1.6rem;
    line-height: 1.3;
    font-weight: 600;
  }
  
  .h4 {
    font-size: 1.4rem;
    line-height: 1.3;
    font-weight: 600;
  }
  
  .h5 {
    font-size: 1.2rem;
    line-height: 1.4;
    font-weight: 600;
  }
  
  .h6 {
    font-size: 1.1rem;
    line-height: 1.4;
    font-weight: 600;
  }
  
  .lead {
    font-size: 1.1rem;
    line-height: 1.5;
    font-weight: 400;
  }
  
  /* Enhanced mobile spacing between sections */
  .section {
    padding: 5rem 0;
  }
  
  /* Extra spacing for parallax section */
  .parallax-section {
    padding: 6rem 0;
    margin: 2rem 0;
  }
  
  /* Additional spacing for specific sections */
  .hero {
    padding: 3rem 0;
  }
  
  .stats-section {
    padding: 6rem 0;
  }
  
  .contact-dark {
    padding: 6rem 0;
  }
  
  .site-footer {
    padding: 4rem 0 2rem;
  }
  
  /* Statistics numbers - larger for mobile */
  .stat-item .counter {
    font-size: 3.5rem;
    font-weight: 800;
    line-height: 1;
  }
  
  .counter {
    font-size: 3.5rem;
    font-weight: 800;
    line-height: 1;
  }
  
  /* Card titles - better mobile sizing */
  .card-title {
    font-size: 1.3rem;
    line-height: 1.3;
    font-weight: 600;
  }
  
  /* Service card titles */
  .service-card .card-title {
    font-size: 1.2rem;
    line-height: 1.3;
    font-weight: 600;
  }
  
  /* Process step titles */
  .step-title {
    font-size: 1.3rem;
    line-height: 1.3;
    font-weight: 600;
  }
  
  /* Step numbers */
  .step-number {
    font-size: 1.8rem;
    font-weight: 800;
  }
  
  /* Buttons */
  .btn {
    padding: 0.6rem 1.5rem;
    font-size: 0.9rem;
  }
  
  .btn-lg {
    padding: 0.75rem 1.75rem;
    font-size: 1rem;
  }
  
  /* Cards */
  .card {
    margin-bottom: 1rem;
  }
  
  /* Navigation */
  .navbar-brand {
    font-size: 1.25rem;
  }
  
  /* Hero section */
  .hero h1 {
    font-size: 2.5rem;
  }
  
  .hero .lead {
    font-size: 1.1rem;
  }
  
  /* Process cards */
  .process-step-card {
    margin-bottom: 1rem;
  }
  
  /* Testimonials */
  .testimonial-slider {
    padding: 0 1rem;
  }
}

@media (max-width: 576px) {
  /* Even smaller screens */
  .h1 {
    font-size: 1.75rem;
  }
  
  .h2 {
    font-size: 1.5rem;
  }
  
  .section {
    padding: 2rem 0;
  }
  
  .hero h1 {
    font-size: 2rem;
  }
  
  .hero .lead {
    font-size: 1rem;
  }
  
  .btn {
    padding: 0.5rem 1.25rem;
    font-size: 0.85rem;
  }
  
  .btn-lg {
    padding: 0.6rem 1.5rem;
    font-size: 0.9rem;
  }
  
  /* Gallery on small screens */
  .gallery .col-6 {
    margin-bottom: 1rem;
  }
  
  /* Contact form */
  .form-control {
    font-size: 0.9rem;
  }
  
  /* Statistics */
  .stat-item {
    padding: 1rem;
  }
  
  .stat-item .counter {
    font-size: 2.5rem;
  }
}

/* Modern Process Accordion */
.modern-accordion {
  position: relative;
}

.process-step-card {
  background: #fff;
  border: 2px solid var(--z-200);
  border-radius: 0;
  margin-bottom: 1rem;
  transition: all 0.3s ease;
  overflow: hidden;
  position: relative;
}

.process-step-card.active {
  border-color: var(--z-600);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.process-step-card:hover {
  border-color: var(--z-500);
  transform: translateY(-2px);
}

.step-header {
  display: flex;
  align-items: center;
  padding: 1.5rem;
  cursor: pointer;
  transition: all 0.3s ease;
  position: relative;
}

.step-header::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 4px;
  height: 100%;
  background: var(--z-300);
  transition: all 0.3s ease;
}

.process-step-card.active .step-header::before {
  background: var(--z-600);
}

.step-number {
  font-size: 2rem;
  font-weight: 800;
  color: var(--z-300);
  margin-right: 1rem;
  transition: all 0.3s ease;
}

.process-step-card.active .step-number {
  color: var(--z-600);
}

.step-content {
  flex: 1;
}

.step-title {
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--z-800);
  margin-bottom: 0.25rem;
}

.step-subtitle {
  color: var(--z-600);
  font-size: 0.9rem;
  margin-bottom: 0;
}

.step-icon {
  font-size: 1.5rem;
  color: var(--z-400);
  transition: all 0.3s ease;
}

.process-step-card.active .step-icon {
  color: var(--z-600);
  transform: scale(1.1);
}

.step-body {
  max-height: 0;
  overflow: hidden;
  transition: all 0.3s ease;
  background: var(--z-50);
}

.process-step-card.active .step-body {
  max-height: 500px;
}

.step-details {
  padding: 1.5rem;
}

.step-features {
  list-style: none;
  padding: 0;
  margin: 1rem 0 0;
}

.step-features li {
  display: flex;
  align-items: center;
  padding: 0.5rem 0;
  color: var(--z-700);
}

.step-features li i {
  color: var(--z-600);
  margin-right: 0.5rem;
  font-size: 0.9rem;
}

/* Quality Guarantee Card */
.quality-guarantee-card {
  background: linear-gradient(135deg, var(--z-800), var(--z-700));
  color: #fff;
  padding: 2rem;
  border-radius: 0;
  height: 100%;
  position: sticky;
  top: 2rem;
  overflow: hidden;
}

.quality-guarantee-card::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -50%;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
  animation: rotate 20s linear infinite;
}

.guarantee-header {
  display: flex;
  align-items: center;
  margin-bottom: 2rem;
  position: relative;
  z-index: 2;
}

.guarantee-icon {
  width: 50px;
  height: 50px;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 1rem;
  font-size: 1.5rem;
}

.guarantee-content {
  position: relative;
  z-index: 2;
}

.guarantee-item {
  display: flex;
  align-items: center;
  margin-bottom: 1.5rem;
  padding: 1rem;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 0;
  transition: all 0.3s ease;
}

.guarantee-item:hover {
  background: rgba(255, 255, 255, 0.15);
  transform: translateX(5px);
}

.guarantee-item i {
  font-size: 1.5rem;
  margin-right: 1rem;
  color: #fbbf24;
}

.guarantee-item h6 {
  color: #fff;
  font-weight: 600;
  margin-bottom: 0.25rem;
}

.guarantee-item p {
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 0;
  font-size: 0.9rem;
}

/* FAQ */
.faq-item {
  border: 1px solid var(--z-200);
  margin-bottom: 1rem;
  border-radius: 0;
}

.faq-question {
  background: #fff;
  border: none;
  padding: 1.5rem;
  width: 100%;
  text-align: left;
  font-weight: 600;
  color: var(--z-800);
  cursor: pointer;
  transition: all 0.3s ease;
  position: relative;
}

.faq-question:hover {
  background: var(--z-50);
}

/* Removed ::after pseudo-element arrow - using Bootstrap chevron icon instead */

.faq-icon {
  position: absolute;
  right: 1.5rem;
  top: 50%;
  transform: translateY(-50%);
  font-size: 1.2rem;
  transition: transform 0.3s ease;
}

.faq-question.active .faq-icon {
  transform: translateY(-50%) rotate(180deg);
}

.faq-answer {
  padding: 0 1.5rem;
  max-height: 0;
  overflow: hidden;
  transition: all 0.3s ease;
  background: var(--z-50);
}

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

/* Testimonials */
.testimonial-slider {
  position: relative;
}

.testimonial-slider .swiper {
  padding: 2rem 0;
}

.testimonial-card {
  background: #fff;
  border: none;
  border-radius: 0;
  padding: 2rem;
  text-align: center;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.testimonial-avatar {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  margin: 0 auto 1rem;
  background: var(--z-200);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  color: var(--z-600);
  font-weight: 600;
}

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

.testimonial-text {
  font-style: italic;
  color: var(--z-700);
  margin-bottom: 1rem;
  flex-grow: 1;
  display: flex;
  align-items: center;
}

.testimonial-author {
  font-weight: 600;
  color: var(--z-800);
}

/* Swiper Navigation */
.swiper-button-next,
.swiper-button-prev {
  color: var(--z-600);
  background: rgba(255, 255, 255, 0.9);
  border-radius: 50%;
  width: 50px;
  height: 50px;
  margin-top: -25px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
}

.swiper-button-next:hover,
.swiper-button-prev:hover {
  color: var(--z-800);
  background: #fff;
  transform: scale(1.1);
}

.swiper-button-next::after,
.swiper-button-prev::after {
  font-size: 1.2rem;
  font-weight: 600;
}

.swiper-pagination-bullet {
  background: var(--z-400);
  opacity: 1;
}

.swiper-pagination-bullet-active {
  background: var(--z-600);
}

/* Pricing */
.pricing-card {
  border: 2px solid var(--z-200);
  border-radius: 0;
  transition: all 0.3s ease;
  position: relative;
  background: #fff;
}

.pricing-card:hover {
  border-color: var(--z-600);
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.pricing-card.featured {
  border-color: var(--z-800);
  transform: scale(1.05);
}

.pricing-header {
  background: var(--z-800);
  color: #fff;
  padding: 2rem;
  text-align: center;
}

.pricing-title {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.pricing-price {
  font-size: 3rem;
  font-weight: 800;
  margin-bottom: 0.5rem;
}

.pricing-period {
  opacity: 0.8;
  font-size: 1rem;
}

.pricing-features {
  padding: 2rem;
}

.pricing-features ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.pricing-features li {
  padding: 0.5rem 0;
  border-bottom: 1px solid var(--z-100);
  display: flex;
  align-items: center;
}

.pricing-features li:last-child {
  border-bottom: none;
}

.pricing-features li i {
  color: var(--z-600);
  margin-right: 0.5rem;
}

/* Contact Section */
.contact-dark {
  background: linear-gradient(135deg, var(--z-800) 0%, var(--z-700) 100%);
  color: #fff;
  padding: 4rem 0;
}

.contact-dark h2, .contact-dark p {
  color: #fff;
}

.contact-dark .contact-info-card.light {
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: #fff;
}

.contact-dark .contact-info-card.light h5 {
  color: #fff;
}

.contact-dark .contact-info-card.light p {
  color: rgba(255, 255, 255, 0.9);
}

.contact-dark .contact-info-card.light i {
  color: #fff;
}

.contact-info-card {
  background: #fff;
  border: 1px solid var(--z-200);
  border-radius: 0;
  padding: 2rem;
  text-align: center;
  transition: all 0.3s ease;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
}

.contact-info-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.contact-info-card h5 {
  color: var(--z-800);
  font-weight: 600;
  margin-bottom: 1rem;
}

.contact-info-card p {
  color: var(--z-600);
  margin-bottom: 0.5rem;
}

.contact-info-card i {
  color: var(--z-600);
  margin-right: 0.5rem;
}

/* Parallax Section */
.parallax-section {
  min-height: 60vh;
  background: linear-gradient(135deg, rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.6)), url('../images/header.jpg');
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  display: flex;
  align-items: center;
  color: #fff;
  position: relative;
}

.parallax-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.5));
  z-index: 1;
}

.parallax-content {
  position: relative;
  z-index: 2;
  text-align: center;
}

.parallax-content h2 {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
}

.parallax-content p {
  font-size: 1.1rem;
  opacity: 0.9;
  margin-bottom: 2rem;
}

/* Footer */
.site-footer {
  background: var(--z-900);
  color: #fff;
  padding: 3rem 0 1rem;
}

.site-footer h5 {
  color: #fff;
  font-weight: 600;
  margin-bottom: 1rem;
}

.site-footer p, .site-footer a {
  color: rgba(255, 255, 255, 0.8);
  text-decoration: none;
  transition: color 0.3s ease;
}

.site-footer a:hover {
  color: #fff;
}

.site-footer .social-links a {
  display: inline-block;
  width: 40px;
  height: 40px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  text-align: center;
  line-height: 40px;
  margin-right: 0.5rem;
  transition: all 0.3s ease;
}

.site-footer .social-links a:hover {
  background: var(--z-600);
  transform: translateY(-2px);
}

.footer-bottom {
  border-top: 1px solid var(--z-700);
  padding-top: 1rem;
  margin-top: 2rem;
  text-align: center;
}

/* Modern To Top Button */
.to-top-modern {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, var(--z-800), var(--z-700));
  color: #fff;
  border: 2px solid var(--z-600);
  border-radius: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
  z-index: 1000;
  opacity: 0;
  visibility: hidden;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  font-size: 1.2rem;
}

.to-top-modern.visible {
  opacity: 1;
  visibility: visible;
}

.to-top-modern:hover {
  background: linear-gradient(135deg, var(--z-900), var(--z-800));
  border-color: var(--z-500);
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
}

.to-top-modern:active {
  transform: translateY(-1px);
}

/* Buttons */
.btn {
  border-radius: 6px;
  font-weight: 500;
  padding: 0.5rem 1.2rem;
  font-size: 0.9rem;
  transition: all 0.3s ease;
  border: none;
}

.btn-primary {
  background: var(--z-800);
  color: #fff;
}

.btn-primary:hover {
  background: var(--z-900);
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.btn-whatsapp {
  background: #25D366;
  color: #fff;
  padding: 0.5rem 1.2rem;
  font-size: 0.9rem;
  border-radius: 6px;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}

.btn-whatsapp:hover {
  background: #128C7E;
  color: #fff;
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(37, 211, 102, 0.3);
}

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

.btn-outline-primary:hover {
  background: var(--z-800);
  color: #fff;
  transform: translateY(-2px);
}

.btn-modern {
  background: linear-gradient(135deg, var(--z-800), var(--z-700));
  color: #fff;
  border: none;
  padding: 1rem 2rem;
  font-weight: 600;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.btn-modern::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
  transition: left 0.5s ease;
}

.btn-modern:hover::before {
  left: 100%;
}

.btn-modern:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}

/* Gradient Text */
.gradient-text {
  background: linear-gradient(135deg, var(--z-800), var(--z-600));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* Floating Animation */
.floating {
  animation: floating 3s ease-in-out infinite;
}

@keyframes floating {
  0%, 100% { transform: translateY(0px); }
  50% { transform: translateY(-10px); }
}

/* Statistics Section */
.stats-section {
  background: var(--z-50);
  padding: 4rem 0;
}

.stat-item {
  text-align: center;
  padding: 2rem;
}

.stat-item .counter {
  font-size: 4rem;
  font-weight: 800;
  color: var(--z-800);
  display: block;
  margin-bottom: 0.5rem;
}

.stat-item .counter-label {
  font-size: 0.8rem;
  color: var(--z-600);
  font-weight: 500;
}

/* Modern CTA Section */
.cta-modern {
  background: linear-gradient(135deg, var(--z-800), var(--z-700));
  color: #fff;
  padding: 4rem 0;
  position: relative;
  overflow: hidden;
}

.cta-modern::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
  animation: rotate 20s linear infinite;
}

@keyframes rotate {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

.cta-modern .container {
  position: relative;
  z-index: 2;
}

.cta-modern h2 {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
}

.cta-modern p {
  font-size: 1.2rem;
  opacity: 0.9;
  margin-bottom: 2rem;
}

.cta-icon {
  font-size: 4rem;
  margin-bottom: 1rem;
  opacity: 0.8;
}

/* Gallery Button */
.btn-gallery {
  background: rgba(255, 255, 255, 0.1);
  border: 2px solid rgba(255, 255, 255, 0.3);
  color: #fff;
  transition: all 0.3s ease;
  backdrop-filter: blur(10px);
}

.btn-gallery:hover {
  background: rgba(255, 255, 255, 0.2);
  border-color: rgba(255, 255, 255, 0.5);
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}

/* Features Section */
.features-section {
  background: #fff;
  padding: 4rem 0;
}

.feature-item {
  text-align: center;
  padding: 2rem;
  transition: all 0.3s ease;
}

.feature-item:hover {
  transform: translateY(-5px);
}

.feature-icon {
  font-size: 3rem;
  color: var(--z-600);
  margin-bottom: 1rem;
  transition: all 0.3s ease;
}

.feature-item:hover .feature-icon {
  color: var(--z-800);
  transform: scale(1.1);
}

.feature-item h4 {
  color: var(--z-800);
  font-weight: 600;
  margin-bottom: 1rem;
}

.feature-item p {
  color: var(--z-600);
  margin-bottom: 0;
}

/* Mobile-First Responsive Design */

/* Large Tablets and Small Desktops */
@media (max-width: 1199px) {
  .hero-title {
    font-size: 3rem;
  }
  
  .display-3 {
    font-size: 2.5rem;
  }
  
  .display-5 {
    font-size: 2rem;
  }
  
  .guarantee-box .value {
    font-size: 2.5rem;
  }
}

/* Tablets */
@media (max-width: 991px) {
  .hero-title {
    font-size: 2.5rem;
  }
  
  .hero-subtitle {
    font-size: 1.1rem;
  }
  
  .trust-strip {
    padding: 0.75rem;
  }
  
  .trust-item {
    font-size: 0.8rem;
    margin-bottom: 0.5rem;
  }
  
  .section {
    padding: 3rem 0;
  }
  
  .parallax-content h2 {
    font-size: 2rem;
  }
  
  .parallax-content p {
    font-size: 1rem;
  }
  
  .cta-modern h2 {
    font-size: 2rem;
  }
  
  .cta-modern p {
    font-size: 1rem;
  }
  
  .stat-item .counter {
    font-size: 3rem;
  }
  
  .pricing-card.featured {
    transform: none;
  }
  
  .quality-guarantee-card {
    position: static;
    margin-top: 2rem;
  }
  
  .process-step-card {
    margin-bottom: 1rem;
  }
  
  .step-header {
    padding: 1rem;
  }
  
  .step-number {
    font-size: 1.5rem;
  }
  
  .step-title {
    font-size: 1.1rem;
  }
  
  .step-subtitle {
    font-size: 0.85rem;
  }
  
  .tech-card-modern,
  .quality-card-modern {
    margin-bottom: 2rem;
  }
  
  /* Quality Section Mobile Spacing */
  .quality-section {
    padding: 5rem 0;
  }
  
  .quality-section .section {
    padding: 5rem 0;
  }
  
  .testimonial-slider .swiper {
    padding: 1rem 0;
  }
}

/* Mobile Landscape */
@media (max-width: 768px) {
  .hero-title {
    font-size: 2.2rem;
    line-height: 1.2;
    text-align: left;
  }
  
  .hero-subtitle {
    font-size: 1rem;
    text-align: left;
  }
  
  .trust-strip {
    padding: 0.5rem;
  }
  
  .trust-item {
    font-size: 0.75rem;
    margin-bottom: 0.25rem;
  }
  
  .section {
    padding: 4rem 0;
  }
  
  .container {
    text-align: left;
  }
  
  .text-center {
    text-align: left !important;
  }
  
  .parallax-content h2 {
    font-size: 1.8rem;
    text-align: left;
  }
  
  .parallax-content p {
    font-size: 0.95rem;
    text-align: left;
  }
  
  .cta-modern h2 {
    font-size: 1.8rem;
    text-align: left;
  }
  
  .cta-modern p {
    font-size: 0.95rem;
    text-align: left;
  }
  
  .h1, .h2, .h3, .h4, .h5, .h6 {
    text-align: left;
  }
  
  .lead {
    text-align: left;
    font-size: 1.1rem;
    line-height: 1.6;
  }
  
  .stat-item .counter {
    font-size: 2.5rem;
  }
  
  .pricing-card.featured {
    transform: none;
  }
  
  .navbar-brand {
    font-size: 1.25rem;
  }
  
  .btn-lg {
    padding: 0.75rem 1.5rem;
    font-size: 1rem;
  }
  
  .btn {
    padding: 0.5rem 1rem;
    font-size: 0.9rem;
  }
  
  .card-body {
    padding: 1.25rem;
  }
  
  .contact-info-card {
    padding: 1.25rem;
  }
  
  .guarantee-box {
    padding: 1.5rem;
  }
  
  .guarantee-box .value {
    font-size: 2rem;
  }
  
  .process-step-card {
    margin-bottom: 0.75rem;
  }
  
  .step-header {
    padding: 1rem;
    flex-direction: column;
    text-align: center;
  }
  
  .step-number {
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
  }
  
  .step-content {
    margin-bottom: 0.5rem;
  }
  
  .step-icon {
    font-size: 1.25rem;
  }
  
  .step-details {
    padding: 1rem;
  }
  
  .step-features {
    margin-top: 0.75rem;
  }
  
  .step-features li {
    padding: 0.25rem 0;
    font-size: 0.9rem;
  }
  
  .tech-card-header,
  .quality-card-content {
    padding: 1.5rem;
  }
  
  .tech-icon-wrapper,
  .quality-icon-modern {
    width: 45px;
    height: 45px;
    font-size: 1.1rem;
  }
  
  .tech-number,
  .stat-number {
    font-size: 1.25rem;
  }
  
  .testimonial-card {
    padding: 1.5rem;
  }
  
  .testimonial-avatar {
    width: 60px;
    height: 60px;
    font-size: 1.5rem;
  }
  
  .testimonial-rating {
    font-size: 1rem;
  }
  
  .testimonial-text {
    font-size: 0.95rem;
  }
  
  .swiper-button-next,
  .swiper-button-prev {
    width: 40px;
    height: 40px;
    margin-top: -20px;
  }
  
  .swiper-button-next::after,
  .swiper-button-prev::after {
    font-size: 1rem;
  }
  
  .to-top-modern {
    width: 50px;
    height: 50px;
    bottom: 1rem;
    right: 1rem;
    font-size: 1rem;
  }
  
  .modern-loader {
    padding: 1.5rem;
  }
  
  .loader-content {
    max-width: 250px;
    padding: 0.5rem;
  }
  
  .hexagon-loader {
    width: 50px;
    height: 50px;
    margin-bottom: 0.75rem;
  }
  
  .hexagon-loader i {
    font-size: 1.5rem;
  }
  
  .loader-text {
    font-size: 1.5rem;
    letter-spacing: 1px;
  }
  
  .loader-progress-bar {
    max-width: 180px;
    height: 3px;
  }
  
  .loader-subtitle {
    font-size: 0.9rem;
  }
}

/* Mobile Portrait */
@media (max-width: 576px) {
  .hero-title {
    font-size: 1.8rem;
    line-height: 1.1;
    text-align: left;
  }
  
  .hero-subtitle {
    font-size: 0.95rem;
    text-align: left;
  }
  
  /* Enhanced mobile portrait spacing */
  .section {
    padding: 5.5rem 0;
  }
  
  /* Extra spacing for parallax section on mobile portrait */
  .parallax-section {
    padding: 7rem 0;
    margin: 2.5rem 0;
  }
  
  /* Enhanced mobile portrait typography */
  .h1 {
    font-size: 1.9rem;
    line-height: 1.2;
    font-weight: 700;
  }
  
  .h2 {
    font-size: 1.7rem;
    line-height: 1.3;
    font-weight: 600;
  }
  
  .h3 {
    font-size: 1.5rem;
    line-height: 1.3;
    font-weight: 600;
  }
  
  .h4 {
    font-size: 1.3rem;
    line-height: 1.3;
    font-weight: 600;
  }
  
  .h5 {
    font-size: 1.2rem;
    line-height: 1.4;
    font-weight: 600;
  }
  
  .h6 {
    font-size: 1.1rem;
    line-height: 1.4;
    font-weight: 600;
  }
  
  .lead {
    font-size: 1.05rem;
    line-height: 1.5;
    font-weight: 400;
  }
  
  /* Enhanced statistics for mobile portrait */
  .stat-item .counter {
    font-size: 3rem;
    font-weight: 800;
    line-height: 1;
  }
  
  .counter {
    font-size: 3rem;
    font-weight: 800;
    line-height: 1;
  }
  
  /* Enhanced card titles for mobile portrait */
  .card-title {
    font-size: 1.25rem;
    line-height: 1.3;
    font-weight: 600;
  }
  
  .service-card .card-title {
    font-size: 1.15rem;
    line-height: 1.3;
    font-weight: 600;
  }
  
  /* Enhanced process step titles */
  .step-title {
    font-size: 1.25rem;
    line-height: 1.3;
    font-weight: 600;
  }
  
  .step-number {
    font-size: 1.6rem;
    font-weight: 800;
  }
  
  /* Quality Section Mobile Spacing */
  .quality-section {
    padding: 4.5rem 0;
  }
  
  .quality-section .section {
    padding: 4.5rem 0;
  }
  
  .container {
    text-align: left;
  }
  
  .text-center {
    text-align: left !important;
  }
  
  .h1, .h2, .h3, .h4, .h5, .h6 {
    text-align: left;
    font-size: 1.5rem;
    line-height: 1.3;
  }
  
  .lead {
    text-align: left;
    font-size: 1rem;
    line-height: 1.5;
  }
  
  p {
    font-size: 0.95rem;
    line-height: 1.5;
    text-align: left;
  }
  
  .card-body {
    padding: 1rem;
  }
  
  .contact-info-card {
    padding: 1rem;
  }
  
  .parallax-content h2 {
    font-size: 1.5rem;
  }
  
  .parallax-content p {
    font-size: 0.9rem;
  }
  
  .cta-modern h2 {
    font-size: 1.5rem;
  }
  
  .cta-modern p {
    font-size: 0.9rem;
  }
  
  .stat-item .counter {
    font-size: 2rem;
  }
  
  .navbar-brand {
    font-size: 1.1rem;
  }
  
  .btn-lg {
    padding: 0.6rem 1.2rem;
    font-size: 0.9rem;
  }
  
  .btn {
    padding: 0.4rem 0.8rem;
    font-size: 0.85rem;
  }
  
  .guarantee-box {
    padding: 1.25rem;
  }
  
  .guarantee-box .value {
    font-size: 1.75rem;
  }
  
  .guarantee-box .label {
    font-size: 0.8rem;
  }
  
  .process-step-card {
    margin-bottom: 0.5rem;
  }
  
  .step-header {
    padding: 0.75rem;
  }
  
  .step-number {
    font-size: 1.1rem;
  }
  
  .step-title {
    font-size: 1rem;
  }
  
  .step-subtitle {
    font-size: 0.8rem;
  }
  
  .step-details {
    padding: 0.75rem;
  }
  
  .step-features li {
    font-size: 0.85rem;
  }
  
  .tech-card-header,
  .quality-card-content {
    padding: 1rem;
  }
  
  .tech-icon-wrapper,
  .quality-icon-modern {
    width: 40px;
    height: 40px;
    font-size: 1rem;
  }
  
  .tech-number,
  .stat-number {
    font-size: 1.1rem;
  }
  
  .testimonial-card {
    padding: 1.25rem;
  }
  
  .testimonial-avatar {
    width: 50px;
    height: 50px;
    font-size: 1.25rem;
  }
  
  .testimonial-rating {
    font-size: 0.9rem;
  }
  
  .testimonial-text {
    font-size: 0.9rem;
  }
  
  .swiper-button-next,
  .swiper-button-prev {
    width: 35px;
    height: 35px;
    margin-top: -17.5px;
  }
  
  .swiper-button-next::after,
  .swiper-button-prev::after {
    font-size: 0.9rem;
  }
  
  .to-top-modern {
    width: 45px;
    height: 45px;
    bottom: 0.75rem;
    right: 0.75rem;
    font-size: 0.9rem;
  }
  
  .modern-loader {
    padding: 1rem;
  }
  
  .loader-content {
    max-width: 200px;
    padding: 0.25rem;
  }
  
  .hexagon-loader {
    width: 45px;
    height: 45px;
    margin-bottom: 0.5rem;
  }
  
  .hexagon-loader i {
    font-size: 1.25rem;
  }
  
  .loader-text {
    font-size: 1.25rem;
    letter-spacing: 0.5px;
  }
  
  .loader-progress-bar {
    max-width: 160px;
    height: 3px;
  }
  
  .loader-subtitle {
    font-size: 0.8rem;
  }
  
  .container {
    padding-left: 1rem;
    padding-right: 1rem;
  }
  
  .row {
    margin-left: -0.5rem;
    margin-right: -0.5rem;
  }
  
  .col,
  [class*="col-"] {
    padding-left: 0.5rem;
    padding-right: 0.5rem;
  }
}

/* Extra Small Devices */
@media (max-width: 480px) {
  .hero-title {
    font-size: 1.6rem;
    text-align: left;
  }
  
  .hero-subtitle {
    font-size: 0.9rem;
    text-align: left;
  }
  
  /* Enhanced extra small device spacing */
  .section {
    padding: 5rem 0;
  }
  
  /* Extra spacing for parallax section on extra small devices */
  .parallax-section {
    padding: 6.5rem 0;
    margin: 2rem 0;
  }
  
  /* Enhanced extra small device typography */
  .h1 {
    font-size: 1.7rem;
    line-height: 1.2;
    font-weight: 700;
  }
  
  .h2 {
    font-size: 1.5rem;
    line-height: 1.3;
    font-weight: 600;
  }
  
  .h3 {
    font-size: 1.3rem;
    line-height: 1.3;
    font-weight: 600;
  }
  
  .h4 {
    font-size: 1.2rem;
    line-height: 1.3;
    font-weight: 600;
  }
  
  .h5 {
    font-size: 1.1rem;
    line-height: 1.4;
    font-weight: 600;
  }
  
  .h6 {
    font-size: 1rem;
    line-height: 1.4;
    font-weight: 600;
  }
  
  .lead {
    font-size: 1rem;
    line-height: 1.5;
    font-weight: 400;
  }
  
  /* Enhanced statistics for extra small devices */
  .stat-item .counter {
    font-size: 2.5rem;
    font-weight: 800;
    line-height: 1;
  }
  
  .counter {
    font-size: 2.5rem;
    font-weight: 800;
    line-height: 1;
  }
  
  /* Enhanced card titles for extra small devices */
  .card-title {
    font-size: 1.2rem;
    line-height: 1.3;
    font-weight: 600;
  }
  
  .service-card .card-title {
    font-size: 1.1rem;
    line-height: 1.3;
    font-weight: 600;
  }
  
  /* Enhanced process step titles */
  .step-title {
    font-size: 1.2rem;
    line-height: 1.3;
    font-weight: 600;
  }
  
  .step-number {
    font-size: 1.4rem;
    font-weight: 800;
  }
  
  /* Quality Section Mobile Spacing */
  .quality-section {
    padding: 4rem 0;
  }
  
  .quality-section .section {
    padding: 4rem 0;
  }
  
  .container {
    text-align: left;
  }
  
  .text-center {
    text-align: left !important;
  }
  
  .h1, .h2, .h3, .h4, .h5, .h6 {
    text-align: left;
    font-size: 1.4rem;
    line-height: 1.2;
  }
  
  .lead {
    text-align: left;
    font-size: 0.95rem;
    line-height: 1.4;
  }
  
  p {
    font-size: 0.9rem;
    line-height: 1.4;
    text-align: left;
  }
  
  .card-body {
    padding: 0.75rem;
  }
  
  .contact-info-card {
    padding: 0.75rem;
  }
  
  .parallax-content h2 {
    font-size: 1.3rem;
  }
  
  .parallax-content p {
    font-size: 0.85rem;
  }
  
  .cta-modern h2 {
    font-size: 1.3rem;
  }
  
  .cta-modern p {
    font-size: 0.85rem;
  }
  
  .stat-item .counter {
    font-size: 2.5rem;
  }
  
  .navbar-brand {
    font-size: 1rem;
  }
  
  .btn-lg {
    padding: 0.5rem 1rem;
    font-size: 0.85rem;
  }
  
  .btn {
    padding: 0.35rem 0.7rem;
    font-size: 0.8rem;
  }
  
  .guarantee-box {
    padding: 1rem;
  }
  
  .guarantee-box .value {
    font-size: 1.5rem;
  }
  
  .guarantee-box .label {
    font-size: 0.75rem;
  }
  
  .process-step-card {
    margin-bottom: 0.25rem;
  }
  
  .step-header {
    padding: 0.5rem;
  }
  
  .step-number {
    font-size: 1rem;
  }
  
  .step-title {
    font-size: 0.95rem;
  }
  
  .step-subtitle {
    font-size: 0.75rem;
  }
  
  .step-details {
    padding: 0.5rem;
  }
  
  .step-features li {
    font-size: 0.8rem;
  }
  
  .tech-card-header,
  .quality-card-content {
    padding: 0.75rem;
  }
  
  .tech-icon-wrapper,
  .quality-icon-modern {
    width: 35px;
    height: 35px;
    font-size: 0.9rem;
  }
  
  .tech-number,
  .stat-number {
    font-size: 1rem;
  }
  
  .testimonial-card {
    padding: 1rem;
  }
  
  .testimonial-avatar {
    width: 45px;
    height: 45px;
    font-size: 1.1rem;
  }
  
  .testimonial-rating {
    font-size: 0.85rem;
  }
  
  .testimonial-text {
    font-size: 0.85rem;
  }
  
  .swiper-button-next,
  .swiper-button-prev {
    width: 30px;
    height: 30px;
    margin-top: -15px;
  }
  
  .swiper-button-next::after,
  .swiper-button-prev::after {
    font-size: 0.8rem;
  }
  
  .to-top-modern {
    width: 40px;
    height: 40px;
    bottom: 0.5rem;
    right: 0.5rem;
    font-size: 0.8rem;
  }
  
  .modern-loader {
    padding: 0.75rem;
  }
  
  .loader-content {
    max-width: 180px;
    padding: 0.125rem;
  }
  
  .hexagon-loader {
    width: 40px;
    height: 40px;
    margin-bottom: 0.5rem;
  }
  
  .hexagon-loader i {
    font-size: 1.1rem;
  }
  
  .loader-text {
    font-size: 1.1rem;
    letter-spacing: 0.25px;
  }
  
  .loader-progress-bar {
    max-width: 140px;
    height: 2px;
  }
  
  .loader-subtitle {
    font-size: 0.75rem;
  }
  
  .container {
    padding-left: 0.75rem;
    padding-right: 0.75rem;
  }
  
  .row {
    margin-left: -0.25rem;
    margin-right: -0.25rem;
  }
  
  .col,
  [class*="col-"] {
    padding-left: 0.25rem;
    padding-right: 0.25rem;
  }
}

/* Mobile Typography Improvements */
@media (max-width: 768px) {
  .display-1, .display-2, .display-3, .display-4, .display-5, .display-6 {
    text-align: left;
    line-height: 1.2;
  }
  
  .card-title {
    text-align: left;
    font-size: 1.2rem;
    line-height: 1.3;
  }
  
  .card-text {
    text-align: left;
    font-size: 0.95rem;
    line-height: 1.5;
  }
  
  .btn {
    font-size: 0.9rem;
    padding: 0.6rem 1.2rem;
  }
  
  .btn-lg {
    font-size: 1rem;
    padding: 0.8rem 1.5rem;
  }
  
  .navbar-brand {
    font-size: 1.1rem;
  }
  
  .nav-link {
    font-size: 0.95rem;
    text-align: left;
  }
  
  /* Additional Mobile Spacing */
  .mb-5 {
    margin-bottom: 2rem !important;
  }
  
  .mb-4 {
    margin-bottom: 1.5rem !important;
  }
  
  .mb-3 {
    margin-bottom: 1rem !important;
  }
  
  .mt-5 {
    margin-top: 2rem !important;
  }
  
  .mt-4 {
    margin-top: 1.5rem !important;
  }
  
  .mt-3 {
    margin-top: 1rem !important;
  }
  
  .py-5 {
    padding-top: 2rem !important;
    padding-bottom: 2rem !important;
  }
  
  .py-4 {
    padding-top: 1.5rem !important;
    padding-bottom: 1.5rem !important;
  }
}

/* Mobile Touch Improvements */
@media (max-width: 768px) {
  .btn {
    min-height: 44px;
    min-width: 44px;
  }
  
  .swiper-button-next,
  .swiper-button-prev {
    min-height: 44px;
    min-width: 44px;
  }
  
  .to-top-modern {
    min-height: 44px;
    min-width: 44px;
  }
  
  .navbar-toggler {
    min-height: 44px;
    min-width: 44px;
  }
  
  .offcanvas-header .btn-close {
    min-height: 44px;
    min-width: 44px;
  }
  
  .process-step-card {
    cursor: pointer;
    -webkit-tap-highlight-color: transparent;
  }
  
  .faq-question {
    min-height: 44px;
    cursor: pointer;
    -webkit-tap-highlight-color: transparent;
  }
  
  .gallery .thumb {
    cursor: pointer;
    -webkit-tap-highlight-color: transparent;
  }
}

/* Performance Optimizations */
@media (max-width: 768px) {
  .parallax {
    background-attachment: scroll;
  }
  
  .hero-background {
    background-attachment: scroll;
  }
  
  .swiper {
    will-change: transform;
  }
  
  .testimonial-card {
    will-change: transform;
  }
  
  .process-step-card {
    will-change: transform;
  }
  
  /* Mobile Loader Optimizations */
  .modern-loader {
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    overflow: hidden;
  }
  
  .modern-loader.fade-out {
    animation: loaderFadeOut 0.8s ease-in-out forwards;
    -webkit-animation: loaderFadeOut 0.8s ease-in-out forwards;
  }
  
  .hexagon-loader {
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
  }
  
  .progress-fill {
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
  }
}

/* Modern Enhancements */
.eyebrow {
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 1px;
  color: rgba(255, 255, 255, 0.8);
}

.trust {
  font-size: 0.85rem;
  line-height: 1.4;
}

.guarantee-box {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  padding: 2rem;
  text-align: center;
  border-radius: 0;
}

.guarantee-box .label {
  font-size: 0.9rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 0.5rem;
}

.guarantee-box .value {
  font-size: 3rem;
  font-weight: 800;
  color: #fbbf24;
  line-height: 1;
}

/* Glass Effect */
.glass {
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
}

/* WhatsApp Button */
.btn-whatsapp {
  background: #25d366;
  color: #fff;
  border: none;
  transition: all 0.3s ease;
}

.btn-whatsapp:hover {
  background: #128c7e;
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(37, 211, 102, 0.3);
}

/* Accessibility */
@media (prefers-reduced-motion: reduce) {
  * {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
  
  .parallax-section {
    background-attachment: scroll;
  }
  
  .hero {
    background-attachment: scroll;
  }
  
  .modern-loader {
    display: none !important;
  }
}

/* Focus States */
.btn:focus,
.nav-link:focus,
.form-control:focus {
  outline: 2px solid var(--z-600);
  outline-offset: 2px;
}


/* Consultation Section Styles */
.consultation-content {
  padding-right: 2rem;
}

.consultation-title {
  color: var(--z-800);
  font-weight: 700;
  font-size: 1.75rem;
  margin-bottom: 1rem;
}

.consultation-price {
  margin-bottom: 2rem;
}

.price-value {
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--z-600);
  display: block;
  margin-bottom: 0.25rem;
}

.price-note {
  color: var(--z-500);
  font-size: 1rem;
  font-weight: 500;
}

.consultation-features {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.feature-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.5rem 0;
  transition: all 0.3s ease;
}

.feature-item:hover {
  transform: translateX(5px);
}

.feature-item i {
  font-size: 1.1rem;
  transition: all 0.3s ease;
}

.feature-item:hover i {
  transform: scale(1.1);
}

.feature-item span {
  color: var(--z-700);
  font-weight: 500;
  font-size: 1rem;
  transition: all 0.3s ease;
}

.feature-item:hover span {
  color: var(--z-800);
  font-weight: 600;
}

.consultation-cta {
  padding: 1rem 0;
}

.consultation-cta .btn {
  width: 100%;
  padding: 1rem 1.5rem;
  font-weight: 600;
  transition: all 0.3s ease;
}

.consultation-cta .btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

/* Responsive Consultation Section */
@media (max-width: 768px) {
  .consultation-content {
    padding-right: 0;
    margin-bottom: 2rem;
  }
  
  .consultation-title {
    font-size: 1.5rem;
    text-align: center;
  }
  
  .consultation-price {
    text-align: center;
    margin-bottom: 1.5rem;
  }
  
  .price-value {
    font-size: 2rem;
  }
  
  .consultation-features {
    gap: 0.75rem;
  }
  
  .feature-item {
    gap: 0.5rem;
    padding: 0.4rem 0;
  }
  
  .feature-item span {
    font-size: 0.95rem;
  }
  
  .consultation-cta {
    padding: 1.5rem 0;
  }
}

@media (max-width: 576px) {
  .consultation-title {
    font-size: 1.25rem;
  }
  
  .price-value {
    font-size: 1.75rem;
  }
  
  .price-note {
    font-size: 0.9rem;
  }
  
  .feature-item {
    gap: 0.4rem;
    padding: 0.3rem 0;
  }
  
  .feature-item span {
    font-size: 0.9rem;
  }
  
  .consultation-cta {
    padding: 1rem 0;
  }
  
  .consultation-cta .btn {
    padding: 0.75rem 1rem;
    font-size: 0.95rem;
  }
}

/* Print Styles */
@media print {
  .navbar,
  .to-top,
  .loader {
    display: none !important;
  }
  
  .hero {
    background: none !important;
    color: #000 !important;
  }
  
  .section {
    padding: 1rem 0;
  }
}

/* Materials Content Layout */
.materials-content {
  margin-top: 2rem;
}

/* Materials List Styles - Left Side */
.materials-list {
  padding-right: 2rem;
}

.materials-items {
  list-style: none;
  padding: 0;
  margin: 0;
}

.material-item {
  padding: 1.5rem 0;
  border-bottom: 1px solid #e9ecef;
  transition: all 0.3s ease;
}

.material-item:last-child {
  border-bottom: none;
}

.material-item:hover {
  padding-left: 1rem;
}

.material-content h5 {
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
  color: var(--dark);
}

.material-content p {
  font-size: 1.1rem;
  color: var(--primary);
  font-weight: 500;
  margin-bottom: 0.5rem;
}

.material-desc {
  font-size: 1rem;
  color: var(--text-muted);
  line-height: 1.5;
}

/* Materials Slider Styles - Right Side */
.materials-slider-container {
  padding-left: 2rem;
}

.materials-swiper {
  height: 500px;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.materials-slide {
  position: relative;
  height: 100%;
  overflow: hidden;
}

.materials-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition: transform 0.3s ease;
}

.materials-slide:hover .materials-image {
  transform: scale(1.05);
}

.materials-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(transparent, rgba(0, 0, 0, 0.8));
  color: white;
  padding: 2rem;
  transform: translateY(100%);
  transition: transform 0.3s ease;
}

.materials-slide:hover .materials-overlay {
  transform: translateY(0);
}

.materials-overlay h3 {
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.materials-overlay p {
  font-size: 1rem;
  opacity: 0.9;
  margin: 0;
}

/* Swiper Navigation */
.materials-swiper .swiper-button-next,
.materials-swiper .swiper-button-prev {
  color: white;
  background: rgba(0, 0, 0, 0.5);
  width: 44px;
  height: 44px;
  border-radius: 50%;
  transition: all 0.3s ease;
}

.materials-swiper .swiper-button-next:hover,
.materials-swiper .swiper-button-prev:hover {
  background: var(--primary);
  transform: scale(1.1);
}

.materials-swiper .swiper-pagination-bullet {
  background: rgba(255, 255, 255, 0.5);
  opacity: 1;
}

.materials-swiper .swiper-pagination-bullet-active {
  background: var(--primary);
}

/* Responsive */
@media (max-width: 992px) {
  .materials-list {
    padding-right: 0;
    margin-bottom: 2rem;
  }
  
  .materials-slider-container {
    padding-left: 0;
  }
}

@media (max-width: 768px) {
  .materials-swiper {
    height: 400px;
  }
  
  .materials-overlay {
    padding: 1.5rem;
  }
  
  .materials-overlay h3 {
    font-size: 1.25rem;
  }
  
  .materials-overlay p {
    font-size: 0.9rem;
  }
  
  .material-content h5 {
    font-size: 1.25rem;
  }
  
  .material-content p {
    font-size: 1rem;
  }
  
  .material-desc {
    font-size: 0.9rem;
  }
}

/* ========================================
   COMPREHENSIVE MOBILE FIXES
   ======================================== */

/* Mobile Container and Layout Fixes */
@media (max-width: 768px) {
  /* Prevent horizontal scroll */
  body {
    overflow-x: hidden;
    width: 100%;
  }
  
  html {
    overflow-x: hidden;
  }
  
  /* Fix container padding */
  .container {
    padding-left: 1rem;
    padding-right: 1rem;
    max-width: 100%;
    overflow-x: hidden;
  }
  
  /* Fix mobile navigation */
  .modern-nav {
    padding: 0.5rem 1rem;
    position: sticky;
    top: 0;
    z-index: 1030;
    width: 100%;
    max-width: 100%;
    overflow-x: hidden;
  }
  
  /* Fix mobile navigation container */
  .navbar {
    width: 100%;
    max-width: 100%;
    overflow-x: hidden;
  }
  
  .navbar .container {
    width: 100%;
    max-width: 100%;
    overflow-x: hidden;
    padding-left: 1rem;
    padding-right: 1rem;
  }
  
  .navbar .d-flex {
    width: 100%;
    max-width: 100%;
    overflow-x: hidden;
    flex-wrap: nowrap;
    justify-content: space-between;
    align-items: center;
  }
  
  .navbar-container {
    width: 100%;
    max-width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: nowrap;
    overflow-x: hidden;
  }
  
  /* Fix mobile hero section */
  .hero {
    min-height: 100vh;
    padding: 2rem 0;
    display: flex;
    align-items: center;
  }
  
  .hero-content {
    padding: 1rem 0;
    width: 100%;
  }
  
  /* Fix mobile sections spacing */
  .section {
    padding: 3rem 0;
  }
  
  /* Fix mobile cards */
  .card {
    margin-bottom: 1.5rem;
    border-radius: 12px;
  }
  
  /* Fix mobile forms */
  .form-control {
    font-size: 16px; /* Prevents zoom on iOS */
    padding: 0.75rem 1rem;
    border-radius: 8px;
  }
  
  /* Fix mobile buttons */
  .btn {
    min-height: 44px;
    padding: 0.75rem 1.5rem;
    font-size: 0.9rem;
    border-radius: 8px;
  }
  
  /* Fix mobile navigation toggler */
  .modern-toggler {
    width: 44px;
    height: 44px;
    padding: 0.5rem;
    flex-shrink: 0;
    margin-left: 0.5rem;
  }
  
  .toggler-line {
    width: 24px;
    height: 3px;
    margin: 5px 0;
  }
  
  /* Fix mobile navigation brand */
  .navbar-brand {
    flex-shrink: 1;
    min-width: 0;
    font-size: 1.1rem;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
  }
  
  /* Fix mobile navigation buttons */
  .btn-whatsapp, .btn-primary {
    display: none !important;
  }
  
  /* Ensure hamburger menu is visible */
  .mobile-menu-toggle {
    display: flex !important;
  }
  
  /* Fix mobile navigation spacing */
  .navbar-container > * {
    flex-shrink: 0;
  }
  
  .navbar-container .navbar-brand {
    flex-shrink: 1;
    min-width: 0;
  }
  
  /* Fix mobile offcanvas */
  .offcanvas {
    width: 100% !important;
  }
  
  .offcanvas-body {
    padding: 2rem 1rem;
  }
  
  /* Fix mobile language switcher */
  .language-switcher {
    margin-left: 0.5rem;
    flex-shrink: 0;
    max-width: 80px;
  }
  
  .language-switcher .btn-group {
    width: 100%;
    max-width: 80px;
    overflow: hidden;
  }
  
  .btn-lang {
    padding: 0.3rem 0.4rem;
    font-size: 0.75rem;
    white-space: nowrap;
    flex: 1;
    min-width: 0;
  }
  
  /* Fix mobile navigation items */
  .navbar-nav {
    width: 100%;
    flex-direction: column;
    align-items: stretch;
  }
  
  .nav-item {
    width: 100%;
    margin: 0;
  }
  
  .nav-link {
    width: 100%;
    padding: 1rem;
    text-align: left;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
    font-size: 1rem;
  }
  
  /* Fix mobile offcanvas positioning */
  .offcanvas {
    width: 100% !important;
    max-width: 100% !important;
  }
  
  .offcanvas-body {
    padding: 1rem;
    width: 100%;
    max-width: 100%;
    overflow-x: hidden;
  }
  
  /* Fix mobile buttons in offcanvas */
  .offcanvas-body .btn {
    width: 100%;
    margin-bottom: 0.5rem;
    padding: 0.75rem 1rem;
  }
  
  /* Fix mobile materials section */
  .materials-content .row {
    flex-direction: column-reverse;
  }
  
  .materials-list {
    padding-right: 0;
    margin-bottom: 2rem;
  }
  
  .materials-slider-container {
    padding-left: 0;
  }
  
  /* Fix mobile gallery */
  .gallery-thumb {
    margin-bottom: 1rem;
  }
  
  /* Fix mobile process section */
  .process-step-card {
    margin-bottom: 1.5rem;
  }
  
  /* Fix mobile FAQ */
  .faq-item {
    margin-bottom: 1rem;
  }
  
  .faq-question {
    padding: 1rem;
    font-size: 1rem;
  }
  
  /* Fix mobile contact form */
  .contact-form {
    padding: 1.5rem;
  }
  
  /* Fix mobile footer */
  .footer {
    padding: 2rem 0 1rem;
  }
  
  .footer-content {
    text-align: center;
  }
  
  /* Fix mobile statistics */
  .stat-item {
    margin-bottom: 1.5rem;
    text-align: center;
  }
  
  /* Fix mobile services */
  .service-card {
    margin-bottom: 2rem;
  }
  
  /* Fix mobile trust strip */
  .trust-strip {
    padding: 0.75rem 1rem;
    flex-wrap: wrap;
    gap: 0.5rem;
  }
  
  .trust-item {
    font-size: 0.8rem;
    margin-bottom: 0.25rem;
  }
}

/* Extra Small Mobile Devices */
@media (max-width: 480px) {
  /* Prevent horizontal scroll on small screens */
  body, html {
    overflow-x: hidden;
    width: 100%;
    max-width: 100%;
  }
  
  .container {
    padding-left: 0.75rem;
    padding-right: 0.75rem;
    max-width: 100%;
    overflow-x: hidden;
  }
  
  .hero-title {
    font-size: 1.6rem;
    line-height: 1.1;
  }
  
  .hero-subtitle {
    font-size: 0.9rem;
  }
  
  .section {
    padding: 2.5rem 0;
  }
  
  .btn {
    padding: 0.6rem 1.2rem;
    font-size: 0.85rem;
  }
  
  .card {
    margin-bottom: 1rem;
  }
  
  .modern-nav {
    padding: 0.4rem 0.75rem;
    width: 100%;
    max-width: 100%;
    overflow-x: hidden;
  }
  
  .navbar-brand {
    font-size: 0.9rem;
    max-width: 120px;
    overflow: hidden;
    text-overflow: ellipsis;
  }
  
  /* Fix very small screen navigation */
  .navbar-container {
    width: 100%;
    max-width: 100%;
    overflow-x: hidden;
  }
  
  .language-switcher {
    margin-left: 0.25rem;
  }
  
  .btn-lang {
    padding: 0.2rem 0.4rem;
    font-size: 0.7rem;
  }
  
  .modern-toggler {
    width: 40px;
    height: 40px;
    padding: 0.4rem;
    margin-left: 0.25rem;
  }
  
  .toggler-line {
    width: 20px;
    height: 2px;
    margin: 4px 0;
  }
  
  .materials-swiper {
    height: 300px;
  }
  
  .materials-overlay {
    padding: 1rem;
  }
  
  .materials-overlay h3 {
    font-size: 1.1rem;
  }
  
  .materials-overlay p {
    font-size: 0.8rem;
  }
}

/* Mobile Landscape Fixes */
@media (max-width: 768px) and (orientation: landscape) {
  .hero {
    min-height: 100vh;
    padding: 1rem 0;
  }
  
  .hero-title {
    font-size: 2rem;
    margin-bottom: 1rem;
  }
  
  .hero-subtitle {
    font-size: 1rem;
    margin-bottom: 1.5rem;
  }
  
  .section {
    padding: 2rem 0;
  }
}

/* Mobile Performance Optimizations */
@media (max-width: 768px) {
  /* Disable animations on mobile for better performance */
  .swiper {
    will-change: auto;
  }
  
  .card {
    will-change: auto;
  }
  
  /* Optimize images */
  img {
    max-width: 100%;
    height: auto;
  }
  
  /* Fix touch targets */
  .btn, .nav-link, .form-control {
    min-height: 44px;
    min-width: 44px;
  }
  
  /* Fix scrolling issues */
  body {
    -webkit-overflow-scrolling: touch;
  }
  
  /* Fix viewport issues */
  html {
    -webkit-text-size-adjust: 100%;
  }
  
  /* Final horizontal scroll prevention */
  * {
    max-width: 100%;
    box-sizing: border-box;
  }
  
  .row {
    margin-left: 0;
    margin-right: 0;
  }
  
  .col, .col-* {
    padding-left: 0.5rem;
    padding-right: 0.5rem;
  }
  
  /* Ensure all containers respect viewport width */
  .container, .container-fluid {
    max-width: 100vw;
    overflow-x: hidden;
  }
}

/* Modern Navbar Mobile Responsive Styles */
@media (max-width: 991px) {
  .navbar .container-fluid {
    padding: 0 1.5rem;
  }
  
  .logo-img {
    height: 70px;
  }
  
  .language-selector {
    gap: 0;
  }
  
  .lang-btn {
    padding: 0.4rem 0.6rem;
    font-size: 0.75rem;
    min-width: 35px;
  }
}

@media (max-width: 768px) {
  .modern-header {
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(20px);
    box-shadow: 0 2px 16px rgba(0, 0, 0, 0.08);
  }
  
  .navbar .container-fluid {
    padding: 0 1rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    flex-wrap: nowrap;
  }
  
  .navbar-brand {
    flex-shrink: 0;
    max-width: none;
    order: 1;
  }
  
  .logo-img {
    height: 70px;
  }
  
  .navbar-actions {
    gap: 0.5rem;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    order: 2;
    margin-left: auto;
  }
  
  .language-selector {
    display: none!important;
    padding: 1px;
    flex-shrink: 0;
  }
  
  .lang-btn {
    padding: 0.35rem 0.5rem;
    font-size: 0.7rem;
    min-width: 32px;
  }
  
  .mobile-menu-toggle {
    padding: 0.4rem;
    flex-shrink: 0;
    order: 3;
  }
  
  .hamburger-line {
    width: 22px;
    height: 2px;
  }
  
  /* Mobile CTA buttons - WhatsApp only, icon only */
  .btn-whatsapp {
    padding: 0.4rem;
    min-width: 36px;
    height: 36px;
    justify-content: center;
    display: flex !important;
  }
  
  .btn-whatsapp {
    display: none !important;
  }
  
  .btn-whatsapp .btn-icon {
    display: flex !important;
    align-items: center;
    justify-content: center;
  }
  
  .btn-whatsapp i {
    font-size: 1rem;
    display: block !important;
  }
  
  /* Hide contact button on mobile */
  .btn-primary {
    display: none !important;
  }
}

@media (max-width: 576px) {
  .navbar .container-fluid {
    padding: 0 0.75rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    flex-wrap: nowrap;
  }
  
  .navbar-brand {
    flex-shrink: 0;
    max-width: none;
    order: 1;
  }
  
  .logo-img {
    height: 70px;
  }
  
  .navbar-actions {
    gap: 0.4rem;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    order: 2;
    margin-left: auto;
  }
  
  .language-selector {
    display: none!important;
    padding: 1px;
    flex-shrink: 0;
  }
  
  .lang-btn {
    padding: 0.3rem 0.4rem;
    font-size: 0.65rem;
    min-width: 30px;
  }
  
  .mobile-menu-toggle {
    position: absolute;
    right: 10px;
    flex-shrink: 0;
    order: 3;
  }
  
  /* Mobile CTA buttons - WhatsApp only, icon only */
  .btn-whatsapp {
    padding: 0.35rem;
    min-width: 32px;
    height: 32px;
    justify-content: center;
    display: flex !important;
  }
  
  .btn-whatsapp  {
    display: none !important;
  }
  
  .btn-whatsapp .btn-icon {
    display: flex !important;
    align-items: center;
    justify-content: center;
  }
  
  .btn-whatsapp i {
    font-size: 0.9rem;
    display: block !important;
  }
  
  /* Hide contact button on mobile */
  .btn-primary {
    display: none !important;
  }
  
  .mobile-menu {
    width: 100%;
    max-width: 300px;
  }
  
  .mobile-menu-header {
    padding: 1.25rem 1.5rem;
    background: #fff;
  }
  
  .mobile-menu-body {
    padding: 1.5rem;
    background: #fff;
  }
  
  .mobile-logo {
    height: 70px;
  }
}
