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

:root {
  --primary: #2d3142;
  --secondary: #bfc0c0;
  --accent: #ef8354;
  --light: #f7f7f7;
  --dark: #1a1b26;
  --text: #4f5d75;
  --white: #ffffff;
}

html {
  scroll-behavior: smooth;
}

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

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: 'Syne', sans-serif;
  color: var(--primary);
  font-weight: 700;
  line-height: 1.2;
}

h1 {
  font-size: 2.5rem;
}

h2 {
  font-size: 2rem;
}

h3 {
  font-size: 1.4rem;
}

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

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

.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: 18px 0;
  z-index: 9999;
  transform: translateY(100%);
  transition: transform 0.4s ease;
}

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

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

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

.privacy-content a {
  color: var(--accent);
  text-decoration: underline;
}

#acceptPrivacy {
  background: var(--accent);
  color: var(--white);
  border: none;
  padding: 10px 24px;
  border-radius: 4px;
  cursor: pointer;
  font-size: 14px;
  font-weight: 500;
  transition: all 0.3s ease;
}

#acceptPrivacy:hover {
  background: #d97347;
  transform: translateY(-2px);
}

.header-modern {
  background: rgba(255, 255, 255, 0.98);
  backdrop-filter: blur(10px);
  padding: 20px 0;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  transition: all 0.4s ease;
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.header-modern.scrolled {
  padding: 12px 0;
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.08);
}

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

.logo-modern {
  font-family: 'Syne', sans-serif;
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--primary);
  letter-spacing: -1px;
}

.nav-modern {
  display: flex;
  gap: 40px;
  align-items: center;
}

.nav-modern a {
  font-size: 15px;
  font-weight: 500;
  color: var(--text);
  transition: color 0.3s ease;
}

.nav-modern a:hover {
  color: var(--accent);
}

.nav-modern .nav-cta {
  background: var(--accent);
  color: var(--white);
  padding: 10px 24px;
  border-radius: 6px;
}

.nav-modern .nav-cta:hover {
  background: var(--primary);
}

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

.menu-toggle span {
  width: 25px;
  height: 2px;
  background: var(--primary);
  transition: all 0.3s ease;
  display: block;
}

.menu-toggle.active span:nth-child(1) {
  transform: rotate(45deg) translate(7px, 7px);
}

.menu-toggle.active span:nth-child(2) {
  opacity: 0;
}

.menu-toggle.active span:nth-child(3) {
  transform: rotate(-45deg) translate(7px, -7px);
}

.hero-modern {
  padding: 140px 0 80px;
  background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
  position: relative;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  top: 0;
  right: 0;
  width: 50%;
  height: 100%;
  background: linear-gradient(
    135deg,
    rgba(239, 131, 84, 0.05) 0%,
    rgba(45, 49, 66, 0.05) 100%
  );
  clip-path: polygon(20% 0, 100% 0, 100% 100%, 0 100%);
}

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

.hero-badge {
  display: inline-block;
  background: rgba(239, 131, 84, 0.1);
  color: var(--accent);
  padding: 8px 18px;
  border-radius: 30px;
  font-size: 13px;
  font-weight: 600;
  margin-bottom: 20px;
}

.hero-text h1 {
  font-size: 3.2rem;
  line-height: 1.1;
  margin-bottom: 24px;
  color: var(--primary);
}

.hero-text p {
  font-size: 1.1rem;
  line-height: 1.8;
  color: var(--text);
  margin-bottom: 35px;
}

.hero-actions {
  display: flex;
  gap: 15px;
  margin-bottom: 40px;
  flex-wrap: wrap;
}

.btn-hero-primary {
  display: inline-block;
  background: var(--accent);
  color: var(--white);
  padding: 16px 36px;
  border-radius: 8px;
  font-weight: 600;
  font-size: 15px;
  transition: all 0.3s ease;
}

.btn-hero-primary:hover {
  background: var(--primary);
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(239, 131, 84, 0.3);
}

.btn-hero-secondary {
  display: inline-block;
  background: transparent;
  color: var(--primary);
  padding: 16px 36px;
  border-radius: 8px;
  font-weight: 600;
  font-size: 15px;
  border: 2px solid var(--primary);
  transition: all 0.3s ease;
}

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

.hero-stats {
  display: flex;
  gap: 40px;
}

.stat-box {
  display: flex;
  flex-direction: column;
}

.stat-num {
  font-size: 2rem;
  font-weight: 700;
  color: var(--accent);
  font-family: 'Syne', sans-serif;
  line-height: 1;
}

.stat-text {
  font-size: 13px;
  color: var(--text);
  margin-top: 5px;
}

.hero-image {
  position: relative;
}

.image-frame {
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.15);
}

.image-frame img {
  width: 100%;
  height: auto;
  display: block;
}

.btn-primary {
  display: inline-block;
  background: var(--accent);
  color: var(--white);
  padding: 14px 32px;
  border-radius: 6px;
  font-weight: 600;
  font-size: 15px;
  transition: all 0.3s ease;
  border: 2px solid var(--accent);
}

.btn-primary:hover {
  background: transparent;
  color: var(--accent);
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(239, 131, 84, 0.3);
}

.btn-secondary {
  display: inline-block;
  background: transparent;
  color: var(--primary);
  padding: 14px 32px;
  border-radius: 6px;
  font-weight: 600;
  font-size: 15px;
  transition: all 0.3s ease;
  border: 2px solid var(--primary);
}

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

section {
  padding: 70px 0;
}

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

.label {
  display: inline-block;
  background: rgba(239, 131, 84, 0.1);
  color: var(--accent);
  padding: 6px 16px;
  border-radius: 20px;
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 12px;
}

.section-header h2 {
  font-size: 2.5rem;
  margin-top: 10px;
}

.section-intro {
  max-width: 800px;
  margin-bottom: 50px;
}

.section-intro.centered {
  text-align: center;
  margin-left: auto;
  margin-right: auto;
}

.section-tag {
  display: inline-block;
  background: rgba(239, 131, 84, 0.1);
  color: var(--accent);
  padding: 6px 16px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-bottom: 15px;
}

.section-intro h2 {
  font-size: 2.5rem;
  margin-bottom: 15px;
}

.section-intro p {
  font-size: 1.05rem;
  line-height: 1.7;
  color: var(--text);
}

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

.services-columns {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}

.service-column {
  background: var(--light);
  padding: 40px;
  border-radius: 16px;
  transition: all 0.4s ease;
}

.service-column:hover {
  background: var(--white);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
  transform: translateY(-5px);
}

.service-number {
  font-size: 3.5rem;
  font-weight: 700;
  color: rgba(239, 131, 84, 0.15);
  font-family: 'Syne', sans-serif;
  line-height: 1;
  margin-bottom: 20px;
}

.service-column h3 {
  font-size: 1.5rem;
  margin-bottom: 15px;
}

.service-column p {
  font-size: 15px;
  line-height: 1.7;
  color: var(--text);
  margin-bottom: 12px;
}

.link-modern {
  display: inline-block;
  color: var(--accent);
  font-weight: 600;
  font-size: 14px;
  margin-top: 10px;
  transition: all 0.3s ease;
}

.link-modern:hover {
  color: var(--primary);
}

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

.expertise-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 70px;
  align-items: center;
}

.expertise-content h2 {
  margin-bottom: 20px;
  margin-top: 10px;
  font-size: 2.3rem;
}

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

.expertise-image {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.15);
}

.expertise-image img {
  width: 100%;
  height: auto;
  display: block;
}

.image-overlay {
  position: absolute;
  bottom: 30px;
  left: 30px;
  background: rgba(255, 255, 255, 0.95);
  padding: 25px 30px;
  border-radius: 12px;
  backdrop-filter: blur(10px);
}

.overlay-number {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--accent);
  font-family: 'Syne', sans-serif;
  display: block;
  line-height: 1;
}

.overlay-label {
  font-size: 14px;
  color: var(--text);
  font-weight: 500;
}

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

.process-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
  max-width: 1000px;
  margin: 0 auto;
}

.process-item {
  background: var(--light);
  padding: 35px;
  border-radius: 16px;
  transition: all 0.3s ease;
}

.process-item:hover {
  background: var(--white);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

.process-header {
  margin-bottom: 15px;
}

.process-num {
  display: inline-block;
  background: var(--accent);
  color: var(--white);
  padding: 6px 14px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 600;
  margin-bottom: 12px;
}

.process-item h3 {
  font-size: 1.3rem;
  margin-bottom: 12px;
}

.process-item p {
  font-size: 15px;
  line-height: 1.7;
  color: var(--text);
}

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

.pricing-table {
  max-width: 900px;
  margin: 0 auto;
}

.price-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: var(--white);
  padding: 35px 40px;
  border-radius: 16px;
  margin-bottom: 20px;
  transition: all 0.3s ease;
  gap: 30px;
}

.price-row:hover {
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  transform: translateX(5px);
}

.price-row.featured {
  background: linear-gradient(135deg, var(--accent) 0%, #d97347 100%);
}

.price-row.featured .price-info h3,
.price-row.featured .price-info p,
.price-row.featured .price-value,
.price-row.featured .price-label {
  color: var(--white);
}

.price-info {
  flex: 1;
}

.price-info h3 {
  font-size: 1.4rem;
  margin-bottom: 10px;
}

.price-info p {
  font-size: 14px;
  line-height: 1.6;
  color: var(--text);
}

.price-amount {
  text-align: right;
}

.price-value {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--primary);
  font-family: 'Syne', sans-serif;
  display: block;
  line-height: 1;
}

.price-label {
  font-size: 13px;
  color: var(--text);
  margin-top: 5px;
  display: block;
}

.pricing-note {
  text-align: center;
  margin-top: 30px;
}

.pricing-note p {
  font-size: 14px;
  color: var(--text);
  line-height: 1.6;
}

.quality-section {
  padding: 80px 0;
  background: var(--white);
}

.quality-wrapper {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 70px;
  align-items: center;
}

.quality-image {
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.15);
}

.quality-image img {
  width: 100%;
  height: auto;
  display: block;
}

.quality-content h2 {
  margin-bottom: 25px;
  margin-top: 10px;
  font-size: 2.3rem;
}

.quality-content > p {
  font-size: 1.05rem;
  line-height: 1.8;
  margin-bottom: 30px;
  color: var(--text);
}

.quality-points {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 25px;
}

.quality-point {
  background: var(--light);
  padding: 25px;
  border-radius: 12px;
}

.point-title {
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--primary);
  display: block;
  margin-bottom: 8px;
}

.quality-point p {
  font-size: 14px;
  line-height: 1.6;
  color: var(--text);
}

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

.location-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
}

.location-info h2 {
  margin-bottom: 20px;
  margin-top: 10px;
  font-size: 2.3rem;
}

.location-info > p {
  font-size: 1.05rem;
  line-height: 1.8;
  margin-bottom: 35px;
  color: var(--text);
}

.location-details {
  display: flex;
  flex-direction: column;
  gap: 25px;
  margin-bottom: 35px;
}

.detail-box {
  background: var(--white);
  padding: 25px;
  border-radius: 12px;
}

.detail-box h4 {
  font-size: 1.1rem;
  margin-bottom: 10px;
  color: var(--primary);
}

.detail-box p {
  font-size: 14px;
  line-height: 1.7;
  color: var(--text);
}

.btn-location {
  display: inline-block;
  background: var(--accent);
  color: var(--white);
  padding: 14px 32px;
  border-radius: 8px;
  font-weight: 600;
  font-size: 15px;
  transition: all 0.3s ease;
}

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

.location-features {
  display: flex;
  flex-direction: column;
  gap: 25px;
}

.feature-box {
  background: var(--white);
  padding: 30px;
  border-radius: 12px;
  transition: all 0.3s ease;
}

.feature-box:hover {
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

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

.feature-box p {
  font-size: 14px;
  line-height: 1.7;
  color: var(--text);
}

.testimonials-section {
  padding: 80px 0;
  background: var(--white);
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.testimonial-card {
  background: var(--light);
  padding: 35px;
  border-radius: 16px;
  transition: all 0.3s ease;
}

.testimonial-card:hover {
  background: var(--white);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  transform: translateY(-5px);
}

.testimonial-text {
  font-size: 15px;
  line-height: 1.7;
  color: var(--text);
  margin-bottom: 20px;
  font-style: italic;
}

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

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

.author-location {
  font-size: 13px;
  color: var(--text);
}

.cta-modern {
  padding: 80px 0;
  background: linear-gradient(135deg, var(--primary) 0%, var(--dark) 100%);
}

.cta-wrapper {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 40px;
}

.cta-text {
  flex: 1;
}

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

.cta-text p {
  color: rgba(255, 255, 255, 0.9);
  font-size: 1.05rem;
  line-height: 1.7;
}

.cta-actions {
  display: flex;
  gap: 15px;
  flex-wrap: wrap;
}

.btn-cta-primary {
  display: inline-block;
  background: var(--accent);
  color: var(--white);
  padding: 16px 36px;
  border-radius: 8px;
  font-weight: 600;
  font-size: 15px;
  transition: all 0.3s ease;
}

.btn-cta-primary:hover {
  background: var(--white);
  color: var(--primary);
  transform: translateY(-2px);
}

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

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

.page-hero {
  background: linear-gradient(135deg, var(--primary) 0%, var(--dark) 100%);
  padding: 80px 0 60px;
  text-align: center;
  margin-top: 70px;
}

.page-hero h1 {
  color: var(--white);
  margin-bottom: 12px;
}

.page-hero p {
  color: rgba(255, 255, 255, 0.9);
  font-size: 1.1rem;
}

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

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

.detail-item {
  background: var(--light);
  padding: 30px;
  border-radius: 12px;
  transition: all 0.3s ease;
}

.detail-item:hover {
  background: var(--white);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  transform: translateY(-5px);
}

.detail-item h3 {
  margin-bottom: 12px;
  font-size: 1.2rem;
}

.detail-item p {
  font-size: 14px;
  line-height: 1.7;
}

.process-detail {
  background: var(--light);
  padding: 80px 0;
}

.process-timeline {
  max-width: 800px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 25px;
}

.timeline-item {
  background: var(--white);
  padding: 30px;
  border-radius: 12px;
  transition: all 0.3s ease;
}

.timeline-item:hover {
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

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

.timeline-content p {
  font-size: 14px;
  line-height: 1.7;
}

.showcase-section {
  background: var(--white);
  padding: 80px 0;
}

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

.showcase-image {
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.15);
}

.showcase-image img {
  width: 100%;
  height: auto;
  display: block;
}

.showcase-text h2 {
  margin-bottom: 20px;
  margin-top: 10px;
}

.showcase-text p {
  margin-bottom: 16px;
  line-height: 1.8;
}

.feature-list {
  list-style: none;
  margin-top: 25px;
}

.feature-list li {
  padding: 10px 0;
  font-size: 15px;
  position: relative;
  padding-left: 25px;
  margin-left: 25px;
}

.feature-list li:before {
  content: '✓';
  position: absolute;
  left: -25px;
  color: var(--accent);
  font-weight: 700;
}

.services-detail {
  background: var(--white);
}

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

.detail-item {
  background: var(--light);
  padding: 30px;
  border-radius: 12px;
  transition: all 0.3s ease;
}

.detail-item:hover {
  background: var(--white);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  transform: translateY(-5px);
}

.detail-item i {
  font-size: 2.2rem;
  color: var(--accent);
  margin-bottom: 18px;
}

.detail-item h3 {
  margin-bottom: 12px;
  font-size: 1.2rem;
}

.detail-item p {
  font-size: 14px;
  line-height: 1.7;
}

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

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

.benefit-card {
  background: var(--white);
  padding: 30px;
  border-radius: 12px;
  text-align: center;
  transition: all 0.3s ease;
}

.benefit-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
}

.benefit-card i {
  font-size: 2.5rem;
  color: var(--accent);
  margin-bottom: 18px;
}

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

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

.materials-section {
  background: var(--white);
}

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

.materials-text h2 {
  margin-bottom: 20px;
  margin-top: 10px;
}

.materials-text p {
  margin-bottom: 16px;
  line-height: 1.8;
}

.materials-text .btn-primary {
  margin-top: 15px;
}

.materials-image {
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
}

.materials-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

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

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

.timeline-item {
  margin-bottom: 40px;
  position: relative;
}

.timeline-item:not(:last-child)::before {
  content: '';
  position: absolute;
  left: 40px;
  top: 80px;
  width: 2px;
  height: calc(100% + 20px);
  background: rgba(239, 131, 84, 0.2);
}

.timeline-icon {
  width: 80px;
  height: 80px;
  background: var(--accent);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 1.8rem;
  flex-shrink: 0;
}

.timeline-content {
  background: var(--white);
  padding: 25px;
  border-radius: 12px;
}

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

.timeline-content p {
  font-size: 14px;
  line-height: 1.7;
}

.showcase-section {
  background: var(--white);
}

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

.showcase-image {
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
}

.showcase-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.showcase-text h2 {
  margin-bottom: 20px;
  margin-top: 10px;
}

.showcase-text p {
  margin-bottom: 16px;
  line-height: 1.8;
}

.feature-list {
  list-style: none;
  margin-top: 25px;
}

.feature-list li {
  padding: 10px 0;
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 15px;
}

.feature-list i {
  color: var(--accent);
  font-size: 16px;
}

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

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

.contact-info {
  display: flex;
  flex-direction: column;
  gap: 25px;
}

.info-card {
  background: var(--light);
  padding: 25px;
  border-radius: 12px;
  transition: all 0.3s ease;
}

.info-card:hover {
  background: var(--white);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
  transform: translateX(5px);
}

.info-card i {
  font-size: 1.8rem;
  color: var(--accent);
  margin-bottom: 12px;
}

.info-card h3 {
  margin-bottom: 8px;
  font-size: 1.1rem;
}

.info-card p {
  font-size: 14px;
  line-height: 1.6;
}

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

.contact-form-wrapper h2 {
  margin-bottom: 10px;
  font-size: 1.8rem;
}

.contact-form-wrapper > p {
  margin-bottom: 25px;
  color: var(--text);
  font-size: 14px;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.form-group {
  display: flex;
  flex-direction: column;
}

.form-group input,
.form-group textarea {
  padding: 14px 16px;
  border: 1px solid rgba(0, 0, 0, 0.1);
  border-radius: 6px;
  font-family: 'Space Grotesk', sans-serif;
  font-size: 14px;
  transition: all 0.3s ease;
  background: var(--white);
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(239, 131, 84, 0.1);
}

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

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

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

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

.checkbox-label a {
  color: var(--accent);
  text-decoration: underline;
}

.contact-form button {
  background: var(--accent);
  color: var(--white);
  border: none;
  padding: 14px 32px;
  border-radius: 6px;
  font-weight: 600;
  font-size: 15px;
  cursor: pointer;
  transition: all 0.3s ease;
  border: 2px solid var(--accent);
}

.contact-form button:hover {
  background: transparent;
  color: var(--accent);
  transform: translateY(-2px);
}

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

.map-section h2 {
  text-align: center;
  margin-bottom: 35px;
  font-size: 2rem;
}

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

.map-wrapper iframe {
  display: block;
  width: 100%;
}

.thankyou-section,
.error-section {
  min-height: calc(100vh - 200px);
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--light);
  margin-top: 70px;
  padding: 80px 0;
}

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

.thankyou-content h1,
.error-content h1 {
  margin-bottom: 18px;
  font-size: 2.2rem;
}

.thankyou-content p,
.error-content p {
  margin-bottom: 15px;
  font-size: 1.05rem;
  line-height: 1.7;
}

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

.error-number {
  font-size: 8rem;
  font-weight: 700;
  color: rgba(239, 131, 84, 0.2);
  font-family: 'Syne', sans-serif;
  line-height: 1;
  margin-bottom: 20px;
}

.policy-section {
  background: var(--white);
  padding: 80px 0;
  margin-top: 70px;
  word-break: break-all;
}

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

.policy-content h1 {
  font-size: 2.5rem;
  margin-bottom: 15px;
}

.policy-date {
  color: var(--text);
  font-size: 14px;
  margin-bottom: 35px;
  padding-bottom: 20px;
  border-bottom: 2px solid var(--light);
}

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

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

.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.7;
}

.policy-content strong {
  color: var(--primary);
  font-weight: 600;
}

.policy-content em {
  font-style: italic;
}

.footer {
  background: var(--dark);
  color: rgba(255, 255, 255, 0.8);
  padding: 30px 0;
}

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

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

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

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

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

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

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

@media (max-width: 968px) {
  h1 {
    font-size: 2rem;
  }

  h2 {
    font-size: 1.7rem;
  }

  .header-modern {
    padding: 15px 0;
  }

  .nav-modern {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--white);
    flex-direction: column;
    padding: 80px 20px 20px;
    box-shadow: none;
    transform: translateX(100%);
    transition: transform 0.3s ease;
    gap: 20px;
    z-index: 999;
    height: 100vh;
  }

  .nav-modern.active {
    transform: translateX(0);
  }

  .nav-modern a {
    font-size: 18px;
    padding: 12px 0;
    border-bottom: 1px solid var(--light);
  }

  .nav-modern .nav-cta {
    border-bottom: none;
    text-align: center;
  }

  .menu-toggle {
    display: flex;
  }

  .hero-modern {
    padding: 100px 0 60px;
  }

  .hero-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .hero-text h1 {
    font-size: 2.3rem;
  }

  .hero-stats {
    gap: 30px;
  }

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

  .expertise-grid,
  .quality-wrapper,
  .location-grid,
  .showcase-content {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .quality-wrapper .quality-image,
  .showcase-content .showcase-image {
    order: -1;
  }

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

  .pricing-table .price-row {
    flex-direction: column;
    align-items: flex-start;
    padding: 30px;
  }

  .price-amount {
    text-align: left;
  }

  .quality-points {
    grid-template-columns: 1fr;
  }

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

  .cta-wrapper {
    flex-direction: column;
    text-align: center;
  }

  .cta-actions {
    justify-content: center;
  }

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

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

@media (max-width: 640px) {
  body {
    font-size: 14px;
  }

  section {
    padding: 50px 0;
  }

  .hero-modern {
    padding: 80px 0 50px;
  }

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

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

  .hero-actions {
    flex-direction: column;
  }

  .hero-actions a {
    width: 100%;
    text-align: center;
  }

  .hero-stats {
    flex-wrap: wrap;
    gap: 20px;
  }

  .section-intro h2 {
    font-size: 1.8rem;
  }

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

  .service-column,
  .process-item,
  .testimonial-card,
  .detail-item {
    padding: 25px;
  }

  .price-row {
    padding: 25px 20px;
  }

  .cta-text h2 {
    font-size: 1.8rem;
  }

  .cta-actions {
    flex-direction: column;
    width: 100%;
  }

  .cta-actions a {
    width: 100%;
    text-align: center;
  }

  .contact-form-wrapper {
    padding: 30px 20px;
  }

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

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

  .error-number {
    font-size: 5rem;
  }

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

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

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

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

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

  body {
    font-size: 13px;
  }

  h1 {
    font-size: 1.5rem;
  }

  h2 {
    font-size: 1.3rem;
  }

  h3 {
    font-size: 1.1rem;
  }

  .logo-modern {
    font-size: 1.2rem;
  }

  .hero-modern {
    padding: 70px 0 40px;
  }

  .hero-text h1 {
    font-size: 1.4rem;
    margin-bottom: 16px;
  }

  .hero-text p {
    font-size: 0.9rem;
    margin-bottom: 25px;
  }

  .hero-badge {
    font-size: 11px;
    padding: 6px 12px;
  }

  .hero-stats {
    gap: 15px;
  }

  .stat-num {
    font-size: 1.5rem;
  }

  .stat-text {
    font-size: 11px;
  }

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

  section {
    padding: 40px 0;
  }

  .section-tag,
  .label {
    font-size: 10px;
    padding: 5px 12px;
  }

  .section-intro h2,
  .section-header h2 {
    font-size: 1.4rem;
  }

  .section-intro p {
    font-size: 0.9rem;
  }

  .service-column,
  .detail-item,
  .benefit-card,
  .process-item,
  .testimonial-card {
    padding: 18px;
  }

  .service-number {
    font-size: 2.5rem;
    margin-bottom: 15px;
  }

  .service-column h3,
  .detail-item h3 {
    font-size: 1.1rem;
  }

  .service-column p,
  .detail-item p {
    font-size: 13px;
  }

  .process-num {
    font-size: 10px;
    padding: 5px 10px;
  }

  .contact-form-wrapper {
    padding: 20px 12px;
  }

  .contact-form-wrapper h2 {
    font-size: 1.3rem;
  }

  .form-group input,
  .form-group textarea {
    padding: 10px 12px;
    font-size: 13px;
  }

  .checkbox-label {
    font-size: 12px;
  }

  .price-row {
    padding: 18px 12px;
    gap: 20px;
  }

  .price-info h3 {
    font-size: 1.1rem;
  }

  .price-info p {
    font-size: 12px;
  }

  .price-value {
    font-size: 2rem;
  }

  .price-label {
    font-size: 11px;
  }

  .quality-point,
  .feature-box,
  .detail-box {
    padding: 18px;
  }

  .point-title,
  .feature-box h4,
  .detail-box h4 {
    font-size: 1rem;
  }

  .quality-point p,
  .feature-box p,
  .detail-box p {
    font-size: 12px;
  }

  .timeline-item {
    padding: 18px;
  }

  .timeline-icon {
    width: 60px;
    height: 60px;
    font-size: 1.4rem;
  }

  .timeline-content {
    padding: 18px;
  }

  .timeline-content h3 {
    font-size: 1.1rem;
  }

  .timeline-content p {
    font-size: 12px;
  }

  .info-card {
    padding: 18px;
  }

  .info-card i {
    font-size: 1.5rem;
  }

  .info-card h3 {
    font-size: 1rem;
  }

  .info-card p {
    font-size: 12px;
  }

  .cta-text h2 {
    font-size: 1.4rem;
  }

  .cta-text p {
    font-size: 0.9rem;
  }

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

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

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

  .footer-info p {
    font-size: 12px;
  }

  .footer-links a {
    font-size: 11px;
  }

  .privacy-content p {
    font-size: 12px;
    min-width: 200px;
  }

  #acceptPrivacy {
    padding: 8px 16px;
    font-size: 12px;
  }

  .image-overlay {
    bottom: 15px;
    left: 15px;
    padding: 15px 18px;
  }

  .overlay-number {
    font-size: 1.8rem;
  }

  .overlay-label {
    font-size: 11px;
  }
}
