/* =====================================================
   UNSAT ARCHITEKTUR - VIBRANT ENERGETIC DESIGN
   Modern, Dynamic & High Energy Architecture Website
   ===================================================== */

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

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

body {
  font-family: 'Open Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  line-height: 1.7;
  color: #1a1a1a;
  background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
  overflow-x: hidden;
}

/* VIBRANT ENERGETIC COLOR PALETTE */
:root {
  --electric-blue: #0066ff;
  --hot-orange: #ff6600;
  --neon-pink: #ff0066;
  --lime-green: #00ff66;
  --bright-purple: #9933ff;
  --vibrant-red: #ff3333;
  --electric-cyan: #00ccff;
  --dark-charcoal: #1a1a1a;
  --light-gray: #f0f0f0;
  --white: #ffffff;
  --shadow-dynamic: 0 8px 30px rgba(0, 102, 255, 0.25);
  --shadow-intense: 0 15px 50px rgba(255, 102, 0, 0.35);
}

/* DYNAMIC TYPOGRAPHY */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', -apple-system, BlinkMacSystemFont, sans-serif;
  font-weight: 800;
  line-height: 1.2;
  color: var(--dark-charcoal);
  letter-spacing: -0.5px;
}

h1 {
  font-size: 48px;
  background: linear-gradient(135deg, var(--electric-blue) 0%, var(--bright-purple) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 24px;
  animation: textGlow 3s ease-in-out infinite alternate;
}

@keyframes textGlow {
  0% { filter: brightness(1); }
  100% { filter: brightness(1.2); }
}

h2 {
  font-size: 36px;
  margin-bottom: 20px;
  position: relative;
  padding-bottom: 16px;
}

h2::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 80px;
  height: 4px;
  background: linear-gradient(90deg, var(--hot-orange), var(--neon-pink));
  border-radius: 2px;
}

h3 {
  font-size: 24px;
  margin-bottom: 16px;
  color: var(--electric-blue);
}

h4 {
  font-size: 18px;
  margin-bottom: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
}

p {
  font-size: 16px;
  margin-bottom: 16px;
  color: #333;
}

a {
  color: var(--electric-blue);
  text-decoration: none;
  transition: all 0.3s ease;
  font-weight: 600;
}

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

ul {
  list-style: none;
}

ul li {
  padding-left: 24px;
  margin-bottom: 12px;
  position: relative;
}

ul li::before {
  content: '▸';
  position: absolute;
  left: 0;
  color: var(--hot-orange);
  font-weight: bold;
  font-size: 18px;
}

/* CONTAINER & LAYOUT */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

/* VIBRANT HEADER */
header {
  background: linear-gradient(135deg, var(--dark-charcoal) 0%, #2a2a2a 100%);
  padding: 20px 0;
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
  border-bottom: 3px solid var(--electric-blue);
}

header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 20px;
}

.logo {
  height: 50px;
  width: auto;
  filter: brightness(0) invert(1);
  transition: transform 0.3s ease;
}

.logo:hover {
  transform: scale(1.1) rotate(-2deg);
}

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

.main-nav a {
  color: var(--white);
  font-weight: 600;
  font-size: 15px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  position: relative;
  padding: 8px 0;
}

.main-nav a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--electric-blue), var(--neon-pink));
  transition: width 0.3s ease;
}

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

header .phone {
  color: var(--electric-cyan);
  font-weight: 700;
  font-size: 16px;
  padding: 10px 20px;
  border: 2px solid var(--electric-cyan);
  border-radius: 25px;
  transition: all 0.3s ease;
}

header .phone:hover {
  background: var(--electric-cyan);
  color: var(--dark-charcoal);
  transform: scale(1.05);
}

/* ENERGETIC BUTTONS */
.cta-button,
.btn-primary,
.btn-secondary {
  display: inline-block;
  padding: 16px 36px;
  font-weight: 700;
  font-size: 16px;
  text-transform: uppercase;
  letter-spacing: 1px;
  border-radius: 50px;
  transition: all 0.3s ease;
  cursor: pointer;
  border: none;
  text-align: center;
}

.cta-button,
.btn-primary {
  background: linear-gradient(135deg, var(--hot-orange) 0%, var(--vibrant-red) 100%);
  color: var(--white);
  box-shadow: 0 8px 25px rgba(255, 102, 0, 0.4);
}

.cta-button:hover,
.btn-primary:hover {
  background: linear-gradient(135deg, var(--vibrant-red) 0%, var(--neon-pink) 100%);
  transform: translateY(-3px);
  box-shadow: 0 12px 35px rgba(255, 0, 102, 0.5);
  color: var(--white);
}

.btn-secondary {
  background: transparent;
  color: var(--electric-blue);
  border: 3px solid var(--electric-blue);
  box-shadow: 0 4px 15px rgba(0, 102, 255, 0.2);
}

.btn-secondary:hover {
  background: var(--electric-blue);
  color: var(--white);
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(0, 102, 255, 0.4);
}

/* MOBILE MENU */
.mobile-menu-toggle {
  display: none;
  position: fixed;
  top: 20px;
  right: 20px;
  z-index: 2000;
  background: linear-gradient(135deg, var(--hot-orange), var(--vibrant-red));
  color: var(--white);
  border: none;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  font-size: 24px;
  cursor: pointer;
  box-shadow: 0 6px 20px rgba(255, 102, 0, 0.5);
  transition: all 0.3s ease;
}

.mobile-menu-toggle:hover {
  transform: scale(1.1) rotate(90deg);
  box-shadow: 0 8px 30px rgba(255, 102, 0, 0.7);
}

.mobile-menu {
  display: none;
  position: fixed;
  top: 0;
  right: -100%;
  width: 80%;
  max-width: 350px;
  height: 100vh;
  background: linear-gradient(180deg, var(--dark-charcoal) 0%, #2a2a2a 100%);
  z-index: 1999;
  padding: 80px 30px 30px;
  box-shadow: -5px 0 30px rgba(0, 0, 0, 0.5);
  transition: right 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
  overflow-y: auto;
}

.mobile-menu.active {
  right: 0;
}

.mobile-menu-close {
  position: absolute;
  top: 20px;
  right: 20px;
  background: var(--neon-pink);
  color: var(--white);
  border: none;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  font-size: 24px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.mobile-menu-close:hover {
  transform: rotate(90deg) scale(1.1);
  background: var(--vibrant-red);
}

.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.mobile-nav a {
  color: var(--white);
  font-size: 18px;
  font-weight: 700;
  padding: 15px 20px;
  border-left: 4px solid transparent;
  transition: all 0.3s ease;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.mobile-nav a:hover {
  border-left-color: var(--hot-orange);
  background: rgba(255, 102, 0, 0.1);
  padding-left: 30px;
  transform: none;
}

/* DYNAMIC HERO SECTION */
.hero {
  background: linear-gradient(135deg, var(--electric-blue) 0%, var(--bright-purple) 100%);
  padding: 100px 20px;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -10%;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(255, 102, 0, 0.3) 0%, transparent 70%);
  animation: pulse 4s ease-in-out infinite;
}

.hero::after {
  content: '';
  position: absolute;
  bottom: -30%;
  left: -5%;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(0, 255, 102, 0.2) 0%, transparent 70%);
  animation: pulse 5s ease-in-out infinite reverse;
}

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

.hero-content {
  max-width: 800px;
  position: relative;
  z-index: 1;
}

.hero h1 {
  color: var(--white);
  font-size: 56px;
  text-shadow: 3px 3px 10px rgba(0, 0, 0, 0.3);
  background: none;
  -webkit-text-fill-color: var(--white);
}

.subheadline {
  font-size: 20px;
  color: rgba(255, 255, 255, 0.95);
  margin-bottom: 32px;
  line-height: 1.6;
}

.cta-group {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  margin-bottom: 32px;
}

.trust-indicator {
  color: var(--white);
  font-weight: 600;
  font-size: 16px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.trust-indicator::before {
  content: '✓';
  display: inline-block;
  width: 24px;
  height: 24px;
  background: var(--lime-green);
  border-radius: 50%;
  text-align: center;
  line-height: 24px;
  color: var(--dark-charcoal);
  font-weight: bold;
}

/* PAGE HERO */
.page-hero {
  background: linear-gradient(135deg, var(--hot-orange) 0%, var(--vibrant-red) 100%);
  padding: 80px 20px 60px;
  color: var(--white);
  position: relative;
  overflow: hidden;
}

.page-hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('data:image/svg+xml,<svg width="100" height="100" xmlns="http://www.w3.org/2000/svg"><defs><pattern id="grid" width="100" height="100" patternUnits="userSpaceOnUse"><path d="M 100 0 L 0 0 0 100" fill="none" stroke="rgba(255,255,255,0.1)" stroke-width="1"/></pattern></defs><rect width="100%" height="100%" fill="url(%23grid)"/></svg>');
  opacity: 0.3;
}

.page-hero .container {
  position: relative;
  z-index: 1;
}

.page-hero h1 {
  color: var(--white);
  -webkit-text-fill-color: var(--white);
  text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.2);
}

.breadcrumb {
  margin-bottom: 24px;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.9);
}

.breadcrumb a {
  color: rgba(255, 255, 255, 0.9);
  font-weight: 600;
}

.breadcrumb a:hover {
  color: var(--white);
  transform: none;
}

/* SECTIONS WITH DYNAMIC SPACING */
section {
  padding: 80px 20px;
  position: relative;
}

section:nth-child(even) {
  background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
}

/* VALUE PROPOSITION */
.value-proposition,
.services-overview,
.benefits {
  margin-bottom: 60px;
}

.value-grid,
.services-grid,
.benefits-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-top: 40px;
}

.value-card,
.service-card,
.benefit {
  flex: 1 1 calc(50% - 24px);
  min-width: 280px;
  background: var(--white);
  padding: 32px;
  border-radius: 16px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  position: relative;
  border-top: 4px solid var(--electric-blue);
  margin-bottom: 20px;
}

.value-card:hover,
.service-card:hover,
.benefit:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-dynamic);
  border-top-color: var(--hot-orange);
}

.value-card h3,
.service-card h3,
.benefit h3 {
  margin-bottom: 16px;
  font-size: 22px;
}

.value-card p,
.service-card p,
.benefit p {
  color: #555;
  line-height: 1.7;
}

.service-card .price {
  font-size: 24px;
  font-weight: 800;
  color: var(--hot-orange);
  margin-top: 20px;
  margin-bottom: 0;
}

/* PROCESS PREVIEW */
.process-preview {
  background: linear-gradient(135deg, var(--electric-blue) 0%, var(--bright-purple) 100%);
  color: var(--white);
  padding: 80px 20px;
}

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

.process-preview h2::after {
  background: linear-gradient(90deg, var(--lime-green), var(--electric-cyan));
}

.process-steps {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 24px;
  margin: 40px 0;
}

.step {
  flex: 1 1 150px;
  text-align: center;
  position: relative;
}

.step-number {
  display: inline-block;
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, var(--hot-orange), var(--vibrant-red));
  color: var(--white);
  border-radius: 50%;
  line-height: 60px;
  font-size: 28px;
  font-weight: 800;
  margin-bottom: 16px;
  box-shadow: 0 6px 20px rgba(255, 102, 0, 0.4);
}

.step h3 {
  color: var(--white);
  font-size: 16px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.process-preview p {
  color: rgba(255, 255, 255, 0.9);
  margin-top: 24px;
}

.process-preview .link {
  color: var(--lime-green);
  font-weight: 700;
  text-decoration: underline;
}

/* TESTIMONIALS - HIGH CONTRAST */
.testimonials {
  background: var(--light-gray);
  padding: 80px 20px;
}

.testimonial-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  margin-top: 40px;
}

.testimonial-card {
  flex: 1 1 calc(50% - 32px);
  min-width: 300px;
  background: var(--white);
  padding: 32px;
  border-radius: 16px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
  border-left: 5px solid var(--neon-pink);
  position: relative;
  margin-bottom: 20px;
}

.testimonial-card::before {
  content: '"';
  position: absolute;
  top: 10px;
  left: 20px;
  font-size: 80px;
  color: rgba(255, 0, 102, 0.1);
  font-family: Georgia, serif;
  line-height: 1;
}

.testimonial-card p {
  color: #222;
  font-size: 16px;
  font-style: italic;
  margin-bottom: 20px;
  position: relative;
  z-index: 1;
}

.testimonial-card .author {
  font-weight: 700;
  color: var(--electric-blue);
  font-style: normal;
  margin-bottom: 8px;
}

.testimonial-card .rating {
  color: var(--hot-orange);
  font-size: 18px;
  font-style: normal;
  margin-bottom: 0;
}

/* CTA SECTIONS */
.cta-final,
.cta-section {
  background: linear-gradient(135deg, var(--dark-charcoal) 0%, #2a2a2a 100%);
  color: var(--white);
  padding: 80px 20px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-final::before,
.cta-section::before {
  content: '';
  position: absolute;
  top: -50px;
  right: -50px;
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(0, 102, 255, 0.2) 0%, transparent 70%);
  animation: float 6s ease-in-out infinite;
}

@keyframes float {
  0%, 100% { transform: translateY(0) rotate(0deg); }
  50% { transform: translateY(-20px) rotate(5deg); }
}

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

.cta-final h2::after,
.cta-section h2::after {
  left: 50%;
  transform: translateX(-50%);
}

.cta-final p,
.cta-section p {
  color: rgba(255, 255, 255, 0.9);
  font-size: 18px;
  margin-bottom: 32px;
}

/* SERVICES DETAILED */
.services-detailed {
  display: flex;
  flex-direction: column;
  gap: 40px;
  margin-top: 40px;
}

.service-detail {
  background: var(--white);
  padding: 40px;
  border-radius: 16px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
  border-left: 6px solid var(--electric-blue);
  margin-bottom: 20px;
}

.service-detail:hover {
  border-left-color: var(--hot-orange);
  box-shadow: var(--shadow-dynamic);
}

.service-detail h3 {
  font-size: 26px;
  margin-bottom: 20px;
}

.service-detail ul {
  margin: 24px 0;
}

.service-detail .price {
  font-size: 28px;
  font-weight: 800;
  color: var(--vibrant-red);
  margin: 24px 0;
}

/* PACKAGES */
.packages {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  margin-top: 40px;
}

.package {
  flex: 1 1 calc(33.333% - 32px);
  min-width: 280px;
  background: var(--white);
  padding: 40px;
  border-radius: 16px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
  text-align: center;
  transition: all 0.3s ease;
  border-top: 5px solid var(--electric-blue);
  margin-bottom: 20px;
}

.package:nth-child(2) {
  border-top-color: var(--hot-orange);
  transform: scale(1.05);
}

.package:nth-child(3) {
  border-top-color: var(--bright-purple);
}

.package:hover {
  transform: translateY(-10px) scale(1.05);
  box-shadow: var(--shadow-intense);
}

.package h3 {
  font-size: 24px;
  margin-bottom: 12px;
}

.package > p {
  color: #666;
  font-size: 14px;
  margin-bottom: 24px;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-weight: 600;
}

.package ul {
  text-align: left;
  margin: 24px 0;
}

/* TIMELINE */
.timeline {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 32px;
  margin: 40px 0;
  position: relative;
}

.timeline::before {
  content: '';
  position: absolute;
  top: 30px;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--electric-blue), var(--hot-orange), var(--neon-pink), var(--lime-green));
  z-index: 0;
}

.milestone {
  flex: 1 1 200px;
  text-align: center;
  position: relative;
  z-index: 1;
}

.milestone .year {
  display: inline-block;
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, var(--electric-blue), var(--bright-purple));
  color: var(--white);
  border-radius: 50%;
  line-height: 60px;
  font-size: 16px;
  font-weight: 800;
  margin-bottom: 16px;
  box-shadow: 0 6px 20px rgba(0, 102, 255, 0.4);
}

.milestone p {
  font-weight: 600;
  color: var(--dark-charcoal);
}

/* MISSION VISION & VALUES */
.mission-vision {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  margin: 40px 0;
}

.mission-vision > div {
  flex: 1 1 calc(50% - 32px);
  min-width: 300px;
  background: linear-gradient(135deg, var(--electric-blue), var(--bright-purple));
  color: var(--white);
  padding: 40px;
  border-radius: 16px;
  box-shadow: var(--shadow-dynamic);
}

.mission-vision h3 {
  color: var(--white);
  margin-bottom: 20px;
}

.mission-vision p {
  color: rgba(255, 255, 255, 0.95);
}

.values {
  background: var(--white);
  padding: 40px;
  border-radius: 16px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
  margin-top: 40px;
  border-left: 6px solid var(--lime-green);
}

/* TEAM GRID */
.team-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  margin-top: 40px;
}

.team-member {
  flex: 1 1 calc(33.333% - 32px);
  min-width: 280px;
  background: var(--white);
  padding: 32px;
  border-radius: 16px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
  text-align: center;
  transition: all 0.3s ease;
  border-bottom: 4px solid var(--electric-blue);
  margin-bottom: 20px;
}

.team-member:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-dynamic);
  border-bottom-color: var(--hot-orange);
}

.team-member h3 {
  margin-bottom: 8px;
}

.team-member p:first-of-type {
  color: var(--hot-orange);
  font-weight: 700;
  text-transform: uppercase;
  font-size: 14px;
  letter-spacing: 1px;
  margin-bottom: 12px;
}

/* CERTIFICATIONS */
.certifications {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  margin-top: 40px;
}

.cert {
  flex: 1 1 calc(33.333% - 32px);
  min-width: 250px;
  background: linear-gradient(135deg, var(--hot-orange), var(--vibrant-red));
  color: var(--white);
  padding: 32px;
  border-radius: 16px;
  box-shadow: var(--shadow-intense);
  text-align: center;
  transition: all 0.3s ease;
  margin-bottom: 20px;
}

.cert:hover {
  transform: scale(1.05);
}

.cert h3 {
  color: var(--white);
  margin-bottom: 12px;
}

.cert p {
  color: rgba(255, 255, 255, 0.95);
}

/* STATS */
.stats {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-around;
  gap: 32px;
  margin-top: 40px;
}

.stat {
  flex: 1 1 200px;
  text-align: center;
  padding: 32px;
  background: var(--white);
  border-radius: 16px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  margin-bottom: 20px;
}

.stat:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-dynamic);
}

.stat .number {
  display: block;
  font-size: 48px;
  font-weight: 800;
  background: linear-gradient(135deg, var(--electric-blue), var(--bright-purple));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 12px;
}

.stat p {
  color: #555;
  font-weight: 600;
  text-transform: uppercase;
  font-size: 14px;
  letter-spacing: 1px;
}

/* PROJECT SHOWCASE */
.project-showcase {
  display: flex;
  flex-direction: column;
  gap: 60px;
  margin-top: 40px;
}

.project {
  background: var(--white);
  padding: 40px;
  border-radius: 16px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
  border-top: 6px solid var(--electric-blue);
  margin-bottom: 20px;
}

.project:nth-child(2n) {
  border-top-color: var(--hot-orange);
}

.project:nth-child(3n) {
  border-top-color: var(--bright-purple);
}

.project h2 {
  margin-bottom: 12px;
}

.project .category {
  color: var(--hot-orange);
  font-weight: 700;
  text-transform: uppercase;
  font-size: 14px;
  letter-spacing: 1px;
  margin-bottom: 20px;
}

.project ul {
  margin: 24px 0;
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

.project ul li {
  padding: 8px 16px;
  background: var(--light-gray);
  border-radius: 20px;
  font-size: 14px;
  font-weight: 600;
  color: var(--dark-charcoal);
}

.project ul li::before {
  display: none;
}

.project .testimonial {
  font-style: italic;
  color: #555;
  border-left: 4px solid var(--neon-pink);
  padding-left: 20px;
  margin-top: 24px;
}

/* PROJECT TYPES */
.project-types {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-top: 40px;
}

.type {
  flex: 1 1 calc(50% - 24px);
  min-width: 280px;
  background: linear-gradient(135deg, var(--electric-blue), var(--bright-purple));
  color: var(--white);
  padding: 32px;
  border-radius: 16px;
  box-shadow: var(--shadow-dynamic);
  transition: all 0.3s ease;
  margin-bottom: 20px;
}

.type:hover {
  transform: scale(1.05);
}

.type h3 {
  color: var(--white);
  margin-bottom: 12px;
}

.type p {
  color: rgba(255, 255, 255, 0.95);
}

/* PROCESS TIMELINE */
.process-timeline {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 24px;
  margin: 40px 0;
  position: relative;
}

.process-timeline::before {
  content: '';
  position: absolute;
  top: 30px;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--electric-blue), var(--hot-orange), var(--neon-pink));
  z-index: 0;
}

.phase {
  flex: 1 1 150px;
  text-align: center;
  position: relative;
  z-index: 1;
}

.phase-number {
  display: inline-block;
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, var(--hot-orange), var(--vibrant-red));
  color: var(--white);
  border-radius: 50%;
  line-height: 60px;
  font-size: 28px;
  font-weight: 800;
  margin-bottom: 16px;
  box-shadow: 0 6px 20px rgba(255, 102, 0, 0.4);
}

.phase h3 {
  font-size: 16px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

/* PHASE DETAIL */
.phase-detail {
  background: var(--white);
  padding: 40px;
  border-radius: 16px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
  margin-bottom: 40px;
  border-left: 6px solid var(--electric-blue);
}

.phase-detail:nth-child(2n) {
  border-left-color: var(--hot-orange);
}

.phase-detail:nth-child(3n) {
  border-left-color: var(--bright-purple);
}

.phase-detail .duration {
  display: inline-block;
  padding: 8px 16px;
  background: var(--light-gray);
  border-radius: 20px;
  font-weight: 700;
  color: var(--electric-blue);
  font-size: 14px;
  margin-bottom: 20px;
}

.phase-detail h4 {
  margin-top: 24px;
  margin-bottom: 16px;
}

/* COMMUNICATION METHODS */
.communication-methods {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin: 40px 0;
}

.method {
  flex: 1 1 calc(50% - 24px);
  min-width: 280px;
  background: var(--white);
  padding: 32px;
  border-radius: 16px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  border-top: 4px solid var(--electric-blue);
  margin-bottom: 20px;
}

.method:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-dynamic);
  border-top-color: var(--hot-orange);
}

.method h3 {
  margin-bottom: 12px;
}

/* CONTACT OPTIONS */
.contact-options {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  margin-top: 40px;
}

.option {
  flex: 1 1 calc(33.333% - 32px);
  min-width: 280px;
  background: linear-gradient(135deg, var(--electric-blue), var(--bright-purple));
  color: var(--white);
  padding: 40px;
  border-radius: 16px;
  box-shadow: var(--shadow-dynamic);
  text-align: center;
  transition: all 0.3s ease;
  margin-bottom: 20px;
}

.option:hover {
  transform: scale(1.05);
}

.option h3 {
  color: var(--white);
  margin-bottom: 12px;
}

.option p {
  color: rgba(255, 255, 255, 0.95);
  margin-bottom: 24px;
}

/* CONTACT FORM INFO */
.contact-form-info {
  background: var(--white);
  padding: 40px;
  border-radius: 16px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
  margin-top: 32px;
  border-left: 6px solid var(--hot-orange);
}

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

.contact-form-info a {
  font-weight: 700;
  text-decoration: underline;
}

/* OFFICE DETAILS */
.office-details {
  background: var(--white);
  padding: 40px;
  border-radius: 16px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
  margin-top: 32px;
  border-left: 6px solid var(--electric-blue);
}

.office-details p {
  margin-bottom: 24px;
}

.office-details strong {
  color: var(--electric-blue);
  display: block;
  margin-bottom: 8px;
  font-size: 16px;
}

/* PROMISES */
.promises {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-top: 40px;
}

.promise {
  flex: 1 1 calc(50% - 24px);
  min-width: 250px;
  background: linear-gradient(135deg, var(--hot-orange), var(--vibrant-red));
  color: var(--white);
  padding: 32px;
  border-radius: 16px;
  box-shadow: var(--shadow-intense);
  text-align: center;
  transition: all 0.3s ease;
  margin-bottom: 20px;
}

.promise:hover {
  transform: scale(1.05);
}

.promise h3 {
  color: var(--white);
  font-size: 18px;
}

/* LEGAL CONTENT */
.legal-content {
  max-width: 900px;
  margin: 0 auto;
  background: var(--white);
  padding: 40px;
  border-radius: 16px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
}

.legal-content h2 {
  margin-top: 40px;
  margin-bottom: 20px;
}

.legal-content h2:first-child {
  margin-top: 0;
}

.legal-content h3 {
  margin-top: 32px;
  margin-bottom: 16px;
}

.legal-content p {
  margin-bottom: 16px;
}

.legal-content ul {
  margin: 16px 0;
}

.legal-content a {
  text-decoration: underline;
}

/* CONFIRMATION HERO */
.confirmation-hero {
  background: linear-gradient(135deg, var(--lime-green) 0%, var(--electric-cyan) 100%);
  padding: 100px 20px;
  text-align: center;
  color: var(--dark-charcoal);
}

.success-icon {
  width: 100px;
  height: 100px;
  background: var(--white);
  color: var(--lime-green);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 60px;
  font-weight: bold;
  margin: 0 auto 32px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
  animation: successPulse 2s ease-in-out infinite;
}

@keyframes successPulse {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.1); }
}

.confirmation-hero h1 {
  color: var(--dark-charcoal);
  -webkit-text-fill-color: var(--dark-charcoal);
}

/* NEXT STEPS */
.next-steps {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  margin-top: 40px;
}

.next-steps .step {
  flex: 1 1 calc(50% - 32px);
  min-width: 280px;
  background: var(--white);
  padding: 32px;
  border-radius: 16px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
  display: flex;
  align-items: flex-start;
  gap: 20px;
  margin-bottom: 20px;
}

.next-steps .step-number {
  flex-shrink: 0;
  width: 50px;
  height: 50px;
  background: linear-gradient(135deg, var(--electric-blue), var(--bright-purple));
  color: var(--white);
  border-radius: 50%;
  line-height: 50px;
  text-align: center;
  font-size: 24px;
  font-weight: 800;
  box-shadow: 0 6px 20px rgba(0, 102, 255, 0.3);
}

/* RESOURCES */
.resources {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  margin-top: 40px;
}

.resource {
  flex: 1 1 calc(33.333% - 32px);
  min-width: 280px;
  background: var(--white);
  padding: 32px;
  border-radius: 16px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  border-top: 4px solid var(--electric-blue);
  margin-bottom: 20px;
}

.resource:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-dynamic);
  border-top-color: var(--hot-orange);
}

.resource h3 {
  margin-bottom: 12px;
}

.resource .link {
  display: inline-block;
  margin-top: 16px;
  font-weight: 700;
  color: var(--electric-blue);
}

/* PAGE LINKS */
.page-links {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: center;
  margin-top: 32px;
}

.rating-summary {
  text-align: center;
  font-weight: 700;
  color: var(--hot-orange);
  font-size: 18px;
  margin-top: 24px;
}

/* FOOTER */
footer {
  background: linear-gradient(135deg, var(--dark-charcoal) 0%, #1a1a1a 100%);
  color: var(--white);
  padding: 60px 20px 20px;
  border-top: 4px solid var(--electric-blue);
}

.footer-content {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  margin-bottom: 40px;
}

.footer-col {
  flex: 1 1 200px;
}

.footer-logo {
  height: 40px;
  width: auto;
  filter: brightness(0) invert(1);
  margin-bottom: 16px;
}

.footer-col h4 {
  color: var(--electric-cyan);
  margin-bottom: 16px;
  font-size: 16px;
}

.footer-col p {
  color: rgba(255, 255, 255, 0.8);
  font-size: 14px;
  margin-bottom: 8px;
}

.footer-col a {
  display: block;
  color: rgba(255, 255, 255, 0.8);
  font-size: 14px;
  margin-bottom: 8px;
  transition: all 0.3s ease;
}

.footer-col a:hover {
  color: var(--hot-orange);
  padding-left: 8px;
}

.copyright {
  text-align: center;
  color: rgba(255, 255, 255, 0.6);
  font-size: 14px;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

/* COOKIE CONSENT BANNER */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(135deg, var(--dark-charcoal) 0%, #2a2a2a 100%);
  color: var(--white);
  padding: 24px;
  box-shadow: 0 -4px 30px rgba(0, 0, 0, 0.5);
  z-index: 10000;
  border-top: 3px solid var(--hot-orange);
  transform: translateY(100%);
  transition: transform 0.4s ease;
}

.cookie-banner.show {
  transform: translateY(0);
}

.cookie-banner .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 20px;
}

.cookie-banner p {
  flex: 1 1 300px;
  margin: 0;
  color: rgba(255, 255, 255, 0.9);
}

.cookie-buttons {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.cookie-buttons button {
  padding: 12px 24px;
  font-weight: 700;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  border-radius: 25px;
  cursor: pointer;
  transition: all 0.3s ease;
  border: none;
}

.cookie-accept {
  background: linear-gradient(135deg, var(--lime-green), var(--electric-cyan));
  color: var(--dark-charcoal);
}

.cookie-accept:hover {
  transform: scale(1.05);
  box-shadow: 0 4px 15px rgba(0, 255, 102, 0.4);
}

.cookie-reject {
  background: transparent;
  color: var(--white);
  border: 2px solid rgba(255, 255, 255, 0.3);
}

.cookie-reject:hover {
  background: rgba(255, 255, 255, 0.1);
}

.cookie-settings {
  background: transparent;
  color: var(--electric-cyan);
  border: 2px solid var(--electric-cyan);
}

.cookie-settings:hover {
  background: var(--electric-cyan);
  color: var(--dark-charcoal);
}

/* COOKIE MODAL */
.cookie-modal {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.8);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10001;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
  padding: 20px;
}

.cookie-modal.show {
  opacity: 1;
  pointer-events: all;
}

.cookie-modal-content {
  background: var(--white);
  padding: 40px;
  border-radius: 16px;
  max-width: 600px;
  width: 100%;
  max-height: 80vh;
  overflow-y: auto;
  box-shadow: var(--shadow-intense);
  border-top: 5px solid var(--hot-orange);
}

.cookie-modal h2 {
  margin-bottom: 24px;
}

.cookie-category {
  margin-bottom: 24px;
  padding: 20px;
  background: var(--light-gray);
  border-radius: 8px;
}

.cookie-category h3 {
  margin-bottom: 8px;
  font-size: 18px;
}

.cookie-toggle {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 12px;
}

.cookie-toggle label {
  font-weight: 600;
  color: #555;
}

.cookie-toggle input[type="checkbox"] {
  width: 50px;
  height: 26px;
  cursor: pointer;
}

.cookie-modal-buttons {
  display: flex;
  gap: 12px;
  margin-top: 32px;
  flex-wrap: wrap;
}

/* RESPONSIVE DESIGN */
@media (max-width: 968px) {
  h1 { font-size: 40px; }
  h2 { font-size: 32px; }
  h3 { font-size: 22px; }
  
  .hero { padding: 60px 20px; }
  .hero h1 { font-size: 42px; }
  
  .value-card,
  .service-card,
  .benefit {
    flex: 1 1 100%;
  }
  
  .process-steps,
  .process-timeline {
    flex-direction: column;
  }
  
  .process-steps::before,
  .process-timeline::before {
    display: none;
  }
  
  .timeline {
    flex-direction: column;
  }
  
  .timeline::before {
    left: 30px;
    right: auto;
    width: 3px;
    height: 100%;
    top: 0;
  }
  
  .milestone {
    padding-left: 80px;
    text-align: left;
  }
  
  .package {
    flex: 1 1 100%;
  }
  
  .package:nth-child(2) {
    transform: scale(1);
  }
}

@media (max-width: 768px) {
  /* MOBILE HEADER */
  .main-nav,
  header .phone,
  header .cta-button {
    display: none;
  }
  
  .mobile-menu-toggle {
    display: block;
  }
  
  .mobile-menu {
    display: block;
  }
  
  h1 { font-size: 32px; }
  h2 { font-size: 28px; }
  
  .hero h1 { font-size: 36px; }
  
  .cta-group {
    flex-direction: column;
  }
  
  .cta-button,
  .btn-primary,
  .btn-secondary {
    width: 100%;
    text-align: center;
  }
  
  section {
    padding: 60px 20px;
  }
  
  .mission-vision > div,
  .option,
  .method,
  .next-steps .step,
  .resource,
  .type {
    flex: 1 1 100%;
  }
  
  .team-member,
  .cert,
  .stat,
  .promise {
    flex: 1 1 100%;
  }
  
  .footer-content {
    flex-direction: column;
  }
  
  .cookie-banner .container {
    flex-direction: column;
    text-align: center;
  }
  
  .cookie-buttons {
    width: 100%;
    flex-direction: column;
  }
  
  .cookie-buttons button {
    width: 100%;
  }
}

@media (max-width: 480px) {
  h1 { font-size: 28px; }
  h2 { font-size: 24px; }
  h3 { font-size: 20px; }
  
  .hero h1 { font-size: 32px; }
  .subheadline { font-size: 16px; }
  
  .cta-button,
  .btn-primary,
  .btn-secondary {
    padding: 14px 28px;
    font-size: 14px;
  }
  
  .value-card,
  .service-card,
  .benefit,
  .service-detail,
  .phase-detail,
  .office-details,
  .contact-form-info,
  .legal-content {
    padding: 24px;
  }
  
  .stat .number {
    font-size: 36px;
  }
  
  .cookie-modal-content {
    padding: 24px;
  }
}

/* ACCESSIBILITY */
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border-width: 0;
}

*:focus {
  outline: 3px solid var(--hot-orange);
  outline-offset: 2px;
}

/* PRINT STYLES */
@media print {
  header,
  footer,
  .mobile-menu-toggle,
  .mobile-menu,
  .cookie-banner,
  .cookie-modal,
  .cta-button,
  .btn-primary,
  .btn-secondary {
    display: none;
  }
  
  body {
    background: white;
    color: black;
  }
  
  a {
    text-decoration: underline;
    color: black;
  }
}

/* PERFORMANCE OPTIMIZATION */
@media (prefers-reduced-motion: reduce) {
  * {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}