/* ============================================
   ZENITH RAMBLE - VIBRANT ENERGETIC DESIGN
   Professional Fitness Assembly Services
   Style: Electric colors, dynamic layouts, bold fonts
   ============================================ */

/* ============================================
   CSS RESET & 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;
}

/* ============================================
   TYPOGRAPHY - VIBRANT & ENERGETIC
   ============================================ */

h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', sans-serif;
  font-weight: 800;
  line-height: 1.2;
  color: #1a365d;
  margin-bottom: 24px;
  text-transform: uppercase;
  letter-spacing: -0.5px;
}

h1 {
  font-size: 48px;
  background: linear-gradient(135deg, #1a365d 0%, #2d7dd2 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

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

h2::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 80px;
  height: 4px;
  background: linear-gradient(90deg, #f59e0b 0%, #ff6b35 100%);
  border-radius: 2px;
}

h3 {
  font-size: 24px;
  color: #2d7dd2;
}

h4 {
  font-size: 18px;
}

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

a {
  text-decoration: none;
  color: inherit;
  transition: all 0.3s ease;
}

ul {
  list-style: none;
}

/* ============================================
   CONTAINER & LAYOUT
   ============================================ */

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  width: 100%;
}

.section {
  margin-bottom: 60px;
  padding: 60px 20px;
}

/* ============================================
   HEADER - ELECTRIC & BOLD
   ============================================ */

header {
  background: linear-gradient(135deg, #1a365d 0%, #2d7dd2 100%);
  box-shadow: 0 4px 20px rgba(45, 125, 210, 0.3);
  position: sticky;
  top: 0;
  z-index: 1000;
  padding: 16px 0;
}

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

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

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

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

.main-nav a {
  color: #ffffff;
  font-weight: 600;
  font-size: 16px;
  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: #f59e0b;
  transition: width 0.3s ease;
}

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

.cta-button {
  background: linear-gradient(135deg, #f59e0b 0%, #ff6b35 100%);
  color: #ffffff;
  padding: 14px 32px;
  border-radius: 50px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  box-shadow: 0 4px 15px rgba(245, 158, 11, 0.4);
  transition: all 0.3s ease;
  font-size: 14px;
}

.cta-button:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(245, 158, 11, 0.6);
}

/* ============================================
   MOBILE MENU - SLIDE IN ANIMATION
   ============================================ */

.mobile-menu-toggle {
  display: none;
  background: #f59e0b;
  color: #ffffff;
  border: none;
  font-size: 28px;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  cursor: pointer;
  position: fixed;
  top: 20px;
  right: 20px;
  z-index: 2000;
  box-shadow: 0 4px 15px rgba(245, 158, 11, 0.4);
  transition: all 0.3s ease;
}

.mobile-menu-toggle:hover {
  transform: rotate(90deg) scale(1.1);
  background: #ff6b35;
}

.mobile-menu {
  position: fixed;
  top: 0;
  right: -100%;
  width: 300px;
  height: 100vh;
  background: linear-gradient(180deg, #1a365d 0%, #2d7dd2 100%);
  z-index: 2500;
  padding: 80px 30px 30px;
  transition: right 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
  box-shadow: -5px 0 25px rgba(0, 0, 0, 0.3);
}

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

.mobile-menu-close {
  position: absolute;
  top: 20px;
  right: 20px;
  background: #f59e0b;
  color: #ffffff;
  border: none;
  font-size: 28px;
  width: 45px;
  height: 45px;
  border-radius: 50%;
  cursor: pointer;
  transition: all 0.3s ease;
}

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

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

.mobile-nav a {
  color: #ffffff;
  font-size: 18px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  padding: 16px 20px;
  border-left: 4px solid transparent;
  transition: all 0.3s ease;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 8px;
}

.mobile-nav a:hover {
  border-left-color: #f59e0b;
  background: rgba(255, 255, 255, 0.2);
  transform: translateX(10px);
}

/* ============================================
   HERO SECTION - VIBRANT & DYNAMIC
   ============================================ */

.hero {
  background: linear-gradient(135deg, #1a365d 0%, #2d7dd2 50%, #f59e0b 100%);
  color: #ffffff;
  padding: 100px 20px 80px;
  position: relative;
  overflow: hidden;
}

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

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

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

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

.subheadline {
  font-size: 22px;
  margin-bottom: 40px;
  opacity: 0.95;
  font-weight: 400;
}

.cta-buttons {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  margin-bottom: 40px;
}

.btn-primary {
  background: linear-gradient(135deg, #f59e0b 0%, #ff6b35 100%);
  color: #ffffff;
  padding: 18px 40px;
  border-radius: 50px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  border: none;
  cursor: pointer;
  box-shadow: 0 6px 20px rgba(245, 158, 11, 0.4);
  transition: all 0.3s ease;
  font-size: 16px;
  display: inline-block;
}

.btn-primary:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 30px rgba(245, 158, 11, 0.6);
}

.btn-secondary {
  background: transparent;
  color: #ffffff;
  padding: 18px 40px;
  border-radius: 50px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  border: 3px solid #ffffff;
  cursor: pointer;
  transition: all 0.3s ease;
  font-size: 16px;
  display: inline-block;
}

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

.trust-badges {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
}

.badge {
  background: rgba(255, 255, 255, 0.2);
  padding: 12px 24px;
  border-radius: 25px;
  font-weight: 600;
  font-size: 14px;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.3);
}

/* ============================================
   BENEFITS SECTION - ENERGETIC CARDS
   ============================================ */

.benefits {
  padding: 80px 20px;
  background: linear-gradient(180deg, #ffffff 0%, #f8f9fa 100%);
}

.benefits h2 {
  text-align: center;
  margin-bottom: 60px;
}

.benefits-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  justify-content: center;
}

.benefit-card {
  background: #ffffff;
  padding: 40px 30px;
  border-radius: 16px;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
  flex: 1 1 calc(25% - 30px);
  min-width: 250px;
  max-width: 300px;
  text-align: center;
  transition: all 0.3s ease;
  border: 3px solid transparent;
  position: relative;
  overflow: hidden;
}

.benefit-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, #f59e0b 0%, #ff6b35 100%);
  transform: scaleX(0);
  transition: transform 0.3s ease;
}

.benefit-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 40px rgba(45, 125, 210, 0.2);
  border-color: #2d7dd2;
}

.benefit-card:hover::before {
  transform: scaleX(1);
}

.benefit-card h3 {
  margin-bottom: 16px;
  font-size: 20px;
}

.benefit-card p {
  color: #666666;
  font-size: 15px;
}

/* ============================================
   SERVICES SECTION - BOLD CARDS
   ============================================ */

.services-preview,
.services-grid-section {
  padding: 80px 20px;
  background: #ffffff;
}

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

.service-card {
  background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
  padding: 40px 30px;
  border-radius: 20px;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
  flex: 1 1 calc(33.333% - 30px);
  min-width: 280px;
  transition: all 0.3s ease;
  border: 3px solid transparent;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  position: relative;
  overflow: hidden;
}

.service-card::after {
  content: '';
  position: absolute;
  top: -50%;
  right: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(245, 158, 11, 0.1) 0%, transparent 70%);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.service-card:hover {
  transform: translateY(-8px) scale(1.02);
  box-shadow: 0 15px 50px rgba(45, 125, 210, 0.25);
  border-color: #f59e0b;
}

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

.service-card h3 {
  font-size: 22px;
  margin-bottom: 16px;
  position: relative;
  z-index: 1;
}

.service-card p {
  color: #555555;
  margin-bottom: 20px;
  flex-grow: 1;
  position: relative;
  z-index: 1;
}

.service-card .price {
  font-size: 32px;
  font-weight: 800;
  color: #f59e0b;
  margin: 20px 0;
  position: relative;
  z-index: 1;
}

.btn-link {
  color: #2d7dd2;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  display: inline-block;
  position: relative;
  padding-bottom: 4px;
  z-index: 1;
}

.btn-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: #f59e0b;
  transition: width 0.3s ease;
}

.btn-link:hover::after {
  width: 100%;
}

/* ============================================
   PROCESS SECTION - DYNAMIC TIMELINE
   ============================================ */

.process {
  padding: 80px 20px;
  background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
}

.process h2 {
  text-align: center;
  margin-bottom: 60px;
}

.process-steps {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 30px;
  position: relative;
}

.step {
  flex: 1 1 calc(20% - 30px);
  min-width: 180px;
  text-align: center;
  position: relative;
}

.step-number {
  width: 70px;
  height: 70px;
  background: linear-gradient(135deg, #f59e0b 0%, #ff6b35 100%);
  color: #ffffff;
  font-size: 32px;
  font-weight: 800;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  box-shadow: 0 8px 20px rgba(245, 158, 11, 0.4);
  transition: all 0.3s ease;
}

.step:hover .step-number {
  transform: scale(1.15) rotate(360deg);
}

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

.step p {
  font-size: 14px;
  color: #666666;
}

/* ============================================
   SOCIAL PROOF - STATS SECTION
   ============================================ */

.social-proof {
  padding: 80px 20px;
  background: linear-gradient(135deg, #1a365d 0%, #2d7dd2 100%);
  color: #ffffff;
}

.social-proof h2 {
  text-align: center;
  color: #ffffff;
  margin-bottom: 60px;
}

.social-proof h2::after {
  background: #f59e0b;
  left: 50%;
  transform: translateX(-50%);
}

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

.stat {
  text-align: center;
  flex: 1 1 calc(25% - 40px);
  min-width: 200px;
}

.stat-number {
  font-size: 56px;
  font-weight: 800;
  color: #f59e0b;
  margin-bottom: 12px;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.2);
}

.stat p {
  font-size: 16px;
  color: #ffffff;
  opacity: 0.9;
}

/* ============================================
   TESTIMONIALS - VIBRANT REVIEWS
   ============================================ */

.testimonials {
  padding: 80px 20px;
  background: #f8f9fa;
}

.testimonials h2 {
  text-align: center;
  margin-bottom: 60px;
}

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

.testimonial-card {
  background: #ffffff;
  padding: 40px 35px;
  border-radius: 20px;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
  flex: 1 1 calc(50% - 30px);
  min-width: 300px;
  max-width: 550px;
  border-left: 5px solid #f59e0b;
  position: relative;
  transition: all 0.3s ease;
}

.testimonial-card::before {
  content: '"';
  position: absolute;
  top: 20px;
  left: 20px;
  font-size: 80px;
  color: rgba(245, 158, 11, 0.2);
  font-family: Georgia, serif;
  line-height: 1;
}

.testimonial-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 40px rgba(45, 125, 210, 0.2);
}

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

.testimonial-card .author {
  font-weight: 700;
  color: #1a365d;
  font-size: 15px;
  margin-bottom: 0;
}

.testimonial-card .rating {
  color: #f59e0b;
  font-size: 18px;
  margin-top: 12px;
}

/* ============================================
   CTA BANNER - ELECTRIC CALL-TO-ACTION
   ============================================ */

.cta-banner,
.cta-section {
  padding: 80px 20px;
  background: linear-gradient(135deg, #f59e0b 0%, #ff6b35 100%);
  color: #ffffff;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-banner::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.2) 0%, transparent 70%);
  animation: rotate 20s linear infinite;
}

@keyframes rotate {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

.cta-banner h2,
.cta-section h2 {
  color: #ffffff;
  font-size: 42px;
  margin-bottom: 24px;
  position: relative;
  z-index: 1;
}

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

.cta-banner p,
.cta-section p {
  font-size: 20px;
  margin-bottom: 40px;
  opacity: 0.95;
  position: relative;
  z-index: 1;
  color: #ffffff;
}

.cta-banner .btn-primary,
.cta-section .btn-primary {
  background: #ffffff;
  color: #1a365d;
  position: relative;
  z-index: 1;
}

.cta-banner .btn-primary:hover,
.cta-section .btn-primary:hover {
  background: #1a365d;
  color: #ffffff;
}

/* ============================================
   PAGE HEADER - BREADCRUMB
   ============================================ */

.page-header {
  padding: 60px 20px 40px;
  background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
  border-bottom: 4px solid #f59e0b;
}

.breadcrumb {
  font-size: 14px;
  color: #666666;
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.breadcrumb a {
  color: #2d7dd2;
  font-weight: 600;
}

.breadcrumb a:hover {
  color: #f59e0b;
}

.page-header h1 {
  font-size: 48px;
  margin-bottom: 16px;
}

.page-header p {
  font-size: 20px;
  color: #555555;
}

/* ============================================
   PRICING TABLES - ELECTRIC STYLE
   ============================================ */

.pricing-table-section {
  padding: 80px 20px;
}

.pricing-category {
  margin-bottom: 60px;
}

.pricing-category h3 {
  font-size: 28px;
  margin-bottom: 30px;
  color: #1a365d;
  border-left: 5px solid #f59e0b;
  padding-left: 20px;
}

.pricing-table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
  background: #ffffff;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
}

.pricing-table tr {
  border-bottom: 1px solid #e5e7eb;
}

.pricing-table tr:last-child {
  border-bottom: none;
}

.pricing-table td {
  padding: 24px 30px;
  font-size: 16px;
}

.pricing-table td:first-child {
  color: #333333;
  font-weight: 600;
}

.pricing-table td:last-child {
  text-align: right;
  color: #f59e0b;
  font-weight: 800;
  font-size: 20px;
}

.pricing-table tr:hover {
  background: linear-gradient(90deg, rgba(245, 158, 11, 0.05) 0%, transparent 100%);
}

/* ============================================
   CONTENT SECTIONS - LISTS & DETAILS
   ============================================ */

.details-list,
.included-list,
.costs-list,
.discount-list,
.response-list,
.trust-list,
.rodo-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin: 30px 0;
}

.details-list li,
.included-list li,
.costs-list li,
.discount-list li,
.response-list li,
.trust-list li,
.rodo-list li {
  padding: 20px 24px 20px 60px;
  background: #ffffff;
  border-radius: 12px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.06);
  position: relative;
  font-size: 16px;
  color: #333333;
  transition: all 0.3s ease;
  border-left: 4px solid #2d7dd2;
}

.details-list li::before,
.included-list li::before,
.trust-list li::before {
  content: '✓';
  position: absolute;
  left: 20px;
  top: 50%;
  transform: translateY(-50%);
  width: 30px;
  height: 30px;
  background: linear-gradient(135deg, #f59e0b 0%, #ff6b35 100%);
  color: #ffffff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 18px;
}

.details-list li:hover,
.included-list li:hover,
.costs-list li:hover,
.discount-list li:hover,
.response-list li:hover,
.trust-list li:hover {
  transform: translateX(10px);
  box-shadow: 0 6px 20px rgba(45, 125, 210, 0.15);
}

/* ============================================
   GUARANTEE & VALUES - CARD GRIDS
   ============================================ */

.guarantee-grid,
.values-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  justify-content: center;
  margin-top: 40px;
}

.guarantee-item,
.value-card {
  background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
  padding: 40px 30px;
  border-radius: 16px;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
  flex: 1 1 calc(33.333% - 30px);
  min-width: 250px;
  max-width: 350px;
  text-align: center;
  border: 3px solid transparent;
  transition: all 0.3s ease;
}

.guarantee-item:hover,
.value-card:hover {
  transform: translateY(-10px);
  border-color: #f59e0b;
  box-shadow: 0 15px 40px rgba(245, 158, 11, 0.2);
}

.guarantee-item h3,
.value-card h3 {
  font-size: 22px;
  margin-bottom: 16px;
  color: #2d7dd2;
}

.guarantee-item p,
.value-card p {
  color: #555555;
  font-size: 15px;
}

/* ============================================
   PROJECTS & CASE STUDIES
   ============================================ */

.projects-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  margin-top: 40px;
}

.project-card {
  background: #ffffff;
  padding: 35px 30px;
  border-radius: 16px;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
  flex: 1 1 calc(33.333% - 30px);
  min-width: 300px;
  border-top: 5px solid #f59e0b;
  transition: all 0.3s ease;
}

.project-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 40px rgba(45, 125, 210, 0.2);
}

.project-card h3 {
  font-size: 20px;
  margin-bottom: 16px;
  color: #1a365d;
}

.project-card p {
  font-size: 15px;
  color: #555555;
  margin-bottom: 16px;
}

.project-details {
  font-size: 13px;
  color: #888888;
  font-style: italic;
  padding-top: 16px;
  border-top: 1px solid #e5e7eb;
}

.case-study {
  background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
  padding: 40px;
  border-radius: 16px;
  margin-bottom: 30px;
  border-left: 5px solid #2d7dd2;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
}

.case-study h3 {
  font-size: 22px;
  margin-bottom: 16px;
  color: #1a365d;
}

.case-study p {
  font-size: 15px;
  color: #555555;
  margin-bottom: 12px;
}

/* ============================================
   CONTACT PAGE - METHODS & FORM
   ============================================ */

.methods-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  justify-content: center;
  margin-top: 40px;
}

.method-card {
  background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
  padding: 40px 30px;
  border-radius: 16px;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
  flex: 1 1 calc(33.333% - 30px);
  min-width: 280px;
  max-width: 350px;
  text-align: center;
  border: 3px solid transparent;
  transition: all 0.3s ease;
}

.method-card:hover {
  transform: translateY(-10px);
  border-color: #2d7dd2;
  box-shadow: 0 15px 40px rgba(45, 125, 210, 0.2);
}

.method-card h3 {
  font-size: 24px;
  margin-bottom: 20px;
  color: #2d7dd2;
}

.contact-detail {
  font-size: 22px;
  font-weight: 700;
  color: #f59e0b;
  margin: 20px 0;
}

.note {
  font-size: 14px;
  color: #666666;
  font-style: italic;
  margin-top: 16px;
}

.form-placeholder {
  background: #ffffff;
  padding: 50px 40px;
  border-radius: 16px;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
  margin-top: 40px;
  border: 3px solid #e5e7eb;
}

.form-placeholder p {
  padding: 16px;
  margin-bottom: 16px;
  background: #f8f9fa;
  border-radius: 8px;
  color: #555555;
  border-left: 4px solid #2d7dd2;
}

.form-placeholder button {
  margin-top: 20px;
}

/* ============================================
   THANK YOU PAGE
   ============================================ */

.thank-you-header {
  padding: 100px 20px 80px;
  background: linear-gradient(135deg, #f59e0b 0%, #ff6b35 100%);
  color: #ffffff;
  text-align: center;
}

.thank-you-content {
  max-width: 700px;
  margin: 0 auto;
}

.checkmark {
  width: 100px;
  height: 100px;
  background: #ffffff;
  color: #f59e0b;
  font-size: 60px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 30px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
  animation: scaleIn 0.5s ease;
}

@keyframes scaleIn {
  0% { transform: scale(0); }
  50% { transform: scale(1.2); }
  100% { transform: scale(1); }
}

.thank-you-header h1 {
  color: #ffffff;
  font-size: 48px;
}

.confirmation-message {
  padding: 60px 20px;
  background: #f8f9fa;
  text-align: center;
}

.confirmation-message p {
  font-size: 18px;
  color: #333333;
  margin-bottom: 20px;
}

.next-steps {
  padding: 60px 20px;
}

.steps {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 30px;
  margin-top: 40px;
}

.useful-links {
  padding: 60px 20px;
  background: #f8f9fa;
}

.links-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: center;
  margin-top: 40px;
}

.link-card {
  background: #ffffff;
  color: #2d7dd2;
  padding: 24px 32px;
  border-radius: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
  border: 3px solid transparent;
  transition: all 0.3s ease;
  flex: 1 1 calc(25% - 20px);
  min-width: 200px;
  text-align: center;
}

.link-card:hover {
  transform: translateY(-5px);
  border-color: #f59e0b;
  box-shadow: 0 8px 25px rgba(245, 158, 11, 0.2);
  color: #f59e0b;
}

/* ============================================
   LEGAL PAGES - CONTENT STYLING
   ============================================ */

.legal-content {
  padding: 60px 20px;
  max-width: 900px;
  margin: 0 auto;
}

.legal-content h2 {
  font-size: 28px;
  margin-top: 40px;
  margin-bottom: 20px;
  color: #1a365d;
}

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

.legal-content ul {
  margin: 20px 0;
  padding-left: 20px;
}

.legal-content ul li {
  margin-bottom: 12px;
  color: #555555;
  line-height: 1.8;
}

/* ============================================
   FOOTER - VIBRANT ELECTRIC STYLE
   ============================================ */

footer {
  background: linear-gradient(135deg, #1a365d 0%, #0f1f3d 100%);
  color: #ffffff;
  padding: 60px 20px 20px;
  margin-top: 80px;
}

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

.footer-column {
  flex: 1 1 calc(25% - 40px);
  min-width: 200px;
}

.footer-logo {
  height: 45px;
  margin-bottom: 20px;
  filter: brightness(0) invert(1);
}

.footer-column h4 {
  font-size: 18px;
  margin-bottom: 20px;
  color: #f59e0b;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.footer-column ul {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-column a {
  color: rgba(255, 255, 255, 0.8);
  font-size: 15px;
  transition: all 0.3s ease;
  display: inline-block;
}

.footer-column a:hover {
  color: #f59e0b;
  transform: translateX(5px);
}

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

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  padding-top: 30px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
}

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

.footer-legal {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
}

.footer-legal a {
  color: rgba(255, 255, 255, 0.7);
  font-size: 14px;
  transition: color 0.3s ease;
}

.footer-legal a:hover {
  color: #f59e0b;
}

/* ============================================
   COOKIE CONSENT BANNER
   ============================================ */

.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(135deg, #1a365d 0%, #2d7dd2 100%);
  color: #ffffff;
  padding: 24px 20px;
  box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.3);
  z-index: 9999;
  transform: translateY(100%);
  transition: transform 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

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

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

.cookie-banner-text {
  flex: 1 1 auto;
  font-size: 15px;
  line-height: 1.6;
}

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

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

.cookie-accept {
  background: linear-gradient(135deg, #f59e0b 0%, #ff6b35 100%);
  color: #ffffff;
}

.cookie-accept:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(245, 158, 11, 0.4);
}

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

.cookie-reject:hover {
  background: #ffffff;
  color: #1a365d;
}

.cookie-settings {
  background: rgba(255, 255, 255, 0.2);
  color: #ffffff;
}

.cookie-settings:hover {
  background: rgba(255, 255, 255, 0.3);
}

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

.cookie-modal.active {
  display: flex;
}

.cookie-modal-content {
  background: #ffffff;
  border-radius: 20px;
  padding: 40px;
  max-width: 600px;
  width: 100%;
  max-height: 80vh;
  overflow-y: auto;
  position: relative;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
}

.cookie-modal-close {
  position: absolute;
  top: 20px;
  right: 20px;
  background: #f59e0b;
  color: #ffffff;
  border: none;
  width: 35px;
  height: 35px;
  border-radius: 50%;
  font-size: 20px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.cookie-modal-close:hover {
  transform: rotate(90deg);
  background: #ff6b35;
}

.cookie-category {
  padding: 20px;
  margin-bottom: 20px;
  background: #f8f9fa;
  border-radius: 12px;
  border-left: 4px solid #2d7dd2;
}

.cookie-category h3 {
  font-size: 18px;
  margin-bottom: 12px;
  color: #1a365d;
}

.cookie-category p {
  font-size: 14px;
  color: #555555;
  margin-bottom: 12px;
}

.cookie-toggle {
  display: flex;
  align-items: center;
  gap: 12px;
}

.cookie-toggle input[type="checkbox"] {
  width: 50px;
  height: 26px;
  appearance: none;
  background: #cccccc;
  border-radius: 13px;
  position: relative;
  cursor: pointer;
  transition: background 0.3s ease;
}

.cookie-toggle input[type="checkbox"]:checked {
  background: #f59e0b;
}

.cookie-toggle input[type="checkbox"]::after {
  content: '';
  position: absolute;
  width: 20px;
  height: 20px;
  background: #ffffff;
  border-radius: 50%;
  top: 3px;
  left: 3px;
  transition: transform 0.3s ease;
}

.cookie-toggle input[type="checkbox"]:checked::after {
  transform: translateX(24px);
}

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

/* ============================================
   RESPONSIVE DESIGN - MOBILE FIRST
   ============================================ */

@media (max-width: 1024px) {
  h1 { font-size: 42px; }
  h2 { font-size: 32px; }
  h3 { font-size: 22px; }
  
  .hero h1 { font-size: 48px; }
  
  .main-nav { display: none; }
  .mobile-menu-toggle { display: flex; }
  
  .service-card,
  .benefit-card,
  .method-card,
  .guarantee-item,
  .value-card {
    flex: 1 1 calc(50% - 30px);
  }
}

@media (max-width: 768px) {
  h1 { font-size: 36px; }
  h2 { font-size: 28px; }
  h3 { font-size: 20px; }
  
  .hero { padding: 80px 20px 60px; }
  .hero h1 { font-size: 38px; }
  .subheadline { font-size: 18px; }
  
  .header-content {
    flex-direction: column;
    align-items: flex-start;
  }
  
  .cta-button {
    display: none;
  }
  
  .cta-buttons {
    flex-direction: column;
    width: 100%;
  }
  
  .btn-primary,
  .btn-secondary {
    width: 100%;
    text-align: center;
  }
  
  .trust-badges {
    flex-direction: column;
    width: 100%;
  }
  
  .badge {
    text-align: center;
  }
  
  .benefits-grid,
  .services-grid,
  .stats-grid,
  .testimonials-grid,
  .process-steps,
  .methods-grid,
  .guarantee-grid,
  .values-grid,
  .projects-grid {
    flex-direction: column;
  }
  
  .service-card,
  .benefit-card,
  .stat,
  .testimonial-card,
  .step,
  .method-card,
  .guarantee-item,
  .value-card,
  .project-card {
    flex: 1 1 100%;
    max-width: 100%;
  }
  
  .footer-grid {
    flex-direction: column;
  }
  
  .footer-column {
    flex: 1 1 100%;
  }
  
  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }
  
  .footer-legal {
    justify-content: center;
  }
  
  .cookie-banner-content {
    flex-direction: column;
    text-align: center;
  }
  
  .cookie-banner-buttons {
    width: 100%;
    justify-content: center;
  }
  
  .pricing-table td {
    padding: 16px 20px;
    font-size: 14px;
  }
  
  .pricing-table td:last-child {
    font-size: 18px;
  }
}

@media (max-width: 480px) {
  h1 { font-size: 28px; }
  h2 { font-size: 24px; }
  h3 { font-size: 18px; }
  
  .hero h1 { font-size: 32px; }
  .subheadline { font-size: 16px; }
  
  .btn-primary,
  .btn-secondary {
    padding: 14px 28px;
    font-size: 14px;
  }
  
  .section {
    padding: 40px 20px;
  }
  
  .mobile-menu {
    width: 100%;
  }
  
  .cookie-accept,
  .cookie-reject,
  .cookie-settings {
    width: 100%;
    text-align: center;
  }
}

/* ============================================
   UTILITY CLASSES
   ============================================ */

.text-center { text-align: center; }
.text-left { text-align: left; }
.text-right { text-align: right; }

.mt-20 { margin-top: 20px; }
.mb-20 { margin-bottom: 20px; }
.mt-40 { margin-top: 40px; }
.mb-40 { margin-bottom: 40px; }

.hidden { display: none; }
.visible { display: block; }

/* ============================================
   ANIMATIONS & TRANSITIONS
   ============================================ */

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

@keyframes slideInRight {
  from { opacity: 0; transform: translateX(50px); }
  to { opacity: 1; transform: translateX(0); }
}

@keyframes slideInLeft {
  from { opacity: 0; transform: translateX(-50px); }
  to { opacity: 1; transform: translateX(0); }
}

.fade-in { animation: fadeIn 0.6s ease; }
.slide-in-right { animation: slideInRight 0.6s ease; }
.slide-in-left { animation: slideInLeft 0.6s ease; }

/* ============================================
   PRINT STYLES
   ============================================ */

@media print {
  header,
  footer,
  .mobile-menu-toggle,
  .mobile-menu,
  .cookie-banner,
  .cta-button,
  .btn-primary,
  .btn-secondary {
    display: none;
  }
  
  body {
    color: #000000;
    background: #ffffff;
  }
  
  a {
    text-decoration: underline;
  }
}