/* ============================================
   Padilla Tire & Auto — Custom Styles
   ============================================ */

/* CSS Custom Properties */
:root {
  --green-900: #064e3b;
  --green-800: #065f46;
  --green-700: #047857;
  --green-600: #059669;
  --green-500: #10b981;
  --green-400: #34d399;
  --green-300: #6ee7b7;
  --green-200: #a7f3d0;
  --green-100: #d1fae5;
  --green-50:  #ecfdf5;

  --cream: #f8f7f4;
  --cream-dark: #f0efe9;
  --white: #ffffff;
  --off-white: #fafaf8;

  --gray-900: #111827;
  --gray-800: #1f2937;
  --gray-700: #374151;
  --gray-600: #4b5563;
  --gray-500: #6b7280;
  --gray-400: #9ca3af;
  --gray-300: #d1d5db;
  --gray-200: #e5e7eb;
  --gray-100: #f3f4f6;

  --font-heading: 'Space Grotesk', sans-serif;
  --font-body: 'Outfit', sans-serif;

  --shadow-sm: 0 1px 3px rgba(0,0,0,0.08), 0 1px 2px rgba(0,0,0,0.06);
  --shadow-md: 0 4px 14px rgba(0,0,0,0.08), 0 2px 6px rgba(0,0,0,0.06);
  --shadow-lg: 0 10px 30px rgba(0,0,0,0.1), 0 4px 10px rgba(0,0,0,0.06);
  --shadow-xl: 0 20px 50px rgba(0,0,0,0.12);

  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 20px;
  --radius-xl: 28px;

  --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Reset & Base */
*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 80px;
}

body {
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.65;
  color: var(--gray-800);
  background-color: var(--cream);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

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

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

ul {
  list-style: none;
}

.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ============================================
   Decorative Blobs (Background)
   ============================================ */
.blob {
  position: fixed;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.12;
  pointer-events: none;
  z-index: 0;
}

.blob--1 {
  width: 600px;
  height: 600px;
  background: var(--green-500);
  top: -200px;
  right: -150px;
  animation: blobFloat 20s ease-in-out infinite;
}

.blob--2 {
  width: 400px;
  height: 400px;
  background: var(--green-300);
  bottom: 20%;
  left: -100px;
  animation: blobFloat 25s ease-in-out infinite reverse;
}

.blob--3 {
  width: 300px;
  height: 300px;
  background: var(--green-400);
  top: 50%;
  right: 10%;
  animation: blobFloat 18s ease-in-out infinite;
}

@keyframes blobFloat {
  0%, 100% { transform: translate(0, 0) scale(1); }
  33% { transform: translate(30px, -40px) scale(1.05); }
  66% { transform: translate(-20px, 20px) scale(0.95); }
}

/* ============================================
   Header / Navigation
   ============================================ */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(248, 247, 244, 0.85);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(0,0,0,0.06);
  transition: var(--transition);
}

.site-header.scrolled {
  background: rgba(248, 247, 244, 0.95);
  box-shadow: var(--shadow-sm);
}

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

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1.2rem;
  color: var(--green-800);
}

.logo-icon {
  width: 40px;
  height: 40px;
  background: var(--green-700);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  transition: var(--transition);
}

.logo:hover .logo-icon {
  background: var(--green-600);
  transform: rotate(-8deg) scale(1.05);
}

.logo-accent {
  color: var(--green-500);
}

.nav {
  display: flex;
  align-items: center;
  gap: 8px;
}

.nav-link {
  padding: 8px 18px;
  border-radius: 100px;
  font-weight: 500;
  font-size: 0.938rem;
  color: var(--gray-700);
  transition: var(--transition);
}

.nav-link:hover {
  color: var(--green-700);
  background: var(--green-50);
}

.nav-link--cta {
  background: var(--green-700);
  color: var(--white) !important;
  font-weight: 600;
}

.nav-link--cta:hover {
  background: var(--green-600);
  transform: translateY(-1px);
}

/* Mobile Menu Button */
.mobile-menu-btn {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  z-index: 1001;
}

.mobile-menu-btn span {
  width: 24px;
  height: 2.5px;
  background: var(--gray-700);
  border-radius: 2px;
  transition: var(--transition);
}

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

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

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

/* Mobile Menu */
.mobile-menu {
  display: none;
  position: fixed;
  top: 76px;
  left: 0;
  right: 0;
  background: rgba(248, 247, 244, 0.98);
  backdrop-filter: blur(20px);
  padding: 20px 24px;
  border-bottom: 1px solid rgba(0,0,0,0.06);
  box-shadow: var(--shadow-lg);
  z-index: 999;
}

.mobile-menu.active {
  display: flex;
  flex-direction: column;
  gap: 8px;
  animation: slideDown 0.3s ease;
}

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

.mobile-menu-link {
  padding: 14px 18px;
  border-radius: var(--radius-md);
  font-weight: 500;
  font-size: 1.05rem;
  color: var(--gray-700);
  transition: var(--transition);
}

.mobile-menu-link:hover {
  background: var(--green-50);
  color: var(--green-700);
}

/* ============================================
   Hero Section
   ============================================ */
.hero {
  padding: 140px 0 100px;
  position: relative;
  overflow: hidden;
  min-height: 100vh;
  display: flex;
  align-items: center;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  position: relative;
  z-index: 1;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 16px;
  background: var(--green-100);
  color: var(--green-800);
  border-radius: 100px;
  font-size: 0.875rem;
  font-weight: 600;
  margin-bottom: 24px;
  border: 1px solid var(--green-200);
}

.hero-title {
  font-family: var(--font-heading);
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 800;
  line-height: 1.1;
  color: var(--gray-900);
  margin-bottom: 24px;
  letter-spacing: -0.02em;
}

.text-gradient {
  background: linear-gradient(135deg, var(--green-600), var(--green-400));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-subtitle {
  font-size: 1.125rem;
  color: var(--gray-600);
  line-height: 1.7;
  margin-bottom: 36px;
  max-width: 520px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 28px;
  border-radius: 100px;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 1rem;
  cursor: pointer;
  border: none;
  transition: var(--transition);
  white-space: nowrap;
}

.btn--primary {
  background: var(--green-700);
  color: var(--white);
  box-shadow: 0 4px 14px rgba(5, 150, 105, 0.35);
}

.btn--primary:hover {
  background: var(--green-600);
  transform: translateY(-2px);
  box-shadow: 0 8px 22px rgba(5, 150, 105, 0.4);
}

.btn--secondary {
  background: var(--white);
  color: var(--gray-800);
  border: 2px solid var(--gray-200);
}

.btn--secondary:hover {
  border-color: var(--green-300);
  color: var(--green-700);
  background: var(--green-50);
  transform: translateY(-2px);
}

.btn--white {
  background: var(--white);
  color: var(--green-800);
  box-shadow: var(--shadow-md);
}

.btn--white:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
}

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

.btn--outline-white:hover {
  background: rgba(255,255,255,0.15);
  border-color: var(--white);
  transform: translateY(-2px);
}

.btn--full {
  width: 100%;
  justify-content: center;
}

.btn--lg {
  padding: 16px 32px;
  font-size: 1.05rem;
}

.btn--sm {
  padding: 10px 20px;
  font-size: 0.875rem;
}

/* Hero Visual */
.hero-visual {
  position: relative;
  padding: 20px;
}

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

.hero-card--main img {
  width: 100%;
  height: 400px;
  object-fit: cover;
}

.hero-card-badge {
  position: absolute;
  bottom: 20px;
  left: 20px;
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 18px;
  background: var(--white);
  border-radius: 100px;
  font-weight: 600;
  font-size: 0.875rem;
  color: var(--green-700);
  box-shadow: var(--shadow-md);
}

/* Floating Cards */
.float-card {
  position: absolute;
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 18px;
  background: var(--white);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-lg);
  z-index: 2;
  animation: float 4s ease-in-out infinite;
}

.float-card--1 {
  top: 10%;
  right: -20px;
  animation-delay: 0s;
}

.float-card--2 {
  bottom: 25%;
  left: -30px;
  animation-delay: 1.3s;
}

.float-card--3 {
  bottom: 5%;
  right: 10%;
  animation-delay: 2.6s;
}

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

.float-card-icon {
  width: 40px;
  height: 40px;
  background: var(--green-100);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--green-700);
  flex-shrink: 0;
}

.float-card-icon--accent {
  background: var(--green-200);
  color: var(--green-800);
}

.float-card-body {
  display: flex;
  flex-direction: column;
}

.float-card-value {
  font-weight: 700;
  font-size: 0.938rem;
  color: var(--gray-900);
  line-height: 1.3;
}

.float-card-label {
  font-size: 0.813rem;
  color: var(--gray-500);
}

/* Geometric Decorations */
.geo {
  position: absolute;
  pointer-events: none;
  z-index: 0;
}

.geo--circle {
  width: 120px;
  height: 120px;
  border: 3px solid var(--green-200);
  border-radius: 50%;
  top: 15%;
  left: 5%;
  opacity: 0.5;
}

.geo--triangle {
  width: 0;
  height: 0;
  border-left: 30px solid transparent;
  border-right: 30px solid transparent;
  border-bottom: 52px solid var(--green-100);
  opacity: 0.5;
  top: 25%;
  right: 3%;
  transform: rotate(15deg);
}

.geo--dots {
  width: 80px;
  height: 80px;
  background-image: radial-gradient(circle, var(--green-300) 2px, transparent 2px);
  background-size: 12px 12px;
  opacity: 0.4;
  bottom: 20%;
  left: 2%;
}

/* ============================================
   Section Shared Styles
   ============================================ */
.section-header {
  margin-bottom: 60px;
}

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

.section-tag {
  display: inline-block;
  padding: 6px 16px;
  background: var(--green-100);
  color: var(--green-700);
  border-radius: 100px;
  font-size: 0.813rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 16px;
  border: 1px solid var(--green-200);
}

.section-title {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  line-height: 1.15;
  color: var(--gray-900);
  letter-spacing: -0.02em;
  margin-bottom: 16px;
}

.section-subtitle {
  font-size: 1.1rem;
  color: var(--gray-600);
  max-width: 600px;
  line-height: 1.7;
}

/* ============================================
   Services Section
   ============================================ */
.services {
  padding: 100px 0;
  position: relative;
  z-index: 1;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.service-card {
  position: relative;
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 36px 30px;
  border: 1px solid var(--gray-100);
  transition: var(--transition);
  overflow: hidden;
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--green-500), var(--green-300));
  opacity: 0;
  transition: var(--transition);
}

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

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

.service-card--featured {
  background: var(--green-800);
  border-color: var(--green-800);
  color: var(--white);
}

.service-card--featured::before {
  background: linear-gradient(90deg, var(--green-300), var(--green-100));
}

.service-card--featured:hover {
  border-color: var(--green-700);
  box-shadow: 0 20px 50px rgba(5, 150, 105, 0.3);
}

.service-card-accent {
  position: absolute;
  top: -30px;
  right: -30px;
  width: 100px;
  height: 100px;
  background: var(--green-50);
  border-radius: 50%;
  transition: var(--transition);
}

.service-card--featured .service-card-accent {
  background: rgba(255,255,255,0.08);
}

.service-card:hover .service-card-accent {
  transform: scale(1.5);
  background: var(--green-100);
}

.service-card--featured:hover .service-card-accent {
  background: rgba(255,255,255,0.12);
}

.service-badge {
  position: absolute;
  top: 20px;
  right: 20px;
  padding: 4px 12px;
  background: var(--green-400);
  color: var(--green-900);
  border-radius: 100px;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.service-icon {
  width: 60px;
  height: 60px;
  background: var(--green-100);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--green-700);
  margin-bottom: 20px;
  transition: var(--transition);
}

.service-card:hover .service-icon {
  background: var(--green-600);
  color: var(--white);
  transform: scale(1.05) rotate(-3deg);
}

.service-card--featured .service-icon {
  background: rgba(255,255,255,0.15);
  color: var(--white);
}

.service-card--featured:hover .service-icon {
  background: var(--white);
  color: var(--green-700);
}

.service-title {
  font-family: var(--font-heading);
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--gray-900);
  margin-bottom: 12px;
}

.service-card--featured .service-title {
  color: var(--white);
}

.service-desc {
  font-size: 0.938rem;
  color: var(--gray-600);
  line-height: 1.7;
  margin-bottom: 20px;
}

.service-card--featured .service-desc {
  color: rgba(255,255,255,0.75);
}

.service-list {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.service-list li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.875rem;
  color: var(--gray-700);
}

.service-list li::before {
  content: '';
  width: 6px;
  height: 6px;
  background: var(--green-400);
  border-radius: 50%;
  flex-shrink: 0;
}

.service-card--featured .service-list li {
  color: rgba(255,255,255,0.85);
}

.service-card--featured .service-list li::before {
  background: var(--green-300);
}

/* ============================================
   About Section
   ============================================ */
.about {
  padding: 100px 0;
  position: relative;
  z-index: 1;
  background: var(--white);
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.about-visual {
  position: relative;
}

.about-img-main {
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-xl);
}

.about-img-main img {
  width: 100%;
  height: 600px;
  object-fit: cover;
}

.about-img-secondary {
  position: absolute;
  bottom: -40px;
  right: -40px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-xl);
  border: 6px solid var(--white);
}

.about-img-secondary img {
  width: 300px;
  height: 200px;
  object-fit: cover;
}

.about-shape {
  position: absolute;
  top: -30px;
  left: -30px;
  width: 120px;
  height: 120px;
  background: var(--green-200);
  border-radius: var(--radius-lg);
  z-index: -1;
  opacity: 0.6;
}

.about-content {
  padding: 20px 0;
}

.about-text {
  font-size: 1.05rem;
  color: var(--gray-600);
  line-height: 1.8;
  margin-bottom: 20px;
}

.about-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-top: 36px;
}

.about-feature {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 18px;
  background: var(--cream);
  border-radius: var(--radius-md);
  font-weight: 500;
  font-size: 0.938rem;
  color: var(--gray-700);
  transition: var(--transition);
}

.about-feature:hover {
  background: var(--green-50);
  color: var(--green-700);
  transform: translateX(4px);
}

.about-feature-icon {
  width: 28px;
  height: 28px;
  background: var(--green-600);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  flex-shrink: 0;
}

/* ============================================
   Why Choose Us
   ============================================ */
.why-us {
  padding: 100px 0;
  position: relative;
  z-index: 1;
}

.why-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.why-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 36px 28px;
  border: 1px solid var(--gray-100);
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

.why-card::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--green-500), var(--green-300));
  transform: scaleX(0);
  transition: var(--transition);
}

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

.why-card:hover::after {
  transform: scaleX(1);
}

.why-card-number {
  font-family: var(--font-heading);
  font-size: 3rem;
  font-weight: 800;
  color: var(--green-100);
  line-height: 1;
  margin-bottom: 16px;
  transition: var(--transition);
}

.why-card:hover .why-card-number {
  color: var(--green-200);
}

.why-card-icon {
  width: 56px;
  height: 56px;
  background: var(--green-100);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--green-700);
  margin-bottom: 20px;
  transition: var(--transition);
}

.why-card:hover .why-card-icon {
  background: var(--green-600);
  color: var(--white);
  transform: scale(1.05);
}

.why-card-title {
  font-family: var(--font-heading);
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--gray-900);
  margin-bottom: 12px;
}

.why-card-desc {
  font-size: 0.9rem;
  color: var(--gray-600);
  line-height: 1.7;
}

/* ============================================
   CTA Banner
   ============================================ */
.cta-banner {
  padding: 100px 0;
  background: var(--green-800);
  position: relative;
  overflow: hidden;
  z-index: 1;
}

.cta-inner {
  display: flex;
  align-items: center;
  gap: 60px;
  position: relative;
  z-index: 1;
}

.cta-content {
  flex: 1;
}

.cta-title {
  font-family: var(--font-heading);
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  font-weight: 800;
  color: var(--white);
  line-height: 1.2;
  margin-bottom: 16px;
  letter-spacing: -0.02em;
}

.cta-text {
  font-size: 1.1rem;
  color: rgba(255,255,255,0.7);
  line-height: 1.7;
  max-width: 500px;
}

.cta-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  flex-shrink: 0;
}

.cta-decorations {
  position: absolute;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
}

.cta-shape {
  position: absolute;
  border-radius: 50%;
}

.cta-shape--1 {
  width: 300px;
  height: 300px;
  background: rgba(255,255,255,0.04);
  top: -100px;
  right: 10%;
}

.cta-shape--2 {
  width: 200px;
  height: 200px;
  background: rgba(255,255,255,0.03);
  bottom: -60px;
  left: 5%;
}

.cta-shape--3 {
  width: 100px;
  height: 100px;
  background: rgba(255,255,255,0.05);
  top: 30%;
  right: 35%;
}

/* ============================================
   Contact Section
   ============================================ */
.contact {
  padding: 100px 0;
  position: relative;
  z-index: 1;
  background: var(--white);
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 60px;
  align-items: start;
}

.contact-info {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.contact-card {
  display: flex;
  align-items: flex-start;
  gap: 18px;
  padding: 24px;
  background: var(--cream);
  border-radius: var(--radius-md);
  transition: var(--transition);
}

.contact-card:hover {
  background: var(--green-50);
  transform: translateX(6px);
}

.contact-card-icon {
  width: 52px;
  height: 52px;
  background: var(--green-100);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--green-700);
  flex-shrink: 0;
  transition: var(--transition);
}

.contact-card:hover .contact-card-icon {
  background: var(--green-600);
  color: var(--white);
}

.contact-card-label {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.813rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--gray-500);
  margin-bottom: 6px;
}

.contact-card-value {
  font-size: 1rem;
  color: var(--gray-800);
  font-weight: 500;
  line-height: 1.6;
}

.contact-card-value a {
  color: var(--green-700);
}

.contact-card-value a:hover {
  color: var(--green-500);
  text-decoration: underline;
}

.contact-map {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  margin-top: 8px;
}

/* Contact Form */
.contact-form-wrapper {
  position: relative;
}

.contact-form-card {
  background: var(--cream);
  border-radius: var(--radius-xl);
  padding: 44px;
  border: 1px solid var(--gray-100);
}

.contact-form-title {
  font-family: var(--font-heading);
  font-size: 1.6rem;
  font-weight: 800;
  color: var(--gray-900);
  margin-bottom: 8px;
}

.contact-form-subtitle {
  font-size: 0.938rem;
  color: var(--gray-500);
  margin-bottom: 32px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.form-group {
  margin-bottom: 20px;
}

.form-group label {
  display: block;
  font-weight: 600;
  font-size: 0.875rem;
  color: var(--gray-700);
  margin-bottom: 8px;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 12px 16px;
  border: 2px solid var(--gray-200);
  border-radius: var(--radius-sm);
  font-family: var(--font-body);
  font-size: 0.938rem;
  color: var(--gray-800);
  background: var(--white);
  transition: var(--transition);
  outline: none;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--green-500);
  box-shadow: 0 0 0 4px rgba(16, 185, 129, 0.1);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: var(--gray-400);
}

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

/* Form Success */
.form-success {
  display: none;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 40px 20px;
  animation: fadeIn 0.4s ease;
}

.form-success.active {
  display: flex;
}

@keyframes fadeIn {
  from { opacity: 0; transform: scale(0.95); }
  to { opacity: 1; transform: scale(1); }
}

.form-success-icon {
  width: 72px;
  height: 72px;
  background: var(--green-100);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--green-600);
  margin-bottom: 20px;
}

.form-success-title {
  font-family: var(--font-heading);
  font-size: 1.4rem;
  font-weight: 800;
  color: var(--gray-900);
  margin-bottom: 8px;
}

.form-success-text {
  font-size: 0.938rem;
  color: var(--gray-600);
  margin-bottom: 24px;
}

/* ============================================
   Footer
   ============================================ */
.site-footer {
  background: var(--gray-900);
  color: var(--gray-400);
  padding: 80px 0 0;
  position: relative;
  z-index: 1;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
  gap: 48px;
  padding-bottom: 60px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

.footer-brand .logo {
  color: var(--white);
  margin-bottom: 16px;
}

.footer-brand .logo-icon {
  background: var(--green-600);
}

.footer-desc {
  font-size: 0.938rem;
  line-height: 1.7;
  color: var(--gray-400);
  max-width: 280px;
}

.footer-heading {
  font-family: var(--font-heading);
  font-size: 0.875rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--white);
  margin-bottom: 20px;
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-links a {
  font-size: 0.938rem;
  color: var(--gray-400);
  transition: var(--transition);
}

.footer-links a:hover {
  color: var(--green-400);
  transform: translateX(4px);
}

.footer-contact p {
  font-size: 0.938rem;
  line-height: 1.8;
  margin-bottom: 4px;
}

.footer-contact a {
  color: var(--gray-400);
}

.footer-contact a:hover {
  color: var(--green-400);
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 28px 0;
  font-size: 0.875rem;
  color: var(--gray-500);
}

/* ============================================
   Scroll Animations
   ============================================ */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }

/* ============================================
   Responsive
   ============================================ */
@media (max-width: 1024px) {
  .hero-grid {
    gap: 40px;
  }

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

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

  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 40px;
  }
}

@media (max-width: 768px) {
  .nav {
    display: none;
  }

  .mobile-menu-btn {
    display: flex;
  }

  .hero {
    padding: 120px 0 80px;
    min-height: auto;
  }

  .hero-grid {
    grid-template-columns: 1fr;
    gap: 50px;
  }

  .hero-visual {
    order: -1;
    max-width: 500px;
    margin: 0 auto;
  }

  .hero-card--main img {
    height: 300px;
  }

  .float-card--1 {
    right: 0;
    top: 5%;
  }

  .float-card--2 {
    left: 0;
    bottom: 30%;
  }

  .float-card--3 {
    right: 5%;
    bottom: 0;
  }

  .services-grid {
    grid-template-columns: 1fr;
  }

  .about-grid {
    grid-template-columns: 1fr;
    gap: 60px;
  }

  .about-img-main img {
    height: 400px;
  }

  .about-img-secondary {
    right: -10px;
    bottom: -20px;
  }

  .about-img-secondary img {
    width: 220px;
    height: 160px;
  }

  .about-features {
    grid-template-columns: 1fr;
  }

  .why-grid {
    grid-template-columns: 1fr;
  }

  .cta-inner {
    flex-direction: column;
    text-align: center;
    gap: 32px;
  }

  .cta-text {
    max-width: 100%;
  }

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

  .contact-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .contact-form-card {
    padding: 28px;
  }

  .form-row {
    grid-template-columns: 1fr;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 36px;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 8px;
    text-align: center;
  }
}

@media (max-width: 480px) {
  .container {
    padding: 0 16px;
  }

  .hero-actions {
    flex-direction: column;
  }

  .hero-actions .btn {
    justify-content: center;
    width: 100%;
  }

  .float-card {
    padding: 10px 14px;
  }

  .float-card-icon {
    width: 34px;
    height: 34px;
  }

  .float-card-value {
    font-size: 0.813rem;
  }

  .float-card-label {
    font-size: 0.75rem;
  }

  .section-title {
    font-size: 1.8rem;
  }

  .service-card {
    padding: 28px 24px;
  }

  .cta-actions {
    flex-direction: column;
    width: 100%;
  }

  .cta-actions .btn {
    justify-content: center;
    width: 100%;
  }
}
