:root {
  --primary: #2c3e50;
  --secondary: #e67e22;
  --accent: #16a085;
  --light: #ecf0f1;
  --dark: #1a252f;
  --text: #34495e;
  --white: #ffffff;
  --shadow: 0 4px 20px rgba(0,0,0,0.1);
  --transition: all 0.3s ease;
}

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

html {
  scroll-behavior: smooth;
}

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

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

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

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

/* Navigation */
.nav-wrapper {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: var(--white);
  box-shadow: var(--shadow);
}

.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 0;
}

.logo {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--primary);
}

.logo span {
  color: var(--secondary);
}

.nav-links {
  display: flex;
  list-style: none;
  gap: 30px;
}

.nav-links a {
  color: var(--primary);
  font-weight: 500;
  position: relative;
}

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

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--secondary);
  transition: var(--transition);
}

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

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

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

/* Split Screen Sections */
.split-section {
  display: flex;
  min-height: 100vh;
}

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

.split-left,
.split-right {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 60px;
}

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

.split-image::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(44,62,80,0.3), rgba(230,126,34,0.2));
}

/* Hero Section */
.hero {
  padding-top: 80px;
  background: linear-gradient(135deg, var(--primary) 0%, var(--dark) 100%);
}

.hero .split-left {
  color: var(--white);
}

.hero-title {
  font-size: 3rem;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 20px;
}

.hero-subtitle {
  font-size: 1.2rem;
  opacity: 0.9;
  margin-bottom: 30px;
}

.hero-image {
  background-image: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 800 600"><rect fill="%23f5f5f5" width="800" height="600"/><rect fill="%23e0e0e0" x="100" y="150" width="250" height="300" rx="10"/><rect fill="%23d0d0d0" x="120" y="170" width="210" height="150"/><rect fill="%23c0c0c0" x="130" y="340" width="90" height="90"/><rect fill="%23b0b0b0" x="230" y="340" width="90" height="90"/><rect fill="%23e8e8e8" x="400" y="100" width="300" height="400" rx="10"/><circle fill="%23ffd700" cx="450" cy="200" r="40"/><rect fill="%23a0a0a0" x="420" y="280" width="100" height="150"/><rect fill="%23909090" x="540" y="280" width="140" height="200"/><path fill="%2390caf9" d="M0 500 Q200 450 400 480 T800 460 L800 600 L0 600Z"/></svg>');
}

/* Buttons */
.btn {
  display: inline-block;
  padding: 14px 32px;
  border-radius: 4px;
  font-weight: 600;
  cursor: pointer;
  border: none;
  transition: var(--transition);
  font-size: 1rem;
}

.btn-primary {
  background: var(--secondary);
  color: var(--white);
}

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

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

.btn-secondary:hover {
  background: var(--white);
  color: var(--primary);
}

.btn-accent {
  background: var(--accent);
  color: var(--white);
}

.btn-accent:hover {
  background: #138d75;
}

.btn-group {
  display: flex;
  gap: 15px;
  flex-wrap: wrap;
}

/* Section Headers */
.section-header {
  text-align: center;
  margin-bottom: 50px;
  padding: 80px 20px 0;
}

.section-tag {
  display: inline-block;
  background: var(--secondary);
  color: var(--white);
  padding: 5px 15px;
  border-radius: 20px;
  font-size: 0.85rem;
  margin-bottom: 15px;
}

.section-title {
  font-size: 2.5rem;
  color: var(--primary);
  margin-bottom: 15px;
}

.section-desc {
  max-width: 600px;
  margin: 0 auto;
  color: var(--text);
}

/* Services Cards */
.services-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  padding: 40px 20px 80px;
  justify-content: center;
}

.service-card {
  flex: 1 1 350px;
  max-width: 380px;
  background: var(--white);
  border-radius: 12px;
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: var(--transition);
}

.service-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 40px rgba(0,0,0,0.15);
}

.service-image {
  height: 200px;
  background: linear-gradient(135deg, var(--primary), var(--accent));
  display: flex;
  align-items: center;
  justify-content: center;
}

.service-icon {
  width: 80px;
  height: 80px;
  fill: var(--white);
}

.service-content {
  padding: 25px;
}

.service-name {
  font-size: 1.3rem;
  color: var(--primary);
  margin-bottom: 10px;
}

.service-desc {
  font-size: 0.95rem;
  margin-bottom: 15px;
  color: var(--text);
}

.service-price {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--secondary);
  margin-bottom: 15px;
}

.service-price span {
  font-size: 0.9rem;
  font-weight: 400;
  color: var(--text);
}

/* Features Section */
.features-section {
  background: var(--light);
  padding: 80px 0;
}

.features-wrap {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  justify-content: center;
}

.feature-item {
  flex: 1 1 280px;
  max-width: 320px;
  text-align: center;
  padding: 30px;
}

.feature-icon {
  width: 70px;
  height: 70px;
  margin: 0 auto 20px;
  background: var(--secondary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.feature-icon svg {
  width: 35px;
  height: 35px;
  fill: var(--white);
}

.feature-title {
  font-size: 1.2rem;
  color: var(--primary);
  margin-bottom: 10px;
}

/* Testimonials */
.testimonials-section {
  padding: 80px 0;
  background: var(--primary);
  color: var(--white);
}

.testimonials-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  justify-content: center;
  padding: 0 20px;
}

.testimonial-card {
  flex: 1 1 320px;
  max-width: 380px;
  background: rgba(255,255,255,0.1);
  padding: 30px;
  border-radius: 12px;
  position: relative;
}

.testimonial-card::before {
  content: '"';
  font-size: 5rem;
  position: absolute;
  top: -10px;
  left: 20px;
  opacity: 0.2;
  font-family: Georgia, serif;
}

.testimonial-text {
  font-style: italic;
  margin-bottom: 20px;
  position: relative;
  z-index: 1;
}

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

.author-avatar {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: var(--secondary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 1.2rem;
}

.author-name {
  font-weight: 600;
}

.author-location {
  font-size: 0.85rem;
  opacity: 0.7;
}

/* Stats Section */
.stats-section {
  background: linear-gradient(135deg, var(--secondary), #d35400);
  padding: 60px 0;
}

.stats-wrap {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 40px;
  color: var(--white);
  text-align: center;
}

.stat-item {
  flex: 1 1 200px;
  max-width: 250px;
}

.stat-number {
  font-size: 3rem;
  font-weight: 700;
  margin-bottom: 5px;
}

.stat-label {
  font-size: 1rem;
  opacity: 0.9;
}

/* Contact Form */
.contact-section {
  padding: 80px 0;
}

.contact-form-wrap {
  display: flex;
  gap: 50px;
  flex-wrap: wrap;
  padding: 0 20px;
}

.contact-info {
  flex: 1 1 300px;
}

.contact-info h3 {
  font-size: 1.8rem;
  color: var(--primary);
  margin-bottom: 20px;
}

.contact-detail {
  display: flex;
  gap: 15px;
  margin-bottom: 20px;
  align-items: flex-start;
}

.contact-detail svg {
  width: 24px;
  height: 24px;
  fill: var(--secondary);
  flex-shrink: 0;
  margin-top: 3px;
}

.contact-form {
  flex: 1 1 400px;
  background: var(--light);
  padding: 40px;
  border-radius: 12px;
}

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

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

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 12px 15px;
  border: 2px solid #ddd;
  border-radius: 6px;
  font-size: 1rem;
  transition: var(--transition);
  font-family: inherit;
}

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

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

.form-submit {
  width: 100%;
  padding: 15px;
  background: var(--secondary);
  color: var(--white);
  border: none;
  border-radius: 6px;
  font-size: 1.1rem;
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition);
}

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

/* Footer */
.footer {
  background: var(--dark);
  color: var(--white);
  padding: 60px 0 30px;
}

.footer-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  margin-bottom: 40px;
}

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

.footer-col h4 {
  font-size: 1.2rem;
  margin-bottom: 20px;
  color: var(--secondary);
}

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

.footer-links li {
  margin-bottom: 10px;
}

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

.footer-bottom {
  text-align: center;
  padding-top: 30px;
  border-top: 1px solid rgba(255,255,255,0.1);
  font-size: 0.9rem;
  opacity: 0.7;
}

/* Sticky CTA */
.sticky-cta {
  position: fixed;
  bottom: 30px;
  right: 30px;
  z-index: 999;
  display: none;
}

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

.sticky-cta a {
  display: flex;
  align-items: center;
  gap: 10px;
  background: var(--secondary);
  color: var(--white);
  padding: 15px 25px;
  border-radius: 50px;
  box-shadow: 0 5px 20px rgba(230,126,34,0.4);
  font-weight: 600;
}

.sticky-cta a:hover {
  transform: scale(1.05);
}

/* Cookie Banner */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: var(--dark);
  color: var(--white);
  padding: 20px;
  z-index: 9999;
  display: none;
}

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

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

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

.cookie-text a {
  color: var(--secondary);
  text-decoration: underline;
}

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

.cookie-btn {
  padding: 10px 25px;
  border-radius: 4px;
  cursor: pointer;
  font-weight: 500;
  border: none;
  transition: var(--transition);
}

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

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

/* About Page */
.about-hero {
  padding: 120px 0 60px;
  background: linear-gradient(135deg, var(--primary), var(--dark));
  color: var(--white);
  text-align: center;
}

.about-hero h1 {
  font-size: 2.8rem;
  margin-bottom: 15px;
}

.about-content {
  padding: 60px 0;
}

.about-grid {
  display: flex;
  gap: 50px;
  flex-wrap: wrap;
  align-items: center;
}

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

.about-text h2 {
  font-size: 2rem;
  color: var(--primary);
  margin-bottom: 20px;
}

.about-text p {
  margin-bottom: 15px;
}

.about-image {
  flex: 1 1 400px;
  min-height: 400px;
  background: linear-gradient(135deg, var(--accent), var(--primary));
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.values-section {
  background: var(--light);
  padding: 80px 0;
}

.values-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  justify-content: center;
}

.value-card {
  flex: 1 1 280px;
  max-width: 320px;
  background: var(--white);
  padding: 30px;
  border-radius: 12px;
  text-align: center;
  box-shadow: var(--shadow);
}

.value-card h3 {
  color: var(--primary);
  margin-bottom: 10px;
}

/* Services Page */
.services-hero {
  padding: 120px 0 60px;
  background: linear-gradient(135deg, var(--secondary), #d35400);
  color: var(--white);
  text-align: center;
}

.services-hero h1 {
  font-size: 2.8rem;
  margin-bottom: 15px;
}

.services-detail {
  padding: 60px 0;
}

.service-detail-card {
  display: flex;
  gap: 40px;
  flex-wrap: wrap;
  margin-bottom: 60px;
  padding: 40px;
  background: var(--white);
  border-radius: 12px;
  box-shadow: var(--shadow);
}

.service-detail-card:nth-child(even) {
  flex-direction: row-reverse;
}

.service-detail-image {
  flex: 1 1 300px;
  min-height: 250px;
  background: linear-gradient(135deg, var(--primary), var(--accent));
  border-radius: 8px;
}

.service-detail-content {
  flex: 1 1 400px;
}

.service-detail-content h2 {
  color: var(--primary);
  margin-bottom: 15px;
}

.service-detail-content p {
  margin-bottom: 15px;
}

.service-detail-price {
  font-size: 2rem;
  font-weight: 700;
  color: var(--secondary);
  margin: 20px 0;
}

.service-features {
  list-style: none;
  margin-bottom: 20px;
}

.service-features li {
  padding: 8px 0;
  padding-left: 25px;
  position: relative;
}

.service-features li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--accent);
  font-weight: 700;
}

/* Contact Page */
.contact-hero {
  padding: 120px 0 60px;
  background: linear-gradient(135deg, var(--accent), var(--primary));
  color: var(--white);
  text-align: center;
}

.contact-hero h1 {
  font-size: 2.8rem;
  margin-bottom: 15px;
}

.contact-page-content {
  padding: 60px 0;
}

.contact-cards {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  justify-content: center;
  margin-bottom: 60px;
}

.contact-card {
  flex: 1 1 280px;
  max-width: 320px;
  background: var(--white);
  padding: 30px;
  border-radius: 12px;
  text-align: center;
  box-shadow: var(--shadow);
}

.contact-card svg {
  width: 50px;
  height: 50px;
  fill: var(--secondary);
  margin-bottom: 15px;
}

.contact-card h3 {
  color: var(--primary);
  margin-bottom: 10px;
}

/* Thanks Page */
.thanks-section {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 100px 20px;
  background: linear-gradient(135deg, var(--primary), var(--dark));
  color: var(--white);
}

.thanks-content {
  max-width: 600px;
}

.thanks-icon {
  width: 100px;
  height: 100px;
  background: var(--accent);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 30px;
}

.thanks-icon svg {
  width: 50px;
  height: 50px;
  fill: var(--white);
}

.thanks-content h1 {
  font-size: 2.5rem;
  margin-bottom: 20px;
}

.thanks-content p {
  font-size: 1.1rem;
  opacity: 0.9;
  margin-bottom: 30px;
}

/* Legal Pages */
.legal-page {
  padding: 120px 0 60px;
}

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

.legal-content h1 {
  color: var(--primary);
  margin-bottom: 30px;
  font-size: 2.5rem;
}

.legal-content h2 {
  color: var(--primary);
  margin: 30px 0 15px;
  font-size: 1.5rem;
}

.legal-content p {
  margin-bottom: 15px;
}

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

.legal-content li {
  margin-bottom: 10px;
}

/* CTA Section */
.cta-section {
  padding: 80px 0;
  background: var(--accent);
  color: var(--white);
  text-align: center;
}

.cta-section h2 {
  font-size: 2.2rem;
  margin-bottom: 15px;
}

.cta-section p {
  margin-bottom: 25px;
  font-size: 1.1rem;
  opacity: 0.9;
}

/* Process Section */
.process-section {
  padding: 80px 0;
}

.process-steps {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  justify-content: center;
}

.process-step {
  flex: 1 1 250px;
  max-width: 280px;
  text-align: center;
  position: relative;
}

.step-number {
  width: 60px;
  height: 60px;
  background: var(--secondary);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  font-weight: 700;
  margin: 0 auto 20px;
}

.process-step h3 {
  color: var(--primary);
  margin-bottom: 10px;
}

/* Mobile Responsive */
@media (max-width: 768px) {
  .nav-links {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--white);
    flex-direction: column;
    padding: 20px;
    gap: 15px;
    box-shadow: var(--shadow);
  }

  .nav-links.active {
    display: flex;
  }

  .hamburger {
    display: flex;
  }

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

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

  .split-left,
  .split-right {
    padding: 40px 20px;
  }

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

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

  .stat-number {
    font-size: 2rem;
  }

  .contact-form-wrap {
    flex-direction: column;
  }

  .sticky-cta {
    bottom: 20px;
    right: 20px;
  }

  .sticky-cta a {
    padding: 12px 20px;
    font-size: 0.9rem;
  }

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