/* 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', Roboto, 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;
}

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

/* Typography - Vibrant Energetic Style */
h1, h2, h3, h4 {
  font-family: 'Montserrat', sans-serif;
  font-weight: 800;
  line-height: 1.2;
  color: #1A4D7A;
  letter-spacing: -0.02em;
}

h1 {
  font-size: 48px;
  margin-bottom: 24px;
  text-transform: uppercase;
  background: linear-gradient(135deg, #1A4D7A 0%, #2A6DB0 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

h2 {
  font-size: 36px;
  margin-bottom: 20px;
  position: relative;
  padding-bottom: 16px;
}

h2::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 80px;
  height: 5px;
  background: linear-gradient(90deg, #F0A500 0%, #FFB820 100%);
  border-radius: 3px;
}

h3 {
  font-size: 24px;
  margin-bottom: 16px;
  color: #1A4D7A;
}

h4 {
  font-size: 18px;
  margin-bottom: 12px;
  color: #2A6DB0;
}

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

/* Header - Energetic Design */
header {
  background: linear-gradient(135deg, #1A4D7A 0%, #0F3554 100%);
  padding: 20px 0;
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 4px 20px rgba(26, 77, 122, 0.3);
  border-bottom: 4px solid #F0A500;
}

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

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

.logo:hover img {
  transform: scale(1.05) rotate(-2deg);
  filter: brightness(0) invert(1) drop-shadow(0 0 10px #F0A500);
}

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

.main-nav a {
  color: #FFFFFF;
  font-weight: 600;
  font-size: 15px;
  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, #F0A500 0%, #FFB820 100%);
  transition: width 0.3s ease;
}

.main-nav a:hover {
  color: #F0A500;
  transform: translateY(-2px);
}

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

/* Buttons - High Energy Design */
.btn-primary, .btn-secondary {
  display: inline-block;
  padding: 16px 32px;
  font-weight: 700;
  font-size: 16px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  border-radius: 50px;
  transition: all 0.3s ease;
  cursor: pointer;
  border: 3px solid transparent;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
  position: relative;
  overflow: hidden;
}

.btn-primary {
  background: linear-gradient(135deg, #F0A500 0%, #FF8C00 100%);
  color: #FFFFFF;
  border-color: #F0A500;
}

.btn-primary::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, #FFB820 0%, #FFA500 100%);
  transition: left 0.4s ease;
  z-index: -1;
}

.btn-primary:hover {
  transform: translateY(-3px) scale(1.05);
  box-shadow: 0 10px 30px rgba(240, 165, 0, 0.4);
}

.btn-primary:hover::before {
  left: 0;
}

.btn-secondary {
  background: transparent;
  color: #1A4D7A;
  border-color: #1A4D7A;
}

.btn-secondary:hover {
  background: #1A4D7A;
  color: #FFFFFF;
  transform: translateY(-3px) scale(1.05);
  box-shadow: 0 10px 30px rgba(26, 77, 122, 0.3);
}

/* Mobile Menu Toggle */
.mobile-menu-toggle {
  display: none;
  background: #F0A500;
  color: #FFFFFF;
  border: none;
  padding: 12px 16px;
  font-size: 24px;
  cursor: pointer;
  border-radius: 8px;
  position: fixed;
  top: 20px;
  right: 20px;
  z-index: 1001;
  box-shadow: 0 4px 15px rgba(240, 165, 0, 0.4);
  transition: all 0.3s ease;
}

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

/* Mobile Menu */
.mobile-menu {
  position: fixed;
  top: 0;
  right: -100%;
  width: 300px;
  height: 100vh;
  background: linear-gradient(180deg, #1A4D7A 0%, #0F3554 100%);
  z-index: 1002;
  transition: right 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
  box-shadow: -5px 0 25px rgba(0, 0, 0, 0.3);
  display: flex;
  flex-direction: column;
  padding: 80px 30px 30px;
}

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

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

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

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

.mobile-nav a {
  color: #FFFFFF;
  font-weight: 700;
  font-size: 18px;
  text-transform: uppercase;
  padding: 12px 20px;
  border-left: 4px solid transparent;
  transition: all 0.3s ease;
  letter-spacing: 0.5px;
}

.mobile-nav a:hover {
  border-left-color: #F0A500;
  background: rgba(240, 165, 0, 0.1);
  transform: translateX(10px);
}

/* Hero Section - Dynamic & Energetic */
.hero {
  background: linear-gradient(135deg, #0F3554 0%, #1A4D7A 50%, #2A6DB0 100%);
  padding: 100px 20px 80px;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(240, 165, 0, 0.2) 0%, transparent 70%);
  border-radius: 50%;
  animation: pulse 4s ease-in-out infinite;
}

@keyframes pulse {
  0%, 100% { transform: scale(1); opacity: 0.5; }
  50% { transform: scale(1.2); opacity: 0.8; }
}

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

.hero h1 {
  color: #FFFFFF;
  font-size: 56px;
  margin-bottom: 24px;
  text-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
  animation: slideInDown 0.8s ease-out;
  background: linear-gradient(135deg, #FFFFFF 0%, #F0A500 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

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

.hero-subtitle {
  font-size: 20px;
  color: #E8F4F8;
  margin-bottom: 32px;
  line-height: 1.6;
  animation: fadeIn 1s ease-out 0.3s both;
}

@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

.hero-cta {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 40px;
  animation: slideInUp 1s ease-out 0.5s both;
}

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

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

.trust-indicators span {
  color: #FFFFFF;
  font-weight: 700;
  font-size: 15px;
  text-transform: uppercase;
  padding: 12px 24px;
  background: rgba(240, 165, 0, 0.2);
  border-radius: 30px;
  border: 2px solid #F0A500;
  letter-spacing: 0.5px;
  transition: all 0.3s ease;
}

.trust-indicators span:hover {
  background: #F0A500;
  transform: translateY(-5px) scale(1.05);
  box-shadow: 0 10px 25px rgba(240, 165, 0, 0.4);
}

/* Sections - Vibrant Spacing */
.section, .benefits, .services-overview, .process, .testimonials, .faq, .cta-final {
  margin-bottom: 80px;
  padding: 60px 20px;
}

.benefits {
  background: linear-gradient(135deg, #E8F4F8 0%, #FFFFFF 100%);
}

.benefits h2, .services-overview h2, .process h2, .testimonials h2, .faq h2, .cta-final h2 {
  text-align: center;
  margin-bottom: 48px;
}

.benefits h2::after {
  left: 50%;
  transform: translateX(-50%);
}

/* Cards - Dynamic Energy */
.benefits-grid, .services-grid, .projects-grid, .team-grid, .reasons-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  justify-content: space-between;
}

.benefit-card, .service-card, .project-card, .team-member, .reason-item {
  flex: 1 1 calc(50% - 16px);
  min-width: 280px;
  background: #FFFFFF;
  padding: 32px;
  border-radius: 16px;
  box-shadow: 0 8px 30px rgba(26, 77, 122, 0.1);
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  position: relative;
  overflow: hidden;
  border: 3px solid transparent;
}

.benefit-card::before, .service-card::before, .project-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 5px;
  background: linear-gradient(90deg, #F0A500 0%, #FF8C00 100%);
  transform: scaleX(0);
  transition: transform 0.4s ease;
}

.benefit-card:hover, .service-card:hover, .project-card:hover, .team-member:hover, .reason-item:hover {
  transform: translateY(-10px) scale(1.02);
  box-shadow: 0 15px 40px rgba(26, 77, 122, 0.2);
  border-color: #F0A500;
}

.benefit-card:hover::before, .service-card:hover::before, .project-card:hover::before {
  transform: scaleX(1);
}

.benefit-card h3, .service-card h3, .project-card h3 {
  color: #1A4D7A;
  margin-bottom: 16px;
  font-size: 22px;
  font-weight: 800;
}

.benefit-card p, .service-card p, .project-card p {
  color: #555555;
  line-height: 1.7;
}

.service-card .price, .project-card .price {
  color: #F0A500;
  font-weight: 800;
  font-size: 24px;
  margin-top: 20px;
  text-transform: uppercase;
}

.project-type {
  display: inline-block;
  background: linear-gradient(135deg, #1A4D7A 0%, #2A6DB0 100%);
  color: #FFFFFF;
  padding: 6px 16px;
  border-radius: 20px;
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 12px;
}

/* Process Steps */
.process-steps {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: space-between;
  margin-bottom: 40px;
}

.step {
  flex: 1 1 calc(25% - 18px);
  min-width: 200px;
  text-align: center;
  padding: 32px 24px;
  background: linear-gradient(135deg, #E8F4F8 0%, #FFFFFF 100%);
  border-radius: 16px;
  position: relative;
  transition: all 0.3s ease;
  border: 3px solid #E8F4F8;
}

.step:hover {
  border-color: #F0A500;
  transform: translateY(-8px);
  box-shadow: 0 12px 30px rgba(240, 165, 0, 0.2);
}

.step h3 {
  color: #1A4D7A;
  margin-bottom: 12px;
  font-size: 20px;
}

.process-timeline {
  text-align: center;
  font-size: 18px;
  font-weight: 700;
  color: #F0A500;
  background: rgba(240, 165, 0, 0.1);
  padding: 16px;
  border-radius: 8px;
  border-left: 5px solid #F0A500;
}

/* Testimonials - Readable Design */
.testimonials {
  background: linear-gradient(135deg, #E8F4F8 0%, #FFFFFF 100%);
}

.testimonials-grid, .references-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  justify-content: space-between;
  margin-bottom: 32px;
}

.testimonial-card, .reference-card {
  flex: 1 1 calc(50% - 16px);
  min-width: 300px;
  background: #FFFFFF;
  padding: 32px;
  border-radius: 16px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
  border-left: 5px solid #F0A500;
  transition: all 0.3s ease;
}

.testimonial-card:hover, .reference-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
}

.testimonial-card p, .reference-card p {
  color: #333333;
  font-size: 16px;
  line-height: 1.8;
  font-style: italic;
  margin-bottom: 16px;
}

.author {
  font-weight: 700;
  color: #1A4D7A;
  font-style: normal;
  font-size: 15px;
}

.rating {
  color: #F0A500;
  font-size: 18px;
  margin-top: 12px;
}

.rating-summary {
  text-align: center;
  font-size: 20px;
  font-weight: 700;
  color: #F0A500;
  background: rgba(240, 165, 0, 0.1);
  padding: 20px;
  border-radius: 12px;
  border: 2px solid #F0A500;
}

/* FAQ */
.faq-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
  max-width: 800px;
  margin: 0 auto;
}

.faq-item {
  background: #FFFFFF;
  padding: 24px;
  border-radius: 12px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
  border-left: 5px solid #1A4D7A;
  transition: all 0.3s ease;
}

.faq-item:hover {
  border-left-color: #F0A500;
  transform: translateX(8px);
  box-shadow: 0 6px 20px rgba(240, 165, 0, 0.15);
}

.faq-item h3 {
  color: #1A4D7A;
  margin-bottom: 12px;
  font-size: 18px;
}

.faq-item p {
  color: #555555;
}

/* CTA Section - High Energy */
.cta-final, .cta-section {
  background: linear-gradient(135deg, #1A4D7A 0%, #0F3554 100%);
  text-align: center;
  border-radius: 20px;
  position: relative;
  overflow: hidden;
}

.cta-final::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(240, 165, 0, 0.1) 0%, transparent 70%);
  animation: rotate 20s linear infinite;
}

@keyframes rotate {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

.cta-final h2, .cta-section h2 {
  color: #FFFFFF;
  position: relative;
  z-index: 1;
}

.cta-final h2::after, .cta-section h2::after {
  background: linear-gradient(90deg, #F0A500 0%, #FFB820 100%);
}

.cta-final p, .cta-section p {
  color: #E8F4F8;
  font-size: 18px;
  margin-bottom: 32px;
  position: relative;
  z-index: 1;
}

.benefits-list {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  justify-content: center;
  margin-bottom: 32px;
  position: relative;
  z-index: 1;
}

.benefits-list li {
  color: #FFFFFF;
  font-weight: 600;
  padding: 10px 20px;
  background: rgba(240, 165, 0, 0.3);
  border-radius: 25px;
  border: 2px solid #F0A500;
}

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

/* Footer - Energetic Brand Presence */
footer {
  background: linear-gradient(135deg, #0F3554 0%, #1A4D7A 100%);
  color: #E8F4F8;
  padding: 60px 20px 30px;
  margin-top: 80px;
  border-top: 5px solid #F0A500;
}

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

.footer-section {
  flex: 1 1 calc(25% - 30px);
  min-width: 200px;
}

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

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

.footer-section p {
  color: #E8F4F8;
  font-size: 14px;
  line-height: 1.8;
}

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

.footer-section nav a {
  color: #E8F4F8;
  font-size: 14px;
  transition: all 0.3s ease;
  padding-left: 0;
  border-left: 3px solid transparent;
  padding-left: 12px;
}

.footer-section nav a:hover {
  color: #F0A500;
  border-left-color: #F0A500;
  padding-left: 20px;
}

.footer-bottom {
  border-top: 2px solid rgba(240, 165, 0, 0.3);
  padding-top: 30px;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
}

.legal-links {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}

.legal-links a {
  color: #E8F4F8;
  font-size: 13px;
  transition: all 0.3s ease;
}

.legal-links a:hover {
  color: #F0A500;
  text-decoration: underline;
}

.copyright {
  color: #E8F4F8;
  font-size: 13px;
}

/* Internal Pages Hero */
.hero-internal {
  background: linear-gradient(135deg, #1A4D7A 0%, #2A6DB0 100%);
  padding: 80px 20px 60px;
  margin-bottom: 60px;
}

.breadcrumbs {
  color: #E8F4F8;
  font-size: 14px;
  margin-bottom: 20px;
}

.breadcrumbs a {
  color: #F0A500;
  transition: all 0.3s ease;
}

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

.hero-internal h1 {
  color: #FFFFFF;
  font-size: 48px;
  margin-bottom: 16px;
}

.hero-internal p {
  color: #E8F4F8;
  font-size: 18px;
}

.stats {
  display: flex;
  gap: 32px;
  flex-wrap: wrap;
  margin-top: 32px;
}

.stats span {
  color: #FFFFFF;
  font-weight: 700;
  font-size: 16px;
  padding: 12px 24px;
  background: rgba(240, 165, 0, 0.2);
  border-radius: 25px;
  border: 2px solid #F0A500;
}

/* Services Detailed */
.services-detailed, .projects, .team {
  margin-bottom: 60px;
}

.service-detail {
  background: #FFFFFF;
  padding: 40px;
  margin-bottom: 32px;
  border-radius: 16px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
  border-left: 5px solid #1A4D7A;
  transition: all 0.3s ease;
}

.service-detail:hover {
  border-left-color: #F0A500;
  box-shadow: 0 12px 35px rgba(0, 0, 0, 0.12);
}

.service-detail h2 {
  color: #1A4D7A;
  margin-bottom: 20px;
}

.service-detail h3 {
  color: #2A6DB0;
  margin-top: 24px;
  margin-bottom: 16px;
}

.service-detail ul {
  margin-bottom: 24px;
  padding-left: 20px;
}

.service-detail li {
  list-style: none;
  color: #555555;
  margin-bottom: 12px;
  padding-left: 32px;
  position: relative;
}

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

.service-detail .price {
  color: #F0A500;
  font-size: 28px;
  font-weight: 800;
  margin: 24px 0;
  text-transform: uppercase;
}

/* Technology Section */
.technology, .warranty, .certifications, .approach {
  background: linear-gradient(135deg, #E8F4F8 0%, #FFFFFF 100%);
  padding: 60px 20px;
  margin-bottom: 60px;
  border-radius: 20px;
}

.tech-grid, .warranty-grid, .cert-grid, .approach-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  justify-content: space-between;
}

.tech-item, .warranty-item, .cert-item, .approach-item {
  flex: 1 1 calc(50% - 16px);
  min-width: 250px;
  background: #FFFFFF;
  padding: 32px;
  border-radius: 12px;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.08);
  border-top: 4px solid #F0A500;
  transition: all 0.3s ease;
}

.tech-item:hover, .warranty-item:hover, .cert-item:hover, .approach-item:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 30px rgba(240, 165, 0, 0.15);
}

.tech-item h3, .warranty-item h3, .cert-item h3, .approach-item h3 {
  color: #1A4D7A;
  margin-bottom: 12px;
}

/* Company Story & Stats */
.company-story, .sustainability, .why-choose {
  margin-bottom: 60px;
}

.story-content {
  max-width: 800px;
  margin: 0 auto;
}

.company-stats {
  background: linear-gradient(135deg, #1A4D7A 0%, #0F3554 100%);
  padding: 60px 20px;
  margin-bottom: 60px;
  border-radius: 20px;
}

.company-stats h2 {
  color: #FFFFFF;
  text-align: center;
  margin-bottom: 48px;
}

.stats-grid, .signals-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  justify-content: space-between;
}

.stat-item, .signal-item {
  flex: 1 1 calc(25% - 24px);
  min-width: 200px;
  text-align: center;
  padding: 32px 24px;
  background: rgba(240, 165, 0, 0.2);
  border-radius: 16px;
  border: 3px solid #F0A500;
  transition: all 0.3s ease;
}

.stat-item:hover, .signal-item:hover {
  transform: scale(1.08) rotate(-2deg);
  background: rgba(240, 165, 0, 0.3);
  box-shadow: 0 10px 30px rgba(240, 165, 0, 0.3);
}

.stat-item h3 {
  color: #F0A500;
  font-size: 48px;
  margin-bottom: 12px;
  font-weight: 900;
}

.stat-item p, .signal-item p {
  color: #FFFFFF;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

/* Contact Page */
.contact-methods, .contact-info, .showroom {
  margin-bottom: 60px;
}

.methods-grid, .info-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  justify-content: space-between;
}

.method-card, .info-block {
  flex: 1 1 calc(33.333% - 22px);
  min-width: 250px;
  background: linear-gradient(135deg, #E8F4F8 0%, #FFFFFF 100%);
  padding: 32px;
  border-radius: 16px;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.08);
  border-top: 5px solid #1A4D7A;
  transition: all 0.3s ease;
}

.method-card:hover, .info-block:hover {
  transform: translateY(-8px);
  border-top-color: #F0A500;
  box-shadow: 0 12px 30px rgba(240, 165, 0, 0.15);
}

.method-card h3, .info-block h3 {
  color: #1A4D7A;
  margin-bottom: 12px;
  font-size: 22px;
}

.contact-form-section {
  background: linear-gradient(135deg, #E8F4F8 0%, #FFFFFF 100%);
  padding: 60px 20px;
  margin-bottom: 60px;
  border-radius: 20px;
}

.form-note {
  background: #FFFFFF;
  padding: 32px;
  border-radius: 12px;
  border-left: 5px solid #F0A500;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
}

.form-note h3 {
  color: #1A4D7A;
  margin-bottom: 16px;
}

.form-fields-list ul {
  padding-left: 20px;
}

.form-fields-list li {
  list-style: none;
  color: #555555;
  margin-bottom: 8px;
  padding-left: 24px;
  position: relative;
}

.form-fields-list li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: #F0A500;
  font-weight: 700;
}

/* Legal Content */
.legal-content {
  margin-bottom: 60px;
}

.content-wrapper {
  max-width: 900px;
  margin: 0 auto;
  background: #FFFFFF;
  padding: 48px;
  border-radius: 16px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
}

.content-wrapper h2 {
  color: #1A4D7A;
  margin-top: 32px;
  margin-bottom: 20px;
}

.content-wrapper h3 {
  color: #2A6DB0;
  margin-top: 24px;
  margin-bottom: 16px;
}

.content-wrapper ul {
  padding-left: 20px;
  margin-bottom: 20px;
}

.content-wrapper li {
  list-style: none;
  color: #555555;
  margin-bottom: 10px;
  padding-left: 28px;
  position: relative;
}

.content-wrapper li::before {
  content: '▸';
  position: absolute;
  left: 0;
  color: #F0A500;
  font-weight: 700;
}

/* Thank You Page */
.thank-you-section {
  padding: 100px 20px;
  text-align: center;
}

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

.success-icon {
  width: 100px;
  height: 100px;
  margin: 0 auto 32px;
  background: linear-gradient(135deg, #F0A500 0%, #FF8C00 100%);
  color: #FFFFFF;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 56px;
  font-weight: 700;
  box-shadow: 0 10px 30px rgba(240, 165, 0, 0.3);
  animation: bounceIn 0.8s ease-out;
}

@keyframes bounceIn {
  0% { transform: scale(0); opacity: 0; }
  50% { transform: scale(1.15); }
  100% { transform: scale(1); opacity: 1; }
}

.subtitle {
  font-size: 20px;
  color: #1A4D7A;
  font-weight: 700;
  margin-bottom: 24px;
}

.next-steps, .confirmation, .meanwhile, .social-proof, .back-home {
  margin-bottom: 60px;
}

.steps-grid, .actions-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: space-between;
  margin-bottom: 32px;
}

.step-item, .action-card {
  flex: 1 1 calc(25% - 18px);
  min-width: 200px;
  background: linear-gradient(135deg, #E8F4F8 0%, #FFFFFF 100%);
  padding: 24px;
  border-radius: 12px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
  border-top: 4px solid #1A4D7A;
  transition: all 0.3s ease;
}

.step-item:hover, .action-card:hover {
  transform: translateY(-8px);
  border-top-color: #F0A500;
  box-shadow: 0 10px 25px rgba(240, 165, 0, 0.15);
}

.step-item h3, .action-card h3 {
  color: #1A4D7A;
  margin-bottom: 12px;
  font-size: 18px;
}

.timeline {
  text-align: center;
  font-size: 16px;
  font-weight: 700;
  color: #F0A500;
  background: rgba(240, 165, 0, 0.1);
  padding: 16px;
  border-radius: 8px;
}

/* Case Study */
.case-study {
  background: linear-gradient(135deg, #E8F4F8 0%, #FFFFFF 100%);
  padding: 60px 20px;
  margin-bottom: 60px;
  border-radius: 20px;
}

.case-study-item {
  max-width: 800px;
  margin: 0 auto;
}

.case-study-item h3 {
  color: #1A4D7A;
  margin-bottom: 32px;
  font-size: 28px;
}

.case-study-item h4 {
  color: #2A6DB0;
  margin-top: 24px;
  margin-bottom: 12px;
  font-size: 20px;
}

.testimonial {
  background: #FFFFFF;
  padding: 24px;
  border-left: 5px solid #F0A500;
  border-radius: 8px;
  font-style: italic;
  color: #1A4D7A;
  font-weight: 600;
  margin-top: 24px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
}

/* Cookie Banner */
.cookie-consent {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(135deg, #1A4D7A 0%, #0F3554 100%);
  color: #FFFFFF;
  padding: 24px;
  box-shadow: 0 -5px 25px rgba(0, 0, 0, 0.3);
  z-index: 9999;
  transform: translateY(100%);
  transition: transform 0.5s cubic-bezier(0.68, -0.55, 0.265, 1.55);
  border-top: 4px solid #F0A500;
}

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

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

.cookie-text {
  flex: 1 1 60%;
  min-width: 300px;
}

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

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

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

.cookie-accept {
  background: linear-gradient(135deg, #F0A500 0%, #FF8C00 100%);
  color: #FFFFFF;
}

.cookie-accept:hover {
  transform: scale(1.05);
  box-shadow: 0 5px 15px rgba(240, 165, 0, 0.4);
}

.cookie-reject {
  background: transparent;
  color: #E8F4F8;
  border: 2px solid #E8F4F8;
}

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

.cookie-settings {
  background: transparent;
  color: #F0A500;
  border: 2px solid #F0A500;
}

.cookie-settings:hover {
  background: rgba(240, 165, 0, 0.1);
  transform: scale(1.05);
}

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

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

.cookie-modal-content {
  background: #FFFFFF;
  padding: 40px;
  border-radius: 20px;
  max-width: 600px;
  width: 100%;
  max-height: 90vh;
  overflow-y: auto;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
  animation: modalSlideIn 0.4s ease-out;
}

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

.cookie-modal h2 {
  color: #1A4D7A;
  margin-bottom: 24px;
}

.cookie-category {
  padding: 20px;
  background: #F5F5F5;
  border-radius: 12px;
  margin-bottom: 16px;
  border-left: 4px solid #1A4D7A;
}

.cookie-category h3 {
  color: #1A4D7A;
  margin-bottom: 12px;
  font-size: 18px;
}

.cookie-category label {
  display: flex;
  align-items: center;
  gap: 12px;
  cursor: pointer;
  font-weight: 600;
}

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

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

/* Section CTA */
.section-cta {
  text-align: center;
  margin-top: 48px;
}

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

/* Privacy Note */
.privacy-note {
  text-align: center;
  font-size: 14px;
  color: #555555;
  margin-top: 24px;
  font-style: italic;
}

/* Service Areas */
.service-areas ul {
  padding-left: 20px;
}

.service-areas li {
  list-style: none;
  color: #555555;
  margin-bottom: 12px;
  padding-left: 32px;
  position: relative;
}

.service-areas li::before {
  content: '📍';
  position: absolute;
  left: 0;
  font-size: 18px;
}

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

  .main-nav {
    display: none;
  }

  .header-cta {
    display: none;
  }

  h1 {
    font-size: 32px;
  }

  h2 {
    font-size: 28px;
  }

  h3 {
    font-size: 20px;
  }

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

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

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

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

  .benefits-grid, .services-grid, .projects-grid, .team-grid, .reasons-grid {
    flex-direction: column;
  }

  .benefit-card, .service-card, .project-card, .team-member, .reason-item {
    flex: 1 1 100%;
  }

  .process-steps {
    flex-direction: column;
  }

  .step {
    flex: 1 1 100%;
  }

  .testimonials-grid, .references-grid {
    flex-direction: column;
  }

  .testimonial-card, .reference-card {
    flex: 1 1 100%;
  }

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

  .footer-section {
    flex: 1 1 100%;
  }

  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }

  .legal-links {
    flex-direction: column;
    gap: 12px;
  }

  .stats-grid, .signals-grid {
    flex-direction: column;
  }

  .stat-item, .signal-item {
    flex: 1 1 100%;
  }

  .methods-grid, .info-grid {
    flex-direction: column;
  }

  .method-card, .info-block {
    flex: 1 1 100%;
  }

  .tech-grid, .warranty-grid, .cert-grid, .approach-grid {
    flex-direction: column;
  }

  .tech-item, .warranty-item, .cert-item, .approach-item {
    flex: 1 1 100%;
  }

  .steps-grid, .actions-grid {
    flex-direction: column;
  }

  .step-item, .action-card {
    flex: 1 1 100%;
  }

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

  .cookie-text {
    flex: 1 1 100%;
  }

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

  .cookie-btn {
    width: 100%;
  }

  .content-wrapper {
    padding: 24px;
  }

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

@media (min-width: 769px) and (max-width: 1024px) {
  .benefit-card, .service-card, .project-card {
    flex: 1 1 calc(50% - 16px);
  }

  .step {
    flex: 1 1 calc(50% - 12px);
  }

  .stat-item {
    flex: 1 1 calc(50% - 16px);
  }
}

/* Accessibility */
:focus {
  outline: 3px solid #F0A500;
  outline-offset: 2px;
}

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

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

  header {
    position: static;
    box-shadow: none;
  }

  .hero {
    padding: 40px 20px;
  }

  a {
    text-decoration: underline;
  }
}