/* ===== MODERN VARIABLES & RESET ===== */
:root {
  /* Color Palette - Custom Blue & Orange Tones */
  --primary-blue: #36475f;         /* Custom Blue */
  --secondary-blue: #4a5d78;       /* Lighter Blue */
  --light-blue: #6b7fa3;          /* Light Blue */
  --accent-blue: #e8ecf2;         /* Very Light Blue */
  
  --primary-orange: #f4971d;       /* Custom Orange */
  --secondary-orange: #f6a835;     /* Lighter Orange */
  --light-orange: #f8c878;        /* Light Orange */
  --accent-orange: #fef7ec;        /* Very Light Orange */
  
  /* Neutral Colors */
  --white: #ffffff;
  --black: #0f172a;
  --gray-50: #f8fafc;
  --gray-100: #f1f5f9;
  --gray-200: #e2e8f0;
  --gray-300: #cbd5e1;
  --gray-400: #94a3b8;
  --gray-500: #64748b;
  --gray-600: #475569;
  --gray-700: #334155;
  --gray-800: #1e293b;
  --gray-900: #0f172a;
  
  /* Gradients */
  --gradient-primary: linear-gradient(135deg, var(--primary-orange) 0%, var(--secondary-orange) 100%);
  --gradient-secondary: linear-gradient(135deg, var(--primary-blue) 0%, var(--secondary-blue) 100%);
  --gradient-accent: linear-gradient(135deg, var(--light-orange) 0%, var(--light-blue) 100%);
  --gradient-hero: linear-gradient(135deg, rgba(54, 71, 95, 0.9) 0%, rgba(244, 151, 29, 0.8) 100%);
  --gradient-text: linear-gradient(45deg, var(--primary-orange), var(--secondary-blue));
  
  /* Shadows */
  --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
  --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
  --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
  --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
  --shadow-2xl: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
  --shadow-glow: 0 0 30px rgba(244, 151, 29, 0.3);
  --shadow-blue-glow: 0 0 30px rgba(54, 71, 95, 0.3);
  
  /* Typography */
  --font-primary: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --font-heading: 'Space Grotesk', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  
  /* Spacing */
  --border-radius: 16px;
  --border-radius-lg: 24px;
  --border-radius-xl: 32px;
  --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-slow: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* Remove outline padrão dos elementos clicáveis */
*:focus {
  outline: none !important;
  box-shadow: none !important;
}

button:focus,
a:focus,
input:focus,
textarea:focus,
select:focus,
[tabindex]:focus {
  outline: none !important;
  box-shadow: none !important;
  border-color: transparent !important;
}

/* Remove qualquer borda ou outline de clique */
button:active,
button:focus,
a:active,
a:focus,
.nav-item:focus,
.nav-item:active,
.mobile-hamburger:focus,
.mobile-hamburger:active {
  outline: none !important;
  border: none !important;
  box-shadow: none !important;
}

/* Remover qualquer borda laranja de elementos específicos */
.btn-modern:focus,
.btn-modern:active,
.carousel-btn:focus,
.carousel-btn:active,
.project-card:focus,
.service-card:focus,
[role="button"]:focus,
[role="button"]:active {
  outline: none !important;
  border-color: transparent !important;
  box-shadow: none !important;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: var(--font-primary);
  line-height: 1.6;
  color: var(--gray-900);
  background: var(--gray-50);
  overflow-x: hidden;
  position: relative;
}

body::before {
  content: '';
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: 
    radial-gradient(circle at 20% 50%, rgba(234, 88, 12, 0.02) 0%, transparent 50%),
    radial-gradient(circle at 80% 20%, rgba(59, 130, 246, 0.02) 0%, transparent 50%);
  pointer-events: none;
  z-index: -1;
}

.container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ===== FLOATING NAVIGATION ===== */
.floating-nav {
  position: fixed;
  top: 24px;
  left: 50%;
  transform: translateX(-50%) translateY(-20px);
  background: rgba(54, 71, 95, 0.95);
  backdrop-filter: blur(20px) saturate(180%);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--border-radius-xl);
  padding: 12px 24px;
  display: flex;
  align-items: center;
  gap: 32px;
  z-index: 1000;
  box-shadow: var(--shadow-xl);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  opacity: 0;
  pointer-events: none;
}

.floating-nav.visible {
  opacity: 1;
  transform: translateX(-50%) translateY(0);
  pointer-events: all;
}

.floating-nav:hover,
.floating-nav.visible:hover {
  box-shadow: var(--shadow-2xl);
  background: rgba(54, 71, 95, 0.98);
}

.nav-brand {
  display: flex;
  align-items: center;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.nav-brand:hover {
  transform: scale(1.05);
}

.nav-brand img {
  height: 45px;
  width: auto;
  filter: drop-shadow(0 4px 12px rgba(0, 0, 0, 0.15));
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.nav-brand:hover img {
  filter: drop-shadow(0 6px 20px rgba(0, 0, 0, 0.25)) brightness(1.1);
}

.nav-items {
  display: flex;
  gap: 8px;
}

.nav-item {
  position: relative;
  padding: 12px 16px;
  color: var(--white);
  text-decoration: none;
  border-radius: var(--border-radius);
  transition: var(--transition);
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 48px;
  min-height: 48px;
}

.nav-item::before {
  content: attr(data-text);
  position: absolute;
  bottom: -40px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--gray-900);
  color: var(--white);
  padding: 8px 12px;
  border-radius: 8px;
  font-size: 12px;
  white-space: nowrap;
  opacity: 0;
  pointer-events: none;
  transition: var(--transition);
  z-index: 10;
}

.nav-item::after {
  content: '';
  position: absolute;
  bottom: -32px;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 0;
  border-left: 6px solid transparent;
  border-right: 6px solid transparent;
  border-bottom: 6px solid var(--gray-900);
  opacity: 0;
  transition: var(--transition);
  z-index: 10;
}

.nav-item:hover::before,
.nav-item:hover::after {
  opacity: 1;
}

.nav-item:hover {
  background: var(--accent-blue);
  color: var(--primary-blue);
  transform: translateY(-2px);
}

.nav-item.active {
  background: var(--gradient-primary);
  color: var(--white);
  box-shadow: var(--shadow-glow);
}

.nav-social {
  display: flex;
  gap: 8px;
}

.nav-social a {
  padding: 12px;
  color: var(--white);
  border-radius: var(--border-radius);
  transition: var(--transition);
}

.nav-social a:hover {
  background: var(--accent-orange);
  color: var(--primary-orange);
  transform: translateY(-2px);
}

/* ===== MOBILE HEADER & SIDEBAR ===== */
.mobile-header {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 70px;
  background: rgba(54, 71, 95, 0.95);
  backdrop-filter: blur(20px) saturate(180%);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  z-index: 1000;
  transition: var(--transition);
}

.mobile-header-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
  padding: 0 20px;
  max-width: 100%;
}

.mobile-header-logo {
  transition: all 0.3s ease;
}

.mobile-header-logo img {
  height: 42px;
  filter: drop-shadow(0 3px 8px rgba(0, 0, 0, 0.15));
  transition: all 0.3s ease;
}

.mobile-header-logo:hover img {
  transform: scale(1.02);
  filter: drop-shadow(0 4px 12px rgba(0, 0, 0, 0.2)) brightness(1.05);
}

.mobile-header-toggle {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  width: 24px;
  height: 18px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
  z-index: 1001;
}

.mobile-header-toggle .hamburger-line {
  width: 100%;
  height: 2px;
  background: var(--white);
  transition: var(--transition);
  transform-origin: center;
}

.mobile-header-toggle.active .hamburger-line:nth-child(1) {
  transform: rotate(45deg) translate(6px, 6px);
}

.mobile-header-toggle.active .hamburger-line:nth-child(2) {
  opacity: 0;
}

.mobile-header-toggle.active .hamburger-line:nth-child(3) {
  transform: rotate(-45deg) translate(6px, -6px);
}

.mobile-sidebar {
  position: fixed;
  top: 0;
  right: -320px;
  width: 320px;
  height: 100vh;
  background: rgba(54, 71, 95, 0.98);
  backdrop-filter: blur(20px);
  z-index: 1001;
  transition: var(--transition-slow);
  overflow-y: auto;
}

.mobile-sidebar.active {
  right: 0;
}

.mobile-sidebar-content {
  padding: 20px;
  height: 100%;
  display: flex;
  flex-direction: column;
}

.mobile-sidebar-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 40px;
  padding-bottom: 20px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.mobile-sidebar-header img {
  height: 32px;
}

.mobile-sidebar-close {
  background: none;
  border: none;
  color: var(--white);
  font-size: 20px;
  cursor: pointer;
  padding: 8px;
  border-radius: var(--border-radius);
  transition: var(--transition);
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.mobile-sidebar-close:hover {
  background: rgba(255, 255, 255, 0.1);
  transform: rotate(90deg);
}

.mobile-sidebar-nav {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.mobile-sidebar-item {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 16px 20px;
  color: var(--white);
  text-decoration: none;
  border-radius: var(--border-radius);
  transition: var(--transition);
  font-weight: 500;
  font-size: 16px;
  position: relative;
  overflow: hidden;
}

.mobile-sidebar-item::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 4px;
  height: 100%;
  background: var(--primary-orange);
  transform: scaleY(0);
  transition: var(--transition);
}

.mobile-sidebar-item:hover::before {
  transform: scaleY(1);
}

.mobile-sidebar-item:hover {
  background: rgba(244, 151, 29, 0.1);
  color: var(--primary-orange);
  transform: translateX(8px);
}

.mobile-sidebar-item.active {
  background: rgba(244, 151, 29, 0.2);
  color: var(--primary-orange);
}

.mobile-sidebar-item.active::before {
  transform: scaleY(1);
}

.mobile-sidebar-item i {
  width: 20px;
  text-align: center;
  font-size: 16px;
}

.mobile-sidebar-footer {
  margin-top: auto;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.mobile-sidebar-social {
  display: flex;
  justify-content: center;
  gap: 16px;
  margin-bottom: 20px;
}

.mobile-sidebar-social a {
  width: 44px;
  height: 44px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 18px;
  transition: var(--transition);
}

.mobile-sidebar-social a:hover {
  background: var(--gradient-primary);
  transform: translateY(-2px);
}

.mobile-sidebar-copy {
  text-align: center;
  color: rgba(255, 255, 255, 0.6);
  font-size: 12px;
  margin: 0;
}

.mobile-sidebar-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background: rgba(0, 0, 0, 0.5);
  z-index: 999;
  opacity: 0;
  visibility: hidden;
  transition: var(--transition-slow);
}

.mobile-sidebar-overlay.active {
  opacity: 1;
  visibility: visible;
}

/* Hide old mobile menu elements */
.mobile-menu-toggle,
.mobile-menu-overlay {
  display: none !important;
}

/* ===== MODERN BUTTONS ===== */
.btn-modern {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 16px 32px;
  border: none;
  border-radius: var(--border-radius);
  font-family: var(--font-primary);
  font-weight: 600;
  font-size: 16px;
  text-decoration: none;
  transition: var(--transition);
  cursor: pointer;
  position: relative;
  overflow: hidden;
}

.btn-modern.primary {
  background: var(--gradient-primary);
  color: var(--white);
  box-shadow: var(--shadow-lg);
}

.btn-modern.primary:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-xl), var(--shadow-glow);
}

.btn-modern.secondary {
  background: var(--primary-blue);
  color: var(--white);
  border: 2px solid var(--primary-blue);
  box-shadow: var(--shadow-lg), var(--shadow-blue-glow);
}

.btn-modern.secondary:hover {
  background: var(--primary-blue);
  color: var(--white);
  transform: translateY(-3px) scale(1.05);
  box-shadow: var(--shadow-xl), var(--shadow-blue-glow);
}

.btn-modern.full-width {
  width: 100%;
  justify-content: center;
}

/* ===== HERO SECTION ===== */
.hero-advanced {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.hero-background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}

.animated-shapes {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
}

.shape {
  position: absolute;
  border-radius: 50%;
  filter: blur(1px);
  animation: float 20s ease-in-out infinite;
}

.shape-1 {
  width: 200px;
  height: 200px;
  background: linear-gradient(45deg, rgba(234, 88, 12, 0.1), rgba(59, 130, 246, 0.1));
  top: 10%;
  left: 10%;
  animation-delay: 0s;
}

.shape-2 {
  width: 150px;
  height: 150px;
  background: linear-gradient(45deg, rgba(59, 130, 246, 0.1), rgba(234, 88, 12, 0.1));
  top: 60%;
  right: 10%;
  animation-delay: -5s;
}

.shape-3 {
  width: 100px;
  height: 100px;
  background: linear-gradient(45deg, rgba(234, 88, 12, 0.15), transparent);
  top: 30%;
  right: 30%;
  animation-delay: -10s;
}

.shape-4 {
  width: 120px;
  height: 120px;
  background: linear-gradient(45deg, rgba(59, 130, 246, 0.15), transparent);
  bottom: 20%;
  left: 20%;
  animation-delay: -15s;
}

@keyframes float {
  0%, 100% { transform: translateY(0px) translateX(0px) rotate(0deg); }
  25% { transform: translateY(-20px) translateX(10px) rotate(90deg); }
  50% { transform: translateY(0px) translateX(20px) rotate(180deg); }
  75% { transform: translateY(20px) translateX(10px) rotate(270deg); }
}

.hero-video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.6) contrast(1.1);
}

.hero-content-container {
  position: relative;
  z-index: 3;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 100vh;
  background: rgba(54, 71, 95, 0.1);
  backdrop-filter: blur(10px) saturate(180%);
  -webkit-backdrop-filter: blur(10px) saturate(180%);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.hero-content {
  text-align: center;
  color: var(--white);
  max-width: 1000px;
  padding: 0 24px;
}

.hero-logo {
  margin-bottom: 32px;
  animation: heroLogoEntrance 1.5s ease-out;
}

.hero-brand-logo {
  height: 80px;
  width: auto;
  filter: drop-shadow(0 8px 32px rgba(0, 0, 0, 0.3));
  transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.hero-brand-logo:hover {
  transform: scale(1.05);
  filter: drop-shadow(0 12px 48px rgba(0, 0, 0, 0.4)) brightness(1.1);
}

@keyframes heroLogoEntrance {
  0% {
    opacity: 0;
    transform: translateY(-30px) scale(0.8);
  }
  60% {
    opacity: 1;
    transform: translateY(5px) scale(1.05);
  }
  100% {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 24px;
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(10px);
  border-radius: var(--border-radius-xl);
  margin-bottom: 32px;
  font-size: 16px;
  font-weight: 500;
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.hero-title {
  font-family: var(--font-heading);
  font-size: clamp(3rem, 8vw, 6rem);
  font-weight: 700;
  line-height: 1.1;
  margin-bottom: 24px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.title-line {
  display: block;
}

.title-line.highlight {
  background: var(--white);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  position: relative;
}

.hero-subtitle {
  font-size: 20px;
  line-height: 1.6;
  margin-bottom: 48px;
  opacity: 0.95;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.hero-actions {
  display: flex;
  gap: 24px;
  justify-content: center;
  margin-bottom: 64px;
  flex-wrap: wrap;
}

/* CSS removido - não há mais estatísticas numéricas */
/* .hero-stats {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 48px;
  max-width: 600px;
  margin: 0 auto;
}

.stat {
  text-align: center;
}

.stat-number {
  display: block;
  font-family: var(--font-heading);
  font-size: 3rem;
  font-weight: 700;
  background: var(--gradient-accent);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
}

.stat-label {
  display: block;
  font-size: 14px;
  opacity: 0.9;
  margin-top: 8px;
  font-weight: 500;
} */

/* ===== SECTION HEADERS ===== */
.section-header {
  text-align: center;
  margin-bottom: 80px;
}

.section-badge {
  display: inline-block;
  padding: 8px 20px;
  background: var(--accent-orange);
  color: var(--primary-orange);
  border-radius: var(--border-radius-xl);
  font-size: 14px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 24px;
}

.section-title {
  font-family: var(--font-heading);
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 24px;
  color: var(--gray-900);
}

.section-title .highlight {
  background: var(--gradient-text);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.section-subtitle {
  font-size: 20px;
  line-height: 1.6;
  color: var(--gray-600);
  max-width: 800px;
  margin: 0 auto;
}

/* ===== ABOUT SECTION ===== */
.about-modern {
  padding: 120px 0;
  background: var(--white);
  position: relative;
  overflow: hidden;
}

.about-modern::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: 
    radial-gradient(circle at 80% 20%, rgba(234, 88, 12, 0.03) 0%, transparent 50%),
    radial-gradient(circle at 20% 80%, rgba(59, 130, 246, 0.03) 0%, transparent 50%);
  z-index: 1;
}

.about-modern .container {
  position: relative;
  z-index: 2;
}

.about-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}

.story-timeline {
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.timeline-item {
  display: flex;
  gap: 24px;
  align-items: start;
  min-height: 140px;
  margin-bottom: 0;
}

.timeline-icon {
  width: 60px;
  height: 60px;
  background: var(--gradient-primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 20px;
  flex-shrink: 0;
  box-shadow: var(--shadow-lg);
}

.timeline-content h3 {
  font-family: var(--font-heading);
  font-size: 24px;
  font-weight: 600;
  color: var(--gray-900);
  margin-bottom: 8px;
}

.timeline-content p {
  color: var(--gray-600);
  line-height: 1.6;
}

.timeline-content {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
}

.values-timeline {
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.story-timeline,
.values-timeline {
  height: auto;
  justify-content: space-between;
}

.values-timeline .timeline-icon {
  background: var(--gradient-secondary);
}

.story-timeline .timeline-icon {
  background: var(--gradient-primary);
}

.value-grid {
  display: grid;
  gap: 32px;
}

.value-card-modern {
  background: var(--white);
  padding: 40px;
  border-radius: var(--border-radius-lg);
  border: 1px solid var(--gray-200);
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

.value-card-modern::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: var(--gradient-primary);
  transform: scaleX(0);
  transform-origin: left;
  transition: var(--transition);
}

.value-card-modern:hover::before {
  transform: scaleX(1);
}

.value-card-modern:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-xl);
}

.value-icon {
  width: 60px;
  height: 60px;
  background: var(--accent-blue);
  border-radius: var(--border-radius);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary-blue);
  font-size: 24px;
  margin-bottom: 24px;
}

.value-card-modern h3 {
  font-family: var(--font-heading);
  font-size: 20px;
  font-weight: 600;
  color: var(--gray-900);
  margin-bottom: 16px;
}

.value-card-modern p {
  color: var(--gray-600);
  line-height: 1.6;
}

/* ===== SERVICES SECTION ===== */
.services-modern {
  padding: 120px 0;
  background: var(--gray-50);
  position: relative;
  overflow: hidden;
}

.services-modern::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: 
    radial-gradient(circle at 20% 30%, rgba(59, 130, 246, 0.03) 0%, transparent 50%),
    radial-gradient(circle at 80% 70%, rgba(234, 88, 12, 0.03) 0%, transparent 50%);
  z-index: 1;
}

.services-modern::after {
  content: '';
  position: absolute;
  top: 50%;
  right: 5%;
  width: 200px;
  height: 200px;
  background-image: url('src/logos/ACT Engenharia _ HOME.avif');
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  opacity: 0.03;
  transform: translateY(-50%) rotate(15deg);
  z-index: 1;
  pointer-events: none;
}

.services-modern .container {
  position: relative;
  z-index: 2;
}

.services-grid-modern {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 32px;
}

.service-card-modern {
  background: var(--white);
  padding: 40px 32px;
  border-radius: var(--border-radius-lg);
  border: 1px solid var(--gray-200);
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

.service-card-modern.featured {
  border: 2px solid var(--primary-orange);
  transform: translateY(-8px);
}

.service-card-modern.featured .service-badge {
  position: absolute;
  top: 24px;
  right: 24px;
  background: var(--gradient-primary);
  color: var(--white);
  padding: 8px 16px;
  border-radius: var(--border-radius);
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
}

.service-card-modern:hover {
  transform: translateY(-12px);
  box-shadow: var(--shadow-xl);
  border-color: var(--primary-orange);
}

.service-icon {
  width: 80px;
  height: 80px;
  background: var(--accent-orange);
  border-radius: var(--border-radius);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
  overflow: hidden;
}

.service-icon img {
  width: 48px;
  height: 48px;
  object-fit: contain;
}

.service-card-modern h3 {
  font-family: var(--font-heading);
  font-size: 22px;
  font-weight: 600;
  color: var(--gray-900);
  margin-bottom: 16px;
}

.service-card-modern p {
  color: var(--gray-600);
  line-height: 1.6;
  margin-bottom: 24px;
}

.service-features {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 24px;
}

.service-features span {
  background: var(--accent-blue);
  color: var(--primary-blue);
  padding: 6px 12px;
  border-radius: var(--border-radius);
  font-size: 12px;
  font-weight: 500;
}

.service-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--primary-orange);
  text-decoration: none;
  font-weight: 600;
  transition: var(--transition);
}

.service-link:hover {
  gap: 16px;
}

/* ===== SERVICES CAROUSEL ===== */
.services-carousel-container {
  position: relative;
  max-width: 800px;
  margin: 0 auto;
  overflow: hidden;
}

.services-carousel {
  display: flex;
  width: 500%;
  transition: transform 0.5s ease-in-out;
  border-radius: var(--border-radius-lg);
  box-shadow: var(--shadow-xl);
}

.service-slide {
  width: 20%;
  flex: 0 0 20%;
  display: flex;
  background: var(--white);
  border-radius: var(--border-radius-lg);
  overflow: hidden;
  position: relative;
  transition: var(--transition);
}

.service-slide.featured {
  border: 2px solid var(--primary-orange);
}

.service-slide.featured .service-badge {
  position: absolute;
  top: 20px;
  right: 20px;
  background: var(--gradient-primary);
  color: var(--white);
  padding: 8px 16px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 600;
  z-index: 2;
}

.service-image {
  flex: 1;
  min-height: 300px;
  overflow: hidden;
}

.service-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition);
}

.service-slide:hover .service-image img {
  transform: scale(1.05);
}

.service-content {
  flex: 1;
  padding: 40px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.service-content .service-icon {
  width: 60px;
  height: 60px;
  background: var(--gradient-primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
  box-shadow: var(--shadow-md);
}

.service-content .service-icon img {
  width: 32px;
  height: 32px;
  filter: brightness(0) invert(1);
}

.service-content h3 {
  font-family: var(--font-heading);
  font-size: 28px;
  font-weight: 600;
  color: var(--gray-900);
  margin-bottom: 16px;
}

.service-content p {
  color: var(--gray-600);
  line-height: 1.6;
  margin-bottom: 24px;
}

.service-content .service-features {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 32px;
}

.service-content .service-features span {
  background: var(--accent-orange);
  color: var(--primary-orange);
  padding: 8px 16px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 500;
}

.service-cta {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 16px 32px;
  background: var(--gradient-primary);
  color: var(--white);
  text-decoration: none;
  border-radius: var(--border-radius);
  font-weight: 600;
  transition: var(--transition);
  align-self: flex-start;
}

.service-cta:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
  gap: 16px;
}

.services-carousel-controls {
  position: absolute;
  top: 50%;
  width: 100%;
  display: flex;
  justify-content: space-between;
  transform: translateY(-50%);
  padding: 0 20px;
  pointer-events: none;
}

.services-carousel-controls .carousel-btn {
  width: 50px;
  height: 50px;
  background: var(--white);
  border: none;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary-blue);
  font-size: 18px;
  cursor: pointer;
  transition: var(--transition);
  box-shadow: var(--shadow-md);
  pointer-events: all;
}

.services-carousel-controls .carousel-btn:hover {
  background: var(--primary-blue);
  color: var(--white);
  transform: scale(1.1);
}

.services-carousel-dots {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-top: 32px;
}

.services-carousel-dots .dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  border: none;
  background: var(--gray-300);
  cursor: pointer;
  transition: var(--transition);
}

.services-carousel-dots .dot.active {
  background: var(--primary-orange);
  transform: scale(1.2);
}

.services-carousel-dots .dot:hover {
  background: var(--primary-blue);
}

/* ===== GALLERY SECTION ===== */
.gallery-modern {
  padding: 80px 0;
  background: var(--gray-900);
  color: var(--white);
  overflow: hidden;
}

.gallery-header {
  text-align: center;
  margin-bottom: 64px;
}

.gallery-header h2 {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  margin-bottom: 16px;
}

.gallery-header p {
  font-size: 18px;
  opacity: 0.8;
}

.gallery-carousel-modern {
  overflow: hidden;
  mask: linear-gradient(90deg, transparent, var(--white) 10%, var(--white) 90%, transparent);
}

.gallery-track-modern {
  display: flex;
  animation: gallery-scroll 60s linear infinite;
  gap: 24px;
  width: fit-content;
}

.gallery-item {
  position: relative;
  width: 400px;
  height: 300px;
  border-radius: var(--border-radius-lg);
  overflow: hidden;
  flex-shrink: 0;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition);
}

.gallery-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(transparent, rgba(0, 0, 0, 0.8));
  padding: 32px 24px 24px;
  transform: translateY(100%);
  transition: var(--transition);
}

.gallery-item:hover .gallery-overlay {
  transform: translateY(0);
}

.gallery-item:hover img {
  transform: scale(1.1);
}

.gallery-overlay h3 {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 8px;
}

.gallery-overlay p {
  font-size: 14px;
  opacity: 0.9;
  margin-bottom: 16px;
}

.btn-gallery {
  display: inline-block;
  background: var(--primary-orange);
  color: var(--white);
  padding: 8px 16px;
  border-radius: var(--border-radius);
  text-decoration: none;
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  transition: var(--transition);
  border: 2px solid var(--primary-orange);
}

.btn-gallery:hover {
  background: transparent;
  color: var(--primary-orange);
  transform: translateY(-2px);
}

@keyframes gallery-scroll {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

.gallery-cta {
  text-align: center;
  padding: 60px 20px 80px;
  background: var(--gray-900);
  color: var(--white);
}

.gallery-cta .btn-modern.large {
  font-size: 18px;
  padding: 16px 32px;
  margin-bottom: 16px;
}

.gallery-cta .cta-text {
  color: rgba(255, 255, 255, 0.8);
  font-size: 16px;
  margin: 0;
  max-width: 500px;
  margin: 0 auto;
}

/* ===== PROJECTS SECTION ===== */
.projects-modern {
  padding: 120px 0;
  background: var(--white);
  position: relative;
  overflow: hidden;
}

.projects-modern::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: 
    radial-gradient(circle at 70% 20%, rgba(234, 88, 12, 0.03) 0%, transparent 50%),
    radial-gradient(circle at 30% 80%, rgba(59, 130, 246, 0.03) 0%, transparent 50%);
  z-index: 1;
}

.projects-modern::after {
  content: '';
  position: absolute;
  bottom: 10%;
  left: 3%;
  width: 150px;
  height: 150px;
  background-image: url('src/logos/ACT Engenharia _ HOME.avif');
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  opacity: 0.04;
  transform: rotate(-10deg);
  z-index: 1;
  pointer-events: none;
}

.projects-modern .container {
  position: relative;
  z-index: 2;
}

.projects-showcase {
  display: grid;
  gap: 80px;
}

.project-card-modern {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
  background: var(--white);
  border-radius: var(--border-radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--gray-200);
  transition: var(--transition);
}

.project-card-modern:nth-child(even) {
  direction: rtl;
}

.project-card-modern:nth-child(even) > * {
  direction: ltr;
}

.project-card-modern:hover {
  box-shadow: var(--shadow-2xl);
  transform: translateY(-8px);
}

.project-images {
  position: relative;
  height: 400px;
  overflow: hidden;
}

.project-carousel {
  position: relative;
  width: 100%;
  height: 100%;
}

.project-slides {
  display: flex;
  width: 100%;
  height: 100%;
  transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.project-slides img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  flex-shrink: 0;
}

.carousel-controls {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 100%;
  display: flex;
  justify-content: space-between;
  padding: 0 20px;
  pointer-events: none;
}

.carousel-btn {
  background: rgba(255, 255, 255, 0.9);
  border: none;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: var(--transition);
  pointer-events: all;
  box-shadow: var(--shadow-md);
}

.carousel-btn:hover {
  background: var(--white);
  transform: scale(1.1);
  box-shadow: var(--shadow-lg);
}

.carousel-indicators {
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 8px;
}

.indicator {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.5);
  cursor: pointer;
  transition: var(--transition);
}

.indicator.active {
  background: var(--white);
  transform: scale(1.2);
}

.project-content {
  padding: 48px;
}

.project-badge {
  display: inline-block;
  padding: 8px 16px;
  background: var(--accent-orange);
  color: var(--primary-orange);
  border-radius: var(--border-radius);
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  margin-bottom: 24px;
}

.project-content h3 {
  font-family: var(--font-heading);
  font-size: 32px;
  font-weight: 700;
  color: var(--gray-900);
  margin-bottom: 16px;
}

.project-content p {
  color: var(--gray-600);
  line-height: 1.6;
  margin-bottom: 32px;
  font-size: 16px;
}

.project-actions {
  margin-top: 24px;
}

.project-actions .btn-modern {
  font-size: 14px;
  padding: 12px 24px;
}

/* CSS removido - não há mais estatísticas de projetos */
/* .project-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.project-stats .stat {
  text-align: center;
}

.project-stats .stat-number {
  font-family: var(--font-heading);
  font-size: 2rem;
  font-weight: 700;
  color: var(--primary-orange);
  line-height: 1;
}

.project-stats .stat-label {
  font-size: 12px;
  color: var(--gray-600);
  text-transform: uppercase;
  font-weight: 500;
  margin-top: 4px;
} */

/* ===== TEAM SECTION ===== */
.team-modern {
  padding: 120px 0;
  background: var(--gray-50);
  position: relative;
  overflow: hidden;
}

.team-modern::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: 
    radial-gradient(circle at 80% 30%, rgba(59, 130, 246, 0.03) 0%, transparent 50%),
    radial-gradient(circle at 20% 70%, rgba(234, 88, 12, 0.03) 0%, transparent 50%);
  z-index: 1;
}

.team-modern .container {
  position: relative;
  z-index: 2;
}

.team-grid-modern {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 32px;
}

.team-member-modern {
  background: var(--white);
  padding: 40px 32px;
  border-radius: var(--border-radius-lg);
  border: 1px solid var(--gray-200);
  transition: var(--transition);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.team-member-modern.featured {
  transform: translateY(-8px);
}

.team-member-modern:hover {
  transform: translateY(-12px);
  box-shadow: var(--shadow-xl);
  border-color: var(--primary-orange);
}

.member-avatar {
  width: 80px;
  height: 80px;
  margin: 0 auto 24px;
}

.avatar-placeholder {
  width: 100%;
  height: 100%;
  background: var(--gradient-secondary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 32px;
  box-shadow: var(--shadow-lg);
}

.member-info h3 {
  font-family: var(--font-heading);
  font-size: 20px;
  font-weight: 600;
  color: var(--gray-900);
  margin-bottom: 8px;
}

.member-role {
  color: var(--primary-orange);
  font-weight: 600;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 4px;
}

.member-title {
  color: var(--gray-500);
  font-size: 14px;
  font-style: italic;
  margin-bottom: 16px;
}

.member-info p {
  color: var(--gray-600);
  line-height: 1.6;
  font-size: 14px;
}

/* ===== CONTACT SECTION ===== */
.contact-modern {
  padding: 60px 0;
  background: var(--gray-900);
  color: var(--white);
  position: relative;
  overflow: hidden;
}

.contact-modern::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: 
    radial-gradient(circle at 30% 20%, rgba(244, 151, 29, 0.05) 0%, transparent 50%),
    radial-gradient(circle at 70% 80%, rgba(54, 71, 95, 0.1) 0%, transparent 50%);
  z-index: 1;
}

.contact-modern .container {
  position: relative;
  z-index: 2;
}

.contact-modern .section-title {
  color: var(--white) !important;
}

.contact-modern .section-title .highlight {
  background: none !important;
  -webkit-background-clip: unset !important;
  background-clip: unset !important;
  -webkit-text-fill-color: var(--white) !important;
  color: var(--white) !important;
}

.contact-modern .section-subtitle {
  color: var(--white) !important;
}

.contact-modern .section-badge {
  background: rgba(244, 151, 29, 0.2);
  color: var(--primary-orange);
  border: 1px solid rgba(244, 151, 29, 0.3);
}

.contact-content-modern {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: start;
}

.info-cards {
  display: grid;
  gap: 16px;
}

.info-card {
  background: rgba(54, 71, 95, 0.3);
  backdrop-filter: blur(10px);
  padding: 20px;
  border-radius: var(--border-radius);
  border: 1px solid rgba(255, 255, 255, 0.1);
  transition: var(--transition);
}

.info-card:hover {
  background: rgba(54, 71, 95, 0.5);
  transform: translateY(-2px);
  border-color: rgba(255, 255, 255, 0.2);
}

.info-card {
  display: flex;
  gap: 20px;
  align-items: start;
}

.info-icon {
  width: 40px;
  height: 40px;
  background: var(--gradient-primary);
  border-radius: var(--border-radius);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  flex-shrink: 0;
}

.info-content h4 {
  font-family: var(--font-heading);
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 6px;
  color: var(--white);
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
}

.info-content p {
  line-height: 1.6;
  margin-bottom: 4px;
  color: var(--white);
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
}

.secondary-text {
  font-size: 14px;
  opacity: 0.9;
  color: var(--white);
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
}

.contact-form-modern {
  background: rgba(54, 71, 95, 0.3);
  backdrop-filter: blur(20px);
  padding: 30px;
  border-radius: var(--border-radius-lg);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.form-group-modern {
  margin-bottom: 24px;
}

.form-row-modern {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin-bottom: 24px;
}

.form-group-modern label {
  display: block;
  color: var(--white);
  font-weight: 500;
  margin-bottom: 8px;
  font-size: 14px;
}

.form-group-modern input,
.form-group-modern select,
.form-group-modern textarea {
  width: 100%;
  padding: 16px 20px;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: var(--border-radius);
  color: var(--white);
  font-size: 16px;
  transition: var(--transition);
  backdrop-filter: blur(10px);
}

.form-group-modern select {
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3e%3cpolyline points='6,9 12,15 18,9'%3e%3c/polyline%3e%3c/svg%3e");
  background-repeat: no-repeat;
  background-position: right 16px center;
  background-size: 16px;
  padding-right: 48px;
  cursor: pointer;
}

.form-group-modern select option {
  background: var(--gray-800);
  color: var(--white);
  padding: 12px;
}

.form-group-modern input:focus,
.form-group-modern select:focus,
.form-group-modern textarea:focus {
  outline: none;
  border-color: var(--gray-400);
  background: rgba(255, 255, 255, 0.15);
  box-shadow: 0 0 0 1px rgba(148, 163, 184, 0.3);
}

.form-group-modern input::placeholder,
.form-group-modern textarea::placeholder {
  color: rgba(255, 255, 255, 0.6);
}

.form-group-modern textarea {
  resize: vertical;
  min-height: 120px;
}

/* ===== MAP SECTION ===== */
.map-modern {
  position: relative;
  height: 500px;
  overflow: hidden;
}

.map-container {
  position: relative;
  width: 100%;
  height: 100%;
}

.map-container iframe {
  width: 100%;
  height: 100%;
  border: 0;
  filter: grayscale(100%) contrast(1.2);
  transition: var(--transition);
}

.map-container:hover iframe {
  filter: grayscale(0%) contrast(1);
}

.map-overlay {
  position: absolute;
  top: 40px;
  left: 40px;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  padding: 32px;
  border-radius: var(--border-radius-lg);
  box-shadow: var(--shadow-xl);
  max-width: 300px;
}

.map-info h3 {
  font-family: var(--font-heading);
  font-size: 20px;
  font-weight: 600;
  color: var(--gray-900);
  margin-bottom: 8px;
}

.map-info p {
  color: var(--gray-600);
  margin-bottom: 20px;
  line-height: 1.6;
}

/* ===== FOOTER ===== */
.footer-modern {
  background: var(--gray-900);
  color: var(--white);
  padding: 80px 0 0;
}

.footer-content-modern {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 48px;
}

.footer-section h3 {
  font-family: var(--font-heading);
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 24px;
  color: var(--white);
}

.footer-logo {
  transition: all 0.3s ease;
}

.footer-logo img {
  height: 52px;
  margin-bottom: 24px;
  filter: brightness(0) invert(1) drop-shadow(0 2px 8px rgba(255, 255, 255, 0.1));
  transition: all 0.3s ease;
}

.footer-logo:hover img {
  transform: scale(1.03);
  filter: brightness(0) invert(1) drop-shadow(0 4px 12px rgba(255, 255, 255, 0.15));
}

.footer-description {
  color: var(--gray-400);
  line-height: 1.6;
  margin-bottom: 24px;
}

.footer-social-modern {
  display: flex;
  gap: 16px;
}

.footer-social-modern a {
  width: 48px;
  height: 48px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: var(--border-radius);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 20px;
  transition: var(--transition);
}

.footer-social-modern a:hover {
  background: var(--gradient-primary);
  transform: translateY(-2px);
}

.footer-section ul {
  list-style: none;
}

.footer-section ul li {
  margin-bottom: 12px;
}

.footer-section ul li a {
  color: var(--gray-400);
  text-decoration: none;
  transition: var(--transition);
}

.footer-section ul li a:hover {
  color: var(--primary-orange);
}

.footer-contact-modern {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.contact-item-footer {
  display: flex;
  align-items: start;
  gap: 12px;
  color: var(--gray-400);
}

.contact-item-footer i {
  color: var(--primary-orange);
  width: 16px;
  margin-top: 2px;
}

.footer-bottom-modern {
  border-top: 1px solid var(--gray-800);
  padding: 32px 0;
}

.footer-bottom-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: var(--gray-400);
  font-size: 14px;
}

.footer-links {
  display: flex;
  align-items: center;
  gap: 16px;
}

.footer-links a {
  color: var(--gray-400);
  text-decoration: none;
  transition: var(--transition);
}

.footer-links a:hover {
  color: var(--primary-orange);
}

/* ===== RESPONSIVE DESIGN ===== */
@media (max-width: 1024px) {
  .about-content {
    grid-template-columns: 1fr;
    gap: 60px;
  }
  
  .contact-content-modern {
    grid-template-columns: 1fr;
    gap: 60px;
  }
  
  .project-card-modern {
    grid-template-columns: 1fr;
  }
  
  .project-card-modern:nth-child(even) {
    direction: ltr;
  }
  
  .footer-content-modern {
    grid-template-columns: 1fr 1fr;
    gap: 40px;
  }
}

@media (max-width: 768px) {
  .container {
    padding: 0 16px;
  }
  
  .floating-nav {
    display: none;
  }
  
  .mobile-header {
    display: block;
  }
  
  .hero-advanced {
    padding-top: 70px;
  }
  
  .hero-actions {
    flex-direction: column;
    align-items: center;
  }
  
  /* .hero-stats {
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
  } */
  
  .services-grid-modern {
    grid-template-columns: 1fr;
  }
  
  .services-carousel {
    width: 500%;
  }
  
  .service-slide {
    width: 20%;
    flex: 0 0 20%;
    flex-direction: column;
  }
  
  .service-image {
    min-height: 250px;
  }
  
  .service-content {
    padding: 24px;
  }
  
  .service-content h3 {
    font-size: 24px;
  }
  
  .services-carousel-controls {
    padding: 0 10px;
  }
  
  .services-carousel-controls .carousel-btn {
    width: 40px;
    height: 40px;
    font-size: 14px;
  }
  
  .team-grid-modern {
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  }
  
  .form-row-modern {
    grid-template-columns: 1fr;
  }
  
  .contact-form-modern {
    padding: 20px 16px;
  }
  
  .contact-modern {
    padding: 40px 0;
  }
  
  .contact-content-modern {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  
  .info-cards {
    gap: 12px;
  }
  
  .map-overlay {
    position: relative;
    top: 0;
    left: 0;
    margin: 24px;
    max-width: none;
  }
  
  .footer-content-modern {
    grid-template-columns: 1fr;
  }
  
  .footer-bottom-content {
    flex-direction: column;
    gap: 16px;
    text-align: center;
  }
  
  .hero-brand-logo {
    height: 65px;
  }
  
  .services-modern::after,
  .projects-modern::after {
    display: none;
  }
}

@media (max-width: 480px) {
  .mobile-header-content {
    padding: 0 16px;
  }
  
  .mobile-header-logo img {
    height: 38px;
  }
  
  .hero-brand-logo {
    height: 55px;
  }
  
  .mobile-sidebar {
    width: 100%;
    right: -100%;
  }
  
  .mobile-sidebar-content {
    padding: 16px;
  }
  
  /* .hero-stats {
    grid-template-columns: 1fr;
  }
  
  .stat-number {
    font-size: 2rem !important;
  } */
  
  .value-card-modern,
  .service-card-modern,
  .team-member-modern {
    padding: 24px 20px;
  }
  
  .project-content {
    padding: 32px 24px;
  }
  
  /* .project-stats {
    grid-template-columns: 1fr;
    gap: 16px;
  } */
  
  .info-card {
    padding: 24px;
  }
}

/* ===== ANIMATIONS & INTERACTIONS ===== */
@media (prefers-reduced-motion: no-preference) {
  .hero-content {
    animation: fadeInUp 1s ease-out;
  }
  
  .value-card-modern,
  .service-card-modern,
  .team-member-modern {
    animation: fadeInUp 0.6s ease-out;
  }
  
  .value-card-modern:nth-child(2) { animation-delay: 0.1s; }
  .value-card-modern:nth-child(3) { animation-delay: 0.2s; }
  
  .service-card-modern:nth-child(2) { animation-delay: 0.1s; }
  .service-card-modern:nth-child(3) { animation-delay: 0.2s; }
  .service-card-modern:nth-child(4) { animation-delay: 0.3s; }
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes logoBreath {
  0%, 100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.02);
  }
}

/* Logo breathing animation */
.nav-brand img {
  animation: logoBreath 4s ease-in-out infinite;
}

.footer-logo img {
  animation: logoBreath 6s ease-in-out infinite;
}

/* ===== SCROLL BEHAVIOR ===== */
.floating-nav {
  backdrop-filter: blur(20px) saturate(180%);
  -webkit-backdrop-filter: blur(20px) saturate(180%);
}

@supports not (backdrop-filter: blur(20px)) {
  .floating-nav {
    background: rgba(255, 255, 255, 0.95);
  }
}

/* ===== ACCESSIBILITY ===== */
@media (prefers-reduced-motion: reduce) {
  * {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
  
  .gallery-track-modern {
    animation: none;
  }
  
  .shape {
    animation: none;
  }
}

/* ===== PRINT STYLES ===== */
@media print {
  .floating-nav,
  .hero-video,
  .animated-shapes {
    display: none;
  }
  
  .hero-advanced {
    min-height: auto;
    padding: 40px 0;
    background: var(--white);
    color: var(--black);
  }
}

/* ===== HEADER ===== */
.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background: rgba(44, 62, 80, 0.1);
  backdrop-filter: blur(20px) saturate(180%);
  -webkit-backdrop-filter: blur(20px) saturate(180%);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  z-index: 1000;
  transition: var(--transition);
}

.header.scrolled {
  background: rgba(44, 62, 80, 0.95);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
}

.navbar {
  padding: 0 20px;
}

.nav-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1200px;
  margin: 0 auto;
  height: 80px;
}

.nav-logo img {
  height: 50px;
  width: auto;
  filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.1));
  transition: var(--transition);
}

.nav-logo:hover img {
  transform: scale(1.1);
  filter: drop-shadow(0 6px 12px rgba(247, 148, 30, 0.3));
}

.nav-menu {
  display: flex;
  list-style: none;
  gap: 40px;
}

.nav-link {
  color: var(--white);
  text-decoration: none;
  font-weight: 500;
  font-size: 15px;
  transition: var(--transition);
  position: relative;
  padding: 10px 0;
}

.nav-link::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 0;
  height: 2px;
  background: var(--gradient-primary);
  transition: var(--transition);
  transform: translateX(-50%);
}

.nav-link::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(45deg, transparent, rgba(247, 148, 30, 0.1), transparent);
  opacity: 0;
  transition: var(--transition);
  border-radius: 8px;
}

.nav-link:hover {
  color: var(--primary-color);
  text-shadow: 0 0 10px rgba(247, 148, 30, 0.5);
}

.nav-link:hover::before {
  width: 100%;
}

.nav-link:hover::after {
  opacity: 1;
}

.nav-link.active {
  color: var(--primary-color);
  text-shadow: 0 0 10px rgba(247, 148, 30, 0.5);
}

.nav-link.active::before {
  width: 100%;
}

.social-icons {
  display: flex;
  gap: 20px;
}

.social-icons a {
  color: var(--white);
  font-size: 20px;
  transition: var(--transition);
  padding: 10px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  position: relative;
  overflow: hidden;
}

.social-icons a::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--gradient-primary);
  opacity: 0;
  transition: var(--transition);
  border-radius: 50%;
}

.social-icons a:hover {
  color: var(--white);
  transform: translateY(-3px) scale(1.1);
  box-shadow: 0 10px 25px rgba(247, 148, 30, 0.4);
}

.social-icons a:hover::before {
  opacity: 1;
}

.social-icons a i {
  position: relative;
  z-index: 1;
}

.hamburger {
  display: none;
  flex-direction: column;
  cursor: pointer;
  gap: 4px;
}

.hamburger span {
  width: 25px;
  height: 3px;
  background: var(--white);
  border-radius: 2px;
  transition: var(--transition);
}

/* Mobile Menu */
.mobile-menu {
  display: none;
  position: fixed;
  top: 80px;
  left: 0;
  width: 100%;
  background: rgba(44, 62, 80, 0.98);
  backdrop-filter: blur(10px);
  z-index: 999;
  padding: 20px;
}

.mobile-menu.active {
  display: block;
}

.mobile-menu ul {
  list-style: none;
  text-align: center;
}

.mobile-menu li {
  margin: 20px 0;
}

.mobile-menu a {
  color: var(--white);
  text-decoration: none;
  font-size: 18px;
  font-weight: 500;
}

/* ===== HERO SECTION ===== */
.hero {
  position: relative;
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: 
    radial-gradient(circle at 30% 20%, rgba(44, 62, 80, 0.05) 0%, transparent 50%),
    radial-gradient(circle at 70% 80%, rgba(44, 62, 80, 0.05) 0%, transparent 50%);
  z-index: 2;
}

.hero-video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
  filter: brightness(0.7) contrast(1.2);
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--gradient-hero);
  z-index: 2;
}

.hero-content {
  position: relative;
  z-index: 3;
  text-align: center;
  color: var(--white);
  max-width: 900px;
  padding: 0 20px;
}

.hero-title {
  font-size: clamp(3rem, 6vw, 5rem);
  font-weight: 800;
  margin-bottom: 40px;
  background: linear-gradient(45deg, #ffffff, #f7941e, #ffffff);
  background-size: 200% 200%;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1.2;
  text-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
  position: relative;
}

.hero-title::after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 50%;
  width: 100px;
  height: 4px;
  background: var(--gradient-primary);
  transform: translateX(-50%);
  border-radius: 2px;
}

.hero .btn-primary {
  margin-top: 20px;
  font-size: 16px;
  padding: 20px 50px;
}

/* ===== SECTIONS ===== */
.section-title {
  font-size: clamp(2.5rem, 5vw, 4rem);
  background: var(--gradient-text);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 30px;
  font-weight: 800;
  text-align: center;
  position: relative;
}

.section-title::before {
  content: '';
  position: absolute;
  top: -20px;
  left: 50%;
  width: 60px;
  height: 4px;
  background: var(--gradient-primary);
  transform: translateX(-50%);
  border-radius: 2px;
}

.section-title::after {
  content: '';
  position: absolute;
  bottom: -15px;
  left: 50%;
  width: 120px;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--primary-color), transparent);
  transform: translateX(-50%);
}

/* ===== ABOUT SECTION ===== */
.about {
  padding: 120px 0;
  background: 
    linear-gradient(135deg, rgba(248, 249, 250, 0.9) 0%, rgba(255, 255, 255, 0.95) 100%),
    radial-gradient(circle at 20% 80%, rgba(247, 148, 30, 0.05) 0%, transparent 50%),
    radial-gradient(circle at 80% 20%, rgba(44, 62, 80, 0.05) 0%, transparent 50%);
  position: relative;
  overflow: hidden;
}

.about::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: 
    conic-gradient(from 45deg, transparent, rgba(247, 148, 30, 0.02), transparent);
  z-index: 0;
}

.about .container {
  position: relative;
  z-index: 1;
}

.welcome {
  text-align: center;
  margin-bottom: 100px;
}

.welcome-text {
  font-size: 20px;
  line-height: 1.8;
  color: var(--text-light);
  max-width: 1000px;
  margin: 0 auto;
  position: relative;
  padding: 30px;
  background: rgba(255, 255, 255, 0.7);
  backdrop-filter: blur(10px);
  border-radius: var(--border-radius);
  border: 1px solid rgba(255, 255, 255, 0.2);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
}

.welcome-text::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--gradient-card);
  border-radius: var(--border-radius);
  z-index: -1;
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 50px;
  margin-bottom: 80px;
}

.value-card {
  background: var(--gradient-secondary);
  color: var(--white);
  padding: 50px 40px;
  border-radius: 20px;
  text-align: center;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
  transform: translateY(0);
}

.value-card::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: 
    conic-gradient(from 45deg, transparent, rgba(247, 148, 30, 0.1), transparent);
  transition: var(--transition);
  z-index: 0;
}

.value-card::after {
  content: '';
  position: absolute;
  top: 2px;
  left: 2px;
  right: 2px;
  bottom: 2px;
  background: var(--gradient-secondary);
  border-radius: 18px;
  z-index: 1;
}

.value-card > * {
  position: relative;
  z-index: 2;
}

.value-card:hover {
  transform: translateY(-15px) scale(1.02);
  box-shadow: 
    0 25px 50px rgba(44, 62, 80, 0.3),
    0 0 0 1px rgba(247, 148, 30, 0.1);
}

.value-icon {
  width: 80px;
  height: 80px;
  margin: 0 auto 30px;
  display: block;
  filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.2));
}

.value-card h3 {
  color: var(--primary-color);
  font-size: 24px;
  margin-bottom: 20px;
  font-weight: 700;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.value-card p {
  font-size: 16px;
  line-height: 1.8;
  opacity: 0.95;
}

.cta-section {
  text-align: center;
}

/* ===== GALLERY SECTION ===== */
.gallery {
  padding: 0;
  overflow: hidden;
  background: 
    linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
  position: relative;
}

.gallery::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: 
    linear-gradient(90deg, rgba(247, 148, 30, 0.05) 0%, transparent 50%, rgba(44, 62, 80, 0.05) 100%);
  z-index: 1;
}

.gallery-carousel {
  width: 100%;
  overflow: hidden;
  position: relative;
  z-index: 2;
}

.gallery-track {
  display: flex;
  animation: scroll-infinite 80s linear infinite;
  width: fit-content;
}

.gallery-track img {
  height: 450px;
  width: auto;
  object-fit: cover;
  flex-shrink: 0;
  border-radius: 0;
  filter: grayscale(20%) contrast(1.1);
  transition: var(--transition);
  position: relative;
}

.gallery-track img:hover {
  filter: grayscale(0%) contrast(1.2) brightness(1.1);
  transform: scale(1.05);
  z-index: 3;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
}

@keyframes scroll-infinite {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}

/* ===== SERVICES SECTION ===== */
.services {
  padding: 120px 0;
  background: var(--gradient-primary);
  color: var(--white);
  position: relative;
  overflow: hidden;
}

.services::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: 
    radial-gradient(circle at 30% 70%, rgba(255, 255, 255, 0.1) 0%, transparent 50%),
    radial-gradient(circle at 70% 30%, rgba(44, 62, 80, 0.1) 0%, transparent 50%);
  z-index: 1;
}

.services .container {
  position: relative;
  z-index: 2;
}

.services .section-title {
  color: var(--secondary-color);
  margin-bottom: 40px;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.services-intro {
  text-align: center;
  font-size: 20px;
  margin-bottom: 80px;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
  opacity: 0.95;
  line-height: 1.8;
  background: rgba(255, 255, 255, 0.1);
  padding: 30px;
  border-radius: var(--border-radius);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 50px;
}

.service-card {
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(20px);
  padding: 50px 40px;
  border-radius: 20px;
  text-align: center;
  transition: var(--transition);
  border: 1px solid rgba(255, 255, 255, 0.2);
  position: relative;
  overflow: hidden;
  transform: translateY(0);
}

.service-card::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.6s;
}

.service-card:hover::before {
  left: 100%;
}

.service-card:hover {
  background: rgba(255, 255, 255, 0.25);
  transform: translateY(-15px) scale(1.02);
  box-shadow: 
    0 25px 50px rgba(0, 0, 0, 0.2),
    0 0 0 1px rgba(255, 255, 255, 0.3);
}

.service-icon {
  width: 90px;
  height: 90px;
  margin: 0 auto 30px;
  display: block;
  filter: drop-shadow(0 8px 16px rgba(0, 0, 0, 0.2));
}

.service-card h4 {
  color: var(--secondary-color);
  font-size: 22px;
  margin-bottom: 20px;
  font-weight: 700;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.service-card p {
  font-size: 16px;
  line-height: 1.8;
  opacity: 0.95;
}

/* ===== PROJECTS SECTION ===== */
.projects {
  padding: 120px 0;
  background: 
    linear-gradient(135deg, rgba(255, 255, 255, 0.95) 0%, rgba(248, 249, 250, 0.9) 100%);
  position: relative;
  overflow: hidden;
}

.projects::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: 
    radial-gradient(circle at 25% 25%, rgba(247, 148, 30, 0.03) 0%, transparent 50%),
    radial-gradient(circle at 75% 75%, rgba(44, 62, 80, 0.03) 0%, transparent 50%);
  z-index: 0;
}

.projects .container {
  position: relative;
  z-index: 1;
}

.projects-intro {
  text-align: center;
  font-size: 20px;
  color: var(--text-light);
  margin-bottom: 80px;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.8;
  background: rgba(255, 255, 255, 0.7);
  padding: 30px;
  border-radius: var(--border-radius);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.05);
}

.projects-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(550px, 1fr));
  gap: 80px;
}

.project-card {
  background: var(--white);
  border-radius: 25px;
  overflow: hidden;
  transition: var(--transition);
  position: relative;
  transform: translateY(0);
}

.project-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--gradient-primary);
  opacity: 0;
  transition: var(--transition);
  z-index: 0;
  border-radius: 25px;
}

.project-card:hover::before {
  opacity: 0.05;
}

.project-card:hover {
  transform: translateY(-20px) scale(1.02);
  box-shadow: 
    0 30px 60px rgba(44, 62, 80, 0.2),
    0 0 0 1px rgba(247, 148, 30, 0.1);
}

.project-carousel {
  position: relative;
  height: 350px;
  overflow: hidden;
}

.project-slides {
  display: flex;
  height: 100%;
  transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.project-slides img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  flex-shrink: 0;
  filter: brightness(0.9) contrast(1.1);
  transition: var(--transition);
}

.carousel-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(44, 62, 80, 0.9);
  color: var(--white);
  border: none;
  padding: 20px 25px;
  cursor: pointer;
  font-size: 20px;
  border-radius: var(--border-radius);
  transition: var(--transition);
  z-index: 10;
  backdrop-filter: blur(10px);
}

.carousel-btn:hover {
  background: var(--gradient-primary);
  transform: translateY(-50%) scale(1.1);
  box-shadow: 0 10px 25px rgba(247, 148, 30, 0.4);
}

.carousel-btn.prev {
  left: 20px;
}

.carousel-btn.next {
  right: 20px;
}

.project-info {
  padding: 40px;
  background: var(--gradient-secondary);
  color: var(--white);
  position: relative;
  z-index: 1;
}

.project-info h3 {
  background: var(--gradient-text);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-size: 28px;
  margin-bottom: 20px;
  font-weight: 700;
}

.project-info p {
  font-size: 18px;
  line-height: 1.8;
  opacity: 0.95;
}

/* ===== TEAM SECTION ===== */
.team {
  padding: 120px 0;
  background: 
    linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%),
    radial-gradient(circle at 50% 50%, rgba(247, 148, 30, 0.03) 0%, transparent 70%);
  position: relative;
  overflow: hidden;
}

.team::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: 
    conic-gradient(from 0deg, transparent, rgba(44, 62, 80, 0.02), transparent);
  z-index: 0;
}

.team .container {
  position: relative;
  z-index: 1;
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 50px;
  text-align: center;
}

.team-member {
  background: var(--white);
  padding: 40px 30px;
  border-radius: 20px;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
  transform: translateY(0);
}

.team-member::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--gradient-card);
  opacity: 0;
  transition: var(--transition);
  z-index: 0;
  border-radius: 20px;
}

.team-member:hover::before {
  opacity: 1;
}

.team-member:hover {
  transform: translateY(-10px) scale(1.02);
  box-shadow: 
    0 20px 40px rgba(44, 62, 80, 0.15),
    0 0 0 1px rgba(247, 148, 30, 0.1);
}

.team-member > * {
  position: relative;
  z-index: 1;
}

.team-member h4 {
  color: var(--secondary-color);
  font-size: 18px;
  margin-bottom: 20px;
  font-weight: 700;
}

.member-line {
  width: 50px;
  height: 4px;
  background: var(--gradient-primary);
  margin: 0 auto 20px;
  border-radius: 2px;
}

.team-member span {
  color: var(--text-light);
  font-size: 16px;
  line-height: 1.6;
  font-weight: 500;
}

.team-member em {
  font-style: italic;
  opacity: 0.8;
  font-size: 14px;
}

/* ===== CONTACT SECTION ===== */
.contact {
  padding: 120px 0;
  background: var(--gradient-secondary);
  color: var(--white);
  position: relative;
  overflow: hidden;
}

.contact::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: 
    radial-gradient(circle at 20% 80%, rgba(247, 148, 30, 0.1) 0%, transparent 50%),
    radial-gradient(circle at 80% 20%, rgba(255, 255, 255, 0.05) 0%, transparent 50%);
  z-index: 1;
}

.contact .container {
  position: relative;
  z-index: 2;
}

.contact-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}

.contact-info h2 {
  background: var(--gradient-text);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-size: 3rem;
  margin-bottom: 15px;
  font-weight: 800;
}

.contact-subtitle {
  font-size: 20px;
  margin-bottom: 50px;
  opacity: 0.9;
  font-weight: 300;
}

.contact-details {
  display: flex;
  flex-direction: column;
  gap: 25px;
}

.contact-item {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 20px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: var(--border-radius);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  transition: var(--transition);
}

.contact-item:hover {
  background: rgba(255, 255, 255, 0.15);
  transform: translateX(10px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.contact-item i {
  color: var(--primary-color);
  font-size: 22px;
  width: 25px;
  background: rgba(247, 148, 30, 0.2);
  padding: 10px;
  border-radius: 50%;
  text-align: center;
}

.contact-item span {
  font-size: 18px;
  line-height: 1.6;
  font-weight: 400;
}

.contact-form {
  background: rgba(255, 255, 255, 0.1);
  padding: 50px;
  border-radius: 25px;
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  position: relative;
  overflow: hidden;
}

.contact-form::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--gradient-card);
  opacity: 0.5;
  z-index: 0;
}

.contact-form > * {
  position: relative;
  z-index: 1;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 25px;
  margin-bottom: 25px;
}

.form-group {
  display: flex;
  flex-direction: column;
}

.form-group label {
  color: var(--primary-color);
  font-weight: 600;
  margin-bottom: 10px;
  font-size: 16px;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.form-group input,
.form-group textarea {
  background: rgba(255, 255, 255, 0.15);
  border: 2px solid rgba(255, 255, 255, 0.2);
  border-radius: var(--border-radius);
  padding: 18px 20px;
  color: var(--white);
  font-size: 16px;
  transition: var(--transition);
  backdrop-filter: blur(10px);
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--gray-400);
  background: rgba(255, 255, 255, 0.2);
  box-shadow: 0 0 0 1px rgba(148, 163, 184, 0.2);
  transform: scale(1.02);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: rgba(255, 255, 255, 0.7);
}

.form-group textarea {
  resize: vertical;
  min-height: 140px;
}

.contact-form .btn-primary {
  margin-top: 30px;
  width: 100%;
  padding: 20px;
  font-size: 18px;
  font-weight: 700;
}

/* ===== MAP SECTION ===== */
.map {
  height: 400px;
}

.map iframe {
  width: 100%;
  height: 100%;
  border: 0;
}

/* ===== FOOTER ===== */
.footer {
  background: var(--text-dark);
  color: var(--white);
  padding: 60px 0 0;
}

.footer-content {
  display: grid;
  grid-template-columns: 2fr 1fr 2fr;
  gap: 40px;
  margin-bottom: 40px;
}

.footer-column h3 {
  color: var(--primary-color);
  font-size: 18px;
  margin-bottom: 20px;
  font-weight: 600;
}

.footer-column p {
  font-size: 14px;
  line-height: 1.6;
  opacity: 0.8;
  margin-bottom: 15px;
}

.footer-column ul {
  list-style: none;
}

.footer-column ul li {
  margin-bottom: 8px;
}

.footer-column ul li a {
  color: var(--white);
  text-decoration: none;
  font-size: 14px;
  transition: var(--transition);
  opacity: 0.8;
}

.footer-column ul li a:hover {
  color: var(--primary-color);
  opacity: 1;
}

.footer-social {
  display: flex;
  gap: 15px;
  margin-bottom: 20px;
}

.footer-social a {
  color: var(--white);
  font-size: 20px;
  transition: var(--transition);
}

.footer-social a:hover {
  color: var(--primary-color);
  transform: translateY(-2px);
}

.footer-contact p {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  margin-bottom: 8px;
}

.footer-contact i {
  color: var(--primary-color);
  width: 16px;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding: 20px 0;
  text-align: center;
}

.footer-bottom p {
  font-size: 14px;
  opacity: 0.7;
}

.footer-bottom a {
  color: var(--primary-color);
  text-decoration: none;
}

/* ===== RESPONSIVE DESIGN ===== */
@media (max-width: 768px) {
  .nav-menu,
  .social-icons {
    display: none;
  }

  .hamburger {
    display: flex;
  }

  .hero-title {
    font-size: 2.5rem;
  }

  .values-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .services-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .projects-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .project-carousel {
    height: 250px;
  }

  .contact-content {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .form-row {
    grid-template-columns: 1fr;
  }

  .footer-content {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .gallery-track img {
    height: 250px;
  }

  .team-grid {
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  }
}

@media (max-width: 480px) {
  .container {
    padding: 0 15px;
  }

  .hero-content {
    padding: 0 15px;
  }

  .nav-container {
    padding: 0 15px;
  }

  .contact-form {
    padding: 30px 20px;
  }

  .value-card,
  .service-card {
    padding: 30px 20px;
  }

  .projects-grid {
    grid-template-columns: 1fr;
  }

  .project-card {
    min-width: 100%;
  }
  
  .mobile-header-content {
    padding: 0 16px;
  }
  
  .mobile-header-logo img {
    height: 32px;
  }
  
  .mobile-sidebar {
    width: 100%;
    right: -100%;
  }
  
  .mobile-sidebar-content {
    padding: 16px;
  }
  
  .mobile-sidebar-nav a {
    font-size: 18px;
    padding: 12px 20px;
  }
}

/* ===== UTILITY CLASSES ===== */
.text-center { text-align: center; }
.text-left { text-align: left; }
.text-right { text-align: right; }

.mb-20 { margin-bottom: 20px; }
.mb-40 { margin-bottom: 40px; }
.mb-60 { margin-bottom: 60px; }

.mt-20 { margin-top: 20px; }
.mt-40 { margin-top: 40px; }
.mt-60 { margin-top: 60px; }