/* ============================================
   SHINY MEND - CREATIVE ARTISTIC GARDEN DESIGN
   Natural, Sustainable, Professional Garden Care
   ============================================ */

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

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

body {
  font-family: 'Lato', 'Arial', sans-serif;
  line-height: 1.7;
  color: #2D3E1F;
  background: #FDFBF7;
  overflow-x: hidden;
}

/* CSS CUSTOM PROPERTIES */
:root {
  --primary-color: #2D5016;
  --secondary-color: #7A9B57;
  --accent-color: #F4E8C1;
  --text-dark: #2D3E1F;
  --text-light: #5A6C4D;
  --white: #FFFFFF;
  --light-bg: #F9F6F0;
  --creative-orange: #E8904A;
  --creative-pink: #D97BA6;
  --creative-teal: #4A9E9E;
  --creative-yellow: #F4D35E;
}

/* TYPOGRAPHY */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Playfair Display', 'Georgia', serif;
  font-weight: 700;
  line-height: 1.3;
  color: var(--primary-color);
  margin-bottom: 20px;
}

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

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

h3 {
  font-size: 28px;
}

h4 {
  font-size: 22px;
}

p {
  font-size: 16px;
  margin-bottom: 16px;
  color: var(--text-light);
}

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

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

ul {
  list-style: none;
}

/* CONTAINER */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

/* MOBILE MENU TOGGLE BUTTON */
.mobile-menu-toggle {
  display: none;
  position: fixed;
  top: 20px;
  right: 20px;
  z-index: 1001;
  background: var(--primary-color);
  color: var(--white);
  border: 3px solid var(--creative-orange);
  border-radius: 50%;
  width: 56px;
  height: 56px;
  font-size: 24px;
  cursor: pointer;
  box-shadow: 0 4px 12px rgba(45, 80, 22, 0.3);
  transition: all 0.3s ease;
}

.mobile-menu-toggle:hover {
  background: var(--creative-orange);
  transform: scale(1.1) rotate(90deg);
  border-color: var(--primary-color);
}

/* MOBILE MENU OVERLAY */
.mobile-menu {
  position: fixed;
  top: 0;
  right: -100%;
  width: 85%;
  max-width: 350px;
  height: 100vh;
  background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
  z-index: 1000;
  padding: 80px 30px 30px;
  transition: right 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
  box-shadow: -8px 0 24px rgba(0, 0, 0, 0.3);
  overflow-y: auto;
}

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

.mobile-menu-close {
  position: absolute;
  top: 20px;
  right: 20px;
  background: var(--white);
  color: var(--primary-color);
  border: 3px solid var(--creative-pink);
  border-radius: 50%;
  width: 44px;
  height: 44px;
  font-size: 24px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.mobile-menu-close:hover {
  background: var(--creative-pink);
  color: var(--white);
  transform: rotate(90deg);
}

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

.mobile-nav a {
  display: block;
  padding: 16px 20px;
  color: var(--white);
  font-size: 18px;
  font-weight: 600;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  border-left: 4px solid transparent;
  transition: all 0.3s ease;
}

.mobile-nav a:hover,
.mobile-nav a:focus {
  background: rgba(255, 255, 255, 0.2);
  border-left-color: var(--creative-yellow);
  transform: translateX(8px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

/* HEADER & NAVIGATION */
header {
  background: var(--white);
  box-shadow: 0 4px 20px rgba(45, 80, 22, 0.15);
  position: sticky;
  top: 0;
  z-index: 999;
  border-bottom: 4px solid var(--creative-orange);
}

.main-nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 0;
  flex-wrap: wrap;
  gap: 20px;
}

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

.logo:hover img {
  transform: scale(1.05) rotate(-2deg);
}

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

.nav-menu li a {
  color: var(--primary-color);
  font-weight: 600;
  font-size: 16px;
  padding: 8px 16px;
  border-radius: 8px;
  position: relative;
  transition: all 0.3s ease;
}

.nav-menu li a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 0;
  height: 3px;
  background: var(--creative-orange);
  transform: translateX(-50%);
  transition: width 0.3s ease;
}

.nav-menu li a:hover,
.nav-menu li a:focus {
  color: var(--creative-orange);
  background: rgba(232, 144, 74, 0.1);
}

.nav-menu li a:hover::after {
  width: 80%;
}

/* HERO SECTION */
.hero {
  background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
  color: var(--white);
  padding: 80px 20px;
  position: relative;
  overflow: hidden;
  margin-bottom: 60px;
}

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

.hero::after {
  content: '';
  position: absolute;
  bottom: -30%;
  left: -10%;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(217, 123, 166, 0.3) 0%, transparent 70%);
  border-radius: 50%;
  animation: float 10s ease-in-out infinite reverse;
}

@keyframes float {
  0%, 100% { transform: translate(0, 0) scale(1); }
  50% { transform: translate(30px, -30px) scale(1.1); }
}

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

.hero h1 {
  color: var(--white);
  font-size: 56px;
  margin-bottom: 24px;
  text-shadow: 2px 4px 8px rgba(0, 0, 0, 0.3);
  animation: fadeInUp 0.8s ease;
}

.hero-subtitle {
  font-size: 20px;
  color: var(--accent-color);
  margin-bottom: 32px;
  line-height: 1.6;
  animation: fadeInUp 1s ease;
}

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

.cta-buttons {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 32px;
  animation: fadeInUp 1.2s ease;
}

.trust-indicators {
  display: flex;
  gap: 32px;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 40px;
  animation: fadeInUp 1.4s ease;
}

.trust-indicators span {
  font-size: 16px;
  font-weight: 600;
  color: var(--creative-yellow);
  padding: 10px 24px;
  background: rgba(255, 255, 255, 0.15);
  border-radius: 30px;
  border: 2px solid var(--creative-yellow);
}

/* BUTTONS */
.btn {
  display: inline-block;
  padding: 16px 32px;
  font-size: 16px;
  font-weight: 700;
  border-radius: 30px;
  cursor: pointer;
  transition: all 0.3s ease;
  border: 3px solid transparent;
  text-align: center;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.btn-primary {
  background: var(--creative-orange);
  color: var(--white);
  border-color: var(--creative-orange);
}

.btn-primary:hover,
.btn-primary:focus {
  background: var(--white);
  color: var(--creative-orange);
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(232, 144, 74, 0.4);
}

.btn-secondary {
  background: transparent;
  color: var(--white);
  border-color: var(--white);
}

.btn-secondary:hover,
.btn-secondary:focus {
  background: var(--white);
  color: var(--primary-color);
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(255, 255, 255, 0.3);
}

/* SECTION SPACING */
section {
  margin-bottom: 60px;
  padding: 40px 20px;
}

.section-subtitle {
  text-align: center;
  font-size: 18px;
  color: var(--text-light);
  margin-bottom: 40px;
  font-style: italic;
}

section h2 {
  text-align: center;
  margin-bottom: 32px;
  position: relative;
  display: inline-block;
  left: 50%;
  transform: translateX(-50%);
}

section h2::after {
  content: '';
  position: absolute;
  bottom: -12px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background: linear-gradient(90deg, var(--creative-orange), var(--creative-pink));
  border-radius: 2px;
}

/* SERVICES GRID */
.services-overview,
.service-detail {
  background: var(--light-bg);
  border-radius: 16px;
  padding: 60px 20px;
}

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

.service-card {
  background: var(--white);
  border-radius: 16px;
  padding: 32px 24px;
  flex: 1 1 300px;
  max-width: 360px;
  box-shadow: 0 8px 24px rgba(45, 80, 22, 0.12);
  transition: all 0.3s ease;
  border: 3px solid transparent;
  position: relative;
  margin-bottom: 20px;
}

.service-card::before {
  content: '';
  position: absolute;
  top: -3px;
  left: -3px;
  right: -3px;
  bottom: -3px;
  background: linear-gradient(135deg, var(--creative-orange), var(--creative-pink), var(--creative-teal));
  border-radius: 16px;
  z-index: -1;
  opacity: 0;
  transition: opacity 0.3s ease;
}

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

.service-card:hover {
  transform: translateY(-8px) rotate(1deg);
  box-shadow: 0 16px 40px rgba(45, 80, 22, 0.2);
}

.service-card img {
  width: 80px;
  height: 80px;
  margin: 0 auto 20px;
  transition: transform 0.3s ease;
}

.service-card:hover img {
  transform: scale(1.1) rotate(-5deg);
}

.service-card h3 {
  text-align: center;
  font-size: 22px;
  margin-bottom: 16px;
  color: var(--primary-color);
}

.service-card p {
  text-align: center;
  font-size: 15px;
  line-height: 1.6;
  margin-bottom: 16px;
}

.service-card .price {
  text-align: center;
  font-size: 20px;
  font-weight: 700;
  color: var(--creative-orange);
  margin-top: 20px;
  padding: 12px;
  background: rgba(232, 144, 74, 0.1);
  border-radius: 8px;
}

/* SERVICE DETAIL */
.service-header {
  display: flex;
  align-items: center;
  gap: 24px;
  margin-bottom: 24px;
  flex-wrap: wrap;
}

.service-header img {
  width: 100px;
  height: 100px;
}

.service-header h2 {
  margin-bottom: 0;
  flex: 1;
}

.feature-list {
  background: var(--white);
  padding: 24px 24px 24px 48px;
  border-radius: 12px;
  margin: 24px 0;
  border-left: 5px solid var(--creative-teal);
}

.feature-list li {
  position: relative;
  padding: 12px 0;
  color: var(--text-dark);
  font-size: 16px;
  list-style: none;
}

.feature-list li::before {
  content: '✓';
  position: absolute;
  left: -32px;
  color: var(--creative-teal);
  font-weight: 700;
  font-size: 20px;
}

/* VALUES SECTION */
.values {
  background: linear-gradient(135deg, rgba(74, 158, 158, 0.1) 0%, rgba(232, 144, 74, 0.1) 100%);
  padding: 60px 20px;
  border-radius: 16px;
}

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

.value-item {
  background: var(--white);
  padding: 32px 24px;
  border-radius: 16px;
  text-align: center;
  flex: 1 1 280px;
  max-width: 340px;
  box-shadow: 0 6px 20px rgba(45, 80, 22, 0.1);
  transition: all 0.3s ease;
  border-top: 5px solid var(--creative-pink);
  margin-bottom: 20px;
}

.value-item:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 32px rgba(45, 80, 22, 0.18);
  border-top-color: var(--creative-orange);
}

.value-item img {
  width: 80px;
  height: 80px;
  margin: 0 auto 20px;
}

.value-item h3 {
  font-size: 22px;
  margin-bottom: 16px;
}

.value-item p {
  font-size: 15px;
  text-align: center;
}

/* PROCESS STEPS */
.process {
  background: var(--white);
  padding: 60px 20px;
}

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

.step {
  text-align: center;
  flex: 1 1 220px;
  max-width: 260px;
  padding: 24px;
  background: var(--light-bg);
  border-radius: 16px;
  position: relative;
  transition: all 0.3s ease;
  margin-bottom: 20px;
}

.step:hover {
  background: var(--white);
  box-shadow: 0 8px 24px rgba(45, 80, 22, 0.15);
  transform: scale(1.05);
}

.step-number {
  display: inline-block;
  width: 60px;
  height: 60px;
  line-height: 60px;
  background: linear-gradient(135deg, var(--creative-orange), var(--creative-pink));
  color: var(--white);
  border-radius: 50%;
  font-size: 28px;
  font-weight: 700;
  margin-bottom: 20px;
  box-shadow: 0 4px 12px rgba(232, 144, 74, 0.4);
}

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

.step p {
  font-size: 15px;
  text-align: center;
}

/* TESTIMONIALS */
.testimonials {
  background: linear-gradient(135deg, var(--secondary-color) 0%, var(--primary-color) 100%);
  padding: 60px 20px;
  border-radius: 16px;
  color: var(--white);
}

.testimonials h2 {
  color: var(--white);
}

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

.testimonial-card {
  background: var(--white);
  padding: 32px 28px;
  border-radius: 16px;
  flex: 1 1 400px;
  max-width: 500px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
  position: relative;
  border-left: 5px solid var(--creative-yellow);
  margin-bottom: 20px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.testimonial-card.featured {
  border-left-width: 8px;
  border-left-color: var(--creative-orange);
}

.testimonial-card .rating {
  color: var(--creative-yellow);
  font-size: 24px;
  margin-bottom: 8px;
}

.testimonial-card p {
  color: var(--text-dark);
  font-size: 16px;
  line-height: 1.7;
  font-style: italic;
}

.testimonial-card .customer {
  color: var(--primary-color);
  font-size: 15px;
  margin-top: 8px;
  font-style: normal;
}

.testimonial-card .customer strong {
  font-weight: 700;
  color: var(--primary-color);
}

/* PROJECTS */
.project-showcase {
  background: var(--light-bg);
  padding: 40px 20px;
  border-radius: 16px;
  margin-bottom: 32px;
}

.project-category {
  display: inline-block;
  background: var(--creative-teal);
  color: var(--white);
  padding: 8px 20px;
  border-radius: 20px;
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 16px;
}

.project-showcase .testimonial {
  background: var(--white);
  padding: 20px 24px;
  border-radius: 12px;
  border-left: 4px solid var(--creative-pink);
  margin-top: 24px;
  font-style: italic;
  color: var(--text-dark);
}

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

.project-card {
  background: var(--white);
  padding: 28px 24px;
  border-radius: 16px;
  flex: 1 1 280px;
  max-width: 320px;
  box-shadow: 0 6px 20px rgba(45, 80, 22, 0.1);
  transition: all 0.3s ease;
  border-top: 4px solid var(--secondary-color);
  margin-bottom: 20px;
}

.project-card:hover {
  transform: translateY(-6px) rotate(-1deg);
  box-shadow: 0 12px 32px rgba(45, 80, 22, 0.18);
  border-top-color: var(--creative-orange);
}

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

.project-card .category {
  display: inline-block;
  background: rgba(122, 155, 87, 0.2);
  color: var(--secondary-color);
  padding: 6px 14px;
  border-radius: 12px;
  font-size: 13px;
  font-weight: 600;
  margin-bottom: 12px;
}

.project-card p {
  font-size: 15px;
}

/* BLOG / GARTENTIPPS */
.featured-article {
  background: linear-gradient(135deg, var(--light-bg) 0%, var(--white) 100%);
  padding: 40px 32px;
  border-radius: 16px;
  border: 3px solid var(--creative-orange);
  margin-bottom: 40px;
  position: relative;
}

.badge {
  display: inline-block;
  background: var(--creative-orange);
  color: var(--white);
  padding: 8px 20px;
  border-radius: 20px;
  font-size: 14px;
  font-weight: 700;
  margin-bottom: 16px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.meta {
  color: var(--text-light);
  font-size: 14px;
  font-style: italic;
  margin-top: 16px;
}

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

.article-card {
  background: var(--white);
  padding: 28px 24px;
  border-radius: 16px;
  flex: 1 1 280px;
  max-width: 340px;
  box-shadow: 0 6px 20px rgba(45, 80, 22, 0.1);
  transition: all 0.3s ease;
  position: relative;
  margin-bottom: 20px;
}

.article-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 32px rgba(45, 80, 22, 0.18);
}

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

.article-card .category {
  position: absolute;
  top: 16px;
  right: 16px;
  background: var(--creative-pink);
  color: var(--white);
  padding: 6px 14px;
  border-radius: 12px;
  font-size: 12px;
  font-weight: 600;
}

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

.tip-card {
  background: var(--white);
  padding: 28px 24px;
  border-radius: 16px;
  flex: 1 1 300px;
  max-width: 360px;
  box-shadow: 0 6px 20px rgba(45, 80, 22, 0.1);
  border-left: 5px solid var(--creative-teal);
  transition: all 0.3s ease;
  margin-bottom: 20px;
}

.tip-card:hover {
  transform: translateX(8px);
  box-shadow: 0 8px 24px rgba(45, 80, 22, 0.15);
}

/* CONTACT */
.contact-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: center;
}

.contact-card {
  background: var(--white);
  padding: 32px 24px;
  border-radius: 16px;
  text-align: center;
  flex: 1 1 280px;
  max-width: 320px;
  box-shadow: 0 6px 20px rgba(45, 80, 22, 0.1);
  transition: all 0.3s ease;
  margin-bottom: 20px;
}

.contact-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 32px rgba(45, 80, 22, 0.18);
}

.contact-card img {
  width: 60px;
  height: 60px;
  margin: 0 auto 16px;
}

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

.contact-card p,
.contact-card a {
  font-size: 15px;
  color: var(--text-light);
}

.contact-card a:hover {
  color: var(--creative-orange);
}

.email-display {
  text-align: center;
  margin-top: 24px;
}

.email-display a {
  font-size: 24px;
  font-weight: 700;
  color: var(--creative-orange);
  padding: 16px 32px;
  background: var(--white);
  border-radius: 12px;
  display: inline-block;
  box-shadow: 0 4px 12px rgba(232, 144, 74, 0.2);
  transition: all 0.3s ease;
}

.email-display a:hover {
  transform: scale(1.05);
  box-shadow: 0 8px 20px rgba(232, 144, 74, 0.3);
}

/* CTA BANNER */
.cta-banner {
  background: linear-gradient(135deg, var(--creative-orange) 0%, var(--creative-pink) 100%);
  color: var(--white);
  text-align: center;
  padding: 60px 20px;
  border-radius: 16px;
  margin-bottom: 60px;
  position: relative;
  overflow: hidden;
}

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

.cta-banner h2 {
  color: var(--white);
  font-size: 36px;
  margin-bottom: 16px;
  position: relative;
  z-index: 2;
}

.cta-banner h2::after {
  background: var(--white);
}

.cta-banner p {
  color: var(--white);
  font-size: 18px;
  margin-bottom: 32px;
  position: relative;
  z-index: 2;
}

.cta-banner .btn {
  position: relative;
  z-index: 2;
}

.cta-banner .btn-primary {
  background: var(--white);
  color: var(--creative-orange);
  border-color: var(--white);
}

.cta-banner .btn-primary:hover {
  background: var(--primary-color);
  color: var(--white);
  border-color: var(--white);
}

.contact-info {
  margin-top: 32px;
  position: relative;
  z-index: 2;
}

.contact-info p {
  color: var(--white);
  font-size: 16px;
  margin-bottom: 8px;
}

/* LEGAL PAGES */
.page-hero {
  background: linear-gradient(135deg, var(--secondary-color) 0%, var(--primary-color) 100%);
  color: var(--white);
  text-align: center;
  padding: 60px 20px;
  margin-bottom: 40px;
  border-radius: 0 0 16px 16px;
}

.page-hero h1 {
  color: var(--white);
  margin-bottom: 12px;
}

.page-hero p {
  color: var(--accent-color);
  font-size: 18px;
}

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

.legal-content h2 {
  margin-top: 40px;
  margin-bottom: 20px;
  text-align: left;
  display: block;
  transform: none;
  left: 0;
}

.legal-content h3 {
  margin-top: 24px;
  margin-bottom: 16px;
}

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

/* THANK YOU PAGE */
.thank-you-hero {
  text-align: center;
  padding: 80px 20px;
  background: linear-gradient(135deg, var(--creative-teal) 0%, var(--secondary-color) 100%);
  color: var(--white);
  border-radius: 16px;
  margin-bottom: 40px;
}

.success-icon {
  width: 100px;
  height: 100px;
  line-height: 100px;
  background: var(--white);
  color: var(--creative-teal);
  border-radius: 50%;
  font-size: 60px;
  font-weight: 700;
  margin: 0 auto 24px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
  animation: scaleIn 0.5s ease;
}

@keyframes scaleIn {
  from {
    transform: scale(0);
    opacity: 0;
  }
  to {
    transform: scale(1);
    opacity: 1;
  }
}

.thank-you-hero h1 {
  color: var(--white);
}

.thank-you-hero p {
  color: var(--white);
  font-size: 18px;
}

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

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

.suggestion-card {
  background: var(--white);
  padding: 32px 24px;
  border-radius: 16px;
  text-align: center;
  flex: 1 1 280px;
  max-width: 320px;
  box-shadow: 0 6px 20px rgba(45, 80, 22, 0.1);
  transition: all 0.3s ease;
  margin-bottom: 20px;
}

.suggestion-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 32px rgba(45, 80, 22, 0.18);
}

.link-list {
  max-width: 600px;
  margin: 0 auto;
}

.link-list li {
  margin-bottom: 12px;
}

.link-list a {
  display: block;
  padding: 16px 24px;
  background: var(--light-bg);
  border-radius: 12px;
  color: var(--primary-color);
  font-weight: 600;
  transition: all 0.3s ease;
  border-left: 4px solid transparent;
}

.link-list a:hover {
  background: var(--white);
  border-left-color: var(--creative-orange);
  transform: translateX(8px);
  box-shadow: 0 4px 12px rgba(45, 80, 22, 0.1);
}

/* FOOTER */
footer {
  background: var(--primary-color);
  color: var(--white);
  padding: 60px 20px 24px;
  margin-top: 60px;
  border-top: 5px solid var(--creative-orange);
}

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

.footer-column {
  flex: 1 1 220px;
  min-width: 200px;
}

.footer-logo {
  height: 50px;
  margin-bottom: 16px;
}

.footer-column h4 {
  color: var(--creative-yellow);
  font-size: 18px;
  margin-bottom: 16px;
  font-family: 'Playfair Display', serif;
}

.footer-column p,
.footer-column a {
  color: rgba(255, 255, 255, 0.9);
  font-size: 14px;
  line-height: 1.8;
}

.footer-column ul li {
  margin-bottom: 8px;
}

.footer-column a:hover {
  color: var(--creative-yellow);
  text-decoration: underline;
}

.copyright {
  text-align: center;
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  color: rgba(255, 255, 255, 0.8);
  font-size: 14px;
}

/* COOKIE CONSENT BANNER */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
  color: var(--white);
  padding: 24px 20px;
  box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.3);
  z-index: 998;
  transform: translateY(100%);
  transition: transform 0.4s ease;
  border-top: 4px solid var(--creative-orange);
}

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

.cookie-text p {
  color: var(--white);
  font-size: 15px;
  margin-bottom: 8px;
}

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

.cookie-buttons .btn {
  padding: 12px 24px;
  font-size: 14px;
  white-space: nowrap;
}

.btn-accept {
  background: var(--creative-orange);
  color: var(--white);
  border: 2px solid var(--creative-orange);
}

.btn-accept:hover {
  background: var(--white);
  color: var(--creative-orange);
}

.btn-reject {
  background: transparent;
  color: var(--white);
  border: 2px solid var(--white);
}

.btn-reject:hover {
  background: var(--white);
  color: var(--primary-color);
}

.btn-settings {
  background: transparent;
  color: var(--creative-yellow);
  border: 2px solid var(--creative-yellow);
}

.btn-settings:hover {
  background: var(--creative-yellow);
  color: var(--primary-color);
}

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

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

.modal-content {
  background: var(--white);
  border-radius: 16px;
  max-width: 600px;
  width: 100%;
  max-height: 80vh;
  overflow-y: auto;
  padding: 32px;
  position: relative;
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.4);
  animation: slideUp 0.3s ease;
}

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

.modal-close {
  position: absolute;
  top: 16px;
  right: 16px;
  background: var(--light-bg);
  border: none;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  font-size: 20px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.modal-close:hover {
  background: var(--creative-orange);
  color: var(--white);
  transform: rotate(90deg);
}

.cookie-preference {
  padding: 20px;
  background: var(--light-bg);
  border-radius: 12px;
  margin-bottom: 16px;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 16px;
}

.cookie-preference h4 {
  font-size: 16px;
  margin-bottom: 8px;
  color: var(--primary-color);
}

.cookie-preference p {
  font-size: 14px;
  color: var(--text-light);
  flex: 1;
}

.toggle-switch {
  position: relative;
  width: 52px;
  height: 28px;
  flex-shrink: 0;
}

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

.toggle-slider {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: #ccc;
  border-radius: 28px;
  cursor: pointer;
  transition: 0.3s;
}

.toggle-slider::before {
  content: '';
  position: absolute;
  height: 20px;
  width: 20px;
  left: 4px;
  bottom: 4px;
  background: var(--white);
  border-radius: 50%;
  transition: 0.3s;
}

input:checked + .toggle-slider {
  background: var(--creative-teal);
}

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

input:disabled + .toggle-slider {
  background: var(--secondary-color);
  cursor: not-allowed;
}

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

/* RESPONSIVE DESIGN */
@media (max-width: 768px) {
  .mobile-menu-toggle {
    display: block;
  }

  .nav-menu {
    display: none;
  }

  h1 {
    font-size: 36px;
  }

  h2 {
    font-size: 28px;
  }

  h3 {
    font-size: 22px;
  }

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

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

  .cta-buttons {
    flex-direction: column;
    align-items: stretch;
  }

  .btn {
    width: 100%;
  }

  .trust-indicators {
    flex-direction: column;
    gap: 16px;
  }

  .services-grid,
  .values-grid,
  .process-steps,
  .testimonial-grid,
  .projects-grid,
  .articles-grid,
  .tips-grid,
  .contact-grid,
  .suggestion-grid {
    flex-direction: column;
    align-items: center;
  }

  .service-card,
  .value-item,
  .step,
  .testimonial-card,
  .project-card,
  .article-card,
  .tip-card,
  .contact-card,
  .suggestion-card {
    max-width: 100%;
    width: 100%;
  }

  .footer-content {
    flex-direction: column;
  }

  .cookie-content {
    flex-direction: column;
    align-items: stretch;
  }

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

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

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

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

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

  .service-header {
    flex-direction: column;
    text-align: center;
  }

  section h2::after {
    left: 50%;
  }
}

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

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

  .container {
    padding: 0 16px;
  }

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

  .mobile-menu {
    width: 90%;
  }
}

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

  body {
    color: #000;
    background: #fff;
  }

  a {
    text-decoration: underline;
  }
}

/* ACCESSIBILITY */
*:focus {
  outline: 3px solid var(--creative-orange);
  outline-offset: 2px;
}

.sr-only {
  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;
}

/* TEXT SELECTION */
::selection {
  background: var(--creative-orange);
  color: var(--white);
}

::-moz-selection {
  background: var(--creative-orange);
  color: var(--white);
}