/* ========================================
   AQUAFLOW SYSTEMS - GRADIENT MODERN STYLE
   Modern design with gradient elements
   ======================================== */

/* CSS RESET & BASE */
*, *::before, *::after {
  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', sans-serif;
  line-height: 1.6;
  color: #2c3e50;
  background: linear-gradient(135deg, #f5f7fa 0%, #e8ecf1 100%);
  overflow-x: hidden;
}

/* TYPOGRAPHY */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', -apple-system, BlinkMacSystemFont, sans-serif;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 16px;
  color: #1a252f;
}

h1 { font-size: 48px; }
h2 { font-size: 36px; }
h3 { font-size: 24px; }
h4 { font-size: 20px; }
h5 { font-size: 18px; }
h6 { font-size: 16px; }

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

a {
  color: #1565C0;
  text-decoration: none;
  transition: all 0.3s ease;
}

a:hover {
  color: #0D47A1;
  text-decoration: underline;
}

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

/* HEADER */
header {
  background: linear-gradient(135deg, #1B5E20 0%, #2E7D32 100%);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
  position: sticky;
  top: 0;
  z-index: 1000;
  padding: 16px 0;
}

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

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

.logo img {
  height: 50px;
  width: auto;
  filter: brightness(0) invert(1);
}

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

.main-nav a {
  color: #ffffff;
  font-weight: 600;
  font-size: 16px;
  padding: 8px 16px;
  border-radius: 8px;
  transition: all 0.3s ease;
  text-decoration: none;
  position: relative;
}

.main-nav a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 0;
  height: 2px;
  background: #FFA726;
  transition: all 0.3s ease;
  transform: translateX(-50%);
}

.main-nav a:hover {
  color: #FFA726;
  background: rgba(255, 255, 255, 0.1);
  text-decoration: none;
}

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

/* MOBILE MENU */
.mobile-menu-toggle {
  display: none;
  position: fixed;
  top: 20px;
  right: 20px;
  z-index: 2000;
  background: linear-gradient(135deg, #1B5E20 0%, #2E7D32 100%);
  color: #ffffff;
  border: none;
  border-radius: 12px;
  width: 50px;
  height: 50px;
  font-size: 24px;
  cursor: pointer;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
  transition: all 0.3s ease;
}

.mobile-menu-toggle:hover {
  background: linear-gradient(135deg, #2E7D32 0%, #388E3C 100%);
  transform: scale(1.05);
}

.mobile-menu {
  position: fixed;
  top: 0;
  right: -100%;
  width: 280px;
  height: 100vh;
  background: linear-gradient(135deg, #1B5E20 0%, #2E7D32 100%);
  z-index: 1999;
  padding: 80px 30px 30px;
  box-shadow: -4px 0 20px rgba(0, 0, 0, 0.3);
  transition: right 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
  overflow-y: auto;
}

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

.mobile-menu-close {
  position: absolute;
  top: 20px;
  right: 20px;
  background: rgba(255, 255, 255, 0.2);
  color: #ffffff;
  border: none;
  border-radius: 50%;
  width: 40px;
  height: 40px;
  font-size: 24px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.mobile-menu-close:hover {
  background: rgba(255, 255, 255, 0.3);
  transform: rotate(90deg);
}

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

.mobile-nav a {
  color: #ffffff;
  font-size: 18px;
  font-weight: 600;
  padding: 16px;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.1);
  transition: all 0.3s ease;
  text-decoration: none;
}

.mobile-nav a:hover {
  background: rgba(255, 255, 255, 0.2);
  transform: translateX(8px);
  text-decoration: none;
}

/* HERO SECTION */
.hero {
  background: linear-gradient(135deg, #1565C0 0%, #1976D2 50%, #42A5F5 100%);
  color: #ffffff;
  padding: 80px 20px;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1200 120"><path d="M0,0V46.29c47.79,22.2,103.59,32.17,158,28,70.36-5.37,136.33-33.31,206.8-37.5C438.64,32.43,512.34,53.67,583,72.05c69.27,18,138.3,24.88,209.4,13.08,36.15-6,69.85-17.84,104.45-29.34C989.49,25,1113-14.29,1200,52.47V0Z" opacity=".25" fill="%23ffffff"></path><path d="M0,0V15.81C13,36.92,27.64,56.86,47.69,72.05,99.41,111.27,165,111,224.58,91.58c31.15-10.15,60.09-26.07,89.67-39.8,40.92-19,84.73-46,130.83-49.67,36.26-2.85,70.9,9.42,98.6,31.56,31.77,25.39,62.32,62,103.63,73,40.44,10.79,81.35-6.69,119.13-24.28s75.16-39,116.92-43.05c59.73-5.85,113.28,22.88,168.9,38.84,30.2,8.66,59,6.17,87.09-7.5,22.43-10.89,48-26.93,60.65-49.24V0Z" opacity=".5" fill="%23ffffff"></path><path d="M0,0V5.63C149.93,59,314.09,71.32,475.83,42.57c43-7.64,84.23-20.12,127.61-26.46,59-8.63,112.48,12.24,165.56,35.4C827.93,77.22,886,95.24,951.2,90c86.53-7,172.46-45.71,248.8-84.81V0Z" fill="%23ffffff"></path></svg>') no-repeat bottom;
  background-size: cover;
  opacity: 0.1;
}

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

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

.hero-subtitle {
  font-size: 20px;
  margin-bottom: 32px;
  opacity: 0.95;
  line-height: 1.6;
}

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

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

.badge {
  background: rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(10px);
  padding: 16px 32px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 16px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

/* BUTTONS */
.btn {
  display: inline-block;
  padding: 16px 32px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 16px;
  text-decoration: none;
  transition: all 0.3s ease;
  border: none;
  cursor: pointer;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.btn-primary {
  background: linear-gradient(135deg, #FFA726 0%, #FF9800 100%);
  color: #ffffff;
}

.btn-primary:hover {
  background: linear-gradient(135deg, #FF9800 0%, #F57C00 100%);
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(255, 167, 38, 0.3);
  text-decoration: none;
}

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

.btn-secondary:hover {
  background: rgba(255, 255, 255, 0.1);
  transform: translateY(-2px);
  text-decoration: none;
}

/* SECTIONS */
.section {
  padding: 60px 20px;
  margin-bottom: 0;
}

.benefits, .services-overview, .process, .testimonials, .stats, .cta-banner,
.services-detailed, .process-detailed, .cta-section, .company-story, .values,
.stats-detailed, .sustainability, .portfolio-grid, .case-study, .project-categories,
.stats-projects, .pricing-tables, .pricing-packages, .additional-services,
.contact-methods, .contact-form-section, .office-hours, .company-info,
.legal-content, .thank-you-hero, .next-steps, .additional-links, .contact-reminder {
  padding: 60px 20px;
}

.page-hero {
  background: linear-gradient(135deg, #1565C0 0%, #1976D2 100%);
  color: #ffffff;
  padding: 60px 20px;
  text-align: center;
}

.breadcrumbs {
  margin-bottom: 24px;
  font-size: 14px;
  opacity: 0.9;
}

.breadcrumbs a {
  color: #ffffff;
  text-decoration: none;
}

.breadcrumbs a:hover {
  text-decoration: underline;
}

/* CARDS */
.benefits-grid, .services-grid, .testimonials-grid, .stats-grid,
.values-grid, .categories-grid, .packages-grid, .contact-grid,
.projects-grid, .links-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-top: 40px;
}

.benefit-card, .service-card, .testimonial-card, .stat-card,
.value-card, .category-card, .package-card, .contact-card,
.project-card, .link-card {
  flex: 1 1 calc(33.333% - 24px);
  min-width: 280px;
  background: #ffffff;
  padding: 32px;
  border-radius: 16px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
  position: relative;
  margin-bottom: 24px;
}

.benefit-card::before, .service-card::before, .value-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 4px;
  height: 100%;
  background: linear-gradient(135deg, #1B5E20 0%, #2E7D32 100%);
  border-radius: 16px 0 0 16px;
}

.benefit-card:hover, .service-card:hover, .testimonial-card:hover,
.value-card:hover, .category-card:hover, .package-card:hover,
.contact-card:hover, .project-card:hover, .link-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15);
}

.benefit-card h3, .service-card h3, .value-card h3,
.category-card h3, .package-card h3, .contact-card h3,
.project-card h3, .link-card h3 {
  color: #1B5E20;
  margin-bottom: 16px;
  font-size: 22px;
}

.price {
  color: #FFA726;
  font-size: 24px;
  font-weight: 700;
  margin-top: 16px;
}

/* TESTIMONIALS */
.testimonial-card {
  background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
  flex-direction: column;
}

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

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

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

.testimonial-author span {
  color: #6c757d;
  font-size: 14px;
}

.rating {
  color: #FFA726;
  font-size: 20px;
  margin-top: 12px;
}

.rating-summary {
  text-align: center;
  margin-top: 32px;
  font-weight: 600;
  font-size: 18px;
  color: #1B5E20;
}

/* STATS */
.stats {
  background: linear-gradient(135deg, #1B5E20 0%, #2E7D32 100%);
  color: #ffffff;
}

.stat-card {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  text-align: center;
  flex: 1 1 calc(25% - 24px);
  min-width: 200px;
}

.stat-number {
  font-size: 48px;
  font-weight: 700;
  color: #FFA726;
  margin-bottom: 8px;
}

.stat-label {
  font-size: 16px;
  opacity: 0.9;
}

/* PROCESS STEPS */
.process-steps {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-top: 40px;
  justify-content: space-between;
}

.step {
  flex: 1 1 calc(20% - 24px);
  min-width: 180px;
  text-align: center;
  padding: 24px;
  background: #ffffff;
  border-radius: 16px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
  position: relative;
  margin-bottom: 24px;
}

.step:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15);
}

.step-number {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, #1565C0 0%, #42A5F5 100%);
  color: #ffffff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  font-weight: 700;
  margin: 0 auto 20px;
}

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

.step p {
  font-size: 14px;
  color: #6c757d;
}

/* CTA BANNER */
.cta-banner, .cta-section {
  background: linear-gradient(135deg, #1B5E20 0%, #2E7D32 100%);
  color: #ffffff;
  text-align: center;
  padding: 80px 20px;
}

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

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

/* SERVICE DETAIL */
.service-detail {
  background: #ffffff;
  padding: 40px;
  border-radius: 16px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  margin-bottom: 32px;
}

.service-detail h3 {
  color: #1B5E20;
  font-size: 26px;
  margin-bottom: 16px;
}

.service-detail ul {
  list-style: none;
  margin: 24px 0;
  padding: 0;
}

.service-detail ul li {
  padding: 12px 0 12px 32px;
  position: relative;
  color: #2c3e50;
}

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

/* CONTENT WRAPPER */
.content-wrapper {
  max-width: 900px;
  margin: 0 auto;
}

/* PRICING */
.pricing-card {
  flex: 1 1 calc(33.333% - 24px);
  min-width: 300px;
  background: #ffffff;
  padding: 40px;
  border-radius: 16px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
  text-align: center;
  margin-bottom: 24px;
}

.pricing-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15);
}

.pricing-card h3 {
  color: #1B5E20;
  font-size: 24px;
  margin-bottom: 16px;
}

.pricing-card .price {
  font-size: 32px;
  color: #FFA726;
  margin: 24px 0;
}

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

.pricing-card ul li {
  padding: 12px 0 12px 32px;
  position: relative;
  color: #2c3e50;
}

.pricing-card ul li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: #2E7D32;
  font-weight: 700;
}

.package-size {
  font-size: 14px;
  color: #6c757d;
  margin-bottom: 16px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.ideal {
  font-size: 14px;
  color: #6c757d;
  font-style: italic;
  margin-top: 16px;
}

/* SERVICES LIST */
.services-list {
  background: #ffffff;
  border-radius: 16px;
  padding: 32px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.service-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 0;
  border-bottom: 1px solid #e9ecef;
  flex-wrap: wrap;
  gap: 16px;
}

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

.service-item span:first-child {
  font-weight: 600;
  color: #2c3e50;
  flex: 1;
}

.service-item .price {
  color: #FFA726;
  font-weight: 700;
  margin: 0;
}

/* CONTACT FORM */
.form-wrapper {
  max-width: 700px;
  margin: 40px auto 0;
  background: #ffffff;
  padding: 40px;
  border-radius: 16px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

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

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

.form-field input[type="text"],
.form-field input[type="email"],
.form-field select,
.form-field textarea {
  width: 100%;
  padding: 16px;
  border: 2px solid #e9ecef;
  border-radius: 12px;
  font-size: 16px;
  font-family: inherit;
  transition: all 0.3s ease;
  background: #f8f9fa;
}

.form-field input[type="text"]:focus,
.form-field input[type="email"]:focus,
.form-field select:focus,
.form-field textarea:focus {
  outline: none;
  border-color: #1565C0;
  background: #ffffff;
  box-shadow: 0 0 0 4px rgba(21, 101, 192, 0.1);
}

.form-field input[type="checkbox"] {
  margin-right: 8px;
  width: 18px;
  height: 18px;
}

.privacy-note {
  font-size: 14px;
  color: #6c757d;
  margin-top: 16px;
  font-style: italic;
}

.note {
  font-size: 14px;
  color: #6c757d;
  font-style: italic;
  margin-top: 8px;
}

/* LEGAL CONTENT */
.legal-content {
  background: #ffffff;
}

.legal-content h2 {
  color: #1B5E20;
  margin-top: 40px;
  margin-bottom: 16px;
  font-size: 28px;
}

.legal-content ul {
  margin: 16px 0 16px 32px;
  list-style: disc;
}

.legal-content li {
  margin-bottom: 8px;
  color: #2c3e50;
  line-height: 1.7;
}

.update-date, .effective-date {
  margin-top: 40px;
  padding-top: 24px;
  border-top: 2px solid #e9ecef;
  font-style: italic;
  color: #6c757d;
}

.cookies-table {
  width: 100%;
  border-collapse: collapse;
  margin: 32px 0;
  background: #ffffff;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.cookies-table th,
.cookies-table td {
  padding: 16px;
  text-align: left;
  border-bottom: 1px solid #e9ecef;
}

.cookies-table th {
  background: linear-gradient(135deg, #1B5E20 0%, #2E7D32 100%);
  color: #ffffff;
  font-weight: 600;
}

.cookies-table tr:last-child td {
  border-bottom: none;
}

/* THANK YOU PAGE */
.thank-you-hero {
  background: linear-gradient(135deg, #1B5E20 0%, #2E7D32 100%);
  color: #ffffff;
  padding: 100px 20px;
  text-align: center;
}

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

.success-icon {
  width: 100px;
  height: 100px;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 60px;
  color: #FFA726;
  margin: 0 auto 32px;
  animation: scaleIn 0.5s ease;
}

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

.thank-you-content h1 {
  color: #ffffff;
  margin-bottom: 16px;
}

.thank-you-content .lead {
  font-size: 24px;
  margin-bottom: 16px;
  font-weight: 600;
}

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

/* FOOTER */
footer {
  background: linear-gradient(135deg, #1a252f 0%, #2c3e50 100%);
  color: #ffffff;
  padding: 60px 20px 20px;
  margin-top: 60px;
}

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

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

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

.footer-section h3 {
  color: #FFA726;
  font-size: 18px;
  margin-bottom: 16px;
}

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

.footer-nav a {
  color: rgba(255, 255, 255, 0.8);
  transition: all 0.3s ease;
  text-decoration: none;
}

.footer-nav a:hover {
  color: #FFA726;
  text-decoration: none;
  padding-left: 8px;
}

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

.footer-section a {
  color: #FFA726;
}

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

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

/* COOKIE CONSENT BANNER */
.cookie-consent {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(135deg, #1a252f 0%, #2c3e50 100%);
  color: #ffffff;
  padding: 24px;
  box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.3);
  z-index: 1500;
  transform: translateY(100%);
  transition: transform 0.4s ease;
}

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

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

.cookie-consent-text {
  flex: 1 1 400px;
  font-size: 14px;
  line-height: 1.6;
}

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

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

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

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

.cookie-modal-content {
  background: #ffffff;
  max-width: 700px;
  width: 100%;
  max-height: 80vh;
  overflow-y: auto;
  border-radius: 16px;
  padding: 40px;
  position: relative;
  box-shadow: 0 10px 50px rgba(0, 0, 0, 0.5);
  animation: slideUp 0.3s ease;
}

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

.cookie-modal-close {
  position: absolute;
  top: 20px;
  right: 20px;
  background: #e9ecef;
  border: none;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  font-size: 24px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.cookie-modal-close:hover {
  background: #dee2e6;
  transform: rotate(90deg);
}

.cookie-category {
  padding: 24px;
  border: 2px solid #e9ecef;
  border-radius: 12px;
  margin-bottom: 16px;
}

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

.cookie-category h3 {
  font-size: 18px;
  margin: 0;
  color: #1B5E20;
}

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

.cookie-toggle.active {
  background: #2E7D32;
}

.cookie-toggle::after {
  content: '';
  position: absolute;
  width: 22px;
  height: 22px;
  background: #ffffff;
  border-radius: 50%;
  top: 2px;
  left: 2px;
  transition: all 0.3s ease;
}

.cookie-toggle.active::after {
  left: 26px;
}

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

/* RESPONSIVE DESIGN */
@media (max-width: 768px) {
  h1 { font-size: 36px; }
  h2 { font-size: 28px; }
  h3 { font-size: 20px; }
  
  .main-nav {
    display: none;
  }
  
  .mobile-menu-toggle {
    display: block;
  }
  
  .hero h1 {
    font-size: 36px;
  }
  
  .hero-subtitle {
    font-size: 18px;
  }
  
  .hero-cta {
    flex-direction: column;
    align-items: stretch;
  }
  
  .trust-badges {
    flex-direction: column;
    gap: 16px;
  }
  
  .benefit-card, .service-card, .testimonial-card, .stat-card,
  .value-card, .category-card, .package-card, .contact-card,
  .project-card, .pricing-card, .link-card {
    flex: 1 1 100%;
    min-width: auto;
  }
  
  .step {
    flex: 1 1 100%;
  }
  
  .footer-content {
    flex-direction: column;
    gap: 32px;
  }
  
  .cookie-consent-content {
    flex-direction: column;
    align-items: stretch;
  }
  
  .cookie-consent-buttons {
    flex-direction: column;
  }
  
  .cookie-consent-buttons .btn {
    width: 100%;
  }
  
  .form-wrapper {
    padding: 24px;
  }
  
  .service-detail {
    padding: 24px;
  }
  
  .stat-card {
    flex: 1 1 calc(50% - 24px);
  }
  
  .cookie-modal-content {
    padding: 24px;
  }
}

@media (max-width: 480px) {
  h1 { font-size: 28px; }
  h2 { font-size: 24px; }
  
  .hero h1 {
    font-size: 28px;
  }
  
  .stat-number {
    font-size: 36px;
  }
  
  .pricing-card .price {
    font-size: 24px;
  }
  
  .btn {
    padding: 14px 24px;
    font-size: 14px;
  }
  
  .stat-card {
    flex: 1 1 100%;
  }
  
  .mobile-menu {
    width: 100%;
    right: -100%;
  }
}

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

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

/* UTILITY CLASSES */
.text-center {
  text-align: center;
}

.mt-40 {
  margin-top: 40px;
}

.mb-40 {
  margin-bottom: 40px;
}

/* PRINT STYLES */
@media print {
  .mobile-menu-toggle,
  .mobile-menu,
  .cookie-consent,
  .cookie-modal {
    display: none !important;
  }
}