/*
Theme Name: Jazmin Logistics
Description: Tema WordPress moderno e responsivo para a Jazmin Logistics & Serviços Lda - empresa líder em logística e engenharia civil em Moçambique.
Author: WordPress Developer
Version: 1.0.0
Text Domain: jazmin-logistics
Domain Path: /languages
*/

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800;900&display=swap');

/* =====================================================
   RESET & BASE STYLES
===================================================== */

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  line-height: 1.6;
  color: hsl(214, 100%, 16%);
  background: hsl(0, 0%, 100%);
  overflow-x: hidden;
}

/* =====================================================
   DESIGN SYSTEM VARIABLES
===================================================== */

:root {
  /* Jazmin Logistics Brand Colors */
  --background: hsl(0, 0%, 100%);
  --foreground: hsl(214, 100%, 16%);
  
  --card: hsl(0, 0%, 100%);
  --card-foreground: hsl(214, 100%, 16%);
  
  /* Primary: Azul Profundo #0A1F44 */
  --primary: hsl(214, 100%, 16%);
  --primary-foreground: hsl(0, 0%, 100%);
  --primary-glow: hsl(214, 100%, 25%);
  
  /* Secondary: Dourado Envelhecido #B29F7E */
  --secondary: hsl(32, 25%, 60%);
  --secondary-foreground: hsl(214, 100%, 16%);
  --secondary-glow: hsl(32, 35%, 70%);
  
  /* Muted: Cinza Claro #F4F4F4 */
  --muted: hsl(0, 0%, 96%);
  --muted-foreground: hsl(214, 15%, 45%);
  
  --accent: hsl(32, 25%, 60%);
  --accent-foreground: hsl(214, 100%, 16%);
  
  --border: hsl(0, 0%, 90%);
  --input: hsl(0, 0%, 90%);
  
  /* Custom Design Tokens */
  --gradient-primary: linear-gradient(135deg, hsl(214, 100%, 16%), hsl(214, 100%, 25%));
  --gradient-secondary: linear-gradient(135deg, hsl(32, 25%, 60%), hsl(32, 35%, 70%));
  --gradient-hero: linear-gradient(135deg, hsl(214, 100%, 16%, 0.95), hsl(214, 100%, 25%, 0.9));
  
  --shadow-elegant: 0 25px 50px -12px hsl(214, 100%, 16%, 0.25);
  --shadow-glow: 0 0 40px hsl(32, 25%, 60%, 0.3);
  
  --transition-smooth: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-bounce: all 0.6s cubic-bezier(0.68, -0.55, 0.265, 1.55);

  --radius: 0.5rem;
}

/* =====================================================
   LAYOUT UTILITIES
===================================================== */

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

.section-padding {
  padding: 5rem 1rem;
}

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

.flex {
  display: flex;
}

.flex-col {
  flex-direction: column;
}

.items-center {
  align-items: center;
}

.justify-between {
  justify-content: space-between;
}

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

.space-x-4 > * + * {
  margin-left: 1rem;
}

.space-y-4 > * + * {
  margin-top: 1rem;
}

.space-y-6 > * + * {
  margin-top: 1.5rem;
}

.grid {
  display: grid;
}

.grid-cols-1 {
  grid-template-columns: repeat(1, minmax(0, 1fr));
}

.grid-cols-2 {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.grid-cols-3 {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.grid-cols-4 {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.gap-4 {
  gap: 1rem;
}

.gap-6 {
  gap: 1.5rem;
}

.gap-8 {
  gap: 2rem;
}

.gap-12 {
  gap: 3rem;
}

/* =====================================================
   TYPOGRAPHY
===================================================== */

h1, h2, h3, h4, h5, h6 {
  font-weight: 700;
  line-height: 1.2;
  color: var(--primary);
}

.text-xl {
  font-size: 1.25rem;
}

.text-2xl {
  font-size: 1.5rem;
}

.text-3xl {
  font-size: 1.875rem;
}

.text-4xl {
  font-size: 2.25rem;
}

.text-5xl {
  font-size: 3rem;
}

.font-bold {
  font-weight: 700;
}

.font-semibold {
  font-weight: 600;
}

.font-medium {
  font-weight: 500;
}

.text-primary {
  color: var(--primary);
}

.text-secondary {
  color: var(--secondary);
}

.text-muted-foreground {
  color: var(--muted-foreground);
}

.text-primary-foreground {
  color: var(--primary-foreground);
}

.text-secondary-foreground {
  color: var(--secondary-foreground);
}

/* =====================================================
   BACKGROUNDS
===================================================== */

.bg-primary {
  background-color: var(--primary);
}

.bg-secondary {
  background-color: var(--secondary);
}

.bg-muted {
  background-color: var(--muted);
}

.bg-card {
  background-color: var(--card);
}

.bg-gradient-primary {
  background: var(--gradient-primary);
}

.bg-gradient-secondary {
  background: var(--gradient-secondary);
}

.bg-gradient-hero {
  background: var(--gradient-hero);
}

/* =====================================================
   COMPONENT STYLES
===================================================== */

/* Service Cards */
.service-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.5rem;
  box-shadow: var(--shadow-elegant);
  transition: var(--transition-smooth);
}

.service-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 35px 60px -12px hsl(214, 100%, 16%, 0.35);
}

/* CTA Buttons */
.cta-primary {
  background: var(--gradient-primary);
  color: var(--primary-foreground);
  padding: 1rem 2rem;
  border-radius: var(--radius);
  font-weight: 600;
  font-size: 1.125rem;
  text-decoration: none;
  display: inline-block;
  transition: var(--transition-smooth);
  border: none;
  cursor: pointer;
}

.cta-primary:hover {
  box-shadow: var(--shadow-glow);
  transform: scale(1.05);
  color: var(--primary-foreground);
  text-decoration: none;
}

.cta-secondary {
  background: var(--gradient-secondary);
  color: var(--secondary-foreground);
  padding: 1rem 2rem;
  border-radius: var(--radius);
  font-weight: 600;
  font-size: 1.125rem;
  text-decoration: none;
  display: inline-block;
  transition: var(--transition-smooth);
  border: none;
  cursor: pointer;
}

.cta-secondary:hover {
  box-shadow: var(--shadow-elegant);
  color: var(--secondary-foreground);
  text-decoration: none;
}

/* Buttons */
.btn {
  padding: 0.75rem 1.5rem;
  border-radius: var(--radius);
  border: none;
  cursor: pointer;
  font-weight: 500;
  text-decoration: none;
  display: inline-block;
  transition: var(--transition-smooth);
}

.btn-outline {
  background: transparent;
  border: 1px solid var(--border);
  color: var(--foreground);
}

.btn-outline:hover {
  background: var(--primary);
  color: var(--primary-foreground);
  border-color: var(--primary);
}

/* Form Elements */
.form-group {
  margin-bottom: 1.5rem;
}

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

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

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

/* =====================================================
   HEADER
===================================================== */

.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  transition: var(--transition-smooth);
}

.header.scrolled {
  background: hsl(0, 0%, 100%, 0.95);
  backdrop-filter: blur(20px);
  box-shadow: var(--shadow-elegant);
}

.header-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 5rem;
  padding: 0 1rem;
  max-width: 1200px;
  margin: 0 auto;
}

.logo {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  text-decoration: none;
}

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

.logo-text h1 {
  font-size: 1.25rem;
  margin: 0;
  color: var(--primary);
}

.logo-text p {
  font-size: 0.875rem;
  margin: 0;
  color: var(--muted-foreground);
}

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

.nav a {
  color: var(--foreground);
  text-decoration: none;
  font-weight: 500;
  transition: var(--transition-smooth);
}

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

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

.mobile-menu-toggle {
  display: block;
  background: none;
  border: none;
  color: var(--foreground);
  font-size: 1.5rem;
  cursor: pointer;
}

.mobile-menu {
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  background: hsl(0, 0%, 100%, 0.95);
  backdrop-filter: blur(20px);
  border-top: 1px solid var(--border);
  box-shadow: var(--shadow-elegant);
  display: none;
}

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

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

.mobile-menu a {
  display: block;
  padding: 0.75rem 1.5rem;
  color: var(--foreground);
  text-decoration: none;
  transition: var(--transition-smooth);
}

.mobile-menu a:hover {
  color: var(--primary);
  background: var(--muted);
}

/* =====================================================
   HERO SECTION
===================================================== */

.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  background: var(--gradient-hero);
  color: var(--primary-foreground);
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0.3;
}

.hero-content {
  position: relative;
  z-index: 10;
  text-align: center;
  padding: 2rem 1rem;
  max-width: 1200px;
  margin: 0 auto;
}

.hero-badge {
  display: inline-block;
  padding: 0.5rem 1rem;
  background: hsl(32, 25%, 60%, 0.1);
  color: var(--secondary);
  border-radius: 2rem;
  font-size: 0.875rem;
  font-weight: 500;
  margin-bottom: 1rem;
}

.hero-title {
  font-size: 3rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  color: var(--primary-foreground);
}

.hero-subtitle {
  color: var(--secondary);
  display: block;
}

.hero-description {
  font-size: 1.25rem;
  margin-bottom: 2rem;
  opacity: 0.9;
  max-width: 48rem;
  margin-left: auto;
  margin-right: auto;
}

.hero-actions {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 3rem;
}

.hero-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  max-width: 36rem;
  margin: 0 auto;
}

.hero-stat {
  text-align: center;
}

.hero-stat-number {
  font-size: 2.25rem;
  font-weight: 700;
  color: var(--secondary);
  margin-bottom: 0.5rem;
}

.hero-stat-label {
  font-size: 0.875rem;
  opacity: 0.8;
}

/* =====================================================
   SECTIONS
===================================================== */

.section {
  padding: 5rem 1rem;
}

.section-muted {
  background: hsl(0, 0%, 96%, 0.3);
}

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

.section-badge {
  display: inline-block;
  padding: 0.5rem 1rem;
  background: hsl(214, 100%, 16%, 0.1);
  color: var(--primary);
  border-radius: 2rem;
  font-size: 0.875rem;
  font-weight: 500;
  margin-bottom: 1rem;
}

.section-title {
  font-size: 3rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  color: var(--primary);
}

.section-subtitle {
  color: var(--secondary);
  display: block;
}

.section-description {
  font-size: 1.25rem;
  color: var(--muted-foreground);
  max-width: 48rem;
  margin: 0 auto;
}

/* =====================================================
   ABOUT SECTION
===================================================== */

.about-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  align-items: center;
  margin-bottom: 4rem;
}

.about-image {
  position: relative;
}

.about-image img {
  width: 100%;
  height: 500px;
  object-fit: cover;
  border-radius: var(--radius);
  box-shadow: var(--shadow-elegant);
}

.about-stats-card {
  position: absolute;
  bottom: -1.5rem;
  right: -1.5rem;
  background: var(--background);
  border-radius: var(--radius);
  padding: 1.5rem;
  box-shadow: var(--shadow-elegant);
  border: 1px solid var(--border);
  text-align: center;
}

.about-stats-number {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 0.25rem;
}

.about-stats-label {
  font-size: 0.875rem;
  color: var(--muted-foreground);
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

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

.value-icon {
  width: 4rem;
  height: 4rem;
  background: var(--gradient-primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  color: var(--primary-foreground);
  font-size: 2rem;
  transition: var(--transition-smooth);
}

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

/* =====================================================
   SERVICES SECTION
===================================================== */

.services-tabs {
  margin-bottom: 3rem;
}

.tabs-list {
  display: flex;
  justify-content: center;
  gap: 0.5rem;
  margin-bottom: 3rem;
  flex-wrap: wrap;
}

.tab-trigger {
  padding: 0.75rem 1.5rem;
  border: 1px solid var(--border);
  background: transparent;
  color: var(--foreground);
  border-radius: var(--radius);
  cursor: pointer;
  transition: var(--transition-smooth);
}

.tab-trigger.active,
.tab-trigger:hover {
  background: var(--primary);
  color: var(--primary-foreground);
  border-color: var(--primary);
  box-shadow: var(--shadow-glow);
}

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

.service-icon {
  width: 4rem;
  height: 4rem;
  background: var(--gradient-primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem;
  color: var(--primary-foreground);
  font-size: 2rem;
  transition: var(--transition-smooth);
}

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

.service-features {
  list-style: none;
  padding: 0;
}

.service-features li {
  display: flex;
  align-items: center;
  font-size: 0.75rem;
  color: var(--muted-foreground);
  margin-bottom: 0.5rem;
}

.service-features li::before {
  content: '';
  width: 6px;
  height: 6px;
  background: var(--secondary);
  border-radius: 50%;
  margin-right: 0.5rem;
}

/* =====================================================
   PROJECTS SECTION
===================================================== */

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

.projects-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 2rem;
  margin-bottom: 5rem;
}

.project-card {
  overflow: hidden;
  border-radius: var(--radius);
  background: var(--card);
  border: 1px solid var(--border);
  box-shadow: var(--shadow-elegant);
  transition: var(--transition-smooth);
}

.project-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 35px 60px -12px hsl(214, 100%, 16%, 0.35);
}

.project-image {
  height: 12rem;
  background: var(--gradient-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary-foreground);
  position: relative;
}

.project-status {
  position: absolute;
  top: 1rem;
  right: 1rem;
  padding: 0.25rem 0.75rem;
  border-radius: 2rem;
  font-size: 0.75rem;
  font-weight: 500;
}

.project-status.completed {
  background: hsl(142, 76%, 36%, 0.1);
  color: hsl(142, 76%, 36%);
}

.project-status.ongoing {
  background: hsl(45, 93%, 47%, 0.1);
  color: hsl(45, 93%, 47%);
}

.project-content {
  padding: 1.5rem;
}

.project-meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 0.5rem;
}

.project-category {
  padding: 0.25rem 0.5rem;
  border-radius: 0.25rem;
  font-size: 0.75rem;
  font-weight: 500;
}

.project-category.logistics {
  background: hsl(214, 100%, 16%, 0.1);
  color: var(--primary);
}

.project-category.engineering {
  background: hsl(32, 25%, 60%, 0.1);
  color: var(--secondary);
}

.project-date {
  font-size: 0.75rem;
  color: var(--muted-foreground);
}

.project-title {
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 0.5rem;
  transition: var(--transition-smooth);
}

.project-card:hover .project-title {
  color: var(--secondary);
}

.project-description {
  color: var(--muted-foreground);
  font-size: 0.875rem;
  line-height: 1.6;
  margin-bottom: 1rem;
}

.project-details {
  margin-bottom: 1rem;
}

.project-detail {
  display: flex;
  align-items: center;
  font-size: 0.75rem;
  color: var(--muted-foreground);
  margin-bottom: 0.5rem;
}

.project-detail svg {
  width: 12px;
  height: 12px;
  margin-right: 0.5rem;
}

/* =====================================================
   TESTIMONIALS
===================================================== */

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

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

.testimonial-quote::before {
  content: '"';
  font-size: 2.5rem;
  color: var(--secondary);
  display: block;
  margin-bottom: 1rem;
}

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

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

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

.testimonial-company {
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--secondary);
}

/* =====================================================
   CLIENTS SECTION
===================================================== */

.trust-badge {
  display: inline-flex;
  align-items: center;
  gap: 1rem;
  background: linear-gradient(to right, hsl(214, 100%, 16%, 0.05), hsl(32, 25%, 60%, 0.05));
  border-radius: 2rem;
  padding: 1rem 2rem;
  border: 1px solid hsl(214, 100%, 16%, 0.1);
  margin-bottom: 4rem;
}

.clients-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 2rem;
  margin-bottom: 5rem;
}

.client-card {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 6rem;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  transition: var(--transition-smooth);
}

.client-card:hover {
  box-shadow: var(--shadow-elegant);
  border-color: hsl(214, 100%, 16%, 0.2);
}

.client-logo {
  text-align: center;
  padding: 1rem;
}

.client-icon {
  width: 3rem;
  height: 3rem;
  background: var(--gradient-primary);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 0.5rem;
  color: var(--primary-foreground);
  font-weight: 700;
  font-size: 1.125rem;
  transition: var(--transition-smooth);
}

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

.client-name {
  font-size: 0.75rem;
  font-weight: 500;
  color: var(--primary);
  transition: var(--transition-smooth);
}

.client-card:hover .client-name {
  color: var(--secondary);
}

.partnerships-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  margin-bottom: 4rem;
}

.partnership-card {
  text-align: center;
  padding: 1.5rem;
  border-radius: var(--radius);
  background: hsl(0, 0%, 96%, 0.3);
  transition: var(--transition-smooth);
}

.partnership-card:hover {
  background: hsl(0, 0%, 96%, 0.5);
}

.partnership-icon {
  width: 4rem;
  height: 4rem;
  background: var(--gradient-secondary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem;
  color: var(--secondary-foreground);
  font-size: 2rem;
  transition: var(--transition-smooth);
}

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

.success-stories {
  background: var(--gradient-primary);
  border-radius: var(--radius);
  padding: 3rem 2rem;
  text-align: center;
  color: var(--primary-foreground);
}

.success-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-top: 2rem;
}

.success-stat-number {
  font-size: 2.25rem;
  font-weight: 700;
  color: var(--secondary);
  margin-bottom: 0.5rem;
}

.success-stat-label {
  opacity: 0.8;
}

/* =====================================================
   CONTACT SECTION
===================================================== */

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

.contact-form {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 2rem;
  box-shadow: var(--shadow-elegant);
}

.contact-info {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.contact-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.5rem;
  box-shadow: var(--shadow-elegant);
}

.contact-card-content {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}

.contact-icon {
  width: 3rem;
  height: 3rem;
  background: var(--gradient-primary);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary-foreground);
  font-size: 1.5rem;
  flex-shrink: 0;
}

.contact-details h3 {
  font-weight: 600;
  color: var(--primary);
  margin-bottom: 0.5rem;
}

.contact-details p {
  color: var(--muted-foreground);
  font-size: 0.875rem;
  margin-bottom: 0.25rem;
}

.whatsapp-cta {
  background: var(--gradient-secondary);
  text-align: center;
  color: var(--secondary-foreground);
}

.whatsapp-cta h3 {
  color: var(--secondary-foreground);
}

.whatsapp-cta p {
  color: hsl(214, 100%, 16%, 0.8);
}

.whatsapp-btn {
  background: white;
  color: var(--secondary-foreground);
  border: none;
  padding: 0.75rem 1.5rem;
  border-radius: var(--radius);
  font-weight: 500;
  cursor: pointer;
  transition: var(--transition-smooth);
}

.whatsapp-btn:hover {
  background: hsl(0, 0%, 90%);
}

.quality-assurance {
  border: 1px solid hsl(214, 100%, 16%, 0.2);
}

.quality-list {
  list-style: none;
  padding: 0;
}

.quality-list li {
  display: flex;
  align-items: center;
  font-size: 0.875rem;
  color: var(--muted-foreground);
  margin-bottom: 0.5rem;
}

.quality-list li::before {
  content: '';
  width: 6px;
  height: 6px;
  background: var(--primary);
  border-radius: 50%;
  margin-right: 0.75rem;
}

.map-placeholder {
  margin-top: 4rem;
}

.map-card {
  height: 16rem;
  background: linear-gradient(to right, hsl(214, 100%, 16%, 0.1), hsl(32, 25%, 60%, 0.1));
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  box-shadow: var(--shadow-elegant);
}

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

.map-content svg {
  width: 3rem;
  height: 3rem;
  color: var(--primary);
  margin-bottom: 1rem;
}

/* =====================================================
   FOOTER
===================================================== */

.footer {
  background: var(--primary);
  color: var(--primary-foreground);
  position: relative;
  overflow: hidden;
}

.footer-bg {
  position: absolute;
  inset: 0;
  opacity: 0.05;
}

.footer-bg svg:first-child {
  position: absolute;
  top: 2.5rem;
  left: 2.5rem;
  width: 8rem;
  height: 8rem;
}

.footer-bg svg:last-child {
  position: absolute;
  bottom: 2.5rem;
  right: 2.5rem;
  width: 8rem;
  height: 8rem;
}

.footer-content {
  position: relative;
  padding: 4rem 1rem;
  max-width: 1200px;
  margin: 0 auto;
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
}

.footer-company {
  grid-column: span 1;
}

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

.footer-logo-icon {
  width: 3rem;
  height: 3rem;
  background: var(--secondary);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--secondary-foreground);
  font-size: 1.5rem;
  font-weight: 700;
}

.footer-description {
  color: hsl(0, 0%, 100%, 0.8);
  margin-bottom: 1.5rem;
  line-height: 1.6;
}

.social-links {
  display: flex;
  gap: 1rem;
}

.social-link {
  width: 2.5rem;
  height: 2.5rem;
  background: hsl(0, 0%, 100%, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary-foreground);
  text-decoration: none;
  transition: var(--transition-smooth);
}

.social-link:hover {
  background: var(--secondary);
  color: var(--secondary-foreground);
}

.footer-section h3 {
  font-size: 1.125rem;
  font-weight: 600;
  margin-bottom: 1.5rem;
  color: var(--primary-foreground);
}

.footer-links {
  list-style: none;
  padding: 0;
}

.footer-links li {
  margin-bottom: 0.75rem;
}

.footer-links a,
.footer-links button {
  color: hsl(0, 0%, 100%, 0.8);
  text-decoration: none;
  background: none;
  border: none;
  cursor: pointer;
  font-size: 1rem;
  text-align: left;
  transition: var(--transition-smooth);
}

.footer-links a:hover,
.footer-links button:hover {
  color: var(--secondary);
}

.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  margin-bottom: 1rem;
}

.footer-contact-icon {
  width: 1.25rem;
  height: 1.25rem;
  color: var(--secondary);
  margin-top: 0.25rem;
  flex-shrink: 0;
}

.footer-contact-text {
  color: hsl(0, 0%, 100%, 0.8);
  font-size: 0.875rem;
  line-height: 1.4;
}

.newsletter {
  border-top: 1px solid hsl(0, 0%, 100%, 0.1);
  padding: 2rem 1rem;
}

.newsletter-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1200px;
  margin: 0 auto;
  gap: 2rem;
}

.newsletter-form {
  display: flex;
  gap: 0.75rem;
  max-width: 24rem;
  flex: 1;
}

.newsletter-input {
  flex: 1;
  padding: 0.5rem 1rem;
  border-radius: var(--radius);
  background: hsl(0, 0%, 100%, 0.1);
  border: 1px solid hsl(0, 0%, 100%, 0.2);
  color: var(--primary-foreground);
}

.newsletter-input::placeholder {
  color: hsl(0, 0%, 100%, 0.6);
}

.newsletter-input:focus {
  outline: none;
  border-color: var(--secondary);
  box-shadow: 0 0 0 3px hsl(32, 25%, 60%, 0.2);
}

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

.footer-bottom-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  max-width: 1200px;
  margin: 0 auto;
}

.footer-copyright {
  text-align: center;
}

.footer-copyright p {
  color: hsl(0, 0%, 100%, 0.8);
  font-size: 0.875rem;
  margin-bottom: 0.25rem;
}

.footer-copyright small {
  color: hsl(0, 0%, 100%, 0.6);
  font-size: 0.75rem;
}

.footer-legal {
  display: flex;
  gap: 1.5rem;
  font-size: 0.875rem;
}

.footer-legal a {
  color: hsl(0, 0%, 100%, 0.8);
  text-decoration: none;
  transition: var(--transition-smooth);
}

.footer-legal a:hover {
  color: var(--secondary);
}

.back-to-top {
  position: absolute;
  bottom: 1.5rem;
  right: 1.5rem;
  width: 3rem;
  height: 3rem;
  background: var(--secondary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--secondary-foreground);
  border: none;
  cursor: pointer;
  box-shadow: var(--shadow-glow);
  transition: var(--transition-smooth);
}

.back-to-top:hover {
  background: var(--secondary-glow);
  transform: translateY(-2px);
}

/* =====================================================
   MODAL
===================================================== */

.modal-overlay {
  position: fixed;
  inset: 0;
  background: hsl(0, 0%, 0%, 0.8);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2000;
  padding: 1rem;
  opacity: 0;
  visibility: hidden;
  transition: var(--transition-smooth);
}

.modal-overlay.active {
  opacity: 1;
  visibility: visible;
}

.modal-content {
  background: var(--background);
  border-radius: var(--radius);
  padding: 2rem;
  max-width: 48rem;
  width: 100%;
  max-height: 90vh;
  overflow-y: auto;
  transform: scale(0.9);
  transition: var(--transition-smooth);
}

.modal-overlay.active .modal-content {
  transform: scale(1);
}

.modal-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 1.5rem;
}

.modal-title {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--primary);
}

.modal-close {
  background: none;
  border: none;
  font-size: 1.5rem;
  color: var(--muted-foreground);
  cursor: pointer;
  padding: 0.5rem;
  border-radius: var(--radius);
  transition: var(--transition-smooth);
}

.modal-close:hover {
  background: hsl(0, 0%, 0%, 0.1);
  color: var(--foreground);
}

.modal-body {
  color: var(--foreground);
}

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

.detail-item {
  padding: 1rem;
  background: var(--muted);
  border-radius: var(--radius);
}

.detail-label {
  font-weight: 600;
  color: var(--primary);
  font-size: 0.875rem;
  margin-bottom: 0.25rem;
}

.detail-value {
  color: var(--foreground);
}

.project-section {
  margin-bottom: 2rem;
}

.project-section h4 {
  font-weight: 600;
  color: var(--primary);
  margin-bottom: 1rem;
}

.project-list {
  list-style: none;
  padding: 0;
}

.project-list li {
  padding: 0.5rem 0;
  border-bottom: 1px solid var(--border);
  color: var(--muted-foreground);
  font-size: 0.875rem;
}

.project-list li:last-child {
  border-bottom: none;
}

/* =====================================================
   RESPONSIVE DESIGN
===================================================== */

@media (min-width: 768px) {
  .nav {
    display: flex;
  }
  
  .mobile-menu-toggle {
    display: none;
  }
  
  .hero-title {
    font-size: 4rem;
  }
  
  .section-title {
    font-size: 4rem;
  }
  
  .about-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .contact-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .newsletter-content {
    flex-direction: row;
    text-align: left;
  }
  
  .footer-bottom-content {
    flex-direction: row;
  }
  
  .footer-copyright {
    text-align: left;
  }
  
  .project-details-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (min-width: 1024px) {
  .hero-title {
    font-size: 5rem;
  }
  
  .section-title {
    font-size: 5rem;
  }
  
  .services-grid {
    grid-template-columns: repeat(4, 1fr);
  }
  
  .projects-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 767px) {
  .hero-actions {
    flex-direction: column;
    align-items: center;
  }
  
  .hero-stats {
    grid-template-columns: 1fr;
    gap: 1rem;
  }
  
  .values-grid {
    grid-template-columns: 1fr;
  }
  
  .tabs-list {
    grid-template-columns: 1fr;
  }
  
  .services-grid {
    grid-template-columns: 1fr;
  }
  
  .projects-grid {
    grid-template-columns: 1fr;
  }
  
  .testimonials-grid {
    grid-template-columns: 1fr;
  }
  
  .clients-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .partnerships-grid {
    grid-template-columns: 1fr;
  }
  
  .success-stats {
    grid-template-columns: 1fr;
    gap: 1rem;
  }
  
  .footer-grid {
    grid-template-columns: 1fr;
  }
  
  .newsletter-content {
    flex-direction: column;
    text-align: center;
  }
  
  .newsletter-form {
    flex-direction: column;
    max-width: 100%;
  }
  
  .project-details-grid {
    grid-template-columns: 1fr;
  }
}

/* =====================================================
   ANIMATIONS
===================================================== */

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

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

@keyframes slideInLeft {
  from {
    opacity: 0;
    transform: translateX(-50px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes slideInRight {
  from {
    opacity: 0;
    transform: translateX(50px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

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

.animate-float {
  animation: float 6s ease-in-out infinite;
}

.animate-slide-in-left {
  animation: slideInLeft 0.8s ease-out;
}

.animate-slide-in-right {
  animation: slideInRight 0.8s ease-out;
}

/* =====================================================
   UTILITY CLASSES
===================================================== */

.hidden {
  display: none !important;
}

.show {
  display: block !important;
}

.opacity-0 {
  opacity: 0;
}

.opacity-100 {
  opacity: 1;
}

.pointer-events-none {
  pointer-events: none;
}

.cursor-pointer {
  cursor: pointer;
}

.select-none {
  user-select: none;
}

.overflow-hidden {
  overflow: hidden;
}

.relative {
  position: relative;
}

.absolute {
  position: absolute;
}

.fixed {
  position: fixed;
}

.inset-0 {
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
}

.z-10 {
  z-index: 10;
}

.z-50 {
  z-index: 50;
}

.w-full {
  width: 100%;
}

.h-full {
  height: 100%;
}

.min-h-screen {
  min-height: 100vh;
}

.mx-auto {
  margin-left: auto;
  margin-right: auto;
}

.mb-4 {
  margin-bottom: 1rem;
}

.mb-6 {
  margin-bottom: 1.5rem;
}

.mb-8 {
  margin-bottom: 2rem;
}

.mt-4 {
  margin-top: 1rem;
}

.mt-6 {
  margin-top: 1.5rem;
}

.p-4 {
  padding: 1rem;
}

.p-6 {
  padding: 1.5rem;
}

.px-4 {
  padding-left: 1rem;
  padding-right: 1rem;
}

.py-4 {
  padding-top: 1rem;
  padding-bottom: 1rem;
}

.rounded {
  border-radius: var(--radius);
}

.rounded-full {
  border-radius: 9999px;
}

.border {
  border-width: 1px;
  border-style: solid;
  border-color: var(--border);
}

.shadow {
  box-shadow: var(--shadow-elegant);
}

.transition {
  transition: var(--transition-smooth);
}

.hover\:scale-105:hover {
  transform: scale(1.05);
}

.hover\:translate-y-\[-8px\]:hover {
  transform: translateY(-8px);
}

.group:hover .group-hover\:scale-110 {
  transform: scale(1.1);
}

.group:hover .group-hover\:text-secondary {
  color: var(--secondary);
}