/* ============================================
   APEX CONSTRUCTION - Global Styles
   ============================================ */

/* Import Google Fonts */
@import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:wght@400;600;700&family=Inter:wght@400;500;600&display=swap');

/* ============================================
   CSS VARIABLES (Couleurs & Typographie)
   ============================================ */
:root {
  /* IDENTITÉ - Palette Chaude (Toitures APEX) */
  --orange-chantier: #F68B1E;
  --rouge-energie: #D73C2C;
  --jaune-qualite: #F2C849;

  /* NEUTRES - Professionnels */
  --blanc-pur: #FFFFFF;
  --noir-graphite: #111113;
  --gris-aciel: #DFE3E8;

  /* CORPORATE - Groupe Apex */
  --bleu-nuit: #102445;
  --bleu-professionnel: #0D274D;
  --vert-stabilite: #267A4A;

  /* MAPPING - Compatibilité ancien code */
  --primary-blue: var(--bleu-nuit);
  --accent-orange: var(--orange-chantier);
  --text-gray: var(--noir-graphite);
  --light-gray: var(--gris-aciel);
  --white: var(--blanc-pur);
  --border-gray: var(--gris-aciel);

  --font-title: 'Plus Jakarta Sans', sans-serif;
  --font-text: 'Inter', sans-serif;

  --transition: all 0.3s ease;
}

/* ============================================
   RESET & BASE STYLES
   ============================================ */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-text);
  color: var(--text-gray);
  line-height: 1.6;
  background-color: var(--white);
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-title);
  font-weight: 700;
  color: var(--primary-blue);
}

h1 { font-size: 2rem; }
h2 { font-size: 1.8rem; }
h3 { font-size: 1.3rem; }
h4 { font-size: 1.1rem; }

@media (min-width: 768px) {
  h1 { font-size: 2.5rem; }
  h2 { font-size: 2.2rem; }
  h3 { font-size: 1.5rem; }
  h4 { font-size: 1.25rem; }
}

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

a {
  text-decoration: none;
  color: var(--accent-orange);
  transition: var(--transition);
}

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

button {
  font-family: var(--font-text);
  cursor: pointer;
  border: none;
  border-radius: 6px;
  transition: var(--transition);
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

/* ============================================
   HEADER & NAVIGATION (Sticky)
   ============================================ */
header {
  position: fixed;
  top: 0;
  width: 100%;
  background: linear-gradient(135deg, var(--primary-blue) 0%, #0A1A35 100%);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
  z-index: 1000;
  transition: var(--transition);
  padding: 0.75rem 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 100px;
  border-bottom: 2px solid rgba(255, 255, 255, 0.1);
}

header.scrolled {
  height: 70px;
  padding: 0.5rem 2rem;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.3);
  background: linear-gradient(135deg, var(--primary-blue) 0%, #0A1A35 100%);
}

.logo {
  max-width: 120px;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  animation: zoomIn 0.6s ease forwards;
  cursor: pointer;
  text-decoration: none;
  border: none;
  background: none;
  padding: 0;
}

header.scrolled .logo {
  max-width: 100px;
}

.logo:hover {
  transform: scale(1.15) rotate(5deg);
}

.logo:hover img {
  filter: drop-shadow(0 2px 8px rgba(246, 139, 30, 0.6)) brightness(1.3);
}

.logo img {
  width: 100%;
  height: auto;
  filter: drop-shadow(0 2px 4px rgba(255, 255, 255, 0.3));
  transition: all 0.3s ease;
}

/* Navigation menu - MOBILE */
nav {
  display: none;
  position: fixed;
  top: 100px;
  left: 0;
  width: 100%;
  max-height: calc(100vh - 100px);
  background: linear-gradient(135deg, var(--blanc-pur) 0%, #f5f5f5 100%);
  flex-direction: column;
  padding: 0;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
  overflow-y: auto;
  animation: slideDown 0.35s cubic-bezier(0.68, -0.55, 0.265, 1.55) forwards;
  z-index: 999;
}

nav.active {
  display: flex;
}

/* Mobile menu links */
nav a {
  display: block;
  padding: 1.25rem 2rem;
  padding-left: 3rem;
  color: var(--primary-blue);
  font-weight: 500;
  border-bottom: 1px solid var(--light-gray);
  transition: all 0.3s ease;
  position: relative;
  border-top: none;
  text-decoration: none;
}

nav a::before {
  content: '';
  position: absolute;
  left: 0.75rem;
  top: 0;
  height: 100%;
  width: 3px;
  background-color: var(--accent-orange);
  transform: scaleY(0);
  transform-origin: top;
  transition: transform 0.3s ease;
}

nav a:hover::before {
  transform: scaleY(1);
}

nav a:last-child {
  border-bottom: none;
}

nav a:hover {
  color: var(--accent-orange);
  background-color: rgba(241, 196, 15, 0.08);
  border-radius: 4px;
}

nav a.active {
  color: var(--accent-orange);
}

@keyframes slideDown {
  from {
    opacity: 0;
    transform: translateY(-20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Desktop Navigation - Override mobile styles */
@media (min-width: 1024px) {
  header {
    padding: 1rem 3rem;
    height: 100px;
  }

  header.scrolled {
    height: 80px;
    padding: 0.75rem 3rem;
  }

  nav {
    display: flex !important;
    position: relative;
    top: auto;
    width: auto;
    background: transparent !important;
    background-color: transparent !important;
    background-image: none !important;
    flex-direction: row;
    padding: 0;
    box-shadow: none !important;
    gap: 2.5rem;
    align-items: center;
    animation: none !important;
  }

  nav a {
    padding: 0.5rem 0;
    border-bottom: none !important;
    color: var(--white);
    font-size: 1.1rem;
    font-weight: 500;
    transition: all 0.3s ease;
    position: relative;
    padding-left: 0 !important;
  }

  nav a::before {
    display: none !important;
  }

  nav a::after {
    display: none;
  }

  nav a:hover {
    color: var(--accent-orange);
    transform: translateY(-2px);
  }

  nav a.active {
    color: var(--accent-orange);
  }
}

/* Mobile burger menu */
.menu-toggle {
  display: flex;
  flex-direction: column;
  gap: 6px;
  background: rgba(255, 255, 255, 0.15);
  border: none;
  cursor: pointer;
  z-index: 1001;
  padding: 0.75rem;
  border-radius: 6px;
  transition: var(--transition);
  align-items: center;
  justify-content: center;
}

.menu-toggle:hover {
  background: rgba(255, 255, 255, 0.25);
  transform: scale(1.05);
}

.menu-toggle span {
  width: 28px;
  height: 3px;
  background-color: var(--white);
  border-radius: 2px;
  transition: all 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
  display: block;
}

.menu-toggle.active span:nth-child(1) {
  transform: rotate(45deg) translate(11px, 11px);
  background-color: var(--accent-orange);
}

.menu-toggle.active span:nth-child(2) {
  opacity: 0;
  transform: translateX(-10px);
}

.menu-toggle.active span:nth-child(3) {
  transform: rotate(-45deg) translate(9px, -9px);
  background-color: var(--accent-orange);
}

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

/* CTA Button Header */
.cta-button {
  background-color: var(--accent-orange);
  color: var(--white);
  padding: 0.75rem 1.8rem;
  font-size: 0.9rem;
  font-weight: 700;
  border-radius: 6px;
  transition: var(--transition);
  box-shadow: 0 4px 12px rgba(239, 126, 17, 0.3);
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
}

.cta-button:hover {
  background-color: #d46d0a;
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(239, 126, 17, 0.4);
}

/* ============================================
   HERO SECTION WITH CAROUSEL
   ============================================ */
.hero {
  width: 100%;
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: var(--white);
  margin-top: 0;
  padding-top: 100px;
  padding-bottom: 2rem;
  position: relative;
  box-sizing: border-box;
  overflow: hidden;
}

/* Carousel Container */
.hero-carousel {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}

/* Carousel Slides */
.carousel-slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  opacity: 0;
  transition: opacity 0.8s ease-in-out;
}

.carousel-slide.active {
  opacity: 1;
}

.carousel-slide::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(0, 0, 0, 0.5) 0%, rgba(0, 0, 0, 0.4) 100%);
}

/* Carousel Controls (Arrows) */
.carousel-controls {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 100%;
  display: flex;
  justify-content: space-between;
  padding: 0 2rem;
  z-index: 20;
  pointer-events: none;
}

.carousel-nav {
  background: rgba(255, 255, 255, 0.2);
  color: var(--white);
  border: none;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  transition: all 0.3s ease;
  pointer-events: all;
  backdrop-filter: blur(5px);
}

.carousel-nav:hover {
  background: rgba(239, 126, 17, 0.8);
  transform: scale(1.1);
}

.carousel-prev {
  margin-right: auto;
}

.carousel-next {
  margin-left: auto;
}

/* Carousel Dots */
.carousel-dots {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 0.75rem;
  z-index: 20;
}

.dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.4);
  border: 2px solid transparent;
  cursor: pointer;
  transition: all 0.3s ease;
}

.dot.active {
  background: var(--accent-orange);
  width: 32px;
  border-radius: 6px;
  border: 2px solid var(--white);
}


.hero-content {
  max-width: 700px;
  padding: 3rem 2rem;
  animation: fadeInUp 1s ease;
  z-index: 10;
}

.hero h1 {
  font-size: 2.2rem;
  color: var(--accent-orange);
  margin-bottom: 0.8rem;
  font-weight: 700;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
  line-height: 1.2;
  filter: drop-shadow(0 3px 8px rgba(0, 0, 0, 0.3));
  padding: 1.5rem 2rem;
  background-color: rgba(0, 0, 0, 0.35);
  border-radius: 8px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  animation: fadeInUp 1s ease both;
}

.hero p {
  font-size: 1rem;
  margin-bottom: 2rem;
  color: rgba(255, 255, 255, 0.95);
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
  font-weight: 500;
  background-color: rgba(0, 0, 0, 0.35);
  padding: 1rem 1.5rem;
  border-radius: 8px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  animation: fadeInUp 1s ease 0.3s both;
}

.hero h1 .orange {
  color: var(--accent-orange);
}

.hero h1 .white {
  color: var(--white);
}

.hero-buttons {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  justify-content: center;
}

.btn {
  padding: 1rem 2rem;
  font-size: 1rem;
  font-weight: 600;
  border-radius: 6px;
  transition: var(--transition);
  cursor: pointer;
  text-decoration: none;
  display: inline-block;
  border: none;
}

.btn-white {
  background-color: rgba(255, 255, 255, 0.2);
  color: var(--white);
  border: 2px solid var(--white);
}

.btn-white:hover {
  background-color: var(--white);
  color: var(--primary-blue);
}

.btn-orange {
  background-color: var(--accent-orange);
  color: var(--white);
}

.btn-orange:hover {
  background-color: #d46d0a;
  transform: translateY(-2px);
  box-shadow: 0 8px 16px rgba(239, 126, 17, 0.3);
}

@media (min-width: 768px) {
  .hero-buttons {
    flex-direction: row;
    justify-content: center;
  }

  .hero h1 {
    font-size: 3.5rem;
  }
}

/* Scroll arrow */
.scroll-arrow {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  animation: bounce 2s infinite;
  cursor: pointer;
}

.scroll-arrow svg {
  width: 30px;
  height: 30px;
  stroke: var(--white);
  fill: none;
  stroke-width: 2;
}

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

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

@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);
  }
}

@keyframes zoomIn {
  from {
    opacity: 0;
    transform: scale(0.8);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

/* ============================================
   SECTION STYLES
   ============================================ */
section {
  padding: 4rem 2rem;
}

section h2 {
  text-align: center;
  margin-bottom: 1.5rem;
  font-size: 1.8rem;
}

@media (min-width: 768px) {
  section h2 {
    margin-bottom: 3rem;
    font-size: 2.2rem;
  }
}

.section-subtitle {
  text-align: center;
  color: var(--text-gray);
  margin-bottom: 2rem;
  font-size: 1rem;
}

@media (min-width: 768px) {
  section {
    padding: 5rem 3rem;
  }
}

@media (min-width: 1024px) {
  section {
    padding: 6rem 4rem;
  }
}

/* ============================================
   STORY SECTION
   ============================================ */
.story {
  background-color: var(--white);
  padding: 2.5rem 2rem;
}

.story-wrapper {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  align-items: center;
  max-width: 900px;
  margin: 0 auto;
}

@media (min-width: 768px) {
  .story-wrapper {
    grid-template-columns: 1fr 1fr;
    gap: 2.5rem;
  }
}

.story-image {
  position: relative;
  overflow: hidden;
  border-radius: 8px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
  animation: slideInLeft 1s ease-out forwards;
  max-height: 350px;
}

.story-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.3s ease;
}

.story-image:hover img {
  transform: scale(1.05);
}

.story-content {
  animation: slideInRight 1s ease-out 0.2s both;
}

.story-content h2 {
  color: var(--primary-blue);
  margin-bottom: 1rem;
  font-size: 1.6rem;
  animation: slideInRight 1.1s ease-out 0.4s both;
}

.story-content p {
  color: var(--text-gray);
  font-size: 0.95rem;
  line-height: 1.7;
  margin-bottom: 0.8rem;
  animation: slideInRight 1.2s ease-out 0.6s both;
}

/* ============================================
   VALUES / USP SECTION
   ============================================ */
.values {
  background-color: var(--light-gray);
}

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

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

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

.value-card {
  background-color: var(--white);
  padding: 2rem;
  border-radius: 8px;
  text-align: center;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
  transition: var(--transition);
  animation: fadeInUp 0.6s ease forwards;
  opacity: 0;
}

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

.value-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.15);
}

.value-card i {
  font-size: 2.5rem;
  color: var(--accent-orange);
  margin-bottom: 1rem;
}

.value-card h3 {
  margin-bottom: 0.5rem;
  font-size: 1.3rem;
}

.value-card p {
  color: var(--text-gray);
  font-size: 0.95rem;
}

/* ============================================
   SERVICES SECTION
   ============================================ */
.services {
  background-color: var(--white);
}

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

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

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

.service-card {
  background: var(--white);
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  animation: fadeInUp 0.6s ease forwards;
  opacity: 0;
  display: flex;
  flex-direction: column;
}

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

.service-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.2);
}

/* Service Image */
.service-image {
  position: relative;
  overflow: hidden;
  height: 200px;
  background-color: var(--primary-blue);
}

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

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

.service-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(16, 36, 69, 0.3);
  transition: all 0.3s ease;
}

.service-card:hover .service-overlay {
  background: rgba(246, 139, 30, 0.2);
}

/* Service Content */
.service-content {
  padding: 1.8rem;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.service-card h3 {
  color: var(--primary-blue);
  margin-bottom: 0.8rem;
  font-size: 1.2rem;
  font-weight: 600;
}

.service-card p {
  color: var(--text-gray);
  margin-bottom: 1.2rem;
  font-size: 0.9rem;
  line-height: 1.6;
  flex: 1;
}

.service-link {
  color: var(--accent-orange);
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
  display: inline-block;
  font-size: 0.9rem;
}

.service-link:hover {
  color: var(--primary-blue);
  transform: translateX(5px);
}

/* ============================================
   GALLERY / REALIZATIONS SECTION
   ============================================ */
.gallery {
  background-color: var(--light-gray);
}

.gallery-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  max-width: 100%;
}

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

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

.gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: 8px;
  height: 250px;
  background-color: var(--primary-blue);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  animation: fadeInUp 0.6s ease forwards;
  opacity: 0;
}

@media (min-width: 768px) {
  .gallery-item {
    height: 300px;
  }
}

@media (min-width: 1024px) {
  .gallery-item {
    height: 350px;
  }
}

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

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition);
}

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

.gallery-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  color: var(--white);
  opacity: 0;
  transition: var(--transition);
}

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

.gallery-overlay h3 {
  color: var(--white);
  font-size: 1.3rem;
  margin-bottom: 0.5rem;
}

.gallery-overlay p {
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.9rem;
}

/* ============================================
   CONTACT SECTION
   ============================================ */
.contact-section {
  background: linear-gradient(135deg, var(--accent-orange), #d46d0a);
  color: var(--white);
  padding: 3.5rem 2rem;
}

.contact-content {
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
}

.contact-section h2 {
  color: var(--white);
  margin-bottom: 0.8rem;
  font-size: 2.2rem;
  font-weight: 700;
}

.contact-subtitle {
  color: rgba(255, 255, 255, 0.95);
  margin-bottom: 2.5rem;
  font-size: 1.05rem;
  line-height: 1.6;
}

/* Contact Methods Grid */
.contact-methods {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  margin-bottom: 3rem;
}

@media (min-width: 768px) {
  .contact-methods {
    grid-template-columns: repeat(3, 1fr);
    gap: 2.5rem;
  }
}

.contact-method {
  background-color: rgba(255, 255, 255, 0.1);
  padding: 2rem 1.5rem;
  border-radius: 10px;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  transition: all 0.3s ease;
  animation: slideInUp 0.8s ease-out;
}

.contact-method:hover {
  background-color: rgba(255, 255, 255, 0.15);
  transform: translateY(-5px);
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.2);
}

.contact-icon {
  font-size: 2.5rem;
  margin-bottom: 1rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 60px;
  height: 60px;
  background-color: rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  transition: all 0.3s ease;
}

.contact-method:hover .contact-icon {
  background-color: rgba(255, 255, 255, 0.3);
  transform: scale(1.1);
}

.contact-icon.whatsapp-icon {
  background-color: rgba(37, 211, 102, 0.3);
}

.contact-method h3 {
  color: var(--white);
  margin-bottom: 0.8rem;
  font-size: 1.3rem;
  font-weight: 600;
}

.contact-link {
  color: var(--white);
  text-decoration: none;
  font-weight: 500;
  font-size: 0.95rem;
  transition: all 0.3s ease;
  display: inline-block;
}

.contact-link:hover {
  text-decoration: underline;
  transform: scale(1.05);
}

.whatsapp-link {
  background-color: #25d366;
  color: var(--white);
  padding: 0.6rem 1.2rem;
  border-radius: 6px;
  text-decoration: none;
  font-weight: 600;
  font-size: 0.9rem;
  transition: all 0.3s ease;
  display: inline-block;
}

.whatsapp-link:hover {
  background-color: #1da853;
  transform: translateY(-2px);
  box-shadow: 0 6px 12px rgba(29, 168, 83, 0.3);
}

/* Contact CTA */
.contact-cta {
  margin-top: 3rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
}

.contact-cta p {
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 1.5rem;
  font-size: 1rem;
}

.contact-form-btn {
  background-color: var(--white);
  color: var(--accent-orange);
  padding: 1rem 2.5rem;
  font-weight: 700;
  font-size: 1rem;
  border-radius: 6px;
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.contact-form-btn:hover {
  background-color: var(--primary-blue);
  color: var(--white);
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
}

@media (min-width: 768px) {
  .contact-section {
    padding: 4.5rem 3rem;
  }

  .contact-section h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
  }

  .contact-subtitle {
    font-size: 1.15rem;
    margin-bottom: 3rem;
  }
}

/* ============================================
   FOOTER
   ============================================ */
footer {
  background-color: var(--primary-blue);
  color: var(--white);
  padding: 3rem 2rem;
  text-align: center;
}

.footer-content {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}

@media (min-width: 768px) {
  .footer-content {
    grid-template-columns: repeat(3, 1fr);
    text-align: left;
  }
}

.footer-logo {
  max-width: 150px;
  margin: 0 auto 1rem;
}

.footer-logo img {
  width: 100%;
  height: auto;
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.footer-links h4 {
  color: var(--white);
  margin-bottom: 1rem;
}

.footer-links a {
  color: rgba(255, 255, 255, 0.8);
  transition: var(--transition);
}

.footer-links a:hover {
  color: var(--accent-orange);
}

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

.footer-contact h4 {
  color: var(--white);
  margin-bottom: 1rem;
}

.footer-contact a, .footer-contact p {
  color: rgba(255, 255, 255, 0.8);
  transition: var(--transition);
}

.footer-contact a:hover {
  color: var(--accent-orange);
}

.footer-socials {
  display: flex;
  justify-content: center;
  gap: 1.5rem;
  margin-top: 1.5rem;
}

.footer-socials a {
  color: var(--white);
  font-size: 1.3rem;
  transition: var(--transition);
}

.footer-socials a:hover {
  color: var(--accent-orange);
  transform: translateY(-3px);
}

.footer-divider {
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  margin-top: 2rem;
  padding-top: 2rem;
}

.footer-copyright {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.9rem;
}

/* ============================================
   UTILITY CLASSES
   ============================================ */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1rem;
}

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

.mt-1 { margin-top: 1rem; }
.mt-2 { margin-top: 2rem; }
.mb-1 { margin-bottom: 1rem; }
.mb-2 { margin-bottom: 2rem; }
