/* ===================================
   CSS Variables & Reset
   =================================== */
:root {
  /* Colors - Navy Theme */
  --primary: #1a2a4a;
  --primary-dark: #0f1a2e;
  --primary-light: #2a3f6a;
  --accent: #c9a961;
  --accent-light: #dfc98a;
  --white: #ffffff;
  --off-white: #f8f9fa;
  --gray-light: #e9ecef;
  --gray: #6c757d;
  --gray-dark: #343a40;
  --text: #2c3e50;
  --text-light: #5a6c7d;

  /* Business Colors */
  --re-color: #1a2a4a;
  --pet-color: #2d5a3d;
  --soil-color: #5a3a1a;

  /* Typography */
  --font-ja: 'Noto Sans JP', 'Hiragino Kaku Gothic ProN', 'Hiragino Sans', Meiryo, sans-serif;
  --font-en: 'Playfair Display', serif;

  /* Spacing */
  --section-padding: 100px;
  --container-width: 1200px;

  /* Transitions */
  --transition: all 0.4s cubic-bezier(0.4, 0.4, 0, 1);
}

/* Reset */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
  overflow-x: hidden;
}

body {
  font-family: var(--font-ja);
  color: var(--text);
  line-height: 1.8;
  background-color: var(--white);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
  width: 100%;
}

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

ul {
  list-style: none;
}

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

/* ===================================
   Container
   =================================== */
.container {
  max-width: var(--container-width);
  margin: 0 auto;
  padding: 0 24px;
}

/* ===================================
   Header
   =================================== */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(26, 42, 74, 0.95);
  backdrop-filter: blur(10px);
  transition: var(--transition);
}

.header.scrolled {
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.15);
}

.header-inner {
  max-width: var(--container-width);
  margin: 0 auto;
  padding: 16px 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  display: flex;
  flex-direction: column;
  color: var(--white);
  transition: transform 0.3s ease;
}

.logo:hover {
  transform: scale(1.02);
}

.logo-main {
  font-size: 28px;
  font-weight: 700;
  letter-spacing: 0.1em;
  line-height: 1.2;
}

.logo-sub {
  font-family: var(--font-en);
  font-size: 10px;
  letter-spacing: 0.15em;
  opacity: 0.8;
}

.nav-list {
  display: flex;
  gap: 40px;
}

.nav-list a {
  color: var(--white);
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.05em;
  position: relative;
}

.nav-list a::after {
  content: '';
  position: absolute;
  bottom: -6px;
  left: 0;
  width: 100%;
  height: 1px;
  background: var(--accent);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s cubic-bezier(0.22, 1, 0.36, 1);
}

.nav-list a:hover::after {
  transform: scaleX(1);
}

/* Mobile Menu Toggle */
.menu-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 6px;
  width: 30px;
  height: 30px;
  background: none;
  border: none;
  cursor: pointer;
  z-index: 1001;
}

.menu-toggle span {
  display: block;
  width: 100%;
  height: 2px;
  background: var(--white);
  transition: var(--transition);
}

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

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

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

/* ===================================
   Hero Grid Section
   =================================== */
.hero-grid {
  padding-top: 72px; /* header height */
}

.hero-brand {
  background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary) 60%, var(--primary-light) 100%);
  color: var(--white);
  text-align: center;
  padding: 64px 24px 56px;
}

.hero-brand-en {
  font-family: var(--font-en);
  font-size: 13px;
  letter-spacing: 0.3em;
  opacity: 0.6;
  margin-bottom: 16px;
}

.hero-brand-title {
  font-size: clamp(28px, 5vw, 48px);
  font-weight: 700;
  letter-spacing: 0.08em;
  line-height: 1.5;
  margin-bottom: 20px;
}

.hero-brand-title span {
  color: var(--accent);
}

.hero-brand-desc {
  font-size: 15px;
  line-height: 2;
  opacity: 0.85;
}

/* Business Panels Grid */
.hero-panels {
  display: grid;
  grid-template-columns: 4fr 3fr 3fr;
  min-height: 420px;
}

.hero-panel {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 40px 32px;
  color: var(--white);
  overflow: hidden;
  cursor: pointer;
  text-decoration: none;
  background-size: cover;
  background-position: center;
}

.panel-realestate {
  background-image: url('../images/panel-realestate.jpg');
}

.panel-pet {
  background-image: url('../images/panel-pet.jpg');
}

.panel-soil {
  background-image: url('../images/panel-soil.jpg');
}

.panel-overlay {
  position: absolute;
  inset: 0;
  transition: opacity 0.5s ease;
}

.panel-realestate .panel-overlay {
  background: linear-gradient(160deg, rgba(26, 42, 74, 0.82) 0%, rgba(42, 64, 112, 0.75) 50%, rgba(30, 53, 96, 0.80) 100%);
}

.panel-pet .panel-overlay {
  background: linear-gradient(160deg, rgba(30, 61, 43, 0.80) 0%, rgba(45, 90, 61, 0.72) 50%, rgba(35, 74, 50, 0.78) 100%);
}

.panel-soil .panel-overlay {
  background: linear-gradient(160deg, rgba(61, 40, 16, 0.78) 0%, rgba(90, 58, 26, 0.70) 50%, rgba(74, 48, 21, 0.76) 100%);
}

.hero-panel:hover .panel-overlay {
  opacity: 0.88;
}

/* Panel Icon */
.panel-icon {
  position: absolute;
  top: 32px;
  right: 32px;
  width: 56px;
  height: 56px;
  color: rgba(255, 255, 255, 0.15);
  transition: all 0.4s ease;
}

.hero-panel:hover .panel-icon {
  color: rgba(255, 255, 255, 0.3);
  transform: scale(1.1);
}

.panel-icon svg {
  width: 100%;
  height: 100%;
}

/* Panel Content */
.panel-content {
  position: relative;
  z-index: 2;
}

.panel-num {
  font-family: var(--font-en);
  font-size: 12px;
  letter-spacing: 0.2em;
  opacity: 0.5;
  display: block;
  margin-bottom: 12px;
}

.panel-title {
  font-size: 26px;
  font-weight: 700;
  letter-spacing: 0.08em;
  line-height: 1.4;
  margin-bottom: 12px;
}

.panel-desc {
  font-size: 13px;
  line-height: 1.8;
  opacity: 0.8;
  margin-bottom: 20px;
}

.panel-link {
  font-size: 13px;
  letter-spacing: 0.1em;
  color: var(--accent-light);
  opacity: 0;
  transform: translateY(8px);
  transition: all 0.4s ease;
}

.hero-panel:hover .panel-link {
  opacity: 1;
  transform: translateY(0);
}

.panel-label {
  position: absolute;
  top: 32px;
  left: 32px;
  font-family: var(--font-en);
  font-size: 11px;
  letter-spacing: 0.2em;
  opacity: 0.3;
  z-index: 2;
}

/* Panel divider lines */
.hero-panel::after {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 1px;
  height: 100%;
  background: rgba(255, 255, 255, 0.1);
}

.hero-panel:last-child::after {
  display: none;
}

/* ===================================
   Section Common
   =================================== */
.section {
  padding: var(--section-padding) 0;
}

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

.section-header.light .section-sub,
.section-header.light .section-title {
  color: var(--white);
}

.section-sub {
  font-family: var(--font-en);
  font-size: 14px;
  letter-spacing: 0.2em;
  color: var(--accent);
  margin-bottom: 12px;
}

.section-title {
  font-size: clamp(24px, 4vw, 34px);
  font-weight: 700;
  letter-spacing: 0.1em;
  color: var(--primary);
}

/* ===================================
   About Section
   =================================== */
.about {
  background: var(--off-white);
}

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

.about-lead {
  font-size: 20px;
  font-weight: 500;
  line-height: 2;
  margin-bottom: 24px;
  color: var(--primary);
}

.about-text p {
  color: var(--text-light);
  line-height: 2;
}

.about-table table {
  width: 100%;
  border-collapse: collapse;
}

.about-table tr {
  border-bottom: 1px solid var(--gray-light);
  transition: background-color 0.3s ease;
}

.about-table tr:hover {
  background-color: rgba(201, 169, 97, 0.05);
}

.about-table th,
.about-table td {
  padding: 20px 0;
  text-align: left;
  vertical-align: top;
}

.about-table th {
  width: 120px;
  font-weight: 500;
  color: var(--primary);
  font-size: 14px;
}

.about-table td {
  color: var(--text-light);
  font-size: 14px;
}

/* ===================================
   Service Sections
   =================================== */
.service {
  background: var(--white);
}

.service-re {
  background: var(--white);
}

.service-pet-section {
  background: var(--off-white);
}

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

.service-section-desc {
  text-align: center;
  font-size: 15px;
  color: var(--text-light);
  line-height: 2;
  margin-top: 20px;
}

.service-section-desc strong {
  color: var(--primary);
  font-weight: 700;
}

/* Service Grid - Real Estate */
.service-grid-re {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.service-card {
  padding: 36px 20px;
  background: var(--off-white);
  border-radius: 4px;
  text-align: center;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

.service-re .service-card {
  background: var(--off-white);
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: linear-gradient(90deg, var(--accent), var(--accent-light));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.5s cubic-bezier(0.22, 1, 0.36, 1);
}

.service-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 32px rgba(26, 42, 74, 0.08);
}

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

.service-icon {
  width: 52px;
  height: 52px;
  margin: 0 auto 20px;
  color: var(--accent);
}

.service-icon svg {
  width: 100%;
  height: 100%;
}

.service-title {
  font-size: 16px;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 12px;
  letter-spacing: 0.05em;
}

.service-desc {
  font-size: 13px;
  color: var(--text-light);
  line-height: 1.8;
}

/* Service Feature Layout (Pet & Soil) */
.service-feature {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 60px;
  align-items: center;
}

.service-feature.reverse {
  grid-template-columns: 1.2fr 1fr;
}

.service-feature.reverse .service-feature-visual {
  order: 2;
}

.service-feature.reverse .service-feature-text {
  order: 1;
}

.feature-placeholder {
  aspect-ratio: 4/3;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

.pet-placeholder {
  background: linear-gradient(135deg, #e8f5e9 0%, #c8e6c9 50%, #a5d6a7 100%);
  color: #2d5a3d;
}

.soil-placeholder {
  background: linear-gradient(135deg, #efebe9 0%, #d7ccc8 50%, #bcaaa4 100%);
  color: #5a3a1a;
}

.feature-placeholder svg {
  width: 80px;
  height: 80px;
  opacity: 0.4;
}

.feature-heading {
  font-size: 24px;
  font-weight: 700;
  color: var(--primary);
  line-height: 1.6;
  margin-bottom: 20px;
}

.service-feature-text p {
  color: var(--text-light);
  line-height: 2;
  margin-bottom: 24px;
}

.feature-list {
  list-style: none;
}

.feature-list li {
  position: relative;
  padding-left: 20px;
  margin-bottom: 10px;
  font-size: 14px;
  color: var(--text);
}

.feature-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 10px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--accent);
}

/* ===================================
   Access Section
   =================================== */
.access {
  background: var(--off-white);
}

.access-content {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 60px;
  align-items: start;
}

.access-item {
  margin-bottom: 32px;
}

.access-item:last-child {
  margin-bottom: 0;
}

.access-item h3 {
  font-size: 14px;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 8px;
  padding-left: 16px;
  border-left: 3px solid var(--accent);
}

.access-item p {
  font-size: 15px;
  color: var(--text-light);
  line-height: 1.8;
}

.access-item .note {
  font-size: 13px;
  color: var(--gray);
}

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

.access-map iframe {
  display: block;
}

/* ===================================
   Contact Section
   =================================== */
.contact {
  background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary) 100%);
  color: var(--white);
}

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

.contact-lead {
  font-size: 18px;
  line-height: 2;
  margin-bottom: 48px;
  opacity: 0.9;
}

.contact-methods {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
  max-width: 800px;
  margin: 0 auto;
}

.contact-card {
  padding: 48px 32px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 4px;
  transition: var(--transition);
}

.contact-card:hover {
  background: rgba(255, 255, 255, 0.1);
}

.contact-icon {
  width: 48px;
  height: 48px;
  margin: 0 auto 24px;
  color: var(--accent);
}

.contact-icon svg {
  width: 100%;
  height: 100%;
}

.contact-card h3 {
  font-size: 14px;
  font-weight: 500;
  margin-bottom: 16px;
  opacity: 0.8;
}

.contact-tel,
.contact-email {
  font-size: 24px;
  font-weight: 700;
  color: var(--accent);
  margin-bottom: 8px;
}

.contact-note {
  font-size: 13px;
  opacity: 0.6;
}

/* ===================================
   Footer
   =================================== */
.footer {
  background: var(--primary-dark);
  color: var(--white);
  padding: 60px 0 24px;
}

.footer-inner {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 40px;
  align-items: start;
  padding-bottom: 40px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-logo .logo-main {
  font-size: 24px;
}

.footer-info {
  padding-top: 8px;
}

.footer-info p {
  font-size: 13px;
  opacity: 0.7;
  margin-bottom: 4px;
}

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

.footer-nav a {
  font-size: 13px;
  opacity: 0.7;
  transition: var(--transition);
  position: relative;
}

.footer-nav a:hover {
  opacity: 1;
  color: var(--accent);
}

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

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

.footer-bottom {
  padding-top: 24px;
  text-align: center;
}

.footer-bottom p {
  font-size: 12px;
  opacity: 0.5;
}

/* ===================================
   Animations
   =================================== */

/* Reveal animations */
.reveal-up,
.reveal-left,
.reveal-right,
.reveal-scale {
  opacity: 0;
  transition: opacity 0.8s cubic-bezier(0.22, 1, 0.36, 1),
              transform 0.8s cubic-bezier(0.22, 1, 0.36, 1);
  will-change: opacity, transform;
}

.reveal-up {
  transform: translateY(40px);
}

.reveal-left {
  transform: translateX(-40px);
}

.reveal-right {
  transform: translateX(40px);
}

.reveal-scale {
  transform: scale(0.95);
}

.reveal-up.revealed,
.reveal-left.revealed,
.reveal-right.revealed,
.reveal-scale.revealed {
  opacity: 1;
  transform: translateY(0) translateX(0) scale(1);
}

/* Smooth page load */
body {
  animation: pageLoad 0.5s ease-out;
}

@keyframes pageLoad {
  from { opacity: 0; }
  to { opacity: 1; }
}

/* Reduce motion for accessibility */
@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}

/* ===================================
   Responsive Design
   =================================== */
@media (max-width: 1024px) {
  :root {
    --section-padding: 80px;
  }

  .hero-panels {
    grid-template-columns: 1fr;
    min-height: auto;
  }

  .hero-panel {
    min-height: 220px;
    padding: 32px 28px;
  }

  .hero-panel::after {
    top: auto;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 1px;
    right: auto;
  }

  .panel-title {
    font-size: 22px;
  }

  .panel-link {
    opacity: 1;
    transform: translateY(0);
  }

  .service-grid-re {
    grid-template-columns: repeat(2, 1fr);
  }

  .about-content,
  .access-content {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .service-feature,
  .service-feature.reverse {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .service-feature.reverse .service-feature-visual,
  .service-feature.reverse .service-feature-text {
    order: unset;
  }

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

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

@media (max-width: 768px) {
  :root {
    --section-padding: 48px;
  }

  .container {
    padding: 0 16px;
  }

  /* Header - Mobile */
  .header-inner {
    padding: 12px 16px;
  }

  .menu-toggle {
    display: flex;
  }

  .nav {
    position: fixed;
    top: 0;
    right: -100%;
    width: 100%;
    height: 100vh;
    background: var(--primary-dark);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
  }

  .nav.active {
    right: 0;
  }

  .nav-list {
    flex-direction: column;
    align-items: center;
    gap: 32px;
  }

  .nav-list a {
    font-size: 18px;
  }

  /* Hero - Mobile */
  .hero-grid {
    padding-top: 56px;
  }

  .hero-brand {
    padding: 40px 16px 36px;
  }

  .hero-brand-en {
    font-size: 11px;
    margin-bottom: 12px;
  }

  .hero-brand-title {
    font-size: 24px;
    margin-bottom: 16px;
  }

  .hero-brand-desc {
    font-size: 13px;
    line-height: 1.8;
  }

  .hero-brand-desc br {
    display: none;
  }

  .hero-panels {
    grid-template-columns: 1fr;
  }

  .hero-panel {
    min-height: 180px;
    padding: 28px 20px;
  }

  .panel-icon {
    width: 40px;
    height: 40px;
    top: 20px;
    right: 20px;
  }

  .panel-label {
    top: 20px;
    left: 20px;
    font-size: 10px;
  }

  .panel-num {
    font-size: 11px;
    margin-bottom: 8px;
  }

  .panel-title {
    font-size: 20px;
    margin-bottom: 8px;
  }

  .panel-title br {
    display: none;
  }

  .panel-desc {
    font-size: 12px;
    margin-bottom: 12px;
  }

  .panel-desc br {
    display: none;
  }

  .panel-link {
    opacity: 1;
    transform: translateY(0);
    font-size: 12px;
  }

  /* Section headers */
  .section-header {
    margin-bottom: 32px;
  }

  /* About */
  .about-lead {
    font-size: 16px;
  }

  .about-lead br {
    display: none;
  }

  .about-table th,
  .about-table td {
    padding: 14px 0;
  }

  /* Service */
  .service-section-desc {
    font-size: 14px;
    margin-top: 14px;
  }

  .service-grid-re {
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
  }

  .service-card {
    padding: 20px 14px;
  }

  .service-icon {
    width: 36px;
    height: 36px;
    margin-bottom: 12px;
  }

  .service-title {
    font-size: 13px;
    margin-bottom: 8px;
    line-height: 1.4;
  }

  .service-desc {
    font-size: 11px;
    line-height: 1.6;
    color: var(--gray);
  }

  /* Feature sections */
  .feature-heading {
    font-size: 20px;
  }

  .feature-placeholder {
    aspect-ratio: 16/9;
  }

  /* Access */
  .access-map iframe {
    height: 300px;
  }

  /* Contact */
  .contact-lead {
    font-size: 15px;
  }

  .contact-lead br {
    display: none;
  }

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

  .contact-card {
    padding: 28px 20px;
  }

  .contact-tel,
  .contact-email {
    font-size: 18px;
    word-break: break-all;
  }

  /* Footer */
  .footer {
    padding: 36px 0 20px;
  }

  .footer-inner {
    gap: 20px;
    padding-bottom: 20px;
  }

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

@media (max-width: 480px) {
  :root {
    --section-padding: 40px;
  }

  .container {
    padding: 0 12px;
  }

  /* Header */
  .header-inner {
    padding: 10px 12px;
  }

  .logo-main {
    font-size: 22px;
  }

  .logo-sub {
    font-size: 9px;
  }

  /* Hero */
  .hero-brand {
    padding: 32px 12px 28px;
  }

  .hero-brand-title {
    font-size: 22px;
  }

  .hero-brand-desc {
    font-size: 12px;
  }

  .hero-panel {
    min-height: 160px;
    padding: 24px 16px;
  }

  .panel-title {
    font-size: 18px;
  }

  /* Section */
  .section-header {
    margin-bottom: 24px;
  }

  .section-sub {
    font-size: 11px;
    margin-bottom: 8px;
  }

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

  /* About */
  .about-lead {
    font-size: 15px;
    margin-bottom: 16px;
  }

  .about-text p {
    font-size: 13px;
  }

  .about-table th {
    display: block;
    padding-bottom: 4px;
    font-size: 12px;
  }

  .about-table td {
    display: block;
    padding-top: 0;
    padding-bottom: 14px;
    font-size: 13px;
  }

  /* Service */
  .service-grid-re {
    grid-template-columns: repeat(2, 1fr);
    gap: 8px;
  }

  .service-card {
    padding: 16px 10px;
  }

  .service-icon {
    width: 30px;
    height: 30px;
    margin-bottom: 10px;
  }

  .service-title {
    font-size: 12px;
    margin-bottom: 6px;
  }

  .service-desc {
    font-size: 10.5px;
    line-height: 1.5;
  }

  .feature-heading {
    font-size: 18px;
  }

  .service-feature-text p {
    font-size: 13px;
  }

  .feature-list li {
    font-size: 13px;
  }

  /* Access */
  .access-item {
    margin-bottom: 20px;
  }

  .access-item h3 {
    font-size: 13px;
    padding-left: 12px;
  }

  .access-item p {
    font-size: 13px;
  }

  .access-map iframe {
    height: 250px;
  }

  /* Contact */
  .contact-lead {
    font-size: 14px;
    margin-bottom: 24px;
  }

  .contact-card {
    padding: 24px 16px;
  }

  .contact-icon {
    width: 36px;
    height: 36px;
    margin-bottom: 12px;
  }

  .contact-card h3 {
    font-size: 13px;
    margin-bottom: 10px;
  }

  .contact-tel,
  .contact-email {
    font-size: 16px;
  }

  .contact-note {
    font-size: 11px;
  }

  /* Footer */
  .footer {
    padding: 28px 0 16px;
  }

  .footer-logo .logo-main {
    font-size: 20px;
  }

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

  .footer-nav {
    gap: 10px 14px;
  }

  .footer-nav a {
    font-size: 12px;
  }

  .footer-bottom p {
    font-size: 10px;
  }
}

/* Extra small devices */
@media (max-width: 375px) {
  .hero-brand-title {
    font-size: 20px;
  }

  .panel-title {
    font-size: 16px;
  }

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

  .service-grid-re {
    gap: 6px;
  }

  .service-card {
    padding: 14px 8px;
  }

  .service-icon {
    width: 26px;
    height: 26px;
    margin-bottom: 8px;
  }

  .service-title {
    font-size: 11px;
    margin-bottom: 4px;
  }

  .service-desc {
    font-size: 10px;
  }

  .contact-tel,
  .contact-email {
    font-size: 15px;
  }
}
