/* ===== AXIS PAINTING — Static Site CSS ===== */

:root {
  /* Brand Colors */
  --navy: #0F172A;
  --royal: #2563EB;
  --white: #FFFFFF;
  --light-gray: #F8FAFC;
  --dark-text: #1E293B;
  --success: #16A34A;
  --border: #E2E8F0;
  
  /* Spacing */
  --spacing-xs: 0.5rem;
  --spacing-sm: 1rem;
  --spacing-md: 1.5rem;
  --spacing-lg: 2rem;
  --spacing-xl: 3rem;
  --spacing-2xl: 4rem;
  --spacing-3xl: 6rem;
  
  /* Radius */
  --radius-sm: 0.5rem;
  --radius-md: 1rem;
  --radius-lg: 1.5rem;
  --radius-full: 9999px;
  
  /* Shadows */
  --shadow-sm: 0 1px 2px rgba(15, 23, 42, 0.05);
  --shadow-md: 0 4px 12px rgba(15, 23, 42, 0.1);
  --shadow-lg: 0 12px 32px rgba(15, 23, 42, 0.14);
  --shadow-xl: 0 24px 48px rgba(15, 23, 42, 0.18);
  
  /* Easing */
  --ease-out: cubic-bezier(0.23, 1, 0.32, 1);
  --ease-in-out: cubic-bezier(0.77, 0, 0.175, 1);
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Manrope', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  color: var(--dark-text);
  background: var(--white);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Poppins', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  font-weight: 700;
  line-height: 1.2;
}

a {
  color: var(--royal);
  text-decoration: none;
  transition: color 0.2s var(--ease-out);
}

a:hover {
  color: var(--navy);
}

button {
  font-family: inherit;
  cursor: pointer;
  border: none;
  background: none;
}

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

/* ===== CONTAINER ===== */
.container {
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 var(--spacing-sm);
}

@media (min-width: 640px) {
  .container {
    padding: 0 var(--spacing-md);
  }
}

@media (min-width: 1024px) {
  .container {
    padding: 0 var(--spacing-lg);
  }
}

/* ===== BUTTONS ===== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: var(--spacing-sm) var(--spacing-md);
  border-radius: var(--radius-full);
  font-weight: 600;
  font-size: 0.875rem;
  transition: all 0.2s var(--ease-out);
  white-space: nowrap;
}

.btn-sm {
  padding: 0.5rem 1.25rem;
  font-size: 0.8125rem;
}

.btn-lg {
  padding: 1rem 2rem;
  font-size: 1rem;
}

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

.btn-primary:hover {
  background: #1d4ed8;
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
}

.btn-primary:active {
  transform: scale(0.97);
}

.btn-outline {
  border: 2px solid var(--navy);
  color: var(--navy);
}

.btn-outline:hover {
  background: var(--navy);
  color: var(--white);
}

/* ===== HEADER ===== */
.sticky-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: transparent;
  transition: all 0.3s var(--ease-out);
  border-bottom: 1px solid transparent;
}

.sticky-header.scrolled {
  background: var(--white);
  border-bottom-color: var(--border);
  box-shadow: var(--shadow-sm);
}

.header-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: var(--spacing-md) 0;
  max-width: 1280px;
  margin: 0 auto;
  padding-left: var(--spacing-sm);
  padding-right: var(--spacing-sm);
}

@media (min-width: 1024px) {
  .header-content {
    padding-left: var(--spacing-lg);
    padding-right: var(--spacing-lg);
  }
}

.logo-link {
  display: flex;
  align-items: center;
  gap: var(--spacing-sm);
  flex-shrink: 0;
}

.logo {
  width: 50px;
  height: 50px;
  border-radius: var(--radius-md);
  background: var(--white);
  padding: 4px;
  object-fit: contain;
}

.nav-desktop {
  display: none;
  gap: var(--spacing-lg);
  align-items: center;
  flex: 1;
  margin-left: var(--spacing-2xl);
}

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

.nav-desktop a {
  font-weight: 500;
  font-size: 0.9375rem;
  color: var(--dark-text);
}

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

.menu-toggle {
  display: flex;
  flex-direction: column;
  gap: 5px;
  width: 28px;
  height: 24px;
  padding: 0;
}

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

.menu-toggle span {
  width: 100%;
  height: 2px;
  background: var(--navy);
  border-radius: 1px;
  transition: all 0.3s var(--ease-out);
}

.menu-toggle.active span:nth-child(1) {
  transform: rotate(45deg) translate(8px, 8px);
}

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

.menu-toggle.active span:nth-child(3) {
  transform: rotate(-45deg) translate(7px, -7px);
}

.nav-mobile {
  display: none;
  flex-direction: column;
  gap: var(--spacing-md);
  padding: var(--spacing-md);
  background: var(--white);
  border-bottom: 1px solid var(--border);
}

.nav-mobile.active {
  display: flex;
}

.nav-mobile a {
  color: var(--dark-text);
  font-weight: 500;
}

/* ===== HERO ===== */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  color: var(--white);
  padding: var(--spacing-2xl) var(--spacing-sm);
}

.hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  animation: kenburns 14s var(--ease-out) forwards;
}

@keyframes kenburns {
  from { transform: scale(1.08); }
  to { transform: scale(1); }
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(15, 23, 42, 0.7) 0%, rgba(15, 23, 42, 0.5) 100%);
}

.hero-content {
  position: relative;
  z-index: 10;
  max-width: 700px;
  text-align: left;
  animation: fadeInUp 0.8s var(--ease-out) 0.2s both;
}

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

.trust-badge {
  display: inline-flex;
  align-items: center;
  gap: var(--spacing-sm);
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  padding: 0.75rem 1.25rem;
  border-radius: var(--radius-full);
  font-size: 0.8125rem;
  font-weight: 600;
  margin-bottom: var(--spacing-lg);
  animation: fadeInUp 0.8s var(--ease-out) 0.3s both;
}

.stars {
  color: #fbbf24;
}

.hero-title {
  font-size: clamp(2rem, 8vw, 3.5rem);
  font-weight: 900;
  line-height: 1.1;
  margin-bottom: var(--spacing-lg);
  animation: fadeInUp 0.8s var(--ease-out) 0.4s both;
}

.hero-title .accent {
  color: var(--royal);
}

.hero-subtitle {
  font-size: 1.25rem;
  font-weight: 500;
  margin-bottom: var(--spacing-md);
  animation: fadeInUp 0.8s var(--ease-out) 0.5s both;
}

.hero-desc {
  font-size: 1rem;
  opacity: 0.95;
  margin-bottom: var(--spacing-2xl);
  animation: fadeInUp 0.8s var(--ease-out) 0.6s both;
}

.hero-cta {
  display: flex;
  gap: var(--spacing-md);
  flex-wrap: wrap;
  margin-bottom: var(--spacing-2xl);
  animation: fadeInUp 0.8s var(--ease-out) 0.7s both;
}

@media (max-width: 640px) {
  .hero-cta {
    flex-direction: column;
  }
  
  .hero-cta .btn {
    width: 100%;
  }
}

.hero-footer {
  font-size: 0.8125rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  opacity: 0.8;
  animation: fadeInUp 0.8s var(--ease-out) 0.8s both;
}

.scroll-indicator {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  color: var(--white);
  animation: bounce 2s var(--ease-out) infinite;
}

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

.scroll-indicator svg {
  width: 24px;
  height: 24px;
}

/* ===== TRUST BAR ===== */
.trust-bar {
  background: var(--navy);
  color: var(--white);
  padding: var(--spacing-lg) 0;
  overflow: hidden;
}

.marquee-host {
  display: flex;
  overflow: hidden;
}

.marquee-track {
  display: flex;
  gap: var(--spacing-2xl);
  animation: marquee 28s linear infinite;
  will-change: transform;
}

@keyframes marquee {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

.marquee-host:hover .marquee-track {
  animation-play-state: paused;
}

.trust-item {
  white-space: nowrap;
  font-weight: 600;
  font-size: 0.9375rem;
  letter-spacing: 0.05em;
}

/* ===== SECTIONS ===== */
section {
  padding: var(--spacing-3xl) 0;
}

@media (max-width: 768px) {
  section {
    padding: var(--spacing-2xl) 0;
  }
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: var(--spacing-sm);
  font-size: 0.8125rem;
  font-weight: 900;
  letter-spacing: 0.15em;
  color: var(--royal);
  text-transform: uppercase;
  margin-bottom: var(--spacing-md);
}

.eyebrow::before {
  content: '';
  display: block;
  width: 2.75rem;
  height: 8px;
  background:
    linear-gradient(to right, var(--royal), var(--royal)) top left / 100% 2px no-repeat,
    linear-gradient(to right, var(--royal), transparent) bottom left / 60% 2px no-repeat;
}

.section-title {
  font-size: clamp(1.875rem, 5vw, 2.875rem);
  font-weight: 900;
  line-height: 1.1;
  margin-bottom: var(--spacing-md);
  color: var(--navy);
}

.section-title .accent {
  color: var(--royal);
}

.section-desc {
  font-size: 1.0625rem;
  color: #64748b;
  max-width: 600px;
  margin-bottom: var(--spacing-2xl);
}

/* ===== ABOUT ===== */
.about {
  background: var(--light-gray);
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--spacing-3xl);
  align-items: center;
}

@media (max-width: 768px) {
  .about-grid {
    grid-template-columns: 1fr;
    gap: var(--spacing-2xl);
  }
}

.about-text p {
  margin-bottom: var(--spacing-md);
  color: #475569;
  line-height: 1.8;
}

.stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--spacing-lg);
  margin-top: var(--spacing-2xl);
}

@media (max-width: 640px) {
  .stats {
    grid-template-columns: 1fr;
  }
}

.stat {
  text-align: center;
}

.stat-number {
  font-size: 2.5rem;
  font-weight: 900;
  color: var(--royal);
  line-height: 1;
  margin-bottom: var(--spacing-sm);
}

.stat-label {
  font-size: 0.9375rem;
  color: #64748b;
  font-weight: 600;
}

.about-images {
  position: relative;
}

.about-img {
  width: 100%;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-xl);
}

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

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: var(--spacing-lg);
  margin-top: var(--spacing-2xl);
}

.service-card {
  padding: var(--spacing-lg);
  border-radius: var(--radius-lg);
  background: var(--light-gray);
  transition: all 0.3s var(--ease-out);
  border: 1px solid var(--border);
}

.service-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: var(--royal);
}

.service-icon {
  font-size: 2.5rem;
  margin-bottom: var(--spacing-md);
}

.service-card h3 {
  font-size: 1.25rem;
  margin-bottom: var(--spacing-sm);
  color: var(--navy);
}

.service-card p {
  font-size: 0.9375rem;
  color: #64748b;
  line-height: 1.7;
}

/* ===== WHY CHOOSE ===== */
.why-choose {
  background: var(--navy);
  color: var(--white);
}

.why-choose .section-title {
  color: var(--white);
}

.why-choose .section-title .accent {
  color: var(--royal);
}

.promises-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: var(--spacing-lg);
  margin-top: var(--spacing-2xl);
}

.promise-item {
  padding: var(--spacing-lg);
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: var(--radius-md);
  font-weight: 600;
  text-align: center;
  transition: all 0.3s var(--ease-out);
}

.promise-item:hover {
  background: rgba(37, 99, 235, 0.2);
  border-color: var(--royal);
  transform: translateY(-4px);
}

/* ===== PROCESS ===== */
.process {
  background: var(--light-gray);
}

.process-steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: var(--spacing-lg);
  margin-top: var(--spacing-2xl);
  position: relative;
}

.step {
  padding: var(--spacing-lg);
  background: var(--white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  transition: all 0.3s var(--ease-out);
}

.step:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.step-number {
  font-size: 2rem;
  font-weight: 900;
  color: var(--royal);
  margin-bottom: var(--spacing-sm);
}

.step h3 {
  font-size: 1.125rem;
  margin-bottom: var(--spacing-sm);
  color: var(--navy);
}

.step p {
  font-size: 0.9375rem;
  color: #64748b;
  line-height: 1.6;
}

/* ===== PROJECTS ===== */
.projects {
  background: var(--light-gray);
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
  gap: var(--spacing-md);
  margin-top: var(--spacing-2xl);
}

@media (min-width: 768px) {
  .gallery-grid {
    columns: 3;
    column-gap: var(--spacing-md);
  }
  
  .gallery-item.tall {
    break-inside: avoid;
    column-span: 1;
  }
}

.gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-lg);
  cursor: pointer;
  margin-bottom: var(--spacing-md);
  break-inside: avoid;
  box-shadow: var(--shadow-md);
  transition: all 0.3s var(--ease-out);
}

.gallery-item:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}

.gallery-item img {
  width: 100%;
  height: auto;
  display: block;
  transition: transform 0.6s var(--ease-out);
}

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

/* ===== LIGHTBOX ===== */
.lightbox {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(15, 23, 42, 0.95);
  z-index: 200;
  align-items: center;
  justify-content: center;
  padding: var(--spacing-md);
  backdrop-filter: blur(4px);
}

.lightbox.active {
  display: flex;
}

.lightbox-image {
  max-width: 90vw;
  max-height: 85vh;
  border-radius: var(--radius-lg);
  object-fit: contain;
}

.lightbox-close {
  position: absolute;
  top: var(--spacing-md);
  right: var(--spacing-md);
  width: 48px;
  height: 48px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  color: var(--white);
  font-size: 2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s var(--ease-out);
}

.lightbox-close:hover {
  background: rgba(255, 255, 255, 0.2);
}

.lightbox-prev,
.lightbox-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 48px;
  height: 48px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  color: var(--white);
  font-size: 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s var(--ease-out);
}

.lightbox-prev {
  left: var(--spacing-md);
}

.lightbox-next {
  right: var(--spacing-md);
}

.lightbox-prev:hover,
.lightbox-next:hover {
  background: rgba(255, 255, 255, 0.2);
}

/* ===== TESTIMONIALS ===== */
.testimonials {
  background: var(--white);
}

.carousel {
  position: relative;
  margin-top: var(--spacing-2xl);
}

.carousel-track {
  display: flex;
  gap: var(--spacing-lg);
  overflow: hidden;
  scroll-behavior: smooth;
}

.testimonial-card {
  flex: 0 0 100%;
  background: var(--light-gray);
  padding: var(--spacing-lg);
  border-radius: var(--radius-lg);
  border-left: 4px solid var(--royal);
  min-height: 200px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

@media (min-width: 768px) {
  .testimonial-card {
    flex: 0 0 calc(50% - var(--spacing-sm));
  }
}

.testimonial-quote {
  font-size: 1.0625rem;
  line-height: 1.8;
  color: var(--dark-text);
  margin-bottom: var(--spacing-md);
  font-style: italic;
}

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

.carousel-controls {
  display: flex;
  gap: var(--spacing-md);
  justify-content: center;
  margin-top: var(--spacing-lg);
}

.carousel-btn {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--light-gray);
  color: var(--navy);
  font-size: 1.25rem;
  transition: all 0.2s var(--ease-out);
}

.carousel-btn:hover {
  background: var(--royal);
  color: var(--white);
  transform: scale(1.1);
}

.carousel-dots {
  display: flex;
  gap: var(--spacing-sm);
  justify-content: center;
  margin-top: var(--spacing-lg);
}

.carousel-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--border);
  cursor: pointer;
  transition: all 0.2s var(--ease-out);
}

.carousel-dot.active {
  background: var(--royal);
  width: 32px;
  border-radius: 6px;
}

/* ===== SERVICE AREA ===== */
.service-area {
  background: var(--light-gray);
}

.map-container {
  margin-top: var(--spacing-2xl);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.map-container iframe {
  border: none;
}

/* ===== CTA ===== */
.cta {
  position: relative;
  min-height: 400px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  overflow: hidden;
  padding: var(--spacing-3xl) var(--spacing-sm);
}

.cta-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
}

.cta-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(15, 23, 42, 0.8) 0%, rgba(15, 23, 42, 0.6) 100%);
}

.cta-content {
  position: relative;
  z-index: 10;
  text-align: center;
  max-width: 600px;
}

.cta-content h2 {
  font-size: clamp(1.875rem, 5vw, 2.5rem);
  margin-bottom: var(--spacing-md);
}

.cta-content p {
  font-size: 1.125rem;
  margin-bottom: var(--spacing-lg);
  opacity: 0.95;
}

/* ===== CONTACT ===== */
.contact {
  background: var(--white);
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--spacing-3xl);
  margin-top: var(--spacing-2xl);
}

@media (max-width: 768px) {
  .contact-grid {
    grid-template-columns: 1fr;
    gap: var(--spacing-2xl);
  }
}

.contact-info h3 {
  font-size: 1.25rem;
  margin-bottom: var(--spacing-lg);
  color: var(--navy);
}

.contact-item {
  margin-bottom: var(--spacing-lg);
}

.contact-item strong {
  display: block;
  font-size: 0.875rem;
  color: var(--royal);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: var(--spacing-xs);
}

.contact-item a,
.contact-item p {
  font-size: 1rem;
  color: var(--dark-text);
}

.social-links {
  display: flex;
  gap: var(--spacing-md);
  margin-top: var(--spacing-lg);
}

.social-links a {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--light-gray);
  border-radius: 50%;
  transition: all 0.2s var(--ease-out);
}

.social-links a:hover {
  background: var(--royal);
  color: var(--white);
  transform: translateY(-4px);
}

.social-links svg {
  width: 26px;
  height: 26px;
}
/* Native brand colors for social icons */
.social-links a[aria-label="Instagram"] {
  color: #E4405F;
}
.social-links a[aria-label="Facebook"] {
  color: #1877F2;
}


/* ===== CONTACT FORM ===== */
.contact-form {
  background: var(--light-gray);
  padding: var(--spacing-lg);
  border-radius: var(--radius-lg);
}

.form-group {
  margin-bottom: var(--spacing-lg);
}

.form-group label {
  display: block;
  font-weight: 600;
  margin-bottom: var(--spacing-sm);
  color: var(--navy);
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: var(--spacing-sm);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  font-family: inherit;
  font-size: 1rem;
  transition: all 0.2s var(--ease-out);
}

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

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

#submit-btn {
  width: 100%;
}

.form-message {
  margin-top: var(--spacing-md);
  padding: var(--spacing-md);
  border-radius: var(--radius-md);
  display: none;
  font-weight: 500;
}

.form-message.success {
  display: block;
  background: #dcfce7;
  color: #166534;
  border: 1px solid #bbf7d0;
}

.form-message.error {
  display: block;
  background: #fee2e2;
  color: #991b1b;
  border: 1px solid #fecaca;
}

/* ===== FOOTER ===== */
.footer {
  background: var(--navy);
  color: var(--white);
  padding: var(--spacing-3xl) 0 var(--spacing-lg);
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: var(--spacing-2xl);
  margin-bottom: var(--spacing-2xl);
}

.footer-col h4 {
  font-size: 1rem;
  margin-bottom: var(--spacing-md);
  color: var(--royal);
}

.footer-col ul {
  list-style: none;
}

.footer-col ul li {
  margin-bottom: var(--spacing-sm);
}

.footer-col a {
  color: rgba(255, 255, 255, 0.8);
  transition: color 0.2s var(--ease-out);
}

.footer-col a:hover {
  color: var(--royal);
}

.footer-logo {
  width: 60px;
  height: 60px;
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.1);
  padding: 4px;
  object-fit: contain;
  margin-bottom: var(--spacing-md);
}

.footer-tagline {
  font-size: 0.9375rem;
  color: rgba(255, 255, 255, 0.8);
}

.footer-socials {
  display: flex;
  gap: var(--spacing-sm);
  margin-top: var(--spacing-md);
}

.footer-socials a {
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  transition: all 0.2s var(--ease-out);
}

.footer-socials a:hover {
  background: var(--royal);
}

.footer-socials svg {
  width: 22px;
  height: 22px;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: var(--spacing-lg);
  text-align: center;
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.6);
}

/* ===== WHATSAPP BUTTON ===== */
.whatsapp-btn {
  position: fixed;
  bottom: var(--spacing-lg);
  right: var(--spacing-lg);
  width: 60px;
  height: 60px;
  background: #25d366;
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-lg);
  transition: all 0.3s var(--ease-out);
  opacity: 0;
  transform: scale(0.8);
  pointer-events: none;
  z-index: 50;
}

.whatsapp-btn.visible {
  opacity: 1;
  transform: scale(1);
  pointer-events: auto;
}

.whatsapp-btn:hover {
  transform: scale(1.1);
  box-shadow: var(--shadow-xl);
}

.whatsapp-btn svg {
  width: 28px;
  height: 28px;
}

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

/* ===== REVEAL ANIMATIONS ===== */
@media (prefers-reduced-motion: no-preference) {
  .reveal {
    opacity: 0;
    transform: translateY(28px);
    transition: opacity 0.7s var(--ease-out), transform 0.7s var(--ease-out);
  }
  
  .reveal.is-visible {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ===== UTILITIES ===== */
.text-white {
  color: var(--white);
}

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

.mt-lg {
  margin-top: var(--spacing-lg);
}

.mb-lg {
  margin-bottom: var(--spacing-lg);
}

/* ===== RESPONSIVE ===== */
@media (max-width: 640px) {
  .hero-title {
    font-size: 1.875rem;
  }
  
  .section-title {
    font-size: 1.5rem;
  }
  
  .hero-cta {
    flex-direction: column;
  }
  
  .hero-cta .btn {
    width: 100%;
  }
  .footer-col ul {
    display: grid;
    grid-template-columns: 1fr 1fr;
    column-gap: var(--spacing-md);
  }

}
