/* ===================================================================
   High Plains Home Tech - Main Stylesheet
   =================================================================== */

/* ===== CSS VARIABLES ===== */
:root {
  --bg-deep: #0a0a0c;
  --bg-card: #12121a;
  --bg-elevated: #1a1a24;
  --accent: #e07a3a;
  --accent-glow: rgba(224, 122, 58, 0.15);
  --accent-secondary: #c96830;
  --text: #f0ece6;
  --text-muted: #8a867f;
  --border: rgba(255, 255, 255, 0.06);
  --border-accent: rgba(224, 122, 58, 0.3);
  --success: #4ade80;
  --success-glow: rgba(74, 222, 128, 0.15);
  --danger: #f87171;
  --danger-glow: rgba(248, 113, 113, 0.15);
  --warning: #fbbf24;
  --warning-glow: rgba(251, 191, 36, 0.15);
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Outfit', system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  background: var(--bg-deep);
  color: var(--text);
  line-height: 1.7;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* Topographic background pattern */
body::before {
  content: '';
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: 
    radial-gradient(ellipse 120% 80% at 50% 0%, rgba(224, 122, 58, 0.08) 0%, transparent 50%),
    radial-gradient(ellipse 80% 50% at 80% 50%, rgba(224, 122, 58, 0.04) 0%, transparent 50%),
    url("data:image/svg+xml,%3Csvg width='100' height='100' viewBox='0 0 100 100' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M0 50 Q25 30 50 50 T100 50' fill='none' stroke='rgba(255,255,255,0.015)' stroke-width='0.5'/%3E%3Cpath d='M0 30 Q25 10 50 30 T100 30' fill='none' stroke='rgba(255,255,255,0.01)' stroke-width='0.5'/%3E%3Cpath d='M0 70 Q25 50 50 70 T100 70' fill='none' stroke='rgba(255,255,255,0.015)' stroke-width='0.5'/%3E%3C/svg%3E");
  pointer-events: none;
  z-index: -1;
}

a {
  color: var(--accent);
  text-decoration: none;
  transition: color 0.2s ease;
}

a:hover {
  color: #f5945a;
}

/* ===== HEADER & NAVIGATION ===== */
header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(10, 10, 12, 0.8);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
}

.container {
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 2rem;
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  padding: 1rem 0;
}

.logo-wrapper {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.logo-icon {
  width: 44px;
  height: 44px;
  flex-shrink: 0;
}

.logo-text {
  display: flex;
  flex-direction: column;
}

.logo-name {
  font-size: 1.1rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  line-height: 1.2;
}

.logo-tagline {
  font-size: 0.7rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.15em;
  font-weight: 500;
}

.nav-right {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}

.nav-link {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--text-muted);
  transition: color 0.2s ease;
  padding: 0.5rem 0.25rem;
  min-height: 44px;
  display: inline-flex;
  align-items: center;
}

.nav-link:hover,
.nav-link.active {
  color: var(--text);
}

.nav-contact {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.6rem 1.2rem;
  background: var(--accent-glow);
  border: 1px solid var(--border-accent);
  border-radius: 100px;
  font-family: 'JetBrains Mono', monospace;
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--accent);
  transition: all 0.3s ease;
}

.nav-contact:hover {
  background: var(--accent);
  color: var(--bg-deep);
  transform: translateY(-1px);
}

/* ===== BUTTONS ===== */
.btn {
  padding: 0.9rem 1.8rem;
  border-radius: 100px;
  font-size: 0.95rem;
  font-weight: 500;
  font-family: inherit;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
}

.btn-primary {
  background: linear-gradient(135deg, var(--accent) 0%, var(--accent-secondary) 100%);
  color: #fff;
  box-shadow: 0 4px 24px rgba(224, 122, 58, 0.3);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 32px rgba(224, 122, 58, 0.4);
  color: #fff;
}

.btn-secondary {
  background: var(--bg-elevated);
  color: var(--text);
  border: 1px solid var(--border);
}

.btn-secondary:hover {
  background: var(--bg-card);
  border-color: var(--border-accent);
  color: var(--text);
}

/* ===== MAIN CONTENT ===== */
main {
  background: linear-gradient(180deg, var(--bg-deep) 0%, #08080a 100%);
}

section {
  padding: 5rem 2rem;
}

/* ===== SECTION HEADERS ===== */
.section-header {
  text-align: center;
  max-width: 600px;
  margin: 0 auto 3.5rem;
}

.section-label {
  display: inline-block;
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--accent);
  font-weight: 500;
  margin-bottom: 0.75rem;
}

.section-title {
  font-size: clamp(1.8rem, 3vw, 2.4rem);
  font-weight: 600;
  margin-bottom: 1rem;
}

.section-description {
  font-size: 1.05rem;
  color: var(--text-muted);
  line-height: 1.7;
}

/* ===== PAGE HERO (for subpages) ===== */
.page-hero {
  padding: 4rem 2rem 3rem;
  text-align: center;
  border-bottom: 1px solid var(--border);
}

.page-hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.4rem 1rem;
  background: var(--accent-glow);
  border: 1px solid var(--border-accent);
  border-radius: 100px;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-weight: 500;
  color: var(--accent);
  margin-bottom: 1.5rem;
}

.page-hero-badge.warning {
  background: var(--warning-glow);
  border-color: rgba(251, 191, 36, 0.3);
  color: var(--warning);
}

.page-hero h1 {
  font-size: clamp(2rem, 4vw, 2.8rem);
  font-weight: 600;
  line-height: 1.2;
  margin-bottom: 1rem;
}

.page-hero h1 span {
  background: linear-gradient(135deg, var(--accent) 0%, #f5a66a 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.page-hero-subtitle {
  font-size: 1.1rem;
  color: var(--text-muted);
  max-width: 600px;
  margin: 0 auto;
}

/* ===== FOOTER ===== */
footer {
  background: var(--bg-card);
  border-top: 1px solid var(--border);
  padding: 3rem 2rem;
}

.footer-content {
  max-width: 1000px;
  margin: 0 auto;
  text-align: center;
}

.footer-trust {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 2.5rem;
  margin-bottom: 2rem;
  flex-wrap: wrap;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  color: var(--text-muted);
  font-size: 0.85rem;
  transition: color 0.2s ease;
}

.trust-item:hover {
  color: var(--text);
}

.trust-item img {
  height: 24px;
  width: auto;
  opacity: 0.8;
}

.footer-areas {
  margin-bottom: 1.5rem;
  padding: 1rem 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.footer-areas-label {
  font-size: 0.65rem;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--text-muted);
  margin-bottom: 0.5rem;
  font-weight: 500;
}

.footer-areas-list {
  font-size: 0.9rem;
  color: var(--text-muted);
}

.footer-areas-list span {
  color: var(--border-accent);
  margin: 0 0.35rem;
}

.footer-copyright {
  font-size: 0.8rem;
  color: var(--text-muted);
}

/* ===== WHATSAPP FLOATING BUTTON ===== */
.whatsapp-float {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 1000;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.85rem 1.25rem;
  background: #25D366;
  color: #fff;
  border-radius: 100px;
  font-weight: 600;
  font-size: 0.95rem;
  box-shadow: 
    0 4px 20px rgba(37, 211, 102, 0.4),
    0 8px 32px rgba(0, 0, 0, 0.3);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  animation: floatIn 0.6s ease-out 0.5s both;
}

.whatsapp-float:hover {
  transform: translateY(-3px) scale(1.02);
  box-shadow: 
    0 6px 28px rgba(37, 211, 102, 0.5),
    0 12px 40px rgba(0, 0, 0, 0.35);
  color: #fff;
}

.whatsapp-float svg {
  width: 24px;
  height: 24px;
}

.whatsapp-float .chat-text {
  display: block;
}

.whatsapp-float::before {
  content: '';
  position: absolute;
  inset: -4px;
  border-radius: 100px;
  background: rgba(37, 211, 102, 0.3);
  z-index: -1;
  animation: pulse-ring 2s ease-out infinite;
}

/* ===== ANIMATIONS ===== */
@keyframes pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.4; }
}

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

@keyframes floatIn {
  from {
    opacity: 0;
    transform: translateY(20px) scale(0.9);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

@keyframes pulse-ring {
  0% {
    transform: scale(1);
    opacity: 0.4;
  }
  100% {
    transform: scale(1.15);
    opacity: 0;
  }
}

/* ===== SCROLL REVEAL ===== */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

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

/* ===================================================================
   HOME PAGE STYLES
   =================================================================== */

/* Hero Section */
.hero {
  padding: 6rem 2rem 5rem;
  position: relative;
}

.hero-inner {
  max-width: 1140px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 4rem;
  align-items: center;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.4rem 1rem;
  background: var(--accent-glow);
  border: 1px solid var(--border-accent);
  border-radius: 100px;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-weight: 500;
  color: var(--accent);
  margin-bottom: 1.5rem;
  animation: fadeInUp 0.6s ease-out;
}

.hero-badge::before {
  content: '';
  width: 6px;
  height: 6px;
  background: var(--accent);
  border-radius: 50%;
  animation: pulse 2s infinite;
}

.hero h1 {
  font-size: clamp(2.2rem, 4vw, 3.2rem);
  font-weight: 600;
  line-height: 1.15;
  margin-bottom: 1.5rem;
  animation: fadeInUp 0.6s ease-out 0.1s both;
}

.hero h1 span {
  background: linear-gradient(135deg, var(--accent) 0%, #f5a66a 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-description {
  font-size: 1.1rem;
  color: var(--text-muted);
  margin-bottom: 2rem;
  max-width: 540px;
  animation: fadeInUp 0.6s ease-out 0.2s both;
}

.hero-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-bottom: 2rem;
  animation: fadeInUp 0.6s ease-out 0.3s both;
}

.hero-meta {
  font-size: 0.85rem;
  color: var(--text-muted);
  animation: fadeInUp 0.6s ease-out 0.4s both;
}

.hero-meta svg {
  width: 16px;
  height: 16px;
  vertical-align: -3px;
  margin-right: 0.35rem;
  opacity: 0.6;
}

/* Hero Card */
.hero-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 1.5rem;
  padding: 2rem;
  position: relative;
  overflow: hidden;
  animation: fadeInUp 0.6s ease-out 0.2s both;
}

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

.hero-card-header {
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--text-muted);
  margin-bottom: 1.5rem;
  font-weight: 500;
}

.hero-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.stat {
  background: var(--bg-elevated);
  border-radius: 1rem;
  padding: 1rem;
  border: 1px solid var(--border);
}

.stat-label {
  font-size: 0.65rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--text-muted);
  margin-bottom: 0.5rem;
  font-weight: 500;
}

.stat-value {
  font-size: 0.9rem;
  font-weight: 500;
  line-height: 1.4;
}

.hero-chip {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.75rem 1rem;
  background: rgba(224, 122, 58, 0.08);
  border: 1px solid rgba(224, 122, 58, 0.2);
  border-radius: 0.75rem;
  font-size: 0.8rem;
  color: var(--text);
  width: 100%;
}

.hero-card-link {
  display: block;
  text-align: center;
  margin-top: 1.25rem;
  color: var(--accent);
  text-decoration: none;
  font-size: 0.85rem;
  font-weight: 500;
  transition: color 0.2s ease;
}

.hero-card-link:hover {
  color: var(--text);
  text-decoration: underline;
}

/* Home Services Grid */
.services-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
  max-width: 1000px;
  margin: 0 auto;
}

.service-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 1.25rem;
  padding: 2rem;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
  opacity: 0;
  transform: translateY(30px);
}

.service-card.visible {
  opacity: 1;
  transform: translateY(0);
}

.service-card:nth-child(1) { transition-delay: 0s; }
.service-card:nth-child(2) { transition-delay: 0.1s; }
.service-card:nth-child(3) { transition-delay: 0.2s; }
.service-card:nth-child(4) { transition-delay: 0.3s; }

.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at top right, var(--accent-glow), transparent 60%);
  opacity: 0;
  transition: opacity 0.4s ease;
}

.service-card:hover {
  transform: translateY(-4px);
  border-color: var(--border-accent);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
}

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

.service-icon {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--accent-glow);
  border: 1px solid var(--border-accent);
  border-radius: 12px;
  font-size: 1.4rem;
  margin-bottom: 1.25rem;
}

.service-label {
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--accent);
  font-weight: 500;
  margin-bottom: 0.5rem;
}

.service-card h3 {
  font-size: 1.15rem;
  font-weight: 600;
  margin-bottom: 0.75rem;
}

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

/* About Section */
.about-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 3rem;
  max-width: 1000px;
  margin: 0 auto;
  align-items: start;
}

.about-content {
  padding-right: 1rem;
}

.about-content p {
  font-size: 1.05rem;
  color: var(--text-muted);
  margin-bottom: 1.5rem;
  line-height: 1.8;
}

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

/* Home Contact Card (in about section) */
.home-contact-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 1.25rem;
  padding: 2rem;
  position: sticky;
  top: 100px;
}

.home-contact-card h3 {
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 1.5rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.home-contact-card h3::before {
  content: '';
  width: 8px;
  height: 8px;
  background: var(--accent);
  border-radius: 50%;
}

.contact-item {
  margin-bottom: 1.25rem;
}

.contact-item:last-of-type {
  margin-bottom: 0;
}

.contact-label {
  font-size: 0.65rem;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--text-muted);
  margin-bottom: 0.35rem;
  font-weight: 500;
}

.contact-value {
  font-size: 1rem;
}

.contact-value a {
  font-family: 'JetBrains Mono', monospace;
  font-size: 0.9rem;
}

/* ===================================================================
   SERVICES PAGE STYLES
   =================================================================== */

.services-container {
  max-width: 1000px;
  margin: 0 auto;
}

/* Service Block */
.service-block {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
  margin-bottom: 5rem;
  padding-bottom: 5rem;
  border-bottom: 1px solid var(--border);
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.service-block.visible {
  opacity: 1;
  transform: translateY(0);
}

.service-block:last-child {
  margin-bottom: 0;
  padding-bottom: 0;
  border-bottom: none;
}

.service-block:nth-child(even) {
  direction: rtl;
}

.service-block:nth-child(even) > * {
  direction: ltr;
}

.service-content {
  padding: 1rem 0;
}

.service-number {
  font-family: 'JetBrains Mono', monospace;
  font-size: 0.75rem;
  color: var(--accent);
  letter-spacing: 0.1em;
  margin-bottom: 0.75rem;
  opacity: 0.8;
}

.service-content h2 {
  font-size: 1.75rem;
  font-weight: 600;
  margin-bottom: 1rem;
  line-height: 1.3;
}

.service-content .lead {
  font-size: 1.1rem;
  color: var(--text);
  margin-bottom: 1.25rem;
  line-height: 1.7;
}

.service-content p {
  font-size: 1rem;
  color: var(--text-muted);
  margin-bottom: 1.5rem;
  line-height: 1.7;
}

.service-features {
  list-style: none;
  display: grid;
  gap: 0.5rem;
}

.service-features li {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.95rem;
  color: var(--text-muted);
}

.service-features li::before {
  content: '→';
  color: var(--accent);
  font-weight: 500;
}

/* Service Visual */
.service-visual {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 1.5rem;
  padding: 2.5rem;
  position: relative;
  overflow: hidden;
  min-height: 320px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.service-visual::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--accent), transparent);
}

.service-icon-large {
  font-size: 5rem;
  opacity: 0.9;
}

/* Ideal For Tags */
.ideal-for {
  margin-top: 1.5rem;
  padding-top: 1.25rem;
  border-top: 1px solid var(--border);
}

.ideal-for-label {
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--text-muted);
  margin-bottom: 0.75rem;
  font-weight: 500;
}

.ideal-for-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.ideal-for-tags span {
  padding: 0.35rem 0.75rem;
  background: var(--bg-elevated);
  border: 1px solid var(--border);
  border-radius: 100px;
  font-size: 0.8rem;
  color: var(--text-muted);
}

/* CTA Section */
.cta-section {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 1.5rem;
  padding: 3rem;
  text-align: center;
  margin-top: 4rem;
  position: relative;
  overflow: hidden;
}

.cta-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--accent), var(--accent-secondary), transparent);
}

.cta-section h2 {
  font-size: 1.75rem;
  font-weight: 600;
  margin-bottom: 1rem;
}

.cta-section p {
  font-size: 1.1rem;
  color: var(--text-muted);
  margin-bottom: 2rem;
  max-width: 500px;
  margin-left: auto;
  margin-right: auto;
}

.cta-buttons {
  display: flex;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
}

/* ===================================================================
   CONTACT PAGE STYLES
   =================================================================== */

.contact-container {
  max-width: 1000px;
  margin: 0 auto;
}

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

/* Contact Methods */
.contact-methods {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.contact-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 1.25rem;
  padding: 1.75rem;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.contact-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--accent), transparent);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.contact-card:hover {
  border-color: var(--border-accent);
  transform: translateY(-2px);
}

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

.contact-card-header {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1rem;
}

.contact-card-icon {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--accent-glow);
  border: 1px solid var(--border-accent);
  border-radius: 12px;
  font-size: 1.25rem;
}

.contact-card-title {
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--text-muted);
  font-weight: 500;
}

.contact-card-value {
  font-size: 1.25rem;
  font-weight: 600;
}

.contact-card-value a {
  color: var(--text);
  transition: color 0.2s ease;
}

.contact-card-value a:hover {
  color: var(--accent);
}

.contact-card-note {
  font-size: 0.9rem;
  color: var(--text-muted);
  margin-top: 0.5rem;
}

/* Phone Card Special */
.contact-card.primary {
  background: linear-gradient(135deg, var(--bg-card) 0%, rgba(224, 122, 58, 0.05) 100%);
  border-color: var(--border-accent);
}

.contact-card.primary::before {
  opacity: 1;
}

.contact-card.primary .contact-card-value {
  font-family: 'JetBrains Mono', monospace;
  font-size: 1.5rem;
}

/* WhatsApp Card */
.contact-card.whatsapp {
  background: linear-gradient(135deg, var(--bg-card) 0%, rgba(37, 211, 102, 0.05) 100%);
}

.contact-card.whatsapp .contact-card-icon {
  background: rgba(37, 211, 102, 0.15);
  border-color: rgba(37, 211, 102, 0.3);
}

.whatsapp-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem 1.25rem;
  background: #25D366;
  color: #fff;
  border-radius: 100px;
  font-weight: 500;
  font-size: 0.95rem;
  margin-top: 0.75rem;
  transition: all 0.3s ease;
}

.whatsapp-btn:hover {
  background: #22c55e;
  color: #fff;
  transform: translateY(-1px);
}

.whatsapp-btn svg {
  width: 20px;
  height: 20px;
}

/* Info Section */
.info-section {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 1.25rem;
  padding: 2rem;
}

.info-section h2 {
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 1.5rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.info-section h2::before {
  content: '';
  width: 8px;
  height: 8px;
  background: var(--accent);
  border-radius: 50%;
}

.info-grid {
  display: grid;
  gap: 1.5rem;
}

.info-item {
  display: flex;
  gap: 1rem;
}

.info-icon {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--bg-elevated);
  border: 1px solid var(--border);
  border-radius: 10px;
  flex-shrink: 0;
}

.info-icon svg {
  width: 20px;
  height: 20px;
  color: var(--accent);
}

.info-content h3 {
  font-size: 0.95rem;
  font-weight: 600;
  margin-bottom: 0.25rem;
}

.info-content p {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.6;
}

/* Service Area Card */
.service-area-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 1.25rem;
  padding: 2rem;
  margin-top: 1.5rem;
}

.service-area-card h2 {
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.service-area-card h2::before {
  content: '';
  width: 8px;
  height: 8px;
  background: var(--accent);
  border-radius: 50%;
}

.area-list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 1.25rem;
}

.area-tag {
  padding: 0.5rem 1rem;
  background: var(--bg-elevated);
  border: 1px solid var(--border);
  border-radius: 100px;
  font-size: 0.9rem;
  color: var(--text);
}

.area-note {
  font-size: 0.9rem;
  color: var(--text-muted);
  padding-top: 1rem;
  border-top: 1px solid var(--border);
}

/* FAQ Teaser */
.faq-teaser {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 1.25rem;
  padding: 2rem;
  margin-top: 3rem;
  text-align: center;
}

.faq-teaser h2 {
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 0.75rem;
}

.faq-teaser p {
  font-size: 1rem;
  color: var(--text-muted);
  margin-bottom: 1.5rem;
}

.faq-examples {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.75rem;
  margin-bottom: 1.5rem;
}

.faq-examples span {
  padding: 0.5rem 1rem;
  background: var(--bg-elevated);
  border: 1px solid var(--border);
  border-radius: 100px;
  font-size: 0.85rem;
  color: var(--text-muted);
}

.faq-cta {
  font-size: 0.95rem;
  color: var(--accent);
}

/* Contact Page Animations */
.contact-card,
.info-section,
.service-area-card,
.faq-teaser {
  opacity: 0;
  transform: translateY(20px);
  animation: fadeUp 0.5s ease-out forwards;
}

.contact-card:nth-child(1) { animation-delay: 0.1s; }
.contact-card:nth-child(2) { animation-delay: 0.2s; }
.contact-card:nth-child(3) { animation-delay: 0.3s; }
.info-section { animation-delay: 0.2s; }
.service-area-card { animation-delay: 0.3s; }
.faq-teaser { animation-delay: 0.4s; }

@keyframes fadeUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ===================================================================
   LEGAL PAGE STYLES
   =================================================================== */

.content-wrapper {
  max-width: 900px;
  margin: 0 auto;
}

/* Company Notice Box */
.notice-box {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 1.25rem;
  padding: 2rem;
  margin-bottom: 3rem;
}

.notice-box p {
  font-size: 1.05rem;
  color: var(--text-muted);
  line-height: 1.8;
  margin-bottom: 1rem;
}

.notice-box p:last-child {
  margin-bottom: 0;
}

.notice-box strong {
  color: var(--text);
}

/* Section Cards */
.section-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 1.25rem;
  padding: 2rem;
  margin-bottom: 2rem;
  position: relative;
  overflow: hidden;
}

.section-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
}

.section-card.allowed::before {
  background: linear-gradient(90deg, var(--success), transparent);
}

.section-card.prohibited::before {
  background: linear-gradient(90deg, var(--danger), transparent);
}

.section-card.warning::before {
  background: linear-gradient(90deg, var(--warning), transparent);
}

.section-card.info::before {
  background: linear-gradient(90deg, var(--accent), transparent);
}

.section-card .section-header {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1.5rem;
  text-align: left;
  max-width: none;
}

.section-icon {
  font-size: 1.5rem;
}

.section-card h2 {
  font-size: 1.3rem;
  font-weight: 600;
}

.section-intro {
  font-size: 1rem;
  color: var(--text-muted);
  margin-bottom: 1.5rem;
  line-height: 1.7;
}

/* Service Lists (Legal page) */
.service-list {
  list-style: none;
  display: grid;
  gap: 0.75rem;
}

.service-list.two-col {
  grid-template-columns: repeat(2, 1fr);
}

.service-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  padding: 0.75rem 1rem;
  background: var(--bg-elevated);
  border: 1px solid var(--border);
  border-radius: 0.75rem;
  font-size: 0.95rem;
  line-height: 1.5;
}

.service-list li::before {
  content: '→';
  color: var(--text-muted);
  flex-shrink: 0;
}

.service-list.allowed li::before {
  content: '✓';
  color: var(--success);
}

.service-list.prohibited li::before {
  content: '✗';
  color: var(--danger);
}

/* Subsections within cards */
.subsection {
  margin-top: 2rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--border);
}

.subsection h3 {
  font-size: 1rem;
  font-weight: 600;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 1rem;
}

/* Commitment List */
.commitment-list {
  list-style: none;
  display: grid;
  gap: 0.75rem;
}

.commitment-list li {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.75rem 1rem;
  background: var(--bg-elevated);
  border: 1px solid var(--border);
  border-radius: 0.75rem;
  font-size: 0.95rem;
}

.commitment-list li::before {
  content: '★';
  color: var(--accent);
}

/* Legal CTA Section */
.legal-cta .cta-contact {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.75rem;
}

.cta-name {
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--accent);
}

.cta-phone {
  font-family: 'JetBrains Mono', monospace;
  font-size: 1.5rem;
  font-weight: 500;
}

.cta-website {
  font-size: 0.95rem;
  color: var(--text-muted);
}

/* ===================================================================
   RESPONSIVE STYLES
   =================================================================== */

@media (max-width: 900px) {
  .hero-inner {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .hero-card {
    max-width: 480px;
  }

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

  .home-contact-card {
    position: static;
  }

  .service-block {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .service-block:nth-child(even) {
    direction: ltr;
  }

  .service-visual {
    min-height: 240px;
  }

  .contact-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
}

@media (max-width: 768px) {
  .nav {
    flex-direction: column;
    gap: 1rem;
    text-align: center;
  }

  .nav-right {
    flex-direction: column;
    gap: 1rem;
  }

  .logo-wrapper {
    flex-direction: column;
    gap: 0.5rem;
  }

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

  .service-list.two-col {
    grid-template-columns: 1fr;
  }

  .page-hero {
    padding: 3rem 1.5rem 2rem;
  }

  main {
    padding: 3rem 1.5rem 4rem;
  }

  .service-block {
    margin-bottom: 3rem;
    padding-bottom: 3rem;
  }

  .service-content h2 {
    font-size: 1.5rem;
  }

  .cta-section {
    padding: 2rem 1.5rem;
  }

  .cta-buttons {
    flex-direction: column;
  }

  .contact-card {
    padding: 1.5rem;
  }

  .info-section,
  .service-area-card,
  .faq-teaser {
    padding: 1.5rem;
  }

  .footer-trust {
    flex-direction: column;
    gap: 1.5rem;
  }
}

@media (max-width: 700px) {
  .hero {
    padding: 4rem 1.5rem 3rem;
  }

  section {
    padding: 3.5rem 1.5rem;
  }

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

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

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

@media (max-width: 600px) {
  .whatsapp-float {
    bottom: 16px;
    right: 16px;
    padding: 0.85rem;
  }

  .whatsapp-float .chat-text {
    display: none;
  }
}

@media (max-width: 480px) {
  .hero-stats {
    grid-template-columns: 1fr;
  }

  .contact-card.primary .contact-card-value {
    font-size: 1.25rem;
  }

  .faq-examples {
    flex-direction: column;
  }
}

/* ===== BLOG STYLES ===== */

/* Blog Listing Page */
.blog-main {
  padding: 3rem 0 5rem;
}

.blog-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 1.25rem;
  padding: 2rem;
  margin-bottom: 1.5rem;
  transition: all 0.3s ease;
}

.blog-card:hover {
  border-color: var(--border-accent);
  transform: translateY(-2px);
}

.blog-card-meta {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 0.75rem;
}

.blog-date {
  font-size: 0.8rem;
  color: var(--text-muted);
}

.blog-category {
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--accent);
  background: var(--accent-glow);
  padding: 0.25rem 0.75rem;
  border-radius: 100px;
  font-weight: 500;
}

.blog-card-title {
  font-size: 1.4rem;
  font-weight: 600;
  margin-bottom: 0.75rem;
  line-height: 1.3;
}

.blog-card-title a {
  color: var(--text);
  text-decoration: none;
  transition: color 0.2s ease;
}

.blog-card-title a:hover {
  color: var(--accent);
}

.blog-card-excerpt {
  color: var(--text-muted);
  font-size: 0.95rem;
  line-height: 1.6;
  margin-bottom: 1rem;
}

.blog-read-more {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--accent);
  font-size: 0.9rem;
  font-weight: 500;
  text-decoration: none;
  transition: gap 0.2s ease;
}

.blog-read-more:hover {
  gap: 0.75rem;
}

.blog-empty {
  text-align: center;
  padding: 4rem 2rem;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 1.25rem;
}

.blog-empty-icon {
  font-size: 3rem;
  margin-bottom: 1rem;
}

.blog-empty h2 {
  font-size: 1.5rem;
  margin-bottom: 0.5rem;
}

.blog-empty p {
  color: var(--text-muted);
}

/* Blog Post Page */
.blog-post {
  padding: 2rem 0 4rem;
}

.breadcrumb {
  margin-bottom: 2rem;
}

.breadcrumb a {
  color: var(--text-muted);
  text-decoration: none;
  font-size: 0.9rem;
  transition: color 0.2s ease;
}

.breadcrumb a:hover {
  color: var(--accent);
}

.post-header {
  margin-bottom: 3rem;
  padding-bottom: 2rem;
  border-bottom: 1px solid var(--border);
}

.post-meta {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1rem;
}

.post-header h1 {
  font-size: 2.25rem;
  font-weight: 600;
  line-height: 1.2;
  margin-bottom: 1rem;
}

.post-excerpt {
  font-size: 1.15rem;
  color: var(--text-muted);
  line-height: 1.6;
}

.post-content {
  max-width: 720px;
}

.post-content p {
  margin-bottom: 1.5rem;
  line-height: 1.8;
}

.post-content h2 {
  font-size: 1.5rem;
  font-weight: 600;
  margin-top: 2.5rem;
  margin-bottom: 1rem;
  color: var(--text);
}

.post-content h3 {
  font-size: 1.25rem;
  font-weight: 600;
  margin-top: 2rem;
  margin-bottom: 0.75rem;
}

.post-content ul,
.post-content ol {
  margin-bottom: 1.5rem;
  padding-left: 1.5rem;
}

.post-content li {
  margin-bottom: 0.5rem;
  line-height: 1.7;
}

.post-content strong {
  color: var(--text);
  font-weight: 600;
}

.post-content a {
  color: var(--accent);
  text-decoration: underline;
  text-underline-offset: 2px;
}

.post-content a:hover {
  color: var(--text);
}

.post-content blockquote {
  border-left: 3px solid var(--accent);
  padding-left: 1.5rem;
  margin: 2rem 0;
  font-style: italic;
  color: var(--text-muted);
}

.post-content code {
  font-family: 'JetBrains Mono', monospace;
  background: var(--bg-elevated);
  padding: 0.15rem 0.4rem;
  border-radius: 0.25rem;
  font-size: 0.9em;
}

.post-content pre {
  background: var(--bg-elevated);
  border: 1px solid var(--border);
  border-radius: 0.75rem;
  padding: 1.5rem;
  overflow-x: auto;
  margin-bottom: 1.5rem;
}

.post-content pre code {
  background: none;
  padding: 0;
}

.post-content img {
  max-width: 100%;
  height: auto;
  border-radius: 0.75rem;
  margin: 2rem 0;
}

.post-cta {
  background: var(--bg-card);
  border: 1px solid var(--border-accent);
  border-radius: 1.25rem;
  padding: 2rem;
  margin-top: 3rem;
  text-align: center;
}

.post-cta h3 {
  font-size: 1.25rem;
  margin-bottom: 0.5rem;
}

.post-cta p {
  color: var(--text-muted);
  margin-bottom: 1.5rem;
}

.post-nav {
  margin-top: 3rem;
  padding-top: 2rem;
  border-top: 1px solid var(--border);
}

.post-nav-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--text-muted);
  text-decoration: none;
  font-size: 0.95rem;
  transition: color 0.2s ease;
}

.post-nav-link:hover {
  color: var(--accent);
}

/* Page Hero (for blog listing) */
.page-hero {
  padding: 4rem 0 3rem;
  text-align: center;
}

.page-hero h1 {
  font-size: 2.5rem;
  font-weight: 600;
  margin-bottom: 1rem;
}

.page-hero-description {
  font-size: 1.1rem;
  color: var(--text-muted);
  max-width: 600px;
  margin: 0 auto;
}

/* Blog responsive */
@media (max-width: 768px) {
  .post-header h1 {
    font-size: 1.75rem;
  }
  
  .page-hero h1 {
    font-size: 2rem;
  }
  
  .blog-card-title {
    font-size: 1.2rem;
  }
}

