/* =================================
   DisinPunte Solar - Modern Bold Style
   CSS Reset & Base Styles
   ================================= */

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

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

body {
  font-family: 'Open Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', Arial, sans-serif;
  line-height: 1.6;
  color: #1a1a1a;
  background: #ffffff;
  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 - Bold Modern Style
   ================================= */

h1, h2, h3, h4 {
  font-family: 'Montserrat', 'Arial Black', sans-serif;
  font-weight: 800;
  line-height: 1.2;
  color: #000000;
  margin-bottom: 20px;
}

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

h2 {
  font-size: 38px;
  letter-spacing: -0.5px;
}

h3 {
  font-size: 28px;
}

h4 {
  font-size: 20px;
  font-weight: 700;
}

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

/* =================================
   Container & Layout
   ================================= */

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

/* =================================
   Header - Bold Design
   ================================= */

header {
  background: #000000;
  padding: 20px 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;
  gap: 20px;
}

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

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

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

.main-nav a {
  color: #ffffff;
  font-weight: 600;
  font-size: 16px;
  padding: 8px 0;
  position: relative;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

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

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

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

/* =================================
   Mobile Menu - Burger Navigation
   ================================= */

.mobile-menu-toggle {
  display: none;
  position: fixed;
  top: 20px;
  right: 20px;
  z-index: 2000;
  background: #FF8C00;
  color: #ffffff;
  border: none;
  width: 50px;
  height: 50px;
  border-radius: 8px;
  font-size: 24px;
  cursor: pointer;
  box-shadow: 0 4px 12px rgba(255, 140, 0, 0.3);
  transition: all 0.3s ease;
}

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

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

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

.mobile-menu-close {
  position: absolute;
  top: 20px;
  right: 20px;
  background: transparent;
  color: #ffffff;
  border: 2px solid #FF8C00;
  width: 40px;
  height: 40px;
  border-radius: 6px;
  font-size: 24px;
  cursor: pointer;
  transition: all 0.3s ease;
}

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

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

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

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

/* =================================
   Hero Section - Bold Impact
   ================================= */

.hero {
  background: linear-gradient(135deg, #000000 0%, #1a1a1a 100%);
  padding: 100px 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, 140, 0, 0.03) 10px,
    rgba(255, 140, 0, 0.03) 20px
  );
  pointer-events: none;
}

.hero-content {
  max-width: 900px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

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

.hero-subtitle {
  color: #f0f0f0;
  font-size: 22px;
  margin-bottom: 40px;
  font-weight: 300;
}

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

.trust-indicators {
  display: flex;
  gap: 30px;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 40px;
}

.trust-indicators span {
  color: #FFD700;
  font-weight: 700;
  font-size: 16px;
  padding: 12px 24px;
  background: rgba(255, 215, 0, 0.1);
  border-radius: 30px;
  border: 2px solid #FFD700;
}

/* =================================
   Buttons - Bold & Vibrant
   ================================= */

.btn {
  display: inline-block;
  padding: 16px 40px;
  font-size: 16px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.3s ease;
  border: none;
  text-align: center;
}

.btn-primary {
  background: #FF8C00;
  color: #ffffff;
  box-shadow: 0 6px 20px rgba(255, 140, 0, 0.3);
}

.btn-primary:hover {
  background: #CC6F00;
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(255, 140, 0, 0.4);
}

.btn-secondary {
  background: transparent;
  color: #ffffff;
  border: 3px solid #FF8C00;
}

.btn-secondary:hover {
  background: #FF8C00;
  transform: translateY(-3px);
}

/* =================================
   Sections - Modern Bold Layout
   ================================= */

.section,
.benefits,
.services-overview,
.testimonials,
.cta-final,
.content-section,
.stats-section,
.team-section,
.why-us,
.cta-section,
.services-detail,
.process-section,
.projects-section,
.subsidies-overview,
.nzu-detail,
.application-process,
.success-rate,
.featured-article,
.articles-section,
.popular-articles,
.expert-tips,
.contact-methods,
.contact-form-section,
.office-info,
.response-time,
.faq-contact,
.legal-content,
.thankyou-hero,
.confirmation,
.next-steps,
.resources,
.social-proof,
.back-navigation {
  padding: 80px 20px;
  margin-bottom: 0;
}

.section h2,
.benefits h2,
.services-overview h2,
.testimonials h2,
.content-section h2,
.stats-section h2,
.team-section h2,
.why-us h2,
.cta-section h2,
.services-detail h2,
.process-section h2,
.projects-section h2,
.subsidies-overview h2,
.nzu-detail h2,
.application-process h2,
.success-rate h2,
.articles-section h2,
.popular-articles h2,
.expert-tips h2,
.contact-methods h2,
.contact-form-section h2,
.office-info h2,
.response-time h2,
.faq-contact h2,
.resources h2,
.next-steps h2 {
  text-align: center;
  margin-bottom: 50px;
  position: relative;
  padding-bottom: 20px;
}

.section h2::after,
.benefits h2::after,
.services-overview h2::after,
.testimonials h2::after,
.content-section h2::after,
.stats-section h2::after,
.team-section h2::after,
.services-detail h2::after,
.process-section h2::after,
.projects-section h2::after,
.subsidies-overview h2::after,
.articles-section h2::after,
.contact-methods h2::after,
.resources h2::after,
.next-steps h2::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 5px;
  background: #FF8C00;
}

/* Alternating Section Backgrounds */
.benefits,
.testimonials,
.stats-section,
.why-us,
.process-section,
.success-rate,
.popular-articles,
.response-time,
.social-proof {
  background: #f8f8f8;
}

/* =================================
   Card Grids - Flexbox Layout
   ================================= */

.benefits-grid,
.services-grid,
.testimonials-grid,
.stats-grid,
.team-grid,
.projects-grid,
.subsidy-grid,
.articles-grid,
.contact-grid,
.resources-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  justify-content: center;
  margin-bottom: 40px;
}

/* =================================
   Cards - Bold Modern Design
   ================================= */

.benefit-card,
.service-card,
.testimonial-card,
.stat-card,
.team-member,
.project-card,
.subsidy-card,
.article-card,
.contact-card,
.resource-card {
  background: #ffffff;
  padding: 30px;
  border-radius: 12px;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  flex: 1 1 300px;
  max-width: 400px;
  min-width: 280px;
  position: relative;
  border: 3px solid transparent;
  margin-bottom: 20px;
}

.benefit-card::before,
.service-card::before,
.subsidy-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 5px;
  background: linear-gradient(90deg, #FF8C00, #FFD700);
  border-radius: 12px 12px 0 0;
}

.benefit-card:hover,
.service-card:hover,
.project-card:hover,
.subsidy-card:hover,
.article-card:hover,
.contact-card:hover,
.resource-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.15);
  border-color: #FF8C00;
}

.benefit-card h3,
.service-card h3,
.project-card h3,
.subsidy-card h3,
.article-card h3,
.contact-card h3,
.resource-card h3 {
  color: #FF8C00;
  margin-bottom: 16px;
  font-size: 24px;
}

.stat-card {
  text-align: center;
  background: linear-gradient(135deg, #FF8C00, #CC6F00);
  color: #ffffff;
  padding: 40px 30px;
}

.stat-card h3 {
  font-size: 48px;
  color: #ffffff;
  margin-bottom: 10px;
  font-weight: 900;
}

.stat-card p {
  color: #ffffff;
  font-size: 18px;
  font-weight: 600;
}

/* =================================
   Testimonials - Readable Design
   ================================= */

.testimonial-card {
  background: #ffffff;
  border-left: 5px solid #FF8C00;
  color: #1a1a1a;
  padding: 30px;
}

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

.testimonial-card .author {
  color: #FF8C00;
  font-weight: 700;
  font-size: 14px;
  margin-top: 20px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.testimonials .rating {
  text-align: center;
  font-size: 20px;
  font-weight: 700;
  color: #FFD700;
  margin-top: 40px;
}

/* =================================
   Service Detail Cards
   ================================= */

.service-detail-card {
  background: #ffffff;
  padding: 40px;
  border-radius: 12px;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
  margin-bottom: 30px;
  border-left: 5px solid #FF8C00;
  position: relative;
}

.service-detail-card h3 {
  color: #000000;
  margin-bottom: 20px;
  font-size: 28px;
}

.service-detail-card .price {
  font-size: 24px;
  font-weight: 900;
  color: #FF8C00;
  margin: 20px 0;
}

.service-detail-card ul {
  margin-top: 20px;
}

.service-detail-card ul li {
  padding: 10px 0;
  padding-left: 30px;
  position: relative;
  color: #333333;
  font-size: 16px;
}

.service-detail-card ul li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: #2C5F2D;
  font-weight: 900;
  font-size: 18px;
}

/* =================================
   Process Steps - Visual Flow
   ================================= */

.process-steps,
.steps-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  justify-content: center;
  margin-top: 40px;
}

.step {
  background: #ffffff;
  padding: 30px;
  border-radius: 12px;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
  flex: 1 1 250px;
  max-width: 300px;
  text-align: center;
  position: relative;
  border: 3px solid #f0f0f0;
  margin-bottom: 20px;
}

.step h3 {
  color: #FF8C00;
  font-size: 22px;
  margin-bottom: 16px;
}

.step::before {
  content: '';
  position: absolute;
  top: -15px;
  left: 50%;
  transform: translateX(-50%);
  width: 40px;
  height: 40px;
  background: #FF8C00;
  border-radius: 50%;
  border: 5px solid #ffffff;
}

/* =================================
   CTA Sections - High Impact
   ================================= */

.cta-final,
.cta-section {
  background: linear-gradient(135deg, #000000 0%, #1a1a1a 100%);
  text-align: center;
  color: #ffffff;
  padding: 80px 20px;
  position: relative;
  overflow: hidden;
}

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

.cta-final h2,
.cta-section h2 {
  color: #ffffff;
  margin-bottom: 20px;
}

.cta-final p,
.cta-section p {
  font-size: 20px;
  margin-bottom: 30px;
}

.cta-final ul {
  display: flex;
  flex-direction: column;
  gap: 15px;
  align-items: center;
  margin: 30px 0;
}

.cta-final ul li {
  color: #FFD700;
  font-weight: 600;
  font-size: 18px;
  position: relative;
  padding-left: 30px;
}

.cta-final ul li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: #2C5F2D;
  font-weight: 900;
  font-size: 20px;
}

.response-time,
.urgency {
  margin-top: 20px;
  color: #FFD700;
  font-weight: 600;
  font-size: 16px;
}

/* =================================
   Page Hero - Interior Pages
   ================================= */

.page-hero,
.thankyou-hero {
  background: linear-gradient(135deg, #FF8C00 0%, #CC6F00 100%);
  padding: 80px 20px;
  text-align: center;
  color: #ffffff;
}

.page-hero h1,
.thankyou-hero h1 {
  color: #ffffff;
  font-size: 48px;
  margin-bottom: 20px;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.2);
}

.page-hero p {
  color: #ffffff;
  font-size: 20px;
  max-width: 700px;
  margin: 0 auto;
}

.page-hero .highlight {
  display: inline-block;
  background: #000000;
  color: #FFD700;
  padding: 10px 20px;
  border-radius: 6px;
  font-weight: 700;
  margin-top: 20px;
}

/* =================================
   Values & Features
   ================================= */

.values,
.why-us ul,
.nzu-detail ul,
.expert-tips ul {
  display: flex;
  flex-direction: column;
  gap: 25px;
  margin-top: 30px;
}

.value-item {
  background: #ffffff;
  padding: 30px;
  border-radius: 12px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
  border-left: 5px solid #FF8C00;
  margin-bottom: 20px;
}

.value-item h3 {
  color: #FF8C00;
  margin-bottom: 12px;
}

.why-us ul li,
.nzu-detail ul li,
.expert-tips ul li {
  padding: 15px;
  padding-left: 40px;
  background: #ffffff;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
  position: relative;
  font-size: 16px;
  margin-bottom: 12px;
}

.why-us ul li::before,
.nzu-detail ul li::before,
.expert-tips ul li::before {
  content: '▶';
  position: absolute;
  left: 15px;
  color: #FF8C00;
  font-size: 14px;
}

/* =================================
   Project & Subsidy Cards
   ================================= */

.project-card .project-type,
.subsidy-card .status {
  display: inline-block;
  background: #2C5F2D;
  color: #ffffff;
  padding: 6px 12px;
  border-radius: 4px;
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 12px;
}

.project-card .year {
  color: #666666;
  font-size: 14px;
  font-weight: 600;
  margin-top: 12px;
}

.subsidy-card .amount {
  font-size: 32px;
  font-weight: 900;
  color: #FF8C00;
  margin: 16px 0;
}

.subsidy-card .status {
  background: #2C5F2D;
}

/* =================================
   Articles & Blog
   ================================= */

.featured-article {
  padding: 60px 20px;
  background: linear-gradient(135deg, #FF8C00 0%, #CC6F00 100%);
}

.article-featured {
  background: #ffffff;
  padding: 40px;
  border-radius: 12px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
  max-width: 900px;
  margin: 0 auto;
}

.article-featured h2 {
  color: #000000;
  margin-bottom: 20px;
  text-align: left;
}

.article-featured h2::after {
  display: none;
}

.article-card .meta,
.article-featured .meta {
  color: #666666;
  font-size: 14px;
  margin-top: 16px;
}

.popular-articles ul {
  display: flex;
  flex-direction: column;
  gap: 20px;
  max-width: 800px;
  margin: 0 auto;
}

.popular-articles ul li {
  background: #ffffff;
  padding: 20px;
  border-radius: 8px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
  border-left: 4px solid #FF8C00;
  font-size: 18px;
  font-weight: 600;
  transition: all 0.3s ease;
  margin-bottom: 12px;
}

.popular-articles ul li:hover {
  transform: translateX(10px);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

/* =================================
   Contact Forms & Info
   ================================= */

.form-info {
  background: #f8f8f8;
  padding: 30px;
  border-radius: 12px;
  border: 3px solid #FF8C00;
  text-align: center;
  max-width: 700px;
  margin: 0 auto;
}

.form-info p {
  font-size: 16px;
  color: #333333;
  margin: 0;
}

.office-info {
  text-align: center;
  background: #f8f8f8;
}

.office-info p {
  max-width: 600px;
  margin: 12px auto;
  font-size: 16px;
}

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

.faq-item {
  background: #ffffff;
  padding: 30px;
  border-radius: 12px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
  margin-bottom: 25px;
  border-left: 5px solid #FF8C00;
}

.faq-item h3 {
  color: #000000;
  margin-bottom: 12px;
  font-size: 20px;
}

.faq-item p {
  color: #333333;
  font-size: 16px;
  margin: 0;
}

/* =================================
   Legal Content Pages
   ================================= */

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

.legal-content h2 {
  color: #000000;
  margin-top: 40px;
  margin-bottom: 20px;
  text-align: left;
  font-size: 28px;
}

.legal-content h2::after {
  display: none;
}

.legal-content h3 {
  color: #FF8C00;
  margin-top: 30px;
  margin-bottom: 16px;
  font-size: 22px;
}

.legal-content p,
.legal-content ul li {
  color: #333333;
  font-size: 16px;
  line-height: 1.8;
  margin-bottom: 16px;
}

.legal-content ul {
  margin: 20px 0;
  padding-left: 0;
}

.legal-content ul li {
  padding-left: 30px;
  position: relative;
  margin-bottom: 12px;
}

.legal-content ul li::before {
  content: '•';
  position: absolute;
  left: 10px;
  color: #FF8C00;
  font-size: 20px;
}

/* =================================
   Thank You Page
   ================================= */

.confirmation {
  text-align: center;
  padding: 60px 20px;
  max-width: 700px;
  margin: 0 auto;
}

.confirmation p {
  font-size: 18px;
  margin-bottom: 20px;
}

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

.back-navigation .btn {
  margin: 10px;
}

/* =================================
   Footer - Bold Design
   ================================= */

footer {
  background: #000000;
  color: #ffffff;
  padding: 60px 20px 30px;
  margin-top: 80px;
}

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

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

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

.footer-col p {
  color: #cccccc;
  font-size: 14px;
  line-height: 1.8;
  margin-bottom: 12px;
}

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

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

.footer-nav a:hover {
  color: #FF8C00;
  padding-left: 10px;
}

.copyright {
  text-align: center;
  color: #666666;
  font-size: 14px;
  padding-top: 30px;
  border-top: 1px solid #333333;
  margin-top: 30px;
}

/* =================================
   Cookie Consent Banner
   ================================= */

.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: #000000;
  color: #ffffff;
  padding: 25px;
  box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.3);
  z-index: 1998;
  display: none;
  border-top: 4px solid #FF8C00;
}

.cookie-banner.show {
  display: block;
  animation: slideUp 0.4s ease;
}

@keyframes slideUp {
  from {
    transform: translateY(100%);
  }
  to {
    transform: translateY(0);
  }
}

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

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

.cookie-text h3 {
  color: #FF8C00;
  margin-bottom: 10px;
  font-size: 20px;
}

.cookie-text p {
  color: #cccccc;
  font-size: 14px;
  line-height: 1.6;
  margin: 0;
}

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

.cookie-buttons .btn {
  padding: 12px 30px;
  font-size: 14px;
}

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

.cookie-buttons .btn-settings:hover {
  border-color: #FF8C00;
  color: #FF8C00;
}

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

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

.cookie-modal-content {
  background: #ffffff;
  border-radius: 12px;
  max-width: 600px;
  width: 100%;
  max-height: 80vh;
  overflow-y: auto;
  padding: 40px;
  position: relative;
}

.cookie-modal-close {
  position: absolute;
  top: 20px;
  right: 20px;
  background: transparent;
  border: none;
  font-size: 28px;
  cursor: pointer;
  color: #666666;
  width: 35px;
  height: 35px;
  line-height: 1;
}

.cookie-modal-close:hover {
  color: #FF8C00;
}

.cookie-modal h2 {
  color: #000000;
  margin-bottom: 20px;
  text-align: left;
}

.cookie-modal h2::after {
  display: none;
}

.cookie-category {
  padding: 20px;
  background: #f8f8f8;
  border-radius: 8px;
  margin-bottom: 20px;
  border-left: 4px solid #FF8C00;
}

.cookie-category h3 {
  color: #000000;
  margin-bottom: 10px;
  font-size: 18px;
}

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

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

.cookie-toggle input[type="checkbox"] {
  width: 50px;
  height: 26px;
  appearance: none;
  background: #cccccc;
  border-radius: 13px;
  position: relative;
  cursor: pointer;
  transition: all 0.3s ease;
}

.cookie-toggle input[type="checkbox"]:checked {
  background: #2C5F2D;
}

.cookie-toggle input[type="checkbox"]::before {
  content: '';
  position: absolute;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: #ffffff;
  top: 3px;
  left: 3px;
  transition: all 0.3s ease;
}

.cookie-toggle input[type="checkbox"]:checked::before {
  left: 27px;
}

.cookie-toggle input[type="checkbox"]:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}

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

/* =================================
   Responsive Design - Mobile First
   ================================= */

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

  /* Hide desktop navigation */
  .main-nav {
    display: none;
  }

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

  h2 {
    font-size: 28px;
  }

  h3 {
    font-size: 22px;
  }

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

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

  /* Hero CTA buttons stack */
  .hero-cta {
    flex-direction: column;
    align-items: stretch;
  }

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

  /* Trust indicators stack */
  .trust-indicators {
    flex-direction: column;
    gap: 15px;
  }

  .trust-indicators span {
    display: block;
    width: 100%;
  }

  /* Sections padding */
  .section,
  .benefits,
  .services-overview,
  .testimonials,
  .cta-final,
  .content-section,
  .stats-section,
  .team-section,
  .why-us,
  .cta-section,
  .services-detail,
  .process-section,
  .projects-section,
  .subsidies-overview,
  .nzu-detail,
  .application-process,
  .success-rate,
  .featured-article,
  .articles-section,
  .popular-articles,
  .expert-tips,
  .contact-methods,
  .contact-form-section,
  .office-info,
  .response-time,
  .faq-contact,
  .legal-content,
  .thankyou-hero,
  .confirmation,
  .next-steps,
  .resources,
  .social-proof,
  .back-navigation {
    padding: 50px 20px;
  }

  .hero,
  .page-hero,
  .thankyou-hero {
    padding: 60px 20px;
  }

  /* Card grids mobile layout */
  .benefits-grid,
  .services-grid,
  .testimonials-grid,
  .stats-grid,
  .team-grid,
  .projects-grid,
  .subsidy-grid,
  .articles-grid,
  .contact-grid,
  .resources-grid {
    flex-direction: column;
    gap: 20px;
  }

  .benefit-card,
  .service-card,
  .testimonial-card,
  .stat-card,
  .team-member,
  .project-card,
  .subsidy-card,
  .article-card,
  .contact-card,
  .resource-card {
    max-width: 100%;
    width: 100%;
  }

  /* Process steps mobile */
  .process-steps,
  .steps-grid {
    flex-direction: column;
  }

  .step {
    max-width: 100%;
  }

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

  .footer-col {
    width: 100%;
  }

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

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

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

  .cookie-modal-content {
    padding: 30px 20px;
  }

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

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

  /* Back navigation buttons */
  .back-navigation .btn {
    display: block;
    width: 100%;
    margin: 10px 0;
  }
}

@media (min-width: 769px) and (max-width: 1024px) {
  /* Tablet adjustments */
  .container {
    padding: 0 30px;
  }

  h1 {
    font-size: 42px;
  }

  h2 {
    font-size: 34px;
  }

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

  /* Card grids - 2 columns on tablet */
  .benefit-card,
  .service-card,
  .project-card,
  .subsidy-card,
  .article-card,
  .contact-card,
  .resource-card {
    flex: 1 1 calc(50% - 15px);
    max-width: calc(50% - 15px);
  }
}

/* =================================
   Print Styles
   ================================= */

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

  body {
    font-size: 12pt;
    color: #000000;
  }

  .page-hero,
  .hero {
    background: none;
    color: #000000;
  }

  h1, h2, h3 {
    page-break-after: avoid;
  }
}

/* =================================
   Accessibility & Focus States
   ================================= */

a:focus,
button:focus,
input:focus {
  outline: 3px solid #FF8C00;
  outline-offset: 2px;
}

.btn:focus {
  box-shadow: 0 0 0 4px rgba(255, 140, 0, 0.3);
}

/* Reduced motion for accessibility */
@media (prefers-reduced-motion: reduce) {
  * {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}