:root {
  --primary: #2c3e50;
  --secondary: #e67e22;
  --accent: #3498db;
  --light: #ecf0f1;
  --dark: #34495e;
  --text: #2c3e50;
  --bg: #ffffff;
  --grey: #95a5a6;
}

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

body {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  line-height: 1.6;
  color: var(--text);
  background: var(--bg);
}

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

.container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 20px;
}

.split-nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.5rem 2rem;
  background: var(--primary);
  position: sticky;
  top: 0;
  z-index: 1000;
}

.logo {
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--bg);
  text-decoration: none;
}

.nav-links {
  display: flex;
  list-style: none;
  gap: 2.5rem;
}

.nav-links a {
  color: var(--light);
  text-decoration: none;
  font-weight: 500;
  transition: color 0.3s;
}

.nav-links a:hover {
  color: var(--secondary);
}

.hamburger {
  display: none;
  flex-direction: column;
  cursor: pointer;
  gap: 5px;
}

.hamburger span {
  width: 25px;
  height: 3px;
  background: var(--bg);
  transition: 0.3s;
}

.split-hero {
  display: flex;
  min-height: 85vh;
  align-items: stretch;
}

.hero-left {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 4rem 3rem;
  background: linear-gradient(135deg, var(--primary) 0%, var(--dark) 100%);
  color: var(--bg);
}

.hero-right {
  flex: 1;
  background-size: cover;
  background-position: center;
  position: relative;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.15);
}

.hero-title {
  font-size: 3.5rem;
  font-weight: 800;
  line-height: 1.1;
  margin-bottom: 1.5rem;
}

.hero-subtitle {
  font-size: 1.3rem;
  margin-bottom: 2.5rem;
  opacity: 0.9;
  max-width: 550px;
}

.cta-primary {
  display: inline-block;
  padding: 1rem 2.5rem;
  background: var(--secondary);
  color: var(--bg);
  text-decoration: none;
  font-weight: 600;
  border-radius: 4px;
  transition: all 0.3s;
  border: none;
  cursor: pointer;
  font-size: 1.1rem;
}

.cta-primary:hover {
  background: #d35400;
  transform: translateY(-2px);
}

.cta-secondary {
  display: inline-block;
  padding: 1rem 2.5rem;
  background: transparent;
  color: var(--primary);
  text-decoration: none;
  font-weight: 600;
  border: 2px solid var(--primary);
  border-radius: 4px;
  transition: all 0.3s;
  cursor: pointer;
  font-size: 1.1rem;
}

.cta-secondary:hover {
  background: var(--primary);
  color: var(--bg);
}

.split-section {
  display: flex;
  min-height: 600px;
  align-items: stretch;
}

.split-section.reverse {
  flex-direction: row-reverse;
}

.split-content {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 4rem 3rem;
}

.split-image {
  flex: 1;
  background-size: cover;
  background-position: center;
  position: relative;
}

.section-tag {
  color: var(--secondary);
  font-weight: 600;
  font-size: 0.95rem;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 1rem;
}

.section-title {
  font-size: 2.8rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  color: var(--primary);
  line-height: 1.2;
}

.section-text {
  font-size: 1.1rem;
  line-height: 1.8;
  color: var(--dark);
  margin-bottom: 1.5rem;
}

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

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

.services-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  padding: 4rem 0;
}

.service-card {
  flex: 1;
  min-width: 300px;
  background: var(--bg);
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s;
  display: flex;
  flex-direction: column;
}

.service-card:hover {
  transform: translateY(-5px);
}

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

.service-body {
  padding: 2rem;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.service-title {
  font-size: 1.6rem;
  font-weight: 700;
  margin-bottom: 1rem;
  color: var(--primary);
}

.service-description {
  font-size: 1rem;
  line-height: 1.7;
  color: var(--dark);
  margin-bottom: 1.5rem;
  flex: 1;
}

.service-price {
  font-size: 2rem;
  font-weight: 800;
  color: var(--secondary);
  margin-bottom: 1rem;
}

.service-cta {
  padding: 0.8rem 1.5rem;
  background: var(--accent);
  color: var(--bg);
  text-decoration: none;
  text-align: center;
  border-radius: 4px;
  font-weight: 600;
  transition: background 0.3s;
  border: none;
  cursor: pointer;
  font-size: 1rem;
}

.service-cta:hover {
  background: #2980b9;
}

.form-section {
  padding: 5rem 0;
  background: linear-gradient(135deg, var(--light) 0%, #dfe6e9 100%);
}

.form-container {
  max-width: 800px;
  margin: 0 auto;
  background: var(--bg);
  padding: 3rem;
  border-radius: 8px;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
}

.form-title {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 2rem;
  color: var(--primary);
  text-align: center;
}

.form-group {
  margin-bottom: 1.8rem;
}

.form-label {
  display: block;
  margin-bottom: 0.5rem;
  font-weight: 600;
  color: var(--dark);
  font-size: 1rem;
}

.form-input,
.form-select,
.form-textarea {
  width: 100%;
  padding: 0.9rem;
  border: 2px solid #ddd;
  border-radius: 4px;
  font-size: 1rem;
  font-family: inherit;
  transition: border-color 0.3s;
}

.form-input:focus,
.form-select:focus,
.form-textarea:focus {
  outline: none;
  border-color: var(--accent);
}

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

.form-submit {
  width: 100%;
  padding: 1.2rem;
  background: var(--secondary);
  color: var(--bg);
  border: none;
  border-radius: 4px;
  font-size: 1.1rem;
  font-weight: 700;
  cursor: pointer;
  transition: background 0.3s;
}

.form-submit:hover {
  background: #d35400;
}

.footer {
  background: var(--primary);
  color: var(--light);
  padding: 3rem 0 1.5rem;
}

.footer-content {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 3rem;
  margin-bottom: 2rem;
}

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

.footer-title {
  font-size: 1.3rem;
  font-weight: 700;
  margin-bottom: 1.2rem;
  color: var(--bg);
}

.footer-links {
  list-style: none;
}

.footer-links li {
  margin-bottom: 0.8rem;
}

.footer-links a {
  color: var(--light);
  text-decoration: none;
  transition: color 0.3s;
}

.footer-links a:hover {
  color: var(--secondary);
}

.footer-bottom {
  text-align: center;
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  color: var(--grey);
}

.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: var(--primary);
  color: var(--light);
  padding: 1.5rem;
  display: none;
  z-index: 2000;
  box-shadow: 0 -2px 20px rgba(0, 0, 0, 0.2);
}

.cookie-banner.active {
  display: block;
}

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

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

.cookie-actions {
  display: flex;
  gap: 1rem;
}

.cookie-btn {
  padding: 0.8rem 1.8rem;
  border: none;
  border-radius: 4px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s;
  font-size: 0.95rem;
}

.cookie-accept {
  background: var(--secondary);
  color: var(--bg);
}

.cookie-accept:hover {
  background: #d35400;
}

.cookie-reject {
  background: transparent;
  color: var(--light);
  border: 2px solid var(--light);
}

.cookie-reject:hover {
  background: var(--light);
  color: var(--primary);
}

.sticky-cta {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  padding: 1rem 2rem;
  background: var(--secondary);
  color: var(--bg);
  text-decoration: none;
  font-weight: 700;
  border-radius: 50px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
  transition: all 0.3s;
  z-index: 999;
  display: none;
}

.sticky-cta.visible {
  display: block;
}

.sticky-cta:hover {
  background: #d35400;
  transform: scale(1.05);
}

.page-header {
  padding: 5rem 0 3rem;
  background: linear-gradient(135deg, var(--primary) 0%, var(--dark) 100%);
  color: var(--bg);
  text-align: center;
}

.page-title {
  font-size: 3rem;
  font-weight: 800;
  margin-bottom: 1rem;
}

.page-subtitle {
  font-size: 1.2rem;
  opacity: 0.9;
}

.content-section {
  padding: 4rem 0;
}

.content-wrapper {
  max-width: 900px;
  margin: 0 auto;
}

.content-block {
  margin-bottom: 2.5rem;
}

.content-heading {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 1rem;
  color: var(--primary);
}

.content-subheading {
  font-size: 1.5rem;
  font-weight: 600;
  margin: 2rem 0 1rem;
  color: var(--dark);
}

.content-text {
  font-size: 1.05rem;
  line-height: 1.8;
  color: var(--text);
  margin-bottom: 1rem;
}

.contact-info {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  padding: 3rem 0;
}

.contact-card {
  background: var(--light);
  padding: 2rem;
  border-radius: 8px;
  border-left: 4px solid var(--secondary);
}

.contact-label {
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 0.5rem;
  font-size: 1.1rem;
}

.contact-value {
  font-size: 1.1rem;
  color: var(--dark);
}

.thanks-container {
  min-height: 70vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 4rem 2rem;
}

.thanks-box {
  max-width: 600px;
  text-align: center;
  background: var(--light);
  padding: 4rem 3rem;
  border-radius: 8px;
}

.thanks-icon {
  font-size: 5rem;
  color: var(--secondary);
  margin-bottom: 2rem;
}

.thanks-title {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  color: var(--primary);
}

.thanks-text {
  font-size: 1.2rem;
  line-height: 1.8;
  color: var(--dark);
  margin-bottom: 2rem;
}

@media (max-width: 968px) {
  .nav-links {
    position: fixed;
    left: -100%;
    top: 70px;
    flex-direction: column;
    background: var(--primary);
    width: 100%;
    text-align: center;
    transition: 0.3s;
    padding: 2rem;
    gap: 1.5rem;
  }

  .nav-links.active {
    left: 0;
  }

  .hamburger {
    display: flex;
  }

  .split-hero,
  .split-section {
    flex-direction: column;
  }

  .split-section.reverse {
    flex-direction: column;
  }

  .hero-left,
  .split-content {
    padding: 3rem 2rem;
  }

  .hero-right,
  .split-image {
    min-height: 350px;
  }

  .hero-title {
    font-size: 2.5rem;
  }

  .section-title {
    font-size: 2rem;
  }

  .services-grid {
    flex-direction: column;
  }

  .service-card {
    min-width: 100%;
  }

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

  .cookie-content {
    flex-direction: column;
    text-align: center;
  }

  .sticky-cta {
    bottom: 1rem;
    right: 1rem;
    font-size: 0.9rem;
    padding: 0.8rem 1.5rem;
  }
}

@media (max-width: 640px) {
  .hero-title {
    font-size: 2rem;
  }

  .page-title {
    font-size: 2rem;
  }

  .form-container {
    padding: 2rem 1.5rem;
  }
}
