/* Editorial/Brutalist IT Consulting - sokola.it */
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@700;900&family=IBM+Plex+Mono:wght@400;600&family=Space+Grotesk:wght@500;700&display=swap');

:root {
  /* Bold Editorial Palette */
  --burgundy: #8B1538;
  --burgundy-dark: #5A0E24;
  --burnt-orange: #CC5500;
  --burnt-orange-dim: #A64400;
  --cream: #FFF8E7;
  --charcoal: #1A1A1A;
  --charcoal-light: #2D2D2D;
  --warm-grey: #4A4A4A;

  /* Theme variables */
  --primary: var(--burnt-orange);
  --bg: var(--charcoal);
  --bg-card: var(--charcoal-light);
  --text-main: var(--cream);
  --text-muted: #B8B8B8;
  --border: var(--burgundy);
  --radius: 0px;
}

body.light {
  --primary: var(--burgundy);
  --burnt-orange: #E76F51;
  --burnt-orange-dim: #CC5500;
  --bg: var(--cream);
  --bg-card: #FFFFFF;
  --text-main: var(--charcoal);
  --text-muted: var(--warm-grey);
  --border: var(--burgundy);
}

/* Base Reset */
* {
  box-sizing: border-box;
}

html, body {
  height: 100%;
  margin: 0;
  padding: 0;
}

body {
  font-family: 'IBM Plex Mono', 'Courier New', monospace;
  background: var(--bg);
  color: var(--text-main);
  min-height: 100vh;
  font-size: 16px;
  line-height: 1.7;
  transition: background 0.4s cubic-bezier(0.4, 0, 0.2, 1),
              color 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow-x: hidden;
}

/* Animated grain overlay */
body::before {
  content: '';
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image:
    repeating-linear-gradient(90deg, transparent, transparent 2px, rgba(255,255,255,0.03) 2px, rgba(255,255,255,0.03) 4px),
    repeating-linear-gradient(0deg, transparent, transparent 2px, rgba(255,255,255,0.03) 2px, rgba(255,255,255,0.03) 4px);
  pointer-events: none;
  opacity: 0.4;
  z-index: 9999;
  animation: grain 8s steps(10) infinite;
}

body.light::before {
  background-image:
    repeating-linear-gradient(90deg, transparent, transparent 2px, rgba(0,0,0,0.02) 2px, rgba(0,0,0,0.02) 4px),
    repeating-linear-gradient(0deg, transparent, transparent 2px, rgba(0,0,0,0.02) 2px, rgba(0,0,0,0.02) 4px);
}

@keyframes grain {
  0%, 100% { transform: translate(0, 0); }
  10% { transform: translate(-5%, -5%); }
  20% { transform: translate(-10%, 5%); }
  30% { transform: translate(5%, -10%); }
  40% { transform: translate(-5%, 15%); }
  50% { transform: translate(-10%, 5%); }
  60% { transform: translate(15%, 0); }
  70% { transform: translate(0, 10%); }
  80% { transform: translate(-15%, 0); }
  90% { transform: translate(10%, 5%); }
}

a {
  color: var(--primary);
  text-decoration: none;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
}

a:hover {
  color: var(--burnt-orange);
  transform: translateX(3px);
}

a::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--primary);
  transition: width 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

a:hover::after {
  width: 100%;
}

.container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 3rem;
}

/* Brutalist Navigation */
nav {
  background: var(--charcoal);
  border-bottom: 4px solid var(--burgundy);
  padding: 0;
  position: sticky;
  top: 0;
  z-index: 1000;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 8px 32px rgba(139, 21, 56, 0.3);
}

body.light nav {
  background: var(--cream);
  border-bottom: 4px solid var(--burgundy);
  box-shadow: 0 8px 32px rgba(139, 21, 56, 0.15);
}

.nav-inner {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 2rem;
  max-width: 1400px;
  margin: 0 auto;
  padding: 1.2rem 3rem;
  animation: slideDown 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

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

.nav-logo {
  flex-shrink: 0;
  display: flex;
  align-items: center;
}

.nav-logo img {
  height: 50px;
  width: auto;
  max-width: 180px;
  display: block;
  transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  filter: drop-shadow(0 2px 8px rgba(204, 85, 0, 0.3));
}

.nav-logo img:hover {
  transform: scale(1.05) rotate(-2deg);
}

.nav-links {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0;
}

.nav-links a {
  color: var(--text-main);
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 700;
  font-size: 0.95rem;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  padding: 0.8rem 1.5rem;
  border-left: 2px solid var(--border);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
}

.nav-links a:first-child {
  border-left: none;
}

.nav-links a::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 0;
  height: 100%;
  background: var(--burgundy);
  transition: width 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  z-index: -1;
}

.nav-links a:hover::before {
  width: 100%;
}

.nav-links a:hover {
  color: var(--burnt-orange);
  transform: translateY(-2px);
}

.nav-links a::after {
  display: none;
}

.switchers {
  display: flex;
  align-items: center;
  gap: 0.8rem;
}

.switch-btn {
  background: transparent;
  border: 3px solid var(--burgundy);
  color: var(--text-main);
  border-radius: 0;
  padding: 0.6rem 1.2rem;
  font-size: 1.1rem;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-family: 'Space Grotesk', sans-serif;
  text-transform: uppercase;
  letter-spacing: 1px;
  position: relative;
  overflow: hidden;
}

.switch-btn::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  background: var(--burgundy);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  transform: translate(-50%, -50%);
  z-index: -1;
}

.switch-btn:hover::before {
  width: 300%;
  height: 300%;
}

.switch-btn:hover {
  color: var(--burnt-orange);
  border-color: var(--burnt-orange);
  transform: scale(1.05);
}

/* HERO - Minimalist Bold Layout */
.hero {
  background: var(--bg);
  color: var(--text-main);
  padding: 0;
  text-align: center;
  position: relative;
  min-height: 90vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  animation: fadeIn 1.2s cubic-bezier(0.4, 0, 0.2, 1);
}

@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

body.light .hero {
  background: var(--bg);
}

/* Subtle gradient mesh background */
.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background:
    radial-gradient(circle at 20% 30%, rgba(139, 21, 56, 0.08) 0%, transparent 50%),
    radial-gradient(circle at 80% 70%, rgba(204, 85, 0, 0.06) 0%, transparent 50%);
  pointer-events: none;
  opacity: 1;
  z-index: 1;
}

/* Bold decorative stripe - bottom barber pole */
.hero::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 8px;
  background: repeating-linear-gradient(
    90deg,
    var(--burgundy) 0px,
    var(--burgundy) 20px,
    var(--burnt-orange) 20px,
    var(--burnt-orange) 40px
  );
  animation: barberPole 2s linear infinite;
  z-index: 3;
}

@keyframes barberPole {
  0% { background-position: 0 0; }
  100% { background-position: 40px 0; }
}

.hero .container {
  position: relative;
  z-index: 2;
  padding: 10rem 3rem;
  max-width: 1100px;
  margin: 0 auto;
}

.hero h1 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(4rem, 12vw, 8rem);
  font-weight: 900;
  margin: 0 0 1rem 0;
  letter-spacing: -4px;
  color: var(--text-main);
  line-height: 0.95;
  text-transform: lowercase;
  position: relative;
  animation: titleReveal 1s cubic-bezier(0.4, 0, 0.2, 1) 0.2s both;
}

@keyframes titleReveal {
  from {
    transform: translateY(60px);
    opacity: 0;
    letter-spacing: 10px;
  }
  to {
    transform: translateY(0);
    opacity: 1;
    letter-spacing: -4px;
  }
}

/* Bold decorative line under title */
.hero h1::after {
  content: '';
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  bottom: -2rem;
  width: 0;
  height: 8px;
  background: linear-gradient(90deg, var(--burgundy) 0%, var(--burnt-orange) 50%, var(--burgundy) 100%);
  animation: lineExpand 1.2s cubic-bezier(0.4, 0, 0.2, 1) 0.8s both;
  box-shadow: 0 4px 16px rgba(204, 85, 0, 0.4);
}

@keyframes lineExpand {
  from { width: 0; }
  to { width: 320px; }
}

.hero p {
  font-size: clamp(1.1rem, 2vw, 1.4rem);
  color: var(--text-muted);
  margin: 5rem auto 0;
  font-weight: 400;
  max-width: 600px;
  line-height: 1.8;
  animation: subtitleReveal 1s cubic-bezier(0.4, 0, 0.2, 1) 0.5s both;
  letter-spacing: 0.5px;
}

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

/* CTA Buttons Container */
.hero .cta-container {
  margin-top: 4rem;
  display: flex;
  gap: 1.5rem;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  animation: ctaReveal 1s cubic-bezier(0.4, 0, 0.2, 1) 0.7s both;
}

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

.hero .cta-btn {
  background: var(--burgundy);
  color: var(--cream);
  border: 4px solid var(--burnt-orange);
  border-radius: 0;
  font-size: 1.15rem;
  font-weight: 700;
  padding: 1.5rem 3.5rem;
  cursor: pointer;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 12px 12px 0 var(--burnt-orange);
  font-family: 'Space Grotesk', sans-serif;
  text-transform: uppercase;
  letter-spacing: 2px;
  display: inline-block;
  position: relative;
  overflow: hidden;
  text-decoration: none;
}

.hero .cta-btn::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
  transition: left 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.hero .cta-btn:hover::before {
  left: 100%;
}

.hero .cta-btn:hover {
  transform: translate(6px, 6px);
  box-shadow: 6px 6px 0 var(--burnt-orange);
  background: var(--burgundy-dark);
}

.hero .cta-btn::after {
  display: none;
}

/* Secondary CTA Button */
.hero .cta-btn-secondary {
  background: transparent;
  color: var(--text-main);
  border: 4px solid var(--burgundy);
  border-radius: 0;
  font-size: 1.15rem;
  font-weight: 700;
  padding: 1.5rem 3.5rem;
  cursor: pointer;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  font-family: 'Space Grotesk', sans-serif;
  text-transform: uppercase;
  letter-spacing: 2px;
  display: inline-block;
  position: relative;
  overflow: hidden;
  text-decoration: none;
}

.hero .cta-btn-secondary::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  background: var(--burgundy);
  transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  transform: translate(-50%, -50%);
  z-index: -1;
  border-radius: 0;
}

.hero .cta-btn-secondary:hover::before {
  width: 100%;
  height: 100%;
}

.hero .cta-btn-secondary:hover {
  color: var(--cream);
  border-color: var(--burnt-orange);
  transform: translateY(-3px);
}

.hero .cta-btn-secondary::after {
  display: none;
}

/* Section Styling */
section {
  margin: 0 auto;
  padding: 5rem 0;
  position: relative;
}

section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 5%;
  width: 4px;
  height: 80px;
  background: linear-gradient(180deg, var(--burgundy), var(--burnt-orange));
  animation: fadeInSection 0.6s ease-out;
}

@keyframes fadeInSection {
  from {
    height: 0;
    opacity: 0;
  }
  to {
    height: 80px;
    opacity: 1;
  }
}

.section-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 900;
  margin-bottom: 4rem;
  color: var(--text-main);
  text-align: left;
  letter-spacing: -1px;
  position: relative;
  padding-left: 3rem;
  text-transform: none;
}

.section-title::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 12px;
  height: 12px;
  background: var(--burnt-orange);
  border: 4px solid var(--burgundy);
}

.section-title::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: -1rem;
  width: 200px;
  height: 4px;
  background: linear-gradient(90deg, var(--burgundy), var(--burnt-orange), transparent);
}

/* Asymmetric Card Grid */
.flex-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 2.5rem;
  margin-top: 3rem;
}

.card {
  background: var(--bg-card);
  border: 3px solid var(--border);
  box-shadow: 12px 12px 0 rgba(139, 21, 56, 0.2);
  padding: 2.5rem;
  min-height: 280px;
  display: flex;
  flex-direction: column;
  position: relative;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  overflow: hidden;
  animation: cardFadeIn 0.6s cubic-bezier(0.4, 0, 0.2, 1) both;
  animation-delay: calc(var(--card-index, 0) * 0.1s);
}

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

.card:nth-child(1) { --card-index: 0; }
.card:nth-child(2) { --card-index: 1; }
.card:nth-child(3) { --card-index: 2; }
.card:nth-child(4) { --card-index: 3; }
.card:nth-child(5) { --card-index: 4; }
.card:nth-child(6) { --card-index: 5; }

.card::before {
  content: '';
  position: absolute;
  top: -2px;
  left: -2px;
  right: -2px;
  bottom: -2px;
  background: linear-gradient(135deg, var(--burgundy), var(--burnt-orange));
  opacity: 0;
  transition: opacity 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  z-index: -1;
}

.card:hover::before {
  opacity: 0.1;
}

.card:hover {
  transform: translate(-6px, -6px);
  box-shadow: 18px 18px 0 rgba(204, 85, 0, 0.3);
  border-color: var(--burnt-orange);
}

.card-icon {
  font-size: 3rem;
  margin-bottom: 1.5rem;
  animation: iconPop 0.6s cubic-bezier(0.4, 0, 0.2, 1) calc(var(--card-index, 0) * 0.1s + 0.3s) both;
}

@keyframes iconPop {
  0% {
    transform: scale(0) rotate(-180deg);
    opacity: 0;
  }
  100% {
    transform: scale(1) rotate(0deg);
    opacity: 1;
  }
}

.card h3, .card h4 {
  font-family: 'Space Grotesk', sans-serif;
  text-align: left;
  margin: 0 0 1.5rem 0;
  color: var(--burnt-orange);
  font-size: 1.5rem;
  font-weight: 700;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  line-height: 1.3;
  min-height: auto;
}

.card h4 {
  font-size: 1.4rem;
}

.card .case-meta {
  color: var(--burgundy);
  font-size: 0.9rem;
  margin-bottom: 1rem;
  font-weight: 600;
  text-align: left;
  text-transform: uppercase;
  letter-spacing: 1px;
  border-left: 4px solid var(--burgundy);
  padding-left: 1rem;
}

body.light .card .case-meta {
  color: var(--burgundy);
}

.card p, .card .desc {
  color: var(--text-muted);
  font-size: 1rem;
  text-align: left;
  margin: 0;
  flex: 1;
  line-height: 1.7;
}

.card.wide {
  grid-column: 1 / -1;
  max-width: 100%;
}

/* Pricing Table */
.pricing-table {
  background: var(--bg-card);
  border: 4px solid var(--burgundy);
  box-shadow: 16px 16px 0 rgba(204, 85, 0, 0.2);
  padding: 3rem;
  position: relative;
  overflow: hidden;
}

.pricing-table::before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 200px;
  height: 200px;
  background: radial-gradient(circle, var(--burnt-orange) 0%, transparent 70%);
  opacity: 0.05;
  animation: pulse 3s ease-in-out infinite;
}

@keyframes pulse {
  0%, 100% { transform: scale(1); opacity: 0.05; }
  50% { transform: scale(1.2); opacity: 0.1; }
}

table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
  margin: 0;
  font-size: 1.05rem;
}

th, td {
  padding: 1.5rem 1rem;
  border-bottom: 2px solid var(--burgundy);
  text-align: left;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

tr:hover td {
  background: rgba(139, 21, 56, 0.05);
  transform: translateX(4px);
}

th {
  color: var(--burnt-orange);
  font-weight: 700;
  font-family: 'Space Grotesk', sans-serif;
  text-transform: uppercase;
  letter-spacing: 1px;
  background: rgba(139, 21, 56, 0.1);
  font-size: 1.1rem;
}

td {
  color: var(--text-main);
  font-weight: 400;
}

td:first-child {
  font-weight: 600;
  color: var(--text-main);
}

.pricing-note {
  color: var(--text-muted);
  font-size: 0.95rem;
  margin-top: 2rem;
  font-weight: 400;
  line-height: 1.8;
  padding: 1.5rem;
  border-left: 4px solid var(--burnt-orange);
  background: rgba(204, 85, 0, 0.05);
}

/* FAQ Section */
.faq-section {
  background: var(--bg-card);
  border: 3px solid var(--burgundy);
  padding: 3rem;
  margin: 4rem auto 0 auto;
  box-shadow: 12px 12px 0 rgba(139, 21, 56, 0.2);
  position: relative;
}

.faq-section h2 {
  font-family: 'Playfair Display', serif;
  color: var(--burnt-orange);
  text-align: left;
  margin-bottom: 2.5rem;
  font-weight: 900;
  font-size: 2.5rem;
  letter-spacing: -1px;
}

.faq-list {
  margin: 0;
  padding: 0;
  list-style: none;
}

.faq-q {
  cursor: pointer;
  font-weight: 600;
  margin: 2rem 0 0 0;
  color: var(--text-main);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  padding: 1.2rem 1.5rem;
  border-left: 4px solid var(--burgundy);
  background: rgba(139, 21, 56, 0.05);
  font-size: 1.1rem;
  position: relative;
  font-family: 'Space Grotesk', sans-serif;
}

.faq-q::after {
  content: '+';
  position: absolute;
  right: 1.5rem;
  top: 50%;
  transform: translateY(-50%);
  font-size: 2rem;
  color: var(--burnt-orange);
  transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.faq-q.open::after {
  content: '−';
  transform: translateY(-50%) rotate(180deg);
}

.faq-q:hover {
  border-color: var(--burnt-orange);
  background: rgba(204, 85, 0, 0.08);
  transform: translateX(4px);
}

.faq-a {
  margin: 0;
  color: var(--text-muted);
  font-size: 1rem;
  display: none;
  font-weight: 400;
  text-align: left;
  padding: 1.5rem 1.5rem 1.5rem 2.5rem;
  line-height: 1.8;
  background: rgba(204, 85, 0, 0.03);
  border-left: 4px solid var(--burnt-orange);
}

.faq-q.open + .faq-a {
  display: block;
  animation: expandAnswer 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

@keyframes expandAnswer {
  from {
    opacity: 0;
    max-height: 0;
    padding-top: 0;
    padding-bottom: 0;
  }
  to {
    opacity: 1;
    max-height: 500px;
    padding-top: 1.5rem;
    padding-bottom: 1.5rem;
  }
}

/* Contact CTA Section */
.contact-form-section {
  background: linear-gradient(135deg, var(--burgundy) 0%, var(--burgundy-dark) 100%);
  border: 4px solid var(--burnt-orange);
  padding: 4rem 3rem;
  margin: 4rem auto 0 auto;
  box-shadow: 16px 16px 0 rgba(204, 85, 0, 0.3);
  text-align: center;
  max-width: 900px;
  position: relative;
  overflow: hidden;
}

.contact-form-section::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: repeating-linear-gradient(
    45deg,
    transparent,
    transparent 20px,
    rgba(204, 85, 0, 0.03) 20px,
    rgba(204, 85, 0, 0.03) 40px
  );
  animation: diagonalMove 20s linear infinite;
}

@keyframes diagonalMove {
  0% { transform: translate(0, 0); }
  100% { transform: translate(50px, 50px); }
}

.contact-form-section h3 {
  font-family: 'Playfair Display', serif;
  font-size: 2.5rem;
  font-weight: 900;
  color: var(--cream);
  margin-bottom: 2rem;
  position: relative;
  z-index: 2;
}

.call-now-content {
  position: relative;
  z-index: 2;
}

.call-now-icon {
  font-size: 4rem;
  margin-bottom: 1rem;
  color: var(--burnt-orange);
  animation: phoneRing 2s ease-in-out infinite;
}

@keyframes phoneRing {
  0%, 100% { transform: rotate(0deg); }
  10%, 30% { transform: rotate(-15deg); }
  20%, 40% { transform: rotate(15deg); }
  50% { transform: rotate(0deg); }
}

.call-now-number {
  font-size: 3rem;
  font-weight: 700;
  color: var(--burnt-orange);
  margin-bottom: 1.5rem;
  font-family: 'Space Grotesk', sans-serif;
  letter-spacing: 2px;
}

.call-now-number a {
  color: inherit;
  text-decoration: none;
}

.call-now-number a::after {
  display: none;
}

.call-now-desc {
  font-size: 1.3rem;
  color: var(--cream);
  margin-bottom: 2rem;
  line-height: 1.7;
}

.cta-btn {
  background: var(--burnt-orange);
  color: var(--cream);
  border: 4px solid var(--cream);
  border-radius: 0;
  font-size: 1.3rem;
  font-weight: 700;
  padding: 1.2rem 3rem;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 8px 8px 0 var(--cream);
  font-family: 'Space Grotesk', sans-serif;
  text-transform: uppercase;
  letter-spacing: 2px;
  display: inline-block;
  margin-top: 1.5rem;
  text-decoration: none;
  position: relative;
  overflow: hidden;
}

.cta-btn::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
  transition: left 0.5s;
}

.cta-btn:hover::before {
  left: 100%;
}

.cta-btn:hover {
  transform: translate(4px, 4px);
  box-shadow: 4px 4px 0 var(--cream);
  background: var(--burnt-orange-dim);
}

.cta-btn::after {
  display: none;
}

/* Map/Office Section */
.map-section {
  margin: 4rem auto 0 auto;
  padding: 0 0 3rem 0;
}

.map-section h3 {
  font-family: 'Playfair Display', serif;
  font-size: 2.5rem;
  font-weight: 900;
  margin-bottom: 2rem;
  color: var(--text-main);
  text-align: left;
  padding-left: 3rem;
  position: relative;
}

.map-section h3::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 12px;
  height: 12px;
  background: var(--burnt-orange);
  border: 4px solid var(--burgundy);
}

.company-data {
  font-size: 1.1rem;
  line-height: 2;
  color: var(--text-main);
}

.company-data b {
  color: var(--burnt-orange);
  font-family: 'Space Grotesk', sans-serif;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-size: 0.95rem;
}

/* Footer */
.centered-footer {
  text-align: center;
  padding: 3rem 0 2rem 0;
  color: var(--text-muted);
  font-size: 0.95rem;
  border-top: 4px solid var(--burgundy);
  margin-top: 4rem;
  position: relative;
}

.centered-footer::before {
  content: '';
  position: absolute;
  top: -4px;
  left: 0;
  width: 100%;
  height: 4px;
  background: repeating-linear-gradient(
    90deg,
    var(--burnt-orange) 0px,
    var(--burnt-orange) 20px,
    transparent 20px,
    transparent 40px
  );
}

/* Responsive Design */
@media (max-width: 1200px) {
  .container, .nav-inner {
    padding-left: 2rem;
    padding-right: 2rem;
  }

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

@media (max-width: 900px) {
  .container, .nav-inner {
    padding-left: 1.5rem;
    padding-right: 1.5rem;
  }

  .hero {
    min-height: 85vh;
  }

  .hero .container {
    padding: 8rem 1.5rem;
  }

  .hero h1 {
    font-size: clamp(3.5rem, 10vw, 6rem);
    letter-spacing: -3px;
  }

  .hero h1::after {
    width: 240px;
    height: 6px;
  }

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

  .pricing-table, .contact-form-section, .faq-section {
    max-width: 100%;
  }

  .section-title {
    font-size: 2.5rem;
    padding-left: 2rem;
  }
}

@media (max-width: 700px) {
  .nav-inner {
    grid-template-columns: 1fr;
    gap: 1rem;
    padding: 1rem 1rem;
  }

  .nav-logo {
    justify-content: center;
  }

  .nav-links {
    flex-wrap: wrap;
    gap: 0;
    justify-content: center;
  }

  .nav-links a {
    font-size: 0.8rem;
    padding: 0.6rem 1rem;
    border-left: 1px solid var(--border);
  }

  .switchers {
    justify-content: center;
  }

  .switch-btn {
    padding: 0.5rem 1rem;
    font-size: 0.9rem;
  }

  .hero {
    min-height: 80vh;
  }

  .hero .container {
    padding: 6rem 1.5rem;
  }

  .hero h1 {
    font-size: clamp(2.8rem, 9vw, 4.5rem);
    letter-spacing: -2px;
  }

  .hero h1::after {
    width: 180px;
    height: 6px;
    bottom: -1.5rem;
  }

  .hero p {
    font-size: 1.05rem;
    margin: 4rem auto 0;
  }

  .hero .cta-container {
    margin-top: 3rem;
    flex-direction: column;
    gap: 1rem;
  }

  .hero .cta-btn,
  .hero .cta-btn-secondary {
    font-size: 0.95rem;
    padding: 1.2rem 2.5rem;
    width: 100%;
    max-width: 320px;
  }

  .hero .cta-btn {
    box-shadow: 8px 8px 0 var(--burnt-orange);
  }

  .hero .cta-btn:hover {
    transform: translate(4px, 4px);
    box-shadow: 4px 4px 0 var(--burnt-orange);
  }

  section {
    padding: 3rem 0;
  }

  .section-title {
    font-size: 2rem;
    padding-left: 1.5rem;
    margin-bottom: 2.5rem;
  }

  .card {
    box-shadow: 6px 6px 0 rgba(139, 21, 56, 0.2);
    padding: 2rem;
  }

  .card:hover {
    transform: translate(-3px, -3px);
    box-shadow: 9px 9px 0 rgba(204, 85, 0, 0.3);
  }

  .pricing-table {
    padding: 2rem 1.5rem;
    box-shadow: 8px 8px 0 rgba(204, 85, 0, 0.2);
  }

  table {
    font-size: 0.95rem;
  }

  th, td {
    padding: 1rem 0.7rem;
  }

  .faq-section {
    padding: 2rem 1.5rem;
    box-shadow: 6px 6px 0 rgba(139, 21, 56, 0.2);
  }

  .faq-section h2 {
    font-size: 2rem;
  }

  .faq-q {
    font-size: 1rem;
    padding: 1rem;
  }

  .faq-q::after {
    font-size: 1.5rem;
    right: 1rem;
  }

  .contact-form-section {
    padding: 3rem 2rem;
    box-shadow: 8px 8px 0 rgba(204, 85, 0, 0.3);
  }

  .contact-form-section h3 {
    font-size: 2rem;
  }

  .call-now-number {
    font-size: 2rem;
  }

  .call-now-desc {
    font-size: 1.1rem;
  }

  .cta-btn {
    font-size: 1rem;
    padding: 1rem 2rem;
    box-shadow: 4px 4px 0 var(--cream);
  }

  .cta-btn:hover {
    transform: translate(2px, 2px);
    box-shadow: 2px 2px 0 var(--cream);
  }

  .map-section h3 {
    font-size: 2rem;
    padding-left: 2rem;
  }

  .company-data {
    font-size: 1rem;
  }
}

@media (max-width: 480px) {
  .hero {
    min-height: 75vh;
  }

  .hero .container {
    padding: 5rem 1rem;
  }

  .hero h1 {
    font-size: clamp(2.2rem, 8vw, 3.5rem);
    letter-spacing: -1px;
  }

  .hero h1::after {
    width: 140px;
    height: 5px;
    bottom: -1.2rem;
  }

  .hero p {
    font-size: 1rem;
    margin: 3.5rem auto 0;
    line-height: 1.7;
  }

  .hero .cta-container {
    margin-top: 2.5rem;
  }

  .hero .cta-btn,
  .hero .cta-btn-secondary {
    font-size: 0.85rem;
    padding: 1.1rem 2rem;
  }

  .hero .cta-btn {
    box-shadow: 6px 6px 0 var(--burnt-orange);
  }

  .hero .cta-btn:hover {
    transform: translate(3px, 3px);
    box-shadow: 3px 3px 0 var(--burnt-orange);
  }

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

  .card h3, .card h4 {
    font-size: 1.3rem;
  }

  .call-now-icon {
    font-size: 3rem;
  }

  .call-now-number {
    font-size: 1.8rem;
  }
}

/* Print styles */
@media print {
  body::before,
  .hero::before,
  .hero::after,
  nav {
    display: none;
  }

  .card,
  .pricing-table,
  .faq-section,
  .contact-form-section {
    box-shadow: none;
    border: 1px solid #000;
  }
}
