*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --primary: #1a2744;
  --primary-rgb: 26, 39, 68;
  --primary-light: #243a5e;
  --secondary: #c84b31;
  --secondary-light: #d65f47;
  --accent: #ecad29;
  --accent-light: #f2c14e;
  --dark: #0e1a2e;
  --text: #2d3748;
  --text-light: #64748b;
  --bg: #ffffff;
  --bg-alt: #f7f8fb;
  --bg-warm: #fef9f0;
  --border: #e2e8f0;
  --white: #ffffff;
  --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.05);
  --shadow: 0 4px 16px rgba(0, 0, 0, 0.07);
  --shadow-lg: 0 12px 40px rgba(0, 0, 0, 0.1);
  --radius: 6px;
  --radius-lg: 12px;
  --transition: 0.3s ease;
  --font-heading: "Newsreader", Georgia, serif;
  --font-body: "Space Grotesk", system-ui, sans-serif;
  --header-h: 62px;
}

html {
  scroll-behavior: smooth;
  font-size: 14px;
}

body {
  font-family: var(--font-body);
  color: var(--text);
  line-height: 1.6;
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

a {
  text-decoration: none;
  color: inherit;
  transition: color var(--transition);
}

ul,
ol {
  list-style: none;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

button {
  cursor: pointer;
  border: none;
  background: none;
  font-family: inherit;
  font-size: inherit;
}

input,
textarea {
  font-family: inherit;
  font-size: inherit;
  border: none;
  outline: none;
}

.container {
  width: 100%;
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 20px;
}

.section {
  padding: 56px 0;
}

.section-alt {
  background: var(--bg-alt);
}

.section-warm {
  background: var(--bg-warm);
}

.section-dark {
  background: var(--primary);
  color: var(--white);
}

.section-header {
  text-align: center;
  margin-bottom: 40px;
}

.section-label {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--secondary);
  margin-bottom: 8px;
}

.section-title {
  font-family: var(--font-heading);
  font-size: 2rem;
  font-weight: 700;
  color: var(--primary);
  line-height: 1.2;
  margin-bottom: 12px;
}

.section-dark .section-title {
  color: var(--white);
}

.section-subtitle {
  font-size: 0.95rem;
  color: var(--text-light);
  max-width: 560px;
  margin: 0 auto;
}

.section-dark .section-subtitle {
  color: rgba(255, 255, 255, 0.7);
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  transition:
    transform 0.4s cubic-bezier(0.16, 1, 0.3, 1),
    background 0.3s ease,
    box-shadow 0.3s ease;
  background: linear-gradient(
    135deg,
    var(--primary) 0%,
    var(--primary-light) 50%,
    #2d4a7a 100%
  );
}

.header-accent {
  height: 3px;
  background: linear-gradient(
    90deg,
    var(--secondary),
    var(--accent),
    var(--secondary)
  );
  transition: opacity var(--transition);
}

.site-header.scrolled .header-accent {
  opacity: 0;
}

.site-header.scrolled {
  background: linear-gradient(
    135deg,
    var(--primary) 0%,
    var(--primary-light) 50%,
    #2d4a7a 100%
  );
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  box-shadow: var(--shadow-sm);
}

.site-header.hidden {
  transform: translateY(-100%);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: var(--header-h);
}

.brand {
  display: flex;
  align-items: center;
  gap: 8px;
  z-index: 1002;
}

.brand-icon {
  width: 32px;
  height: 32px;
  background: var(--secondary);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 0.85rem;
  flex-shrink: 0;
}

.brand-text {
  font-family: var(--font-heading);
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--primary);
  letter-spacing: -0.3px;
}

.hero-area .site-header .brand-text,
.site-header:not(.scrolled) .brand-text {
  color: var(--white);
}

.site-header:not(.scrolled) .brand-icon {
  background: rgba(255, 255, 255, 0.15);
}

.site-header.scrolled .brand-text {
  color: white;
}

.site-header.scrolled .brand-icon {
  background: var(--secondary);
}

.main-nav {
  display: flex;
  align-items: center;
}

.nav-list {
  display: flex;
  align-items: center;
  gap: 6px;
}

.nav-link {
  display: inline-block;
  padding: 6px 14px;
  font-size: 0.85rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.85);
  border-radius: var(--radius);
  transition: var(--transition);
  position: relative;
}

.nav-link:hover,
.nav-link.active {
  color: var(--white);
  background: rgba(255, 255, 255, 0.1);
}

.site-header.scrolled .nav-link:hover,
.site-header.scrolled .nav-link.active {
  color: white;
  background: rgba(200, 75, 49, 0.08);
}

.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 36px;
  height: 36px;
  border-radius: var(--radius);
  z-index: 1002;
  transition: background var(--transition);
}

.nav-toggle:hover {
  background: rgba(255, 255, 255, 0.1);
}

.site-header.scrolled .nav-toggle:hover {
  background: rgba(0, 0, 0, 0.05);
}

.nav-toggle span {
  display: block;
  width: 20px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: var(--transition);
  margin: 2.5px 0;
}

.site-header.scrolled .nav-toggle span {
  background: var(--primary);
}

.nav-toggle.active span:nth-child(1) {
  transform: rotate(45deg) translate(4px, 4px);
  background: var(--white);
}

.nav-toggle.active span:nth-child(2) {
  opacity: 0;
  transform: scaleX(0);
}

.nav-toggle.active span:nth-child(3) {
  transform: rotate(-45deg) translate(6px, -6px);
  background: var(--white);
}

.hero {
  position: relative;
  min-height: 520px;
  display: flex;
  align-items: center;
  background: linear-gradient(
    135deg,
    var(--primary) 0%,
    var(--primary-light) 50%,
    #2d4a7a 100%
  );
  padding-top: calc(var(--header-h) + 40px);
  padding-bottom: 56px;
  overflow: hidden;
}

.hero::before {
  content: "";
  position: absolute;
  top: -50%;
  right: -20%;
  width: 600px;
  height: 600px;
  background: radial-gradient(
    circle,
    rgba(236, 173, 41, 0.1) 0%,
    transparent 70%
  );
  border-radius: 50%;
}

.hero::after {
  content: "";
  position: absolute;
  bottom: -30%;
  left: -10%;
  width: 400px;
  height: 400px;
  background: radial-gradient(
    circle,
    rgba(200, 75, 49, 0.08) 0%,
    transparent 70%
  );
  border-radius: 50%;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 580px;
}

.hero-label {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(255, 255, 255, 0.1);
  padding: 5px 14px;
  border-radius: 20px;
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--accent);
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-bottom: 16px;
  backdrop-filter: blur(4px);
}

.hero-title {
  font-family: var(--font-heading);
  font-size: 2.8rem;
  font-weight: 700;
  color: var(--white);
  line-height: 1.15;
  margin-bottom: 16px;
}

.hero-title span {
  color: var(--accent);
}

.hero-desc {
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.7;
  margin-bottom: 28px;
  max-width: 480px;
}

.hero-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 24px;
  font-size: 0.85rem;
  font-weight: 600;
  border-radius: var(--radius);
  transition: var(--transition);
  white-space: nowrap;
}

.btn-primary {
  background: var(--secondary);
  color: var(--white);
}

.btn-primary:hover {
  background: var(--secondary-light);
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(200, 75, 49, 0.3);
}

.btn-outline {
  background: transparent;
  color: var(--white);
  border: 1.5px solid rgba(255, 255, 255, 0.3);
}

.btn-outline:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.5);
}

.btn-secondary {
  background: var(--primary);
  color: var(--white);
}

.btn-secondary:hover {
  background: var(--primary-light);
  transform: translateY(-1px);
}

.btn-accent {
  background: var(--accent);
  color: var(--primary);
}

.btn-accent:hover {
  background: var(--accent-light);
  transform: translateY(-1px);
}

.btn i {
  font-size: 0.8rem;
  transition: transform var(--transition);
}

.btn:hover i {
  transform: translateX(3px);
}

.page-hero {
  background: linear-gradient(
    135deg,
    var(--primary) 0%,
    var(--primary-light) 60%,
    #2d4a7a 100%
  );
  padding-top: calc(var(--header-h) + 36px);
  padding-bottom: 40px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.page-hero::before {
  content: "";
  position: absolute;
  top: -40%;
  right: -15%;
  width: 400px;
  height: 400px;
  background: radial-gradient(
    circle,
    rgba(236, 173, 41, 0.08) 0%,
    transparent 70%
  );
  border-radius: 50%;
}

.page-hero-title {
  font-family: var(--font-heading);
  font-size: 2.2rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 10px;
  position: relative;
  z-index: 2;
}

.page-hero-desc {
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.75);
  max-width: 520px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

.breadcrumb {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-top: 14px;
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.5);
  position: relative;
  z-index: 2;
}

.breadcrumb a {
  color: rgba(255, 255, 255, 0.6);
}

.breadcrumb a:hover {
  color: var(--accent);
}

.breadcrumb i {
  font-size: 0.6rem;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.service-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 28px 20px;
  text-align: center;
  border: 1px solid var(--border);
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

.service-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--secondary), var(--accent));
  transform: scaleX(0);
  transition: transform var(--transition);
}

.service-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-color: transparent;
}

.service-card:hover::before {
  transform: scaleX(1);
}

.service-icon {
  width: 48px;
  height: 48px;
  margin: 0 auto 16px;
  background: linear-gradient(
    135deg,
    rgba(200, 75, 49, 0.08),
    rgba(236, 173, 41, 0.08)
  );
  border-radius: var(--radius-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  color: var(--secondary);
}

.service-card h3 {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--primary);
  margin-bottom: 8px;
}

.service-card p {
  font-size: 0.82rem;
  color: var(--text-light);
  line-height: 1.6;
}

.about-preview {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
}

.about-preview-img {
  border-radius: var(--radius-lg);
  overflow: hidden;
  position: relative;
}

.about-preview-img img {
  width: 100%;
  height: 320px;
  object-fit: cover;
  border-radius: var(--radius-lg);
}

.about-preview-img::after {
  content: "";
  position: absolute;
  bottom: -8px;
  right: -8px;
  width: 60%;
  height: 60%;
  border: 2px solid var(--accent);
  border-radius: var(--radius-lg);
  z-index: -1;
}

.about-preview-content .section-label {
  text-align: left;
}

.about-preview-content .section-title {
  text-align: left;
}

.about-preview-content p {
  font-size: 0.9rem;
  color: var(--text-light);
  margin-bottom: 12px;
  line-height: 1.7;
}

.about-preview-content .stats-row {
  display: flex;
  gap: 24px;
  margin-top: 20px;
}

.stat-item {
  text-align: center;
}

.stat-num {
  font-family: var(--font-heading);
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--secondary);
  line-height: 1;
}

.stat-label {
  font-size: 0.75rem;
  color: var(--text-light);
  margin-top: 4px;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.feature-card {
  text-align: center;
  padding: 24px 16px;
}

.feature-icon {
  width: 52px;
  height: 52px;
  margin: 0 auto 14px;
  background: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.15rem;
  color: var(--secondary);
  box-shadow: var(--shadow);
}

.feature-card h3 {
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 600;
  color: var(--primary);
  margin-bottom: 6px;
}

.feature-card p {
  font-size: 0.8rem;
  color: var(--text-light);
  line-height: 1.6;
}

.process-steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  position: relative;
}

.process-step {
  text-align: center;
  padding: 20px;
  position: relative;
}

.step-num {
  width: 40px;
  height: 40px;
  margin: 0 auto 16px;
  background: linear-gradient(135deg, var(--secondary), var(--accent));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  font-weight: 700;
  color: var(--white);
  position: relative;
}

.process-step h3 {
  font-family: var(--font-heading);
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--primary);
  margin-bottom: 8px;
}

.process-step p {
  font-size: 0.82rem;
  color: var(--text-light);
  line-height: 1.6;
}

.cta-section {
  text-align: center;
  padding: 56px 0;
}

.cta-box {
  background: linear-gradient(
    135deg,
    var(--primary) 0%,
    var(--primary-light) 100%
  );
  border-radius: var(--radius-lg);
  padding: 48px 32px;
  position: relative;
  overflow: hidden;
}

.cta-box::before {
  content: "";
  position: absolute;
  top: -50%;
  right: -20%;
  width: 300px;
  height: 300px;
  background: radial-gradient(
    circle,
    rgba(236, 173, 41, 0.12) 0%,
    transparent 70%
  );
  border-radius: 50%;
}

.cta-box h2 {
  font-family: var(--font-heading);
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 10px;
  position: relative;
  z-index: 2;
}

.cta-box p {
  font-size: 0.92rem;
  color: rgba(255, 255, 255, 0.75);
  margin-bottom: 24px;
  max-width: 480px;
  margin-left: auto;
  margin-right: auto;
  position: relative;
  z-index: 2;
}

.cta-box .btn {
  position: relative;
  z-index: 2;
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.product-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border);
  transition: var(--transition);
}

.product-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-color: transparent;
}

.product-badge {
  display: inline-block;
  background: var(--accent);
  color: var(--primary);
  font-size: 0.7rem;
  font-weight: 700;
  padding: 3px 10px;
  border-radius: 0 0 var(--radius) var(--radius);
  text-transform: uppercase;
  letter-spacing: 1px;
}

.product-body {
  padding: 24px 20px;
}

.product-icon-wrap {
  width: 48px;
  height: 48px;
  background: linear-gradient(
    135deg,
    rgba(200, 75, 49, 0.08),
    rgba(236, 173, 41, 0.08)
  );
  border-radius: var(--radius-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  color: var(--secondary);
  margin-bottom: 14px;
}

.product-card h3 {
  font-family: var(--font-heading);
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--primary);
  margin-bottom: 8px;
}

.product-card p {
  font-size: 0.82rem;
  color: var(--text-light);
  line-height: 1.6;
  margin-bottom: 16px;
}

.product-price {
  font-family: var(--font-heading);
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--secondary);
}

.product-price small {
  font-size: 0.75rem;
  font-weight: 400;
  color: var(--text-light);
}

.product-features {
  margin: 14px 0;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.product-features li {
  font-size: 0.8rem;
  color: var(--text);
  display: flex;
  align-items: center;
  gap: 8px;
}

.product-features li i {
  color: var(--accent);
  font-size: 0.7rem;
}

.split-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
}

.split-section.reverse {
  direction: rtl;
}

.split-section.reverse > * {
  direction: ltr;
}

.split-img img {
  border-radius: var(--radius-lg);
  width: 100%;
  height: 340px;
  object-fit: cover;
}

.split-content .section-label {
  text-align: left;
}

.split-content .section-title {
  text-align: left;
}

.split-content p {
  font-size: 0.9rem;
  color: var(--text-light);
  line-height: 1.7;
  margin-bottom: 12px;
}

.guarantee-list {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-top: 16px;
}

.guarantee-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
}

.guarantee-icon {
  width: 36px;
  height: 36px;
  background: rgba(200, 75, 49, 0.08);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.85rem;
  color: var(--secondary);
  flex-shrink: 0;
}

.guarantee-item h4 {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--primary);
  margin-bottom: 2px;
}

.guarantee-item p {
  font-size: 0.8rem;
  margin-bottom: 0;
}

.map-section {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
}

.map-section iframe {
  display: block;
  width: 100%;
  height: 360px;
  border: 0;
}

.location-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  align-items: start;
}

.location-details {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.location-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
}

.location-icon {
  width: 40px;
  height: 40px;
  background: linear-gradient(
    135deg,
    rgba(200, 75, 49, 0.08),
    rgba(236, 173, 41, 0.08)
  );
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.9rem;
  color: var(--secondary);
  flex-shrink: 0;
}

.location-item h4 {
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--primary);
  margin-bottom: 2px;
}

.location-item p {
  font-size: 0.82rem;
  color: var(--text-light);
  line-height: 1.5;
}

.hours-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.82rem;
}

.hours-table tr {
  border-bottom: 1px solid var(--border);
}

.hours-table td {
  padding: 8px 0;
}

.hours-table td:last-child {
  text-align: right;
  color: var(--text-light);
}

.about-story {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
}

.about-story-img img {
  border-radius: var(--radius-lg);
  width: 100%;
  height: 320px;
  object-fit: cover;
}

.about-story-content p {
  font-size: 0.9rem;
  color: var(--text-light);
  line-height: 1.7;
  margin-bottom: 12px;
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.value-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 24px 18px;
  text-align: center;
  border: 1px solid var(--border);
  transition: var(--transition);
}

.value-card:hover {
  border-color: var(--secondary);
  transform: translateY(-2px);
}

.value-icon {
  width: 44px;
  height: 44px;
  margin: 0 auto 12px;
  background: linear-gradient(
    135deg,
    rgba(200, 75, 49, 0.08),
    rgba(236, 173, 41, 0.08)
  );
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  color: var(--secondary);
}

.value-card h3 {
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 600;
  color: var(--primary);
  margin-bottom: 6px;
}

.value-card p {
  font-size: 0.8rem;
  color: var(--text-light);
  line-height: 1.6;
}

.contact-layout {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 32px;
  align-items: start;
}

.contact-form-wrap {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 32px;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
}

.contact-form-wrap h3 {
  font-family: var(--font-heading);
  font-size: 1.3rem;
  font-weight: 600;
  color: var(--primary);
  margin-bottom: 4px;
}

.contact-form-wrap > p {
  font-size: 0.82rem;
  color: var(--text-light);
  margin-bottom: 24px;
}

.form-group {
  margin-bottom: 16px;
}

.form-group label {
  display: block;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--primary);
  margin-bottom: 6px;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 10px 14px;
  background: var(--bg-alt);
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  font-size: 0.85rem;
  color: var(--text);
  transition: var(--transition);
}

.form-group input:focus,
.form-group textarea:focus {
  border-color: var(--secondary);
  background: var(--white);
  box-shadow: 0 0 0 3px rgba(200, 75, 49, 0.08);
}

.form-group textarea {
  resize: vertical;
  min-height: 100px;
}

.form-check {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 20px;
}

.form-check input[type="checkbox"] {
  width: 16px;
  height: 16px;
  margin-top: 2px;
  accent-color: var(--secondary);
  flex-shrink: 0;
}

.form-check label {
  font-size: 0.78rem;
  color: var(--text-light);
  line-height: 1.5;
}

.form-check a {
  color: var(--secondary);
  text-decoration: underline;
}

.contact-info-side {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.contact-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 24px;
  border: 1px solid var(--border);
  display: flex;
  align-items: flex-start;
  gap: 14px;
  transition: var(--transition);
}

.contact-card:hover {
  border-color: var(--secondary);
}

.contact-card-icon {
  width: 40px;
  height: 40px;
  background: linear-gradient(
    135deg,
    rgba(200, 75, 49, 0.08),
    rgba(236, 173, 41, 0.08)
  );
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.9rem;
  color: var(--secondary);
  flex-shrink: 0;
}

.contact-card h4 {
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--primary);
  margin-bottom: 2px;
}

.contact-card p {
  font-size: 0.82rem;
  color: var(--text-light);
  line-height: 1.5;
}

.site-footer {
  background: var(--dark);
  color: rgba(255, 255, 255, 0.6);
  padding: 24px 0;
  font-size: 0.78rem;
}

.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
}

.footer-copy {
  display: flex;
  align-items: center;
  gap: 4px;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

.footer-links a {
  color: rgba(255, 255, 255, 0.5);
  transition: color var(--transition);
  font-size: 0.76rem;
}

.footer-links a:hover {
  color: var(--accent);
}

.privacy-popup {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: var(--dark);
  z-index: 2000;
  padding: 16px 0;
  transform: translateY(100%);
  transition: transform 0.4s ease;
  box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.15);
}

.privacy-popup.visible {
  transform: translateY(0);
}

.popup-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}

.popup-inner p {
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.7);
  flex: 1;
  min-width: 200px;
  line-height: 1.5;
}

.popup-inner a {
  color: var(--accent);
  text-decoration: underline;
}

.popup-btn {
  padding: 8px 24px;
  background: var(--secondary);
  color: var(--white);
  font-size: 0.8rem;
  font-weight: 600;
  border-radius: var(--radius);
  transition: var(--transition);
  flex-shrink: 0;
}

.popup-btn:hover {
  background: var(--secondary-light);
}

.policy-content {
  padding: 48px 0;
}

.policy-content h1 {
  font-family: var(--font-heading);
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 8px;
}

.policy-content .policy-date {
  font-size: 0.82rem;
  color: var(--text-light);
  margin-bottom: 32px;
}

.policy-content h2 {
  font-family: var(--font-heading);
  font-size: 1.3rem;
  font-weight: 600;
  color: var(--primary);
  margin-top: 28px;
  margin-bottom: 10px;
}

.policy-content h3 {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--primary);
  margin-top: 20px;
  margin-bottom: 8px;
}

.policy-content p {
  font-size: 0.88rem;
  color: var(--text);
  line-height: 1.8;
  margin-bottom: 14px;
}

.policy-content ul {
  margin: 10px 0 14px 20px;
  list-style: disc;
}

.policy-content ul li {
  font-size: 0.86rem;
  color: var(--text);
  line-height: 1.7;
  margin-bottom: 4px;
}

.status-page {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  min-height: 100vh;
  padding: 40px 20px;
}

.status-icon {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  margin-bottom: 20px;
}

.status-icon.error {
  background: rgba(200, 75, 49, 0.1);
  color: var(--secondary);
}

.status-icon.success {
  background: rgba(52, 211, 153, 0.1);
  color: #10b981;
}

.status-page h1 {
  font-family: var(--font-heading);
  font-size: 2.2rem;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 10px;
}

.status-page p {
  font-size: 0.95rem;
  color: var(--text-light);
  margin-bottom: 24px;
  max-width: 440px;
}

.contact-map-section {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
  margin-top: 8px;
}

.contact-map-section iframe {
  display: block;
  width: 100%;
  height: 280px;
  border: 0;
}

.timeline {
  max-width: 600px;
  margin: 0 auto;
  position: relative;
}

.timeline::before {
  content: "";
  position: absolute;
  top: 0;
  left: 27px;
  bottom: 0;
  width: 2px;
  background: var(--border);
}

.timeline-item {
  display: flex;
  gap: 20px;
  margin-bottom: 28px;
  position: relative;
}

.timeline-marker {
  width: 56px;
  height: 56px;
  background: var(--white);
  border: 2px solid var(--secondary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  color: var(--secondary);
  flex-shrink: 0;
  position: relative;
  z-index: 2;
}

.timeline-content {
  padding-top: 10px;
}

.timeline-content h4 {
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 600;
  color: var(--primary);
  margin-bottom: 4px;
}

.timeline-content p {
  font-size: 0.82rem;
  color: var(--text-light);
  line-height: 1.6;
}

.parking-info {
  background: var(--bg-warm);
  border-radius: var(--radius-lg);
  padding: 24px;
  margin-top: 20px;
}

.parking-info h4 {
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 600;
  color: var(--primary);
  margin-bottom: 8px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.parking-info p {
  font-size: 0.82rem;
  color: var(--text-light);
  line-height: 1.6;
}

.text-left {
  text-align: left;
}

.mb-sm {
  margin-bottom: 24px;
}

@media (max-width: 1024px) {
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .features-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .values-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .product-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  html {
    font-size: 13px;
  }

  .container {
    padding: 0 16px;
  }

  .section {
    padding: 40px 0;
  }

  .section-title {
    font-size: 1.7rem;
  }

  .nav-toggle {
    display: flex;
  }

  .main-nav {
    position: fixed;
    inset: 0;
    background: rgba(var(--primary-rgb), 0.97);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition:
      opacity 0.35s ease,
      visibility 0.35s ease;
    z-index: 1001;
  }

  .main-nav.active {
    opacity: 1;
    visibility: visible;
    height: 100vh;
  }

  .nav-list {
    flex-direction: column;
    gap: 8px;
    text-align: center;
  }

  .nav-link {
    color: rgba(255, 255, 255, 0.85);
    font-size: 1.3rem;
    padding: 10px 24px;
  }

  .nav-link:hover,
  .nav-link.active {
    color: var(--white);
    background: rgba(255, 255, 255, 0.08);
  }

  .hero {
    min-height: 420px;
    padding-top: calc(var(--header-h) + 28px);
    padding-bottom: 40px;
  }

  .hero-title {
    font-size: 2rem;
  }

  .hero-desc {
    font-size: 0.9rem;
  }

  .hero-actions {
    flex-direction: column;
    gap: 10px;
  }

  .hero-actions .btn {
    justify-content: center;
    width: 100%;
  }

  .page-hero {
    padding-top: calc(var(--header-h) + 24px);
    padding-bottom: 28px;
  }

  .page-hero-title {
    font-size: 1.7rem;
  }

  .services-grid {
    grid-template-columns: 1fr;
  }

  .about-preview {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .about-preview-img img {
    height: 220px;
  }

  .about-preview-img::after {
    display: none;
  }

  .features-grid {
    grid-template-columns: 1fr 1fr;
    gap: 12px;
  }

  .process-steps {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .product-grid {
    grid-template-columns: 1fr;
  }

  .split-section {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .split-section.reverse {
    direction: ltr;
  }

  .split-img img {
    height: 220px;
  }

  .location-grid {
    grid-template-columns: 1fr;
  }

  .about-story {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .about-story-img img {
    height: 220px;
  }

  .values-grid {
    grid-template-columns: 1fr 1fr;
    gap: 12px;
  }

  .contact-layout {
    grid-template-columns: 1fr;
  }

  .contact-form-wrap {
    padding: 24px 18px;
  }

  .cta-box {
    padding: 36px 20px;
  }

  .cta-box h2 {
    font-size: 1.5rem;
  }

  .footer-inner {
    flex-direction: column;
    text-align: center;
  }

  .footer-links {
    justify-content: center;
  }

  .popup-inner {
    flex-direction: column;
    text-align: center;
  }

  .map-section iframe {
    height: 260px;
  }

  .timeline::before {
    left: 22px;
  }

  .timeline-marker {
    width: 46px;
    height: 46px;
    font-size: 0.9rem;
  }
}

@media (max-width: 480px) {
  html {
    font-size: 12.5px;
  }

  .section {
    padding: 32px 0;
  }

  .section-title {
    font-size: 1.5rem;
  }

  .hero {
    min-height: 380px;
  }

  .hero-title {
    font-size: 1.7rem;
  }

  .features-grid {
    grid-template-columns: 1fr;
  }

  .values-grid {
    grid-template-columns: 1fr;
  }

  .about-preview-content .stats-row {
    flex-wrap: wrap;
    gap: 16px;
  }

  .stat-item {
    flex: 1;
    min-width: 70px;
  }

  .status-page h1 {
    font-size: 1.7rem;
  }

  .contact-form-wrap {
    padding: 20px 14px;
  }
}

@media (max-width: 360px) {
  .container {
    padding: 0 12px;
  }

  .header-inner {
    height: 56px;
  }

  .brand-text {
    font-size: 0.95rem;
  }

  .hero-title {
    font-size: 1.5rem;
  }

  .btn {
    padding: 9px 18px;
    font-size: 0.8rem;
  }
}
