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

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

body {
  font-family: 'Open Sans', 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  line-height: 1.7;
  color: #2C3E50;
  background-color: #F8FAFB;
  overflow-x: hidden;
}

/* ===================================
   NATURE ORGANIC DESIGN - TYPOGRAPHY
   =================================== */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', 'Helvetica Neue', Arial, sans-serif;
  font-weight: 700;
  line-height: 1.3;
  color: #1A3A2E;
  margin-bottom: 16px;
}

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

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

h3 {
  font-size: 24px;
}

h4 {
  font-size: 20px;
}

p {
  margin-bottom: 16px;
  color: #4A5F55;
}

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

a:hover {
  color: #1A5A44;
}

ul {
  list-style: none;
}

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

/* ===================================
   NATURE ORGANIC DESIGN - CONTAINER
   =================================== */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  width: 100%;
}

/* ===================================
   NATURE ORGANIC DESIGN - HEADER
   =================================== */
header {
  background: linear-gradient(135deg, #E8F5E9 0%, #C8E6C9 100%);
  padding: 20px 0;
  box-shadow: 0 2px 8px rgba(46, 125, 50, 0.1);
  position: sticky;
  top: 0;
  z-index: 100;
  border-bottom: 3px solid #81C784;
}

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

.logo {
  height: 50px;
  width: auto;
  filter: drop-shadow(0 2px 4px rgba(46, 125, 50, 0.2));
}

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

.main-nav a {
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  font-size: 15px;
  color: #2E7D32;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  padding: 8px 0;
  position: relative;
  transition: all 0.3s ease;
}

.main-nav a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 3px;
  background: linear-gradient(90deg, #66BB6A, #43A047);
  transition: width 0.3s ease;
  border-radius: 2px;
}

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

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

/* ===================================
   MOBILE MENU - HAMBURGER
   =================================== */
.mobile-menu-toggle {
  display: none;
  position: fixed;
  top: 20px;
  right: 24px;
  z-index: 1001;
  background: linear-gradient(135deg, #66BB6A, #43A047);
  border: none;
  color: white;
  font-size: 28px;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  cursor: pointer;
  box-shadow: 0 4px 12px rgba(46, 125, 50, 0.3);
  transition: all 0.3s ease;
}

.mobile-menu-toggle:hover {
  background: linear-gradient(135deg, #81C784, #66BB6A);
  transform: scale(1.05);
}

.mobile-menu {
  display: none;
  position: fixed;
  top: 0;
  right: -100%;
  width: 80%;
  max-width: 320px;
  height: 100vh;
  background: linear-gradient(180deg, #E8F5E9 0%, #C8E6C9 100%);
  z-index: 1000;
  padding: 80px 32px 32px;
  box-shadow: -4px 0 20px rgba(46, 125, 50, 0.2);
  transition: right 0.4s ease;
  overflow-y: auto;
}

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

.mobile-menu-close {
  position: absolute;
  top: 20px;
  right: 20px;
  background: #C8E6C9;
  border: 2px solid #81C784;
  color: #2E7D32;
  font-size: 28px;
  width: 45px;
  height: 45px;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

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

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

.mobile-nav a {
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  font-size: 18px;
  color: #2E7D32;
  padding: 16px;
  background: rgba(255, 255, 255, 0.6);
  border-radius: 12px;
  border: 2px solid transparent;
  transition: all 0.3s ease;
}

.mobile-nav a:hover {
  background: white;
  border-color: #81C784;
  color: #1B5E20;
  transform: translateX(8px);
}

/* ===================================
   NATURE ORGANIC DESIGN - HERO SECTION
   =================================== */
.hero {
  background: linear-gradient(135deg, #C8E6C9 0%, #A5D6A7 50%, #81C784 100%);
  padding: 80px 20px;
  margin-bottom: 60px;
  border-radius: 0 0 50% 50% / 0 0 4% 4%;
  position: relative;
  overflow: hidden;
}

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

.hero::after {
  content: '';
  position: absolute;
  bottom: -30%;
  left: -10%;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.15) 0%, transparent 70%);
  border-radius: 50%;
}

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

.hero h1 {
  color: #1B5E20;
  text-shadow: 2px 2px 4px rgba(255, 255, 255, 0.5);
  margin-bottom: 24px;
}

.hero-subtitle {
  font-size: 20px;
  color: #2E7D32;
  margin-bottom: 32px;
  line-height: 1.6;
}

.hero-actions {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 32px;
}

.trust-badge {
  display: inline-block;
  background: rgba(255, 255, 255, 0.8);
  color: #2E7D32;
  padding: 12px 24px;
  border-radius: 30px;
  font-weight: 600;
  box-shadow: 0 4px 12px rgba(46, 125, 50, 0.2);
}

.breadcrumb {
  margin-bottom: 24px;
  font-size: 14px;
  color: #2E7D32;
}

.breadcrumb a {
  color: #2E7D32;
  font-weight: 600;
}

.breadcrumb a:hover {
  color: #1B5E20;
}

/* ===================================
   NATURE ORGANIC DESIGN - BUTTONS
   =================================== */
.btn {
  display: inline-block;
  padding: 16px 32px;
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 16px;
  text-align: center;
  border-radius: 30px;
  cursor: pointer;
  transition: all 0.3s ease;
  border: none;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.btn-primary {
  background: linear-gradient(135deg, #66BB6A, #43A047);
  color: white;
}

.btn-primary:hover {
  background: linear-gradient(135deg, #81C784, #66BB6A);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(46, 125, 50, 0.3);
}

.btn-secondary {
  background: transparent;
  color: #2E7D32;
  border: 3px solid #66BB6A;
}

.btn-secondary:hover {
  background: #E8F5E9;
  border-color: #43A047;
  color: #1B5E20;
  transform: translateY(-2px);
}

/* ===================================
   SECTIONS - SPACING & LAYOUT
   =================================== */
section {
  margin-bottom: 60px;
  padding: 40px 20px;
}

.section-subtitle {
  text-align: center;
  font-size: 18px;
  color: #4A5F55;
  margin-bottom: 40px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

/* ===================================
   NATURE ORGANIC DESIGN - CARDS
   =================================== */
.benefits-grid,
.services-grid,
.testimonials-grid,
.pricing-grid,
.models-grid,
.values-grid,
.certifications-grid,
.contact-grid,
.quality-features,
.content-grid,
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: center;
  margin-bottom: 40px;
}

.benefit-card,
.service-card,
.testimonial-card,
.pricing-card,
.model-card,
.value-card,
.cert-card,
.contact-card,
.quality-item,
.card {
  background: white;
  padding: 32px;
  border-radius: 20px;
  box-shadow: 0 4px 15px rgba(46, 125, 50, 0.1);
  flex: 1 1 280px;
  max-width: 380px;
  transition: all 0.3s ease;
  border: 2px solid transparent;
  position: relative;
  margin-bottom: 20px;
}

.benefit-card:hover,
.service-card:hover,
.pricing-card:hover,
.model-card:hover,
.value-card:hover,
.cert-card:hover,
.contact-card:hover,
.card:hover {
  transform: translateY(-8px);
  box-shadow: 0 8px 25px rgba(46, 125, 50, 0.2);
  border-color: #81C784;
}

.benefit-card img,
.contact-card img,
.quality-item img {
  width: 60px;
  height: 60px;
  margin-bottom: 20px;
  filter: drop-shadow(0 2px 4px rgba(46, 125, 50, 0.2));
}

.benefit-card h3,
.service-card h3,
.value-card h3,
.cert-card h3,
.contact-card h3 {
  color: #2E7D32;
  margin-bottom: 16px;
}

.benefit-card p,
.service-card p,
.value-card p,
.cert-card p,
.contact-card p {
  color: #4A5F55;
  line-height: 1.7;
}

/* ===================================
   PRICING CARDS - SPECIAL STYLING
   =================================== */
.pricing-card {
  text-align: center;
  background: linear-gradient(180deg, white 0%, #F1F8E9 100%);
}

.pricing-card.featured {
  border: 3px solid #66BB6A;
  transform: scale(1.05);
  background: linear-gradient(180deg, white 0%, #E8F5E9 100%);
}

.pricing-card.featured:hover {
  transform: scale(1.08) translateY(-8px);
}

.badge {
  position: absolute;
  top: -15px;
  left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(135deg, #FFD54F, #FFC107);
  color: #1B5E20;
  padding: 8px 20px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  box-shadow: 0 4px 12px rgba(255, 193, 7, 0.4);
}

.price {
  font-size: 36px;
  font-weight: 700;
  color: #2E7D32;
  margin: 20px 0;
  font-family: 'Montserrat', sans-serif;
}

.unit {
  font-size: 16px;
  font-weight: 400;
  color: #4A5F55;
  display: block;
  margin-top: 8px;
}

.features-list {
  list-style: none;
  margin: 24px 0;
  text-align: left;
}

.features-list li {
  padding: 12px 0;
  padding-left: 32px;
  position: relative;
  color: #4A5F55;
  border-bottom: 1px solid #E8F5E9;
}

.features-list li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: #66BB6A;
  font-weight: 700;
  font-size: 18px;
}

.ideal-for {
  background: #E8F5E9;
  padding: 12px;
  border-radius: 10px;
  margin: 20px 0;
  font-size: 14px;
  color: #2E7D32;
  font-weight: 600;
}

/* ===================================
   TESTIMONIALS - READABLE TEXT
   =================================== */
.testimonials {
  background: linear-gradient(135deg, #F1F8E9 0%, #E8F5E9 100%);
  padding: 60px 20px;
  border-radius: 30px;
}

.testimonials h2 {
  text-align: center;
  color: #1B5E20;
  margin-bottom: 40px;
}

.testimonial-card {
  background: white;
  padding: 32px;
  border-left: 5px solid #66BB6A;
  box-shadow: 0 4px 15px rgba(46, 125, 50, 0.1);
}

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

.testimonial-author {
  font-weight: 700;
  color: #2E7D32;
  font-style: normal;
  margin-bottom: 8px;
}

.rating {
  color: #FFD54F;
  font-size: 20px;
  letter-spacing: 4px;
}

/* ===================================
   CTA SECTIONS
   =================================== */
.cta-banner,
.cta-section,
.contact-cta {
  background: linear-gradient(135deg, #66BB6A 0%, #43A047 100%);
  padding: 60px 20px;
  text-align: center;
  border-radius: 30px;
  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.1) 0%, transparent 70%);
  border-radius: 50%;
}

.cta-banner h2,
.cta-section h2,
.contact-cta h2 {
  color: white;
  margin-bottom: 16px;
  position: relative;
  z-index: 2;
}

.cta-banner p,
.cta-section p,
.contact-cta p {
  color: #E8F5E9;
  font-size: 18px;
  margin-bottom: 32px;
  position: relative;
  z-index: 2;
}

.cta-actions {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
  position: relative;
  z-index: 2;
}

.guarantee,
.special-offer,
.contact-hours {
  background: rgba(255, 255, 255, 0.2);
  display: inline-block;
  padding: 12px 24px;
  border-radius: 30px;
  color: white;
  font-weight: 600;
  margin-top: 24px;
  position: relative;
  z-index: 2;
}

/* ===================================
   SERVICE DETAIL SECTIONS
   =================================== */
.service-detail,
.services-detailed .service-detail {
  background: white;
  padding: 40px;
  border-radius: 20px;
  box-shadow: 0 4px 15px rgba(46, 125, 50, 0.1);
  margin-bottom: 32px;
  border-left: 5px solid #66BB6A;
}

.service-detail h2 {
  color: #2E7D32;
  margin-bottom: 16px;
}

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

.text-section {
  flex-direction: column;
  align-items: flex-start;
}

/* ===================================
   MILESTONES & STEPS
   =================================== */
.milestones,
.steps-grid,
.conditions-list {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: center;
  margin: 40px 0;
}

.milestone,
.step-card,
.condition-item {
  background: linear-gradient(135deg, #E8F5E9, #C8E6C9);
  padding: 20px 30px;
  border-radius: 15px;
  font-weight: 600;
  color: #2E7D32;
  box-shadow: 0 4px 12px rgba(46, 125, 50, 0.1);
  transition: all 0.3s ease;
  text-align: center;
  flex: 1 1 200px;
}

.milestone:hover,
.step-card:hover,
.condition-item:hover {
  transform: translateY(-4px);
  box-shadow: 0 6px 20px rgba(46, 125, 50, 0.2);
}

.step-number {
  width: 50px;
  height: 50px;
  background: linear-gradient(135deg, #66BB6A, #43A047);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  font-weight: 700;
  margin: 0 auto 16px;
}

/* ===================================
   PRODUCT LIST & PRICING
   =================================== */
.product-list {
  max-width: 700px;
  margin: 0 auto;
}

.product-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px;
  background: white;
  border-radius: 12px;
  margin-bottom: 16px;
  box-shadow: 0 2px 8px rgba(46, 125, 50, 0.1);
  transition: all 0.3s ease;
}

.product-item:hover {
  transform: translateX(8px);
  box-shadow: 0 4px 15px rgba(46, 125, 50, 0.15);
}

.product-item .price {
  font-size: 20px;
  color: #2E7D32;
  font-weight: 700;
}

/* ===================================
   SAVINGS SHOWCASE
   =================================== */
.savings-showcase {
  background: linear-gradient(135deg, #F1F8E9 0%, #E8F5E9 100%);
  padding: 60px 20px;
  border-radius: 30px;
}

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

.savings-card {
  background: white;
  padding: 32px;
  border-radius: 20px;
  box-shadow: 0 4px 15px rgba(46, 125, 50, 0.1);
  flex: 1 1 320px;
  max-width: 450px;
  border: 2px solid #C8E6C9;
}

.savings-card h3 {
  color: #2E7D32;
  margin-bottom: 16px;
}

.comparison {
  padding: 12px;
  margin: 8px 0;
  border-radius: 8px;
  background: #F5F5F5;
}

.comparison.highlight {
  background: #E8F5E9;
  color: #2E7D32;
  font-weight: 700;
}

.savings-amount {
  background: linear-gradient(135deg, #66BB6A, #43A047);
  color: white;
  padding: 16px;
  border-radius: 12px;
  font-size: 18px;
  font-weight: 700;
  text-align: center;
  margin-top: 16px;
}

.annual-savings {
  text-align: center;
  font-size: 24px;
  font-weight: 700;
  color: #2E7D32;
  margin-top: 32px;
}

/* ===================================
   CONTACT FORMS
   =================================== */
.form-container {
  max-width: 600px;
  margin: 0 auto;
  background: white;
  padding: 40px;
  border-radius: 20px;
  box-shadow: 0 4px 15px rgba(46, 125, 50, 0.1);
}

.form-field {
  margin-bottom: 24px;
}

.form-field label {
  display: block;
  margin-bottom: 8px;
  font-weight: 600;
  color: #2E7D32;
}

.input-placeholder,
.textarea-placeholder {
  width: 100%;
  padding: 14px;
  border: 2px solid #C8E6C9;
  border-radius: 10px;
  background: #F9FBF9;
  min-height: 48px;
  transition: all 0.3s ease;
}

.textarea-placeholder {
  min-height: 120px;
}

.input-placeholder:hover,
.textarea-placeholder:hover {
  border-color: #81C784;
}

.select-placeholder {
  width: 100%;
  padding: 14px;
  border: 2px solid #C8E6C9;
  border-radius: 10px;
  background: white;
  color: #4A5F55;
  cursor: pointer;
}

.form-field.checkbox label {
  display: flex;
  align-items: center;
  gap: 8px;
  font-weight: 400;
}

.privacy-note {
  font-size: 14px;
  color: #4A5F55;
  text-align: center;
  margin-top: 20px;
}

/* ===================================
   FAQ SECTION
   =================================== */
.faq-list {
  max-width: 800px;
  margin: 0 auto;
}

.faq-item {
  background: white;
  padding: 24px;
  border-radius: 15px;
  margin-bottom: 20px;
  box-shadow: 0 2px 8px rgba(46, 125, 50, 0.1);
  border-left: 4px solid #66BB6A;
  transition: all 0.3s ease;
}

.faq-item:hover {
  box-shadow: 0 4px 15px rgba(46, 125, 50, 0.15);
  transform: translateX(8px);
}

.faq-item h3 {
  color: #2E7D32;
  margin-bottom: 12px;
}

.faq-item p {
  color: #4A5F55;
}

/* ===================================
   THANK YOU PAGE
   =================================== */
.hero.thank-you {
  text-align: center;
}

.success-icon {
  width: 100px;
  height: 100px;
  background: linear-gradient(135deg, #66BB6A, #43A047);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 60px;
  margin: 0 auto 24px;
  box-shadow: 0 8px 25px rgba(46, 125, 50, 0.3);
}

.main-message {
  font-size: 20px;
  text-align: center;
  color: #2E7D32;
  font-weight: 600;
  margin-bottom: 40px;
}

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

.action-card {
  background: white;
  padding: 32px;
  border-radius: 20px;
  box-shadow: 0 4px 15px rgba(46, 125, 50, 0.1);
  flex: 1 1 280px;
  max-width: 350px;
  text-align: center;
}

/* ===================================
   LEGAL CONTENT PAGES
   =================================== */
.legal-content {
  background: white;
  border-radius: 20px;
  padding: 40px 20px;
}

.content-wrapper {
  max-width: 900px;
  margin: 0 auto;
  padding: 40px;
  background: white;
  border-radius: 15px;
  box-shadow: 0 4px 15px rgba(46, 125, 50, 0.1);
}

.content-wrapper h2 {
  color: #2E7D32;
  margin-top: 32px;
  margin-bottom: 16px;
  padding-top: 20px;
  border-top: 2px solid #E8F5E9;
}

.content-wrapper h2:first-child {
  margin-top: 0;
  padding-top: 0;
  border-top: none;
}

.content-wrapper p {
  margin-bottom: 16px;
  color: #4A5F55;
  line-height: 1.8;
}

.content-wrapper ul {
  margin: 16px 0;
  padding-left: 24px;
}

.content-wrapper ul li {
  list-style: disc;
  color: #4A5F55;
  margin-bottom: 8px;
  line-height: 1.7;
}

.last-updated {
  font-size: 14px;
  color: #4A5F55;
  font-style: italic;
  text-align: center;
}

/* ===================================
   LOCATION & ADDRESS INFO
   =================================== */
.location-details {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  justify-content: center;
  margin-top: 40px;
}

.address-block,
.hours-block {
  background: white;
  padding: 32px;
  border-radius: 15px;
  box-shadow: 0 4px 15px rgba(46, 125, 50, 0.1);
  flex: 1 1 280px;
  max-width: 400px;
}

.address-block h3,
.hours-block h3 {
  color: #2E7D32;
  margin-bottom: 16px;
}

.contact-detail {
  font-weight: 700;
  color: #2E7D32;
  font-size: 18px;
  margin: 12px 0;
}

.contact-hours {
  color: #4A5F55;
  font-size: 14px;
  margin: 8px 0;
}

/* ===================================
   FOOTER - NATURE ORGANIC DESIGN
   =================================== */
footer {
  background: linear-gradient(180deg, #2E7D32 0%, #1B5E20 100%);
  color: #E8F5E9;
  padding: 60px 20px 20px;
  margin-top: 80px;
  border-radius: 30px 30px 0 0;
}

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

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

.footer-logo {
  height: 45px;
  width: auto;
  margin-bottom: 16px;
  filter: brightness(0) invert(1);
}

.footer-section h4 {
  color: #C8E6C9;
  font-size: 18px;
  margin-bottom: 20px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.footer-section p {
  color: #E8F5E9;
  line-height: 1.8;
  margin-bottom: 12px;
}

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

.footer-nav a {
  color: #E8F5E9;
  transition: all 0.3s ease;
  padding: 4px 0;
}

.footer-nav a:hover {
  color: #C8E6C9;
  padding-left: 8px;
}

.footer-bottom {
  text-align: center;
  padding-top: 32px;
  border-top: 1px solid rgba(200, 230, 201, 0.3);
}

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

/* ===================================
   COOKIE CONSENT BANNER
   =================================== */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(135deg, #2E7D32, #1B5E20);
  color: white;
  padding: 24px;
  box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.2);
  z-index: 999;
  transform: translateY(100%);
  transition: transform 0.4s ease;
}

.cookie-banner.active {
  transform: translateY(0);
}

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

.cookie-text {
  flex: 1 1 400px;
}

.cookie-text p {
  color: #E8F5E9;
  margin-bottom: 0;
}

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

.cookie-btn {
  padding: 12px 24px;
  border: none;
  border-radius: 25px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.cookie-btn.accept {
  background: linear-gradient(135deg, #66BB6A, #43A047);
  color: white;
}

.cookie-btn.accept:hover {
  background: linear-gradient(135deg, #81C784, #66BB6A);
  transform: translateY(-2px);
}

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

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

.cookie-btn.settings {
  background: rgba(255, 255, 255, 0.2);
  color: white;
}

.cookie-btn.settings:hover {
  background: rgba(255, 255, 255, 0.3);
}

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

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

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

.cookie-modal h2 {
  color: #2E7D32;
  margin-bottom: 24px;
}

.cookie-category {
  padding: 20px;
  background: #F1F8E9;
  border-radius: 12px;
  margin-bottom: 16px;
  border-left: 4px solid #66BB6A;
}

.cookie-category h3 {
  color: #2E7D32;
  margin-bottom: 8px;
  font-size: 18px;
}

.cookie-category p {
  color: #4A5F55;
  font-size: 14px;
  margin-bottom: 12px;
}

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

.cookie-toggle input[type="checkbox"] {
  width: 20px;
  height: 20px;
  cursor: pointer;
}

.cookie-modal-actions {
  display: flex;
  gap: 12px;
  margin-top: 24px;
  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;
  }
  
  /* Show Mobile Menu */
  .mobile-menu-toggle {
    display: flex;
    align-items: center;
    justify-content: center;
  }
  
  .mobile-menu {
    display: block;
  }
  
  /* Hide Desktop Navigation */
  .main-nav {
    display: none;
  }
  
  /* Header Adjustments */
  header {
    padding: 15px 0;
  }
  
  .logo {
    height: 40px;
  }
  
  /* Hero Section */
  .hero {
    padding: 60px 20px;
  }
  
  .hero h1 {
    font-size: 28px;
  }
  
  .hero-subtitle {
    font-size: 16px;
  }
  
  .hero-actions {
    flex-direction: column;
    gap: 16px;
  }
  
  .btn {
    width: 100%;
    max-width: 300px;
  }
  
  /* Card Layouts */
  .benefits-grid,
  .services-grid,
  .testimonials-grid,
  .pricing-grid,
  .models-grid,
  .values-grid,
  .certifications-grid,
  .contact-grid {
    flex-direction: column;
  }
  
  .benefit-card,
  .service-card,
  .testimonial-card,
  .pricing-card,
  .model-card,
  .value-card,
  .cert-card,
  .contact-card {
    max-width: 100%;
  }
  
  .pricing-card.featured {
    transform: scale(1);
  }
  
  .pricing-card.featured:hover {
    transform: scale(1) translateY(-4px);
  }
  
  /* Text-Image Sections */
  .text-image-section {
    flex-direction: column;
  }
  
  /* Footer */
  .footer-content {
    flex-direction: column;
    gap: 32px;
  }
  
  .footer-section {
    text-align: center;
  }
  
  /* Cookie Banner */
  .cookie-content {
    flex-direction: column;
    text-align: center;
  }
  
  .cookie-actions {
    justify-content: center;
  }
  
  /* Forms */
  .form-container {
    padding: 24px;
  }
  
  /* Sections */
  section {
    padding: 32px 16px;
  }
  
  /* Location Details */
  .location-details {
    flex-direction: column;
  }
  
  /* Milestones & Steps */
  .milestones,
  .steps-grid {
    flex-direction: column;
  }
}

@media (min-width: 769px) and (max-width: 1024px) {
  /* Tablet Adjustments */
  .container {
    padding: 0 32px;
  }
  
  h1 {
    font-size: 42px;
  }
  
  h2 {
    font-size: 32px;
  }
  
  .benefit-card,
  .service-card,
  .pricing-card,
  .model-card {
    flex: 1 1 calc(50% - 24px);
  }
}

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

.benefit-card,
.service-card,
.testimonial-card,
.pricing-card {
  animation: fadeIn 0.6s ease-out;
}

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

/* Focus States for Accessibility */
a:focus,
button:focus,
input:focus,
select:focus {
  outline: 3px solid #81C784;
  outline-offset: 2px;
}

/* Print Styles */
@media print {
  .mobile-menu-toggle,
  .mobile-menu,
  .cookie-banner,
  header,
  footer {
    display: none;
  }
  
  body {
    background: white;
  }
  
  .container {
    max-width: 100%;
  }
}