/*
Theme Name: Deisan Theme
Theme URI: https://deisan.in
Author: Deisan Ecommerce Service Pvt Ltd
Author URI: https://deisan.in
Description: Official WordPress theme for Deisan Ecommerce Service Pvt Ltd — Ecommerce & Quick Commerce Consulting. Built for performance, clarity, and marketplace-first branding.
Version: 1.0.0
License: GNU General Public License v2 or later
License URI: https://www.gnu.org/licenses/gpl-2.0.html
Text Domain: deisan
Tags: business, ecommerce, consulting, one-page, custom-header, custom-logo
*/

/* =============================================
   DESIGN TOKENS
============================================= */
:root {
  --navy:       #0B1628;
  --navy-mid:   #1E2E47;
  --navy-card:  #162035;
  --orange:     #FF5C1A;
  --orange-dim: #CC4510;
  --orange-glow:#FF5C1A33;
  --white:      #F7F8FA;
  --steel:      #8A9BB5;
  --steel-light:#B8C5D6;
  --border:     #243247;

  --font-display: 'Syne', sans-serif;
  --font-body:    'Inter', sans-serif;

  --radius-sm: 6px;
  --radius-md: 12px;
  --radius-lg: 20px;

  --shadow-card: 0 4px 32px rgba(0,0,0,0.35);
  --shadow-glow: 0 0 40px var(--orange-glow);
}

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

html { scroll-behavior: smooth; font-size: 16px; }

body {
  font-family: var(--font-body);
  background: var(--navy);
  color: var(--white);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; height: auto; display: block; }
a { color: var(--orange); text-decoration: none; }
a:hover { color: #FF7A45; }

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

/* =============================================
   TYPOGRAPHY
============================================= */
h1, h2, h3, h4, h5 {
  font-family: var(--font-display);
  font-weight: 700;
  line-height: 1.15;
  color: var(--white);
}

h1 { font-size: clamp(2.4rem, 5.5vw, 4.2rem); letter-spacing: -0.02em; }
h2 { font-size: clamp(1.8rem, 3.5vw, 2.8rem); letter-spacing: -0.015em; }
h3 { font-size: clamp(1.2rem, 2vw, 1.5rem); }
h4 { font-size: 1.1rem; }

p { color: var(--steel-light); font-size: 1rem; line-height: 1.7; }

.eyebrow {
  font-family: var(--font-display);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--orange);
  display: block;
  margin-bottom: 12px;
}

/* =============================================
   BUTTONS
============================================= */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  font-family: var(--font-display);
  font-size: 0.9rem;
  font-weight: 600;
  border-radius: var(--radius-sm);
  transition: all 0.2s ease;
  cursor: pointer;
  border: none;
}

.btn-primary {
  background: var(--orange);
  color: #fff;
}
.btn-primary:hover {
  background: #FF7A45;
  color: #fff;
  transform: translateY(-1px);
  box-shadow: var(--shadow-glow);
}

.btn-outline {
  background: transparent;
  color: var(--white);
  border: 1.5px solid var(--border);
}
.btn-outline:hover {
  border-color: var(--orange);
  color: var(--orange);
  transform: translateY(-1px);
}

/* =============================================
   NAVIGATION
============================================= */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 0;
  transition: background 0.3s ease, box-shadow 0.3s ease;
}

.site-header.scrolled {
  background: rgba(11, 22, 40, 0.96);
  backdrop-filter: blur(12px);
  box-shadow: 0 1px 0 var(--border);
}

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

.site-logo {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 800;
  color: var(--white);
  letter-spacing: -0.03em;
}
.site-logo span { color: var(--orange); }
.site-logo:hover { color: var(--white); }

.nav-menu {
  display: flex;
  align-items: center;
  gap: 8px;
  list-style: none;
}

.nav-menu a {
  font-family: var(--font-body);
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--steel-light);
  padding: 8px 14px;
  border-radius: var(--radius-sm);
  transition: color 0.2s;
}
.nav-menu a:hover { color: var(--white); }

.nav-cta { margin-left: 8px; }

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 8px;
  background: none;
  border: none;
}
.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: all 0.3s ease;
}

/* =============================================
   HERO
============================================= */
.hero-section {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding-top: 72px;
  position: relative;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 60% 50% at 70% 50%, rgba(255, 92, 26, 0.08) 0%, transparent 70%),
    radial-gradient(ellipse 40% 40% at 20% 80%, rgba(30, 46, 71, 0.6) 0%, transparent 60%);
  pointer-events: none;
}

.hero-grid-lines {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(36, 50, 71, 0.4) 1px, transparent 1px),
    linear-gradient(90deg, rgba(36, 50, 71, 0.4) 1px, transparent 1px);
  background-size: 60px 60px;
  pointer-events: none;
  mask-image: radial-gradient(ellipse 80% 80% at 50% 50%, black 30%, transparent 100%);
}

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

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 92, 26, 0.12);
  border: 1px solid rgba(255, 92, 26, 0.3);
  border-radius: 100px;
  padding: 6px 14px;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--orange);
  margin-bottom: 24px;
  font-family: var(--font-display);
  letter-spacing: 0.04em;
}
.hero-badge::before {
  content: '';
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--orange);
  animation: pulse-dot 2s infinite;
}

@keyframes pulse-dot {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(1.3); }
}

.hero-headline { margin-bottom: 20px; }
.hero-headline .accent { color: var(--orange); }

.hero-sub {
  font-size: 1.05rem;
  color: var(--steel-light);
  margin-bottom: 36px;
  max-width: 480px;
}

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

/* Marketplace Ticker — signature element */
.ticker-card {
  background: var(--navy-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 28px;
  position: relative;
  overflow: hidden;
}

.ticker-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--orange), transparent);
}

.ticker-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 20px;
}

.ticker-title {
  font-family: var(--font-display);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--steel);
}

.ticker-live {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.7rem;
  font-weight: 600;
  color: #4ADE80;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}
.ticker-live::before {
  content: '';
  width: 6px; height: 6px;
  border-radius: 50%;
  background: #4ADE80;
  animation: pulse-dot 1.5s infinite;
}

.ticker-metrics {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-bottom: 20px;
}

.metric-item {
  background: rgba(255,255,255,0.03);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 14px 16px;
}

.metric-label {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--steel);
  margin-bottom: 6px;
}

.metric-value {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--white);
  line-height: 1;
}

.metric-value.positive { color: #4ADE80; }
.metric-value.highlight { color: var(--orange); }

.metric-delta {
  font-size: 0.72rem;
  font-weight: 600;
  color: #4ADE80;
  margin-top: 4px;
  display: flex;
  align-items: center;
  gap: 3px;
}

.marketplace-tags {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

.mp-tag {
  padding: 5px 12px;
  border-radius: 100px;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  font-family: var(--font-display);
}
.mp-tag.amazon { background: rgba(255, 153, 0, 0.15); color: #FF9900; border: 1px solid rgba(255,153,0,0.3); }
.mp-tag.flipkart { background: rgba(71, 112, 255, 0.15); color: #4770FF; border: 1px solid rgba(71,112,255,0.3); }
.mp-tag.meesho { background: rgba(230, 57, 175, 0.15); color: #E639AF; border: 1px solid rgba(230,57,175,0.3); }
.mp-tag.blinkit { background: rgba(255, 204, 0, 0.15); color: #FFCC00; border: 1px solid rgba(255,204,0,0.3); }
.mp-tag.zepto { background: rgba(147, 51, 234, 0.15); color: #9333EA; border: 1px solid rgba(147,51,234,0.3); }

/* =============================================
   PROOF STRIP
============================================= */
.proof-strip {
  background: var(--navy-mid);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 28px 0;
}

.proof-inner {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
}

.proof-stat {
  text-align: center;
  padding: 8px 24px;
  border-right: 1px solid var(--border);
}
.proof-stat:last-child { border-right: none; }

.proof-number {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 800;
  color: var(--orange);
  line-height: 1;
  margin-bottom: 4px;
}

.proof-label {
  font-size: 0.78rem;
  color: var(--steel);
  font-weight: 500;
  letter-spacing: 0.04em;
}

/* =============================================
   SERVICES
============================================= */
.services-section {
  padding: 100px 0;
}

.section-header {
  max-width: 600px;
  margin-bottom: 56px;
}
.section-header h2 { margin-bottom: 16px; }

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

.service-card {
  background: var(--navy-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 32px;
  transition: border-color 0.2s ease, transform 0.2s ease;
  position: relative;
  overflow: hidden;
}

.service-card::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 0;
  background: linear-gradient(to top, rgba(255,92,26,0.06), transparent);
  transition: height 0.3s ease;
}

.service-card:hover {
  border-color: rgba(255, 92, 26, 0.4);
  transform: translateY(-4px);
}

.service-card:hover::after { height: 100%; }

.service-icon {
  width: 48px;
  height: 48px;
  background: rgba(255, 92, 26, 0.12);
  border: 1px solid rgba(255, 92, 26, 0.25);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  font-size: 1.3rem;
}

.service-card h3 { margin-bottom: 10px; font-size: 1.15rem; }
.service-card p { font-size: 0.9rem; color: var(--steel); }

.service-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-top: 18px;
}

.service-tag {
  padding: 3px 10px;
  background: rgba(255,255,255,0.05);
  border: 1px solid var(--border);
  border-radius: 100px;
  font-size: 0.72rem;
  color: var(--steel-light);
  font-weight: 500;
}

/* =============================================
   RESULTS / CASE STUDIES
============================================= */
.results-section {
  padding: 100px 0;
  background: var(--navy-mid);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

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

.result-card {
  background: var(--navy);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 32px;
  position: relative;
}

.result-card::before {
  content: '';
  position: absolute;
  top: 0; left: 24px; right: 24px;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--orange), transparent);
  opacity: 0.5;
}

.result-brand {
  font-family: var(--font-display);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 20px;
}

.result-metrics {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 20px;
}

.result-metric-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--border);
}
.result-metric-row:last-child { border-bottom: none; padding-bottom: 0; }

.result-metric-name {
  font-size: 0.82rem;
  color: var(--steel);
  font-weight: 500;
}

.result-metric-val {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 700;
  color: #4ADE80;
}

.result-quote {
  font-size: 0.88rem;
  color: var(--steel-light);
  font-style: italic;
  line-height: 1.6;
  border-left: 2px solid var(--orange);
  padding-left: 14px;
}

/* =============================================
   PROCESS
============================================= */
.process-section {
  padding: 100px 0;
}

.process-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  position: relative;
}

.process-steps::before {
  content: '';
  position: absolute;
  top: 28px;
  left: 12.5%;
  right: 12.5%;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--border), var(--border), transparent);
}

.process-step {
  padding: 0 20px;
  text-align: center;
}

.step-dot {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  border: 1px solid var(--border);
  background: var(--navy-card);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 800;
  color: var(--orange);
  position: relative;
  z-index: 1;
}

.process-step h4 { margin-bottom: 8px; }
.process-step p { font-size: 0.85rem; color: var(--steel); }

/* =============================================
   WHY DEISAN
============================================= */
.why-section {
  padding: 100px 0;
  background: var(--navy-mid);
  border-top: 1px solid var(--border);
}

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

.why-content .section-header { margin-bottom: 36px; }

.why-features {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.why-feature {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}

.why-feature-icon {
  width: 36px;
  height: 36px;
  flex-shrink: 0;
  background: rgba(255,92,26,0.1);
  border: 1px solid rgba(255,92,26,0.2);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  margin-top: 2px;
}

.why-feature h4 { margin-bottom: 4px; font-size: 0.95rem; }
.why-feature p { font-size: 0.85rem; color: var(--steel); }

.why-visual {
  background: var(--navy-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px;
}

.mini-dashboard-title {
  font-family: var(--font-display);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--steel);
  margin-bottom: 24px;
}

.mini-bar-chart {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.bar-row {
  display: flex;
  align-items: center;
  gap: 12px;
}

.bar-label {
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--steel-light);
  width: 60px;
  flex-shrink: 0;
  text-align: right;
}

.bar-track {
  flex: 1;
  height: 8px;
  background: rgba(255,255,255,0.05);
  border-radius: 100px;
  overflow: hidden;
}

.bar-fill {
  height: 100%;
  border-radius: 100px;
  background: linear-gradient(90deg, var(--orange), #FF8C5A);
  animation: bar-grow 1.5s ease forwards;
  transform-origin: left;
}

@keyframes bar-grow {
  from { width: 0 !important; }
  to {}
}

.bar-val {
  font-family: var(--font-display);
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--white);
  width: 42px;
}

/* =============================================
   CTA BANNER
============================================= */
.cta-section {
  padding: 100px 0;
}

.cta-box {
  background: var(--navy-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 64px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-box::before {
  content: '';
  position: absolute;
  top: -60px; right: -60px;
  width: 300px; height: 300px;
  border-radius: 50%;
  background: var(--orange-glow);
  filter: blur(80px);
  pointer-events: none;
}

.cta-box h2 { margin-bottom: 16px; }
.cta-box p { margin-bottom: 36px; max-width: 520px; margin-left: auto; margin-right: auto; }

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

/* =============================================
   FOOTER
============================================= */
.site-footer {
  background: var(--navy-mid);
  border-top: 1px solid var(--border);
  padding: 64px 0 32px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 48px;
}

.footer-brand .site-logo { font-size: 1.3rem; display: inline-block; margin-bottom: 14px; }
.footer-brand p { font-size: 0.88rem; color: var(--steel); line-height: 1.65; max-width: 260px; }

.footer-col h5 {
  font-family: var(--font-display);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--steel);
  margin-bottom: 16px;
}

.footer-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-links a {
  font-size: 0.88rem;
  color: var(--steel-light);
  transition: color 0.2s;
}
.footer-links a:hover { color: var(--white); }

.footer-bottom {
  border-top: 1px solid var(--border);
  padding-top: 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.footer-bottom p {
  font-size: 0.82rem;
  color: var(--steel);
}

.footer-social {
  display: flex;
  gap: 10px;
}

.social-link {
  width: 34px;
  height: 34px;
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.85rem;
  color: var(--steel);
  transition: all 0.2s;
}
.social-link:hover {
  border-color: var(--orange);
  color: var(--orange);
  background: rgba(255,92,26,0.08);
}

/* =============================================
   RESPONSIVE
============================================= */
@media (max-width: 960px) {
  .hero-content { grid-template-columns: 1fr; gap: 48px; }
  .ticker-card { max-width: 480px; }
  .services-grid { grid-template-columns: 1fr 1fr; }
  .results-grid { grid-template-columns: 1fr 1fr; }
  .process-steps { grid-template-columns: 1fr 1fr; gap: 40px; }
  .process-steps::before { display: none; }
  .why-grid { grid-template-columns: 1fr; gap: 48px; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .proof-inner { grid-template-columns: 1fr 1fr; }
  .proof-stat { border-bottom: 1px solid var(--border); border-right: none; }
  .proof-stat:nth-child(odd) { border-right: 1px solid var(--border); }
  .proof-stat:last-child, .proof-stat:nth-last-child(2):nth-child(odd) { border-bottom: none; }
}

@media (max-width: 640px) {
  .nav-menu { display: none; }
  .hamburger { display: flex; }
  .nav-menu.open {
    display: flex;
    flex-direction: column;
    position: fixed;
    top: 72px; left: 0; right: 0;
    background: rgba(11, 22, 40, 0.98);
    backdrop-filter: blur(12px);
    padding: 20px;
    border-bottom: 1px solid var(--border);
    gap: 4px;
  }
  .nav-cta { display: none; }
  .services-grid { grid-template-columns: 1fr; }
  .results-grid { grid-template-columns: 1fr; }
  .process-steps { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; gap: 16px; text-align: center; }
  .ticker-metrics { grid-template-columns: 1fr 1fr; }
  .cta-box { padding: 40px 24px; }
  .hero-actions { flex-direction: column; }
  .hero-actions .btn { width: 100%; justify-content: center; }
  .proof-inner { grid-template-columns: 1fr 1fr; }
}

/* =============================================
   WORDPRESS BLOCKS / CONTENT AREA
============================================= */
.entry-content {
  max-width: 760px;
  margin: 0 auto;
  padding: 80px 24px;
}

.entry-content p { margin-bottom: 1.4em; color: var(--steel-light); }
.entry-content h2, .entry-content h3, .entry-content h4 { margin-top: 2em; margin-bottom: 0.6em; }
.entry-content ul, .entry-content ol { padding-left: 1.5em; color: var(--steel-light); margin-bottom: 1.4em; }
.entry-content li { margin-bottom: 0.4em; }
.entry-content blockquote {
  border-left: 3px solid var(--orange);
  padding: 16px 24px;
  background: var(--navy-card);
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  margin: 2em 0;
  font-style: italic;
  color: var(--steel-light);
}

.wp-block-image { margin: 2em 0; border-radius: var(--radius-md); overflow: hidden; }
.wp-block-table { width: 100%; border-collapse: collapse; margin: 2em 0; }
.wp-block-table th, .wp-block-table td {
  padding: 12px 16px;
  border: 1px solid var(--border);
  font-size: 0.9rem;
  text-align: left;
}
.wp-block-table th { background: var(--navy-card); color: var(--white); font-weight: 600; }

/* =============================================
   PAGE HERO (inner pages)
============================================= */
.page-hero {
  padding: 140px 0 80px;
  text-align: center;
  position: relative;
}
.page-hero .eyebrow { justify-content: center; display: flex; margin-bottom: 12px; }
.page-hero h1 { margin-bottom: 16px; }
.page-hero p { font-size: 1.1rem; max-width: 580px; margin: 0 auto; }

/* =============================================
   CONTACT FORM STYLES
============================================= */
.contact-section {
  padding: 100px 0;
}

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

.contact-info h2 { margin-bottom: 16px; }
.contact-info p { margin-bottom: 32px; }

.contact-detail {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  margin-bottom: 20px;
}

.contact-detail-icon {
  width: 36px;
  height: 36px;
  background: rgba(255,92,26,0.1);
  border: 1px solid rgba(255,92,26,0.2);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 1rem;
}

.contact-detail-text span {
  display: block;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--steel);
  margin-bottom: 2px;
}

.contact-detail-text a, .contact-detail-text p {
  font-size: 0.92rem;
  color: var(--steel-light);
  margin: 0;
}

.wpcf7-form, .contact-form {
  background: var(--navy-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 40px;
}

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

.form-group label {
  display: block;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--steel);
  margin-bottom: 8px;
}

.form-group input,
.form-group textarea,
.form-group select,
.wpcf7 input[type="text"],
.wpcf7 input[type="email"],
.wpcf7 textarea {
  width: 100%;
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 12px 16px;
  color: var(--white);
  font-family: var(--font-body);
  font-size: 0.92rem;
  transition: border-color 0.2s;
  outline: none;
}

.form-group input:focus,
.form-group textarea:focus,
.wpcf7 input[type="text"]:focus,
.wpcf7 input[type="email"]:focus,
.wpcf7 textarea:focus {
  border-color: var(--orange);
  background: rgba(255,92,26,0.04);
}

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

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

/* =============================================
   SCROLL ANIMATION UTILITIES
============================================= */
.fade-up {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.fade-up.visible {
  opacity: 1;
  transform: translateY(0);
}

@media (prefers-reduced-motion: reduce) {
  .fade-up { opacity: 1; transform: none; }
  .bar-fill { animation: none; }
  @keyframes bar-grow { from {} to {} }
}
