:root {
  --forest-green: #1a4d3e;
  --deep-green: #0d3326;
  --metallic-gold: #d4af37;
  --light-gold: #f4e4ba;
  --white: #ffffff;
  --light-gray: #f8f9fa;
  --medium-gray: #6c757d;
  --dark-gray: #2d3436;
  --gradient-gold: linear-gradient(135deg, #d4af37 0%, #f4e4ba 50%, #d4af37 100%);
  --gradient-green: linear-gradient(135deg, #1a4d3e 0%, #0d3326 100%);
  --glass-bg: rgba(255, 255, 255, 0.95);
  --shadow-soft: 0 4px 20px rgba(0, 0, 0, 0.08);
  --shadow-medium: 0 8px 30px rgba(0, 0, 0, 0.12);
  --transition-smooth: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --border-radius: 12px;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Noto Sans JP", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  font-size: 16px;
  line-height: 1.7;
  color: var(--dark-gray);
  background-color: var(--white);
  -webkit-font-smoothing: antialiased;
}

strong, p, h1, h2, h3, h4, h5, h6 {
  color: inherit;
}

a {
  text-decoration: none;
  color: inherit;
  transition: var(--transition-smooth);
}

ul {
  list-style: none;
}

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

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

header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  background: rgba(255, 255, 255, 0.98);
  backdrop-filter: blur(10px);
  z-index: 1000;
  box-shadow: var(--shadow-soft);
}

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

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 24px;
  font-weight: 700;
  color: var(--forest-green);
}

.logo-icon {
  width: 45px;
  height: 45px;
  background: var(--gradient-gold);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
}

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

.main-nav a {
  font-weight: 500;
  color: var(--dark-gray);
  position: relative;
  padding: 8px 0;
}

.main-nav a::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--metallic-gold);
  transition: var(--transition-smooth);
}

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

.main-nav a:hover {
  color: var(--forest-green);
}

.mobile-menu-btn {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 10px;
}

.mobile-menu-btn span {
  width: 25px;
  height: 3px;
  background: var(--forest-green);
  border-radius: 3px;
  transition: var(--transition-smooth);
}

.hero-section {
  min-height: 100vh;
  background: linear-gradient(135deg, rgba(13, 51, 38, 0.9) 0%, rgba(26, 77, 62, 0.85) 100%),
              url('../media/hero-garage.webp') center/cover;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 120px 20px 80px;
  position: relative;
  overflow: hidden;
}

.hero-section::before {
  content: "";
  position: absolute;
  top: -50%;
  right: -20%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(212, 175, 55, 0.15) 0%, transparent 70%);
  border-radius: 50%;
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 800px;
}

.hero-title {
  font-size: clamp(36px, 5vw, 64px);
  font-weight: 800;
  color: var(--white);
  margin-bottom: 20px;
  line-height: 1.2;
  letter-spacing: -0.02em;
}

.hero-subtitle {
  font-size: clamp(18px, 2vw, 22px);
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 40px;
  line-height: 1.6;
}

.hero-cta-group {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 36px;
  background: var(--gradient-gold);
  color: var(--deep-green);
  font-weight: 700;
  font-size: 16px;
  border-radius: 50px;
  border: none;
  cursor: pointer;
  transition: var(--transition-smooth);
  box-shadow: 0 4px 20px rgba(212, 175, 55, 0.3);
}

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 30px rgba(212, 175, 55, 0.4);
}

.btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 36px;
  background: transparent;
  color: var(--white);
  font-weight: 600;
  font-size: 16px;
  border: 2px solid var(--metallic-gold);
  border-radius: 50px;
  cursor: pointer;
  transition: var(--transition-smooth);
}

.btn-secondary:hover {
  background: var(--metallic-gold);
  color: var(--deep-green);
}

.section {
  padding: 100px 20px;
}

.section-dark {
  background: var(--forest-green);
  color: var(--white);
}

.section-dark h2,
.section-dark h3,
.section-dark p {
  color: var(--white);
}

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

.section-title {
  font-size: clamp(28px, 3vw, 42px);
  font-weight: 700;
  color: var(--deep-green);
  margin-bottom: 15px;
  text-align: center;
}

.section-subtitle {
  font-size: 18px;
  color: var(--medium-gray);
  text-align: center;
  max-width: 600px;
  margin: 0 auto 50px;
}

.info-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  max-width: 1200px;
  margin: 0 auto;
}

.info-card {
  background: var(--white);
  border-radius: var(--border-radius);
  padding: 40px;
  box-shadow: var(--shadow-soft);
  transition: var(--transition-smooth);
  border: 1px solid rgba(0, 0, 0, 0.05);
}

.info-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-medium);
}

.info-card-icon {
  width: 70px;
  height: 70px;
  background: var(--gradient-gold);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 32px;
  margin-bottom: 25px;
}

.info-card h3 {
  font-size: 22px;
  font-weight: 700;
  color: var(--deep-green);
  margin-bottom: 15px;
}

.info-card p {
  color: var(--medium-gray);
  line-height: 1.8;
}

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

.service-card {
  background: var(--white);
  border-radius: var(--border-radius);
  overflow: hidden;
  box-shadow: var(--shadow-soft);
  transition: var(--transition-smooth);
}

.service-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-medium);
}

.service-image {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.service-content {
  padding: 30px;
}

.service-content h3 {
  font-size: 20px;
  font-weight: 700;
  color: var(--deep-green);
  margin-bottom: 12px;
}

.service-content p {
  color: var(--medium-gray);
  margin-bottom: 20px;
  line-height: 1.7;
}

.service-price {
  font-size: 24px;
  font-weight: 700;
  color: var(--forest-green);
  margin-bottom: 20px;
}

.service-price span {
  font-size: 14px;
  font-weight: 400;
  color: var(--medium-gray);
}

.service-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--forest-green);
  font-weight: 600;
  font-size: 15px;
}

.service-link:hover {
  color: var(--metallic-gold);
  gap: 12px;
}

.advantages-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
  max-width: 1200px;
  margin: 0 auto;
}

.advantage-item {
  text-align: center;
  padding: 30px 20px;
}

.advantage-icon {
  width: 80px;
  height: 80px;
  background: var(--gradient-gold);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 36px;
  margin: 0 auto 20px;
  box-shadow: 0 4px 20px rgba(212, 175, 55, 0.3);
}

.advantage-item h3 {
  font-size: 18px;
  font-weight: 700;
  color: var(--deep-green);
  margin-bottom: 10px;
}

.advantage-item p {
  color: var(--medium-gray);
  font-size: 15px;
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 30px;
  max-width: 1200px;
  margin: 0 auto;
}

.testimonial-card {
  background: var(--white);
  border-radius: var(--border-radius);
  padding: 35px;
  box-shadow: var(--shadow-soft);
  position: relative;
}

.testimonial-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: var(--gradient-gold);
  border-radius: var(--border-radius) var(--border-radius) 0 0;
}

.testimonial-stars {
  color: var(--metallic-gold);
  font-size: 20px;
  margin-bottom: 20px;
}

.testimonial-text {
  color: var(--dark-gray);
  font-style: italic;
  margin-bottom: 25px;
  line-height: 1.8;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 15px;
}

.testimonial-avatar {
  width: 55px;
  height: 55px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--metallic-gold);
}

.testimonial-info h4 {
  font-size: 16px;
  font-weight: 700;
  color: var(--deep-green);
}

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

.contact-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  min-height: 600px;
}

.contact-map {
  background: #e9ecef;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 400px;
}

.contact-form-container {
  padding: 60px;
  background: var(--white);
}

.contact-title {
  font-size: 28px;
  font-weight: 700;
  color: var(--deep-green);
  margin-bottom: 30px;
}

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

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

.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 14px 18px;
  border: 2px solid #e9ecef;
  border-radius: 10px;
  font-size: 16px;
  font-family: inherit;
  transition: var(--transition-smooth);
  background: var(--white);
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  outline: none;
  border-color: var(--forest-green);
  box-shadow: 0 0 0 4px rgba(26, 77, 62, 0.1);
}

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

.contact-info-list {
  margin-top: 40px;
  padding-top: 30px;
  border-top: 1px solid #e9ecef;
}

.contact-info-item {
  display: flex;
  align-items: flex-start;
  gap: 15px;
  margin-bottom: 20px;
}

.contact-info-icon {
  width: 45px;
  height: 45px;
  background: var(--gradient-gold);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  flex-shrink: 0;
}

.contact-info-text h4 {
  font-size: 14px;
  font-weight: 600;
  color: var(--medium-gray);
  margin-bottom: 4px;
}

.contact-info-text p {
  font-size: 16px;
  color: var(--dark-gray);
}

footer {
  background: var(--deep-green);
  color: var(--white);
  padding: 60px 20px 30px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px;
  max-width: 1200px;
  margin: 0 auto 50px;
}

.footer-brand p {
  color: rgba(255, 255, 255, 0.7);
  margin-top: 15px;
  line-height: 1.7;
}

.footer-title {
  font-size: 16px;
  font-weight: 700;
  color: var(--metallic-gold);
  margin-bottom: 20px;
}

.footer-links li {
  margin-bottom: 12px;
}

.footer-links a {
  color: rgba(255, 255, 255, 0.8);
  font-size: 15px;
  transition: var(--transition-smooth);
}

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

.footer-bottom {
  text-align: center;
  padding-top: 30px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.6);
  font-size: 14px;
}

.cookie-banner {
  position: fixed;
  bottom: 30px;
  left: 30px;
  max-width: 400px;
  background: var(--white);
  border-radius: var(--border-radius);
  padding: 25px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
  z-index: 9999;
  display: none;
}

.cookie-banner.show {
  display: block;
  animation: slideUp 0.4s ease;
}

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

.cookie-banner h4 {
  font-size: 16px;
  font-weight: 700;
  color: var(--deep-green);
  margin-bottom: 10px;
}

.cookie-banner p {
  font-size: 14px;
  color: var(--medium-gray);
  margin-bottom: 20px;
  line-height: 1.6;
}

.cookie-buttons {
  display: flex;
  gap: 12px;
}

.cookie-btn {
  flex: 1;
  padding: 12px 20px;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition-smooth);
  border: none;
}

.cookie-btn-accept {
  background: var(--forest-green);
  color: var(--white);
}

.cookie-btn-accept:hover {
  background: var(--deep-green);
}

.cookie-btn-decline {
  background: transparent;
  border: 2px solid var(--forest-green);
  color: var(--forest-green);
}

.cookie-btn-decline:hover {
  background: var(--forest-green);
  color: var(--white);
}

.page-header {
  padding: 150px 20px 80px;
  background: linear-gradient(135deg, rgba(13, 51, 38, 0.95) 0%, rgba(26, 77, 62, 0.9) 100%);
  text-align: center;
}

.page-header h1 {
  font-size: clamp(32px, 4vw, 48px);
  font-weight: 800;
  color: var(--white);
  margin-bottom: 15px;
}

.page-header p {
  font-size: 18px;
  color: rgba(255, 255, 255, 0.85);
  max-width: 600px;
  margin: 0 auto;
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  max-width: 1200px;
  margin: 0 auto;
}

.team-card {
  background: var(--white);
  border-radius: var(--border-radius);
  overflow: hidden;
  box-shadow: var(--shadow-soft);
  text-align: center;
}

.team-image {
  width: 100%;
  height: 280px;
  object-fit: cover;
}

.team-info {
  padding: 25px;
}

.team-info h3 {
  font-size: 20px;
  font-weight: 700;
  color: var(--deep-green);
  margin-bottom: 5px;
}

.team-info p {
  color: var(--forest-green);
  font-size: 14px;
  margin-bottom: 15px;
}

.team-info .bio {
  color: var(--medium-gray);
  font-size: 14px;
  line-height: 1.6;
}

.faq-list {
  max-width: 800px;
  margin: 0 auto;
}

.faq-item {
  background: var(--white);
  border-radius: var(--border-radius);
  margin-bottom: 15px;
  box-shadow: var(--shadow-soft);
  overflow: hidden;
}

.faq-question {
  width: 100%;
  padding: 25px;
  background: none;
  border: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  text-align: left;
  font-size: 17px;
  font-weight: 600;
  color: var(--deep-green);
  transition: var(--transition-smooth);
}

.faq-question:hover {
  color: var(--forest-green);
}

.faq-icon {
  width: 30px;
  height: 30px;
  background: var(--gradient-gold);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  transition: var(--transition-smooth);
}

.faq-item.active .faq-icon {
  transform: rotate(45deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
  background: var(--light-gray);
}

.faq-answer-content {
  padding: 0 25px 25px;
  color: var(--medium-gray);
  line-height: 1.8;
}

.faq-item.active .faq-answer {
  max-height: 500px;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
  gap: 25px;
  max-width: 1200px;
  margin: 0 auto;
}

.gallery-item {
  border-radius: var(--border-radius);
  overflow: hidden;
  position: relative;
  aspect-ratio: 4/3;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition-smooth);
}

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

.gallery-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 30px 25px;
  background: linear-gradient(to top, rgba(13, 51, 38, 0.95) 0%, transparent 100%);
  color: var(--white);
  transform: translateY(100%);
  transition: var(--transition-smooth);
}

.gallery-item:hover .gallery-overlay {
  transform: translateY(0);
}

.gallery-overlay h3 {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 8px;
}

.gallery-overlay p {
  font-size: 14px;
  opacity: 0.85;
}

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

.process-step {
  text-align: center;
  position: relative;
}

.process-step::after {
  content: "";
  position: absolute;
  top: 40px;
  right: -15px;
  width: 30px;
  height: 2px;
  background: var(--metallic-gold);
}

.process-step:last-child::after {
  display: none;
}

.process-number {
  width: 80px;
  height: 80px;
  background: var(--gradient-gold);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 32px;
  font-weight: 800;
  color: var(--deep-green);
  margin: 0 auto 25px;
}

.process-step h3 {
  font-size: 20px;
  font-weight: 700;
  color: var(--deep-green);
  margin-bottom: 12px;
}

.process-step p {
  color: var(--medium-gray);
  line-height: 1.7;
}

.before-after {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
  max-width: 900px;
  margin: 0 auto;
}

.before-after-item {
  text-align: center;
}

.before-after-item img {
  border-radius: var(--border-radius);
  box-shadow: var(--shadow-medium);
  margin-bottom: 15px;
}

.before-after-item h4 {
  font-size: 18px;
  font-weight: 700;
  color: var(--deep-green);
}

.legal-content {
  max-width: 800px;
  margin: 0 auto;
  background: var(--white);
  padding: 50px;
  border-radius: var(--border-radius);
  box-shadow: var(--shadow-soft);
}

.legal-content h2 {
  font-size: 24px;
  font-weight: 700;
  color: var(--deep-green);
  margin: 35px 0 15px;
  padding-top: 25px;
  border-top: 1px solid #e9ecef;
}

.legal-content h2:first-child {
  margin-top: 0;
  padding-top: 0;
  border-top: none;
}

.legal-content p {
  color: var(--medium-gray);
  line-height: 1.8;
  margin-bottom: 15px;
}

.legal-content ul {
  margin: 15px 0 25px 25px;
  list-style: disc;
}

.legal-content li {
  color: var(--medium-gray);
  margin-bottom: 10px;
  line-height: 1.7;
}

.thank-you-page {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, rgba(13, 51, 38, 0.95) 0%, rgba(26, 77, 62, 0.9) 100%);
  text-align: center;
  padding: 40px 20px;
}

.thank-you-content {
  max-width: 600px;
}

.thank-you-icon {
  width: 100px;
  height: 100px;
  background: var(--gradient-gold);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 50px;
  margin: 0 auto 30px;
}

.thank-you-content h1 {
  font-size: 36px;
  font-weight: 800;
  color: var(--white);
  margin-bottom: 20px;
}

.thank-you-content p {
  font-size: 18px;
  color: rgba(255, 255, 255, 0.85);
  margin-bottom: 35px;
  line-height: 1.7;
}

@media (max-width: 992px) {
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }

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

  .contact-map {
    min-height: 350px;
  }

  .contact-form-container {
    padding: 40px 30px;
  }
}

@media (max-width: 768px) {
  .main-nav {
    position: fixed;
    top: 0;
    right: -100%;
    width: 100%;
    height: 100vh;
    background: var(--white);
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 30px;
    transition: var(--transition-smooth);
  }

  .main-nav.active {
    right: 0;
  }

  .main-nav a {
    font-size: 24px;
  }

  .mobile-menu-btn {
    display: flex;
    z-index: 1001;
  }

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

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

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

  .hero-cta-group {
    flex-direction: column;
    align-items: center;
  }

  .btn-primary,
  .btn-secondary {
    width: 100%;
    max-width: 300px;
    justify-content: center;
  }

  .section {
    padding: 70px 20px;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .before-after {
    grid-template-columns: 1fr;
  }

  .process-step::after {
    display: none;
  }

  .cookie-banner {
    left: 20px;
    right: 20px;
    max-width: none;
  }
}

@media (max-width: 480px) {
  .hero-title {
    font-size: 32px;
  }

  .section-title {
    font-size: 26px;
  }

  .info-card,
  .testimonial-card,
  .contact-form-container {
    padding: 25px;
  }

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

  .cookie-buttons {
    flex-direction: column;
  }
}