/* =================================================================
   RADIUS BLAZE - TECH FUTURISTIC DESIGN SYSTEM
   Sophisticated Landscaping with Contemporary Edge
   ================================================================= */

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

html {
  font-size: 16px;
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: 'Lato', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  font-size: 16px;
  line-height: 1.7;
  color: #1a1a1a;
  background: linear-gradient(135deg, #0a0e0d 0%, #1a2520 50%, #0f1512 100%);
  min-height: 100vh;
  overflow-x: hidden;
}

/* TYPOGRAPHY SYSTEM */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Playfair Display', Georgia, serif;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 20px;
  color: #ffffff;
  text-shadow: 0 0 20px rgba(46, 213, 115, 0.3);
}

h1 {
  font-size: 48px;
  letter-spacing: -0.5px;
}

h2 {
  font-size: 40px;
  letter-spacing: -0.3px;
}

h3 {
  font-size: 28px;
}

h4 {
  font-size: 22px;
}

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

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

a:hover {
  color: #26de81;
  text-shadow: 0 0 10px rgba(46, 213, 115, 0.5);
}

ul {
  list-style: none;
}

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

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

/* TECH FUTURISTIC BUTTONS */
.btn-primary,
.btn-secondary,
.btn-link {
  display: inline-block;
  padding: 16px 32px;
  font-size: 16px;
  font-weight: 600;
  text-align: center;
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
  text-transform: uppercase;
  letter-spacing: 1px;
  position: relative;
  overflow: hidden;
  border-radius: 4px;
}

.btn-primary {
  background: linear-gradient(135deg, #2ed573 0%, #26de81 100%);
  color: #0a0e0d;
  box-shadow: 0 4px 15px rgba(46, 213, 115, 0.4);
}

.btn-primary:hover {
  background: linear-gradient(135deg, #26de81 0%, #2ed573 100%);
  box-shadow: 0 6px 25px rgba(46, 213, 115, 0.6);
  transform: translateY(-2px);
  color: #0a0e0d;
}

.btn-secondary {
  background: transparent;
  color: #2ed573;
  border: 2px solid #2ed573;
  box-shadow: 0 0 15px rgba(46, 213, 115, 0.2);
}

.btn-secondary:hover {
  background: rgba(46, 213, 115, 0.1);
  box-shadow: 0 0 25px rgba(46, 213, 115, 0.4);
  transform: translateY(-2px);
  color: #26de81;
}

.btn-link {
  background: none;
  padding: 8px 0;
  color: #2ed573;
  font-size: 16px;
  text-transform: none;
  letter-spacing: 0.5px;
  box-shadow: none;
}

.btn-link:hover {
  color: #26de81;
  transform: translateX(5px);
}

/* HEADER STYLES */
header {
  background: rgba(10, 14, 13, 0.95);
  backdrop-filter: blur(10px);
  padding: 20px 0;
  position: sticky;
  top: 0;
  z-index: 1000;
  border-bottom: 1px solid rgba(46, 213, 115, 0.2);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

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

.logo {
  flex: 0 0 auto;
}

.logo img {
  height: 50px;
  width: auto;
  filter: drop-shadow(0 0 10px rgba(46, 213, 115, 0.3));
}

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

.main-nav a {
  color: #e0e0e0;
  font-weight: 500;
  font-size: 16px;
  position: relative;
  padding: 8px 0;
}

.main-nav a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, #2ed573, #26de81);
  transition: width 0.3s ease;
  box-shadow: 0 0 10px rgba(46, 213, 115, 0.5);
}

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

.header-cta {
  flex: 0 0 auto;
}

/* MOBILE MENU SYSTEM */
.mobile-menu-toggle {
  display: none;
  position: fixed;
  top: 20px;
  right: 20px;
  z-index: 2000;
  background: linear-gradient(135deg, #2ed573 0%, #26de81 100%);
  color: #0a0e0d;
  border: none;
  width: 50px;
  height: 50px;
  border-radius: 8px;
  font-size: 24px;
  cursor: pointer;
  box-shadow: 0 4px 15px rgba(46, 213, 115, 0.4);
  transition: all 0.3s ease;
}

.mobile-menu-toggle:hover {
  box-shadow: 0 6px 25px rgba(46, 213, 115, 0.6);
  transform: scale(1.05);
}

.mobile-menu {
  position: fixed;
  top: 0;
  right: -100%;
  width: 300px;
  height: 100vh;
  background: linear-gradient(180deg, #0a0e0d 0%, #1a2520 100%);
  z-index: 1999;
  padding: 80px 30px 30px;
  transition: right 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
  box-shadow: -5px 0 30px rgba(0, 0, 0, 0.5);
  border-left: 2px solid rgba(46, 213, 115, 0.3);
}

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

.mobile-menu-close {
  position: absolute;
  top: 20px;
  right: 20px;
  background: transparent;
  color: #2ed573;
  border: 2px solid #2ed573;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  font-size: 24px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.mobile-menu-close:hover {
  background: rgba(46, 213, 115, 0.1);
  transform: rotate(90deg);
}

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

.mobile-nav a {
  color: #e0e0e0;
  font-size: 18px;
  font-weight: 500;
  padding: 12px 0;
  border-bottom: 1px solid rgba(46, 213, 115, 0.1);
  transition: all 0.3s ease;
}

.mobile-nav a:hover {
  color: #2ed573;
  padding-left: 10px;
  border-bottom-color: #2ed573;
}

/* HERO SECTIONS */
.hero {
  background: linear-gradient(135deg, #0f1512 0%, #1a2520 50%, #0a0e0d 100%);
  padding: 120px 20px;
  text-align: center;
  position: relative;
  overflow: hidden;
  border-bottom: 2px solid rgba(46, 213, 115, 0.3);
}

.hero::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(46, 213, 115, 0.1) 0%, transparent 70%);
  animation: pulse 15s ease-in-out infinite;
}

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

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

.hero h1 {
  font-size: 56px;
  margin-bottom: 24px;
  text-shadow: 0 0 30px rgba(46, 213, 115, 0.4);
}

.hero-subtitle {
  font-size: 20px;
  color: #b8b8b8;
  margin-bottom: 40px;
  line-height: 1.6;
}

.hero-cta {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 40px;
}

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

.trust-badges span {
  color: #2ed573;
  font-size: 14px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  padding: 8px 16px;
  background: rgba(46, 213, 115, 0.1);
  border-radius: 20px;
  border: 1px solid rgba(46, 213, 115, 0.3);
}

/* HERO PAGE VARIANT */
.hero-page {
  background: linear-gradient(135deg, #0f1512 0%, #1a2520 100%);
  padding: 80px 20px 60px;
  border-bottom: 2px solid rgba(46, 213, 115, 0.3);
}

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

.breadcrumb a {
  color: #2ed573;
}

.breadcrumb span {
  color: #e0e0e0;
}

/* SECTION SPACING */
section {
  margin-bottom: 60px;
  padding: 60px 20px;
  background: rgba(26, 37, 32, 0.4);
  border-radius: 12px;
  border: 1px solid rgba(46, 213, 115, 0.1);
  position: relative;
}

.section-intro {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 50px;
  font-size: 18px;
  color: #b8b8b8;
}

/* FLEXBOX GRID SYSTEMS */
.services-grid,
.testimonials-grid,
.stats-grid,
.values-grid,
.projects-grid,
.articles-grid,
.guarantees-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  justify-content: space-between;
  margin-bottom: 20px;
}

/* SERVICE CARDS */
.service-card {
  flex: 1 1 calc(33.333% - 20px);
  min-width: 280px;
  background: linear-gradient(135deg, rgba(15, 21, 18, 0.9) 0%, rgba(26, 37, 32, 0.9) 100%);
  padding: 32px;
  border-radius: 12px;
  border: 1px solid rgba(46, 213, 115, 0.2);
  transition: all 0.3s ease;
  position: relative;
  margin-bottom: 20px;
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, #2ed573, #26de81);
  border-radius: 12px 12px 0 0;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.service-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 40px rgba(46, 213, 115, 0.3);
  border-color: #2ed573;
}

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

.service-card h3 {
  font-size: 24px;
  margin-bottom: 16px;
  color: #ffffff;
}

.service-card p {
  color: #b8b8b8;
  margin-bottom: 16px;
}

.price {
  font-size: 20px;
  font-weight: 700;
  color: #2ed573;
  margin: 20px 0;
  text-shadow: 0 0 10px rgba(46, 213, 115, 0.3);
}

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

.step {
  flex: 1 1 calc(25% - 23px);
  min-width: 200px;
  text-align: center;
  padding: 32px 20px;
  background: rgba(15, 21, 18, 0.6);
  border-radius: 12px;
  border: 1px solid rgba(46, 213, 115, 0.2);
  transition: all 0.3s ease;
  position: relative;
  margin-bottom: 20px;
}

.step:hover {
  transform: translateY(-5px);
  border-color: #2ed573;
  box-shadow: 0 8px 30px rgba(46, 213, 115, 0.2);
}

.step-number,
.step-icon {
  display: inline-block;
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, #2ed573, #26de81);
  color: #0a0e0d;
  border-radius: 50%;
  font-size: 24px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  box-shadow: 0 4px 15px rgba(46, 213, 115, 0.4);
}

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

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

/* STATISTICS */
.statistics {
  background: linear-gradient(135deg, rgba(46, 213, 115, 0.1) 0%, rgba(38, 222, 129, 0.05) 100%);
  padding: 80px 20px;
  text-align: center;
}

.stats-grid {
  justify-content: center;
  gap: 50px;
}

.stat {
  flex: 1 1 calc(25% - 38px);
  min-width: 150px;
  text-align: center;
  margin-bottom: 20px;
}

.stat-number {
  display: block;
  font-size: 48px;
  font-weight: 700;
  color: #2ed573;
  margin-bottom: 8px;
  text-shadow: 0 0 20px rgba(46, 213, 115, 0.4);
}

.stat-label {
  display: block;
  font-size: 16px;
  color: #b8b8b8;
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* TESTIMONIALS */
.testimonials {
  background: rgba(15, 21, 18, 0.6);
  padding: 80px 20px;
}

.testimonial-card {
  flex: 1 1 calc(50% - 15px);
  min-width: 300px;
  background: rgba(26, 37, 32, 0.8);
  padding: 32px;
  border-radius: 12px;
  border: 1px solid rgba(46, 213, 115, 0.2);
  margin-bottom: 20px;
  position: relative;
  transition: all 0.3s ease;
}

.testimonial-card::before {
  content: '\201C';
  position: absolute;
  top: 20px;
  left: 20px;
  font-size: 60px;
  color: rgba(46, 213, 115, 0.2);
  font-family: Georgia, serif;
}

.testimonial-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(46, 213, 115, 0.2);
  border-color: #2ed573;
}

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

.client-name {
  display: block;
  font-weight: 700;
  color: #2ed573;
  margin-bottom: 4px;
}

.client-location {
  display: block;
  font-size: 14px;
  color: #b8b8b8;
}

/* VALUES & FEATURES */
.values-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin: 30px 0;
}

.values-list li {
  padding-left: 32px;
  position: relative;
  color: #e0e0e0;
  font-size: 16px;
}

.values-list li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: #2ed573;
  font-weight: 700;
  font-size: 18px;
}

.features-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin: 20px 0;
}

.features-list li {
  padding-left: 28px;
  position: relative;
  color: #b8b8b8;
  font-size: 15px;
}

.features-list li::before {
  content: '→';
  position: absolute;
  left: 0;
  color: #2ed573;
}

/* PROJECT CARDS */
.project-card {
  flex: 1 1 calc(50% - 15px);
  min-width: 300px;
  background: linear-gradient(135deg, rgba(15, 21, 18, 0.9), rgba(26, 37, 32, 0.9));
  padding: 32px;
  border-radius: 12px;
  border: 1px solid rgba(46, 213, 115, 0.2);
  transition: all 0.3s ease;
  margin-bottom: 20px;
  position: relative;
}

.project-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 40px rgba(46, 213, 115, 0.3);
  border-color: #2ed573;
}

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

.project-location {
  color: #2ed573;
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 12px;
}

.project-description {
  color: #b8b8b8;
  margin-bottom: 16px;
}

.project-meta {
  color: #888;
  font-size: 14px;
}

/* FILTER BUTTONS */
.filter-buttons,
.category-filters {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 40px;
}

.filter-btn,
.category-btn {
  padding: 12px 24px;
  background: rgba(26, 37, 32, 0.6);
  color: #e0e0e0;
  border: 1px solid rgba(46, 213, 115, 0.2);
  border-radius: 25px;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.filter-btn:hover,
.category-btn:hover,
.filter-btn.active,
.category-btn.active {
  background: linear-gradient(135deg, #2ed573, #26de81);
  color: #0a0e0d;
  border-color: #2ed573;
  box-shadow: 0 4px 15px rgba(46, 213, 115, 0.4);
}

/* BLOG/ARTICLE CARDS */
.article-card,
.featured-article {
  background: linear-gradient(135deg, rgba(15, 21, 18, 0.9), rgba(26, 37, 32, 0.9));
  padding: 32px;
  border-radius: 12px;
  border: 1px solid rgba(46, 213, 115, 0.2);
  transition: all 0.3s ease;
  margin-bottom: 20px;
}

.article-card {
  flex: 1 1 calc(50% - 15px);
  min-width: 300px;
}

.article-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(46, 213, 115, 0.2);
  border-color: #2ed573;
}

.article-card h3 {
  font-size: 22px;
  margin-bottom: 12px;
}

.article-meta {
  color: #888;
  font-size: 14px;
  margin-bottom: 12px;
}

.article-excerpt {
  color: #b8b8b8;
  margin-bottom: 16px;
}

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

.contact-form-section,
.contact-info-section {
  flex: 1 1 calc(50% - 20px);
  min-width: 300px;
}

.form-wrapper {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.form-field {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.form-field label {
  color: #e0e0e0;
  font-weight: 600;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.input-field,
.email-input {
  padding: 14px 16px;
  background: rgba(15, 21, 18, 0.6);
  border: 1px solid rgba(46, 213, 115, 0.2);
  border-radius: 8px;
  color: #e0e0e0;
  font-size: 16px;
  font-family: 'Lato', sans-serif;
  transition: all 0.3s ease;
}

.input-field:focus,
.email-input:focus {
  outline: none;
  border-color: #2ed573;
  box-shadow: 0 0 15px rgba(46, 213, 115, 0.3);
  background: rgba(15, 21, 18, 0.8);
}

.input-field::placeholder,
.email-input::placeholder {
  color: #666;
}

textarea.input-field {
  resize: vertical;
  min-height: 120px;
}

select.input-field {
  cursor: pointer;
}

.checkbox-label {
  display: flex;
  align-items: center;
  gap: 10px;
  color: #b8b8b8;
  font-size: 14px;
  cursor: pointer;
  text-transform: none;
}

.checkbox-label input[type="checkbox"] {
  width: 18px;
  height: 18px;
  cursor: pointer;
}

/* CONTACT INFO */
.contact-details {
  display: flex;
  flex-direction: column;
  gap: 24px;
  margin-top: 24px;
}

.contact-detail h3 {
  font-size: 18px;
  color: #2ed573;
  margin-bottom: 8px;
}

.contact-detail p {
  color: #b8b8b8;
  line-height: 1.6;
}

.map-placeholder {
  margin-top: 32px;
  height: 300px;
  background: rgba(15, 21, 18, 0.6);
  border: 1px solid rgba(46, 213, 115, 0.2);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #666;
}

/* NEWSLETTER */
.newsletter-form {
  display: flex;
  gap: 16px;
  max-width: 600px;
  margin: 32px auto;
  flex-wrap: wrap;
  justify-content: center;
}

.newsletter-form .email-input {
  flex: 1;
  min-width: 250px;
}

.privacy-notice {
  text-align: center;
  font-size: 12px;
  color: #888;
}

/* CTA SECTIONS */
.cta-conversion,
.cta-section,
.cta-consultation {
  background: linear-gradient(135deg, rgba(46, 213, 115, 0.1), rgba(38, 222, 129, 0.05));
  text-align: center;
  padding: 80px 20px;
  border: 2px solid rgba(46, 213, 115, 0.3);
  border-radius: 12px;
}

.cta-conversion h2,
.cta-section h2,
.cta-consultation h2 {
  font-size: 40px;
  margin-bottom: 20px;
}

.guarantee {
  margin-top: 20px;
  color: #b8b8b8;
  font-size: 14px;
}

.benefits-list,
.areas-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
  max-width: 500px;
  margin: 24px auto;
  text-align: left;
}

.benefits-list li,
.areas-list li {
  padding-left: 28px;
  position: relative;
  color: #e0e0e0;
}

.benefits-list li::before,
.areas-list li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: #2ed573;
  font-weight: 700;
}

/* THANK YOU PAGE */
.thank-you-hero {
  text-align: center;
  padding: 100px 20px;
  background: linear-gradient(135deg, rgba(46, 213, 115, 0.1), rgba(38, 222, 129, 0.05));
}

.success-icon {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, #2ed573, #26de81);
  color: #0a0e0d;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 48px;
  font-weight: 700;
  margin: 0 auto 24px;
  box-shadow: 0 8px 30px rgba(46, 213, 115, 0.5);
}

.confirmation-message {
  font-size: 20px;
  color: #b8b8b8;
  margin-top: 16px;
}

/* LEGAL PAGES */
.legal-page {
  background: rgba(26, 37, 32, 0.4);
  padding: 60px 20px;
}

.legal-content {
  max-width: 800px;
  margin: 40px auto;
}

.legal-content section {
  background: transparent;
  border: none;
  padding: 0;
  margin-bottom: 40px;
}

.legal-content h2 {
  font-size: 28px;
  margin-bottom: 16px;
  color: #2ed573;
}

.legal-content h3 {
  font-size: 20px;
  margin: 24px 0 12px;
  color: #26de81;
}

.legal-content p,
.legal-content li {
  color: #b8b8b8;
  line-height: 1.8;
  margin-bottom: 16px;
}

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

.legal-content li {
  list-style: disc;
  margin-bottom: 8px;
}

.last-updated {
  color: #888;
  font-size: 14px;
  font-style: italic;
  margin-bottom: 32px;
}

/* FOOTER */
footer {
  background: rgba(10, 14, 13, 0.95);
  padding: 60px 20px 30px;
  border-top: 2px solid rgba(46, 213, 115, 0.3);
  margin-top: 60px;
}

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

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

.footer-logo {
  height: 40px;
  margin-bottom: 16px;
  filter: drop-shadow(0 0 10px rgba(46, 213, 115, 0.3));
}

.footer-section h4 {
  font-size: 18px;
  margin-bottom: 16px;
  color: #2ed573;
}

.footer-section p {
  color: #b8b8b8;
  font-size: 14px;
  line-height: 1.6;
}

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

.footer-section ul li a {
  color: #b8b8b8;
  font-size: 14px;
  transition: all 0.3s ease;
}

.footer-section ul li a:hover {
  color: #2ed573;
  padding-left: 5px;
}

.footer-bottom {
  border-top: 1px solid rgba(46, 213, 115, 0.2);
  padding-top: 24px;
  text-align: center;
}

.legal-links {
  display: flex;
  gap: 24px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 16px;
}

.legal-links a {
  color: #888;
  font-size: 13px;
}

.legal-links a:hover {
  color: #2ed573;
}

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

/* COOKIE CONSENT BANNER */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: rgba(10, 14, 13, 0.98);
  backdrop-filter: blur(10px);
  padding: 24px;
  z-index: 1500;
  border-top: 2px solid rgba(46, 213, 115, 0.3);
  box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.5);
  transform: translateY(100%);
  transition: transform 0.4s ease;
}

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

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

.cookie-text {
  flex: 1;
  min-width: 300px;
}

.cookie-text h3 {
  font-size: 18px;
  margin-bottom: 8px;
  color: #2ed573;
}

.cookie-text p {
  color: #b8b8b8;
  font-size: 14px;
}

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

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

.cookie-accept {
  background: linear-gradient(135deg, #2ed573, #26de81);
  color: #0a0e0d;
  box-shadow: 0 4px 15px rgba(46, 213, 115, 0.4);
}

.cookie-accept:hover {
  box-shadow: 0 6px 25px rgba(46, 213, 115, 0.6);
  transform: translateY(-2px);
}

.cookie-reject {
  background: rgba(26, 37, 32, 0.8);
  color: #e0e0e0;
  border: 1px solid rgba(46, 213, 115, 0.2);
}

.cookie-reject:hover {
  background: rgba(26, 37, 32, 1);
  border-color: #2ed573;
}

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

.cookie-settings:hover {
  background: rgba(46, 213, 115, 0.1);
}

/* COOKIE PREFERENCES MODAL */
.cookie-modal {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.85);
  backdrop-filter: blur(5px);
  z-index: 2000;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 20px;
}

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

.cookie-modal-content {
  background: linear-gradient(135deg, #0f1512, #1a2520);
  border: 2px solid rgba(46, 213, 115, 0.3);
  border-radius: 12px;
  max-width: 600px;
  width: 100%;
  max-height: 80vh;
  overflow-y: auto;
  padding: 40px;
  position: relative;
}

.cookie-modal-close {
  position: absolute;
  top: 16px;
  right: 16px;
  background: transparent;
  border: none;
  color: #2ed573;
  font-size: 28px;
  cursor: pointer;
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

.cookie-modal-close:hover {
  transform: rotate(90deg);
  color: #26de81;
}

.cookie-category {
  margin-bottom: 24px;
  padding: 20px;
  background: rgba(26, 37, 32, 0.5);
  border-radius: 8px;
  border: 1px solid rgba(46, 213, 115, 0.1);
}

.cookie-category h4 {
  font-size: 18px;
  margin-bottom: 8px;
  color: #2ed573;
}

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

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

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

.cookie-toggle label {
  color: #e0e0e0;
  cursor: pointer;
}

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

/* RESPONSIVE DESIGN */
@media (max-width: 768px) {
  /* Show mobile menu */
  .mobile-menu-toggle {
    display: block;
  }
  
  /* Hide desktop navigation */
  .main-nav {
    display: none;
  }
  
  .header-cta {
    display: none;
  }
  
  /* Typography adjustments */
  h1 {
    font-size: 36px;
  }
  
  h2 {
    font-size: 32px;
  }
  
  h3 {
    font-size: 24px;
  }
  
  .hero h1 {
    font-size: 40px;
  }
  
  .hero-subtitle {
    font-size: 18px;
  }
  
  /* Section spacing */
  section {
    padding: 40px 16px;
    margin-bottom: 40px;
  }
  
  /* Hero adjustments */
  .hero {
    padding: 80px 20px;
  }
  
  .hero-cta {
    flex-direction: column;
    align-items: stretch;
  }
  
  .hero-cta .btn-primary,
  .hero-cta .btn-secondary {
    width: 100%;
  }
  
  /* Flexbox grids - stack on mobile */
  .services-grid,
  .testimonials-grid,
  .stats-grid,
  .values-grid,
  .projects-grid,
  .articles-grid,
  .guarantees-grid,
  .process-steps,
  .contact-grid,
  .footer-content {
    flex-direction: column;
  }
  
  .service-card,
  .testimonial-card,
  .project-card,
  .article-card,
  .step,
  .stat {
    flex: 1 1 100%;
    min-width: 100%;
  }
  
  /* Filter buttons */
  .filter-buttons,
  .category-filters {
    gap: 8px;
  }
  
  .filter-btn,
  .category-btn {
    padding: 10px 16px;
    font-size: 13px;
  }
  
  /* Newsletter form */
  .newsletter-form {
    flex-direction: column;
  }
  
  .newsletter-form .email-input {
    width: 100%;
  }
  
  /* Cookie banner */
  .cookie-content {
    flex-direction: column;
    text-align: center;
  }
  
  .cookie-buttons {
    width: 100%;
    flex-direction: column;
  }
  
  .cookie-accept,
  .cookie-reject,
  .cookie-settings {
    width: 100%;
  }
  
  /* Footer */
  .legal-links {
    flex-direction: column;
    gap: 12px;
  }
}

@media (max-width: 480px) {
  /* Further mobile adjustments */
  h1 {
    font-size: 28px;
  }
  
  h2 {
    font-size: 26px;
  }
  
  .hero h1 {
    font-size: 32px;
  }
  
  .hero-subtitle {
    font-size: 16px;
  }
  
  .stat-number {
    font-size: 36px;
  }
  
  .btn-primary,
  .btn-secondary {
    padding: 14px 24px;
    font-size: 14px;
  }
  
  .mobile-menu {
    width: 100%;
  }
}

/* ANIMATIONS */
@keyframes slideInRight {
  from {
    transform: translateX(100%);
    opacity: 0;
  }
  to {
    transform: translateX(0);
    opacity: 1;
  }
}

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

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

/* Apply animations on scroll (requires JS) */
.animate-on-scroll {
  opacity: 0;
  animation: slideInUp 0.6s ease forwards;
}

/* PRINT STYLES */
@media print {
  .mobile-menu-toggle,
  .mobile-menu,
  .cookie-banner,
  .cookie-modal,
  header,
  footer {
    display: none;
  }
  
  body {
    background: white;
    color: black;
  }
  
  * {
    box-shadow: none !important;
    text-shadow: none !important;
  }
}