:root {
  --rust-orange: #C2542A;
  --rust-orange-hover: #A84620;
  --sage-green: #7A9A7E;
  --sage-green-hover: #5F7A63;
  --warm-cream: #F5F0E8;
  --industrial-dark: #2C2C2C;
  --industrial-gray: #4A4A4A;
  --light-gray: #E8E4DD;
  --off-white: #FCFAF7;
  --text-dark: #1A1A1A;
  --text-light: #F5F0E8;
  --transition-smooth: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Rajdhani', 'Segoe UI', 'Roboto', sans-serif;
  background-color: var(--warm-cream);
  color: var(--text-dark);
  line-height: 1.7;
  overflow-x: hidden;
}

strong, p, h1, h2, h3, h4, h5, h6 {
  color: inherit;
}

a {
  text-decoration: none;
  color: inherit;
  transition: var(--transition-smooth);
}

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

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


h1, h2, h3, h4 {
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.2;
}

h1 {
  font-size: clamp(2.5rem, 5vw, 4rem) !important;
}

h2 {
  font-size: clamp(2rem, 4vw, 3rem) !important;
}

h3 {
  font-size: clamp(1.5rem, 3vw, 2rem) !important;
}

.section-title {
  text-align: center;
  margin-bottom: 60px;
}

.section-title h2 {
  color: var(--rust-orange);
  margin-bottom: 16px;
  position: relative;
  display: inline-block;
}

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

.section-title p {
  color: var(--industrial-gray);
  max-width: 600px;
  margin: 0 auto;
}


.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 32px;
  font-size: 1rem;
  font-weight: 600;
  border-radius: 8px;
  border: none;
  cursor: pointer;
  transition: var(--transition-smooth);
  white-space: nowrap;
  gap: 10px;
}

.btn-primary {
  background-color: var(--rust-orange);
  color: var(--text-light);
  box-shadow: 0 4px 15px rgba(194, 84, 42, 0.3);
}

.btn-primary:hover {
  background-color: var(--rust-orange-hover);
  transform: translateY(-2px);
  box-shadow: 0 6px 25px rgba(194, 84, 42, 0.4);
}

.btn-secondary {
  background-color: transparent;
  color: var(--rust-orange);
  border: 2px solid var(--rust-orange);
}

.btn-secondary:hover {
  background-color: var(--rust-orange);
  color: var(--text-light);
}

.btn-sage {
  background-color: var(--sage-green);
  color: var(--text-light);
}

.btn-sage:hover {
  background-color: var(--sage-green-hover);
  transform: translateY(-2px);
}


.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background-color: rgba(255, 255, 255, 0.98);
  backdrop-filter: blur(10px);
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.08);
  transition: var(--transition-smooth);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 24px;
  max-width: 1280px;
  margin: 0 auto;
}

.logo {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--industrial-dark);
}

.logo-icon {
  width: 48px;
  height: 48px;
  background: linear-gradient(135deg, var(--rust-orange), var(--sage-green));
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  color: white;
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 8px;
  list-style: none;
}

.nav-link {
  padding: 10px 18px;
  font-weight: 500;
  color: var(--industrial-dark);
  border-radius: 6px;
  transition: var(--transition-smooth);
}

.nav-link:hover,
.nav-link.active {
  color: var(--rust-orange);
  background-color: rgba(194, 84, 42, 0.08);
}

.mobile-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 10px;
  background: none;
  border: none;
  cursor: pointer;
}

.mobile-toggle span {
  width: 24px;
  height: 3px;
  background-color: var(--industrial-dark);
  border-radius: 2px;
  transition: var(--transition-smooth);
}


.mobile-overlay {
  position: fixed;
  inset: 0;
  background-color: rgba(0, 0, 0, 0.5);
  z-index: 999;
  opacity: 0;
  visibility: hidden;
  transition: var(--transition-smooth);
}

.mobile-overlay.active {
  opacity: 1;
  visibility: visible;
}


.hero-section {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  background: linear-gradient(135deg, var(--industrial-dark) 0%, var(--industrial-gray) 100%);
  overflow: hidden;
}

.hero-background {
  position: absolute;
  inset: 0;
  z-index: 1;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(44, 44, 44, 0.92) 0%, rgba(74, 74, 74, 0.85) 100%);
  z-index: 2;
}

.hero-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-content {
  position: relative;
  z-index: 3;
  max-width: 700px;
  padding: 120px 24px 80px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 20px;
  background-color: rgba(194, 84, 42, 0.15);
  border: 1px solid rgba(194, 84, 42, 0.3);
  border-radius: 50px;
  color: var(--rust-orange);
  font-size: 0.9rem;
  font-weight: 600;
  margin-bottom: 24px;
}

.hero-title {
  color: var(--text-light);
  margin-bottom: 24px;
}

.hero-title span {
  color: var(--rust-orange);
}

.hero-description {
  color: rgba(255, 255, 255, 0.85);
  font-size: 1.2rem;
  margin-bottom: 40px;
  line-height: 1.8;
}

.hero-buttons {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}


.page-header {
  padding: 160px 24px 80px;
  background: linear-gradient(135deg, var(--industrial-dark) 0%, var(--industrial-gray) 100%);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.page-header-content {
  position: relative;
  z-index: 2;
  max-width: 800px;
  margin: 0 auto;
}

.page-header h1 {
  color: var(--text-light);
  margin-bottom: 16px;
}

.page-header p {
  color: rgba(255, 255, 255, 0.85);
  font-size: 1.2rem;
}


.section {
  padding: 100px 0;
}

.section-alt {
  background-color: var(--off-white);
}


.info-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 32px;
}

.info-card {
  background-color: white;
  border-radius: 16px;
  padding: 40px 32px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
  transition: var(--transition-smooth);
  border: 1px solid var(--light-gray);
}

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

.info-icon {
  width: 64px;
  height: 64px;
  background: linear-gradient(135deg, var(--rust-orange), var(--rust-orange-hover));
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  margin-bottom: 24px;
}

.info-card h3 {
  color: var(--industrial-dark);
  margin-bottom: 16px;
}

.info-card p {
  color: var(--industrial-gray);
  margin-bottom: 20px;
}

.info-price {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--rust-orange);
}

.info-price span {
  font-size: 1rem;
  font-weight: 400;
  color: var(--industrial-gray);
}


.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 32px;
}

.service-card {
  background-color: white;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
  transition: var(--transition-smooth);
  border: 1px solid var(--light-gray);
}

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

.service-image {
  width: 100%;
  height: 220px;
  object-fit: cover;
}

.service-content {
  padding: 32px;
}

.service-content h3 {
  color: var(--industrial-dark);
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  gap: 12px;
}

.service-content h3 span {
  font-size: 1.5rem;
}

.service-content p {
  color: var(--industrial-gray);
  margin-bottom: 20px;
}

.service-meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 20px;
  border-top: 1px solid var(--light-gray);
}

.service-price {
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--rust-orange);
}


.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 32px;
}

.team-card {
  background-color: white;
  border-radius: 16px;
  overflow: hidden;
  text-align: center;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
  transition: var(--transition-smooth);
  border: 1px solid var(--light-gray);
}

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

.team-photo {
  width: 100%;
  height: 280px;
  object-fit: cover;
}

.team-info {
  padding: 24px;
}

.team-info h3 {
  color: var(--industrial-dark);
  margin-bottom: 4px;
}

.team-info p {
  color: var(--rust-orange);
  font-weight: 500;
  margin-bottom: 12px;
}

.team-bio {
  color: var(--industrial-gray);
  font-size: 0.95rem;
}


.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(380px, 1fr));
  gap: 32px;
}

.testimonial-card {
  background: linear-gradient(135deg, var(--industrial-dark) 0%, var(--industrial-gray) 100%);
  border-radius: 16px;
  padding: 40px;
  color: var(--text-light);
  position: relative;
}

.testimonial-quote {
  font-size: 4rem;
  color: var(--rust-orange);
  opacity: 0.3;
  position: absolute;
  top: 20px;
  left: 30px;
}

.testimonial-text {
  font-style: italic;
  margin-bottom: 24px;
  line-height: 1.8;
  position: relative;
  z-index: 1;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 16px;
}

.testimonial-avatar {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--rust-orange);
}

.testimonial-name h4 {
  color: var(--text-light);
  font-size: 1.1rem;
}

.testimonial-name p {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.9rem;
}


.features-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
}

.feature-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 24px;
  background-color: white;
  border-radius: 12px;
  border: 1px solid var(--light-gray);
  transition: var(--transition-smooth);
}

.feature-item:hover {
  border-color: var(--rust-orange);
  box-shadow: 0 4px 15px rgba(194, 84, 42, 0.1);
}

.feature-icon {
  width: 48px;
  height: 48px;
  background-color: rgba(194, 84, 42, 0.1);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  flex-shrink: 0;
}

.feature-content h4 {
  color: var(--industrial-dark);
  margin-bottom: 8px;
}

.feature-content p {
  color: var(--industrial-gray);
  font-size: 0.95rem;
}


.contact-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  min-height: 600px;
}

.contact-info {
  background: linear-gradient(135deg, var(--rust-orange), var(--rust-orange-hover));
  padding: 60px;
  color: var(--text-light);
}

.contact-info h2 {
  margin-bottom: 24px;
}

.contact-info p {
  opacity: 0.9;
  margin-bottom: 40px;
}

.contact-details {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.contact-item {
  display: flex;
  align-items: center;
  gap: 16px;
}

.contact-icon {
  width: 48px;
  height: 48px;
  background-color: rgba(255, 255, 255, 0.15);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
}

.contact-item-text h4 {
  font-size: 0.85rem;
  opacity: 0.8;
  margin-bottom: 4px;
}

.contact-item-text p {
  font-size: 1.1rem;
  margin: 0;
  opacity: 1;
}

.contact-form-container {
  background-color: var(--off-white);
  padding: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.contact-form {
  width: 100%;
  max-width: 480px;
}

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

.form-group label {
  display: block;
  margin-bottom: 8px;
  font-weight: 500;
  color: var(--industrial-dark);
}

.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 14px 18px;
  border: 2px solid var(--light-gray);
  border-radius: 8px;
  font-size: 1rem;
  font-family: inherit;
  background-color: white;
  transition: var(--transition-smooth);
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  outline: none;
  border-color: var(--rust-orange);
  box-shadow: 0 0 0 4px rgba(194, 84, 42, 0.1);
}

.form-group textarea {
  min-height: 140px;
  resize: vertical;
}

.form-submit {
  width: 100%;
  padding: 16px;
  font-size: 1.1rem;
}


.map-section {
  padding: 0;
  height: 450px;
  overflow: hidden;
}

.map-section iframe {
  width: 100%;
  height: 100%;
  border: none;
}


.footer {
  background-color: var(--industrial-dark);
  color: var(--text-light);
  padding: 80px 0 40px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 60px;
}

.footer-brand p {
  color: rgba(255, 255, 255, 0.7);
  margin-top: 20px;
  max-width: 300px;
}

.footer-title {
  font-size: 1.2rem;
  margin-bottom: 24px;
  color: var(--rust-orange);
}

.footer-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-links a {
  color: rgba(255, 255, 255, 0.7);
  transition: var(--transition-smooth);
}

.footer-links a:hover {
  color: var(--rust-orange);
  padding-left: 8px;
}

.footer-bottom {
  padding-top: 40px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
}

.footer-bottom p {
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.9rem;
}

.footer-legal {
  display: flex;
  gap: 24px;
}

.footer-legal a {
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.9rem;
}

.footer-legal a:hover {
  color: var(--rust-orange);
}


.cookie-consent-banner {
  position: fixed;
  bottom: 24px;
  right: 24px;
  max-width: 420px;
  background-color: white;
  border-radius: 16px;
  padding: 32px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
  z-index: 9999;
  display: block;
}

.cookie-content h3 {
  color: var(--industrial-dark);
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.cookie-content p {
  color: var(--industrial-gray);
  font-size: 0.95rem;
  margin-bottom: 20px;
}

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

.cookie-btn {
  flex: 1;
  min-width: 120px;
  padding: 12px 20px;
  border-radius: 8px;
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition-smooth);
  border: none;
  font-size: 0.9rem;
}

.cookie-accept {
  background-color: var(--rust-orange);
  color: white;
}

.cookie-accept:hover {
  background-color: var(--rust-orange-hover);
}

.cookie-decline {
  background-color: var(--light-gray);
  color: var(--industrial-dark);
}

.cookie-decline:hover {
  background-color: #D4D0C7;
}


.faq-container {
  max-width: 800px;
  margin: 0 auto;
}

.faq-item {
  background-color: white;
  border-radius: 12px;
  margin-bottom: 16px;
  border: 1px solid var(--light-gray);
  overflow: hidden;
}

.faq-question {
  width: 100%;
  padding: 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: none;
  border: none;
  cursor: pointer;
  text-align: left;
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--industrial-dark);
  transition: var(--transition-smooth);
}

.faq-question:hover {
  color: var(--rust-orange);
}

.faq-icon {
  width: 32px;
  height: 32px;
  background-color: rgba(194, 84, 42, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  color: var(--rust-orange);
  transition: var(--transition-smooth);
}

.faq-item.active .faq-icon {
  background-color: var(--rust-orange);
  color: white;
  transform: rotate(45deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease-out;
}

.faq-answer-content {
  padding: 0 24px 24px;
  color: var(--industrial-gray);
  line-height: 1.8;
}


.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 24px;
}

.gallery-item {
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  aspect-ratio: 4/3;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition-smooth);
}

.gallery-item:hover img {
  transform: scale(1.05);
}

.gallery-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(44, 44, 44, 0.9) 0%, transparent 60%);
  display: flex;
  align-items: flex-end;
  padding: 24px;
  opacity: 0;
  transition: var(--transition-smooth);
}

.gallery-item:hover .gallery-overlay {
  opacity: 1;
}

.gallery-overlay h4 {
  color: var(--text-light);
  font-size: 1.2rem;
}

.gallery-overlay p {
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.9rem;
}


.service-area-map {
  height: 500px;
  border-radius: 16px;
  overflow: hidden;
  margin-bottom: 48px;
}

.service-area-map iframe {
  width: 100%;
  height: 100%;
  border: none;
}

.areas-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 16px;
}

.area-tag {
  padding: 16px 24px;
  background-color: white;
  border-radius: 8px;
  text-align: center;
  border: 1px solid var(--light-gray);
  transition: var(--transition-smooth);
}

.area-tag:hover {
  border-color: var(--rust-orange);
  background-color: rgba(194, 84, 42, 0.05);
}

.area-tag h4 {
  color: var(--industrial-dark);
  margin-bottom: 4px;
}

.area-tag p {
  color: var(--industrial-gray);
  font-size: 0.9rem;
}


.thank-you-section {
  min-height: 80vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 60px 24px;
}

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

.thank-you-icon {
  width: 100px;
  height: 100px;
  background: linear-gradient(135deg, var(--sage-green), var(--sage-green-hover));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 3rem;
  margin: 0 auto 32px;
}

.thank-you-content h1 {
  color: var(--industrial-dark);
  margin-bottom: 16px;
}

.thank-you-content p {
  color: var(--industrial-gray);
  font-size: 1.2rem;
  margin-bottom: 32px;
}


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

.legal-content h2 {
  color: var(--industrial-dark);
  margin-top: 48px;
  margin-bottom: 20px;
}

.legal-content h3 {
  color: var(--industrial-dark);
  margin-top: 32px;
  margin-bottom: 16px;
}

.legal-content p {
  color: var(--industrial-gray);
  margin-bottom: 16px;
}

.legal-content ul {
  margin-left: 24px;
  margin-bottom: 24px;
}

.legal-content li {
  color: var(--industrial-gray);
  margin-bottom: 12px;
}


@media (max-width: 1024px) {
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
  
  .contact-section {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .nav-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 320px;
    height: 100vh;
    background-color: white;
    flex-direction: column;
    padding: 80px 32px 32px;
    gap: 8px;
    transition: var(--transition-smooth);
    box-shadow: -10px 0 40px rgba(0, 0, 0, 0.1);
  }
  
  .nav-menu.active {
    right: 0;
  }
  
  .mobile-toggle {
    display: flex;
  }
  
  .mobile-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
  }
  
  .mobile-toggle.active span:nth-child(2) {
    opacity: 0;
  }
  
  .mobile-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
  }
  
  .hero-buttons {
    flex-direction: column;
  }
  
  .btn {
    width: 100%;
  }
  
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  
  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }
  
  .contact-info,
  .contact-form-container {
    padding: 40px 24px;
  }
  
  .section {
    padding: 60px 0;
  }
  
  .cookie-consent-banner {
    max-width: calc(100% - 48px);
    bottom: 16px;
    right: 16px;
    left: 16px;
  }
}

@media (max-width: 480px) {
  .services-grid,
  .info-grid,
  .testimonials-grid {
    grid-template-columns: 1fr;
  }
  
  .team-grid {
    grid-template-columns: 1fr;
  }
}


.fade-in {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}


.text-rust {
  color: var(--rust-orange);
}

.text-sage {
  color: var(--sage-green);
}

.bg-rust {
  background-color: var(--rust-orange);
}

.bg-sage {
  background-color: var(--sage-green);
}

.bg-cream {
  background-color: var(--warm-cream);
}

.bg-dark {
  background-color: var(--industrial-dark);
}

.bg-light {
  background-color: var(--off-white);
}