/* ===================================
   TIDY SCEPTER - MODERN BOLD DESIGN
   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', Arial, sans-serif;
  line-height: 1.6;
  color: #1a1a1a;
  background-color: #ffffff;
  overflow-x: hidden;
}

/* ===================================
   TYPOGRAPHY - BOLD MODERN STYLE
   =================================== */

h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 16px;
  color: #1a1a1a;
  letter-spacing: -0.02em;
}

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

h2 {
  font-size: 36px;
  margin-bottom: 20px;
}

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

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

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

a:hover {
  color: #E67E22;
}

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%;
}

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

/* ===================================
   BUTTONS - BOLD MODERN STYLE
   =================================== */

.btn {
  display: inline-block;
  padding: 16px 32px;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 16px;
  font-weight: 700;
  text-align: center;
  text-decoration: none;
  border: none;
  border-radius: 0;
  cursor: pointer;
  transition: all 0.3s ease;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  box-shadow: 4px 4px 0 rgba(0, 0, 0, 0.2);
}

.btn-primary {
  background-color: #E67E22;
  color: #ffffff;
  border: 3px solid #1a1a1a;
}

.btn-primary:hover {
  background-color: #D35400;
  transform: translateY(-2px);
  box-shadow: 6px 6px 0 rgba(0, 0, 0, 0.3);
}

.btn-secondary {
  background-color: #2C5F7C;
  color: #ffffff;
  border: 3px solid #1a1a1a;
}

.btn-secondary:hover {
  background-color: #1a4558;
  transform: translateY(-2px);
  box-shadow: 6px 6px 0 rgba(0, 0, 0, 0.3);
}

/* ===================================
   HEADER & NAVIGATION
   =================================== */

header {
  background-color: #ffffff;
  border-bottom: 4px solid #1a1a1a;
  padding: 16px 0;
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 4px 0 rgba(0, 0, 0, 0.1);
}

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

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

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

.main-nav a {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 14px;
  font-weight: 700;
  color: #1a1a1a;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  padding: 8px 0;
  position: relative;
}

.main-nav a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 3px;
  background-color: #E67E22;
  transition: width 0.3s ease;
}

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

.header-cta {
  display: flex;
  align-items: center;
}

/* ===================================
   MOBILE MENU
   =================================== */

.mobile-menu-toggle {
  display: none;
  position: fixed;
  top: 20px;
  right: 20px;
  z-index: 2000;
  background-color: #E67E22;
  color: #ffffff;
  border: 3px solid #1a1a1a;
  width: 50px;
  height: 50px;
  font-size: 24px;
  cursor: pointer;
  box-shadow: 4px 4px 0 rgba(0, 0, 0, 0.2);
  transition: all 0.3s ease;
}

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

.mobile-menu {
  position: fixed;
  top: 0;
  right: -100%;
  width: 300px;
  height: 100vh;
  background-color: #1a1a1a;
  z-index: 1999;
  padding: 80px 30px 30px;
  transition: right 0.4s ease;
  box-shadow: -4px 0 12px rgba(0, 0, 0, 0.3);
}

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

.mobile-menu-close {
  position: absolute;
  top: 20px;
  right: 20px;
  background-color: #E67E22;
  color: #ffffff;
  border: 3px solid #ffffff;
  width: 40px;
  height: 40px;
  font-size: 24px;
  cursor: pointer;
  box-shadow: 2px 2px 0 rgba(255, 255, 255, 0.2);
}

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

.mobile-nav a {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 18px;
  font-weight: 700;
  color: #ffffff;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  padding: 12px 0;
  border-bottom: 2px solid #333;
  transition: all 0.3s ease;
}

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

/* ===================================
   HERO SECTION - BOLD DESIGN
   =================================== */

.hero {
  background: linear-gradient(135deg, #2C5F7C 0%, #1a4558 100%);
  color: #ffffff;
  padding: 80px 20px;
  margin-bottom: 0;
  border-bottom: 6px solid #E67E22;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: repeating-linear-gradient(
    45deg,
    transparent,
    transparent 10px,
    rgba(255, 255, 255, 0.03) 10px,
    rgba(255, 255, 255, 0.03) 20px
  );
  pointer-events: none;
}

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

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

.hero-subtitle {
  font-size: 20px;
  margin-bottom: 32px;
  font-weight: 400;
  line-height: 1.6;
}

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

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

.trust-badges span {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
  padding: 8px 16px;
  background-color: rgba(255, 255, 255, 0.15);
  border: 2px solid #ffffff;
  letter-spacing: 0.05em;
}

/* ===================================
   VALUES SECTION
   =================================== */

.values {
  background-color: #F8F9FA;
  border-top: 4px solid #1a1a1a;
  border-bottom: 4px solid #1a1a1a;
}

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

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

.value-item {
  flex: 1 1 calc(50% - 16px);
  min-width: 250px;
  background-color: #ffffff;
  padding: 32px;
  border: 4px solid #1a1a1a;
  box-shadow: 8px 8px 0 rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
}

.value-item:hover {
  transform: translateY(-4px);
  box-shadow: 12px 12px 0 rgba(230, 126, 34, 0.3);
  border-color: #E67E22;
}

.value-item h3 {
  color: #2C5F7C;
  font-size: 24px;
  margin-bottom: 16px;
  font-weight: 800;
}

.value-item p {
  color: #333;
  font-size: 16px;
  line-height: 1.7;
}

/* ===================================
   SERVICES SECTION
   =================================== */

.services-preview,
.services-detailed {
  background-color: #ffffff;
  padding: 60px 20px;
}

.services-preview h2,
.services-detailed h2 {
  text-align: center;
  margin-bottom: 16px;
  font-size: 42px;
}

.section-subtitle {
  text-align: center;
  font-size: 18px;
  color: #666;
  margin-bottom: 48px;
}

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

.service-card {
  flex: 1 1 calc(33.333% - 16px);
  min-width: 280px;
  background-color: #F8F9FA;
  padding: 32px;
  border: 4px solid #1a1a1a;
  transition: all 0.3s ease;
  position: relative;
}

.service-card::before {
  content: '';
  position: absolute;
  top: -4px;
  left: -4px;
  right: -4px;
  height: 6px;
  background-color: #E67E22;
  transform: scaleX(0);
  transition: transform 0.3s ease;
}

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

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

.service-card h3 {
  font-size: 20px;
  margin-bottom: 16px;
  color: #1a1a1a;
  font-weight: 800;
}

.service-card .price {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 24px;
  font-weight: 800;
  color: #E67E22;
  margin-top: 16px;
}

.service-detailed {
  background-color: #ffffff;
  padding: 32px;
  margin-bottom: 32px;
  border-left: 6px solid #2C5F7C;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.service-detailed h2 {
  text-align: left;
  font-size: 28px;
  margin-bottom: 16px;
}

.service-detailed .price {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 28px;
  font-weight: 800;
  color: #E67E22;
  margin: 16px 0;
}

.service-detailed .features {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-top: 16px;
}

.service-detailed .features li {
  padding-left: 24px;
  position: relative;
  font-size: 16px;
}

.service-detailed .features li::before {
  content: '▸';
  position: absolute;
  left: 0;
  color: #E67E22;
  font-weight: 700;
}

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

/* ===================================
   STATS SECTION
   =================================== */

.stats {
  background-color: #1a1a1a;
  color: #ffffff;
  padding: 60px 20px;
  border-top: 6px solid #E67E22;
  border-bottom: 6px solid #E67E22;
}

.stats h2 {
  text-align: center;
  color: #ffffff;
  margin-bottom: 48px;
  font-size: 42px;
}

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

.stat-item {
  flex: 1 1 calc(25% - 24px);
  min-width: 200px;
  text-align: center;
  padding: 24px;
  background-color: rgba(255, 255, 255, 0.05);
  border: 3px solid #E67E22;
}

.stat-number {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 56px;
  font-weight: 900;
  color: #E67E22;
  margin-bottom: 8px;
  text-shadow: 3px 3px 0 rgba(0, 0, 0, 0.3);
}

.stat-label {
  font-size: 16px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.stat-item p {
  margin-top: 12px;
  font-size: 14px;
  color: #ccc;
}

/* ===================================
   TESTIMONIALS SECTION
   =================================== */

.testimonials {
  background-color: #F8F9FA;
  padding: 60px 20px;
  border-top: 4px solid #1a1a1a;
}

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

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

.testimonial-card {
  flex: 1 1 calc(50% - 16px);
  min-width: 300px;
  background-color: #ffffff;
  padding: 32px;
  border: 4px solid #1a1a1a;
  box-shadow: 6px 6px 0 rgba(0, 0, 0, 0.1);
  display: flex;
  flex-direction: column;
  gap: 20px;
}

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

.testimonial-author {
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding-top: 16px;
  border-top: 3px solid #E67E22;
}

.testimonial-author strong {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 16px;
  font-weight: 700;
  color: #1a1a1a;
}

.testimonial-author span {
  font-size: 14px;
  color: #666;
}

/* ===================================
   CTA BANNER & SECTIONS
   =================================== */

.cta-banner,
.cta-section {
  background: linear-gradient(135deg, #E67E22 0%, #D35400 100%);
  color: #ffffff;
  padding: 60px 20px;
  text-align: center;
  border-top: 6px solid #1a1a1a;
  border-bottom: 6px solid #1a1a1a;
  margin-bottom: 0;
}

.cta-banner h2,
.cta-section h2 {
  color: #ffffff;
  font-size: 42px;
  margin-bottom: 16px;
  text-shadow: 3px 3px 0 rgba(0, 0, 0, 0.3);
}

.cta-banner p,
.cta-section p {
  font-size: 18px;
  margin-bottom: 32px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

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

/* ===================================
   PAGE HEADER
   =================================== */

.page-header {
  background: linear-gradient(135deg, #2C5F7C 0%, #1a4558 100%);
  color: #ffffff;
  padding: 60px 20px;
  text-align: center;
  border-bottom: 6px solid #E67E22;
  margin-bottom: 0;
}

.page-header h1 {
  color: #ffffff;
  font-size: 48px;
  margin-bottom: 16px;
  text-shadow: 3px 3px 0 rgba(0, 0, 0, 0.3);
}

.page-header p {
  font-size: 18px;
  max-width: 700px;
  margin: 0 auto;
}

.last-update {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.8);
  margin-top: 16px;
}

/* ===================================
   COMPANY STORY & CONTENT SECTIONS
   =================================== */

.company-story,
.portfolio-intro,
.pricing-intro,
.pricing-factors,
.service-area,
.contact-reminder {
  padding: 40px 20px;
}

.company-story h2,
.portfolio-intro h2 {
  font-size: 36px;
  margin-bottom: 24px;
}

.company-story p,
.portfolio-intro p {
  font-size: 17px;
  line-height: 1.8;
  margin-bottom: 20px;
  color: #333;
}

/* ===================================
   PROJECTS/PORTFOLIO
   =================================== */

.projects {
  padding: 40px 20px;
}

.project-card {
  background-color: #ffffff;
  padding: 32px;
  margin-bottom: 32px;
  border: 4px solid #1a1a1a;
  box-shadow: 6px 6px 0 rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
}

.project-card:hover {
  transform: translateY(-4px);
  box-shadow: 10px 10px 0 rgba(230, 126, 34, 0.2);
  border-color: #E67E22;
}

.project-card h2 {
  font-size: 24px;
  margin-bottom: 16px;
  color: #2C5F7C;
}

.project-meta {
  font-size: 14px;
  color: #666;
  font-weight: 600;
  margin-top: 16px;
}

/* ===================================
   PRICING SECTIONS
   =================================== */

.pricing-table {
  padding: 40px 20px;
}

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

.pricing-list {
  display: flex;
  flex-direction: column;
  gap: 24px;
  max-width: 800px;
  margin: 0 auto;
}

.price-item {
  background-color: #ffffff;
  padding: 32px;
  border: 4px solid #1a1a1a;
  border-left: 8px solid #2C5F7C;
  box-shadow: 4px 4px 0 rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
}

.price-item:hover {
  transform: translateX(4px);
  border-left-color: #E67E22;
  box-shadow: 6px 6px 0 rgba(230, 126, 34, 0.2);
}

.price-item h3 {
  font-size: 22px;
  margin-bottom: 12px;
  color: #1a1a1a;
}

.price-item .price {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 32px;
  font-weight: 900;
  color: #E67E22;
  margin: 16px 0;
}

.price-item .includes {
  font-size: 14px;
  color: #666;
  margin-top: 12px;
}

.pricing-factors ul {
  max-width: 600px;
  margin: 0 auto;
}

.pricing-factors li {
  padding: 12px 0 12px 32px;
  position: relative;
  font-size: 16px;
  border-bottom: 2px solid #F8F9FA;
}

.pricing-factors li::before {
  content: '▸';
  position: absolute;
  left: 0;
  color: #E67E22;
  font-weight: 700;
  font-size: 20px;
}

/* ===================================
   CONTACT SECTIONS
   =================================== */

.contact-info {
  padding: 40px 20px;
}

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

.contact-item {
  flex: 1 1 calc(50% - 16px);
  min-width: 250px;
  background-color: #F8F9FA;
  padding: 32px;
  border: 4px solid #1a1a1a;
  border-top: 6px solid #E67E22;
}

.contact-item h2 {
  font-size: 22px;
  margin-bottom: 16px;
  color: #2C5F7C;
}

.contact-item p {
  font-size: 16px;
  line-height: 1.7;
  color: #333;
}

.contact-item strong {
  font-weight: 700;
  color: #1a1a1a;
}

.contact-form-section {
  padding: 40px 20px;
  background-color: #F8F9FA;
}

.form-placeholder {
  background-color: #ffffff;
  padding: 40px;
  border: 4px solid #1a1a1a;
  max-width: 700px;
  margin: 0 auto;
}

.form-placeholder p {
  padding: 12px;
  margin-bottom: 16px;
  background-color: #F8F9FA;
  border-left: 4px solid #2C5F7C;
  font-size: 14px;
}

.form-placeholder .note {
  font-size: 12px;
  color: #666;
  margin-top: 24px;
}

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

.trust-stats span {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
  padding: 12px 20px;
  background-color: #2C5F7C;
  border: 3px solid #1a1a1a;
  color: #ffffff;
  letter-spacing: 0.05em;
}

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

.thank-you-hero {
  background: linear-gradient(135deg, #E67E22 0%, #D35400 100%);
  color: #ffffff;
  padding: 80px 20px;
  text-align: center;
  border-bottom: 6px solid #1a1a1a;
  margin-bottom: 0;
}

.success-icon {
  width: 100px;
  height: 100px;
  background-color: #27AE60;
  color: #ffffff;
  font-size: 60px;
  font-weight: 900;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 24px;
  border: 6px solid #ffffff;
  border-radius: 50%;
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.3);
}

.subtitle {
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 16px;
}

.next-steps,
.useful-resources,
.reassurance {
  padding: 60px 20px;
}

.steps-grid,
.resources-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  margin-top: 32px;
}

.step-item,
.resource-item {
  flex: 1 1 calc(50% - 16px);
  min-width: 250px;
  background-color: #ffffff;
  padding: 32px;
  border: 4px solid #1a1a1a;
  box-shadow: 4px 4px 0 rgba(0, 0, 0, 0.1);
}

.step-item h3,
.resource-item h3 {
  font-size: 20px;
  margin-bottom: 12px;
  color: #2C5F7C;
}

.step-item .time {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 14px;
  font-weight: 700;
  color: #E67E22;
  margin-top: 12px;
}

/* ===================================
   LEGAL CONTENT
   =================================== */

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

.legal-section {
  margin-bottom: 40px;
  padding-bottom: 32px;
  border-bottom: 3px solid #F8F9FA;
}

.legal-section h2 {
  font-size: 24px;
  margin-bottom: 16px;
  color: #2C5F7C;
}

.legal-section p,
.legal-section li {
  font-size: 16px;
  line-height: 1.8;
  color: #333;
  margin-bottom: 12px;
}

.legal-section ul {
  margin-left: 24px;
}

.legal-section li {
  padding-left: 16px;
  position: relative;
}

.legal-section li::before {
  content: '•';
  position: absolute;
  left: 0;
  color: #E67E22;
  font-weight: 700;
}

/* ===================================
   FOOTER
   =================================== */

footer {
  background-color: #1a1a1a;
  color: #ffffff;
  padding: 60px 20px 20px;
  border-top: 6px solid #E67E22;
}

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

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

.footer-column h3 {
  font-size: 20px;
  margin-bottom: 16px;
  color: #E67E22;
  font-weight: 800;
}

.tagline {
  font-style: italic;
  color: #ccc;
  margin-bottom: 12px;
}

.footer-column p {
  font-size: 14px;
  color: #ccc;
  line-height: 1.7;
}

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

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

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

.footer-bottom {
  padding-top: 24px;
  border-top: 3px solid #333;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
}

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

.footer-links {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

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

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

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

.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: #1a1a1a;
  color: #ffffff;
  padding: 24px;
  border-top: 4px solid #E67E22;
  z-index: 1500;
  transform: translateY(100%);
  transition: transform 0.4s ease;
  box-shadow: 0 -4px 12px rgba(0, 0, 0, 0.3);
}

.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 1 400px;
  font-size: 14px;
  line-height: 1.6;
}

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

.cookie-btn {
  padding: 12px 24px;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
  border: 2px solid #ffffff;
  cursor: pointer;
  transition: all 0.3s ease;
  background-color: transparent;
  color: #ffffff;
}

.cookie-btn-accept {
  background-color: #E67E22;
  border-color: #E67E22;
}

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

.cookie-btn-reject:hover {
  background-color: #333;
}

.cookie-btn-settings:hover {
  background-color: #2C5F7C;
  border-color: #2C5F7C;
}

/* ===================================
   COOKIE SETTINGS MODAL
   =================================== */

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

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

.cookie-modal-content {
  background-color: #ffffff;
  max-width: 600px;
  width: 100%;
  padding: 40px;
  border: 4px solid #1a1a1a;
  box-shadow: 8px 8px 0 rgba(230, 126, 34, 0.3);
  max-height: 80vh;
  overflow-y: auto;
}

.cookie-modal h2 {
  font-size: 28px;
  margin-bottom: 24px;
  color: #1a1a1a;
}

.cookie-category {
  margin-bottom: 24px;
  padding-bottom: 24px;
  border-bottom: 2px solid #F8F9FA;
}

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

.cookie-toggle {
  width: 50px;
  height: 26px;
  background-color: #ccc;
  border-radius: 13px;
  position: relative;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.cookie-toggle.active {
  background-color: #E67E22;
}

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

.cookie-toggle.active::after {
  transform: translateX(24px);
}

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

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

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

@media (max-width: 768px) {
  /* Typography adjustments */
  h1 { font-size: 32px; }
  h2 { font-size: 28px; }
  h3 { font-size: 20px; }
  
  .hero h1 { font-size: 36px; }
  .page-header h1 { font-size: 32px; }
  
  /* Hide desktop navigation */
  .main-nav {
    display: none;
  }
  
  .header-cta {
    display: none;
  }
  
  /* Show mobile menu button */
  .mobile-menu-toggle {
    display: block;
  }
  
  /* Header adjustments */
  .header-content {
    justify-content: center;
  }
  
  /* Hero adjustments */
  .hero {
    padding: 60px 20px;
  }
  
  .hero-cta {
    flex-direction: column;
  }
  
  .hero-cta .btn {
    width: 100%;
  }
  
  .trust-badges {
    flex-direction: column;
  }
  
  /* Grid adjustments */
  .values-grid,
  .services-grid,
  .stats-grid,
  .testimonials-grid,
  .contact-grid,
  .steps-grid,
  .resources-grid {
    flex-direction: column;
  }
  
  .value-item,
  .service-card,
  .stat-item,
  .testimonial-card,
  .contact-item,
  .step-item,
  .resource-item {
    flex: 1 1 100%;
  }
  
  /* Footer adjustments */
  .footer-content {
    flex-direction: column;
  }
  
  .footer-column {
    flex: 1 1 100%;
  }
  
  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }
  
  /* Cookie banner adjustments */
  .cookie-content {
    flex-direction: column;
  }
  
  .cookie-buttons {
    width: 100%;
    flex-direction: column;
  }
  
  .cookie-btn {
    width: 100%;
  }
  
  /* CTA buttons */
  .cta-buttons {
    flex-direction: column;
  }
  
  .cta-buttons .btn {
    width: 100%;
  }
}

@media (min-width: 769px) and (max-width: 1024px) {
  .value-item,
  .service-card {
    flex: 1 1 calc(50% - 16px);
  }
  
  .stat-item {
    flex: 1 1 calc(50% - 16px);
  }
}

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

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

.hero-content,
.page-header {
  animation: fadeIn 0.6s ease-out;
}

/* Smooth scrolling */
html {
  scroll-behavior: smooth;
}

/* Focus states for accessibility */
a:focus,
button:focus {
  outline: 3px solid #E67E22;
  outline-offset: 2px;
}

/* Print styles */
@media print {
  .mobile-menu-toggle,
  .mobile-menu,
  .cookie-banner,
  .cookie-modal,
  header,
  footer {
    display: none;
  }
}