/* CSS Reset and Base Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

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

body {
  font-family: 'Open Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  line-height: 1.6;
  color: #1a1a1a;
  background: #ffffff;
  overflow-x: hidden;
}

/* GEOMETRIC STRUCTURED DESIGN SYSTEM */
:root {
  --primary: #2C5F7D;
  --secondary: #E8D5C4;
  --accent: #D4A574;
  --dark: #1a4a63;
  --light: #f8f9fa;
  --border: #2a2a2a;
  --shadow: rgba(44, 95, 125, 0.15);
}

/* Typography - Angular, Structured Fonts */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 16px;
  color: var(--dark);
  text-transform: uppercase;
  letter-spacing: 2px;
}

h1 { font-size: 48px; }
h2 { font-size: 32px; }
h3 { font-size: 24px; }
h4 { font-size: 18px; }

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

a {
  text-decoration: none;
  color: var(--primary);
  transition: all 0.3s ease;
}

ul {
  list-style: none;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

/* Container - Structured Grid */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

/* GEOMETRIC BUTTON STYLES - Sharp Angles */
.btn {
  display: inline-block;
  padding: 16px 32px;
  font-family: 'Montserrat', sans-serif;
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  border: 3px solid;
  cursor: pointer;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
  clip-path: polygon(8px 0, 100% 0, 100% calc(100% - 8px), calc(100% - 8px) 100%, 0 100%, 0 8px);
}

.btn::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: var(--dark);
  transition: left 0.3s ease;
  z-index: -1;
}

.btn:hover::before {
  left: 0;
}

.btn-primary {
  background: var(--primary);
  border-color: var(--primary);
  color: #ffffff;
}

.btn-primary:hover {
  background: var(--dark);
  border-color: var(--dark);
  color: #ffffff;
  transform: translateY(-2px);
}

.btn-secondary {
  background: transparent;
  border-color: var(--primary);
  color: var(--primary);
}

.btn-secondary:hover {
  background: var(--primary);
  color: #ffffff;
  transform: translateY(-2px);
}

/* HEADER - Geometric Structure */
header {
  background: #ffffff;
  border-bottom: 4px solid var(--primary);
  padding: 24px 0;
  position: sticky;
  top: 0;
  z-index: 999;
  box-shadow: 0 4px 12px var(--shadow);
}

.header-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo img {
  height: 48px;
  width: auto;
}

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

.main-nav a {
  font-family: 'Montserrat', sans-serif;
  font-size: 14px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--dark);
  padding: 8px 16px;
  border: 2px solid transparent;
  transition: all 0.3s ease;
  clip-path: polygon(4px 0, 100% 0, 100% calc(100% - 4px), calc(100% - 4px) 100%, 0 100%, 0 4px);
}

.main-nav a:hover {
  border-color: var(--primary);
  color: var(--primary);
  transform: translateY(-2px);
}

/* MOBILE MENU - Geometric Slide */
.mobile-menu-toggle {
  display: none;
  background: var(--primary);
  color: #ffffff;
  border: none;
  font-size: 24px;
  width: 48px;
  height: 48px;
  cursor: pointer;
  position: fixed;
  top: 16px;
  right: 16px;
  z-index: 1001;
  clip-path: polygon(6px 0, 100% 0, 100% calc(100% - 6px), calc(100% - 6px) 100%, 0 100%, 0 6px);
  transition: all 0.3s ease;
}

.mobile-menu-toggle:hover {
  background: var(--dark);
  transform: rotate(90deg);
}

.mobile-menu {
  position: fixed;
  top: 0;
  right: -100%;
  width: 100%;
  max-width: 320px;
  height: 100vh;
  background: var(--dark);
  z-index: 1000;
  transition: right 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: -8px 0 24px rgba(0, 0, 0, 0.3);
  clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%, 0 0);
}

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

.mobile-menu-close {
  position: absolute;
  top: 16px;
  right: 16px;
  background: transparent;
  color: #ffffff;
  border: 2px solid #ffffff;
  font-size: 24px;
  width: 48px;
  height: 48px;
  cursor: pointer;
  clip-path: polygon(6px 0, 100% 0, 100% calc(100% - 6px), calc(100% - 6px) 100%, 0 100%, 0 6px);
  transition: all 0.3s ease;
}

.mobile-menu-close:hover {
  background: var(--primary);
  transform: rotate(90deg);
}

.mobile-nav {
  display: flex;
  flex-direction: column;
  padding: 80px 32px 32px;
  gap: 0;
}

.mobile-nav a {
  color: #ffffff;
  font-family: 'Montserrat', sans-serif;
  font-size: 16px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 2px;
  padding: 20px 16px;
  border-bottom: 2px solid rgba(255, 255, 255, 0.1);
  transition: all 0.3s ease;
}

.mobile-nav a:hover {
  background: rgba(255, 255, 255, 0.1);
  padding-left: 24px;
  color: var(--accent);
}

/* HERO SECTION - Geometric Grid */
.hero {
  background: linear-gradient(135deg, var(--dark) 0%, var(--primary) 100%);
  color: #ffffff;
  padding: 120px 0 80px;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: 
    linear-gradient(45deg, rgba(255,255,255,0.05) 25%, transparent 25%),
    linear-gradient(-45deg, rgba(255,255,255,0.05) 25%, transparent 25%),
    linear-gradient(45deg, transparent 75%, rgba(255,255,255,0.05) 75%),
    linear-gradient(-45deg, transparent 75%, rgba(255,255,255,0.05) 75%);
  background-size: 60px 60px;
  background-position: 0 0, 0 30px, 30px -30px, -30px 0px;
  opacity: 0.3;
}

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

.hero h1 {
  color: #ffffff;
  font-size: 56px;
  margin-bottom: 24px;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

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

.hero-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-bottom: 48px;
}

.trust-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  padding: 32px 0;
  border-top: 2px solid rgba(255, 255, 255, 0.2);
}

.trust-badges span {
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 1px;
  padding: 8px 16px;
  border: 2px solid rgba(255, 255, 255, 0.3);
  clip-path: polygon(4px 0, 100% 0, 100% calc(100% - 4px), calc(100% - 4px) 100%, 0 100%, 0 4px);
}

/* HERO INTERNAL - Geometric Banner */
.hero-internal {
  background: var(--primary);
  color: #ffffff;
  padding: 80px 0 60px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.hero-internal::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: repeating-linear-gradient(
    45deg,
    transparent,
    transparent 20px,
    rgba(255, 255, 255, 0.03) 20px,
    rgba(255, 255, 255, 0.03) 40px
  );
}

.hero-internal h1 {
  color: #ffffff;
  position: relative;
  z-index: 2;
}

.hero-internal p {
  font-size: 18px;
  position: relative;
  z-index: 2;
  color: rgba(255, 255, 255, 0.9);
}

/* SECTION SPACING - Structured Grid */
.section {
  margin-bottom: 60px;
  padding: 60px 20px;
}

section {
  padding: 80px 0;
}

section h2 {
  text-align: center;
  margin-bottom: 48px;
  position: relative;
  padding-bottom: 16px;
}

section h2::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background: var(--accent);
  clip-path: polygon(4px 0, 100% 0, 100% calc(100% - 2px), calc(100% - 4px) 100%, 0 100%, 0 2px);
}

.section-subtitle {
  text-align: center;
  font-size: 18px;
  color: #666;
  max-width: 700px;
  margin: 0 auto 48px;
}

/* GEOMETRIC CARD SYSTEM */
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  justify-content: center;
}

.card {
  background: #ffffff;
  border: 3px solid var(--border);
  padding: 32px;
  margin-bottom: 24px;
  position: relative;
  transition: all 0.3s ease;
  clip-path: polygon(12px 0, 100% 0, 100% calc(100% - 12px), calc(100% - 12px) 100%, 0 100%, 0 12px);
}

.card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 8px;
  height: 100%;
  background: var(--primary);
  transition: width 0.3s ease;
}

.card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 32px var(--shadow);
}

.card:hover::before {
  width: 100%;
  opacity: 0.05;
}

/* VALUE PROPOSITION - Geometric Grid */
.value-proposition {
  background: var(--light);
  position: relative;
}

.features-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  justify-content: space-between;
}

.feature {
  flex: 1 1 calc(25% - 24px);
  min-width: 220px;
  background: #ffffff;
  padding: 32px 24px;
  text-align: center;
  border: 3px solid var(--primary);
  position: relative;
  clip-path: polygon(8px 0, 100% 0, 100% calc(100% - 8px), calc(100% - 8px) 100%, 0 100%, 0 8px);
  transition: all 0.3s ease;
}

.feature::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: var(--accent);
}

.feature:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 24px var(--shadow);
}

.feature h3 {
  font-size: 18px;
  margin-bottom: 12px;
  color: var(--primary);
}

.feature p {
  font-size: 14px;
  color: #666;
  margin: 0;
}

/* SERVICES OVERVIEW - Structured Cards */
.services-overview {
  background: #ffffff;
}

.services-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  justify-content: space-between;
  margin-bottom: 48px;
}

.service-card {
  flex: 1 1 calc(50% - 16px);
  min-width: 280px;
  background: var(--light);
  padding: 40px 32px;
  border: 3px solid var(--dark);
  position: relative;
  clip-path: polygon(16px 0, 100% 0, 100% calc(100% - 16px), calc(100% - 16px) 100%, 0 100%, 0 16px);
  transition: all 0.3s ease;
}

.service-card::after {
  content: '';
  position: absolute;
  bottom: 0;
  right: 0;
  width: 60px;
  height: 60px;
  background: var(--primary);
  clip-path: polygon(0 100%, 100% 0, 100% 100%);
  opacity: 0.1;
}

.service-card:hover {
  transform: translateX(8px);
  border-color: var(--primary);
  background: #ffffff;
}

.service-card h3 {
  font-size: 20px;
  margin-bottom: 16px;
  color: var(--dark);
}

.service-card .price {
  font-family: 'Montserrat', sans-serif;
  font-size: 24px;
  font-weight: 700;
  color: var(--accent);
  margin: 0;
}

/* PROCESS PREVIEW - Geometric Timeline */
.process-preview {
  background: var(--dark);
  color: #ffffff;
  position: relative;
  overflow: hidden;
}

.process-preview::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: 
    repeating-linear-gradient(90deg, transparent, transparent 40px, rgba(255,255,255,0.02) 40px, rgba(255,255,255,0.02) 80px),
    repeating-linear-gradient(0deg, transparent, transparent 40px, rgba(255,255,255,0.02) 40px, rgba(255,255,255,0.02) 80px);
}

.process-preview h2 {
  color: #ffffff;
}

.process-preview h2::after {
  background: var(--accent);
}

.process-steps {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  justify-content: space-between;
  margin-bottom: 48px;
  position: relative;
  z-index: 2;
}

.step {
  flex: 1 1 calc(25% - 24px);
  min-width: 200px;
  text-align: center;
  padding: 32px 16px;
  background: rgba(255, 255, 255, 0.05);
  border: 2px solid rgba(255, 255, 255, 0.2);
  clip-path: polygon(8px 0, 100% 0, 100% calc(100% - 8px), calc(100% - 8px) 100%, 0 100%, 0 8px);
  transition: all 0.3s ease;
}

.step:hover {
  background: rgba(255, 255, 255, 0.1);
  transform: translateY(-8px);
}

.step-number {
  display: inline-block;
  width: 60px;
  height: 60px;
  line-height: 60px;
  background: var(--accent);
  color: var(--dark);
  font-family: 'Montserrat', sans-serif;
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 16px;
  clip-path: polygon(8px 0, 100% 0, 100% calc(100% - 8px), calc(100% - 8px) 100%, 0 100%, 0 8px);
}

.step h3 {
  color: #ffffff;
  font-size: 18px;
  margin-bottom: 12px;
}

.step p {
  color: rgba(255, 255, 255, 0.8);
  font-size: 14px;
  margin: 0;
}

/* TESTIMONIALS - Structured Cards with Contrast */
.testimonials {
  background: var(--light);
}

.testimonials-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  justify-content: center;
}

.testimonial-card {
  flex: 1 1 calc(50% - 16px);
  min-width: 300px;
  max-width: 550px;
  background: #ffffff;
  padding: 40px 32px;
  border-left: 6px solid var(--accent);
  border-top: 3px solid var(--dark);
  border-right: 3px solid var(--dark);
  border-bottom: 3px solid var(--dark);
  position: relative;
  clip-path: polygon(12px 0, 100% 0, 100% calc(100% - 12px), calc(100% - 12px) 100%, 0 100%, 0 12px);
  transition: all 0.3s ease;
}

.testimonial-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 16px 32px var(--shadow);
}

.testimonial-card p {
  font-size: 16px;
  font-style: italic;
  line-height: 1.8;
  color: #1a1a1a;
  margin-bottom: 24px;
}

.testimonial-card .author {
  display: block;
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  font-size: 14px;
  color: var(--dark);
  margin-bottom: 8px;
}

.testimonial-card .rating {
  display: block;
  color: var(--accent);
  font-size: 18px;
  letter-spacing: 4px;
}

/* CTA SECTION - Geometric Emphasis */
.cta-section {
  background: linear-gradient(135deg, var(--primary) 0%, var(--dark) 100%);
  color: #ffffff;
  text-align: center;
  padding: 100px 20px;
  position: relative;
  overflow: hidden;
}

.cta-section::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background-image: 
    linear-gradient(30deg, transparent 48%, rgba(255,255,255,0.05) 48%, rgba(255,255,255,0.05) 52%, transparent 52%);
  background-size: 80px 80px;
  animation: slide 20s linear infinite;
}

@keyframes slide {
  0% { transform: translate(0, 0); }
  100% { transform: translate(80px, 80px); }
}

.cta-section h2 {
  color: #ffffff;
  font-size: 40px;
  margin-bottom: 24px;
  position: relative;
  z-index: 2;
}

.cta-section h2::after {
  display: none;
}

.cta-section p {
  font-size: 18px;
  margin-bottom: 32px;
  position: relative;
  z-index: 2;
  color: rgba(255, 255, 255, 0.9);
}

.cta-section .btn {
  position: relative;
  z-index: 2;
  background: #ffffff;
  color: var(--dark);
  border-color: #ffffff;
}

.cta-section .btn:hover {
  background: var(--accent);
  border-color: var(--accent);
  color: var(--dark);
}

.trust-note {
  font-size: 14px;
  margin-top: 16px;
  color: rgba(255, 255, 255, 0.8);
  font-style: italic;
}

/* SERVICE LIST PAGE - Structured Layout */
.services-intro {
  background: var(--light);
  text-align: center;
}

.highlight {
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  color: var(--primary);
  padding: 16px 24px;
  background: #ffffff;
  border: 2px solid var(--primary);
  display: inline-block;
  margin-top: 16px;
  clip-path: polygon(8px 0, 100% 0, 100% calc(100% - 8px), calc(100% - 8px) 100%, 0 100%, 0 8px);
}

.service-list {
  background: #ffffff;
}

.service-item {
  background: var(--light);
  padding: 40px;
  margin-bottom: 32px;
  border: 3px solid var(--dark);
  position: relative;
  clip-path: polygon(16px 0, 100% 0, 100% calc(100% - 16px), calc(100% - 16px) 100%, 0 100%, 0 16px);
  transition: all 0.3s ease;
}

.service-item::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 6px;
  height: 100%;
  background: var(--accent);
}

.service-item:hover {
  transform: translateX(8px);
  box-shadow: 0 8px 24px var(--shadow);
}

.service-item h3 {
  font-size: 24px;
  margin-bottom: 16px;
  color: var(--dark);
}

.service-item .price {
  font-family: 'Montserrat', sans-serif;
  font-size: 28px;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 16px;
  display: block;
}

.service-item ul {
  margin: 24px 0;
  padding-left: 0;
}

.service-item li {
  padding: 8px 0 8px 32px;
  position: relative;
  font-size: 15px;
}

.service-item li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 14px;
  width: 16px;
  height: 16px;
  background: var(--accent);
  clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
  transform: rotate(45deg);
}

.timeline {
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  color: var(--dark);
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-top: 16px;
  padding-top: 16px;
  border-top: 2px solid var(--border);
}

/* WARRANTY SECTION - Geometric Badges */
.warranty {
  background: var(--dark);
  color: #ffffff;
}

.warranty h2 {
  color: #ffffff;
}

.warranty-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  justify-content: center;
}

.warranty-item {
  flex: 1 1 300px;
  text-align: center;
  padding: 40px 32px;
  background: rgba(255, 255, 255, 0.1);
  border: 3px solid rgba(255, 255, 255, 0.3);
  clip-path: polygon(12px 0, 100% 0, 100% calc(100% - 12px), calc(100% - 12px) 100%, 0 100%, 0 12px);
}

.warranty-item h3 {
  color: var(--accent);
  font-size: 22px;
  margin-bottom: 12px;
}

.warranty-item p {
  color: rgba(255, 255, 255, 0.9);
  margin: 0;
}

/* ABOUT PAGE - Story Section */
.story {
  background: #ffffff;
}

.text-section {
  max-width: 800px;
  margin: 0 auto;
}

.text-section p {
  font-size: 17px;
  line-height: 1.8;
  margin-bottom: 24px;
}

blockquote {
  font-family: 'Montserrat', sans-serif;
  font-size: 24px;
  font-style: italic;
  color: var(--primary);
  padding: 32px 40px;
  margin: 40px 0;
  background: var(--light);
  border-left: 6px solid var(--accent);
  position: relative;
  clip-path: polygon(0 0, 100% 0, 100% calc(100% - 12px), calc(100% - 12px) 100%, 0 100%);
}

/* VALUES GRID - Geometric Cards */
.values {
  background: var(--light);
}

.values-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  justify-content: space-between;
}

.value {
  flex: 1 1 calc(50% - 16px);
  min-width: 280px;
  background: #ffffff;
  padding: 40px 32px;
  border: 3px solid var(--primary);
  position: relative;
  clip-path: polygon(12px 0, 100% 0, 100% calc(100% - 12px), calc(100% - 12px) 100%, 0 100%, 0 12px);
  transition: all 0.3s ease;
}

.value::after {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 0 40px 40px 0;
  border-color: transparent var(--accent) transparent transparent;
  transition: border-width 0.3s ease;
}

.value:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 32px var(--shadow);
}

.value:hover::after {
  border-width: 0 60px 60px 0;
}

.value h3 {
  font-size: 20px;
  margin-bottom: 16px;
  color: var(--dark);
}

.value p {
  font-size: 15px;
  line-height: 1.7;
  color: #666;
  margin: 0;
}

/* TEAM SECTION - Structured Cards */
.team {
  background: #ffffff;
}

.team-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  justify-content: center;
}

.team-member {
  flex: 1 1 300px;
  max-width: 350px;
  background: var(--light);
  padding: 40px 32px;
  text-align: center;
  border: 3px solid var(--dark);
  position: relative;
  clip-path: polygon(16px 0, 100% 0, 100% calc(100% - 16px), calc(100% - 16px) 100%, 0 100%, 0 16px);
  transition: all 0.3s ease;
}

.team-member::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 80%;
  height: 4px;
  background: var(--accent);
}

.team-member:hover {
  transform: translateY(-8px);
  border-color: var(--primary);
}

.team-member h3 {
  font-size: 20px;
  margin-bottom: 8px;
  color: var(--dark);
}

.team-member .position {
  font-family: 'Montserrat', sans-serif;
  font-size: 14px;
  font-weight: 600;
  color: var(--accent);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 16px;
  display: block;
}

.team-member p {
  font-size: 14px;
  color: #666;
  margin: 0;
}

/* CERTIFICATIONS - List Style */
.certifications {
  background: var(--light);
}

.cert-list {
  max-width: 700px;
  margin: 0 auto;
}

.cert-list li {
  padding: 20px 20px 20px 60px;
  margin-bottom: 16px;
  background: #ffffff;
  border: 2px solid var(--dark);
  position: relative;
  font-size: 16px;
  clip-path: polygon(8px 0, 100% 0, 100% calc(100% - 8px), calc(100% - 8px) 100%, 0 100%, 0 8px);
  transition: all 0.3s ease;
}

.cert-list li::before {
  content: '✓';
  position: absolute;
  left: 20px;
  top: 50%;
  transform: translateY(-50%);
  width: 28px;
  height: 28px;
  background: var(--accent);
  color: var(--dark);
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
}

.cert-list li:hover {
  transform: translateX(8px);
  border-color: var(--primary);
}

/* PORTFOLIO - Project Cards */
.portfolio-intro {
  background: var(--light);
  text-align: center;
}

.stats {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  justify-content: center;
  margin-top: 40px;
}

.stats span {
  font-family: 'Montserrat', sans-serif;
  font-size: 16px;
  font-weight: 700;
  color: var(--dark);
  padding: 16px 32px;
  background: #ffffff;
  border: 3px solid var(--primary);
  text-transform: uppercase;
  letter-spacing: 1px;
  clip-path: polygon(8px 0, 100% 0, 100% calc(100% - 8px), calc(100% - 8px) 100%, 0 100%, 0 8px);
}

.projects {
  background: #ffffff;
}

.project {
  background: var(--light);
  padding: 48px 40px;
  margin-bottom: 40px;
  border-left: 8px solid var(--accent);
  border-top: 3px solid var(--dark);
  border-right: 3px solid var(--dark);
  border-bottom: 3px solid var(--dark);
  position: relative;
  clip-path: polygon(16px 0, 100% 0, 100% calc(100% - 16px), calc(100% - 16px) 100%, 0 100%, 0 16px);
  transition: all 0.3s ease;
}

.project:hover {
  transform: translateX(8px);
  box-shadow: 0 12px 32px var(--shadow);
}

.project h3 {
  font-size: 26px;
  margin-bottom: 12px;
  color: var(--dark);
}

.project .location {
  font-family: 'Montserrat', sans-serif;
  font-size: 14px;
  font-weight: 600;
  color: var(--accent);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 16px;
  display: block;
}

.project p {
  font-size: 16px;
  line-height: 1.7;
  margin-bottom: 16px;
}

.project .quote {
  font-style: italic;
  color: var(--primary);
  padding: 16px 24px;
  background: #ffffff;
  border-left: 4px solid var(--accent);
  margin-top: 24px;
}

/* PROCESS PAGE - Detailed Steps */
.process-intro {
  background: var(--light);
  text-align: center;
}

.step .duration {
  font-family: 'Montserrat', sans-serif;
  font-size: 14px;
  font-weight: 600;
  color: var(--accent);
  text-transform: uppercase;
  letter-spacing: 1px;
  display: block;
  margin-bottom: 12px;
}

.step .cost {
  font-size: 14px;
  color: #666;
  margin-top: 12px;
  display: block;
}

/* TIMELINE EXAMPLE */
.timeline-example {
  background: var(--dark);
  color: #ffffff;
}

.timeline-example h2 {
  color: #ffffff;
}

.timeline-example ul {
  max-width: 700px;
  margin: 32px auto 0;
}

.timeline-example li {
  padding: 16px 16px 16px 48px;
  margin-bottom: 12px;
  background: rgba(255, 255, 255, 0.1);
  border-left: 4px solid var(--accent);
  position: relative;
  font-size: 16px;
  clip-path: polygon(0 0, 100% 0, 100% calc(100% - 8px), calc(100% - 8px) 100%, 0 100%);
}

.timeline-example li::before {
  content: '';
  position: absolute;
  left: 12px;
  top: 50%;
  transform: translateY(-50%);
  width: 12px;
  height: 12px;
  background: var(--accent);
  clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
  transform: translateY(-50%) rotate(45deg);
}

/* FAQ SECTION */
.faq {
  background: var(--light);
}

.faq-item {
  background: #ffffff;
  padding: 32px;
  margin-bottom: 24px;
  border: 3px solid var(--dark);
  clip-path: polygon(12px 0, 100% 0, 100% calc(100% - 12px), calc(100% - 12px) 100%, 0 100%, 0 12px);
  transition: all 0.3s ease;
}

.faq-item:hover {
  border-color: var(--primary);
  transform: translateX(4px);
}

.faq-item h3 {
  font-size: 18px;
  margin-bottom: 12px;
  color: var(--dark);
}

.faq-item p {
  font-size: 15px;
  color: #666;
  margin: 0;
}

/* CONTACT PAGE */
.contact-methods {
  background: var(--light);
}

.contact-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  justify-content: center;
}

.contact-method {
  flex: 1 1 300px;
  max-width: 400px;
  background: #ffffff;
  padding: 40px 32px;
  text-align: center;
  border: 3px solid var(--primary);
  clip-path: polygon(12px 0, 100% 0, 100% calc(100% - 12px), calc(100% - 12px) 100%, 0 100%, 0 12px);
  transition: all 0.3s ease;
}

.contact-method:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 24px var(--shadow);
}

.contact-method h3 {
  font-size: 20px;
  margin-bottom: 16px;
  color: var(--dark);
}

.contact-method p {
  font-size: 16px;
  color: #666;
  margin-bottom: 8px;
}

.contact-form-section {
  background: #ffffff;
  text-align: center;
}

.form-note {
  max-width: 700px;
  margin: 32px auto 0;
  padding: 24px;
  background: var(--light);
  border: 2px solid var(--accent);
  clip-path: polygon(8px 0, 100% 0, 100% calc(100% - 8px), calc(100% - 8px) 100%, 0 100%, 0 8px);
}

.form-note p {
  font-size: 14px;
  color: #666;
  margin-bottom: 8px;
}

/* CONSULTATION SECTION */
.consultation {
  background: var(--dark);
  color: #ffffff;
}

.consultation h2 {
  color: #ffffff;
}

.consultation ul {
  max-width: 600px;
  margin: 32px auto;
}

.consultation li {
  padding: 12px 12px 12px 40px;
  margin-bottom: 12px;
  position: relative;
  font-size: 16px;
}

.consultation li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 16px;
  width: 20px;
  height: 20px;
  background: var(--accent);
  clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
  transform: rotate(45deg);
}

.cost {
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  color: var(--accent);
  font-size: 20px;
  margin-top: 16px;
  display: block;
}

/* OFFICE LOCATION & SERVICE AREAS */
.office-location,
.service-areas {
  background: var(--light);
  text-align: center;
}

.contact-promise {
  background: #ffffff;
}

.promise-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  justify-content: center;
}

.promise {
  flex: 1 1 280px;
  max-width: 350px;
  background: var(--light);
  padding: 32px 24px;
  text-align: center;
  border: 3px solid var(--primary);
  clip-path: polygon(10px 0, 100% 0, 100% calc(100% - 10px), calc(100% - 10px) 100%, 0 100%, 0 10px);
  transition: all 0.3s ease;
}

.promise:hover {
  transform: translateY(-8px);
  border-color: var(--dark);
  box-shadow: 0 8px 16px var(--shadow);
}

.promise h3 {
  font-size: 18px;
  margin-bottom: 12px;
  color: var(--dark);
}

.promise p {
  font-size: 14px;
  color: #666;
  margin: 0;
}

/* LEGAL PAGES */
.legal-content {
  background: #ffffff;
}

.legal-content h2 {
  text-align: left;
  font-size: 24px;
  margin-top: 40px;
  margin-bottom: 16px;
  color: var(--dark);
  padding-bottom: 8px;
  border-bottom: 2px solid var(--accent);
}

.legal-content h2::after {
  display: none;
}

.legal-content h3 {
  font-size: 18px;
  margin-top: 24px;
  margin-bottom: 12px;
  color: var(--primary);
}

.legal-content p {
  font-size: 15px;
  line-height: 1.8;
  margin-bottom: 16px;
  color: #333;
}

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

.legal-content li {
  padding: 8px 0 8px 24px;
  position: relative;
  font-size: 15px;
  line-height: 1.7;
}

.legal-content li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 16px;
  width: 8px;
  height: 8px;
  background: var(--primary);
  clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
  transform: rotate(45deg);
}

.update {
  font-size: 14px;
  color: #666;
  font-style: italic;
}

/* THANK YOU PAGE */
.thank-you-hero {
  background: var(--primary);
  color: #ffffff;
  padding: 100px 20px;
  text-align: center;
}

.thank-you-icon {
  width: 100px;
  height: 100px;
  line-height: 100px;
  background: var(--accent);
  color: var(--dark);
  font-size: 60px;
  margin: 0 auto 24px;
  clip-path: polygon(12px 0, 100% 0, 100% calc(100% - 12px), calc(100% - 12px) 100%, 0 100%, 0 12px);
  animation: checkmark 0.6s ease-in-out;
}

@keyframes checkmark {
  0% { transform: scale(0) rotate(-45deg); }
  50% { transform: scale(1.2) rotate(5deg); }
  100% { transform: scale(1) rotate(0); }
}

.thank-you-hero h1 {
  color: #ffffff;
}

.confirmation {
  background: #ffffff;
}

.confirmation .steps {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  justify-content: center;
  margin: 40px 0;
}

.confirmation .step {
  flex: 1 1 250px;
  max-width: 300px;
  text-align: center;
  padding: 32px 24px;
  background: var(--light);
  border: 3px solid var(--primary);
  clip-path: polygon(10px 0, 100% 0, 100% calc(100% - 10px), calc(100% - 10px) 100%, 0 100%, 0 10px);
}

.confirmation .step .number {
  display: inline-block;
  width: 50px;
  height: 50px;
  line-height: 50px;
  background: var(--accent);
  color: var(--dark);
  font-family: 'Montserrat', sans-serif;
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 16px;
  clip-path: polygon(6px 0, 100% 0, 100% calc(100% - 6px), calc(100% - 6px) 100%, 0 100%, 0 6px);
}

.confirmation .step p {
  font-size: 15px;
  color: #666;
  margin: 0;
}

.email-note {
  font-size: 14px;
  color: #666;
  font-style: italic;
  max-width: 600px;
  margin: 32px auto 0;
}

.what-next {
  background: var(--light);
}

.options-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  justify-content: center;
}

.option {
  flex: 1 1 300px;
  max-width: 350px;
  background: #ffffff;
  padding: 40px 32px;
  text-align: center;
  border: 3px solid var(--dark);
  clip-path: polygon(12px 0, 100% 0, 100% calc(100% - 12px), calc(100% - 12px) 100%, 0 100%, 0 12px);
  transition: all 0.3s ease;
}

.option:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 24px var(--shadow);
}

.option h3 {
  font-size: 18px;
  margin-bottom: 24px;
  color: var(--dark);
}

.testimonial {
  background: #ffffff;
}

.return-home {
  background: var(--light);
  text-align: center;
  padding: 60px 20px;
}

/* FOOTER - Geometric Structure */
footer {
  background: var(--dark);
  color: #ffffff;
  padding: 60px 0 0;
  border-top: 6px solid var(--accent);
}

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

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

.footer-section h3,
.footer-section h4 {
  color: var(--accent);
  font-size: 16px;
  margin-bottom: 16px;
  text-transform: uppercase;
  letter-spacing: 2px;
}

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

.footer-nav {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.footer-nav a {
  color: rgba(255, 255, 255, 0.8);
  font-size: 14px;
  padding: 8px 0;
  border-bottom: 1px solid transparent;
  transition: all 0.3s ease;
}

.footer-nav a:hover {
  color: var(--accent);
  padding-left: 8px;
  border-bottom-color: var(--accent);
}

.footer-bottom {
  border-top: 2px solid rgba(255, 255, 255, 0.1);
  padding: 24px 0;
  text-align: center;
}

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

/* COOKIE CONSENT BANNER - Geometric */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: var(--dark);
  color: #ffffff;
  padding: 24px;
  box-shadow: 0 -4px 16px rgba(0, 0, 0, 0.3);
  z-index: 998;
  transform: translateY(100%);
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  border-top: 4px solid var(--accent);
}

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

.cookie-content {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.cookie-text {
  flex: 1 1 400px;
  font-size: 14px;
  line-height: 1.6;
}

.cookie-text a {
  color: var(--accent);
  text-decoration: underline;
}

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

.cookie-buttons button {
  padding: 12px 24px;
  font-family: 'Montserrat', sans-serif;
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  border: 2px solid;
  cursor: pointer;
  transition: all 0.3s ease;
  clip-path: polygon(6px 0, 100% 0, 100% calc(100% - 6px), calc(100% - 6px) 100%, 0 100%, 0 6px);
}

#acceptCookies {
  background: var(--accent);
  border-color: var(--accent);
  color: var(--dark);
}

#acceptCookies:hover {
  background: #ffffff;
  border-color: #ffffff;
}

#rejectCookies {
  background: transparent;
  border-color: rgba(255, 255, 255, 0.5);
  color: #ffffff;
}

#rejectCookies:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: #ffffff;
}

#cookieSettings {
  background: transparent;
  border-color: var(--accent);
  color: var(--accent);
}

#cookieSettings:hover {
  background: var(--accent);
  color: var(--dark);
}

/* COOKIE MODAL - Geometric Popup */
.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: 1002;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}

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

.cookie-modal-content {
  background: #ffffff;
  max-width: 600px;
  width: 90%;
  max-height: 80vh;
  overflow-y: auto;
  padding: 40px;
  position: relative;
  clip-path: polygon(16px 0, 100% 0, 100% calc(100% - 16px), calc(100% - 16px) 100%, 0 100%, 0 16px);
  transform: scale(0.9);
  transition: transform 0.3s ease;
}

.cookie-modal.active .cookie-modal-content {
  transform: scale(1);
}

.cookie-modal h3 {
  color: var(--dark);
  font-size: 24px;
  margin-bottom: 24px;
}

.cookie-category {
  padding: 20px;
  margin-bottom: 16px;
  background: var(--light);
  border: 2px solid var(--border);
  clip-path: polygon(8px 0, 100% 0, 100% calc(100% - 8px), calc(100% - 8px) 100%, 0 100%, 0 8px);
}

.cookie-category h4 {
  font-size: 16px;
  margin-bottom: 8px;
  color: var(--primary);
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.cookie-category p {
  font-size: 14px;
  color: #666;
  margin: 0;
}

.cookie-toggle {
  width: 50px;
  height: 26px;
  background: #ccc;
  border: none;
  cursor: pointer;
  position: relative;
  clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
  transition: background 0.3s ease;
}

.cookie-toggle::after {
  content: '';
  position: absolute;
  top: 3px;
  left: 3px;
  width: 20px;
  height: 20px;
  background: #ffffff;
  transition: left 0.3s ease;
}

.cookie-toggle.active {
  background: var(--primary);
}

.cookie-toggle.active::after {
  left: 27px;
}

.cookie-toggle:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}

.cookie-modal-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 32px;
  padding-top: 24px;
  border-top: 2px solid var(--border);
}

.cookie-modal-buttons button {
  flex: 1 1 120px;
  padding: 14px 20px;
  font-family: 'Montserrat', sans-serif;
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  border: 2px solid;
  cursor: pointer;
  transition: all 0.3s ease;
  clip-path: polygon(6px 0, 100% 0, 100% calc(100% - 6px), calc(100% - 6px) 100%, 0 100%, 0 6px);
}

#savePreferences {
  background: var(--primary);
  border-color: var(--primary);
  color: #ffffff;
}

#savePreferences:hover {
  background: var(--dark);
  border-color: var(--dark);
}

#closeModal {
  background: transparent;
  border-color: var(--border);
  color: var(--dark);
}

#closeModal:hover {
  background: var(--light);
}

/* RESPONSIVE DESIGN - Mobile First */
@media (max-width: 768px) {
  h1 { font-size: 32px; }
  h2 { font-size: 24px; }
  h3 { font-size: 18px; }
  
  .main-nav {
    display: none;
  }
  
  .mobile-menu-toggle {
    display: block;
  }
  
  .hero {
    padding: 80px 0 60px;
  }
  
  .hero h1 {
    font-size: 36px;
  }
  
  .hero-subheading {
    font-size: 16px;
  }
  
  .hero-cta {
    flex-direction: column;
  }
  
  .hero-cta .btn {
    width: 100%;
    text-align: center;
  }
  
  .trust-badges {
    flex-direction: column;
    gap: 16px;
  }
  
  .trust-badges span {
    display: block;
    text-align: center;
  }
  
  section {
    padding: 60px 0;
  }
  
  .features-grid {
    flex-direction: column;
  }
  
  .feature {
    flex: 1 1 100%;
  }
  
  .services-grid {
    flex-direction: column;
  }
  
  .service-card {
    flex: 1 1 100%;
  }
  
  .process-steps {
    flex-direction: column;
  }
  
  .step {
    flex: 1 1 100%;
  }
  
  .testimonials-grid {
    flex-direction: column;
  }
  
  .testimonial-card {
    flex: 1 1 100%;
  }
  
  .values-grid {
    flex-direction: column;
  }
  
  .value {
    flex: 1 1 100%;
  }
  
  .team-grid {
    flex-direction: column;
  }
  
  .team-member {
    flex: 1 1 100%;
  }
  
  .contact-grid {
    flex-direction: column;
  }
  
  .contact-method {
    flex: 1 1 100%;
  }
  
  .footer-content {
    flex-direction: column;
    gap: 32px;
  }
  
  .footer-section {
    flex: 1 1 100%;
  }
  
  .cookie-content {
    flex-direction: column;
  }
  
  .cookie-text {
    flex: 1 1 100%;
  }
  
  .cookie-buttons {
    width: 100%;
    flex-direction: column;
  }
  
  .cookie-buttons button {
    width: 100%;
  }
  
  .cookie-modal-content {
    width: 95%;
    padding: 24px;
  }
  
  .cookie-modal-buttons {
    flex-direction: column;
  }
  
  .cookie-modal-buttons button {
    width: 100%;
  }
}

@media (max-width: 480px) {
  h1 { font-size: 28px; }
  h2 { font-size: 20px; }
  
  .container {
    padding: 0 16px;
  }
  
  .btn {
    padding: 14px 24px;
    font-size: 12px;
  }
  
  .hero h1 {
    font-size: 28px;
  }
  
  .cta-section h2 {
    font-size: 28px;
  }
  
  .service-card,
  .testimonial-card,
  .value,
  .team-member,
  .contact-method,
  .option {
    padding: 24px 20px;
  }
}

/* PRINT STYLES */
@media print {
  header,
  .mobile-menu-toggle,
  .mobile-menu,
  .cookie-banner,
  .cookie-modal,
  footer {
    display: none;
  }
  
  body {
    color: #000;
    background: #fff;
  }
  
  .hero,
  .hero-internal,
  .cta-section {
    background: #fff;
    color: #000;
  }
  
  a {
    color: #000;
    text-decoration: underline;
  }
}