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

:root {
  --primary-color: #2c3e50;
  --secondary-color: #e74c3c;
  --accent-color: #3498db;
  --text-color: #333;
  --light-bg: #f8f9fa;
  --white: #ffffff;
  --gray: #6c757d;
  --dark: #1a1a1a;
  --border-color: #dee2e6;
}

body {
  font-family: 'Space Grotesk', sans-serif;
  color: var(--text-color);
  line-height: 1.6;
  font-size: 15px;
  overflow-x: hidden;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: 'Sora', sans-serif;
  font-weight: 600;
  line-height: 1.3;
  margin-bottom: 1rem;
}

h1 {
  font-size: 2.2rem;
}

h2 {
  font-size: 1.8rem;
}

h3 {
  font-size: 1.4rem;
}

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

a {
  text-decoration: none;
  color: inherit;
  transition: all 0.3s ease;
}

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

.privacy-popup {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: var(--dark);
  color: var(--white);
  padding: 20px;
  z-index: 9999;
  transform: translateY(100%);
  transition: transform 0.3s ease;
}

.privacy-popup.show {
  transform: translateY(0);
}

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

.privacy-content p {
  margin: 0;
  flex: 1;
  min-width: 250px;
  font-size: 14px;
}

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

.btn-accept,
.btn-learn {
  padding: 8px 20px;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  font-size: 14px;
  font-weight: 500;
  transition: all 0.3s ease;
}

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

.btn-accept:hover {
  background: #c0392b;
}

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

.btn-learn:hover {
  background: var(--white);
  color: var(--dark);
}

.header {
  background: var(--white);
  padding: 15px 0;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
  position: sticky;
  top: 0;
  z-index: 1000;
}

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

.logo {
  font-family: 'Sora', sans-serif;
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--primary-color);
}

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

.menu-toggle span {
  width: 25px;
  height: 3px;
  background: var(--primary-color);
  margin: 3px 0;
  transition: all 0.3s ease;
}

.nav {
  display: flex;
  gap: 30px;
}

.nav-link {
  color: var(--text-color);
  font-weight: 500;
  font-size: 14px;
  position: relative;
}

.nav-link:hover,
.nav-link.active {
  color: var(--secondary-color);
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--secondary-color);
  transition: width 0.3s ease;
}

.nav-link:hover::after,
.nav-link.active::after {
  width: 100%;
}

.hero-unique {
  position: relative;
  padding: 100px 0 80px;
  background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('data:image/svg+xml,<svg width="100" height="100" xmlns="http://www.w3.org/2000/svg"><path d="M0 0h100v100H0z" fill="none"/><path d="M50 0L100 50L50 100L0 50z" fill="%23ffffff" opacity="0.02"/></svg>');
  background-size: 100px 100px;
}

.hero-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  position: relative;
  z-index: 1;
}

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

.hero-label {
  display: inline-block;
  background: rgba(231, 76, 60, 0.2);
  color: var(--secondary-color);
  padding: 6px 16px;
  border-radius: 20px;
  font-size: 13px;
  font-weight: 600;
  margin-bottom: 20px;
}

.hero-left h1 {
  font-size: 3.5rem;
  line-height: 1.1;
  margin-bottom: 20px;
  color: var(--white);
}

.hero-accent {
  color: var(--secondary-color);
  display: block;
}

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

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

.btn-outline {
  padding: 12px 30px;
  border: 2px solid var(--white);
  color: var(--white);
  border-radius: 5px;
  font-weight: 600;
  font-size: 14px;
  transition: all 0.3s ease;
  background: transparent;
}

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

.hero-right {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.hero-card {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  padding: 25px;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: var(--white);
  transition: all 0.3s ease;
}

.hero-card:hover {
  background: rgba(255, 255, 255, 0.15);
  transform: translateX(10px);
}

.hero-card i {
  font-size: 2rem;
  color: var(--secondary-color);
  margin-bottom: 10px;
}

.hero-card h3 {
  font-size: 1.1rem;
  margin-bottom: 5px;
}

.hero-card p {
  font-size: 14px;
  opacity: 0.8;
  margin: 0;
}

.services-unique {
  padding: 80px 0;
  background: var(--white);
}

.section-header {
  margin-bottom: 50px;
}

.section-header.centered {
  text-align: center;
}

.section-label {
  display: inline-block;
  color: var(--secondary-color);
  font-weight: 600;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 10px;
}

.services-layout {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 40px;
}

.service-main {
  background: linear-gradient(135deg, var(--secondary-color) 0%, #c0392b 100%);
  color: var(--white);
  padding: 40px;
  border-radius: 12px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.service-icon-large {
  width: 80px;
  height: 80px;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}

.service-icon-large i {
  font-size: 2.5rem;
}

.service-main h3 {
  font-size: 1.8rem;
  margin-bottom: 15px;
}

.service-main p {
  margin-bottom: 25px;
  opacity: 0.95;
}

.service-link {
  color: var(--white);
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: gap 0.3s ease;
}

.service-link:hover {
  gap: 12px;
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

.service-item {
  background: var(--light-bg);
  padding: 30px;
  border-radius: 12px;
  transition: all 0.3s ease;
  border: 2px solid transparent;
}

.service-item:hover {
  border-color: var(--secondary-color);
  transform: translateY(-5px);
}

.service-item i {
  font-size: 2rem;
  color: var(--secondary-color);
  margin-bottom: 15px;
}

.service-item h4 {
  font-size: 1.1rem;
  margin-bottom: 8px;
}

.service-item p {
  font-size: 14px;
  color: var(--gray);
  margin: 0;
}

.about-unique {
  padding: 80px 0;
  background: var(--light-bg);
}

.about-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.about-image-wrap {
  position: relative;
}

.about-badge {
  position: absolute;
  top: 20px;
  right: 20px;
  background: var(--secondary-color);
  color: var(--white);
  padding: 15px 25px;
  border-radius: 8px;
  font-weight: 700;
  font-size: 1.2rem;
  z-index: 2;
  box-shadow: 0 5px 20px rgba(231, 76, 60, 0.3);
}

.about-image-wrap img {
  border-radius: 12px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

.about-content h2 {
  font-size: 2.2rem;
  margin-bottom: 20px;
}

.about-content p {
  margin-bottom: 20px;
  line-height: 1.8;
}

.about-features {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  margin-bottom: 30px;
}

.feature-item {
  display: flex;
  gap: 15px;
  align-items: flex-start;
}

.feature-item i {
  font-size: 1.5rem;
  color: var(--secondary-color);
  flex-shrink: 0;
  margin-top: 2px;
}

.feature-item h4 {
  font-size: 1rem;
  margin-bottom: 3px;
}

.feature-item p {
  font-size: 14px;
  color: var(--gray);
  margin: 0;
}

.btn-text {
  color: var(--primary-color);
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: gap 0.3s ease;
}

.btn-text:hover {
  color: var(--secondary-color);
  gap: 12px;
}

.process-unique {
  padding: 80px 0;
  background: var(--white);
}

.process-timeline {
  max-width: 800px;
  margin: 0 auto;
  position: relative;
}

.process-timeline::before {
  content: '';
  position: absolute;
  left: 30px;
  top: 0;
  bottom: 0;
  width: 2px;
  background: var(--border-color);
}

.timeline-item {
  display: flex;
  gap: 30px;
  margin-bottom: 40px;
  position: relative;
}

.timeline-item:last-child {
  margin-bottom: 0;
}

.timeline-dot {
  width: 60px;
  height: 60px;
  background: var(--secondary-color);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 1.2rem;
  flex-shrink: 0;
  position: relative;
  z-index: 1;
}

.timeline-content {
  padding-top: 8px;
}

.timeline-content h3 {
  font-size: 1.3rem;
  margin-bottom: 8px;
}

.timeline-content p {
  color: var(--gray);
  margin: 0;
}

.cta-unique {
  position: relative;
  padding: 80px 0;
  background: var(--primary-color);
  overflow: hidden;
}

.cta-pattern {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('data:image/svg+xml,<svg width="60" height="60" xmlns="http://www.w3.org/2000/svg"><circle cx="30" cy="30" r="2" fill="%23ffffff" opacity="0.1"/></svg>');
  background-size: 60px 60px;
}

.cta-box {
  max-width: 700px;
  margin: 0 auto;
  text-align: center;
  position: relative;
  z-index: 1;
}

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

.cta-icon i {
  font-size: 2.5rem;
  color: var(--white);
}

.cta-box h2 {
  color: var(--white);
  font-size: 2.2rem;
  margin-bottom: 15px;
}

.cta-box p {
  color: var(--white);
  opacity: 0.9;
  font-size: 1.1rem;
  margin-bottom: 30px;
}

.btn-cta {
  display: inline-block;
  padding: 15px 40px;
  background: var(--secondary-color);
  color: var(--white);
  border-radius: 5px;
  font-weight: 600;
  font-size: 15px;
  transition: all 0.3s ease;
}

.btn-cta:hover {
  background: #c0392b;
  transform: translateY(-3px);
  box-shadow: 0 10px 30px rgba(231, 76, 60, 0.4);
}

@media (max-width: 768px) {
  .hero-split {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .hero-left h1 {
    font-size: 2.5rem;
  }

  .services-layout {
    grid-template-columns: 1fr;
  }

  .service-grid {
    grid-template-columns: 1fr;
  }

  .about-layout {
    grid-template-columns: 1fr;
  }

  .about-stats {
    grid-template-columns: 1fr;
  }

  .about-features {
    grid-template-columns: 1fr;
  }

  .process-timeline::before {
    left: 20px;
  }

  .timeline-dot {
    width: 40px;
    height: 40px;
    font-size: 1rem;
  }

  .hero-unique {
    padding: 60px 0 50px;
  }
}

.btn-primary,
.btn-secondary {
  display: inline-block;
  padding: 12px 30px;
  border-radius: 5px;
  font-weight: 600;
  font-size: 14px;
  transition: all 0.3s ease;
  border: none;
  cursor: pointer;
}

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

.btn-primary:hover {
  background: #c0392b;
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(231, 76, 60, 0.3);
}

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

.btn-secondary:hover {
  background: var(--light-bg);
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

section {
  padding: 60px 0;
}

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

.services h2,
.about h2,
.process h2,
.info h2 {
  text-align: center;
  margin-bottom: 40px;
  color: var(--primary-color);
}

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

.service-card {
  background: var(--white);
  padding: 30px;
  border-radius: 8px;
  text-align: center;
  transition: all 0.3s ease;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.service-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.service-card i {
  font-size: 2.5rem;
  color: var(--secondary-color);
  margin-bottom: 15px;
}

.service-card h3 {
  font-size: 1.2rem;
  margin-bottom: 10px;
}

.service-card p {
  font-size: 14px;
  color: var(--gray);
}

.about-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: center;
}

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

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

.features-list li {
  padding: 8px 0;
  display: flex;
  align-items: center;
  gap: 10px;
}

.features-list i {
  color: var(--secondary-color);
}

.about-image img {
  border-radius: 8px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

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

.process-steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
}

.step {
  text-align: center;
}

.step-number {
  width: 60px;
  height: 60px;
  background: var(--secondary-color);
  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;
}

.step h3 {
  margin-bottom: 10px;
}

.step p {
  font-size: 14px;
  color: var(--gray);
}

.cta {
  background: var(--primary-color);
  color: var(--white);
  text-align: center;
}

.cta-content h2 {
  color: var(--white);
  margin-bottom: 15px;
}

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

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

.info-card {
  text-align: center;
}

.info-card i {
  font-size: 2.5rem;
  color: var(--secondary-color);
  margin-bottom: 15px;
}

.info-card h3 {
  margin-bottom: 10px;
}

.info-card p {
  font-size: 14px;
  color: var(--gray);
}

.page-hero-unique {
  position: relative;
  padding: 80px 0;
  background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
  overflow: hidden;
}

.page-hero-content {
  text-align: center;
  color: var(--white);
  position: relative;
  z-index: 1;
}

.page-hero-content h1 {
  font-size: 3rem;
  margin-bottom: 15px;
  color: var(--white);
}

.page-hero-content p {
  font-size: 1.2rem;
  opacity: 0.9;
}

.portfolio {
  padding: 80px 0;
}

.testimonials-unique {
  padding: 80px 0;
  background: var(--light-bg);
}

.testimonial-quote {
  font-size: 4rem;
  color: var(--secondary-color);
  opacity: 0.3;
  line-height: 1;
  margin-bottom: 10px;
}

.pricing-unique {
  padding: 80px 0;
}

.services-pricing-unique {
  padding: 80px 0;
  background: var(--light-bg);
}

.pricing-info-unique {
  padding: 80px 0;
}

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

.contact-info-box {
  background: var(--white);
  padding: 40px;
  border-radius: 12px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
}

.contact-info-box .section-header {
  margin-bottom: 20px;
}

.contact-info-box > p {
  margin-bottom: 30px;
  color: var(--gray);
}

.contact-form-box {
  background: var(--white);
  padding: 40px;
  border-radius: 12px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
}

.contact-form-box .section-header {
  margin-bottom: 25px;
}

.map-section-unique {
  padding: 80px 0;
}

.map-section-unique .section-header {
  margin-bottom: 40px;
}

.portfolio-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
}

.portfolio-item {
  background: var(--white);
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
}

.portfolio-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.portfolio-image {
  overflow: hidden;
}

.portfolio-image img {
  width: 100%;
  transition: transform 0.3s ease;
}

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

.portfolio-info {
  padding: 20px;
}

.portfolio-info h3 {
  margin-bottom: 10px;
}

.portfolio-info p {
  font-size: 14px;
  color: var(--gray);
  margin-bottom: 10px;
}

.project-date {
  font-size: 13px;
  color: var(--secondary-color);
  font-weight: 500;
}

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

.testimonials-unique h2 {
  text-align: center;
  margin-bottom: 40px;
  color: var(--primary-color);
}

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

.testimonial-card {
  background: var(--white);
  padding: 25px;
  border-radius: 8px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.testimonial-card p {
  font-size: 14px;
  font-style: italic;
  margin-bottom: 15px;
  color: var(--gray);
}

.testimonial-author {
  display: flex;
  flex-direction: column;
}

.testimonial-author strong {
  color: var(--primary-color);
}

.testimonial-author span {
  font-size: 13px;
  color: var(--gray);
}

.pricing-unique h2 {
  text-align: center;
  margin-bottom: 40px;
  color: var(--primary-color);
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 25px;
  margin-bottom: 40px;
}

.pricing-card {
  background: var(--white);
  border-radius: 8px;
  padding: 30px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
  position: relative;
}

.pricing-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.pricing-card.featured {
  border: 2px solid var(--secondary-color);
}

.pricing-badge {
  position: absolute;
  top: -15px;
  right: 20px;
  background: var(--secondary-color);
  color: var(--white);
  padding: 5px 15px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 600;
}

.pricing-header {
  text-align: center;
  margin-bottom: 25px;
  padding-bottom: 20px;
  border-bottom: 2px solid var(--light-bg);
}

.pricing-header h3 {
  margin-bottom: 15px;
}

.price {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--secondary-color);
}

.pricing-features {
  list-style: none;
  margin-bottom: 25px;
}

.pricing-features li {
  padding: 10px 0;
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
}

.pricing-features i {
  color: var(--secondary-color);
}

.btn-pricing {
  display: block;
  width: 100%;
  padding: 12px;
  background: var(--primary-color);
  color: var(--white);
  text-align: center;
  border-radius: 5px;
  font-weight: 600;
  transition: all 0.3s ease;
}

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

.services-pricing-unique h2 {
  text-align: center;
  margin-bottom: 40px;
  color: var(--primary-color);
}

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

.pricing-category {
  background: var(--white);
  padding: 25px;
  border-radius: 8px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.pricing-category h3 {
  margin-bottom: 20px;
  color: var(--primary-color);
  padding-bottom: 15px;
  border-bottom: 2px solid var(--light-bg);
}

.pricing-row {
  display: flex;
  justify-content: space-between;
  padding: 12px 0;
  border-bottom: 1px solid var(--border-color);
  font-size: 14px;
}

.pricing-row:last-child {
  border-bottom: none;
}

.pricing-row span:last-child {
  font-weight: 600;
  color: var(--secondary-color);
}

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

.pricing-info-unique h2 {
  text-align: center;
  margin-bottom: 40px;
  color: var(--primary-color);
}

.info-item {
  text-align: center;
}

.info-item i {
  font-size: 2.5rem;
  color: var(--secondary-color);
  margin-bottom: 15px;
}

.info-item h3 {
  margin-bottom: 10px;
}

.info-item p {
  font-size: 14px;
  color: var(--gray);
}

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

.contact-section-unique .contact-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
}

.contact-info h2 {
  margin-bottom: 20px;
  color: var(--primary-color);
}

.contact-info > p {
  margin-bottom: 30px;
  color: var(--gray);
}

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

.contact-section-unique .contact-item {
  display: flex;
  gap: 15px;
}

.contact-section-unique .contact-item i {
  font-size: 1.5rem;
  color: var(--secondary-color);
  margin-top: 5px;
}

.contact-section-unique .contact-item strong {
  display: block;
  margin-bottom: 5px;
  color: var(--primary-color);
}

.contact-section-unique .contact-item p {
  font-size: 14px;
  color: var(--gray);
}

.contact-form-wrapper {
  background: var(--white);
  padding: 35px;
  border-radius: 8px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.contact-form-wrapper h2 {
  margin-bottom: 25px;
  color: var(--primary-color);
}

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

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

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 12px;
  border: 1px solid var(--border-color);
  border-radius: 5px;
  font-family: 'Space Grotesk', sans-serif;
  font-size: 14px;
  transition: border-color 0.3s ease;
}

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

.form-group textarea {
  resize: vertical;
}

.checkbox-group {
  display: flex;
  align-items: flex-start;
}

.checkbox-label {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  cursor: pointer;
  font-size: 14px;
}

.checkbox-label input[type='checkbox'] {
  width: auto;
  margin-top: 3px;
  cursor: pointer;
}

.btn-submit {
  width: 100%;
  padding: 12px;
  background: var(--secondary-color);
  color: var(--white);
  border: none;
  border-radius: 5px;
  font-weight: 600;
  font-size: 14px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.btn-submit:hover {
  background: #c0392b;
}

.map-section-unique h2 {
  text-align: center;
  margin-bottom: 30px;
  color: var(--primary-color);
}

.map-wrapper {
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.contact-cta {
  background: var(--primary-color);
  color: var(--white);
  text-align: center;
}

.contact-cta .cta-content h2 {
  color: var(--white);
}

.thankyou-section,
.error-section {
  min-height: calc(100vh - 100px);
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.thankyou-content,
.error-content {
  max-width: 600px;
}

.thankyou-content i {
  font-size: 4rem;
  color: var(--secondary-color);
  margin-bottom: 20px;
}

.thankyou-content h1,
.error-content h1 {
  margin-bottom: 20px;
  color: var(--primary-color);
}

.thankyou-content p,
.error-content p {
  margin-bottom: 15px;
  color: var(--gray);
}

.thankyou-info {
  background: var(--light-bg);
  padding: 20px;
  border-radius: 8px;
  margin: 25px 0;
}

.thankyou-actions,
.error-actions {
  display: flex;
  gap: 15px;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 30px;
}

.error-content h1 {
  font-size: 5rem;
  color: var(--secondary-color);
}

.error-content h2 {
  margin-bottom: 15px;
}

.policy-section {
  padding: 60px 0;
}

.policy-section h1 {
  color: var(--primary-color);
  margin-bottom: 10px;
}

.policy-date {
  color: var(--gray);
  font-size: 14px;
  margin-bottom: 30px;
}

.policy-content {
  max-width: 900px;
}

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

.policy-content h3 {
  color: var(--primary-color);
  margin-top: 20px;
  margin-bottom: 10px;
  font-size: 1.2rem;
}

.policy-content p {
  margin-bottom: 15px;
  line-height: 1.8;
}

.policy-content ul {
  margin: 15px 0 15px 25px;
}

.policy-content li {
  margin-bottom: 8px;
  line-height: 1.8;
}

.footer {
  background: var(--dark);
  color: var(--white);
  padding: 25px 0;
}

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

.footer-info p {
  margin: 0;
  font-size: 14px;
}

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

.footer-links a {
  font-size: 13px;
  color: var(--white);
  transition: color 0.3s ease;
}

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

@media (max-width: 768px) {
  .menu-toggle {
    display: flex;
  }

  .nav {
    position: fixed;
    top: 70px;
    left: -100%;
    width: 100%;
    height: calc(100vh - 70px);
    background: var(--white);
    flex-direction: column;
    padding: 30px;
    gap: 20px;
    transition: left 0.3s ease;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
  }

  .nav.active {
    left: 0;
  }

  .hero-content h1 {
    font-size: 1.8rem;
  }

  .hero-content p {
    font-size: 1rem;
  }

  .page-hero-content h1 {
    font-size: 2rem;
  }

  h1 {
    font-size: 1.8rem;
  }

  h2 {
    font-size: 1.5rem;
  }

  h3 {
    font-size: 1.2rem;
  }

  .about-content,
  .contact-section-unique .contact-wrapper {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .services-grid,
  .process-steps,
  .info-grid,
  .pricing-grid,
  .pricing-table,
  .testimonials-grid {
    grid-template-columns: 1fr;
  }

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

  .footer-links {
    justify-content: center;
  }

  section {
    padding: 40px 0;
  }

  .hero {
    padding: 50px 0;
  }

  .page-hero {
    padding: 40px 0;
  }
}

@media (max-width: 480px) {
  .container {
    padding: 0 15px;
  }

  .hero-content h1 {
    font-size: 1.5rem;
  }

  .btn-primary,
  .btn-secondary {
    padding: 10px 20px;
    font-size: 13px;
  }

  .service-card,
  .pricing-card,
  .testimonial-card {
    padding: 20px;
  }

  .contact-form-wrapper {
    padding: 25px;
  }

  .thankyou-actions,
  .error-actions {
    flex-direction: column;
  }

  .thankyou-actions a,
  .error-actions a {
    width: 100%;
  }
}

@media (max-width: 360px) {
  .container {
    padding: 0 10px;
  }

  .logo {
    font-size: 1.1rem;
  }

  .hero-left h1 {
    font-size: 2rem;
  }

  .hero-left p {
    font-size: 0.95rem;
  }

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

  .btn-primary,
  .btn-secondary,
  .btn-outline {
    width: 100%;
    text-align: center;
    padding: 10px 15px;
    font-size: 13px;
  }

  .hero-card {
    padding: 20px;
  }

  .page-hero-content h1 {
    font-size: 1.8rem;
  }

  .page-hero-content p {
    font-size: 1rem;
  }

  .service-main {
    padding: 25px;
  }

  .service-main h3 {
    font-size: 1.4rem;
  }

  .service-item {
    padding: 20px;
  }

  .about-badge {
    font-size: 1rem;
    padding: 10px 15px;
  }

  .about-content h2 {
    font-size: 1.6rem;
  }

  .timeline-item {
    gap: 15px;
  }

  .timeline-dot {
    width: 50px;
    height: 50px;
    font-size: 1rem;
  }

  .process-timeline::before {
    left: 25px;
  }

  .cta-box h2 {
    font-size: 1.6rem;
  }

  .cta-box p {
    font-size: 0.95rem;
  }

  .btn-cta {
    padding: 12px 25px;
    font-size: 14px;
  }

  .portfolio-grid {
    grid-template-columns: 1fr;
  }

  .testimonials-grid {
    grid-template-columns: 1fr;
  }

  .testimonial-card {
    padding: 20px;
  }

  .pricing-grid,
  .pricing-table {
    grid-template-columns: 1fr;
  }

  .pricing-card,
  .pricing-category {
    padding: 20px;
  }

  .price {
    font-size: 2rem;
  }

  .contact-info-box,
  .contact-form-box {
    padding: 25px;
  }

  .privacy-content {
    flex-direction: column;
    gap: 15px;
  }

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

  .btn-accept,
  .btn-learn {
    width: 100%;
    text-align: center;
  }

  .footer-links {
    flex-direction: column;
    gap: 10px;
    align-items: center;
  }

  h1 {
    font-size: 1.6rem;
  }

  h2 {
    font-size: 1.4rem;
  }

  h3 {
    font-size: 1.1rem;
  }

  .section-header {
    margin-bottom: 30px;
  }

  .hero-unique,
  .page-hero-unique {
    padding: 50px 0 40px;
  }

  section {
    padding: 40px 0;
  }
}
