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

:root {
  --primary: #6366f1;
  --secondary: #a855f7;
  --accent: #ec4899;
  --teal: #14b8a6;
  --orange: #f97316;
  --yellow: #fbbf24;
  --bg: #fafafa;
  --card: #ffffff;
  --text: #1e293b;
  --text-light: #64748b;
}

body {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 15px;
  line-height: 1.6;
  color: var(--text);
  background: var(--bg);
  min-height: 100vh;
}

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

header {
  padding: 20px 0;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(255, 255, 255, 0.8);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(99, 102, 241, 0.1);
  animation: slideDown 0.5s ease;
}

@keyframes slideDown {
  from {
    transform: translateY(-100%);
  }
  to {
    transform: translateY(0);
  }
}

.header-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.logo {
  font-family: 'Syne', sans-serif;
  font-size: 24px;
  font-weight: 700;
  background: linear-gradient(
    135deg,
    var(--primary),
    var(--secondary),
    var(--accent)
  );
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: gradientShift 3s ease infinite;
  background-size: 200% 200%;
}

@keyframes gradientShift {
  0%,
  100% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
}

.main-nav {
  display: flex;
  gap: 25px;
}

.main-nav a {
  color: var(--text);
  text-decoration: none;
  font-size: 14px;
  font-weight: 500;
  transition: all 0.3s;
  position: relative;
}

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

.main-nav a::after {
  content: '';
  position: absolute;
  bottom: -5px;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--primary), var(--secondary));
  transition: width 0.3s;
}

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

.menu-toggle {
  display: none;
  background: none;
  border: none;
  font-size: 22px;
  color: var(--text);
  cursor: pointer;
}

main {
  background: var(--bg);
  min-height: calc(100vh - 200px);
  margin-top: 70px;
}

.hero {
  padding: 140px 0 120px;
  background: linear-gradient(135deg, #fef3c7 0%, #ddd6fe 50%, #fce7f3 100%);
  text-align: center;
  position: relative;
  overflow: hidden;
  background-image: url(../visual_gallery/hero.png);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
}

.hero::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(
    circle,
    rgba(99, 102, 241, 0.1) 1px,
    transparent 1px
  );
  background-size: 50px 50px;
  animation: moveGrid 20s linear infinite;
}

@keyframes moveGrid {
  0% {
    transform: translate(0, 0);
  }
  100% {
    transform: translate(50px, 50px);
  }
}

.hero-content {
  position: relative;
  z-index: 1;
}

.hero-content h1 {
  font-family: 'Syne', sans-serif;
  font-size: 72px;
  font-weight: 700;
  margin-bottom: 30px;
  color: white;
  line-height: 1.1;
  animation: fadeInUp 0.8s ease;
  letter-spacing: -2px;
}

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

.hero-content p {
  font-size: 20px;
  color: white;
  max-width: 700px;
  margin: 0 auto 40px;
  line-height: 1.8;
  animation: fadeInUp 0.8s ease 0.2s both;
}

.cta-button {
  display: inline-block;
  padding: 18px 45px;
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  color: white;
  text-decoration: none;
  border-radius: 50px;
  font-weight: 600;
  font-size: 16px;
  transition: all 0.4s;
  box-shadow: 0 10px 30px rgba(99, 102, 241, 0.3);
  position: relative;
  overflow: hidden;
  animation: fadeInUp 0.8s ease 0.4s both;
}

.cta-button::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.3);
  transition: width 0.6s, height 0.6s, top 0.6s, left 0.6s;
}

.cta-button:hover::before {
  width: 300px;
  height: 300px;
  top: -150px;
  left: -150px;
}

.cta-button:hover {
  transform: translateY(-5px) scale(1.05);
  box-shadow: 0 20px 50px rgba(99, 102, 241, 0.5);
}

.secondary-button {
  display: inline-block;
  padding: 18px 45px;
  background: white;
  color: var(--primary);
  text-decoration: none;
  border-radius: 50px;
  font-weight: 600;
  font-size: 16px;
  border: 2px solid var(--primary);
  transition: all 0.4s;
  box-shadow: 0 10px 30px rgba(99, 102, 241, 0.2);
}

.secondary-button:hover {
  transform: translateY(-5px) scale(1.05);
  background: var(--primary);
  color: white;
  box-shadow: 0 20px 50px rgba(99, 102, 241, 0.4);
}

.services {
  padding: 100px 0;
  background: white;
  position: relative;
}

.services::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(
      circle at 10% 20%,
      rgba(99, 102, 241, 0.05) 0%,
      transparent 50%
    ),
    radial-gradient(
      circle at 90% 80%,
      rgba(168, 85, 247, 0.05) 0%,
      transparent 50%
    );
  pointer-events: none;
}

.services h2,
.about h2,
.process h2,
.testimonials h2,
.cta-section h2 {
  font-family: 'Syne', sans-serif;
  font-size: 52px;
  font-weight: 700;
  text-align: center;
  margin-bottom: 70px;
  color: var(--text);
  position: relative;
  display: inline-block;
  width: 100%;
  animation: fadeInUp 0.8s ease;
}

.services h2::after {
  content: '';
  position: absolute;
  bottom: -20px;
  left: 50%;
  transform: translateX(-50%);
  width: 100px;
  height: 5px;
  background: linear-gradient(
    90deg,
    var(--primary),
    var(--secondary),
    var(--accent)
  );
  border-radius: 10px;
  animation: expandWidth 0.8s ease 0.3s both;
}

@keyframes expandWidth {
  from {
    width: 0;
  }
  to {
    width: 100px;
  }
}

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

.service-card {
  background: white;
  padding: 45px 35px;
  border-radius: 0 30px 0 30px;
  border: none;
  text-align: left;
  transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 80px;
  height: 80px;
  background: linear-gradient(
    135deg,
    rgba(99, 102, 241, 0.1),
    rgba(168, 85, 247, 0.1)
  );
  border-radius: 0 0 0 100%;
  transition: all 0.5s;
}

.service-card:hover {
  transform: translateY(-15px);
  border-radius: 30px 0 30px 0;
  box-shadow: 0 25px 60px rgba(99, 102, 241, 0.2);
}

.service-card:hover::before {
  width: 150px;
  height: 150px;
}

.service-card i {
  font-size: 56px;
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 25px;
  position: relative;
  z-index: 1;
  display: inline-block;
  animation: float 3s ease-in-out infinite;
}

@keyframes float {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-10px);
  }
}

.service-card h3 {
  font-family: 'Syne', sans-serif;
  font-size: 22px;
  font-weight: 600;
  margin-bottom: 15px;
  color: var(--text);
  position: relative;
  z-index: 1;
}

.service-card p {
  font-size: 15px;
  color: var(--text-light);
  position: relative;
  z-index: 1;
  line-height: 1.8;
}

.about {
  padding: 100px 0;
  background: linear-gradient(135deg, #fef3c7 0%, #ddd6fe 100%);
  position: relative;
  overflow: hidden;
}

.about::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(168, 85, 247, 0.1), transparent);
  transform: translate(-50%, -50%);
  animation: pulse 4s ease-in-out infinite;
}

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

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

.about-text h2 {
  text-align: left;
  margin-bottom: 30px;
  color: var(--text);
}

.about-text h2::after {
  left: 0;
  transform: none;
}

.about-text p {
  margin-bottom: 25px;
  color: var(--text-light);
  font-size: 17px;
  line-height: 1.9;
}

.about-image {
  position: relative;
  animation: fadeInRight 0.8s ease;
}

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

.about-image::before {
  content: '';
  position: absolute;
  top: -25px;
  left: -25px;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  border-radius: 30px;
  z-index: 0;
  opacity: 0.2;
}

.about-image img {
  width: 100%;
  height: auto;
  border-radius: 30px;
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.15);
  position: relative;
  z-index: 1;
  transition: transform 0.5s;
}

.about-image:hover img {
  transform: scale(1.05) rotate(-2deg);
}

.process {
  padding: 100px 0;
  background: white;
  position: relative;
}

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

.step {
  background: white;
  padding: 40px;
  border-radius: 20px;
  border-left: 5px solid var(--primary);
  position: relative;
  transition: all 0.5s;
  overflow: visible;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
}

.step::after {
  content: '';
  position: absolute;
  top: 20px;
  right: -10px;
  width: 20px;
  height: 20px;
  background: var(--secondary);
  border-radius: 50%;
  transition: all 0.5s;
}

.step:hover {
  border-left-width: 10px;
  transform: translateX(10px);
  box-shadow: 0 20px 50px rgba(99, 102, 241, 0.2);
}

.step:hover::after {
  right: -15px;
  width: 30px;
  height: 30px;
}

.step-number {
  font-family: 'Syne', sans-serif;
  font-size: 64px;
  font-weight: 700;
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 20px;
  line-height: 1;
  position: relative;
  z-index: 1;
}

.step h3 {
  font-family: 'Syne', sans-serif;
  font-size: 22px;
  font-weight: 600;
  margin-bottom: 15px;
  color: var(--text);
  position: relative;
  z-index: 1;
}

.step p {
  font-size: 15px;
  color: var(--text-light);
  line-height: 1.8;
  position: relative;
  z-index: 1;
}

.testimonials {
  padding: 100px 0;
  background: linear-gradient(135deg, #ddd6fe 0%, #fce7f3 100%);
  position: relative;
}

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

.testimonial {
  background: white;
  padding: 40px;
  border-radius: 15px;
  border: none;
  border-top: 4px solid var(--accent);
  position: relative;
  transition: all 0.5s;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
}

.testimonial::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 4px;
  background: var(--primary);
  transition: width 0.5s;
}

.testimonial:hover {
  transform: translateY(-10px);
  box-shadow: 0 25px 60px rgba(236, 72, 153, 0.2);
}

.testimonial:hover::after {
  width: 100%;
}

.testimonial::before {
  content: '"';
  position: absolute;
  top: 15px;
  left: 30px;
  font-size: 80px;
  font-family: 'Syne', sans-serif;
  color: var(--accent);
  opacity: 0.1;
  line-height: 1;
}

.testimonial p {
  font-size: 16px;
  color: var(--text);
  margin-bottom: 25px;
  font-style: italic;
  line-height: 1.8;
  position: relative;
  z-index: 1;
}

.testimonial-author {
  font-size: 15px;
  color: var(--primary);
  font-weight: 600;
}

.cta-section {
  padding: 120px 0;
  text-align: center;
  background: linear-gradient(135deg, #fef3c7 0%, #ddd6fe 50%, #fce7f3 100%);
  position: relative;
  overflow: hidden;
}

.cta-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(
      circle at 30% 50%,
      rgba(99, 102, 241, 0.1) 0%,
      transparent 50%
    ),
    radial-gradient(
      circle at 70% 50%,
      rgba(236, 72, 153, 0.1) 0%,
      transparent 50%
    );
  animation: moveBackground 10s ease-in-out infinite;
}

@keyframes moveBackground {
  0%,
  100% {
    transform: translateX(0);
  }
  50% {
    transform: translateX(50px);
  }
}

.cta-section p {
  font-size: 20px;
  color: var(--text-light);
  margin-bottom: 40px;
  position: relative;
  z-index: 1;
}

.page-hero {
  padding: 120px 0 100px;
  background: linear-gradient(135deg, #fef3c7 0%, #ddd6fe 100%);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.page-hero::before {
  content: '';
  position: absolute;
  width: 400px;
  height: 400px;
  top: -200px;
  right: -200px;
  background: radial-gradient(circle, rgba(168, 85, 247, 0.2), transparent);
  animation: rotate 20s linear infinite;
}

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

.page-hero h1 {
  font-family: 'Syne', sans-serif;
  font-size: 56px;
  font-weight: 700;
  margin-bottom: 25px;
  color: var(--text);
  position: relative;
  z-index: 1;
  letter-spacing: -1px;
}

.page-hero p {
  font-size: 19px;
  color: var(--text-light);
  position: relative;
  z-index: 1;
}

.design-approach,
.maintenance-intro {
  padding: 100px 0;
  background: white;
}

.approach-content p,
.intro-text p {
  font-size: 17px;
  color: var(--text-light);
  margin-bottom: 25px;
  line-height: 1.9;
}

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

.intro-image {
  position: relative;
  animation: fadeInRight 0.8s ease;
}

.intro-image::before {
  content: '';
  position: absolute;
  top: -25px;
  right: -25px;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, var(--secondary), var(--accent));
  border-radius: 30px;
  z-index: 0;
  opacity: 0.2;
}

.intro-image img {
  width: 100%;
  height: auto;
  border-radius: 30px;
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.15);
  position: relative;
  z-index: 1;
  transition: transform 0.5s;
}

.intro-image:hover img {
  transform: scale(1.05) rotate(2deg);
}

.design-services,
.maintenance-services {
  padding: 100px 0;
  background: linear-gradient(135deg, #fef3c7 0%, #ddd6fe 100%);
}

.services-list {
  display: grid;
  gap: 20px;
}

.service-item {
  display: flex;
  gap: 30px;
  background: white;
  padding: 35px;
  border-radius: 25px;
  border: none;
  border-bottom: 3px solid transparent;
  transition: all 0.5s;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
  position: relative;
}

.service-item::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 5px;
  height: 0;
  background: linear-gradient(180deg, var(--teal), var(--primary));
  transition: height 0.5s;
  border-radius: 25px 0 0 25px;
}

.service-item:hover {
  border-bottom-color: var(--teal);
  transform: translateX(15px);
  box-shadow: 0 20px 60px rgba(20, 184, 166, 0.2);
}

.service-item:hover::before {
  height: 100%;
}

.service-item i {
  font-size: 42px;
  background: linear-gradient(135deg, var(--teal), var(--primary));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  flex-shrink: 0;
  animation: float 3s ease-in-out infinite;
}

.service-info h3 {
  font-family: 'Syne', sans-serif;
  font-size: 22px;
  font-weight: 600;
  margin-bottom: 12px;
  color: var(--text);
}

.service-info p {
  font-size: 16px;
  color: var(--text-light);
  line-height: 1.8;
}

.design-packages,
.maintenance-plans {
  padding: 100px 0;
  background: white;
}

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

.package-card,
.plan-card {
  background: white;
  padding: 45px;
  border-radius: 25px;
  border: none;
  text-align: center;
  transition: all 0.5s;
  position: relative;
  overflow: hidden;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
}

.package-card::before,
.plan-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 5px;
  background: linear-gradient(
    90deg,
    var(--primary),
    var(--secondary),
    var(--accent)
  );
  background-size: 200% 100%;
  animation: gradientMove 3s ease infinite;
}

@keyframes gradientMove {
  0%,
  100% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
}

.package-card:hover,
.plan-card:hover {
  transform: translateY(-15px);
  box-shadow: 0 30px 70px rgba(99, 102, 241, 0.25);
}

.package-card.featured,
.plan-card.featured {
  transform: scale(1.05);
  box-shadow: 0 25px 60px rgba(99, 102, 241, 0.3);
}

.package-card.featured::before,
.plan-card.featured::before {
  height: 8px;
}

.package-card.featured:hover,
.plan-card.featured:hover {
  transform: scale(1.05) translateY(-15px);
}

.package-card h3,
.plan-card h3 {
  font-family: 'Syne', sans-serif;
  font-size: 26px;
  font-weight: 600;
  margin-bottom: 25px;
  color: var(--text);
  position: relative;
  z-index: 1;
}

.package-price,
.plan-price {
  font-family: 'Syne', sans-serif;
  font-size: 42px;
  font-weight: 700;
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 30px;
  position: relative;
  z-index: 1;
}

.package-card ul,
.plan-card ul {
  list-style: none;
  margin-bottom: 35px;
  text-align: left;
}

.package-card li,
.plan-card li {
  font-size: 16px;
  color: var(--text-light);
  margin-bottom: 15px;
  padding-left: 30px;
  position: relative;
  z-index: 1;
}

.package-card li:before,
.plan-card li:before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--primary);
  font-weight: 700;
  font-size: 20px;
}

.package-button,
.plan-button {
  display: inline-block;
  padding: 14px 35px;
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  color: white;
  text-decoration: none;
  border-radius: 50px;
  font-weight: 600;
  font-size: 15px;
  transition: all 0.4s;
  box-shadow: 0 10px 30px rgba(99, 102, 241, 0.3);
  position: relative;
  z-index: 1;
}

.package-button:hover,
.plan-button:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 40px rgba(99, 102, 241, 0.5);
}

.contact-hero {
  padding: 120px 0 100px;
  background: linear-gradient(135deg, #fef3c7 0%, #ddd6fe 100%);
  text-align: center;
  overflow: hidden;
  position: relative;
}

.contact-hero h1 {
  font-family: 'Syne', sans-serif;
  font-size: 56px;
  font-weight: 700;
  margin-bottom: 25px;
  color: var(--text);
  letter-spacing: -1px;
}

.contact-hero p {
  font-size: 19px;
  color: var(--text-light);
  max-width: 700px;
  margin: 0 auto;
  line-height: 1.9;
}

.contact-content {
  padding: 100px 0;
  background: white;
}

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

.contact-form-section h2,
.contact-info-section h2 {
  font-family: 'Syne', sans-serif;
  font-size: 36px;
  font-weight: 700;
  margin-bottom: 35px;
  color: var(--text);
}

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

.form-group label {
  display: block;
  font-size: 15px;
  font-weight: 600;
  margin-bottom: 10px;
  color: var(--text);
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 16px;
  border: 2px solid rgba(99, 102, 241, 0.2);
  border-radius: 15px;
  font-family: 'Space Grotesk', sans-serif;
  font-size: 15px;
  background: white;
  color: var(--text);
  transition: all 0.3s;
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 4px rgba(99, 102, 241, 0.1);
  transform: translateY(-2px);
}

.form-group textarea {
  resize: vertical;
}

.checkbox-group {
  margin-bottom: 25px;
}

.checkbox-label {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 14px;
  color: var(--text-light);
  cursor: pointer;
}

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

.checkbox-label a {
  color: var(--primary);
  text-decoration: none;
}

.submit-button {
  width: 100%;
  padding: 18px;
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  color: white;
  border: none;
  border-radius: 50px;
  font-family: 'Space Grotesk', sans-serif;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.4s;
  box-shadow: 0 10px 30px rgba(99, 102, 241, 0.3);
  position: relative;
  overflow: hidden;
}

.submit-button::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.3);
  transition: width 0.6s, height 0.6s, top 0.6s, left 0.6s;
}

.submit-button:hover::before {
  width: 300px;
  height: 300px;
  top: -150px;
  left: -150px;
}

.submit-button:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 50px rgba(99, 102, 241, 0.5);
}

.contact-details {
  display: grid;
  gap: 25px;
}

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

.contact-item i {
  font-size: 32px;
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  flex-shrink: 0;
  animation: float 3s ease-in-out infinite;
}

.contact-item h3 {
  font-family: 'Syne', sans-serif;
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 10px;
  color: var(--text);
}

.contact-item p {
  font-size: 16px;
  color: var(--text-light);
  line-height: 1.7;
}

.map-section {
  padding: 100px 0;
  background: linear-gradient(135deg, #ddd6fe 0%, #fce7f3 100%);
}

.map-section h2 {
  font-family: 'Syne', sans-serif;
  font-size: 36px;
  font-weight: 700;
  text-align: center;
  margin-bottom: 50px;
  color: var(--text);
}

.map-container {
  border-radius: 30px;
  overflow: hidden;
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.15);
  border: 3px solid white;
}

.thankyou-section,
.error-section {
  padding: 140px 0;
  text-align: center;
  min-height: calc(100vh - 150px);
  display: flex;
  align-items: center;
  background: linear-gradient(135deg, #fef3c7 0%, #ddd6fe 50%, #fce7f3 100%);
}

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

.thankyou-content i {
  font-size: 100px;
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 35px;
  animation: scaleIn 0.6s ease;
}

@keyframes scaleIn {
  from {
    transform: scale(0);
    opacity: 0;
  }
  to {
    transform: scale(1);
    opacity: 1;
  }
}

.thankyou-content h1,
.error-content h1 {
  font-family: 'Syne', sans-serif;
  font-size: 42px;
  font-weight: 700;
  margin-bottom: 25px;
  color: var(--text);
  animation: fadeInUp 0.8s ease;
}

.thankyou-content p,
.error-content p {
  font-size: 18px;
  color: var(--text-light);
  margin-bottom: 45px;
  line-height: 1.9;
  animation: fadeInUp 0.8s ease 0.2s both;
}

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

.error-number {
  font-family: 'Syne', sans-serif;
  font-size: 160px;
  font-weight: 700;
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
  margin-bottom: 35px;
  animation: scaleIn 0.6s ease;
}

.policy-section {
  padding: 100px 0;
  background: white;
}

.policy-section h1 {
  font-family: 'Syne', sans-serif;
  font-size: 48px;
  font-weight: 700;
  margin-bottom: 20px;
  color: var(--text);
}

.policy-date {
  font-size: 15px;
  color: var(--text-light);
  margin-bottom: 45px;
}

.policy-content {
  background: linear-gradient(135deg, #fef3c7, #fce7f3);
  padding: 60px;
  border-radius: 30px;
  border: 2px solid rgba(99, 102, 241, 0.1);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.05);
}

.policy-content h2 {
  font-family: 'Syne', sans-serif;
  font-size: 28px;
  font-weight: 700;
  margin-top: 45px;
  margin-bottom: 25px;
  color: var(--text);
}

.policy-content h2:first-child {
  margin-top: 0;
}

.policy-content h3 {
  font-family: 'Syne', sans-serif;
  font-size: 22px;
  font-weight: 600;
  margin-top: 30px;
  margin-bottom: 18px;
  color: var(--text);
}

.policy-content h4 {
  font-family: 'Syne', sans-serif;
  font-size: 18px;
  font-weight: 600;
  margin-top: 25px;
  margin-bottom: 12px;
  color: var(--text);
}

.policy-content p {
  font-size: 16px;
  color: var(--text-light);
  margin-bottom: 20px;
  line-height: 1.9;
}

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

.policy-content li {
  font-size: 16px;
  color: var(--text-light);
  margin-bottom: 12px;
  line-height: 1.9;
}

footer {
  background: var(--text);
  color: white;
  padding: 35px 0;
  border-top: 3px solid var(--primary);
}

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

.footer-info p {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.7);
}

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

.footer-links a {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
  transition: color 0.3s;
}

.footer-links a:hover {
  color: white;
}

.privacy-popup {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(20px);
  color: var(--text);
  padding: 30px;
  z-index: 9999;
  display: none;
  border-top: 3px solid var(--primary);
  box-shadow: 0 -10px 40px rgba(0, 0, 0, 0.1);
}

.privacy-popup.show {
  display: block;
}

.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 {
  font-size: 14px;
  margin: 0;
}

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

.privacy-buttons button {
  padding: 12px 30px;
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  color: white;
  border: none;
  border-radius: 50px;
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.4s;
  box-shadow: 0 5px 15px rgba(99, 102, 241, 0.3);
}

.privacy-buttons button:hover {
  box-shadow: 0 10px 25px rgba(99, 102, 241, 0.5);
  transform: translateY(-3px);
}

.privacy-buttons a {
  padding: 12px 30px;
  background: transparent;
  color: var(--primary);
  border: 2px solid var(--primary);
  border-radius: 50px;
  font-size: 15px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.4s;
}

.privacy-buttons a:hover {
  background: var(--primary);
  color: white;
}

@media (max-width: 768px) {
  .main-nav {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    flex-direction: column;
    padding: 20px;
    border-bottom: 2px solid rgba(99, 102, 241, 0.2);
  }

  .logo {
    font-size: 18px;
  }

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

  .menu-toggle {
    display: block;
  }

  .hero {
    padding: 80px 0 60px;
  }

  .hero-content h1 {
    font-size: 42px;
    letter-spacing: -1px;
  }

  .hero-content p {
    font-size: 16px;
    padding: 0 10px;
  }

  .page-hero h1 {
    font-size: 42px;
  }

  .services,
  .about,
  .process,
  .testimonials,
  .cta-section,
  .design-approach,
  .maintenance-intro,
  .design-services,
  .maintenance-services,
  .design-packages,
  .maintenance-plans,
  .contact-content,
  .map-section {
    padding: 60px 0;
  }

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

  .about-image::before,
  .intro-image::before {
    display: none;
  }

  .services h2,
  .about h2,
  .process h2,
  .testimonials h2,
  .cta-section h2 {
    font-size: 36px;
    margin-bottom: 40px;
  }

  .services-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .service-card {
    padding: 35px 25px;
  }

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

  .service-item {
    flex-direction: column;
    gap: 20px;
    padding: 25px;
  }

  .service-item:hover {
    transform: translateX(5px);
  }

  .package-card,
  .plan-card {
    padding: 35px 25px;
  }

  .package-card.featured,
  .plan-card.featured {
    transform: scale(1);
  }

  .package-card.featured:hover,
  .plan-card.featured:hover {
    transform: translateY(-10px);
  }

  .policy-content {
    padding: 40px 25px;
  }

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

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

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

  .privacy-buttons {
    width: 100%;
    justify-content: center;
    flex-wrap: wrap;
  }

  .cta-button,
  .secondary-button {
    padding: 16px 35px;
    font-size: 15px;
  }
}

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

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

  .hero-content h1 {
    font-size: 32px;
    margin-bottom: 20px;
  }

  .hero-content p {
    font-size: 15px;
    margin-bottom: 30px;
  }

  .page-hero h1,
  .contact-hero h1 {
    font-size: 32px;
  }

  .page-hero p,
  .contact-hero p {
    font-size: 16px;
  }

  .services,
  .about,
  .process,
  .testimonials,
  .cta-section,
  .design-approach,
  .maintenance-intro,
  .design-services,
  .maintenance-services,
  .design-packages,
  .maintenance-plans,
  .contact-content,
  .map-section {
    padding: 50px 0;
  }

  .services h2,
  .about h2,
  .process h2,
  .testimonials h2,
  .cta-section h2 {
    font-size: 28px;
    margin-bottom: 30px;
  }

  .contact-form-section h2,
  .contact-info-section h2,
  .map-section h2 {
    font-size: 28px;
  }

  .services-grid,
  .process-steps,
  .testimonials-grid,
  .packages-grid,
  .plans-grid {
    grid-template-columns: 1fr;
    gap: 15px;
  }

  .service-card {
    padding: 30px 20px;
  }

  .service-card i {
    font-size: 42px;
  }

  .service-card h3 {
    font-size: 20px;
  }

  .step {
    padding: 30px 20px;
  }

  .step-number {
    font-size: 42px;
  }

  .step h3 {
    font-size: 20px;
  }

  .testimonial {
    padding: 30px 20px;
  }

  .package-card h3,
  .plan-card h3 {
    font-size: 22px;
  }

  .package-price,
  .plan-price {
    font-size: 36px;
  }

  .error-number {
    font-size: 100px;
  }

  .thankyou-content h1,
  .error-content h1 {
    font-size: 32px;
  }

  .thankyou-content p,
  .error-content p {
    font-size: 16px;
  }

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

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

  .cta-button,
  .secondary-button {
    padding: 14px 30px;
    font-size: 14px;
  }

  .policy-section h1 {
    font-size: 32px;
  }

  .policy-content {
    padding: 30px 20px;
  }

  .policy-content h2 {
    font-size: 24px;
  }

  .policy-content h3 {
    font-size: 20px;
  }

  .privacy-buttons button,
  .privacy-buttons a {
    padding: 10px 20px;
    font-size: 14px;
  }
}
