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

:root {
  --primary: #00d4ff;
  --secondary: #7c3aed;
  --accent: #ff6b9d;
  --dark: #0f172a;
  --light: #f1f5f9;
  --gray: #64748b;
  --gradient-1: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  --gradient-2: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
  --gradient-3: linear-gradient(135deg, #4facfe 0%, #00f2fe 100%);
  --gradient-4: linear-gradient(135deg, #fa709a 0%, #fee140 100%);
  --gradient-5: linear-gradient(135deg, #30cfd0 0%, #330867 100%);
  --gradient-6: linear-gradient(135deg, #a8edea 0%, #fed6e3 100%);
}

body {
  font-family: 'Outfit', sans-serif;
  font-size: 15px;
  line-height: 1.6;
  color: var(--dark);
  background: #ffffff;
}

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

header {
  background: rgba(15, 23, 42, 0.95);
  backdrop-filter: blur(20px);
  padding: 0;
  position: sticky;
  top: 0;
  z-index: 1000;
  transition: all 0.3s ease;
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
}

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

.logo {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 22px;
  font-weight: 700;
  background: linear-gradient(135deg, var(--primary), var(--accent));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

nav {
  display: flex;
  gap: 35px;
  align-items: center;
}

nav a {
  color: #ffffff;
  text-decoration: none;
  font-size: 14px;
  font-weight: 500;
  transition: all 0.3s;
  position: relative;
  padding: 8px 0;
}

nav a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--primary);
  transition: width 0.3s;
}

nav a:hover::after {
  width: 100%;
}

nav a:hover {
  color: var(--primary);
}

.menu-toggle {
  display: none;
  background: none;
  border: none;
  font-size: 24px;
  color: #ffffff;
  cursor: pointer;
}

.hero {
  background: linear-gradient(135deg, #0f172a 0%, #1e293b 50%, #334155 100%);
  padding: 120px 0 100px;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -10%;
  width: 600px;
  height: 600px;
  background: radial-gradient(
    circle,
    rgba(0, 212, 255, 0.15) 0%,
    transparent 70%
  );
  border-radius: 50%;
  animation: float 20s infinite ease-in-out;
}

.hero::after {
  content: '';
  position: absolute;
  bottom: -30%;
  left: -5%;
  width: 500px;
  height: 500px;
  background: radial-gradient(
    circle,
    rgba(124, 58, 237, 0.15) 0%,
    transparent 70%
  );
  border-radius: 50%;
  animation: float 15s infinite ease-in-out reverse;
}

@keyframes float {
  0%,
  100% {
    transform: translate(0, 0) scale(1);
  }
  50% {
    transform: translate(30px, -30px) scale(1.1);
  }
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}

.hero h1 {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 56px;
  font-weight: 700;
  margin-bottom: 20px;
  color: #ffffff;
  line-height: 1.2;
  background: linear-gradient(135deg, #ffffff 0%, var(--primary) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero p {
  font-size: 20px;
  margin-bottom: 35px;
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.6;
}

.cta-button {
  display: inline-block;
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  color: white;
  padding: 16px 40px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 600;
  font-size: 15px;
  transition: all 0.3s;
  box-shadow: 0 10px 30px rgba(0, 212, 255, 0.3);
  position: relative;
  overflow: hidden;
}

.cta-button::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, var(--secondary), var(--accent));
  transition: left 0.3s;
}

.cta-button:hover::before {
  left: 0;
}

.cta-button:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 40px rgba(0, 212, 255, 0.4);
}

.cta-button span {
  position: relative;
  z-index: 1;
}

section {
  padding: 80px 0;
  position: relative;
}

h2 {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 40px;
  font-weight: 700;
  margin-bottom: 50px;
  text-align: center;
  color: var(--dark);
  position: relative;
  display: inline-block;
  width: 100%;
}

h2::after {
  content: '';
  position: absolute;
  bottom: -15px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background: linear-gradient(90deg, var(--primary), var(--accent));
  border-radius: 2px;
}

h3 {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 12px;
  color: var(--dark);
}

.services-overview {
  background: linear-gradient(180deg, #ffffff 0%, #f8fafc 100%);
}

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

.service-card {
  background: #ffffff;
  border: 2px solid transparent;
  border-radius: 20px;
  padding: 40px 30px;
  text-align: center;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  opacity: 0;
  transition: opacity 0.4s;
  z-index: 0;
}

.service-card:hover::before {
  opacity: 1;
}

.service-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 50px rgba(0, 212, 255, 0.3);
  border-color: var(--primary);
}

.service-card i {
  font-size: 50px;
  color: var(--primary);
  margin-bottom: 20px;
  transition: all 0.4s;
  position: relative;
  z-index: 1;
}

.service-card:hover i {
  color: #ffffff;
  transform: scale(1.1);
}

.service-card h3,
.service-card p,
.service-card a {
  position: relative;
  z-index: 1;
  transition: color 0.4s;
}

.service-card:hover h3,
.service-card:hover p,
.service-card:hover a {
  color: #ffffff;
}

.service-card p {
  font-size: 14px;
  color: var(--gray);
  margin-bottom: 20px;
  line-height: 1.7;
}

.service-card a {
  color: var(--primary);
  text-decoration: none;
  font-weight: 600;
  font-size: 14px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.service-card a::after {
  content: '→';
  transition: transform 0.3s;
}

.service-card:hover a::after {
  transform: translateX(5px);
}

.about-section {
  background: var(--dark);
  color: #ffffff;
  position: relative;
  overflow: hidden;
}

.about-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url('data:image/svg+xml,<svg width="100" height="100" xmlns="http://www.w3.org/2000/svg"><circle cx="50" cy="50" r="1" fill="rgba(0,212,255,0.1)"/></svg>');
  opacity: 0.3;
}

.about-content {
  display: block;
  text-align: center;
  position: relative;
  z-index: 1;
}

.about-text {
  margin-bottom: 50px;
}

.about-text h2 {
  color: #ffffff;
  text-align: center;
}

.about-text h2::after {
  left: 50%;
  transform: translateX(-50%);
}

.about-text p {
  margin-bottom: 20px;
  font-size: 16px;
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.8;
  text-align: center;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.about-features {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 20px;
  max-width: 900px;
  margin: 0 auto;
}

.feature-item {
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  padding: 25px;
  border-radius: 15px;
  transition: all 0.3s;
  text-align: center;
}

.feature-item:hover {
  background: rgba(0, 212, 255, 0.1);
  border-color: var(--primary);
  transform: translateY(-5px);
}

.feature-item i {
  color: var(--primary);
  font-size: 32px;
  margin-bottom: 10px;
  display: block;
}

.feature-item span {
  color: #ffffff;
  font-weight: 500;
  font-size: 15px;
}

.products-section {
  background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
  position: relative;
}

.products-section h2 {
  color: var(--dark);
}

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

.product-card {
  background: #ffffff;
  border-radius: 25px;
  overflow: hidden;
  transition: all 0.4s;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
  position: relative;
}

.product-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 5px;
  background: linear-gradient(90deg, var(--primary), var(--accent));
  transform: scaleX(0);
  transition: transform 0.4s;
}

.product-card:hover::before {
  transform: scaleX(1);
}

.product-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}

.product-card img {
  width: 100%;
  height: 240px;
  object-fit: cover;
  transition: transform 0.4s;
}

.product-card:hover img {
  transform: scale(1.05);
}

.product-card h3 {
  padding: 25px 25px 10px;
  color: var(--dark);
  font-size: 20px;
}

.product-card p {
  padding: 0 25px;
  font-size: 14px;
  color: var(--gray);
  margin-bottom: 20px;
  line-height: 1.6;
}

.price {
  font-size: 32px;
  font-weight: 700;
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  padding: 0 25px;
  margin-bottom: 20px;
}

.product-button {
  display: block;
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  color: white;
  text-align: center;
  padding: 16px;
  text-decoration: none;
  font-weight: 600;
  font-size: 15px;
  transition: all 0.3s;
  position: relative;
  overflow: hidden;
}

.product-button::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  transform: translate(-50%, -50%);
  transition: width 0.5s, height 0.5s;
}

.product-button:hover::before {
  width: 300px;
  height: 300px;
}

.process-section {
  background: #ffffff;
  position: relative;
}

.process-steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 0;
  position: relative;
}

.process-steps::before {
  content: '';
  position: absolute;
  top: 60px;
  left: 10%;
  right: 10%;
  height: 2px;
  background: linear-gradient(90deg, var(--primary), var(--accent));
  z-index: 0;
}

.step {
  text-align: center;
  padding: 30px 20px;
  position: relative;
  z-index: 1;
}

.step-number {
  width: 70px;
  height: 70px;
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  font-weight: 700;
  margin: 0 auto 20px;
  box-shadow: 0 10px 30px rgba(0, 212, 255, 0.3);
  position: relative;
  border: 4px solid #ffffff;
}

.step h3 {
  margin-bottom: 12px;
  font-size: 18px;
}

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

.cta-section {
  background: linear-gradient(135deg, var(--dark) 0%, #1e293b 100%);
  text-align: center;
  color: white;
  padding: 100px 0;
  position: relative;
  overflow: hidden;
}

.cta-section::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -10%;
  width: 500px;
  height: 500px;
  background: radial-gradient(
    circle,
    rgba(0, 212, 255, 0.2) 0%,
    transparent 70%
  );
  border-radius: 50%;
}

.cta-section::after {
  content: '';
  position: absolute;
  bottom: -50%;
  right: -10%;
  width: 500px;
  height: 500px;
  background: radial-gradient(
    circle,
    rgba(255, 107, 157, 0.2) 0%,
    transparent 70%
  );
  border-radius: 50%;
}

.cta-section .container {
  position: relative;
  z-index: 1;
}

.cta-section h2 {
  color: white;
  margin-bottom: 20px;
  font-size: 44px;
}

.cta-section h2::after {
  background: linear-gradient(90deg, var(--primary), var(--accent));
}

.cta-section p {
  font-size: 19px;
  margin-bottom: 35px;
  color: rgba(255, 255, 255, 0.8);
}

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

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

.footer-info p {
  font-size: 13px;
  opacity: 0.8;
}

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

.footer-links a {
  color: white;
  text-decoration: none;
  font-size: 13px;
  opacity: 0.8;
  transition: opacity 0.3s;
}

.footer-links a:hover {
  opacity: 1;
}

.privacy-popup {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: rgba(30, 41, 59, 0.95);
  backdrop-filter: blur(10px);
  color: white;
  padding: 20px;
  z-index: 9999;
  display: none;
}

.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;
  flex: 1;
  min-width: 250px;
}

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

.privacy-buttons button {
  background: var(--primary);
  color: white;
  border: none;
  padding: 10px 25px;
  border-radius: 20px;
  cursor: pointer;
  font-size: 14px;
  font-weight: 600;
  transition: all 0.3s;
}

.privacy-buttons button:hover {
  background: var(--secondary);
}

.privacy-buttons a {
  color: white;
  text-decoration: underline;
  font-size: 14px;
  display: flex;
  align-items: center;
}

.page-hero {
  background: var(--gradient-1);
  padding: 60px 0;
  text-align: center;
  color: white;
}

.page-hero h1 {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 38px;
  font-weight: 700;
  margin-bottom: 12px;
}

.page-hero p {
  font-size: 16px;
  opacity: 0.95;
}

.service-details {
  background: rgba(255, 255, 255, 0.5);
}

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

.detail-card {
  background: rgba(255, 255, 255, 0.8);
  backdrop-filter: blur(10px);
  padding: 25px;
  border-radius: 15px;
}

.detail-card i {
  font-size: 35px;
  color: var(--primary);
  margin-bottom: 12px;
}

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

.materials-section {
  background: white;
}

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

.material-item {
  padding: 25px;
  background: rgba(255, 255, 255, 0.8);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(99, 102, 241, 0.2);
  border-radius: 15px;
}

.material-item i {
  font-size: 35px;
  color: var(--primary);
  margin-bottom: 12px;
}

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

.benefits-section {
  background: rgba(255, 255, 255, 0.5);
}

.benefits-list {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 15px;
}

.benefits-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  background: rgba(255, 255, 255, 0.8);
  backdrop-filter: blur(10px);
  padding: 15px;
  border-radius: 10px;
  font-size: 14px;
}

.benefits-list i {
  color: var(--primary);
  font-size: 18px;
  margin-top: 2px;
}

.repair-services {
  background: rgba(255, 255, 255, 0.5);
}

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

.repair-card {
  background: rgba(255, 255, 255, 0.8);
  backdrop-filter: blur(10px);
  padding: 25px;
  border-radius: 15px;
  text-align: center;
}

.repair-card i {
  font-size: 40px;
  color: var(--primary);
  margin-bottom: 15px;
}

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

.repair-types {
  background: white;
}

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

.type-item {
  background: rgba(255, 255, 255, 0.8);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(99, 102, 241, 0.2);
  padding: 25px;
  border-radius: 15px;
}

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

.process-detail {
  background: rgba(255, 255, 255, 0.5);
}

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

.timeline-item {
  background: rgba(255, 255, 255, 0.8);
  backdrop-filter: blur(10px);
  padding: 25px;
  border-radius: 15px;
  text-align: center;
}

.timeline-icon {
  width: 60px;
  height: 60px;
  background: var(--gradient-1);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  margin: 0 auto 15px;
}

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

.contact-hero {
  background: var(--gradient-1);
  padding: 60px 0;
  text-align: center;
  color: white;
}

.contact-hero h1 {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 38px;
  font-weight: 700;
  margin-bottom: 12px;
}

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

.contact-section {
  background: rgba(255, 255, 255, 0.5);
}

.contact-wrapper {
  display: block;
  max-width: 900px;
  margin: 0 auto;
}

.contact-info {
  margin-bottom: 50px;
}

.contact-info h2 {
  text-align: center;
  font-size: 26px;
  margin-bottom: 25px;
}

.info-item {
  display: block;
  text-align: center;
  margin-bottom: 25px;
  background: rgba(255, 255, 255, 0.8);
  backdrop-filter: blur(10px);
  padding: 20px;
  border-radius: 12px;
}

.info-item i {
  font-size: 24px;
  color: var(--primary);
  margin-bottom: 10px;
  display: block;
}

.info-item h3 {
  font-size: 16px;
  margin-bottom: 5px;
}

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

.contact-form-wrapper {
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(10px);
  padding: 35px;
  border-radius: 15px;
}

.contact-form-wrapper h2 {
  text-align: center;
  font-size: 26px;
  margin-bottom: 25px;
}

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

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

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 12px;
  border: 1px solid rgba(100, 116, 139, 0.3);
  border-radius: 8px;
  font-family: 'Outfit', sans-serif;
  font-size: 14px;
  background: rgba(255, 255, 255, 0.8);
  transition: all 0.3s;
}

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

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

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

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

.submit-button {
  background: var(--primary);
  color: white;
  border: none;
  padding: 14px 35px;
  border-radius: 25px;
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s;
  display: block;
  margin: 0 auto;
}

.submit-button:hover {
  background: var(--secondary);
  transform: translateY(-2px);
}

.map-section {
  background: white;
}

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

.policy-section {
  background: rgba(255, 255, 255, 0.5);
  padding: 60px 0;
}

.policy-section h1 {
  text-align: center;
}

.policy-date {
  text-align: center;
  color: var(--gray);
  font-size: 14px;
  margin-bottom: 35px;
}

.policy-content {
  max-width: 900px;
  margin: 0 auto;
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(10px);
  padding: 40px;
  border-radius: 15px;
}

.policy-content h2 {
  text-align: center;
  font-size: 24px;
  margin-top: 30px;
  margin-bottom: 15px;
}

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

.policy-content h3 {
  font-size: 18px;
  margin-top: 20px;
  margin-bottom: 10px;
  text-align: center;
}

.policy-content h4 {
  font-size: 16px;
  margin-top: 15px;
  margin-bottom: 8px;
  font-weight: 600;
  text-align: center;
}

.policy-content p {
  font-size: 14px;
  color: var(--gray);
  margin-bottom: 15px;
  line-height: 1.7;
  text-align: center;
}

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

.policy-content li {
  font-size: 14px;
  color: var(--gray);
  margin-bottom: 8px;
  line-height: 1.7;
}

.error-section {
  background: rgba(255, 255, 255, 0.5);
  padding: 100px 0;
  min-height: calc(100vh - 200px);
  display: flex;
  align-items: center;
}

.error-content {
  text-align: center;
}

.error-content h1 {
  font-size: 100px;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 15px;
  font-family: 'Space Grotesk', sans-serif;
}

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

.error-content p {
  font-size: 16px;
  color: var(--gray);
  margin-bottom: 30px;
}

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

.secondary-button {
  display: inline-block;
  background: transparent;
  color: var(--primary);
  border: 2px solid var(--primary);
  padding: 12px 30px;
  border-radius: 25px;
  text-decoration: none;
  font-weight: 600;
  font-size: 14px;
  transition: all 0.3s;
}

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

.thankyou-section {
  background: rgba(255, 255, 255, 0.5);
  padding: 100px 0;
  min-height: calc(100vh - 155px);
  display: flex;
  align-items: center;
}

.thankyou-content {
  text-align: center;
  max-width: 700px;
  margin: 0 auto;
}

.thankyou-content i {
  font-size: 80px;
  color: #10b981;
  margin-bottom: 25px;
}

.thankyou-content h1 {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 36px;
  font-weight: 700;
  margin-bottom: 20px;
  color: var(--dark);
}

.thankyou-content p {
  font-size: 16px;
  color: var(--gray);
  margin-bottom: 15px;
  line-height: 1.7;
}

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

@media (max-width: 768px) {
  nav {
    position: fixed;
    top: 70px;
    left: -100%;
    width: 100%;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    flex-direction: column;
    padding: 20px;
    transition: left 0.3s;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  }

  nav a {
    color: black;
  }

  nav.active {
    left: 0;
  }

  .menu-toggle {
    display: block;
  }

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

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

  h2 {
    font-size: 26px;
  }

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

  .contact-wrapper {
    grid-template-columns: 1fr;
  }

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

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

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

  .error-content h1 {
    font-size: 70px;
  }

  .thankyou-content i {
    font-size: 60px;
  }

  .thankyou-content h1 {
    font-size: 28px;
  }
}

@media (max-width: 480px) {
  .logo {
    font-size: 17px;
  }

  .hero h1 {
    font-size: 26px;
  }

  h2 {
    font-size: 22px;
  }

  .services-grid,
  .products-grid,
  .process-steps,
  .details-grid,
  .materials-list,
  .repair-grid,
  .types-content,
  .process-timeline {
    grid-template-columns: 1fr;
  }

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