/* ===========================================================
   Pixel Studio 24 — Main Stylesheet
   Palette: navy #1A1A2E · maroon #7B1F3A · amber #F5A623
            pink #E8365D · gray #4A5568 · light #F8F8F8
   Font: Plus Jakarta Sans
   =========================================================== */

:root {
  --navy:   #1A1A2E;
  --maroon: #7B1F3A;
  --amber:  #F5A623;
  --pink:   #E8365D;
  --gray:   #4A5568;
  --light:  #F8F8F8;
  --border: #EEEEEE;
  --grad:   linear-gradient(to right, #F5A623, #E8365D);
  --grad-br: linear-gradient(to bottom right, #F5A623, #E8365D);
  --shadow-card: 0 4px 32px rgba(0,0,0,0.07);
  --shadow-hover: 0 8px 40px rgba(123,31,58,0.2);
}

*, *::before, *::after { box-sizing: border-box; }

html { scroll-behavior: smooth; scroll-padding-top: 5rem; }

body {
  margin: 0;
  font-family: 'Plus Jakarta Sans', system-ui, -apple-system, Segoe UI, Roboto, sans-serif;
  color: var(--gray);
  background: #fff;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4 { color: var(--navy); line-height: 1.15; margin: 0; }
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
button { font-family: inherit; cursor: pointer; }

.container { max-width: 80rem; margin: 0 auto; padding: 0 1rem; }
@media (min-width:640px){ .container{ padding:0 1.5rem; } }
@media (min-width:1024px){ .container{ padding:0 2rem; } }

.gradient-text {
  background: var(--grad);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

/* ---- Buttons ---------------------------------------------- */
.btn {
  display: inline-block;
  border: none;
  border-radius: 9999px;
  font-weight: 700;
  transition: all .3s ease;
  text-align: center;
}
.btn-primary {
  background: var(--grad);
  color: #fff;
  padding: 1rem 2rem;
  font-size: 1.125rem;
}
.btn-primary:hover { box-shadow: 0 20px 40px rgba(232,54,93,.35); transform: scale(1.05); }
.btn-outline {
  background: transparent;
  border: 2px solid #fff;
  color: #fff;
  padding: 1rem 2rem;
  font-size: 1.125rem;
}
.btn-outline:hover { background: rgba(255,255,255,.1); }
.btn-sm { padding: .625rem 1.5rem; font-size: 1rem; }
.btn-block { width: 100%; }

/* ---- Section heading -------------------------------------- */
.section { padding: 5rem 0; }
.eyebrow {
  display: block;
  font-size: .75rem;
  font-weight: 600;
  letter-spacing: .15em;
  text-transform: uppercase;
  color: var(--amber);
  margin-bottom: 1rem;
}
.section-head { text-align: center; max-width: 48rem; margin: 0 auto 4rem; }
.section-head h2 { font-size: clamp(2rem, 4vw, 3rem); font-weight: 800; margin-bottom: 1rem; }
.section-head p { font-size: 1.125rem; color: var(--gray); }

/* ===========================================================
   Navigation
   =========================================================== */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 50;
  background: #fff; border-bottom: 1px solid var(--border);
}
.nav-inner { display: flex; align-items: center; justify-content: space-between; height: 4rem; }
.nav-logo { font-weight: 800; font-size: 1.25rem; color: var(--maroon); }
.nav-links { display: none; align-items: center; gap: 2rem; }
.nav-links a { color: var(--gray); font-weight: 500; transition: color .2s; }
.nav-links a:hover { color: var(--maroon); }
.nav-toggle { display: inline-flex; background: none; border: none; color: var(--gray); padding: .5rem; }
@media (min-width:768px){
  .nav-links { display: flex; }
  .nav-toggle { display: none; }
}
.mobile-menu {
  position: fixed; inset: 4rem 0 0 0; z-index: 40; background: #fff;
  display: none; flex-direction: column; align-items: center; gap: 1.5rem; padding: 2rem;
}
.mobile-menu.open { display: flex; }
.mobile-menu a { font-size: 1.125rem; color: var(--gray); font-weight: 500; }

.page { padding-top: 4rem; }

/* ===========================================================
   Hero
   =========================================================== */
.hero {
  position: relative; min-height: 90vh; display: flex; align-items: center;
  justify-content: center; overflow: hidden; background: var(--navy); text-align: center;
}
.hero-bg {
  position: absolute; inset: 0; z-index: 0;
  background-size: cover; background-position: center;
  background-image: url('https://images.unsplash.com/photo-1639059790587-95625e6b764c?q=80&w=2000');
}
.hero-overlay {
  position: absolute; inset: 0; z-index: 10;
  background: linear-gradient(to right, rgba(26,26,46,.92), rgba(123,31,58,.6));
}
.hero-content { position: relative; z-index: 20; padding: 5rem 1rem; max-width: 80rem; }
.badge-pill {
  display: inline-block; padding: .5rem 1rem; font-size: .75rem; font-weight: 600;
  letter-spacing: .15em; text-transform: uppercase; color: var(--amber);
  background: rgba(245,166,35,.1); border: 1px solid rgba(245,166,35,.3); border-radius: 9999px;
  margin-bottom: 1.5rem;
}
.hero h1 {
  font-weight: 800; color: #fff; margin-bottom: 1.5rem;
  font-size: clamp(2.5rem, 7vw, 4.5rem); line-height: 1.1;
}
.hero p { font-size: 1.25rem; color: rgba(255,255,255,.7); max-width: 48rem; margin: 0 auto 2.5rem; }
.hero-actions { display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 1rem; }
@media (min-width:640px){ .hero-actions { flex-direction: row; } }

/* ===========================================================
   Trust bar
   =========================================================== */
.trustbar { background: #fff; border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); padding: 2rem 0; }
.trust-grid { display: grid; grid-template-columns: repeat(2,1fr); gap: 1.5rem; }
@media (min-width:768px){ .trust-grid { grid-template-columns: repeat(3,1fr); } }
@media (min-width:1024px){ .trust-grid { grid-template-columns: repeat(6,1fr); } }
.trust-item { display: flex; flex-direction: column; align-items: center; text-align: center; }
.trust-item svg { width: 2rem; height: 2rem; color: var(--amber); margin-bottom: .5rem; }
.trust-item span { font-size: .875rem; font-weight: 500; color: var(--gray); }

/* ===========================================================
   Services
   =========================================================== */
.bg-light { background: var(--light); }
.services-grid { display: grid; grid-template-columns: 1fr; gap: 2rem; }
@media (min-width:768px){ .services-grid { grid-template-columns: repeat(2,1fr); } }
.service-card {
  position: relative; overflow: hidden; background: #fff; border-radius: .75rem; padding: 2rem;
  box-shadow: var(--shadow-card); transition: all .3s ease; border-bottom: 2px solid transparent;
}
.service-card:hover { box-shadow: 0 2px 12px rgba(123,31,58,.15); transform: translateY(-4px); border-bottom-color: var(--amber); }
.icon-box {
  width: 3rem; height: 3rem; background: var(--maroon); border-radius: .5rem;
  display: flex; align-items: center; justify-content: center; margin-bottom: 1rem; transition: background .3s;
}
.service-card:hover .icon-box { background: var(--grad-br); }
.icon-box svg { width: 1.5rem; height: 1.5rem; color: #fff; }
.service-card h3 { font-size: 1.25rem; font-weight: 700; margin-bottom: .5rem; }
.service-card > p { margin-bottom: 1rem; }
.feature-list { list-style: none; margin: 0; padding: 0; display: grid; gap: .5rem; }
.feature-list li { display: flex; align-items: flex-start; font-size: .875rem; color: var(--gray); }
.feature-list li::before { content: '→'; color: var(--amber); margin-right: .5rem; }

/* ===========================================================
   Before / After
   =========================================================== */
.ba-wrap { display: grid; grid-template-columns: 1fr; gap: 2rem; align-items: center; }
@media (min-width:1024px){ .ba-wrap { grid-template-columns: repeat(2,1fr); } }
.ba-service-pill {
  display: inline-block; padding: .375rem 1rem; background: var(--light);
  border-radius: 9999px; font-size: .875rem; font-weight: 600; color: var(--maroon); margin-bottom: 1rem;
}
.ba-info h3 { font-size: 1.875rem; font-weight: 800; margin-bottom: 1rem; }
.ba-improvements { display: grid; gap: .75rem; margin-bottom: 2rem; }
.ba-improvements .row { display: flex; align-items: center; gap: .75rem; }
.check-dot {
  width: 1.5rem; height: 1.5rem; border-radius: 9999px; background: var(--grad-br);
  display: flex; align-items: center; justify-content: center; flex-shrink: 0; color: #fff; font-size: .75rem;
}
.ba-controls { display: flex; gap: .75rem; margin-bottom: 1rem; }
.ba-arrow {
  width: 3rem; height: 3rem; border-radius: 9999px; border: 2px solid var(--border);
  background: #fff; display: flex; align-items: center; justify-content: center; transition: all .2s; font-size: 1.25rem;
}
.ba-arrow:hover { border-color: var(--amber); background: var(--amber); color: #fff; }
.ba-dots { display: flex; gap: .5rem; }
.ba-dot { height: .5rem; width: .5rem; border-radius: 9999px; background: var(--border); border: none; transition: all .3s; padding: 0; }
.ba-dot.active { width: 3rem; background: var(--grad); }
.ba-images { position: relative; }
.ba-pair { display: grid; grid-template-columns: repeat(2,1fr); gap: 1rem; }
.ba-col .label { font-size: .875rem; font-weight: 700; text-transform: uppercase; letter-spacing: .05em; margin-bottom: .5rem; color: var(--gray); }
.ba-col .label.after { background: var(--grad); -webkit-background-clip: text; background-clip: text; color: transparent; }
.ba-img { position: relative; border-radius: .75rem; overflow: hidden; box-shadow: 0 20px 40px rgba(0,0,0,.25); aspect-ratio: 3/4; }
.ba-img.enhanced { box-shadow: 0 0 0 4px rgba(245,166,35,.2), 0 20px 40px rgba(0,0,0,.25); }
.ba-img img { width: 100%; height: 100%; object-fit: cover; }
.ba-tag { position: absolute; top: 1rem; left: 1rem; padding: .375rem .75rem; border-radius: 9999px; font-size: .75rem; font-weight: 600; color: #fff; }
.ba-tag.orig { background: rgba(0,0,0,.6); }
.ba-tag.enh { background: var(--grad); }
.ba-center {
  position: absolute; top: 50%; left: 50%; transform: translate(-50%,-50%); z-index: 10;
  width: 3rem; height: 3rem; background: #fff; border-radius: 9999px; box-shadow: 0 20px 40px rgba(0,0,0,.25);
  display: flex; align-items: center; justify-content: center; color: var(--amber); font-size: 1.25rem;
}
.ba-foot { margin-top: 4rem; text-align: center; }
.ba-foot p { font-size: 1.125rem; margin-bottom: 1.5rem; }

/* ===========================================================
   Portfolio
   =========================================================== */
.filter-bar { display: flex; flex-wrap: wrap; justify-content: center; gap: .75rem; margin-bottom: 3rem; }
.filter-btn {
  padding: .625rem 1.5rem; border-radius: 9999px; font-weight: 600; border: none;
  background: var(--light); color: var(--gray); transition: all .2s;
}
.filter-btn:hover { background: var(--border); }
.filter-btn.active { background: var(--grad); color: #fff; box-shadow: 0 10px 20px rgba(232,54,93,.25); }
.portfolio-grid { display: grid; grid-template-columns: 1fr; gap: 1.5rem; }
@media (min-width:768px){ .portfolio-grid { grid-template-columns: repeat(2,1fr); } }
@media (min-width:1024px){ .portfolio-grid { grid-template-columns: repeat(4,1fr); } }
.portfolio-item { position: relative; overflow: hidden; border-radius: .75rem; box-shadow: var(--shadow-card); transition: box-shadow .5s; }
.portfolio-item:hover { box-shadow: var(--shadow-hover); }
.portfolio-item .thumb { aspect-ratio: 3/4; overflow: hidden; }
.portfolio-item .thumb img { width: 100%; height: 100%; object-fit: cover; transition: transform .7s; }
.portfolio-item:hover .thumb img { transform: scale(1.1); }
.portfolio-overlay {
  position: absolute; inset: 0; opacity: 0; transition: opacity .5s;
  background: linear-gradient(to top, var(--navy), rgba(26,26,46,.6), transparent);
}
.portfolio-item:hover .portfolio-overlay { opacity: 1; }
.portfolio-overlay .caption {
  position: absolute; bottom: 0; left: 0; right: 0; padding: 1.5rem; color: #fff;
  transform: translateY(1rem); transition: transform .5s;
}
.portfolio-item:hover .caption { transform: translateY(0); }
.portfolio-overlay h3 { color: #fff; font-size: 1.125rem; font-weight: 700; margin-bottom: .5rem; }
.portfolio-overlay .desc { font-size: .875rem; color: rgba(255,255,255,.9); margin-bottom: .75rem; }
.portfolio-overlay .before { font-size: .75rem; color: var(--amber); }
.portfolio-overlay .after { font-size: .75rem; color: rgba(255,255,255,.8); }
.center-cta { margin-top: 3rem; text-align: center; }
.center-cta p { margin-bottom: 1.5rem; }

/* ===========================================================
   Process
   =========================================================== */
.process-line { display: none; }
.process-grid { display: grid; grid-template-columns: 1fr; gap: 1.5rem; }
.process-step-mobile { background: var(--light); border-radius: .75rem; padding: 1.5rem; display: flex; gap: 1rem; }
.process-step-mobile .num { font-size: .875rem; font-weight: 700; color: var(--amber); margin-bottom: .25rem; }
.process-ico { width: 3rem; height: 3rem; border-radius: 9999px; background: var(--grad-br); display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.process-ico svg { width: 1.5rem; height: 1.5rem; color: #fff; }
.process-desktop { display: none; position: relative; }
@media (min-width:1024px){
  .process-desktop { display: block; }
  .process-grid { display: none; }
  .process-cols { display: grid; grid-template-columns: repeat(4,1fr); gap: 2rem; position: relative; }
  .process-track { position: absolute; top: 50%; left: 7.5%; width: 85%; height: 4px; background: var(--grad); transform: translateY(-50%); }
  .process-col { position: relative; text-align: center; }
  .process-bignum { font-size: 120px; font-weight: 800; color: var(--border); line-height: 1; margin-bottom: 1rem; user-select: none; }
  .process-body { position: relative; margin-top: -5rem; }
  .process-body .circle { width: 4rem; height: 4rem; background: var(--grad-br); border-radius: 9999px; display: flex; align-items: center; justify-content: center; margin: 0 auto 1.5rem; box-shadow: 0 10px 20px rgba(0,0,0,.15); }
  .process-body .circle svg { width: 2rem; height: 2rem; color: #fff; }
  .process-body h3 { font-size: 1.25rem; font-weight: 700; margin-bottom: .75rem; }
  .process-body p { font-size: .875rem; }
}
.process-note { margin-top: 3rem; background: var(--navy); border-radius: .75rem; padding: 2rem; text-align: center; }
.process-note p { color: #fff; font-size: 1.125rem; }
.process-note strong { color: var(--amber); }

/* ===========================================================
   Why Choose Us
   =========================================================== */
.why { background: linear-gradient(to bottom right, var(--navy), var(--navy), var(--maroon)); }
.why .section-head h2 { color: #fff; }
.why .section-head p { color: rgba(255,255,255,.8); }
.why-grid { display: grid; grid-template-columns: 1fr; gap: 2rem; }
@media (min-width:768px){ .why-grid { grid-template-columns: repeat(2,1fr); } }
@media (min-width:1024px){ .why-grid { grid-template-columns: repeat(3,1fr); } }
.why-card {
  position: relative; overflow: hidden; border-radius: .75rem; padding: 2rem;
  background: rgba(255,255,255,.05); backdrop-filter: blur(4px); border: 1px solid rgba(255,255,255,.1); transition: border-color .5s;
}
.why-card:hover { border-color: rgba(245,166,35,.5); }
.why-card .top { display: flex; align-items: flex-start; justify-content: space-between; margin-bottom: 1.5rem; }
.why-ico { width: 3.5rem; height: 3.5rem; background: var(--grad-br); border-radius: .75rem; display: flex; align-items: center; justify-content: center; transition: transform .3s; }
.why-card:hover .why-ico { transform: scale(1.1); }
.why-ico svg { width: 1.75rem; height: 1.75rem; color: #fff; }
.why-stat { font-size: 1.875rem; font-weight: 800; color: var(--amber); }
.why-card h3 { color: #fff; font-size: 1.25rem; font-weight: 700; margin-bottom: .75rem; }
.why-card p { color: rgba(255,255,255,.8); }
.why-stats { margin-top: 4rem; display: grid; grid-template-columns: repeat(2,1fr); gap: 2rem; text-align: center; }
@media (min-width:768px){ .why-stats { grid-template-columns: repeat(4,1fr); } }
.why-stat-box { background: rgba(255,255,255,.05); backdrop-filter: blur(4px); border-radius: .75rem; padding: 1.5rem; border: 1px solid rgba(255,255,255,.1); }
.why-stat-box .num { font-size: 2.25rem; font-weight: 800; margin-bottom: .5rem; }
.why-stat-box .lbl { color: rgba(255,255,255,.8); font-size: .875rem; }

/* ===========================================================
   Pricing
   =========================================================== */
.pricing-grid { display: grid; grid-template-columns: 1fr; gap: 1.5rem; margin-bottom: 3rem; }
@media (min-width:640px){ .pricing-grid { grid-template-columns: repeat(2,1fr); } }
@media (min-width:1024px){ .pricing-grid { grid-template-columns: repeat(3,1fr); } }
.price-card { position: relative; background: #fff; border-radius: .75rem; padding: 1.5rem; box-shadow: var(--shadow-card); transition: all .3s; }
.price-card:hover { box-shadow: var(--shadow-hover); transform: translateY(-4px); }
.price-discount { position: absolute; top: 1rem; right: 1rem; padding: .25rem .75rem; font-size: .75rem; font-weight: 700; color: #fff; background: var(--amber); border-radius: 9999px; }
.price-ico { width: 2.5rem; height: 2.5rem; background: var(--maroon); border-radius: .5rem; display: flex; align-items: center; justify-content: center; margin-bottom: 1rem; }
.price-ico svg { width: 1.25rem; height: 1.25rem; color: #fff; }
.price-card h4 { font-size: 1.125rem; font-weight: 700; margin-bottom: .25rem; }
.price-card .sub { font-size: .75rem; font-style: italic; margin-bottom: 1rem; }
.price-amount { margin-bottom: 1.5rem; }
.price-amount .amt { font-size: 3rem; font-weight: 800; background: var(--grad); -webkit-background-clip: text; background-clip: text; color: transparent; }
.price-amount .unit { color: var(--gray); font-size: 1.125rem; margin-left: .25rem; }
.price-card .btn { border-radius: .5rem; padding: .75rem 1rem; font-size: 1rem; }
.pricing-banner { background: var(--navy); border-radius: .75rem; padding: 2rem; text-align: center; }
.pricing-banner .star { color: var(--amber); font-size: 2rem; margin-bottom: 1rem; }
.pricing-banner h3 { color: #fff; font-size: 1.5rem; font-weight: 700; margin-bottom: .75rem; }
.pricing-banner p { color: rgba(255,255,255,.8); font-size: 1.125rem; margin-bottom: 1.5rem; }

/* ===========================================================
   CTA Banner
   =========================================================== */
.cta { position: relative; overflow: hidden; padding: 5rem 0; }
.cta-bg { position: absolute; inset: 0; z-index: 0; background-size: cover; background-position: center;
  background-image: url('https://images.unsplash.com/photo-1672927936377-97d1be3976cd?q=80&w=1600'); }
.cta-overlay { position: absolute; inset: 0; z-index: 10; background: linear-gradient(135deg, rgba(123,31,58,.95), rgba(26,26,46,.95)); }
.cta-content { position: relative; z-index: 20; text-align: center; max-width: 64rem; margin: 0 auto; }
.cta-badge { display: inline-flex; align-items: center; gap: .5rem; padding: .5rem 1.25rem; background: rgba(255,255,255,.1); backdrop-filter: blur(4px); border: 1px solid rgba(255,255,255,.2); border-radius: 9999px; color: #fff; font-weight: 600; margin-bottom: 2rem; }
.cta h2 { color: #fff; font-weight: 800; font-size: clamp(2.25rem, 5vw, 3.75rem); margin-bottom: 1.5rem; line-height: 1.1; }
.cta p { color: rgba(255,255,255,.9); font-size: 1.25rem; max-width: 42rem; margin: 0 auto 2.5rem; }
.cta-actions { display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 1rem; margin-bottom: 3rem; }
@media (min-width:640px){ .cta-actions { flex-direction: row; } }
.cta-stats { display: grid; grid-template-columns: 1fr; gap: 2rem; max-width: 56rem; margin: 0 auto; }
@media (min-width:768px){ .cta-stats { grid-template-columns: repeat(3,1fr); } }
.cta-stat .num { font-size: 2.25rem; font-weight: 800; color: #fff; margin-bottom: .5rem; }
.cta-stat .lbl { color: rgba(255,255,255,.8); }
.cta-line { position: absolute; bottom: 0; left: 0; right: 0; height: 4px; background: linear-gradient(to right, var(--amber), var(--pink), var(--maroon)); }

/* ===========================================================
   Testimonials
   =========================================================== */
.testi-grid { display: grid; grid-template-columns: 1fr; gap: 2rem; }
@media (min-width:768px){ .testi-grid { grid-template-columns: repeat(2,1fr); } }
@media (min-width:1024px){ .testi-grid { grid-template-columns: repeat(3,1fr); } }
.testi-card { position: relative; overflow: hidden; background: #fff; border-radius: .75rem; padding: 2rem; box-shadow: var(--shadow-card); transition: all .3s; }
.testi-card:hover { box-shadow: 0 8px 40px rgba(123,31,58,.15); transform: translateY(-8px); }
.testi-avatar { width: 5rem; height: 5rem; border-radius: 9999px; overflow: hidden; margin-bottom: 1rem; box-shadow: 0 0 0 4px rgba(245,166,35,.2); }
.testi-avatar img { width: 100%; height: 100%; object-fit: cover; }
.testi-stars { color: var(--amber); margin-bottom: 1rem; letter-spacing: .1em; }
.testi-card .quote { margin-bottom: 1.5rem; }
.testi-meta { border-top: 1px solid var(--border); padding-top: 1rem; }
.testi-meta .name { font-weight: 700; color: var(--navy); }
.testi-meta .role { font-size: .875rem; color: var(--gray); }
.testi-meta .loc { font-size: .75rem; color: var(--amber); margin-top: .25rem; }
.testi-banner { margin-top: 4rem; background: var(--grad); border-radius: 1rem; padding: 3rem; text-align: center; }
.testi-banner h3 { color: #fff; font-size: clamp(1.5rem,3vw,2.25rem); font-weight: 800; margin-bottom: 1rem; }
.testi-banner p { color: rgba(255,255,255,.9); font-size: 1.125rem; margin-bottom: 2rem; max-width: 42rem; margin-left: auto; margin-right: auto; }
.testi-banner .btn { background: #fff; color: var(--maroon); }
.testi-banner .btn:hover { background: var(--light); }

/* ===========================================================
   Contact
   =========================================================== */
.contact-grid { display: grid; grid-template-columns: 1fr; gap: 2rem; }
@media (min-width:1024px){ .contact-grid { grid-template-columns: repeat(2,1fr); } }
.contact-info { background: var(--navy); border-radius: .75rem; padding: 2rem; border-left: 4px solid var(--maroon); display: grid; gap: 1.5rem; align-content: start; }
.contact-info .row { display: flex; align-items: flex-start; gap: .75rem; }
.contact-info svg { width: 1.5rem; height: 1.5rem; color: var(--amber); flex-shrink: 0; margin-top: .25rem; }
.contact-info .k { color: rgba(255,255,255,.6); font-size: .875rem; margin-bottom: .25rem; }
.contact-info .v { color: #fff; font-weight: 600; }
.contact-info a.v:hover { color: var(--amber); }
.contact-markets { padding-top: 1.5rem; border-top: 1px solid rgba(255,255,255,.1); display: flex; flex-wrap: wrap; gap: .5rem; }
.market-pill { padding: .375rem .75rem; background: rgba(255,255,255,.1); border-radius: 9999px; color: #fff; font-size: .875rem; font-weight: 500; }
.contact-form { background: #fff; border-radius: .75rem; padding: 2rem; box-shadow: var(--shadow-card); }
.form-group { margin-bottom: 1.25rem; }
.form-group label { display: block; font-size: .875rem; font-weight: 600; color: var(--navy); margin-bottom: .5rem; }
.form-control { width: 100%; padding: .75rem 1rem; border: 1px solid var(--border); border-radius: .5rem; font-family: inherit; font-size: 1rem; transition: box-shadow .2s, border-color .2s; }
.form-control:focus { outline: none; border-color: var(--amber); box-shadow: 0 0 0 2px rgba(245,166,35,.4); }
textarea.form-control { resize: vertical; min-height: 7rem; }
.form-note { font-size: .875rem; text-align: center; margin-top: 1rem; }
.form-note a { color: var(--maroon); font-weight: 600; }
.form-alert { padding: .875rem 1rem; border-radius: .5rem; margin-bottom: 1rem; font-size: .9rem; font-weight: 500; }
.form-alert.success { background: #e7f6ec; color: #1a7f43; border: 1px solid #b6e3c6; }
.form-alert.error { background: #fdecef; color: #b3243c; border: 1px solid #f5c2cd; }

/* ===========================================================
   Footer
   =========================================================== */
.footer { background: var(--navy); color: #fff; padding: 4rem 0 2rem; }
.footer-grid { display: grid; grid-template-columns: 1fr; gap: 3rem; margin-bottom: 3rem; }
@media (min-width:768px){ .footer-grid { grid-template-columns: repeat(3,1fr); } }
.footer h3 { color: #fff; font-size: 1.25rem; font-weight: 800; margin-bottom: 1rem; }
.footer h4 { color: #fff; font-size: 1.125rem; font-weight: 700; margin-bottom: 1rem; }
.footer p { color: rgba(255,255,255,.7); margin-bottom: 1.5rem; }
.footer-social { display: flex; gap: 1rem; }
.footer-social a { width: 2.5rem; height: 2.5rem; background: rgba(255,255,255,.1); border-radius: 9999px; display: flex; align-items: center; justify-content: center; transition: background .2s; }
.footer-social a:hover { background: var(--amber); }
.footer-social svg { width: 1.25rem; height: 1.25rem; fill: #fff; }
.footer-list { list-style: none; margin: 0; padding: 0; display: grid; gap: .75rem; }
.footer-list a { color: rgba(255,255,255,.7); transition: color .2s; }
.footer-list a:hover { color: var(--amber); }
.footer-bottom { border-top: 1px solid rgba(255,255,255,.1); padding-top: 2rem; text-align: center; }
.footer-bottom p { color: rgba(255,255,255,.6); font-size: .875rem; margin: 0; }
