/* =================================
   FLOWBURST GARTEN - MONOCHROME SOPHISTICATED
   Sophisticated black/white/gray palette
   Dramatic contrast, elegant typography
   ================================= */

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

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

body {
  font-family: 'Open Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  line-height: 1.7;
  color: #1a1a1a;
  background-color: #ffffff;
  overflow-x: hidden;
}

/* TYPOGRAPHY - MONOCHROME SOPHISTICATED */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  line-height: 1.2;
  color: #000000;
  margin-bottom: 24px;
  letter-spacing: -0.02em;
}

h1 {
  font-size: 48px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: -0.03em;
}

h2 {
  font-size: 32px;
  font-weight: 700;
  border-bottom: 3px solid #000000;
  padding-bottom: 16px;
  margin-bottom: 32px;
}

h3 {
  font-size: 24px;
  font-weight: 600;
}

h4 {
  font-size: 18px;
  font-weight: 600;
}

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

a {
  color: #000000;
  text-decoration: none;
  transition: all 0.3s ease;
  border-bottom: 1px solid transparent;
}

a:hover {
  border-bottom: 1px solid #000000;
}

ul, ol {
  margin-left: 24px;
  margin-bottom: 16px;
}

li {
  margin-bottom: 8px;
  color: #333333;
}

strong {
  font-weight: 700;
  color: #000000;
}

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

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

/* HEADER - MONOCHROME SOPHISTICATED */
header {
  background-color: #000000;
  border-bottom: 3px solid #ffffff;
  padding: 24px 0;
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

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

.logo a {
  display: block;
  border-bottom: none;
}

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

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

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

.main-nav a {
  color: #ffffff;
  font-weight: 600;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  padding: 8px 0;
  border-bottom: 2px solid transparent;
  transition: all 0.3s ease;
}

.main-nav a:hover {
  border-bottom: 2px solid #ffffff;
  color: #cccccc;
}

/* MOBILE MENU */
.mobile-menu-toggle {
  display: none;
  position: fixed;
  top: 20px;
  right: 20px;
  z-index: 2000;
  background-color: #000000;
  color: #ffffff;
  border: 2px solid #ffffff;
  border-radius: 4px;
  padding: 12px 16px;
  font-size: 24px;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
}

.mobile-menu-toggle:hover {
  background-color: #ffffff;
  color: #000000;
  border-color: #000000;
}

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

.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: 4px;
  padding: 8px 14px;
  font-size: 24px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.mobile-menu-close:hover {
  background-color: #ffffff;
  color: #000000;
}

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

.mobile-nav a {
  color: #ffffff;
  font-size: 18px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  padding: 12px 0;
  border-bottom: 2px solid #333333;
  transition: all 0.3s ease;
}

.mobile-nav a:hover {
  color: #cccccc;
  border-bottom-color: #ffffff;
  padding-left: 8px;
}

/* BUTTONS - MONOCHROME SOPHISTICATED */
.btn {
  display: inline-block;
  padding: 14px 32px;
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  border: 2px solid #000000;
  background-color: transparent;
  color: #000000;
  cursor: pointer;
  transition: all 0.3s ease;
  text-align: center;
  border-bottom: 2px solid #000000;
  box-shadow: 4px 4px 0 #000000;
}

.btn:hover {
  background-color: #000000;
  color: #ffffff;
  transform: translate(2px, 2px);
  box-shadow: 2px 2px 0 #000000;
}

.btn-primary {
  background-color: #000000;
  color: #ffffff;
  border-color: #000000;
  box-shadow: 4px 4px 0 #666666;
}

.btn-primary:hover {
  background-color: #333333;
  border-color: #333333;
  transform: translate(2px, 2px);
  box-shadow: 2px 2px 0 #666666;
}

.btn-secondary {
  background-color: #ffffff;
  color: #000000;
  border-color: #000000;
  box-shadow: 4px 4px 0 #cccccc;
}

.btn-secondary:hover {
  background-color: #f5f5f5;
  transform: translate(2px, 2px);
  box-shadow: 2px 2px 0 #cccccc;
}

/* HERO SECTION - MONOCHROME SOPHISTICATED */
.hero {
  background: linear-gradient(135deg, #000000 0%, #333333 100%);
  color: #ffffff;
  padding: 120px 20px;
  text-align: center;
  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;
  margin: 0 auto;
}

.hero h1 {
  color: #ffffff;
  margin-bottom: 24px;
  text-shadow: 3px 3px 0 rgba(0, 0, 0, 0.3);
}

.hero-subtitle {
  font-size: 18px;
  margin-bottom: 32px;
  color: #cccccc;
  line-height: 1.6;
}

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

.trust-badge {
  font-size: 14px;
  color: #999999;
  font-style: italic;
  margin-top: 16px;
}

/* PAGE HERO */
.page-hero {
  background-color: #000000;
  color: #ffffff;
  padding: 80px 20px;
  text-align: center;
  border-bottom: 4px solid #ffffff;
}

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

.page-hero p {
  color: #cccccc;
  font-size: 18px;
}

/* CARDS & GRIDS - MONOCHROME SOPHISTICATED */
.services-grid,
.values-grid,
.team-grid,
.posts-grid,
.categories-grid,
.links-grid,
.tips-grid,
.plants-grid,
.collections-grid,
.methods-grid,
.problems-grid,
.cologne-tips-grid,
.recommendations-grid,
.suggestions-grid,
.steps-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-bottom: 32px;
}

.service-card,
.value-item,
.team-member,
.post-card,
.category-card,
.link-card,
.tip-card,
.plant-card,
.collection-card,
.method-card,
.problem-card,
.tip-item,
.recommendation,
.suggestion-card,
.step,
.team-contact {
  flex: 1 1 calc(33.333% - 24px);
  min-width: 280px;
  background-color: #ffffff;
  border: 3px solid #000000;
  padding: 32px;
  transition: all 0.3s ease;
  position: relative;
  margin-bottom: 20px;
  box-shadow: 6px 6px 0 #000000;
}

.service-card:hover,
.category-card:hover,
.link-card:hover,
.post-card:hover,
.plant-card:hover,
.collection-card:hover,
.suggestion-card:hover {
  transform: translate(3px, 3px);
  box-shadow: 3px 3px 0 #000000;
}

.service-card h3,
.category-card h3,
.link-card h3,
.post-card h3 {
  font-size: 20px;
  margin-bottom: 16px;
  color: #000000;
}

.price {
  font-size: 24px;
  font-weight: 800;
  color: #000000;
  margin: 16px 0;
  letter-spacing: -0.02em;
}

/* SERVICE DETAIL CARDS */
.service-detail {
  background-color: #f5f5f5;
  border: 3px solid #000000;
  padding: 40px;
  margin-bottom: 40px;
  position: relative;
  box-shadow: 8px 8px 0 #000000;
}

.service-badge {
  position: absolute;
  top: -16px;
  right: 40px;
  background-color: #000000;
  color: #ffffff;
  padding: 8px 20px;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  border: 2px solid #000000;
}

.service-detail h2 {
  border-bottom: 3px solid #000000;
  padding-bottom: 16px;
  margin-bottom: 24px;
}

.service-detail h3 {
  margin-top: 32px;
  font-size: 18px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.service-detail ul {
  list-style: none;
  margin-left: 0;
}

.service-detail ul li {
  padding-left: 32px;
  position: relative;
  margin-bottom: 12px;
}

.service-detail ul li::before {
  content: '▪';
  position: absolute;
  left: 0;
  color: #000000;
  font-size: 20px;
}

.service-price,
.service-duration,
.service-commitment,
.service-response-time {
  font-size: 20px;
  font-weight: 700;
  color: #000000;
  margin: 12px 0;
}

/* TESTIMONIALS - MONOCHROME SOPHISTICATED */
.testimonials {
  background-color: #f5f5f5;
  padding: 60px 20px;
  margin-bottom: 60px;
}

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

.testimonial-card {
  flex: 1 1 calc(50% - 32px);
  min-width: 280px;
  background-color: #ffffff;
  border: 3px solid #000000;
  padding: 32px;
  box-shadow: 6px 6px 0 #000000;
  position: relative;
  margin-bottom: 20px;
}

.testimonial-card p:first-child {
  font-size: 18px;
  font-style: italic;
  color: #1a1a1a;
  margin-bottom: 20px;
  line-height: 1.6;
}

.testimonial-card .author {
  font-weight: 700;
  color: #000000;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-top: 16px;
  border-top: 2px solid #000000;
  padding-top: 16px;
}

/* BADGES & LABELS */
.badge {
  display: inline-block;
  background-color: #000000;
  color: #ffffff;
  padding: 8px 16px;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 16px;
  border: 2px solid #000000;
}

.section-subtitle {
  font-size: 18px;
  color: #666666;
  text-align: center;
  margin-bottom: 40px;
  font-style: italic;
}

/* TEXT-IMAGE SECTIONS */
.text-image-section {
  display: flex;
  align-items: center;
  gap: 30px;
  flex-wrap: wrap;
  margin-bottom: 40px;
}

.text-section {
  flex: 1 1 500px;
}

/* STATISTICS */
.statistics {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  justify-content: center;
  margin-top: 48px;
  padding: 40px 20px;
  background-color: #000000;
  border: 3px solid #000000;
}

.stat {
  text-align: center;
  flex: 1 1 200px;
}

.stat strong {
  display: block;
  font-size: 48px;
  font-weight: 800;
  color: #ffffff;
  margin-bottom: 8px;
  letter-spacing: -0.02em;
}

.stat span {
  display: block;
  font-size: 14px;
  color: #cccccc;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

/* MILESTONES */
.milestones {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: center;
  margin-top: 32px;
}

.milestone {
  background-color: #000000;
  color: #ffffff;
  padding: 16px 24px;
  border: 2px solid #000000;
  font-weight: 700;
  text-align: center;
  min-width: 200px;
}

/* MISSION & VISION */
.mission-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  margin-bottom: 40px;
}

.mission-item {
  flex: 1 1 calc(50% - 32px);
  min-width: 280px;
  background-color: #f5f5f5;
  border: 3px solid #000000;
  padding: 32px;
  box-shadow: 6px 6px 0 #000000;
}

.values {
  background-color: #000000;
  color: #ffffff;
  padding: 40px;
  border: 3px solid #000000;
  margin-top: 40px;
}

.values h3 {
  color: #ffffff;
  border-bottom: 3px solid #ffffff;
  padding-bottom: 16px;
  margin-bottom: 24px;
}

.values ul {
  list-style: none;
  margin-left: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

.values li {
  background-color: #ffffff;
  color: #000000;
  padding: 12px 24px;
  font-weight: 700;
  border: 2px solid #ffffff;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  font-size: 14px;
}

/* EXPERTISE GRID */
.expertise-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-bottom: 40px;
}

.expertise-item {
  flex: 1 1 calc(50% - 24px);
  min-width: 260px;
  background-color: #f5f5f5;
  border-left: 6px solid #000000;
  padding: 24px;
  margin-bottom: 20px;
}

.expertise-item h3 {
  font-size: 18px;
  margin-bottom: 12px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

/* QUICK TIPS GRID */
.quick-tips-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

.quick-tip {
  flex: 1 1 calc(33.333% - 16px);
  min-width: 240px;
  background-color: #000000;
  color: #ffffff;
  padding: 20px;
  border: 2px solid #000000;
  font-size: 14px;
  font-weight: 600;
  line-height: 1.5;
  margin-bottom: 20px;
}

/* PLANT FEATURES & META */
.plant-meta {
  font-size: 14px;
  color: #666666;
  margin-bottom: 12px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.plant-features {
  font-size: 14px;
  color: #000000;
  font-weight: 600;
  margin-top: 12px;
}

.plant-count {
  background-color: #000000;
  color: #ffffff;
  display: inline-block;
  padding: 8px 16px;
  margin-top: 16px;
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

/* POST META */
.post-meta {
  font-size: 14px;
  color: #666666;
  margin-top: 16px;
  padding-top: 16px;
  border-top: 2px solid #e0e0e0;
}

.category-desc {
  font-size: 14px;
  color: #666666;
  font-style: italic;
}

/* FEATURED POST */
.featured-post {
  background-color: #f5f5f5;
  border: 3px solid #000000;
  padding: 48px;
  margin-bottom: 60px;
  box-shadow: 8px 8px 0 #000000;
}

.featured-post h2 {
  font-size: 28px;
  border-bottom: none;
  margin-bottom: 16px;
}

/* POPULAR LIST */
.popular-list {
  background-color: #f5f5f5;
  border: 3px solid #000000;
  padding: 32px;
}

.popular-item {
  padding: 20px;
  border-bottom: 2px solid #cccccc;
  margin-bottom: 16px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
}

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

.popular-item h3 {
  margin-bottom: 0;
  font-size: 16px;
  flex: 1 1 300px;
}

.popular-item p {
  font-weight: 700;
  color: #000000;
  margin-bottom: 0;
}

/* CONTACT SECTIONS */
.contact-info {
  background-color: #f5f5f5;
  border: 3px solid #000000;
  padding: 32px;
  margin: 32px 0;
  text-align: center;
}

.contact-info p {
  font-size: 16px;
  margin-bottom: 12px;
  color: #1a1a1a;
}

.hours-list {
  background-color: #ffffff;
  border: 3px solid #000000;
  padding: 32px;
  max-width: 600px;
  margin: 32px auto;
}

.hours-list p {
  padding: 12px;
  border-bottom: 1px solid #e0e0e0;
  font-weight: 600;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

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

.note {
  font-style: italic;
  color: #666666;
  text-align: center;
  margin-top: 24px;
}

.method-value {
  font-size: 20px;
  font-weight: 700;
  color: #000000;
  margin: 16px 0;
}

.role {
  font-size: 14px;
  color: #666666;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 12px;
}

/* CTA BANNER - MONOCHROME SOPHISTICATED */
.cta-banner,
.cta-consultation {
  background-color: #000000;
  color: #ffffff;
  padding: 80px 20px;
  text-align: center;
  margin: 60px 0;
  border: 4px solid #000000;
  box-shadow: 12px 12px 0 #cccccc;
}

.cta-banner h2,
.cta-consultation h2 {
  color: #ffffff;
  border-bottom: 3px solid #ffffff;
  padding-bottom: 16px;
  margin-bottom: 24px;
}

.cta-banner p,
.cta-consultation p {
  color: #cccccc;
  font-size: 18px;
  margin-bottom: 32px;
}

.cta-banner .btn {
  margin-top: 24px;
}

/* ERROR PAGE */
.error-hero {
  padding: 80px 20px;
  text-align: center;
  background-color: #f5f5f5;
}

.error-code {
  font-size: 120px;
  font-weight: 900;
  color: #000000;
  line-height: 1;
  margin-bottom: 24px;
  text-shadow: 4px 4px 0 #cccccc;
}

.error-content h1 {
  font-size: 36px;
  margin-bottom: 16px;
}

/* THANK YOU PAGE */
.thank-you-hero {
  background-color: #000000;
  color: #ffffff;
  padding: 80px 20px;
  text-align: center;
}

.thank-you-hero h1 {
  color: #ffffff;
  margin-bottom: 24px;
}

.thank-you-hero p {
  color: #cccccc;
  font-size: 18px;
}

.confirmation {
  background-color: #ffffff;
  color: #000000;
  padding: 16px 24px;
  margin-top: 24px;
  display: inline-block;
  border: 2px solid #ffffff;
  font-weight: 600;
}

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

/* LEGAL PAGES */
.legal-hero {
  background-color: #000000;
  color: #ffffff;
  padding: 60px 20px;
  text-align: center;
  border-bottom: 4px solid #ffffff;
}

.legal-hero h1 {
  color: #ffffff;
  font-size: 36px;
}

.legal-hero p {
  color: #cccccc;
  font-size: 16px;
}

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

.legal-content h2 {
  margin-top: 48px;
  font-size: 24px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.legal-content h3 {
  margin-top: 32px;
  font-size: 18px;
}

.intro-text {
  font-size: 18px;
  color: #333333;
  text-align: center;
  max-width: 800px;
  margin: 0 auto 40px;
  line-height: 1.7;
}

.difficulty {
  font-size: 14px;
  color: #666666;
  margin-top: 12px;
  padding-top: 12px;
  border-top: 1px solid #e0e0e0;
}

.expert-name {
  font-size: 14px;
  color: #666666;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 8px;
}

.trust-badges {
  text-align: center;
  margin-top: 32px;
  padding-top: 24px;
  border-top: 2px solid #e0e0e0;
  font-weight: 600;
  color: #000000;
}

.social-proof {
  background-color: #f5f5f5;
  padding: 60px 20px;
  margin: 60px 0;
}

.back-navigation {
  text-align: center;
  padding: 40px 20px;
}

/* FOOTER - MONOCHROME SOPHISTICATED */
footer {
  background-color: #1a1a1a;
  color: #cccccc;
  padding: 60px 20px 32px;
  border-top: 4px solid #000000;
}

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

.footer-col {
  flex: 1 1 250px;
}

.footer-col h3 {
  color: #ffffff;
  font-size: 20px;
  margin-bottom: 16px;
  border-bottom: 2px solid #ffffff;
  padding-bottom: 12px;
}

.footer-col h4 {
  color: #ffffff;
  font-size: 16px;
  margin-bottom: 16px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

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

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

.footer-nav a {
  color: #cccccc;
  font-size: 14px;
  transition: all 0.3s ease;
  border-bottom: 1px solid transparent;
}

.footer-nav a:hover {
  color: #ffffff;
  border-bottom: 1px solid #ffffff;
  padding-left: 8px;
}

.footer-bottom {
  text-align: center;
  padding-top: 32px;
  border-top: 2px solid #333333;
}

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

/* COOKIE CONSENT BANNER */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: #000000;
  color: #ffffff;
  padding: 24px;
  z-index: 5000;
  border-top: 3px solid #ffffff;
  box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.3);
  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 400px;
  color: #cccccc;
  font-size: 14px;
  line-height: 1.6;
}

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

.cookie-buttons .btn {
  padding: 10px 20px;
  font-size: 12px;
  border-color: #ffffff;
  color: #ffffff;
  box-shadow: 3px 3px 0 #ffffff;
}

.cookie-buttons .btn:hover {
  background-color: #ffffff;
  color: #000000;
}

.cookie-buttons .btn-primary {
  background-color: #ffffff;
  color: #000000;
}

.cookie-buttons .btn-primary:hover {
  background-color: #cccccc;
}

/* COOKIE MODAL */
.cookie-modal {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) scale(0.9);
  background-color: #ffffff;
  border: 4px solid #000000;
  padding: 40px;
  max-width: 600px;
  width: 90%;
  max-height: 80vh;
  overflow-y: auto;
  z-index: 6000;
  box-shadow: 12px 12px 0 #000000;
  opacity: 0;
  pointer-events: none;
  transition: all 0.3s ease;
}

.cookie-modal.show {
  opacity: 1;
  pointer-events: auto;
  transform: translate(-50%, -50%) scale(1);
}

.cookie-modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(0, 0, 0, 0.8);
  z-index: 5500;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}

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

.cookie-modal h2 {
  font-size: 24px;
  margin-bottom: 24px;
  border-bottom: 3px solid #000000;
  padding-bottom: 16px;
}

.cookie-category {
  margin-bottom: 24px;
  padding: 20px;
  background-color: #f5f5f5;
  border-left: 4px solid #000000;
}

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

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

.toggle-switch {
  position: relative;
  width: 50px;
  height: 26px;
  background-color: #cccccc;
  border: 2px solid #000000;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.toggle-switch.active {
  background-color: #000000;
}

.toggle-switch::after {
  content: '';
  position: absolute;
  top: 2px;
  left: 2px;
  width: 18px;
  height: 18px;
  background-color: #ffffff;
  border: 2px solid #000000;
  transition: transform 0.3s ease;
}

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

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

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

/* RESPONSIVE DESIGN */
@media (max-width: 768px) {
  /* Typography */
  h1 { font-size: 32px; }
  h2 { font-size: 24px; }
  h3 { font-size: 20px; }
  
  /* Header */
  .main-nav {
    display: none;
  }
  
  .mobile-menu-toggle {
    display: block;
  }
  
  /* Hero */
  .hero {
    padding: 80px 20px;
  }
  
  .hero h1 {
    font-size: 32px;
  }
  
  .hero-subtitle {
    font-size: 16px;
  }
  
  .hero-cta {
    flex-direction: column;
  }
  
  /* Cards & Grids */
  .service-card,
  .value-item,
  .team-member,
  .post-card,
  .category-card,
  .link-card,
  .plant-card,
  .collection-card,
  .method-card,
  .problem-card,
  .tip-item,
  .recommendation,
  .suggestion-card,
  .step,
  .team-contact {
    flex: 1 1 100%;
    min-width: 100%;
  }
  
  .testimonial-card {
    flex: 1 1 100%;
    min-width: 100%;
  }
  
  .quick-tip {
    flex: 1 1 100%;
    min-width: 100%;
  }
  
  .expertise-item,
  .mission-item {
    flex: 1 1 100%;
    min-width: 100%;
  }
  
  /* Text-Image Sections */
  .text-image-section {
    flex-direction: column;
  }
  
  /* Service Detail */
  .service-detail {
    padding: 24px;
  }
  
  .service-badge {
    position: static;
    display: inline-block;
    margin-bottom: 16px;
  }
  
  /* Statistics */
  .stat {
    flex: 1 1 100%;
  }
  
  .stat strong {
    font-size: 36px;
  }
  
  /* Error Code */
  .error-code {
    font-size: 80px;
  }
  
  /* Footer */
  .footer-content {
    flex-direction: column;
  }
  
  .footer-col {
    flex: 1 1 100%;
  }
  
  /* Cookie Banner */
  .cookie-content {
    flex-direction: column;
    text-align: center;
  }
  
  .cookie-buttons {
    justify-content: center;
    width: 100%;
  }
  
  .cookie-buttons .btn {
    flex: 1 1 100%;
  }
  
  /* Cookie Modal */
  .cookie-modal {
    width: 95%;
    padding: 24px;
  }
  
  .cookie-modal-buttons {
    flex-direction: column;
  }
  
  .cookie-modal-buttons .btn {
    width: 100%;
  }
  
  /* CTA Banner */
  .cta-banner,
  .cta-consultation {
    padding: 60px 20px;
  }
  
  /* Featured Post */
  .featured-post {
    padding: 32px 20px;
  }
  
  /* Values List */
  .values ul {
    flex-direction: column;
  }
  
  .values li {
    width: 100%;
  }
}

@media (max-width: 480px) {
  h1 { font-size: 28px; }
  h2 { font-size: 22px; }
  
  .hero {
    padding: 60px 16px;
  }
  
  .logo img {
    height: 40px;
  }
  
  .btn {
    padding: 12px 24px;
    font-size: 13px;
  }
  
  .service-card,
  .testimonial-card,
  .service-detail,
  .mission-item {
    padding: 20px;
  }
  
  .cookie-modal {
    padding: 20px;
  }
}

/* PRINT STYLES */
@media print {
  .mobile-menu-toggle,
  .mobile-menu,
  .cookie-banner,
  .cookie-modal,
  .cookie-modal-overlay,
  .btn,
  header,
  footer {
    display: none !important;
  }
  
  body {
    color: #000000;
    background: #ffffff;
  }
  
  a {
    text-decoration: underline;
  }
}

/* ACCESSIBILITY */
:focus {
  outline: 3px solid #000000;
  outline-offset: 2px;
}

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

/* SMOOTH SCROLLING */
html {
  scroll-behavior: smooth;
}

/* SELECTION */
::selection {
  background-color: #000000;
  color: #ffffff;
}

::-moz-selection {
  background-color: #000000;
  color: #ffffff;
}