/* ============================================
   I Can Do That! Handyman Services - Austin TX
   Design: Playful Precision
   Colors: Teal + Dark Blue + Warm Amber
   ============================================ */

:root {
  --primary: #176C92;
  --primary-dark: #045389;
  --primary-light: #1E8AB4;
  --accent: #E8A838;
  --accent-hover: #D4962A;
  --text: #222222;
  --text-light: #5A6872;
  --bg: #ffffff;
  --bg-warm: #FFF8ED;
  --bg-cool: #F0F7FA;
  --bg-dark: #062A3C;
  --bg-dark-alt: #0A3D55;
  --white: #ffffff;
  --shadow-sm: 0 2px 8px rgba(6,42,60,0.08);
  --shadow-md: 0 4px 20px rgba(6,42,60,0.12);
  --shadow-lg: 0 8px 40px rgba(6,42,60,0.16);
  --radius: 12px;
  --radius-sm: 8px;
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
  --transition-fast: 150ms ease;
  --transition-med: 300ms var(--ease-out);
}

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

html { scroll-behavior: smooth; }

body {
  font-family: 'DM Sans', sans-serif;
  color: var(--text);
  background: var(--bg);
  line-height: 1.7;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; height: auto; display: block; }
a { color: var(--primary); text-decoration: none; transition: color var(--transition-fast); }
a:hover { color: var(--accent); }
ul, ol { list-style: none; }

h1,h2,h3,h4 {
  font-family: 'Baloo 2', cursive;
  line-height: 1.2;
  color: var(--text);
  font-weight: 700;
}

h1 { font-size: clamp(2.5rem, 6vw, 4.2rem); }
h2 { font-size: clamp(1.8rem, 4vw, 2.8rem); }
h3 { font-size: clamp(1.2rem, 2.5vw, 1.5rem); }

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

/* Skip Link */
.skip-link {
  position: absolute;
  top: -100%;
  left: 16px;
  background: var(--accent);
  color: var(--bg-dark);
  padding: 8px 16px;
  border-radius: var(--radius-sm);
  z-index: 9999;
  font-weight: 600;
}
.skip-link:focus {
  top: 16px;
}

/* ============ HEADER ============ */
.site-header {
  background: var(--primary-dark);
  padding: 0;
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 2px 12px rgba(0,0,0,0.15);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 24px;
  max-width: 1200px;
  margin: 0 auto;
}

.logo-link {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}

.logo-link img {
  height: 56px;
  width: auto;
}

.logo-text {
  font-family: 'Baloo 2', cursive;
  font-size: 1.3rem;
  color: var(--white);
  font-weight: 700;
  line-height: 1.2;
}

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

.main-nav ul {
  display: flex;
  gap: 32px;
  align-items: center;
}

.main-nav a {
  color: rgba(255,255,255,0.85);
  font-weight: 500;
  font-size: 0.95rem;
  padding: 8px 0;
  position: relative;
  transition: color var(--transition-fast);
}

.main-nav a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--accent);
  transition: width var(--transition-med);
}

.main-nav a:hover,
.main-nav a.active {
  color: var(--white);
}

.main-nav a:hover::after,
.main-nav a.active::after {
  width: 100%;
}

.nav-cta {
  background: var(--accent) !important;
  color: var(--bg-dark) !important;
  padding: 10px 20px !important;
  border-radius: var(--radius-sm);
  font-weight: 700 !important;
  transition: all var(--transition-fast) !important;
}

.nav-cta::after { display: none !important; }

.nav-cta:hover {
  background: var(--accent-hover) !important;
  transform: translateY(-1px);
}

/* Mobile Nav Toggle */
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
}

.nav-toggle span {
  display: block;
  width: 26px;
  height: 2px;
  background: var(--white);
  transition: all var(--transition-med);
  border-radius: 2px;
}

/* ============ HERO ============ */
.hero {
  position: relative;
  min-height: 85vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--bg-dark);
}

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

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(4,83,137,0.85) 0%, rgba(6,42,60,0.7) 100%);
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 700px;
  padding: 80px 0;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(232,168,56,0.15);
  border: 1px solid rgba(232,168,56,0.3);
  color: var(--accent);
  padding: 8px 16px;
  border-radius: 50px;
  font-size: 0.85rem;
  font-weight: 600;
  margin-bottom: 24px;
  animation: fadeIn 0.6s var(--ease-out) both;
}

.hero h1 {
  color: var(--white);
  margin-bottom: 20px;
  animation: slideUp 0.6s var(--ease-out) 0.1s both;
}

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

.hero p {
  color: rgba(255,255,255,0.9);
  font-size: 1.2rem;
  line-height: 1.8;
  margin-bottom: 32px;
  animation: slideUp 0.6s var(--ease-out) 0.2s both;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  animation: slideUp 0.6s var(--ease-out) 0.3s both;
}

.hero-mascot {
  position: absolute;
  right: 5%;
  bottom: 0;
  width: 280px;
  opacity: 0;
  animation: fadeInRight 0.8s var(--ease-out) 0.5s both;
  z-index: 2;
  filter: drop-shadow(0 4px 12px rgba(0,0,0,0.3));
}

/* ============ BUTTONS ============ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: var(--radius-sm);
  font-weight: 700;
  font-size: 1rem;
  font-family: 'DM Sans', sans-serif;
  text-decoration: none;
  cursor: pointer;
  border: none;
  transition: all var(--transition-fast);
  min-height: 48px;
}

.btn:hover {
  transform: translateY(-2px);
}

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

.btn:focus-visible {
  outline: 3px solid var(--accent);
  outline-offset: 3px;
}

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

.btn-primary:hover {
  background: var(--accent-hover);
  color: var(--bg-dark);
  box-shadow: 0 4px 16px rgba(232,168,56,0.4);
}

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

.btn-secondary:hover {
  border-color: var(--white);
  color: var(--white);
  background: rgba(255,255,255,0.1);
}

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

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

/* ============ SECTIONS ============ */
.section {
  padding: 80px 0;
}

.section-header {
  text-align: center;
  margin-bottom: 56px;
}

.section-header h2 {
  margin-bottom: 16px;
}

.section-header .subtitle {
  color: var(--text-light);
  font-size: 1.1rem;
  max-width: 600px;
  margin: 0 auto;
}

.section-label {
  display: inline-block;
  color: var(--primary);
  font-weight: 700;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 12px;
}

/* ============ SERVICES OVERVIEW ============ */
.services-overview {
  background: var(--bg-cool);
}

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

.service-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 32px;
  box-shadow: var(--shadow-sm);
  transition: all var(--transition-med);
  border: 1px solid rgba(23,108,146,0.06);
}

.service-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: rgba(23,108,146,0.15);
}

.service-card .icon {
  width: 56px;
  height: 56px;
  background: linear-gradient(135deg, var(--primary), var(--primary-light));
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  color: var(--white);
  font-size: 1.5rem;
}

.service-card h3 {
  margin-bottom: 10px;
  font-size: 1.25rem;
}

.service-card p {
  color: var(--text-light);
  font-size: 0.95rem;
  line-height: 1.6;
}

/* ============ WHY CHOOSE US ============ */
.why-choose {
  background: var(--bg);
  position: relative;
}

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

.why-card {
  display: flex;
  gap: 20px;
  padding: 28px;
  border-radius: var(--radius);
  background: var(--bg-cool);
  transition: all var(--transition-med);
}

.why-card:hover {
  background: var(--white);
  box-shadow: var(--shadow-md);
}

.why-icon {
  flex-shrink: 0;
  width: 52px;
  height: 52px;
  background: var(--accent);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
}

.why-card h3 {
  margin-bottom: 8px;
  font-size: 1.15rem;
}

.why-card p {
  color: var(--text-light);
  font-size: 0.93rem;
  line-height: 1.6;
}

/* ============ TESTIMONIALS ============ */
.testimonials {
  background: var(--bg-dark);
  color: var(--white);
  position: relative;
  overflow: hidden;
}

.testimonials::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 600px;
  height: 600px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(232,168,56,0.08), transparent 70%);
}

.testimonials .section-label {
  color: var(--accent);
}

.testimonials h2 {
  color: var(--white);
}

.testimonials .subtitle {
  color: rgba(255,255,255,0.7) !important;
}

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

.testimonial-card {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--radius);
  padding: 32px;
  transition: all var(--transition-med);
}

.testimonial-card:hover {
  background: rgba(255,255,255,0.1);
  border-color: rgba(232,168,56,0.2);
}

.stars {
  color: var(--accent);
  font-size: 1.1rem;
  margin-bottom: 16px;
  letter-spacing: 2px;
}

.testimonial-card blockquote {
  font-size: 0.97rem;
  line-height: 1.7;
  color: rgba(255,255,255,0.9);
  margin-bottom: 20px;
  font-style: italic;
}

.testimonial-author {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 0.88rem;
}

.testimonial-author .name {
  font-weight: 700;
  color: var(--white);
}

.testimonial-author .source {
  color: var(--accent);
  font-weight: 500;
}

/* ============ SERVICE AREA ============ */
.service-area {
  background: var(--bg-warm);
  position: relative;
}

.service-area-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}

.area-image {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.area-image img {
  width: 100%;
  aspect-ratio: 16/9;
  object-fit: cover;
}

.area-cities {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 24px;
}

.city-tag {
  background: var(--white);
  color: var(--primary-dark);
  padding: 8px 18px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 0.9rem;
  box-shadow: var(--shadow-sm);
  transition: all var(--transition-fast);
}

.city-tag:hover {
  background: var(--primary);
  color: var(--white);
  transform: translateY(-2px);
}

/* ============ CTA SECTION ============ */
.cta-section {
  background: linear-gradient(135deg, var(--primary-dark), var(--primary));
  color: var(--white);
  text-align: center;
  padding: 64px 0;
}

.cta-section h2 {
  color: var(--white);
  margin-bottom: 16px;
}

.cta-section p {
  color: rgba(255,255,255,0.9);
  font-size: 1.15rem;
  margin-bottom: 32px;
  max-width: 500px;
  margin-left: auto;
  margin-right: auto;
}

.cta-actions {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 16px;
}

/* ============ SERVICES PAGE ============ */
.page-hero {
  background: var(--primary-dark);
  padding: 100px 0 60px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="g" patternUnits="userSpaceOnUse" width="20" height="20"><circle cx="10" cy="10" r="1" fill="rgba(255,255,255,0.04)"/></pattern></defs><rect fill="url(%23g)" width="100" height="100"/></svg>');
}

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

.page-hero p {
  color: rgba(255,255,255,0.8);
  font-size: 1.15rem;
  max-width: 600px;
  margin: 16px auto 0;
  position: relative;
}

.services-full-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
  gap: 28px;
}

.service-full-card {
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  border: 1px solid rgba(23,108,146,0.06);
  transition: all var(--transition-med);
}

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

.service-full-card .card-img {
  height: 200px;
  overflow: hidden;
}

.service-full-card .card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s var(--ease-out);
}

.service-full-card:hover .card-img img {
  transform: scale(1.05);
}

.service-full-card .card-body {
  padding: 28px;
}

.service-full-card h3 {
  margin-bottom: 10px;
  font-size: 1.2rem;
}

.service-full-card p {
  color: var(--text-light);
  font-size: 0.93rem;
  line-height: 1.6;
  margin-bottom: 16px;
}

.service-full-card .key-points {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.service-full-card .key-point {
  background: var(--bg-cool);
  color: var(--primary-dark);
  padding: 4px 12px;
  border-radius: 50px;
  font-size: 0.82rem;
  font-weight: 500;
}

/* Service list (no-image variant) */
.service-list-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 28px;
  box-shadow: var(--shadow-sm);
  border: 1px solid rgba(23,108,146,0.06);
  transition: all var(--transition-med);
  border-left: 4px solid var(--primary);
}

.service-list-card:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
  border-left-color: var(--accent);
}

.service-list-card h3 {
  margin-bottom: 8px;
  font-size: 1.15rem;
}

.service-list-card p {
  color: var(--text-light);
  font-size: 0.93rem;
  margin-bottom: 12px;
}

/* Pricing */
.pricing-section {
  background: var(--bg-warm);
}

.pricing-card {
  max-width: 600px;
  margin: 0 auto;
  background: var(--white);
  border-radius: var(--radius);
  padding: 48px;
  text-align: center;
  box-shadow: var(--shadow-lg);
  border: 2px solid var(--accent);
  position: relative;
}

.pricing-card .price {
  font-family: 'Baloo 2', cursive;
  font-size: 3.5rem;
  color: var(--primary-dark);
  font-weight: 800;
  line-height: 1;
  margin: 16px 0 8px;
}

.pricing-card .price-note {
  color: var(--text-light);
  font-size: 1rem;
  margin-bottom: 24px;
}

.pricing-card .payment-methods {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  margin-top: 24px;
}

.payment-tag {
  background: var(--bg-cool);
  color: var(--primary-dark);
  padding: 6px 14px;
  border-radius: 50px;
  font-size: 0.85rem;
  font-weight: 500;
}

/* ============ ABOUT PAGE ============ */
.about-section {
  background: var(--bg);
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 48px;
  align-items: start;
}

.about-image {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  position: relative;
}

.about-image img {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
}

.about-image .badge {
  position: absolute;
  bottom: 20px;
  left: 20px;
  background: var(--accent);
  color: var(--bg-dark);
  padding: 12px 20px;
  border-radius: var(--radius-sm);
  font-weight: 700;
  font-size: 0.9rem;
}

.about-text h2 {
  margin-bottom: 24px;
}

.about-text p {
  margin-bottom: 16px;
  line-height: 1.8;
  color: var(--text-light);
}

.about-text p:first-of-type {
  font-size: 1.05rem;
  color: var(--text);
}

.about-highlights {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  margin-top: 32px;
}

.highlight-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 16px;
  background: var(--bg-cool);
  border-radius: var(--radius-sm);
}

.highlight-item .icon {
  font-size: 1.3rem;
  flex-shrink: 0;
}

.highlight-item span {
  font-weight: 600;
  font-size: 0.93rem;
  color: var(--primary-dark);
}

/* ============ PAST WORK ============ */
.past-work-intro {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 48px;
}

.project-highlights {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
}

.project-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 32px;
  box-shadow: var(--shadow-sm);
  border-top: 4px solid var(--primary);
  transition: all var(--transition-med);
}

.project-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-top-color: var(--accent);
}

.project-card .project-icon {
  font-size: 2rem;
  margin-bottom: 16px;
}

.project-card h3 {
  margin-bottom: 10px;
}

.project-card p {
  color: var(--text-light);
  font-size: 0.93rem;
  line-height: 1.6;
}

/* ============ CONTACT PAGE ============ */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
}

.contact-info-card {
  display: flex;
  gap: 16px;
  padding: 20px;
  border-radius: var(--radius-sm);
  background: var(--bg-cool);
  margin-bottom: 20px;
  transition: all var(--transition-fast);
}

.contact-info-card:hover {
  background: var(--white);
  box-shadow: var(--shadow-sm);
}

.contact-info-card .icon {
  flex-shrink: 0;
  width: 48px;
  height: 48px;
  background: var(--primary);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
}

.contact-info-card h3 {
  font-size: 1rem;
  margin-bottom: 4px;
}

.contact-info-card p,
.contact-info-card a {
  color: var(--text-light);
  font-size: 0.93rem;
}

.contact-form {
  background: var(--white);
  border-radius: var(--radius);
  padding: 40px;
  box-shadow: var(--shadow-md);
}

.contact-form h3 {
  margin-bottom: 24px;
  font-size: 1.4rem;
}

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

.form-group label {
  display: block;
  font-weight: 600;
  margin-bottom: 6px;
  font-size: 0.93rem;
  color: var(--text);
}

.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 12px 16px;
  border: 2px solid #e0e6ea;
  border-radius: var(--radius-sm);
  font-family: 'DM Sans', sans-serif;
  font-size: 1rem;
  color: var(--text);
  background: var(--bg);
  transition: border-color var(--transition-fast);
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(23,108,146,0.12);
}

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

.form-submit {
  width: 100%;
  padding: 14px;
  background: var(--accent);
  color: var(--bg-dark);
  border: none;
  border-radius: var(--radius-sm);
  font-weight: 700;
  font-size: 1rem;
  font-family: 'DM Sans', sans-serif;
  cursor: pointer;
  transition: all var(--transition-fast);
  min-height: 48px;
}

.form-submit:hover {
  background: var(--accent-hover);
  transform: translateY(-1px);
}

.form-submit:active {
  transform: translateY(0);
}

.form-submit:focus-visible {
  outline: 3px solid var(--primary);
  outline-offset: 3px;
}

#form-status {
  margin-top: 16px;
  padding: 12px;
  border-radius: var(--radius-sm);
  display: none;
  font-weight: 500;
}

#form-status.success {
  display: block;
  background: #e8f5e9;
  color: #2e7d32;
}

#form-status.error {
  display: block;
  background: #fce4ec;
  color: #c62828;
}

/* Map */
.map-section {
  background: var(--bg-cool);
}

#map {
  width: 100%;
  height: 400px;
  border-radius: var(--radius);
  box-shadow: var(--shadow-md);
}

/* ============ FOOTER ============ */
.site-footer {
  background: var(--bg-dark);
  color: rgba(255,255,255,0.8);
  padding: 64px 0 0;
}

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

.footer-brand .logo-link {
  margin-bottom: 16px;
}

.footer-brand .logo-link img {
  height: 48px;
}

.footer-brand p {
  font-size: 0.93rem;
  line-height: 1.7;
  color: rgba(255,255,255,0.6);
}

.footer-col h4 {
  color: var(--white);
  font-size: 1.1rem;
  margin-bottom: 20px;
}

.footer-col ul li {
  margin-bottom: 10px;
}

.footer-col ul li a {
  color: rgba(255,255,255,0.6);
  font-size: 0.93rem;
  transition: color var(--transition-fast);
}

.footer-col ul li a:hover {
  color: var(--accent);
}

.footer-social {
  display: flex;
  gap: 12px;
  margin-top: 16px;
}

.footer-social a {
  width: 40px;
  height: 40px;
  background: rgba(255,255,255,0.08);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.7);
  transition: all var(--transition-fast);
  font-size: 1.1rem;
}

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

.footer-bottom {
  padding: 24px 0;
  text-align: center;
  font-size: 0.85rem;
  color: rgba(255,255,255,0.4);
}

/* ============ TRUST BAR ============ */
.trust-bar {
  background: var(--white);
  padding: 24px 0;
  border-bottom: 1px solid rgba(23,108,146,0.08);
}

.trust-items {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 32px;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-weight: 600;
  font-size: 0.93rem;
  color: var(--primary-dark);
}

.trust-item .icon {
  color: var(--accent);
  font-size: 1.2rem;
}

/* ============ ANIMATIONS ============ */
@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

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

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

.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s var(--ease-out), transform 0.6s var(--ease-out);
}

.reveal.from-left {
  transform: translateX(-24px);
}

.reveal.from-right {
  transform: translateX(24px);
}

.reveal.scale-up {
  transform: scale(0.95);
}

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

.stagger > .reveal:nth-child(1) { transition-delay: 0ms; }
.stagger > .reveal:nth-child(2) { transition-delay: 80ms; }
.stagger > .reveal:nth-child(3) { transition-delay: 160ms; }
.stagger > .reveal:nth-child(4) { transition-delay: 240ms; }
.stagger > .reveal:nth-child(5) { transition-delay: 320ms; }
.stagger > .reveal:nth-child(6) { transition-delay: 400ms; }

/* ============ RESPONSIVE ============ */
@media (max-width: 992px) {
  .hero-mascot { width: 200px; right: 2%; }
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .why-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
  .about-grid { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .service-area-content { grid-template-columns: 1fr; }
}

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

  .main-nav {
    position: fixed;
    top: 0;
    right: -100%;
    width: 280px;
    height: 100vh;
    background: var(--primary-dark);
    padding: 80px 32px 32px;
    transition: right 0.4s var(--ease-out);
    box-shadow: -4px 0 20px rgba(0,0,0,0.2);
    z-index: 999;
  }

  .main-nav.open {
    right: 0;
  }

  .main-nav ul {
    flex-direction: column;
    gap: 20px;
    align-items: flex-start;
  }

  .main-nav a {
    font-size: 1.1rem;
  }

  .hero { min-height: 70vh; }
  .hero-mascot { display: none; }
  .hero-content { padding: 60px 0; }

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

  .section { padding: 60px 0; }

  .trust-items { gap: 20px; }
  .trust-item { font-size: 0.85rem; }

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

@media (max-width: 480px) {
  .hero h1 { font-size: 2.2rem; }
  .hero-actions { flex-direction: column; }
  .hero-actions .btn { width: 100%; justify-content: center; }
  .pricing-card { padding: 32px 24px; }
  .pricing-card .price { font-size: 2.5rem; }
  .contact-form { padding: 24px; }
}

/* ============ REDUCED MOTION ============ */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-delay: 0ms !important;
    transition-duration: 0.01ms !important;
  }
  .reveal { opacity: 1; transform: none; }
  html { scroll-behavior: auto; }
}
