/* ============================================
   Extracted styles from index.html
   Saved as styles.css
============================================ */

/* CSS RESET & BASE STYLES */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  /* Primary Colors */
  --primary-blue: #022b65;
  --primary-blue-light: #0a4a9c;
  --primary-blue-dark: #011a3d;

  /* Accent Colors */
  --accent-red: #e63946;
  --accent-orange: #f4a261;
  --accent-green: #2a9d8f;
  --whatsapp-green: #25d366;

  /* Neutral Colors */
  --white: #ffffff;
  --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;

  /* Spacing System (8px grid) */
  --space-1: 0.25rem;
  --space-2: 0.5rem;
  --space-3: 0.75rem;
  --space-4: 1rem;
  --space-5: 1.25rem;
  --space-6: 1.5rem;
  --space-8: 2rem;
  --space-10: 2.5rem;
  --space-12: 3rem;
  --space-16: 4rem;
  --space-20: 5rem;
  --space-24: 6rem;
  --space-32: 8rem;

  /* Typography */
  --font-primary: "Inter", -apple-system, BlinkMacSystemFont, sans-serif;
  --font-heading: "Montserrat", -apple-system, BlinkMacSystemFont, sans-serif;

  /* Shadows */
  --shadow-sm: 0 1px 2px 0 rgb(0 0 0 / 0.05);
  --shadow-md: 0 4px 6px -1px rgb(0 0 0 / 0.1), 0 2px 4px -2px rgb(0 0 0 / 0.1);
  --shadow-lg:
    0 10px 15px -3px rgb(0 0 0 / 0.1), 0 4px 6px -4px rgb(0 0 0 / 0.1);
  --shadow-xl:
    0 20px 25px -5px rgb(0 0 0 / 0.1), 0 8px 10px -6px rgb(0 0 0 / 0.1);
  --shadow-2xl: 0 25px 50px -12px rgb(0 0 0 / 0.25);

  /* Border Radius */
  --radius-sm: 0.375rem;
  --radius-md: 0.5rem;
  --radius-lg: 0.75rem;
  --radius-xl: 1rem;
  --radius-2xl: 1.5rem;
  --radius-full: 9999px;

  /* Transitions */
  --transition-fast: 150ms ease;
  --transition-normal: 250ms ease;
  --transition-slow: 350ms ease;
}

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body {
  font-family: var(--font-primary);
  font-size: 16px;
  line-height: 1.6;
  color: var(--gray-700);
  background-color: var(--white);
  overflow-x: hidden;
}

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

a {
  text-decoration: none;
  color: inherit;
  transition: color var(--transition-fast);
}

ul,
ol {
  list-style: none;
}

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

/* UTILITIES */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 var(--space-6);
}

.section {
  padding: var(--space-20) 0;
}

.section-sm {
  padding: var(--space-12) 0;
}

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

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

/* TYPOGRAPHY */
h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--font-heading);
  font-weight: 700;
  line-height: 1.2;
  color: var(--primary-blue);
}

.section-title {
  font-size: clamp(2rem, 5vw, 3rem);
  margin-bottom: var(--space-4);
}

.section-subtitle {
  font-size: clamp(1rem, 2vw, 1.25rem);
  color: var(--gray-500);
  max-width: 700px;
  margin: 0 auto var(--space-12);
}

.highlight {
  color: var(--accent-red);
}

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

/* BUTTONS */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-2);
  padding: var(--space-4) var(--space-8);
  font-size: 1rem;
  font-weight: 600;
  border-radius: var(--radius-lg);
  transition: all var(--transition-normal);
  white-space: nowrap;
}

.btn-primary {
  background: linear-gradient(135deg, var(--accent-red) 0%, #c1121f 100%);
  color: var(--white);
  box-shadow:
    var(--shadow-lg),
    0 4px 14px 0 rgba(230, 57, 70, 0.39);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow:
    var(--shadow-xl),
    0 6px 20px 0 rgba(230, 57, 70, 0.5);
}

.btn-primary:active {
  transform: translateY(0);
}

.btn-secondary {
  background: var(--white);
  color: var(--primary-blue);
  border: 2px solid var(--primary-blue);
}

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

.btn-whatsapp {
  background: var(--whatsapp-green);
  color: var(--white);
  box-shadow:
    var(--shadow-lg),
    0 4px 14px 0 rgba(37, 211, 102, 0.39);
}

.btn-whatsapp:hover {
  transform: translateY(-2px);
  box-shadow:
    var(--shadow-xl),
    0 6px 20px 0 rgba(37, 211, 102, 0.5);
  background: #20bd5a;
}

.btn-phone {
  background: var(--primary-blue);
  color: var(--white);
  box-shadow:
    var(--shadow-lg),
    0 4px 14px 0 rgba(2, 43, 101, 0.39);
}

.btn-phone:hover {
  transform: translateY(-2px);
  box-shadow:
    var(--shadow-xl),
    0 6px 20px 0 rgba(2, 43, 101, 0.5);
  background: var(--primary-blue-light);
}

.btn-sm {
  padding: var(--space-2) var(--space-4);
  font-size: 0.875rem;
}

.btn-lg {
  padding: var(--space-5) var(--space-10);
  font-size: 1.125rem;
}

/* HEADER / NAVIGATION */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--gray-100);
  transition: all var(--transition-normal);
}

.header.scrolled {
  box-shadow: var(--shadow-md);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 80px;
}

.logo {
  display: flex;
  align-items: center;
  gap: var(--space-3);
}

.logo-icon {
  width: 48px;
  height: 48px;
}

.logo-text {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--primary-blue);
}

.logo-text span {
  color: var(--accent-red);
}

.nav {
  display: none;
}

.nav-list {
  display: flex;
  align-items: center;
  gap: var(--space-8);
}

.nav-link {
  font-weight: 500;
  color: var(--gray-700);
  padding: var(--space-2) 0;
  position: relative;
}

.nav-link::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--accent-red);
  transition: width var(--transition-normal);
}

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

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

.header-cta {
  display: none;
}

.mobile-toggle {
  display: flex;
  flex-direction: column;
  gap: 6px;
  padding: var(--space-2);
}

.mobile-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--primary-blue);
  transition: all var(--transition-fast);
}

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

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

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

/* Mobile Menu */
.mobile-menu {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: var(--white);
  padding: 0;
  transform: translateX(100%);
  transition: transform var(--transition-normal);
  overflow-y: auto;
  z-index: 1001;
  display: flex;
  flex-direction: column;
}

.mobile-menu.active {
  transform: translateX(0);
}

.mobile-menu-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 80px;
  padding: 0 var(--space-6);
  border-bottom: 1px solid var(--gray-100);
  flex-shrink: 0;
}

.mobile-menu-close {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: var(--radius-lg);
  color: var(--primary-blue);
  transition: all var(--transition-fast);
}

.mobile-menu-close:hover {
  background: var(--gray-100);
}

.mobile-menu-body {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: var(--space-8) var(--space-8);
}

.mobile-nav-list {
  display: flex;
  flex-direction: column;
  gap: var(--space-2);
}

.mobile-nav-link {
  font-size: 1.5rem;
  font-weight: 600;
  font-family: var(--font-heading);
  padding: var(--space-4) var(--space-4);
  border-radius: var(--radius-lg);
  color: var(--gray-800);
  transition: all var(--transition-fast);
  border-bottom: none;
}

.mobile-nav-link:hover {
  background: var(--gray-50);
  color: var (--primary-blue);
}

.mobile-cta {
  padding: var(--space-6) var(--space-8);
  padding-bottom: var(--space-10);
  display: flex;
  flex-direction: column;
  gap: var(--space-4);
  flex-shrink: 0;
  border-top: 1px solid var(--gray-100);
}

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

  .header-cta {
    display: flex;
    align-items: center;
    gap: var(--space-4);
  }

  .mobile-toggle {
    display: none;
  }

  .mobile-menu {
    display: none;
  }
}

/* HERO SECTION */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding-top: 80px;
  background: linear-gradient(
    135deg,
    var(--gray-50) 0%,
    var(--white) 50%,
    var(--gray-50) 100%
  );
  overflow: hidden;
}

.hero::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 50%;
  height: 100%;
  background: linear-gradient(
    135deg,
    var(--primary-blue) 0%,
    var(--primary-blue-light) 100%
  );
  clip-path: polygon(20% 0, 100% 0, 100% 100%, 0% 100%);
  z-index: 0;
  display: none;
}

.hero-container {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-12);
  align-items: center;
}

.hero-content {
  max-width: 600px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  background: linear-gradient(
    135deg,
    rgba(2, 43, 101, 0.1) 0%,
    rgba(230, 57, 70, 0.1) 100%
  );
  padding: var(--space-2) var(--space-4);
  border-radius: var(--radius-full);
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--primary-blue);
  margin-bottom: var(--space-6);
}

.hero-badge svg {
  width: 16px;
  height: 16px;
  color: var(--accent-green);
}

.hero-title {
  font-size: clamp(2.5rem, 6vw, 4rem);
  margin-bottom: var(--space-6);
  line-height: 1.1;
}

.hero-description {
  font-size: clamp(1rem, 2vw, 1.25rem);
  color: var(--gray-600);
  margin-bottom: var(--space-8);
  line-height: 1.8;
}

.hero-cta {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-4);
  margin-bottom: var(--space-10);
}

.hero-features {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-6);
}

.hero-feature {
  display: flex;
  align-items: center;
  gap: var(--space-2);
  font-size: 0.9375rem;
  color: var(--gray-600);
}

.hero-feature svg {
  width: 20px;
  height: 20px;
  color: var(--accent-green);
  flex-shrink: 0;
}

.hero-image {
  position: relative;
  display: none;
}

.hero-image-wrapper {
  position: relative;
  border-radius: var(--radius-2xl);
  overflow: hidden;
  box-shadow: var(--shadow-2xl);
}

.hero-image img {
  width: 100%;
  height: 500px;
  object-fit: cover;
}

.hero-stats {
  position: absolute;
  bottom: -30px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: var(--space-4);
  background: var(--white);
  padding: var(--space-6);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-xl);
}

.hero-stat {
  text-align: center;
  padding: 0 var(--space-4);
}

.hero-stat:not(:last-child) {
  border-right: 1px solid var(--gray-200);
}

.hero-stat-number {
  font-family: var(--font-heading);
  font-size: 2rem;
  font-weight: 800;
  color: var(--primary-blue);
}

.hero-stat-label {
  font-size: 0.875rem;
  color: var(--gray-500);
}

@media (min-width: 768px) {
  .hero::before {
    display: block;
    clip-path: polygon(30% 0, 100% 0, 100% 100%, 10% 100%);
  }
}

@media (min-width: 1024px) {
  .hero-container {
    grid-template-columns: 1fr 1fr;
    gap: var(--space-16);
  }

  .hero-image {
    display: block;
  }

  .hero::before {
    clip-path: polygon(40% 0, 100% 0, 100% 100%, 20% 100%);
  }
}

/* BRANDS SECTION */
.brands {
  background: var(--white);
  border-top: 1px solid var(--gray-100);
  border-bottom: 1px solid var(--gray-100);
}

.brands-title {
  font-size: 0.875rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--gray-400);
  margin-bottom: var(--space-8);
}

.brands-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--space-8);
  align-items: center;
  justify-items: center;
}

.brand-item {
  opacity: 0.6;
  transition: opacity var(--transition-normal);
  filter: grayscale(100%);
}

.brand-item:hover {
  opacity: 1;
  filter: grayscale(0%);
}

.brand-item img {
  max-height: 50px;
  width: auto;
}

@media (min-width: 640px) {
  .brands-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

@media (min-width: 1024px) {
  .brands-grid {
    grid-template-columns: repeat(8, 1fr);
  }
}

/* SERVICES SECTION */
.services {
  background: var(--gray-50);
}

.services-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-8);
}

.service-card {
  background: var(--white);
  border-radius: var(--radius-xl);
  padding: var(--space-8);
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--gray-100);
  transition: all var(--transition-normal);
  position: relative;
  overflow: hidden;
}

.service-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 4px;
  height: 100%;
  background: linear-gradient(
    180deg,
    var(--accent-red) 0%,
    var(--accent-orange) 100%
  );
  opacity: 0;
  transition: opacity var(--transition-normal);
}

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

.service-card:hover::before {
  opacity: 1;
}

.service-icon {
  width: 64px;
  height: 64px;
  background: linear-gradient(
    135deg,
    var(--primary-blue) 0%,
    var(--primary-blue-light) 100%
  );
  border-radius: var(--radius-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: var(--space-6);
}

.service-icon svg {
  width: 32px;
  height: 32px;
  color: var(--white);
}

.service-title {
  font-size: 1.25rem;
  margin-bottom: var(--space-3);
}

.service-description {
  color: var(--gray-600);
  margin-bottom: var(--space-4);
}

.service-link {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  font-weight: 600;
  color: var(--accent-red);
}

.service-link svg {
  width: 16px;
  height: 16px;
  transition: transform var(--transition-fast);
}

.service-link:hover svg {
  transform: translateX(4px);
}

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

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

/* WHY CHOOSE US SECTION */
.why-us {
  background: var(--white);
}

.why-us-container {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-12);
  align-items: center;
}

.why-us-image {
  position: relative;
  order: -1;
}

.why-us-image-wrapper {
  position: relative;
  border-radius: var(--radius-2xl);
  overflow: hidden;
  box-shadow: var(--shadow-xl);
}

.why-us-image img {
  width: 100%;
  height: 400px;
  object-fit: cover;
}

.experience-badge {
  position: absolute;
  bottom: -20px;
  right: 20px;
  background: linear-gradient(135deg, var(--accent-red) 0%, #c1121f 100%);
  color: var(--white);
  padding: var(--space-6);
  border-radius: var(--radius-xl);
  text-align: center;
  box-shadow: var(--shadow-xl);
}

.experience-badge-number {
  font-family: var(--font-heading);
  font-size: 3rem;
  font-weight: 800;
  line-height: 1;
}

.experience-badge-text {
  font-size: 0.875rem;
  opacity: 0.9;
}

.why-us-content h2 {
  margin-bottom: var(--space-6);
}

.why-us-text {
  font-size: 1.125rem;
  color: var(--gray-600);
  margin-bottom: var(--space-8);
}

.benefits-list {
  display: flex;
  flex-direction: column;
  gap: var(--space-4);
}

.benefit-item {
  display: flex;
  align-items: flex-start;
  gap: var(--space-4);
}

.benefit-icon {
  width: 48px;
  height: 48px;
  background: var(--gray-50);
  border-radius: var(--radius-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.benefit-icon svg {
  width: 24px;
  height: 24px;
  color: var(--accent-green);
}

.benefit-content h4 {
  font-size: 1rem;
  margin-bottom: var(--space-1);
  color: var(--gray-800);
}

.benefit-content p {
  font-size: 0.9375rem;
  color: var(--gray-500);
}

@media (min-width: 1024px) {
  .why-us-container {
    grid-template-columns: 1fr 1fr;
    gap: var(--space-16);
  }

  .why-us-image {
    order: 0;
  }

  .why-us-image img {
    height: 500px;
  }
}

/* CTA SECTION */
.cta {
  background: linear-gradient(
    135deg,
    var(--primary-blue) 0%,
    var(--primary-blue-light) 100%
  );
  position: relative;
  overflow: hidden;
}

.cta::before {
  content: "";
  position: absolute;
  top: -50%;
  right: -20%;
  width: 60%;
  height: 200%;
  background: rgba(255, 255, 255, 0.03);
  transform: rotate(15deg);
}

.cta-container {
  position: relative;
  z-index: 1;
  text-align: center;
}

.cta h2 {
  color: var(--white);
  margin-bottom: var(--space-4);
}

.cta-subtitle {
  font-size: 1.25rem;
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: var(--space-8);
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.cta-buttons {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: var(--space-4);
}

.cta .btn-primary {
  background: var(--white);
  color: var(--primary-blue);
  box-shadow: var(--shadow-lg);
}

.cta .btn-primary:hover {
  background: var(--gray-100);
}

/* TESTIMONIALS SECTION */
.testimonials {
  background: var(--gray-50);
}

.testimonials-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-8);
}

.testimonial-card {
  background: var(--white);
  border-radius: var(--radius-xl);
  padding: var(--space-8);
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--gray-100);
}

.testimonial-stars {
  display: flex;
  gap: var(--space-1);
  margin-bottom: var(--space-4);
}

.testimonial-stars svg {
  width: 20px;
  height: 20px;
  color: var(--accent-orange);
  fill: var(--accent-orange);
}

.testimonial-text {
  font-size: 1.0625rem;
  color: var(--gray-700);
  line-height: 1.8;
  margin-bottom: var(--space-6);
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: var(--space-4);
}

.testimonial-avatar {
  width: 48px;
  height: 48px;
  border-radius: var(--radius-full);
  background: linear-gradient(
    135deg,
    var(--primary-blue) 0%,
    var(--primary-blue-light) 100%
  );
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-weight: 600;
  font-size: 1.25rem;
}

.testimonial-info h4 {
  font-size: 1rem;
  color: var(--gray-800);
  margin-bottom: var(--space-1);
}

.testimonial-info p {
  font-size: 0.875rem;
  color: var(--gray-500);
}

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

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

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

.contact-container {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-12);
}

.contact-info h2 {
  margin-bottom: var(--space-4);
}

.contact-description {
  color: var(--gray-600);
  margin-bottom: var(--space-8);
}

.contact-methods {
  display: flex;
  flex-direction: column;
  gap: var(--space-6);
}

.contact-method {
  display: flex;
  align-items: flex-start;
  gap: var(--space-4);
}

.contact-method-icon {
  width: 56px;
  height: 56px;
  background: var(--gray-50);
  border-radius: var(--radius-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.contact-method-icon svg {
  width: 24px;
  height: 24px;
  color: var(--primary-blue);
}

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

.contact-method-icon.whatsapp svg {
  color: var(--whatsapp-green);
}

.contact-method-icon.phone {
  background: rgba(2, 43, 101, 0.1);
}

.contact-method-icon.phone svg {
  color: var(--primary-blue);
}

.contact-method-icon.email {
  background: rgba(230, 57, 70, 0.1);
}

.contact-method-icon.email svg {
  color: var(--accent-red);
}

.contact-method-icon.location {
  background: rgba(244, 162, 97, 0.1);
}

.contact-method-icon.location svg {
  color: var(--accent-orange);
}

.contact-method-icon.schedule {
  background: rgba(42, 157, 143, 0.1);
}

.contact-method-icon.schedule svg {
  color: var(--accent-green);
}

.contact-method-content h4 {
  font-size: 1rem;
  color: var(--gray-800);
  margin-bottom: var(--space-1);
}

.contact-method-content p {
  color: var(--gray-600);
}

.contact-method-content a {
  color: var(--primary-blue);
  font-weight: 600;
}

.contact-method-content a:hover {
  color: var(--accent-red);
}

.contact-form-wrapper {
  background: var(--gray-50);
  border-radius: var(--radius-2xl);
  padding: var(--space-8);
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: var(--space-5);
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: var(--space-2);
}

.form-label {
  font-weight: 500;
  color: var(--gray-700);
  font-size: 0.9375rem;
}

.form-input,
.form-textarea {
  width: 100%;
  padding: var(--space-4);
  font-size: 1rem;
  border: 2px solid var(--gray-200);
  border-radius: var(--radius-lg);
  background: var(--white);
  transition: all var(--transition-fast);
  font-family: inherit;
}

.form-input:focus,
.form-textarea:focus {
  outline: none;
  border-color: var(--primary-blue);
  box-shadow: 0 0 0 4px rgba(2, 43, 101, 0.1);
}

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

.form-row {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-5);
}

@media (min-width: 640px) {
  .form-row {
    grid-template-columns: 1fr 1fr;
  }
}

@media (min-width: 1024px) {
  .contact-container {
    grid-template-columns: 1fr 1fr;
    gap: var(--space-16);
  }
}

/* FOOTER */
.footer {
  background: var(--gray-900);
  color: var(--gray-300);
}

.footer-main {
  padding: var(--space-16) 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-10);
}

.footer-brand p {
  margin-top: var(--space-4);
  font-size: 0.9375rem;
  line-height: 1.8;
}

.footer-social {
  display: flex;
  gap: var(--space-3);
  margin-top: var(--space-6);
}

.footer-social a {
  width: 44px;
  height: 44px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all var(--transition-fast);
}

.footer-social a:hover {
  background: var(--accent-red);
  transform: translateY(-2px);
}

.footer-social svg {
  width: 20px;
  height: 20px;
  color: var(--white);
}

.footer-column h4 {
  color: var(--white);
  font-size: 1rem;
  margin-bottom: var(--space-6);
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: var(--space-3);
}

.footer-link {
  font-size: 0.9375rem;
  transition: color var(--transition-fast);
}

.footer-link:hover {
  color: var(--white);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding: var(--space-6) 0;
}

.footer-bottom-content {
  display: flex;
  flex-direction: column;
  gap: var(--space-4);
  align-items: center;
  text-align: center;
}

.footer-bottom p {
  font-size: 0.875rem;
}

@media (min-width: 640px) {
  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .footer-grid {
    grid-template-columns: 2fr 1fr 1fr 1fr;
  }

  .footer-bottom-content {
    flex-direction: row;
    justify-content: space-between;
    text-align: left;
  }
}

/* FLOATING PHONE BUTTON */
.phone-float {
  position: fixed;
  bottom: var(--space-6);
  right: var(--space-6);
  z-index: 999;
}

.phone-float a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 60px;
  height: 60px;
  background: var(--primary-blue);
  border-radius: var(--radius-full);
  box-shadow:
    var(--shadow-lg),
    0 4px 14px 0 rgba(2, 43, 101, 0.39);
  transition: all var(--transition-normal);
}

.phone-float a:hover {
  transform: scale(1.1);
  box-shadow:
    var(--shadow-xl),
    0 6px 20px 0 rgba(2, 43, 101, 0.5);
  background: var(--primary-blue-light);
}

.phone-float svg {
  width: 28px;
  height: 28px;
}

/* SCROLL ANIMATIONS */
.fade-in {
  opacity: 0;
  transform: translateY(30px);
  transition:
    opacity 0.6s ease,
    transform 0.6s ease;
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

.fade-in-delay-1 {
  transition-delay: 0.1s;
}

.fade-in-delay-2 {
  transition-delay: 0.2s;
}

.fade-in-delay-3 {
  transition-delay: 0.3s;
}

.fade-in-delay-4 {
  transition-delay: 0.4s;
}

.fade-in-delay-5 {
  transition-delay: 0.5s;
}
