/* ============================================
   QUIET JOIST - GRADIENT MODERN DESIGN
   Professional Tools Website CSS
   ============================================ */

/* ============================================
   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', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
  line-height: 1.6;
  color: #263238;
  background: linear-gradient(135deg, #ffffff 0%, #f5f5f5 100%);
  overflow-x: hidden;
}

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

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

ul {
  list-style: none;
}

/* ============================================
   TYPOGRAPHY
   ============================================ */

h1, h2, h3, h4, h5, h6 {
  font-family: 'Bebas Neue', 'Arial Black', sans-serif;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 16px;
  background: linear-gradient(135deg, #D84315 0%, #E65100 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

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

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

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

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

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

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

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

.content-wrapper {
  margin-bottom: 60px;
}

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

header {
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.95) 0%, rgba(245, 245, 245, 0.95) 100%);
  backdrop-filter: blur(10px);
  box-shadow: 0 2px 20px rgba(216, 67, 21, 0.1);
  position: sticky;
  top: 0;
  z-index: 1000;
  padding: 20px 0;
}

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

.logo {
  display: flex;
  align-items: center;
}

.logo img {
  height: 50px;
  width: auto;
  transition: transform 0.3s ease;
}

.logo img:hover {
  transform: scale(1.05);
}

/* ============================================
   NAVIGATION
   ============================================ */

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

.main-nav a {
  font-weight: 600;
  color: #37474F;
  position: relative;
  padding: 8px 0;
  font-size: 16px;
  transition: all 0.3s ease;
}

.main-nav a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 3px;
  background: linear-gradient(90deg, #D84315 0%, #FFA726 100%);
  transition: width 0.3s ease;
}

.main-nav a:hover {
  color: #D84315;
}

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

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

.mobile-menu-toggle {
  display: none;
  position: fixed;
  top: 20px;
  right: 20px;
  z-index: 2000;
  background: linear-gradient(135deg, #D84315 0%, #E65100 100%);
  color: white;
  border: none;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  font-size: 24px;
  cursor: pointer;
  box-shadow: 0 4px 15px rgba(216, 67, 21, 0.3);
  transition: all 0.3s ease;
}

.mobile-menu-toggle:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 20px rgba(216, 67, 21, 0.4);
}

.mobile-menu {
  position: fixed;
  top: 0;
  right: -100%;
  width: 80%;
  max-width: 300px;
  height: 100vh;
  background: linear-gradient(135deg, #ffffff 0%, #f5f5f5 100%);
  z-index: 1999;
  padding: 80px 30px 30px;
  box-shadow: -5px 0 25px rgba(0, 0, 0, 0.2);
  transition: right 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
  overflow-y: auto;
}

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

.mobile-menu-close {
  position: absolute;
  top: 20px;
  right: 20px;
  background: linear-gradient(135deg, #D84315 0%, #E65100 100%);
  color: white;
  border: none;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  font-size: 24px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

.mobile-menu-close:hover {
  transform: rotate(90deg);
  box-shadow: 0 4px 15px rgba(216, 67, 21, 0.3);
}

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

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

.mobile-nav a:hover {
  border-left-color: #D84315;
  background: linear-gradient(90deg, rgba(216, 67, 21, 0.05) 0%, transparent 100%);
  color: #D84315;
}

/* ============================================
   BUTTONS
   ============================================ */

.btn {
  display: inline-block;
  padding: 14px 32px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 16px;
  text-align: center;
  cursor: pointer;
  transition: all 0.3s ease;
  border: 2px solid transparent;
  position: relative;
  overflow: hidden;
}

.btn::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.3);
  transform: translate(-50%, -50%);
  transition: width 0.6s ease, height 0.6s ease;
}

.btn:hover::before {
  width: 300px;
  height: 300px;
}

.btn-primary {
  background: linear-gradient(135deg, #D84315 0%, #E65100 100%);
  color: white;
  box-shadow: 0 4px 15px rgba(216, 67, 21, 0.3);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(216, 67, 21, 0.4);
}

.btn-secondary {
  background: transparent;
  color: #D84315;
  border: 2px solid #D84315;
}

.btn-secondary:hover {
  background: linear-gradient(135deg, #D84315 0%, #E65100 100%);
  color: white;
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(216, 67, 21, 0.3);
}

/* ============================================
   HERO SECTION
   ============================================ */

.hero {
  background: linear-gradient(135deg, #FFA726 0%, #D84315 50%, #E65100 100%);
  padding: 100px 20px;
  margin-bottom: 60px;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
  border-radius: 50%;
  animation: float 6s ease-in-out infinite;
}

@keyframes float {
  0%, 100% { transform: translateY(0) rotate(0deg); }
  50% { transform: translateY(-30px) rotate(5deg); }
}

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

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

.hero-subtitle {
  color: rgba(255, 255, 255, 0.95);
  font-size: 20px;
  margin-bottom: 32px;
  line-height: 1.6;
}

.hero-cta {
  display: flex;
  gap: 16px;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  margin-bottom: 48px;
}

.trust-indicators {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 48px;
  flex-wrap: wrap;
  margin-top: 48px;
}

.trust-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}

.trust-number {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 36px;
  color: white;
  font-weight: 700;
}

.trust-label {
  color: rgba(255, 255, 255, 0.9);
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* ============================================
   HERO INTERNAL
   ============================================ */

.hero-internal {
  background: linear-gradient(135deg, #FFA726 0%, #D84315 100%);
  padding: 80px 20px 60px;
  margin-bottom: 60px;
  position: relative;
}

.hero-internal h1 {
  color: white;
  background: none;
  -webkit-text-fill-color: white;
  font-size: 48px;
  margin-bottom: 16px;
}

.intro {
  color: rgba(255, 255, 255, 0.95);
  font-size: 20px;
  margin-bottom: 0;
}

.updated {
  color: rgba(255, 255, 255, 0.85);
  font-size: 14px;
  margin-bottom: 0;
}

/* ============================================
   BREADCRUMB
   ============================================ */

.breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 24px;
  flex-wrap: wrap;
}

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

.breadcrumb a:hover {
  color: white;
}

.breadcrumb span {
  color: rgba(255, 255, 255, 0.7);
  font-size: 14px;
}

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

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

.values,
.services,
.testimonials,
.products-section,
.categories,
.benefits,
.service-types,
.guarantees,
.content-section,
.mission-vision,
.why-us,
.team,
.service-detail,
.buying-guide,
.workshop-guide,
.service-process,
.contact-methods,
.opening-hours,
.departments,
.legal-content,
.rights-overview,
.cookie-table,
.thank-you-hero,
.next-steps,
.contact-reminder,
.suggestions {
  padding: 60px 20px;
  margin-bottom: 0;
}

.section-subtitle {
  color: #37474F;
  font-size: 18px;
  text-align: center;
  max-width: 700px;
  margin: 0 auto 48px;
}

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

.text-section {
  max-width: 800px;
  margin: 0 auto 32px;
  line-height: 1.8;
}

.text-section p {
  margin-bottom: 24px;
}

/* ============================================
   CARDS & GRIDS - FLEXBOX ONLY
   ============================================ */

.values-grid,
.services-grid,
.products-grid,
.category-grid,
.benefits-grid,
.guarantee-grid,
.reasons-grid,
.contact-grid,
.departments-grid,
.rights-grid,
.steps-grid,
.suggestions-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: center;
}

.value-card,
.service-card,
.product-card,
.category-card,
.benefit-card,
.guarantee-card,
.reason-card,
.contact-card,
.department-card,
.right-card,
.step-card,
.suggestion-card {
  background: white;
  padding: 32px;
  border-radius: 16px;
  box-shadow: 0 4px 20px rgba(216, 67, 21, 0.08);
  transition: all 0.3s ease;
  flex: 1 1 300px;
  max-width: 380px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-bottom: 20px;
  position: relative;
}

.value-card::before,
.service-card::before,
.product-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, #D84315 0%, #FFA726 100%);
  border-radius: 16px 16px 0 0;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.value-card:hover,
.service-card:hover,
.product-card:hover,
.category-card:hover,
.benefit-card:hover,
.guarantee-card:hover,
.reason-card:hover,
.contact-card:hover,
.department-card:hover,
.right-card:hover,
.suggestion-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 8px 30px rgba(216, 67, 21, 0.15);
}

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

.value-card img,
.benefit-card img,
.reason-card img,
.contact-card img {
  width: 60px;
  height: 60px;
  margin-bottom: 8px;
}

.value-card h3,
.service-card h3,
.product-card h3,
.category-card h3,
.benefit-card h3,
.guarantee-card h3,
.reason-card h3,
.contact-card h3,
.department-card h3,
.right-card h3,
.suggestion-card h3 {
  color: #37474F;
  background: none;
  -webkit-text-fill-color: #37474F;
}

.value-card p,
.service-card p,
.product-card p,
.category-card p,
.benefit-card p,
.guarantee-card p,
.reason-card p,
.contact-card p,
.department-card p,
.right-card p,
.suggestion-card p {
  color: #546E7A;
  font-size: 15px;
  line-height: 1.6;
}

.price {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 24px;
  background: linear-gradient(135deg, #D84315 0%, #FFA726 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-top: auto;
  display: block;
}

.price-highlight {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 32px;
  background: linear-gradient(135deg, #D84315 0%, #FFA726 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  display: inline-block;
  margin: 24px 0;
}

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

.testimonials {
  background: linear-gradient(135deg, #f5f5f5 0%, #ffffff 100%);
}

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

.testimonial-card {
  background: white;
  padding: 32px;
  border-radius: 16px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  flex: 1 1 450px;
  max-width: 550px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-bottom: 20px;
  border-left: 4px solid #FFA726;
}

.testimonial-card p {
  color: #37474F;
  font-style: italic;
  font-size: 16px;
  line-height: 1.8;
  margin-bottom: 16px;
}

.testimonial-author {
  display: flex;
  flex-direction: column;
  gap: 4px;
  margin-top: auto;
}

.testimonial-author strong {
  color: #263238;
  font-size: 16px;
}

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

/* ============================================
   CTA SECTIONS
   ============================================ */

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

.cta-banner::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -10%;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
  border-radius: 50%;
}

.cta-banner h2,
.cta-section h2 {
  color: white;
  background: none;
  -webkit-text-fill-color: white;
  margin-bottom: 16px;
}

.cta-banner p,
.cta-section p {
  color: rgba(255, 255, 255, 0.95);
  font-size: 18px;
  margin-bottom: 32px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

/* ============================================
   PROCESS STEPS
   ============================================ */

.process-steps {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  justify-content: center;
  margin-top: 48px;
}

.step {
  background: white;
  padding: 32px;
  border-radius: 16px;
  box-shadow: 0 4px 20px rgba(216, 67, 21, 0.08);
  flex: 1 1 200px;
  max-width: 250px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  margin-bottom: 20px;
  transition: all 0.3s ease;
}

.step:hover {
  transform: translateY(-8px);
  box-shadow: 0 8px 30px rgba(216, 67, 21, 0.15);
}

.step-number {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 48px;
  background: linear-gradient(135deg, #D84315 0%, #FFA726 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
}

.step h3 {
  color: #37474F;
  background: none;
  -webkit-text-fill-color: #37474F;
  margin-bottom: 8px;
}

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

/* ============================================
   FAQ
   ============================================ */

.faq {
  background: linear-gradient(135deg, #f5f5f5 0%, #ffffff 100%);
}

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

.faq-item {
  background: white;
  padding: 32px;
  border-radius: 16px;
  box-shadow: 0 2px 15px rgba(0, 0, 0, 0.05);
  border-left: 4px solid #FFA726;
  transition: all 0.3s ease;
}

.faq-item:hover {
  box-shadow: 0 4px 20px rgba(216, 67, 21, 0.1);
  transform: translateX(4px);
}

.faq-item h3 {
  color: #37474F;
  background: none;
  -webkit-text-fill-color: #37474F;
  margin-bottom: 12px;
  font-size: 20px;
}

.faq-item p {
  color: #546E7A;
  margin-bottom: 0;
}

/* ============================================
   MISSION & VISION
   ============================================ */

.mission-vision {
  background: linear-gradient(135deg, #FFA726 0%, #D84315 100%);
  padding: 80px 20px;
}

.mission-block,
.vision-block {
  background: rgba(255, 255, 255, 0.95);
  padding: 40px;
  border-radius: 16px;
  margin-bottom: 32px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.mission-block:last-child,
.vision-block:last-child {
  margin-bottom: 0;
}

.mission-block h2,
.vision-block h2 {
  margin-bottom: 16px;
}

.mission-block p,
.vision-block p {
  font-size: 18px;
  line-height: 1.8;
  margin-bottom: 0;
}

/* ============================================
   CONTACT PAGE
   ============================================ */

.form-container {
  max-width: 700px;
  margin: 48px auto 0;
  background: white;
  padding: 40px;
  border-radius: 16px;
  box-shadow: 0 4px 20px rgba(216, 67, 21, 0.08);
}

.form-info p {
  margin-bottom: 16px;
  padding: 12px 16px;
  background: linear-gradient(135deg, #f5f5f5 0%, #ffffff 100%);
  border-radius: 8px;
  border-left: 3px solid #FFA726;
}

.form-note {
  font-size: 14px;
  color: #78909C;
  font-style: italic;
}

.hours-table {
  max-width: 600px;
  margin: 48px auto 0;
  background: white;
  padding: 32px;
  border-radius: 16px;
  box-shadow: 0 4px 20px rgba(216, 67, 21, 0.08);
}

.hours-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 16px 0;
  border-bottom: 1px solid #ECEFF1;
}

.hours-row:last-child {
  border-bottom: none;
}

.day {
  font-weight: 600;
  color: #37474F;
}

.time {
  color: #D84315;
  font-weight: 600;
}

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

.thank-you-hero {
  background: linear-gradient(135deg, #FFA726 0%, #D84315 100%);
  padding: 100px 20px;
  text-align: center;
}

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

.success-icon {
  width: 100px;
  height: 100px;
  background: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 60px;
  color: #4CAF50;
  margin: 0 auto 32px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.thank-you-content h1 {
  color: white;
  background: none;
  -webkit-text-fill-color: white;
  margin-bottom: 16px;
}

.thank-you-content p {
  color: rgba(255, 255, 255, 0.95);
  font-size: 18px;
}

.back-home {
  text-align: center;
  padding: 60px 20px;
}

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

footer {
  background: linear-gradient(135deg, #263238 0%, #37474F 100%);
  color: rgba(255, 255, 255, 0.9);
  padding: 60px 20px 20px;
  margin-top: 60px;
}

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

.footer-column {
  flex: 1 1 200px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.footer-column h4 {
  color: white;
  background: none;
  -webkit-text-fill-color: white;
  margin-bottom: 8px;
  font-size: 20px;
}

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

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

.footer-nav a {
  color: rgba(255, 255, 255, 0.8);
  font-size: 14px;
  transition: all 0.3s ease;
  padding-left: 0;
  position: relative;
}

.footer-nav a::before {
  content: '→';
  position: absolute;
  left: -20px;
  opacity: 0;
  transition: all 0.3s ease;
}

.footer-nav a:hover {
  color: #FFA726;
  padding-left: 20px;
}

.footer-nav a:hover::before {
  left: 0;
  opacity: 1;
}

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

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

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

.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(135deg, #263238 0%, #37474F 100%);
  padding: 24px 20px;
  box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.2);
  z-index: 1998;
  transform: translateY(100%);
  transition: transform 0.4s ease;
}

.cookie-banner.show {
  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 300px;
  color: rgba(255, 255, 255, 0.9);
  font-size: 14px;
  line-height: 1.6;
}

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

.cookie-btn {
  padding: 10px 24px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 14px;
  cursor: pointer;
  transition: all 0.3s ease;
  border: 2px solid transparent;
  white-space: nowrap;
}

.cookie-btn-accept {
  background: linear-gradient(135deg, #D84315 0%, #E65100 100%);
  color: white;
  border: none;
}

.cookie-btn-accept:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(216, 67, 21, 0.3);
}

.cookie-btn-reject {
  background: transparent;
  color: white;
  border: 2px solid rgba(255, 255, 255, 0.3);
}

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

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

.cookie-btn-settings:hover {
  background: #FFA726;
  color: white;
}

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

.cookie-modal.show {
  opacity: 1;
  pointer-events: auto;
}

.cookie-modal-content {
  background: white;
  padding: 40px;
  border-radius: 16px;
  max-width: 600px;
  width: 100%;
  max-height: 80vh;
  overflow-y: auto;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
  transform: scale(0.9);
  transition: transform 0.3s ease;
}

.cookie-modal.show .cookie-modal-content {
  transform: scale(1);
}

.cookie-modal h3 {
  color: #37474F;
  background: none;
  -webkit-text-fill-color: #37474F;
  margin-bottom: 24px;
}

.cookie-category {
  padding: 20px;
  background: linear-gradient(135deg, #f5f5f5 0%, #ffffff 100%);
  border-radius: 8px;
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.cookie-category-info {
  flex: 1;
}

.cookie-category h4 {
  color: #37474F;
  background: none;
  -webkit-text-fill-color: #37474F;
  margin-bottom: 8px;
  font-size: 16px;
}

.cookie-category p {
  color: #546E7A;
  font-size: 14px;
  margin-bottom: 0;
}

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

.cookie-toggle.active {
  background: linear-gradient(135deg, #D84315 0%, #E65100 100%);
}

.cookie-toggle::after {
  content: '';
  position: absolute;
  width: 22px;
  height: 22px;
  background: white;
  border-radius: 50%;
  top: 2px;
  left: 2px;
  transition: transform 0.3s ease;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

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

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

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

/* ============================================
   RESPONSIVE DESIGN
   ============================================ */

@media (max-width: 768px) {
  /* Mobile menu */
  .mobile-menu-toggle {
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .main-nav {
    display: none;
  }

  /* Typography */
  h1 {
    font-size: 36px;
  }

  h2 {
    font-size: 28px;
  }

  h3 {
    font-size: 20px;
  }

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

  .hero-subtitle {
    font-size: 18px;
  }

  /* Hero */
  .hero {
    padding: 60px 20px;
  }

  .hero-cta {
    flex-direction: column;
    width: 100%;
  }

  .hero-cta .btn {
    width: 100%;
  }

  .trust-indicators {
    gap: 32px;
  }

  /* Sections */
  .section,
  .values,
  .services,
  .testimonials,
  .products-section,
  .categories,
  .benefits,
  .service-types,
  .guarantees {
    padding: 40px 20px;
  }

  /* Grids */
  .values-grid,
  .services-grid,
  .products-grid,
  .category-grid,
  .benefits-grid,
  .guarantee-grid,
  .reasons-grid,
  .contact-grid,
  .departments-grid,
  .rights-grid,
  .steps-grid,
  .suggestions-grid {
    gap: 20px;
  }

  .value-card,
  .service-card,
  .product-card,
  .category-card,
  .benefit-card,
  .guarantee-card,
  .reason-card,
  .contact-card,
  .department-card,
  .right-card,
  .step-card,
  .suggestion-card {
    flex: 1 1 100%;
    max-width: 100%;
  }

  /* Testimonials */
  .testimonials-grid {
    gap: 24px;
  }

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

  /* Process steps */
  .process-steps {
    gap: 24px;
  }

  .step {
    flex: 1 1 100%;
    max-width: 100%;
  }

  /* Footer */
  .footer-content {
    flex-direction: column;
    gap: 32px;
  }

  .footer-column {
    flex: 1 1 100%;
  }

  /* Cookie banner */
  .cookie-content {
    flex-direction: column;
    align-items: flex-start;
  }

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

  .cookie-btn {
    width: 100%;
    text-align: center;
  }

  .cookie-modal-content {
    padding: 24px;
  }

  .cookie-category {
    flex-direction: column;
    align-items: flex-start;
  }

  .cookie-modal-buttons {
    flex-direction: column;
  }

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

@media (max-width: 480px) {
  h1 {
    font-size: 32px;
  }

  h2 {
    font-size: 24px;
  }

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

  .trust-number {
    font-size: 28px;
  }

  .btn {
    padding: 12px 24px;
    font-size: 14px;
  }
}

/* ============================================
   ANIMATIONS
   ============================================ */

@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 pulse {
  0%, 100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.05);
  }
}

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

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

.mt-1 { margin-top: 8px; }
.mt-2 { margin-top: 16px; }
.mt-3 { margin-top: 24px; }
.mt-4 { margin-top: 32px; }

.mb-1 { margin-bottom: 8px; }
.mb-2 { margin-bottom: 16px; }
.mb-3 { margin-bottom: 24px; }
.mb-4 { margin-bottom: 32px; }

.p-1 { padding: 8px; }
.p-2 { padding: 16px; }
.p-3 { padding: 24px; }
.p-4 { padding: 32px; }

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

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

  body {
    background: white;
  }

  a {
    color: #000;
    text-decoration: underline;
  }
}