/* ===================================
   CLEARWARD - PROFESSIONAL CORPORATE DESIGN
   Modern Equipment Rental Website
   =================================== */

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

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

body {
  font-family: 'Open Sans', 'Segoe UI', Arial, sans-serif;
  line-height: 1.6;
  color: #2C3E50;
  background-color: #F8F9FA;
  overflow-x: hidden;
}

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

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

ul, ol {
  list-style-position: inside;
}

/* ===================================
   TYPOGRAPHY
   =================================== */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', 'Arial Black', sans-serif;
  font-weight: 700;
  line-height: 1.2;
  color: #2C3E50;
  margin-bottom: 16px;
}

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

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

h3 {
  font-size: 24px;
}

h4 {
  font-size: 18px;
}

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

.highlight {
  background-color: #FFF3CD;
  padding: 16px;
  border-left: 4px solid #FF6B35;
  margin: 20px 0;
  font-weight: 600;
}

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

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

/* ===================================
   HEADER & NAVIGATION
   =================================== */
header {
  background-color: #FFFFFF;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  position: sticky;
  top: 0;
  z-index: 1000;
  padding: 16px 0;
}

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

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

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

.main-nav a {
  color: #2C3E50;
  font-weight: 600;
  font-size: 14px;
  padding: 8px 16px;
  border-radius: 4px;
  transition: all 0.3s ease;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.main-nav a:hover {
  background-color: #FF6B35;
  color: #FFFFFF;
  transform: translateY(-2px);
}

/* ===================================
   MOBILE MENU
   =================================== */
.mobile-menu-toggle {
  display: none;
  position: fixed;
  top: 20px;
  right: 20px;
  z-index: 2000;
  background-color: #FF6B35;
  color: #FFFFFF;
  border: none;
  border-radius: 8px;
  width: 50px;
  height: 50px;
  font-size: 24px;
  cursor: pointer;
  box-shadow: 0 4px 12px rgba(255, 107, 53, 0.4);
  transition: all 0.3s ease;
}

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

.mobile-menu {
  position: fixed;
  top: 0;
  right: -100%;
  width: 280px;
  height: 100vh;
  background-color: #2C3E50;
  z-index: 1999;
  padding: 80px 30px 30px;
  transition: right 0.4s ease;
  overflow-y: auto;
  box-shadow: -4px 0 20px rgba(0, 0, 0, 0.3);
}

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

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

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

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

.mobile-nav a {
  color: #FFFFFF;
  font-weight: 600;
  font-size: 16px;
  padding: 12px 16px;
  border-radius: 4px;
  transition: all 0.3s ease;
  border-left: 4px solid transparent;
}

.mobile-nav a:hover {
  background-color: rgba(255, 107, 53, 0.2);
  border-left-color: #FF6B35;
  padding-left: 24px;
}

/* ===================================
   BUTTONS
   =================================== */
.btn-primary,
.btn-secondary {
  display: inline-block;
  padding: 14px 32px;
  border-radius: 6px;
  font-weight: 700;
  font-size: 16px;
  text-align: center;
  cursor: pointer;
  transition: all 0.3s ease;
  border: 2px solid transparent;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.btn-primary {
  background-color: #FF6B35;
  color: #FFFFFF;
  box-shadow: 0 4px 12px rgba(255, 107, 53, 0.3);
}

.btn-primary:hover {
  background-color: #E55A2A;
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(255, 107, 53, 0.4);
}

.btn-secondary {
  background-color: transparent;
  color: #2C3E50;
  border-color: #2C3E50;
}

.btn-secondary:hover {
  background-color: #2C3E50;
  color: #FFFFFF;
  transform: translateY(-2px);
}

/* ===================================
   HERO SECTION
   =================================== */
.hero {
  background: linear-gradient(135deg, #2C3E50 0%, #34495E 100%);
  color: #FFFFFF;
  padding: 80px 20px;
  text-align: center;
  margin-bottom: 60px;
}

.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: #ECF0F1;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.8;
}

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

.trust-badges {
  display: flex;
  gap: 32px;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 40px;
  padding-top: 40px;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
}

.trust-badges span {
  font-size: 14px;
  font-weight: 600;
  color: #F4A261;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

/* ===================================
   PAGE HERO
   =================================== */
.page-hero {
  background: linear-gradient(135deg, #2C3E50 0%, #34495E 100%);
  color: #FFFFFF;
  padding: 60px 20px 40px;
  margin-bottom: 60px;
}

.breadcrumb {
  font-size: 14px;
  margin-bottom: 20px;
  color: #ECF0F1;
}

.breadcrumb a {
  color: #F4A261;
  transition: color 0.3s ease;
}

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

.page-hero h1 {
  color: #FFFFFF;
  margin-bottom: 16px;
}

.page-hero p {
  color: #ECF0F1;
  font-size: 18px;
  max-width: 800px;
}

/* ===================================
   FEATURES SECTION
   =================================== */
.features {
  padding: 60px 20px;
  background-color: #FFFFFF;
}

.features h2 {
  text-align: center;
  margin-bottom: 48px;
  font-size: 32px;
}

.features-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: center;
}

.feature-card {
  flex: 1 1 calc(25% - 24px);
  min-width: 250px;
  background-color: #F8F9FA;
  padding: 32px 24px;
  border-radius: 8px;
  text-align: center;
  transition: all 0.3s ease;
  border: 2px solid transparent;
  margin-bottom: 20px;
}

.feature-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
  border-color: #FF6B35;
}

.feature-card img {
  width: 64px;
  height: 64px;
  margin: 0 auto 20px;
}

.feature-card h3 {
  font-size: 18px;
  margin-bottom: 12px;
  color: #2C3E50;
}

.feature-card p {
  font-size: 14px;
  color: #5A6C7D;
  line-height: 1.6;
}

/* ===================================
   SERVICES SECTIONS
   =================================== */
.services-preview,
.services-detailed {
  padding: 60px 20px;
  background-color: #F8F9FA;
}

.services-preview h2,
.services-detailed h2 {
  text-align: center;
  margin-bottom: 48px;
}

.services-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: center;
  margin-bottom: 40px;
}

.service-card {
  flex: 1 1 calc(50% - 24px);
  min-width: 280px;
  background-color: #FFFFFF;
  padding: 32px;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-bottom: 20px;
}

.service-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
}

.service-card img {
  width: 56px;
  height: 56px;
}

.service-card h3 {
  font-size: 20px;
  color: #2C3E50;
  margin-bottom: 8px;
}

.service-card p {
  font-size: 14px;
  color: #5A6C7D;
  flex-grow: 1;
}

.service-card .price {
  font-size: 24px;
  font-weight: 700;
  color: #FF6B35;
  margin: 8px 0;
}

.service-link {
  color: #FF6B35;
  font-weight: 600;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: all 0.3s ease;
}

.service-link:hover {
  color: #E55A2A;
  gap: 12px;
}

.service-link::after {
  content: '→';
  font-size: 18px;
}

.service-detail {
  background-color: #FFFFFF;
  padding: 40px;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  margin-bottom: 32px;
}

.service-detail h2 {
  text-align: left;
  margin-bottom: 20px;
  font-size: 24px;
}

.service-detail .price {
  font-size: 28px;
  font-weight: 700;
  color: #FF6B35;
  margin: 16px 0;
  display: block;
}

.service-detail .specs {
  color: #5A6C7D;
  font-style: italic;
  margin-bottom: 24px;
  padding: 16px;
  background-color: #F8F9FA;
  border-radius: 4px;
}

/* ===================================
   PROCESS SECTION
   =================================== */
.process {
  padding: 60px 20px;
  background-color: #FFFFFF;
}

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

.process-steps {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: center;
}

.step {
  flex: 1 1 calc(25% - 24px);
  min-width: 220px;
  text-align: center;
  padding: 24px;
  position: relative;
  margin-bottom: 20px;
}

.step-number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 60px;
  height: 60px;
  background-color: #FF6B35;
  color: #FFFFFF;
  border-radius: 50%;
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 20px;
  box-shadow: 0 4px 12px rgba(255, 107, 53, 0.3);
}

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

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

/* ===================================
   TESTIMONIALS
   =================================== */
.testimonials,
.testimonials-detailed {
  padding: 60px 20px;
  background-color: #F8F9FA;
}

.testimonials h2,
.testimonials-detailed h2 {
  text-align: center;
  margin-bottom: 48px;
}

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

.testimonial-card {
  flex: 1 1 calc(50% - 24px);
  min-width: 300px;
  background-color: #FFFFFF;
  padding: 32px;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  border-left: 4px solid #FF6B35;
  margin-bottom: 20px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.testimonial-card p {
  font-size: 16px;
  line-height: 1.7;
  color: #2C3E50;
  font-style: italic;
}

.testimonial-card .author {
  font-size: 14px;
  font-weight: 700;
  color: #5A6C7D;
  font-style: normal;
  text-align: right;
  margin-top: auto;
}

/* ===================================
   STATS SECTION
   =================================== */
.stats,
.company-stats,
.project-stats-section {
  padding: 60px 20px;
  background: linear-gradient(135deg, #2C3E50 0%, #34495E 100%);
  color: #FFFFFF;
}

.stats h2,
.company-stats h2,
.project-stats-section h2 {
  text-align: center;
  color: #FFFFFF;
  margin-bottom: 48px;
}

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

.stat-item {
  flex: 1 1 calc(25% - 32px);
  min-width: 200px;
  text-align: center;
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 20px;
}

.stat-number {
  font-size: 48px;
  font-weight: 700;
  color: #F4A261;
  font-family: 'Montserrat', sans-serif;
}

.stat-label {
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: #ECF0F1;
}

/* ===================================
   PRICING SECTION
   =================================== */
.pricing-info {
  padding: 40px 20px;
  background-color: #FFFFFF;
}

.info-box {
  background-color: #FFF3CD;
  padding: 32px;
  border-radius: 8px;
  border-left: 4px solid #F4A261;
}

.info-box p {
  margin-bottom: 12px;
  font-size: 15px;
  color: #2C3E50;
}

.pricing-table {
  padding: 60px 20px;
  background-color: #F8F9FA;
}

.pricing-table h2 {
  text-align: center;
  margin-bottom: 48px;
}

.price-category {
  background-color: #FFFFFF;
  padding: 32px;
  border-radius: 8px;
  margin-bottom: 32px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.price-category h3 {
  color: #FF6B35;
  margin-bottom: 24px;
  padding-bottom: 16px;
  border-bottom: 2px solid #F8F9FA;
  font-size: 22px;
}

.price-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 16px;
  border-bottom: 1px solid #F8F9FA;
  gap: 20px;
  flex-wrap: wrap;
}

.price-item:last-child {
  border-bottom: none;
}

.price-item span:first-child {
  flex: 1;
  font-weight: 600;
  color: #2C3E50;
}

.price-item .price {
  font-size: 20px;
  font-weight: 700;
  color: #FF6B35;
  white-space: nowrap;
}

.discount-programs {
  padding: 60px 20px;
  background-color: #FFFFFF;
}

.discount-programs h2 {
  text-align: center;
  margin-bottom: 48px;
}

.discount-item {
  background-color: #F8F9FA;
  padding: 32px;
  border-radius: 8px;
  margin-bottom: 24px;
  border-left: 4px solid #F4A261;
}

.discount-item h3 {
  color: #2C3E50;
  margin-bottom: 12px;
}

.discount-item p {
  font-size: 18px;
  font-weight: 600;
  color: #FF6B35;
}

/* ===================================
   COMPANY SECTIONS
   =================================== */
.company-story {
  padding: 60px 20px;
  background-color: #FFFFFF;
}

.company-story h2 {
  text-align: center;
  margin-bottom: 32px;
}

.company-story p {
  max-width: 800px;
  margin: 0 auto 24px;
  font-size: 16px;
  line-height: 1.8;
}

.values {
  padding: 60px 20px;
  background-color: #F8F9FA;
}

.values h2 {
  text-align: center;
  margin-bottom: 48px;
}

.values-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: center;
}

.value-card {
  flex: 1 1 calc(25% - 24px);
  min-width: 250px;
  background-color: #FFFFFF;
  padding: 32px;
  border-radius: 8px;
  text-align: center;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
  margin-bottom: 20px;
}

.value-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
}

.value-card img {
  width: 64px;
  height: 64px;
  margin: 0 auto 20px;
}

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

.value-card p {
  font-size: 14px;
  color: #5A6C7D;
}

.equipment-park {
  padding: 60px 20px;
  background-color: #FFFFFF;
}

.equipment-park h2 {
  text-align: center;
  margin-bottom: 32px;
}

.equipment-park p {
  max-width: 800px;
  margin: 0 auto 24px;
}

.equipment-park ul {
  max-width: 800px;
  margin: 32px auto;
}

.equipment-park li {
  padding: 12px 0;
  font-size: 16px;
  color: #2C3E50;
  border-bottom: 1px solid #F8F9FA;
}

.equipment-benefits {
  padding: 60px 20px;
  background-color: #F8F9FA;
}

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

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

.benefit-item {
  flex: 1 1 calc(25% - 24px);
  min-width: 250px;
  background-color: #FFFFFF;
  padding: 32px;
  border-radius: 8px;
  text-align: center;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  margin-bottom: 20px;
}

.benefit-item img {
  width: 56px;
  height: 56px;
  margin: 0 auto 16px;
}

.benefit-item h3 {
  font-size: 18px;
  margin-bottom: 12px;
}

.benefit-item p {
  font-size: 14px;
  color: #5A6C7D;
}

/* ===================================
   PROJECTS SECTION
   =================================== */
.featured-projects {
  padding: 60px 20px;
  background-color: #FFFFFF;
}

.featured-projects h2 {
  text-align: center;
  margin-bottom: 48px;
}

.project-card {
  background-color: #F8F9FA;
  padding: 32px;
  border-radius: 8px;
  margin-bottom: 32px;
  border-left: 4px solid #FF6B35;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.project-card h3 {
  color: #2C3E50;
  margin-bottom: 16px;
  font-size: 22px;
}

.project-card p {
  color: #5A6C7D;
  margin-bottom: 16px;
}

.project-stats {
  font-size: 13px;
  color: #FF6B35;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

/* ===================================
   CONTACT SECTIONS
   =================================== */
.contact-methods {
  padding: 60px 20px;
  background-color: #FFFFFF;
}

.contact-methods h2 {
  text-align: center;
  margin-bottom: 48px;
}

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

.contact-method {
  flex: 1 1 calc(50% - 32px);
  min-width: 300px;
  background-color: #F8F9FA;
  padding: 40px;
  border-radius: 8px;
  text-align: center;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  margin-bottom: 20px;
}

.contact-method img {
  width: 64px;
  height: 64px;
  margin: 0 auto 20px;
}

.contact-method h3 {
  font-size: 20px;
  margin-bottom: 16px;
}

.contact-method p {
  font-size: 15px;
  color: #5A6C7D;
  margin-bottom: 8px;
}

.contact-method strong {
  color: #2C3E50;
  font-size: 16px;
}

.contact-info-section {
  padding: 60px 20px;
  background-color: #F8F9FA;
}

.contact-info-section h2 {
  text-align: center;
  margin-bottom: 32px;
}

.departments {
  padding: 60px 20px;
  background-color: #FFFFFF;
}

.departments h2 {
  text-align: center;
  margin-bottom: 48px;
}

.dept-item {
  background-color: #F8F9FA;
  padding: 32px;
  border-radius: 8px;
  margin-bottom: 24px;
  border-left: 4px solid #F4A261;
}

.dept-item h3 {
  color: #2C3E50;
  margin-bottom: 12px;
}

.dept-item p {
  font-size: 15px;
  color: #5A6C7D;
  margin-bottom: 8px;
}

.faq-contact {
  padding: 60px 20px;
  background-color: #F8F9FA;
}

.faq-contact h2 {
  text-align: center;
  margin-bottom: 48px;
}

.faq-item {
  background-color: #FFFFFF;
  padding: 32px;
  border-radius: 8px;
  margin-bottom: 24px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.faq-item h3 {
  color: #FF6B35;
  margin-bottom: 12px;
  font-size: 18px;
}

.faq-item p {
  color: #5A6C7D;
}

/* ===================================
   LEGAL PAGES
   =================================== */
.legal-content {
  padding: 60px 20px;
  background-color: #FFFFFF;
}

.legal-content h2 {
  color: #2C3E50;
  margin-top: 40px;
  margin-bottom: 20px;
  font-size: 24px;
}

.legal-content p {
  max-width: 900px;
  margin-bottom: 16px;
  line-height: 1.8;
}

.legal-content ul,
.legal-content ol {
  max-width: 900px;
  margin-bottom: 24px;
  padding-left: 20px;
}

.legal-content li {
  margin-bottom: 12px;
  line-height: 1.7;
}

.contact-rodo,
.contact-regulations {
  background-color: #F8F9FA;
  padding: 32px;
  border-radius: 8px;
  margin-top: 40px;
  border-left: 4px solid #FF6B35;
}

.contact-rodo h2,
.contact-regulations h2 {
  margin-top: 0;
  font-size: 22px;
}

/* ===================================
   THANK YOU PAGE
   =================================== */
.thank-you-hero {
  padding: 80px 20px;
  background: linear-gradient(135deg, #2C3E50 0%, #34495E 100%);
  color: #FFFFFF;
  text-align: center;
}

.success-icon {
  width: 80px;
  height: 80px;
  background-color: #27AE60;
  color: #FFFFFF;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 48px;
  margin: 0 auto 32px;
  box-shadow: 0 8px 24px rgba(39, 174, 96, 0.4);
}

.thank-you-hero h1 {
  color: #FFFFFF;
  margin-bottom: 16px;
}

.thank-you-hero .subtitle {
  font-size: 20px;
  color: #ECF0F1;
  margin-bottom: 32px;
}

.next-steps {
  padding: 60px 20px;
  background-color: #FFFFFF;
}

.next-steps h2 {
  text-align: center;
  margin-bottom: 48px;
}

.steps-list {
  max-width: 800px;
  margin: 0 auto;
}

.step-item {
  display: flex;
  align-items: flex-start;
  gap: 24px;
  margin-bottom: 32px;
  padding: 24px;
  background-color: #F8F9FA;
  border-radius: 8px;
}

.step-num {
  flex-shrink: 0;
  width: 40px;
  height: 40px;
  background-color: #FF6B35;
  color: #FFFFFF;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 18px;
}

.step-item p {
  margin: 0;
  color: #2C3E50;
  font-size: 16px;
}

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

.useful-links h2 {
  text-align: center;
  margin-bottom: 48px;
}

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

.link-card {
  flex: 1 1 calc(33.333% - 20px);
  min-width: 250px;
  background-color: #FFFFFF;
  padding: 24px;
  border-radius: 8px;
  text-align: center;
  font-weight: 600;
  color: #2C3E50;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
  border: 2px solid transparent;
}

.link-card:hover {
  border-color: #FF6B35;
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
  color: #FF6B35;
}

.additional-info {
  padding: 60px 20px;
  background-color: #FFFFFF;
}

.additional-info h2 {
  text-align: center;
  margin-bottom: 32px;
}

.additional-info ul {
  max-width: 800px;
  margin: 0 auto;
}

.additional-info li {
  padding: 16px;
  margin-bottom: 12px;
  background-color: #F8F9FA;
  border-radius: 4px;
  border-left: 4px solid #F4A261;
}

/* ===================================
   CTA SECTIONS
   =================================== */
.cta-section,
.cta-banner,
.cta-quote,
.cta-project,
.cta-contact,
.cta-urgent {
  padding: 80px 20px;
  background: linear-gradient(135deg, #FF6B35 0%, #E55A2A 100%);
  color: #FFFFFF;
  text-align: center;
}

.cta-section h2,
.cta-banner h2,
.cta-quote h2,
.cta-project h2,
.cta-contact h2,
.cta-urgent h2 {
  color: #FFFFFF;
  margin-bottom: 16px;
  font-size: 32px;
}

.cta-section p,
.cta-banner p,
.cta-quote p,
.cta-project p,
.cta-contact p,
.cta-urgent p {
  color: #FFFFFF;
  font-size: 18px;
  margin-bottom: 32px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.cta-section .btn-primary,
.cta-banner .btn-primary,
.cta-quote .btn-primary,
.cta-project .btn-primary,
.cta-contact .btn-primary,
.cta-urgent .btn-primary {
  background-color: #FFFFFF;
  color: #FF6B35;
  margin: 0 8px;
}

.cta-section .btn-primary:hover,
.cta-banner .btn-primary:hover,
.cta-quote .btn-primary:hover,
.cta-project .btn-primary:hover,
.cta-contact .btn-primary:hover,
.cta-urgent .btn-primary:hover {
  background-color: #2C3E50;
  color: #FFFFFF;
}

.cta-section .btn-secondary,
.cta-project .btn-secondary {
  background-color: transparent;
  color: #FFFFFF;
  border-color: #FFFFFF;
  margin: 0 8px;
}

.cta-section .btn-secondary:hover,
.cta-project .btn-secondary:hover {
  background-color: #FFFFFF;
  color: #FF6B35;
}

.cta-contact .address {
  font-size: 16px;
  margin-top: 24px;
  font-weight: 600;
}

/* ===================================
   FOOTER
   =================================== */
footer {
  background-color: #2C3E50;
  color: #ECF0F1;
  padding: 60px 20px 20px;
}

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

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

.footer-column h3 {
  color: #F4A261;
  font-size: 20px;
  margin-bottom: 8px;
}

.footer-column h4 {
  color: #FFFFFF;
  font-size: 16px;
  margin-bottom: 8px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.footer-column p {
  font-size: 14px;
  line-height: 1.6;
  margin-bottom: 8px;
}

.footer-column a {
  color: #ECF0F1;
  font-size: 14px;
  padding: 6px 0;
  transition: all 0.3s ease;
}

.footer-column a:hover {
  color: #F4A261;
  padding-left: 8px;
}

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

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: center;
  margin-bottom: 20px;
}

.footer-links a {
  color: #ECF0F1;
  font-size: 13px;
  transition: color 0.3s ease;
}

.footer-links a:hover {
  color: #F4A261;
}

.footer-bottom p {
  font-size: 13px;
  color: #95A5A6;
}

/* ===================================
   COOKIE CONSENT BANNER
   =================================== */
.cookie-consent {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: #2C3E50;
  color: #FFFFFF;
  padding: 24px 20px;
  box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.3);
  z-index: 1998;
  transform: translateY(100%);
  transition: transform 0.4s ease;
}

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

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

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

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

.cookie-btn {
  padding: 10px 20px;
  border: none;
  border-radius: 4px;
  font-weight: 600;
  font-size: 14px;
  cursor: pointer;
  transition: all 0.3s ease;
  white-space: nowrap;
}

.cookie-btn-accept {
  background-color: #FF6B35;
  color: #FFFFFF;
}

.cookie-btn-accept:hover {
  background-color: #E55A2A;
}

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

.cookie-btn-reject:hover {
  background-color: #FFFFFF;
  color: #2C3E50;
}

.cookie-btn-settings {
  background-color: transparent;
  color: #F4A261;
  border: none;
  text-decoration: underline;
}

.cookie-btn-settings:hover {
  color: #FF6B35;
}

/* Cookie Settings Modal */
.cookie-modal {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(0, 0, 0, 0.7);
  z-index: 2000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
}

.cookie-modal.show {
  opacity: 1;
  visibility: visible;
}

.cookie-modal-content {
  background-color: #FFFFFF;
  padding: 40px;
  border-radius: 8px;
  max-width: 600px;
  width: 100%;
  max-height: 80vh;
  overflow-y: auto;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
}

.cookie-modal-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 24px;
}

.cookie-modal-header h3 {
  color: #2C3E50;
  font-size: 24px;
  margin: 0;
}

.cookie-modal-close {
  background: none;
  border: none;
  font-size: 32px;
  color: #5A6C7D;
  cursor: pointer;
  padding: 0;
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

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

.cookie-category {
  margin-bottom: 24px;
  padding: 20px;
  background-color: #F8F9FA;
  border-radius: 4px;
}

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

.cookie-category h4 {
  color: #2C3E50;
  font-size: 16px;
  margin: 0;
}

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

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

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

.cookie-toggle-slider {
  position: absolute;
  cursor: pointer;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: #CCC;
  transition: 0.4s;
  border-radius: 26px;
}

.cookie-toggle-slider:before {
  position: absolute;
  content: '';
  height: 18px;
  width: 18px;
  left: 4px;
  bottom: 4px;
  background-color: #FFFFFF;
  transition: 0.4s;
  border-radius: 50%;
}

.cookie-toggle input:checked + .cookie-toggle-slider {
  background-color: #FF6B35;
}

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

.cookie-toggle input:disabled + .cookie-toggle-slider {
  background-color: #95A5A6;
  cursor: not-allowed;
}

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

/* ===================================
   RESPONSIVE DESIGN
   =================================== */
@media (max-width: 768px) {
  /* Typography */
  h1 { font-size: 32px; }
  h2 { font-size: 24px; }
  h3 { font-size: 20px; }
  
  /* Hide desktop nav, show mobile menu button */
  .main-nav {
    display: none;
  }
  
  .mobile-menu-toggle {
    display: block;
  }
  
  /* Hero adjustments */
  .hero {
    padding: 60px 20px;
  }
  
  .hero h1 {
    font-size: 32px;
  }
  
  .hero-subtitle {
    font-size: 16px;
  }
  
  .cta-buttons {
    flex-direction: column;
    width: 100%;
  }
  
  .cta-buttons .btn-primary,
  .cta-buttons .btn-secondary {
    width: 100%;
  }
  
  .trust-badges {
    flex-direction: column;
    gap: 16px;
  }
  
  /* Grid adjustments */
  .features-grid,
  .services-grid,
  .values-grid,
  .benefits-grid {
    flex-direction: column;
  }
  
  .feature-card,
  .service-card,
  .value-card,
  .benefit-item {
    flex: 1 1 100%;
  }
  
  .process-steps {
    flex-direction: column;
  }
  
  .testimonials-grid {
    flex-direction: column;
  }
  
  .stats-grid {
    flex-direction: column;
  }
  
  .stat-number {
    font-size: 36px;
  }
  
  /* Contact grid */
  .contact-grid {
    flex-direction: column;
  }
  
  /* Footer */
  .footer-content {
    flex-direction: column;
    gap: 32px;
  }
  
  .footer-links {
    flex-direction: column;
    gap: 12px;
  }
  
  /* Cookie consent */
  .cookie-content {
    flex-direction: column;
  }
  
  .cookie-buttons {
    width: 100%;
    flex-direction: column;
  }
  
  .cookie-btn {
    width: 100%;
  }
  
  /* Links grid */
  .links-grid {
    flex-direction: column;
  }
  
  .link-card {
    flex: 1 1 100%;
  }
  
  /* Service detail */
  .service-detail {
    padding: 24px;
  }
  
  /* Cookie modal */
  .cookie-modal-content {
    padding: 24px;
  }
  
  .cookie-modal-actions {
    flex-direction: column;
  }
  
  .cookie-modal-actions .cookie-btn {
    width: 100%;
  }
}

@media (max-width: 480px) {
  h1 { font-size: 28px; }
  h2 { font-size: 22px; }
  
  .hero h1 {
    font-size: 28px;
  }
  
  .stat-number {
    font-size: 32px;
  }
  
  .btn-primary,
  .btn-secondary {
    padding: 12px 24px;
    font-size: 14px;
  }
  
  .service-detail .price {
    font-size: 24px;
  }
  
  .price-item {
    flex-direction: column;
    align-items: flex-start;
  }
  
  .mobile-menu {
    width: 100%;
    right: -100%;
  }
}

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

.feature-card,
.service-card,
.testimonial-card,
.value-card {
  animation: fadeIn 0.6s ease forwards;
}

/* ===================================
   PRINT STYLES
   =================================== */
@media print {
  .mobile-menu-toggle,
  .mobile-menu,
  .cookie-consent,
  .cookie-modal,
  header,
  footer,
  .cta-section,
  .cta-banner {
    display: none;
  }
  
  body {
    background-color: #FFFFFF;
  }
  
  .section {
    page-break-inside: avoid;
  }
}