/*
Theme Name: ミドリ人材 - Midori Jinzai
Theme URI: https://midori-jinzai.com
Author: VietNam Midori Human Co.,Ltd
Description: Professional recruitment theme with app promotion, unified design, and comprehensive contact methods
Version: 2.0.0
License: GNU General Public License v2 or later
Text Domain: midori-jinzai
*/

@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@300;400;500;600;700;800&display=swap');

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

:root {
  --primary-green: #2d9e4f;
  --dark-green: #1e7037;
  --light-green: #4caf50;
  --accent-green: #66bb6a;
  --mint-green: #7ec97e;
  --text-dark: #2c3e50;
  --text-gray: #555555;
  --text-light: #777777;
  --bg-light: #f8f9fa;
  --bg-gray: #f5f5f5;
  --white: #ffffff;
  --border-color: #e0e0e0;
}

body {
  font-family: 'Noto Sans JP', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  color: var(--text-dark);
  line-height: 1.8;
  background: var(--white);
  overflow-x: hidden;
  font-weight: 400;
}

/* Header */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  background: var(--white);
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
  z-index: 1000;
  transition: all 0.3s ease;
}

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

.site-logo {
  display: flex;
  align-items: center;
  gap: 15px;
  text-decoration: none;
  color: var(--primary-green);
  transition: opacity 0.3s ease;
  z-index: 1001;
}

.site-logo:hover {
  opacity: 0.8;
}

.logo-icon {
  width: 50px;
  height: 50px;
  background: linear-gradient(135deg, var(--primary-green), var(--accent-green));
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-weight: 800;
  font-size: 22px;
  box-shadow: 0 4px 12px rgba(45, 158, 79, 0.3);
}

.logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1.3;
}

.logo-text-main {
  font-size: 18px;
  font-weight: 700;
  color: var(--primary-green);
}

.logo-text-sub {
  font-size: 12px;
  color: var(--text-gray);
  font-weight: 400;
}

.site-nav ul {
  display: flex;
  list-style: none;
  gap: 35px;
}

.site-nav a {
  text-decoration: none;
  color: var(--text-dark);
  font-weight: 500;
  font-size: 15px;
  transition: color 0.3s ease;
  position: relative;
  padding: 5px 0;
}

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

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

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

.mobile-menu-toggle {
  display: none;
  background: var(--primary-green);
  border: none;
  font-size: 24px;
  color: var(--white);
  cursor: pointer;
  width: 45px;
  height: 45px;
  border-radius: 8px;
  align-items: center;
  justify-content: center;
  z-index: 1001;
  position: relative;
}

/* Hero Section */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  background-image: url('https://images.unsplash.com/photo-1521737604893-d14cc237f11d?q=80&w=2000&fit=crop');
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  padding: 140px 20px 80px;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(45, 158, 79, 0.92) 0%, rgba(30, 112, 55, 0.88) 100%);
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 1200px;
  margin: 0 auto;
  width: 100%;
  color: var(--white);
  text-align: center;
}

.hero-badge {
  display: inline-block;
  background: rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(10px);
  padding: 8px 20px;
  border-radius: 30px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 1px;
  margin-bottom: 25px;
  border: 1px solid rgba(255, 255, 255, 0.3);
}

.hero-text h1 {
  font-size: clamp(36px, 5.5vw, 56px);
  color: var(--white);
  margin-bottom: 25px;
  line-height: 1.2;
  font-weight: 800;
  text-shadow: 0 2px 20px rgba(0, 0, 0, 0.2);
}

.hero-subtitle {
  font-size: clamp(17px, 2.2vw, 22px);
  color: rgba(255, 255, 255, 0.95);
  margin-bottom: 40px;
  line-height: 1.7;
  font-weight: 400;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.cta-buttons {
  display: flex;
  gap: 18px;
  justify-content: center;
  flex-wrap: wrap;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 38px;
  border-radius: 50px;
  font-size: 16px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
  border: 2px solid transparent;
  cursor: pointer;
}

.btn-primary {
  background: var(--white);
  color: var(--primary-green);
}

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 35px rgba(255, 255, 255, 0.4);
}

.btn-secondary {
  background: transparent;
  color: var(--white);
  border-color: var(--white);
}

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

/* Contact Methods in Header */
.contact-methods-header {
  display: flex;
  gap: 15px;
  align-items: center;
  margin-left: 20px;
}

.contact-icon-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: var(--bg-light);
  color: var(--primary-green);
  text-decoration: none;
  font-size: 18px;
  transition: all 0.3s ease;
  border: 2px solid transparent;
}

.contact-icon-link:hover {
  background: var(--primary-green);
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(45, 158, 79, 0.3);
}

/* Section Styles */
.section {
  padding: 90px 20px;
  position: relative;
}

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

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

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

.section-badge {
  display: inline-block;
  background: rgba(45, 158, 79, 0.1);
  color: var(--primary-green);
  padding: 8px 20px;
  border-radius: 30px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.5px;
  margin-bottom: 20px;
}

.section-title {
  font-size: clamp(30px, 4.5vw, 42px);
  color: var(--text-dark);
  margin-bottom: 18px;
  font-weight: 700;
  position: relative;
}

.section-title::after {
  content: '';
  display: block;
  width: 70px;
  height: 4px;
  background: linear-gradient(90deg, var(--primary-green), var(--accent-green));
  margin: 20px auto 0;
  border-radius: 2px;
}

.section-subtitle {
  font-size: clamp(15px, 2vw, 17px);
  color: var(--text-gray);
  margin-top: 15px;
  font-weight: 400;
}

/* App Promotion Section - NEW */
.app-promo-section {
  background: linear-gradient(135deg, #1e7037 0%, #2d9e4f 100%);
  padding: 100px 20px;
  position: relative;
  overflow: hidden;
}

.app-promo-section::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 800px;
  height: 800px;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
  border-radius: 50%;
}

.app-promo-content {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  position: relative;
  z-index: 2;
}

.app-promo-text {
  color: var(--white);
}

.app-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(10px);
  padding: 10px 20px;
  border-radius: 30px;
  font-size: 14px;
  font-weight: 700;
  margin-bottom: 25px;
  border: 2px solid rgba(255, 255, 255, 0.3);
}

.app-promo-text h2 {
  font-size: clamp(32px, 4vw, 48px);
  margin-bottom: 20px;
  font-weight: 800;
  line-height: 1.2;
}

.app-promo-text p {
  font-size: 18px;
  line-height: 1.8;
  margin-bottom: 15px;
  opacity: 0.95;
}

.app-features {
  display: grid;
  gap: 15px;
  margin: 35px 0;
}

.app-feature-item {
  display: flex;
  align-items: center;
  gap: 15px;
  background: rgba(255, 255, 255, 0.1);
  padding: 18px 22px;
  border-radius: 12px;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  transition: all 0.3s ease;
}

.app-feature-item:hover {
  background: rgba(255, 255, 255, 0.15);
  transform: translateX(5px);
}

.app-feature-icon {
  width: 48px;
  height: 48px;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  flex-shrink: 0;
}

.app-feature-text h4 {
  font-size: 17px;
  margin-bottom: 4px;
  font-weight: 600;
}

.app-feature-text p {
  font-size: 14px;
  opacity: 0.9;
  margin: 0;
}

.app-release-info {
  background: rgba(255, 255, 255, 0.15);
  padding: 25px;
  border-radius: 16px;
  margin-top: 30px;
  text-align: center;
  border: 2px solid rgba(255, 255, 255, 0.25);
}

.app-release-info strong {
  font-size: 28px;
  font-weight: 800;
  display: block;
  margin-bottom: 8px;
}

.app-mockup {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}

.app-phone-frame {
  width: 100%;
  max-width: 400px;
  aspect-ratio: 9/19;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.2), rgba(255, 255, 255, 0.1));
  border-radius: 40px;
  padding: 20px;
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.3);
  border: 8px solid rgba(255, 255, 255, 0.3);
  position: relative;
  overflow: hidden;
}

.app-phone-screen {
  width: 100%;
  height: 100%;
  background: var(--white);
  border-radius: 30px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 40px 30px;
  text-align: center;
}

.app-phone-screen img {
  width: 80px;
  height: 80px;
  margin-bottom: 25px;
}

.app-phone-screen h3 {
  font-size: 24px;
  color: var(--primary-green);
  margin-bottom: 15px;
  font-weight: 800;
}

.app-phone-screen p {
  font-size: 15px;
  color: var(--text-gray);
  line-height: 1.7;
  margin-bottom: 10px;
}

.development-badge {
  display: inline-block;
  background: linear-gradient(135deg, var(--primary-green), var(--accent-green));
  color: var(--white);
  padding: 12px 25px;
  border-radius: 30px;
  font-size: 16px;
  font-weight: 700;
  margin-top: 20px;
  box-shadow: 0 6px 20px rgba(45, 158, 79, 0.3);
}

/* Services with Images */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 40px;
  margin-top: 50px;
}

.service-card {
  background: var(--white);
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  transition: all 0.4s ease;
  opacity: 0;
  transform: translateY(30px);
}

.service-card.animate {
  opacity: 1;
  transform: translateY(0);
}

.service-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(45, 158, 79, 0.15);
}

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

.service-content {
  padding: 35px 30px;
}

.service-icon {
  width: 70px;
  height: 70px;
  background: linear-gradient(135deg, var(--primary-green), var(--accent-green));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 32px;
  margin-bottom: 20px;
  box-shadow: 0 8px 20px rgba(45, 158, 79, 0.25);
}

.service-content h3 {
  font-size: 22px;
  margin-bottom: 16px;
  color: var(--text-dark);
  font-weight: 700;
}

.service-content p {
  color: var(--text-gray);
  line-height: 1.8;
  font-size: 15px;
}

/* Features Grid with Unified Icons */
.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-top: 50px;
}

.feature-card {
  background: var(--white);
  padding: 40px 30px;
  border-radius: 16px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  border-top: 4px solid var(--primary-green);
  position: relative;
  opacity: 0;
  transform: translateY(30px);
}

.feature-card.animate {
  opacity: 1;
  transform: translateY(0);
}

.feature-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(45, 158, 79, 0.15);
}

.feature-icon {
  width: 75px;
  height: 75px;
  background: linear-gradient(135deg, var(--primary-green), var(--accent-green));
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 25px;
  font-size: 36px;
  color: var(--white);
  box-shadow: 0 8px 20px rgba(45, 158, 79, 0.25);
}

.feature-card h3 {
  font-size: 21px;
  margin-bottom: 16px;
  color: var(--text-dark);
  font-weight: 600;
}

.feature-card p {
  color: var(--text-gray);
  line-height: 1.8;
  font-size: 15px;
}

/* Industries Grid */
.industries-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
  gap: 22px;
  margin-top: 50px;
}

.industry-item {
  background: var(--white);
  padding: 30px 18px;
  border-radius: 14px;
  text-align: center;
  box-shadow: 0 3px 15px rgba(0, 0, 0, 0.06);
  transition: all 0.3s ease;
  border: 2px solid transparent;
  opacity: 0;
  transform: scale(0.9);
}

.industry-item.animate {
  opacity: 1;
  transform: scale(1);
}

.industry-item:hover {
  border-color: var(--primary-green);
  transform: translateY(-8px) scale(1.02);
  box-shadow: 0 10px 30px rgba(45, 158, 79, 0.15);
}

.industry-icon {
  font-size: 42px;
  margin-bottom: 12px;
  display: block;
}

.industry-item span {
  font-size: 15px;
  font-weight: 600;
  color: var(--text-dark);
}

/* Process Steps */
.process-steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 35px;
  margin-top: 60px;
  position: relative;
}

.process-step {
  background: var(--white);
  padding: 35px 30px;
  border-radius: 16px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
  position: relative;
  transition: all 0.4s ease;
  opacity: 0;
  transform: translateX(-30px);
}

.process-step.animate {
  opacity: 1;
  transform: translateX(0);
}

.process-step:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 35px rgba(45, 158, 79, 0.15);
}

.step-number {
  position: absolute;
  top: -18px;
  left: 30px;
  width: 55px;
  height: 55px;
  background: linear-gradient(135deg, var(--primary-green), var(--accent-green));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 22px;
  font-weight: 800;
  box-shadow: 0 6px 18px rgba(45, 158, 79, 0.35);
}

.process-step h4 {
  margin-top: 30px;
  margin-bottom: 18px;
  font-size: 19px;
  color: var(--text-dark);
  font-weight: 600;
}

.process-step p {
  color: var(--text-gray);
  font-size: 15px;
  line-height: 1.8;
}

/* Company Info */
.company-info {
  background: var(--white);
  padding: 50px;
  border-radius: 16px;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
  margin-top: 50px;
  border-left: 5px solid var(--primary-green);
}

.company-info h3 {
  font-size: 26px;
  margin-bottom: 35px;
  color: var(--primary-green);
  font-weight: 700;
}

.info-table {
  width: 100%;
}

.info-row {
  display: grid;
  grid-template-columns: 200px 1fr;
  padding: 20px 0;
  border-bottom: 1px solid var(--border-color);
  gap: 20px;
}

.info-row:last-child {
  border-bottom: none;
}

.info-label {
  font-weight: 600;
  color: var(--text-dark);
  font-size: 15px;
}

.info-value {
  color: var(--text-gray);
  line-height: 1.8;
  font-size: 15px;
}

/* Contact Section */
.contact-section {
  background: linear-gradient(135deg, var(--primary-green), var(--dark-green));
  padding: 90px 20px;
  color: var(--white);
  position: relative;
  overflow: hidden;
}

.contact-content {
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
  position: relative;
  z-index: 2;
}

.contact-content h2 {
  font-size: clamp(32px, 4.5vw, 42px);
  margin-bottom: 22px;
  color: var(--white);
  font-weight: 700;
}

.contact-content p {
  font-size: 19px;
  margin-bottom: 50px;
  color: rgba(255, 255, 255, 0.95);
}

/* Contact Methods Grid */
.contact-methods {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 25px;
  margin: 50px 0;
}

.contact-method {
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(15px);
  padding: 35px 30px;
  border-radius: 18px;
  border: 2px solid rgba(255, 255, 255, 0.25);
  transition: all 0.3s ease;
  text-align: center;
}

.contact-method:hover {
  background: rgba(255, 255, 255, 0.25);
  transform: translateY(-8px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
}

.contact-method-icon {
  font-size: 48px;
  margin-bottom: 18px;
}

.contact-method h4 {
  font-size: 18px;
  margin-bottom: 12px;
  font-weight: 600;
}

.contact-method p {
  font-size: 16px;
  margin: 8px 0;
}

.contact-method a {
  color: var(--white);
  text-decoration: none;
  font-weight: 600;
  word-break: break-all;
}

/* Contact Form */
.contact-form {
  max-width: 700px;
  margin: 50px auto 0;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(15px);
  padding: 45px;
  border-radius: 18px;
  border: 2px solid rgba(255, 255, 255, 0.2);
}

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

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

.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 14px 18px;
  border: 2px solid rgba(255, 255, 255, 0.3);
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.15);
  color: var(--white);
  font-size: 15px;
  font-family: inherit;
  transition: all 0.3s ease;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: rgba(255, 255, 255, 0.6);
}

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

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

.form-submit {
  text-align: center;
  margin-top: 35px;
}

.btn-submit {
  background: var(--white);
  color: var(--primary-green);
  padding: 16px 50px;
  border: none;
  border-radius: 50px;
  font-size: 17px;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.3s ease;
}

.btn-submit:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 30px rgba(255, 255, 255, 0.3);
}

/* Download Section */
.download-section {
  background: var(--bg-light);
  padding: 80px 20px;
  text-align: center;
}

.download-box {
  max-width: 600px;
  margin: 0 auto;
  background: var(--white);
  padding: 50px 40px;
  border-radius: 18px;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
  border: 3px dashed var(--primary-green);
}

.download-icon {
  font-size: 70px;
  color: var(--primary-green);
  margin-bottom: 25px;
}

.download-box h3 {
  font-size: 26px;
  margin-bottom: 15px;
  color: var(--text-dark);
  font-weight: 700;
}

.download-box p {
  font-size: 16px;
  color: var(--text-gray);
  margin-bottom: 30px;
  line-height: 1.7;
}

.btn-download {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: var(--primary-green);
  color: var(--white);
  padding: 18px 40px;
  border-radius: 50px;
  text-decoration: none;
  font-size: 17px;
  font-weight: 700;
  transition: all 0.3s ease;
  border: none;
  cursor: pointer;
}

.btn-download:hover {
  background: var(--dark-green);
  transform: translateY(-3px);
  box-shadow: 0 12px 30px rgba(45, 158, 79, 0.3);
}

/* Footer */
.site-footer {
  background: #2c3e50;
  color: rgba(255, 255, 255, 0.85);
  padding: 50px 20px;
}

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

.footer-content p {
  margin: 8px 0;
  font-size: 15px;
  line-height: 1.8;
}

.footer-content strong {
  color: var(--white);
  font-weight: 600;
}

.footer-copyright {
  margin-top: 30px;
  padding-top: 25px;
  border-top: 1px solid rgba(255, 255, 255, 0.15);
  font-size: 13px;
  opacity: 0.8;
}

/* Scroll Animations */
.fade-in {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.fade-in.animate {
  opacity: 1;
  transform: translateY(0);
}

/* Responsive */
@media (max-width: 968px) {
  .app-promo-content {
    grid-template-columns: 1fr;
    gap: 50px;
  }
  
  .app-mockup {
    order: -1;
  }
}

@media (max-width: 768px) {
  .mobile-menu-toggle {
    display: flex;
  }

  .site-nav {
    position: fixed;
    top: 0;
    right: -100%;
    width: 80%;
    max-width: 300px;
    height: 100vh;
    background: var(--white);
    box-shadow: -5px 0 25px rgba(0, 0, 0, 0.15);
    transition: right 0.4s ease;
    z-index: 1000;
    padding: 100px 30px 30px;
  }

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

  .site-nav ul {
    flex-direction: column;
    gap: 0;
  }

  .site-nav li {
    border-bottom: 1px solid var(--border-color);
  }

  .site-nav a {
    display: block;
    padding: 18px 0;
    font-size: 16px;
  }

  .contact-methods-header {
    display: none;
  }

  .hero {
    min-height: 90vh;
    padding: 120px 20px 60px;
    background-attachment: scroll;
  }

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

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

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

  .info-row {
    grid-template-columns: 1fr;
    gap: 8px;
  }

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

  .company-info {
    padding: 30px 20px;
  }

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

/* Mobile Menu Overlay */
.mobile-menu-overlay {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.5);
  z-index: 999;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.mobile-menu-overlay.active {
  display: block;
  opacity: 1;
}

@media (max-width: 768px) {
  .mobile-menu-overlay {
    display: none;
  }
  
  .mobile-menu-overlay.active {
    display: block;
  }
}
