/* ==========================================
   BrightSpear Smart Home - Geometric Structured Design
   Design Style: Geometric shapes, structured grids, angular fonts
   ========================================== */

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

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

body {
  font-family: 'Open Sans', 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  font-size: 16px;
  line-height: 1.6;
  color: #1a1a1a;
  background: #f5f5f5;
  overflow-x: hidden;
}

/* ==========================================
   TYPOGRAPHY - GEOMETRIC STRUCTURED STYLE
   ========================================== */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', 'Arial Black', sans-serif;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 16px;
  color: #1a4565;
  text-transform: uppercase;
  letter-spacing: 1px;
}

h1 {
  font-size: 48px;
  margin-bottom: 24px;
}

h2 {
  font-size: 32px;
  margin-bottom: 24px;
  position: relative;
}

h2::before {
  content: '';
  position: absolute;
  left: 0;
  bottom: -8px;
  width: 60px;
  height: 4px;
  background: #D97706;
  clip-path: polygon(0 0, 90% 0, 100% 100%, 0% 100%);
}

h3 {
  font-size: 24px;
  margin-bottom: 16px;
}

h4 {
  font-size: 18px;
  margin-bottom: 16px;
}

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

a {
  color: #1a4565;
  text-decoration: none;
  transition: all 0.3s ease;
}

a:hover {
  color: #D97706;
}

ul {
  list-style: none;
}

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

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

/* ==========================================
   HEADER - GEOMETRIC DESIGN
   ========================================== */
header {
  background: #ffffff;
  border-bottom: 4px solid #1a4565;
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  clip-path: polygon(0 0, 100% 0, 100% calc(100% - 8px), 0 100%);
}

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

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

.main-nav {
  display: none;
}

.main-nav a {
  display: inline-block;
  padding: 12px 20px;
  margin: 0 4px;
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: #1a4565;
  background: #f5f5f5;
  clip-path: polygon(8px 0, 100% 0, calc(100% - 8px) 100%, 0 100%);
  transition: all 0.3s ease;
}

.main-nav a:hover,
.main-nav a.active {
  background: #1a4565;
  color: #ffffff;
  transform: translateY(-2px);
}

.header-cta {
  display: none;
}

/* ==========================================
   MOBILE MENU TOGGLE BUTTON
   ========================================== */
.mobile-menu-toggle {
  position: fixed;
  top: 20px;
  right: 20px;
  z-index: 2000;
  background: #1a4565;
  color: #ffffff;
  border: none;
  width: 50px;
  height: 50px;
  font-size: 24px;
  cursor: pointer;
  clip-path: polygon(10% 0, 100% 0, 90% 100%, 0 100%);
  transition: all 0.3s ease;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.mobile-menu-toggle:hover {
  background: #D97706;
  transform: scale(1.05);
}

/* ==========================================
   MOBILE MENU OVERLAY
   ========================================== */
.mobile-menu {
  position: fixed;
  top: 0;
  right: -100%;
  width: 280px;
  height: 100vh;
  background: #1a4565;
  z-index: 1999;
  transition: right 0.4s ease;
  overflow-y: auto;
  box-shadow: -4px 0 16px rgba(0, 0, 0, 0.3);
  clip-path: polygon(20px 0, 100% 0, 100% 100%, 0 100%);
}

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

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

.mobile-menu-close:hover {
  background: #D97706;
  border-color: #D97706;
  transform: rotate(90deg);
}

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

.mobile-nav a {
  display: block;
  padding: 16px 20px;
  color: #ffffff;
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  font-size: 16px;
  text-transform: uppercase;
  letter-spacing: 1px;
  background: rgba(255, 255, 255, 0.1);
  clip-path: polygon(12px 0, 100% 0, calc(100% - 12px) 100%, 0 100%);
  transition: all 0.3s ease;
}

.mobile-nav a:hover {
  background: #D97706;
  transform: translateX(8px);
}

/* ==========================================
   BUTTONS - GEOMETRIC STYLE
   ========================================== */
.btn-primary,
.btn-secondary {
  display: inline-block;
  padding: 16px 32px;
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 1px;
  text-align: center;
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
  margin: 8px;
}

.btn-primary {
  background: #D97706;
  color: #ffffff;
  clip-path: polygon(12px 0, 100% 0, calc(100% - 12px) 100%, 0 100%);
  box-shadow: 0 4px 8px rgba(217, 119, 6, 0.3);
}

.btn-primary:hover {
  background: #1a4565;
  transform: translateY(-2px);
  box-shadow: 0 6px 12px rgba(26, 69, 101, 0.4);
}

.btn-secondary {
  background: transparent;
  color: #1a4565;
  border: 3px solid #1a4565;
  clip-path: polygon(12px 0, 100% 0, calc(100% - 12px) 100%, 0 100%);
}

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

/* ==========================================
   HERO SECTION - GEOMETRIC DESIGN
   ========================================== */
.hero {
  background: linear-gradient(135deg, #1a4565 0%, #0d2438 100%);
  color: #ffffff;
  padding: 80px 20px;
  position: relative;
  overflow: hidden;
  clip-path: polygon(0 0, 100% 0, 100% calc(100% - 40px), 0 100%);
  margin-bottom: 60px;
}

.hero::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -10%;
  width: 600px;
  height: 600px;
  background: rgba(217, 119, 6, 0.1);
  clip-path: polygon(30% 0%, 70% 0%, 100% 30%, 100% 70%, 70% 100%, 30% 100%, 0% 70%, 0% 30%);
  animation: rotate 20s linear infinite;
}

@keyframes rotate {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

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

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

.hero-subtitle {
  font-size: 18px;
  margin-bottom: 32px;
  color: #e0e0e0;
}

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

.trust-indicators {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-top: 32px;
}

.trust-indicators span {
  display: inline-block;
  padding: 12px 20px;
  background: rgba(255, 255, 255, 0.15);
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  font-size: 14px;
  clip-path: polygon(8px 0, 100% 0, calc(100% - 8px) 100%, 0 100%);
  border: 2px solid rgba(217, 119, 6, 0.5);
}

.breadcrumb {
  margin-bottom: 24px;
  color: #e0e0e0;
  font-size: 14px;
}

.breadcrumb a {
  color: #D97706;
}

/* ==========================================
   SECTIONS - STRUCTURED LAYOUT
   ========================================== */
section {
  margin-bottom: 60px;
  padding: 40px 20px;
}

.section-subtitle {
  text-align: center;
  font-size: 18px;
  color: #666;
  margin-bottom: 40px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.section-cta {
  text-align: center;
  margin-top: 40px;
}

/* ==========================================
   VALUE PROPOSITION - GEOMETRIC GRID
   ========================================== */
.value-proposition {
  background: #ffffff;
  clip-path: polygon(0 20px, 100% 0, 100% calc(100% - 20px), 0 100%);
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
}

.value-proposition h2 {
  text-align: center;
}

.value-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: space-between;
  margin-top: 40px;
}

.value-card {
  flex: 1 1 280px;
  min-width: 280px;
  padding: 32px 24px;
  background: #f5f5f5;
  clip-path: polygon(16px 0, 100% 0, calc(100% - 16px) 100%, 0 100%);
  border-left: 4px solid #D97706;
  transition: all 0.3s ease;
  position: relative;
}

.value-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.15);
  background: #1a4565;
  color: #ffffff;
}

.value-card:hover h3,
.value-card:hover p {
  color: #ffffff;
}

.value-card h3 {
  font-size: 20px;
  margin-bottom: 12px;
}

.value-card p {
  font-size: 14px;
  line-height: 1.6;
}

/* ==========================================
   SERVICES GRID - ANGULAR CARDS
   ========================================== */
.services-overview,
.services-grid-section,
.solutions-by-room {
  background: #f9f9f9;
}

.services-overview h2,
.services-grid-section h2,
.solutions-by-room h2 {
  text-align: center;
}

.services-grid,
.solutions-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: space-between;
  margin-top: 40px;
}

.service-card,
.solution-card {
  flex: 1 1 340px;
  min-width: 300px;
  padding: 32px 24px;
  background: #ffffff;
  clip-path: polygon(0 0, calc(100% - 20px) 0, 100% 20px, 100% 100%, 20px 100%, 0 calc(100% - 20px));
  border: 3px solid #1a4565;
  transition: all 0.3s ease;
  position: relative;
  margin-bottom: 20px;
}

.service-card::before,
.solution-card::before {
  content: '';
  position: absolute;
  top: -3px;
  right: -3px;
  width: 40px;
  height: 40px;
  background: #D97706;
  clip-path: polygon(0 0, 100% 0, 100% 100%);
}

.service-card:hover,
.solution-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.15);
  border-color: #D97706;
}

.service-card h3,
.solution-card h3 {
  font-size: 20px;
  margin-bottom: 16px;
  color: #1a4565;
}

.service-card p,
.solution-card p {
  font-size: 14px;
  line-height: 1.6;
  margin-bottom: 16px;
}

.price {
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 24px;
  color: #D97706;
  margin-top: 16px;
}

/* ==========================================
   HOW IT WORKS - PROCESS STEPS
   ========================================== */
.how-it-works,
.process {
  background: #ffffff;
  clip-path: polygon(0 20px, 100% 0, 100% calc(100% - 20px), 0 100%);
}

.how-it-works h2,
.process h2 {
  text-align: center;
}

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

.step {
  flex: 1 1 220px;
  min-width: 200px;
  padding: 24px 20px;
  background: #f5f5f5;
  text-align: center;
  clip-path: polygon(20% 0, 100% 0, 80% 100%, 0 100%);
  border-bottom: 4px solid #D97706;
  transition: all 0.3s ease;
  position: relative;
}

.step::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: #1a4565;
}

.step:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
}

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

.step p {
  font-size: 14px;
  line-height: 1.5;
}

/* ==========================================
   TESTIMONIALS - GEOMETRIC CARDS
   ========================================== */
.testimonials {
  background: #f9f9f9;
  padding: 60px 20px;
}

.testimonials h2 {
  text-align: center;
}

.testimonials-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: space-between;
  margin-top: 40px;
}

.testimonial-card {
  flex: 1 1 400px;
  min-width: 300px;
  padding: 32px 24px;
  background: #ffffff;
  clip-path: polygon(0 0, 100% 0, 100% calc(100% - 16px), calc(100% - 16px) 100%, 0 100%);
  border-left: 4px solid #D97706;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  position: relative;
  margin-bottom: 20px;
}

.testimonial-card::before {
  content: '"';
  position: absolute;
  top: 16px;
  left: 16px;
  font-size: 72px;
  font-family: Georgia, serif;
  color: rgba(217, 119, 6, 0.2);
  line-height: 1;
}

.testimonial-card p {
  position: relative;
  z-index: 1;
  font-size: 16px;
  line-height: 1.6;
  color: #333;
  margin-bottom: 16px;
}

.testimonial-author {
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  font-size: 14px;
  color: #1a4565;
  text-align: right;
}

.rating {
  text-align: center;
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 18px;
  color: #D97706;
  margin-top: 32px;
}

/* ==========================================
   CTA SECTION - BOLD GEOMETRIC
   ========================================== */
.cta-section {
  background: linear-gradient(135deg, #1a4565 0%, #0d2438 100%);
  color: #ffffff;
  padding: 80px 20px;
  text-align: center;
  clip-path: polygon(0 20px, 100% 0, 100% calc(100% - 20px), 0 100%);
  margin-bottom: 60px;
}

.cta-section h2 {
  color: #ffffff;
  font-size: 36px;
  margin-bottom: 16px;
}

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

.cta-section p {
  font-size: 18px;
  color: #e0e0e0;
  margin-bottom: 32px;
}

.cta-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  justify-content: center;
}

/* ==========================================
   PACKAGES - PRICING GRID
   ========================================== */
.packages {
  background: #ffffff;
}

.packages h2 {
  text-align: center;
}

.packages-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: space-between;
  margin-top: 40px;
}

.package-card {
  flex: 1 1 320px;
  min-width: 280px;
  padding: 40px 32px;
  background: #f5f5f5;
  text-align: center;
  clip-path: polygon(0 16px, 16px 0, 100% 0, 100% calc(100% - 16px), calc(100% - 16px) 100%, 0 100%);
  border: 3px solid #1a4565;
  transition: all 0.3s ease;
  position: relative;
  margin-bottom: 20px;
}

.package-card:hover {
  transform: scale(1.05);
  background: #1a4565;
  color: #ffffff;
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.2);
}

.package-card:hover h3,
.package-card:hover p,
.package-card:hover .price {
  color: #ffffff;
}

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

/* ==========================================
   WARRANTY & FEATURES
   ========================================== */
.warranty,
.certifications,
.ecosystem-integration {
  background: #ffffff;
  padding: 60px 20px;
  text-align: center;
}

.warranty-grid,
.needs-grid,
.reasons-grid,
.areas-grid,
.categories-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: space-between;
  margin-top: 40px;
}

.warranty-item,
.need-card,
.reason-card,
.area-card,
.category-card {
  flex: 1 1 280px;
  min-width: 250px;
  padding: 32px 24px;
  background: #f5f5f5;
  clip-path: polygon(12px 0, 100% 0, calc(100% - 12px) 100%, 0 100%);
  border-top: 4px solid #D97706;
  transition: all 0.3s ease;
  margin-bottom: 20px;
}

.warranty-item:hover,
.need-card:hover,
.reason-card:hover,
.area-card:hover,
.category-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
}

.warranty-item h3,
.need-card h3,
.reason-card h3,
.area-card h3,
.category-card h3 {
  font-size: 18px;
  margin-bottom: 12px;
  color: #1a4565;
}

/* ==========================================
   PROJECTS & PORTFOLIO
   ========================================== */
.featured-projects,
.results-metrics,
.project-categories {
  padding: 60px 20px;
}

.projects-grid,
.metrics-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: space-between;
  margin-top: 40px;
}

.project-card {
  flex: 1 1 380px;
  min-width: 320px;
  padding: 32px 24px;
  background: #ffffff;
  clip-path: polygon(0 0, calc(100% - 24px) 0, 100% 24px, 100% 100%, 0 100%);
  border: 3px solid #1a4565;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  position: relative;
  margin-bottom: 20px;
}

.project-card::before {
  content: '';
  position: absolute;
  top: -3px;
  right: -3px;
  width: 48px;
  height: 48px;
  background: #D97706;
  clip-path: polygon(0 0, 100% 0, 100% 100%);
}

.project-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.15);
  border-color: #D97706;
}

.project-details {
  font-size: 12px;
  color: #666;
  margin-bottom: 16px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.results {
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  font-size: 14px;
  color: #D97706;
  margin: 16px 0;
}

.testimonial {
  font-style: italic;
  background: #f5f5f5;
  padding: 16px;
  margin-top: 16px;
  clip-path: polygon(8px 0, 100% 0, calc(100% - 8px) 100%, 0 100%);
  color: #333;
}

.metric {
  flex: 1 1 220px;
  min-width: 200px;
  padding: 32px 24px;
  background: #1a4565;
  color: #ffffff;
  text-align: center;
  clip-path: polygon(20% 0, 100% 0, 80% 100%, 0 100%);
  transition: all 0.3s ease;
  margin-bottom: 20px;
}

.metric:hover {
  transform: scale(1.05);
  background: #D97706;
}

.metric h3 {
  font-size: 48px;
  color: #ffffff;
  margin-bottom: 8px;
}

.metric p {
  font-size: 14px;
  color: #e0e0e0;
}

/* ==========================================
   COMPANY STORY & MISSION
   ========================================== */
.company-story,
.mission-vision,
.why-choose-us {
  padding: 60px 20px;
}

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

.milestone {
  flex: 1 1 220px;
  min-width: 200px;
  padding: 24px 20px;
  background: #f5f5f5;
  text-align: center;
  clip-path: polygon(0 0, 100% 0, 100% calc(100% - 12px), calc(100% - 12px) 100%, 0 100%);
  border-left: 4px solid #D97706;
  margin-bottom: 20px;
}

.milestone h3 {
  font-size: 32px;
  color: #D97706;
  margin-bottom: 12px;
}

.mission-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: space-between;
  margin-top: 40px;
}

.mission-card {
  flex: 1 1 400px;
  min-width: 320px;
  padding: 32px 24px;
  background: #ffffff;
  clip-path: polygon(0 16px, 16px 0, 100% 0, 100% 100%, 0 100%);
  border: 3px solid #1a4565;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  margin-bottom: 20px;
}

.mission-card h3 {
  font-size: 24px;
  margin-bottom: 16px;
}

.values {
  margin-top: 40px;
  padding: 32px 24px;
  background: #f5f5f5;
  clip-path: polygon(0 0, 100% 0, 100% calc(100% - 16px), calc(100% - 16px) 100%, 0 100%);
}

.values h3 {
  text-align: center;
  margin-bottom: 24px;
}

.values ul {
  max-width: 700px;
  margin: 0 auto;
}

.values li {
  padding: 12px 0 12px 24px;
  position: relative;
  font-size: 16px;
  line-height: 1.6;
}

.values li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 18px;
  width: 12px;
  height: 12px;
  background: #D97706;
  clip-path: polygon(50% 0%, 100% 50%, 50% 100%, 0% 50%);
}

/* ==========================================
   SHOWROOM & LOCATION
   ========================================== */
.showroom,
.location,
.service-areas {
  padding: 60px 20px;
  background: #ffffff;
}

.showroom {
  text-align: center;
}

.location-info {
  max-width: 600px;
  margin: 40px auto;
  padding: 32px 24px;
  background: #f5f5f5;
  clip-path: polygon(0 0, 100% 0, 100% calc(100% - 20px), calc(100% - 20px) 100%, 0 100%);
  border-left: 4px solid #D97706;
}

/* ==========================================
   CONTACT PAGE
   ========================================== */
.contact-options {
  padding: 40px 20px;
}

.contact-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: space-between;
  margin-top: 40px;
}

.contact-card {
  flex: 1 1 280px;
  min-width: 250px;
  padding: 32px 24px;
  background: #ffffff;
  text-align: center;
  clip-path: polygon(12px 0, 100% 0, calc(100% - 12px) 100%, 0 100%);
  border: 3px solid #1a4565;
  transition: all 0.3s ease;
  margin-bottom: 20px;
}

.contact-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
  border-color: #D97706;
}

.contact-form-section {
  padding: 60px 20px;
  background: #f9f9f9;
}

.form-wrapper {
  max-width: 800px;
  margin: 0 auto;
}

.form-note {
  background: #ffffff;
  padding: 24px;
  margin-bottom: 24px;
  clip-path: polygon(0 0, 100% 0, 100% calc(100% - 12px), calc(100% - 12px) 100%, 0 100%);
  border-left: 4px solid #D97706;
}

.form-note p {
  margin-bottom: 8px;
  color: #333;
}

.form-placeholder {
  background: #ffffff;
  padding: 40px 32px;
  clip-path: polygon(0 0, 100% 0, 100% calc(100% - 16px), calc(100% - 16px) 100%, 0 100%);
  border: 3px solid #1a4565;
  text-align: center;
}

.form-placeholder p {
  margin-bottom: 16px;
  color: #333;
}

/* ==========================================
   LEGAL PAGES
   ========================================== */
.legal-hero {
  background: #1a4565;
  color: #ffffff;
  padding: 60px 20px;
  clip-path: polygon(0 0, 100% 0, 100% calc(100% - 20px), 0 100%);
}

.legal-hero h1 {
  color: #ffffff;
}

.legal-hero p {
  color: #e0e0e0;
}

.legal-content {
  padding: 60px 20px;
  background: #ffffff;
}

.text-section {
  max-width: 900px;
  margin: 0 auto 40px;
  padding: 32px 24px;
  background: #f9f9f9;
  clip-path: polygon(0 0, 100% 0, 100% calc(100% - 12px), calc(100% - 12px) 100%, 0 100%);
  border-left: 4px solid #1a4565;
}

.text-section h2,
.text-section h3 {
  margin-top: 24px;
  margin-bottom: 16px;
}

.text-section p,
.text-section ul,
.text-section li {
  margin-bottom: 12px;
  line-height: 1.8;
  color: #333;
}

/* ==========================================
   THANK YOU PAGE
   ========================================== */
.thank-you-hero {
  background: linear-gradient(135deg, #1a4565 0%, #0d2438 100%);
  color: #ffffff;
  padding: 80px 20px;
  text-align: center;
  clip-path: polygon(0 20px, 100% 0, 100% calc(100% - 20px), 0 100%);
}

.thank-you-content h1 {
  color: #ffffff;
  font-size: 42px;
}

.confirmation-message {
  font-size: 24px;
  font-weight: 700;
  color: #D97706;
  margin: 16px 0;
}

.next-steps,
.while-you-wait,
.contact-confirmation,
.social-proof,
.return-navigation {
  padding: 60px 20px;
}

.resources-grid,
.stats-grid,
.nav-links {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: center;
  margin-top: 40px;
}

.resource-card,
.stat {
  flex: 1 1 280px;
  min-width: 250px;
  padding: 32px 24px;
  background: #ffffff;
  text-align: center;
  clip-path: polygon(12px 0, 100% 0, calc(100% - 12px) 100%, 0 100%);
  border: 3px solid #1a4565;
  transition: all 0.3s ease;
  margin-bottom: 20px;
}

.resource-card:hover,
.stat:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
  border-color: #D97706;
}

.stat h3 {
  font-size: 48px;
  color: #D97706;
}

/* ==========================================
   SMART SCENARIOS
   ========================================== */
.smart-scenarios {
  background: #f9f9f9;
  padding: 60px 20px;
}

.scenarios-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: space-between;
  margin-top: 40px;
}

.scenario-card {
  flex: 1 1 260px;
  min-width: 240px;
  padding: 32px 24px;
  background: #ffffff;
  text-align: center;
  clip-path: polygon(16px 0, 100% 0, calc(100% - 16px) 100%, 0 100%);
  border-bottom: 4px solid #D97706;
  transition: all 0.3s ease;
  margin-bottom: 20px;
}

.scenario-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
  background: #1a4565;
  color: #ffffff;
}

.scenario-card:hover h3,
.scenario-card:hover p {
  color: #ffffff;
}

.scenario-card h3 {
  font-size: 20px;
  margin-bottom: 12px;
}

/* ==========================================
   STATS SECTION
   ========================================== */
.stats {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: center;
  margin-top: 32px;
}

.stats span {
  display: inline-block;
  padding: 16px 24px;
  background: rgba(255, 255, 255, 0.2);
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  font-size: 16px;
  clip-path: polygon(8px 0, 100% 0, calc(100% - 8px) 100%, 0 100%);
  border: 2px solid #D97706;
}

/* ==========================================
   FOOTER - GEOMETRIC STRUCTURED
   ========================================== */
footer {
  background: #0d2438;
  color: #e0e0e0;
  padding: 60px 20px 20px;
  clip-path: polygon(0 20px, 100% 0, 100% 100%, 0 100%);
  margin-top: 60px;
}

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

.footer-info,
.footer-links,
.footer-legal,
.footer-contact {
  flex: 1 1 220px;
  min-width: 200px;
}

.footer-info img {
  height: 50px;
  margin-bottom: 16px;
}

.footer-info p,
.footer-contact p {
  font-size: 14px;
  line-height: 1.6;
  color: #b0b0b0;
}

footer h4 {
  font-size: 16px;
  color: #D97706;
  margin-bottom: 16px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.footer-links a,
.footer-legal a {
  display: block;
  padding: 8px 0;
  color: #b0b0b0;
  font-size: 14px;
  transition: all 0.3s ease;
}

.footer-links a:hover,
.footer-legal a:hover {
  color: #D97706;
  transform: translateX(4px);
}

.footer-bottom {
  text-align: center;
  padding-top: 20px;
  border-top: 2px solid rgba(217, 119, 6, 0.3);
}

.footer-bottom p {
  font-size: 14px;
  color: #888;
}

/* ==========================================
   COOKIE CONSENT BANNER
   ========================================== */
#cookie-consent {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: #1a4565;
  color: #ffffff;
  padding: 24px 20px;
  z-index: 1998;
  box-shadow: 0 -4px 16px rgba(0, 0, 0, 0.3);
  clip-path: polygon(0 0, 100% 12px, 100% 100%, 0 100%);
  transform: translateY(100%);
  transition: transform 0.4s ease;
}

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

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

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

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

.cookie-btn {
  padding: 12px 24px;
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  font-size: 14px;
  text-transform: uppercase;
  border: none;
  cursor: pointer;
  clip-path: polygon(8px 0, 100% 0, calc(100% - 8px) 100%, 0 100%);
  transition: all 0.3s ease;
}

.cookie-btn-accept {
  background: #D97706;
  color: #ffffff;
}

.cookie-btn-accept:hover {
  background: #b86505;
  transform: translateY(-2px);
}

.cookie-btn-reject {
  background: transparent;
  color: #ffffff;
  border: 2px solid #ffffff;
}

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

.cookie-btn-settings {
  background: transparent;
  color: #D97706;
  border: 2px solid #D97706;
}

.cookie-btn-settings:hover {
  background: #D97706;
  color: #ffffff;
}

/* Cookie Settings Modal */
#cookie-settings-modal {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.8);
  z-index: 2000;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 20px;
}

#cookie-settings-modal.show {
  display: flex;
}

.cookie-modal-content {
  background: #ffffff;
  max-width: 600px;
  width: 100%;
  padding: 40px 32px;
  clip-path: polygon(0 0, calc(100% - 20px) 0, 100% 20px, 100% 100%, 0 100%);
  max-height: 80vh;
  overflow-y: auto;
}

.cookie-modal-content h2 {
  color: #1a4565;
  margin-bottom: 24px;
}

.cookie-category {
  margin-bottom: 24px;
  padding: 20px;
  background: #f5f5f5;
  clip-path: polygon(8px 0, 100% 0, calc(100% - 8px) 100%, 0 100%);
}

.cookie-category h3 {
  font-size: 18px;
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

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

.cookie-toggle {
  position: relative;
  display: inline-block;
  width: 50px;
  height: 24px;
}

.cookie-toggle input {
  opacity: 0;
  width: 0;
  height: 0;
}

.cookie-slider {
  position: absolute;
  cursor: pointer;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: #ccc;
  transition: 0.3s;
  clip-path: polygon(4px 0, calc(100% - 4px) 0, 100% 4px, 100% calc(100% - 4px), calc(100% - 4px) 100%, 4px 100%, 0 calc(100% - 4px), 0 4px);
}

.cookie-slider:before {
  position: absolute;
  content: '';
  height: 16px;
  width: 16px;
  left: 4px;
  bottom: 4px;
  background: white;
  transition: 0.3s;
  clip-path: polygon(20% 0%, 80% 0%, 100% 20%, 100% 80%, 80% 100%, 20% 100%, 0% 80%, 0% 20%);
}

input:checked + .cookie-slider {
  background: #D97706;
}

input:checked + .cookie-slider:before {
  transform: translateX(26px);
}

input:disabled + .cookie-slider {
  background: #1a4565;
  cursor: not-allowed;
}

.cookie-modal-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 24px;
  justify-content: flex-end;
}

/* ==========================================
   RESPONSIVE DESIGN - DESKTOP
   ========================================== */
@media (min-width: 769px) {
  .mobile-menu-toggle {
    display: none;
  }

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

  .header-cta {
    display: block;
  }

  .hero h1 {
    font-size: 56px;
  }

  h2 {
    font-size: 42px;
  }

  .value-card {
    flex: 1 1 calc(50% - 12px);
    max-width: calc(50% - 12px);
  }

  .service-card,
  .solution-card {
    flex: 1 1 calc(50% - 12px);
    max-width: calc(50% - 12px);
  }

  .step {
    flex: 1 1 calc(20% - 20px);
    min-width: 180px;
  }

  .testimonial-card {
    flex: 1 1 calc(50% - 12px);
  }

  .package-card {
    flex: 1 1 calc(33.333% - 16px);
  }

  .project-card {
    flex: 1 1 calc(50% - 12px);
  }
}

@media (min-width: 1024px) {
  .hero h1 {
    font-size: 64px;
  }

  h2 {
    font-size: 48px;
  }

  .value-card {
    flex: 1 1 calc(25% - 18px);
    max-width: calc(25% - 18px);
  }

  .service-card,
  .solution-card {
    flex: 1 1 calc(33.333% - 16px);
    max-width: calc(33.333% - 16px);
  }

  .project-card {
    flex: 1 1 calc(33.333% - 16px);
  }

  .contact-card {
    flex: 1 1 calc(33.333% - 16px);
  }
}

/* ==========================================
   MOBILE OPTIMIZATION
   ========================================== */
@media (max-width: 768px) {
  h1 {
    font-size: 32px;
  }

  h2 {
    font-size: 28px;
  }

  h3 {
    font-size: 20px;
  }

  .hero {
    padding: 60px 20px;
  }

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

  .btn-primary,
  .btn-secondary {
    width: 100%;
    text-align: center;
  }

  .trust-indicators {
    flex-direction: column;
    gap: 12px;
  }

  .value-card,
  .service-card,
  .solution-card,
  .package-card,
  .project-card {
    flex: 1 1 100%;
    max-width: 100%;
  }

  .step {
    flex: 1 1 100%;
  }

  .testimonial-card {
    flex: 1 1 100%;
  }

  .footer-content {
    flex-direction: column;
  }

  .cookie-consent-content {
    flex-direction: column;
    text-align: center;
  }

  .cookie-consent-buttons {
    width: 100%;
    flex-direction: column;
  }

  .cookie-btn {
    width: 100%;
  }
}

/* ==========================================
   PRINT STYLES
   ========================================== */
@media print {
  .mobile-menu-toggle,
  .mobile-menu,
  #cookie-consent,
  #cookie-settings-modal,
  .header-cta,
  .cta-section,
  footer {
    display: none;
  }

  body {
    background: white;
  }

  .hero {
    background: white;
    color: black;
    clip-path: none;
  }

  a {
    text-decoration: underline;
  }
}

/* ==========================================
   ACCESSIBILITY
   ========================================== */
:focus {
  outline: 3px solid #D97706;
  outline-offset: 2px;
}

.skip-to-content {
  position: absolute;
  top: -40px;
  left: 0;
  background: #D97706;
  color: white;
  padding: 8px 16px;
  text-decoration: none;
  z-index: 100;
}

.skip-to-content:focus {
  top: 0;
}

/* ==========================================
   ANIMATIONS
   ========================================== */
@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.fade-in {
  animation: fadeIn 0.6s ease-out;
}

/* ==========================================
   UTILITY CLASSES
   ========================================== */
.text-center {
  text-align: center;
}

.mt-40 {
  margin-top: 40px;
}

.mb-40 {
  margin-bottom: 40px;
}

.hidden {
  display: none;
}

.visible {
  display: block;
}

/* END OF STYLESHEET */