/* ========================================
   AMAYA PARTNERS - VentureINQ-Inspired Design
   ======================================== */

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

:root {
  --primary: #1e3a5f;
  --primary-light: #2c5282;
  --accent: #3182ce;
  --accent-hover: #2b6cb0;
  --text: #374151;
  --text-light: #6b7280;
  --text-dark: #1f2937;
  --bg: #ffffff;
  --bg-light: #f0f5fa;
  --bg-dark: #1e3a5f;
  --border: #e2e8f0;
  --white: #ffffff;
  --header-height: 80px;
  --warm: #e67e22;
  --warm-hover: #d35400;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Inter', 'Noto Sans JP', -apple-system, BlinkMacSystemFont, sans-serif;
  color: var(--text);
  background: var(--bg);
  line-height: 1.7;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

a {
  color: var(--accent);
  text-decoration: none;
  transition: color 0.3s;
}

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

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

ul {
  list-style: none;
}

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

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

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

.fade-in-left {
  opacity: 0;
  transform: translateX(-40px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.fade-in-left.visible {
  opacity: 1;
  transform: translateX(0);
}

.fade-in-right {
  opacity: 0;
  transform: translateX(40px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.fade-in-right.visible {
  opacity: 1;
  transform: translateX(0);
}

/* ========================================
   Header
   ======================================== */
.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  height: var(--header-height);
  transition: background 0.4s, box-shadow 0.4s;
  background: transparent;
}

.header.scrolled {
  background: rgba(255, 255, 255, 0.97);
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.08);
}

.header.scrolled .nav-list a {
  color: var(--text);
}

.header.scrolled .nav-list a:hover,
.header.scrolled .nav-list a.active {
  color: var(--accent);
}

.header.scrolled .nav-list a::after {
  background: var(--accent);
}

.header.scrolled .header-logo img {
  filter: none !important;
}

.header.scrolled .hamburger span {
  background: var(--text);
}

.header.scrolled .lang-switch {
  border-left-color: var(--border);
}

.header.scrolled .lang-switch a {
  color: var(--text-light);
}

.header.scrolled .lang-switch a.active {
  background: var(--accent);
  color: var(--white);
}

.header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
}

.header-logo a {
  display: flex;
  align-items: center;
  gap: 10px;
}

.header-logo img {
  height: 38px;
  filter: brightness(0) invert(1);
  transition: filter 0.3s;
}

.header.scrolled .header-logo img {
  filter: none !important;
}

/* For subpages with solid header */
.header-solid {
  background: var(--primary);
}

.header-solid.scrolled {
  background: rgba(255, 255, 255, 0.97);
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.08);
}

.header-solid.scrolled .nav-list a {
  color: var(--text);
}

.header-solid.scrolled .nav-list a:hover,
.header-solid.scrolled .nav-list a.active {
  color: var(--accent);
}

.header-solid.scrolled .header-logo img {
  filter: none;
}

.header-solid.scrolled .hamburger span {
  background: var(--text);
}

.header-solid.scrolled .lang-switch {
  border-left-color: var(--border);
}

.header-solid.scrolled .lang-switch a {
  color: var(--text-light);
}

.header-solid.scrolled .lang-switch a.active {
  background: var(--accent);
  color: var(--white);
}

.nav-list {
  display: flex;
  align-items: center;
  gap: 36px;
}

.nav-list a {
  color: rgba(255, 255, 255, 0.9);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  position: relative;
  padding: 5px 0;
  transition: color 0.3s;
}

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

.nav-list a:hover,
.nav-list a.active {
  color: var(--white);
}

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

.lang-switch {
  display: flex;
  align-items: center;
  gap: 6px;
  margin-left: 20px;
  padding-left: 20px;
  border-left: 1px solid rgba(255, 255, 255, 0.2);
}

.lang-switch a {
  font-size: 11px;
  font-weight: 600;
  padding: 4px 10px;
  border-radius: 2px;
  color: rgba(255, 255, 255, 0.5);
  letter-spacing: 1px;
}

.lang-switch a.active {
  background: var(--accent);
  color: var(--white);
}

.lang-switch a:hover:not(.active) {
  color: var(--white);
}

.lang-switch a::after {
  display: none !important;
}

/* Contact button in header */
.header-contact {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--warm) !important;
  color: var(--white) !important;
  padding: 10px 24px !important;
  border-radius: 4px;
  font-size: 12px !important;
  font-weight: 600;
  letter-spacing: 1.5px !important;
  text-transform: uppercase !important;
  transition: background 0.3s !important;
}

.header-contact:hover {
  background: var(--warm-hover) !important;
  color: var(--white) !important;
}

.header-contact::after {
  display: none !important;
}

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 6px;
  cursor: pointer;
  padding: 5px;
  background: none;
  border: none;
}

.hamburger span {
  display: block;
  width: 28px;
  height: 1px;
  background: var(--white);
  transition: all 0.3s;
}

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

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

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

/* ========================================
   Hero Section
   ======================================== */
.hero {
  position: relative;
  height: 100vh;
  min-height: 600px;
  max-height: 900px;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  z-index: 0;
}

.hero-bg::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.55) 0%, rgba(255, 255, 255, 0.25) 100%);
}

.hero .container {
  position: relative;
  z-index: 1;
}

.hero-content {
  max-width: 700px;
}

.hero-label {
  display: inline-block;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--primary);
  margin-bottom: 24px;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--primary);
}

.hero-content h1 {
  font-size: 48px;
  font-weight: 700;
  line-height: 1.2;
  color: var(--primary);
  margin-bottom: 24px;
  letter-spacing: -0.5px;
}

.hero-content p {
  font-size: 17px;
  color: var(--text);
  margin-bottom: 40px;
  line-height: 1.8;
  max-width: 550px;
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--warm);
  color: var(--white);
  padding: 16px 36px;
  border-radius: 4px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  transition: all 0.3s;
  border: none;
  cursor: pointer;
}

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

.btn-outline {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: transparent;
  color: var(--primary);
  padding: 15px 35px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  border: 1px solid var(--primary);
  transition: all 0.3s;
  cursor: pointer;
}

.btn-outline:hover {
  background: var(--primary);
  color: var(--white);
  border-color: var(--primary);
}

.btn-dark {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--primary);
  color: var(--white);
  padding: 16px 36px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  transition: all 0.3s;
  border: none;
  cursor: pointer;
}

.btn-dark:hover {
  background: var(--primary-light);
  color: var(--white);
}

/* Hero scroll indicator */
.hero-scroll {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  text-align: center;
  color: rgba(30, 58, 95, 0.5);
  font-size: 11px;
  letter-spacing: 2px;
  text-transform: uppercase;
}

.hero-scroll::after {
  content: '';
  display: block;
  width: 1px;
  height: 40px;
  background: rgba(30, 58, 95, 0.3);
  margin: 10px auto 0;
  animation: scrollDown 2s ease-in-out infinite;
}

@keyframes scrollDown {
  0% { height: 0; opacity: 1; }
  50% { height: 40px; opacity: 1; }
  100% { height: 40px; opacity: 0; }
}

/* ========================================
   Section Common
   ======================================== */
.section {
  padding: 100px 0;
}

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

.section-dark {
  background: #e8eff7;
  color: var(--text-dark);
}

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

.section-title {
  text-align: center;
  margin-bottom: 60px;
}

.section-title .en-label {
  font-size: 12px;
  font-weight: 600;
  color: var(--accent);
  text-transform: uppercase;
  letter-spacing: 3px;
  display: block;
  margin-bottom: 12px;
}

.section-title h2 {
  font-size: 36px;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 16px;
  letter-spacing: -0.5px;
}

.section-title p {
  font-size: 16px;
  color: var(--text-light);
  max-width: 600px;
  margin: 0 auto;
}

.section-dark .section-title h2 {
  color: var(--text-dark);
}

.section-dark .section-title .en-label {
  color: var(--accent);
}

.section-dark .section-title p {
  color: var(--text-light);
}

/* ========================================
   Mission / Intro Section
   ======================================== */
.intro-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.intro-text .en-label {
  font-size: 12px;
  font-weight: 600;
  color: var(--accent);
  text-transform: uppercase;
  letter-spacing: 3px;
  display: block;
  margin-bottom: 12px;
}

.intro-text h2 {
  font-size: 34px;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 24px;
  line-height: 1.3;
  letter-spacing: -0.5px;
}

.intro-text p {
  font-size: 15px;
  color: var(--text-light);
  line-height: 1.9;
  margin-bottom: 16px;
}

.intro-image {
  position: relative;
  overflow: hidden;
}

.intro-image img {
  width: 100%;
  height: 450px;
  object-fit: cover;
  display: block;
}

.intro-image::after {
  content: '';
  position: absolute;
  bottom: 0;
  right: 0;
  width: 40%;
  height: 40%;
  border: 3px solid var(--accent);
  transform: translate(15px, 15px);
  z-index: -1;
}

/* Legacy mission-text support */
.mission-text {
  text-align: left;
  max-width: 800px;
  margin: 0 auto;
}

.mission-text h2 {
  font-size: 34px;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 24px;
  line-height: 1.3;
  text-align: center;
  letter-spacing: -0.5px;
}

.mission-text p {
  font-size: 15px;
  color: var(--text-light);
  line-height: 1.9;
}

/* ========================================
   Stats Bar
   ======================================== */
.stats-bar {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  background: #2c5282;
}

.stat-item {
  padding: 25px 30px;
  text-align: center;
  border-right: 1px solid rgba(255, 255, 255, 0.15);
}

.stat-item:last-child {
  border-right: none;
}

.stat-number {
  font-size: 42px;
  font-weight: 700;
  color: #fbbf24;
  line-height: 1;
  margin-bottom: 8px;
}

.stat-label {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.6);
  text-transform: uppercase;
  letter-spacing: 1.5px;
}

/* ========================================
   Cards Grid
   ======================================== */
.cards-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.card {
  background: var(--white);
  overflow: hidden;
  transition: transform 0.4s, box-shadow 0.4s;
  border: 1px solid var(--border);
}

.card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
}

.card-img {
  height: 220px;
  overflow: hidden;
}

.card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s;
}

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

.card-body {
  padding: 30px;
}

.card-body h3 {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 12px;
  color: var(--text-dark);
  letter-spacing: -0.3px;
}

.card-body p {
  font-size: 14px;
  color: var(--text-light);
  margin-bottom: 24px;
  line-height: 1.7;
}

.card-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  font-weight: 600;
  color: var(--accent);
  text-transform: uppercase;
  letter-spacing: 1.5px;
  transition: gap 0.3s;
}

.card-link:hover {
  color: var(--accent-hover);
  gap: 12px;
}

/* ========================================
   Service Grid (Home page)
   ======================================== */
.service-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  background: transparent;
}

.service-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 28px 20px;
  text-align: center;
  background: linear-gradient(135deg, #e8e0f0, #d4e8f5, #c8e6f0);
  border: 1px solid rgba(255, 255, 255, 0.6);
  border-radius: 0;
  transition: all 0.3s;
}

.service-item:hover {
  background: linear-gradient(135deg, #d8cfe8, #b8d4ee, #a8d6e8);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
}

.service-item:hover h3 {
  color: var(--primary);
}

.service-item h3 {
  font-size: 17px;
  font-weight: 700;
  color: var(--primary);
  letter-spacing: 0.5px;
  text-transform: uppercase;
  transition: color 0.3s;
}

/* ========================================
   Service Cards (Services page)
   ======================================== */
.service-cards-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
}

.service-card {
  background: var(--white);
  padding: 40px;
  border: 1px solid var(--border);
  transition: transform 0.3s, box-shadow 0.3s;
  position: relative;
  overflow: hidden;
  scroll-margin-top: 100px;
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: var(--bg-img);
  background-size: cover;
  background-position: center;
  opacity: 0.12;
  z-index: 0;
  pointer-events: none;
}

.service-card > * {
  position: relative;
  z-index: 1;
}

.service-card::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 3px;
  height: 100%;
  background: var(--accent);
  transform: scaleY(0);
  transform-origin: bottom;
  transition: transform 0.4s;
}

.service-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
}

.service-card:hover::after {
  transform: scaleY(1);
}

.service-card h3 {
  font-size: 20px;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 16px;
  letter-spacing: -0.3px;
}

.service-card p {
  font-size: 14px;
  color: var(--text-light);
  line-height: 1.8;
}

.service-card ul {
  margin-top: 12px;
  padding-left: 20px;
  list-style: disc;
}

.service-card ul li {
  font-size: 14px;
  color: var(--text-light);
  line-height: 1.8;
}

/* ========================================
   About / Company Info
   ======================================== */
.philosophy-section {
  position: relative;
  background: url('../images/pixta_433981_M.jpg') center center / cover no-repeat;
}
.philosophy-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(255, 255, 255, 0.5);
}
.philosophy-section .container {
  position: relative;
  z-index: 1;
}
.philosophy-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  max-width: 1000px;
  margin: 0 auto;
}

.philosophy-item {
  text-align: center;
  padding: 40px 30px;
  background: rgba(255, 255, 255, 0.75);
  backdrop-filter: blur(4px);
  border: 1px solid rgba(255, 255, 255, 0.5);
  transition: transform 0.3s, box-shadow 0.3s;
}

.philosophy-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
}

.philosophy-num {
  width: 50px;
  height: 50px;
  background: var(--accent);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  font-weight: 700;
  margin: 0 auto 20px;
}

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

/* Message Section */
.message-section {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 30px;
  align-items: center;
  max-width: 1000px;
  margin: 0 auto;
}

.message-image img {
  width: 100%;
  max-width: 384px;
  max-height: 384px;
  object-fit: cover;
  object-position: top;
}

.message-text h3 {
  font-size: 28px;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 24px;
  letter-spacing: -0.3px;
}

.message-text p {
  font-size: 15px;
  color: var(--text-light);
  line-height: 1.9;
  margin-bottom: 16px;
}

/* Info Table */
.info-table {
  width: 100%;
  border-collapse: collapse;
  max-width: 900px;
  margin: 0 auto;
}

.info-table tr {
  border-bottom: 1px solid var(--border);
}

.info-table th {
  text-align: left;
  padding: 18px 24px;
  font-weight: 600;
  color: var(--text-dark);
  width: 200px;
  vertical-align: top;
  font-size: 14px;
  background: var(--bg-light);
  letter-spacing: 0.3px;
}

.info-table td {
  padding: 18px 24px;
  font-size: 14px;
  color: var(--text);
  line-height: 1.8;
}

/* Timeline */
.timeline {
  max-width: 800px;
  margin: 0 auto;
  position: relative;
  padding-left: 40px;
}

.timeline::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 1px;
  background: var(--accent);
}

.timeline-item {
  position: relative;
  padding-bottom: 30px;
  padding-left: 30px;
}

.timeline-item::before {
  content: '';
  position: absolute;
  left: -44px;
  top: 5px;
  width: 9px;
  height: 9px;
  background: var(--accent);
  border-radius: 50%;
}

.timeline-item .year {
  font-size: 13px;
  font-weight: 700;
  color: var(--accent);
  margin-bottom: 4px;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.timeline-item p {
  font-size: 14px;
  color: var(--text-light);
  line-height: 1.7;
}

/* ========================================
   Contact Form
   ======================================== */
.contact-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
}

.contact-form .form-group {
  margin-bottom: 24px;
}

.contact-form label {
  display: block;
  font-size: 12px;
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 8px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.contact-form label .required {
  color: #e74c3c;
  font-size: 12px;
  margin-left: 4px;
}

.contact-form input,
.contact-form textarea,
.contact-form select {
  width: 100%;
  padding: 14px 16px;
  border: 1px solid var(--border);
  font-size: 14px;
  font-family: inherit;
  transition: border-color 0.3s;
  background: var(--white);
  color: var(--text);
}

.contact-form input:focus,
.contact-form textarea:focus,
.contact-form select:focus {
  outline: none;
  border-color: var(--primary);
}

.contact-form textarea {
  height: 160px;
  resize: vertical;
}

.contact-info-box {
  background: var(--bg-light);
  padding: 40px;
}

.contact-info-box h3 {
  font-size: 22px;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 30px;
  letter-spacing: -0.3px;
}

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

.contact-info-item .icon {
  width: 44px;
  height: 44px;
  background: transparent;
  color: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 28px;
}

.contact-info-item .info h4 {
  font-size: 13px;
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 2px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.contact-info-item .info p {
  font-size: 14px;
  color: var(--text-light);
}

.map-placeholder {
  margin-top: 25px;
  height: 200px;
  background: var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-light);
  font-size: 14px;
}

/* ========================================
   Page Header (Subpages)
   ======================================== */
.page-header {
  position: relative;
  padding: 140px 0 80px;
  background-size: cover;
  background-position: center;
  overflow: hidden;
}

.page-header::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(10, 20, 40, 0.15);
}

.page-header .container {
  position: relative;
  z-index: 1;
}

.page-header h1 {
  font-size: 42px;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 12px;
  letter-spacing: -0.5px;
}

.page-header .breadcrumb {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.5);
  letter-spacing: 1px;
}

.page-header .breadcrumb a {
  color: rgba(255, 255, 255, 0.5);
}

.page-header .breadcrumb a:hover {
  color: var(--accent);
}

/* ========================================
   CTA Section
   ======================================== */
.cta-section {
  padding: 80px 0;
  text-align: center;
  background: #ffffff;
  position: relative;
  overflow: hidden;
}

.cta-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url('') center/cover;
  opacity: 0.1;
}

.cta-section .container {
  position: relative;
  z-index: 1;
}

.cta-section h2 {
  font-size: 36px;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 16px;
  letter-spacing: -0.5px;
}

.cta-section p {
  font-size: 16px;
  color: var(--text-light);
  margin-bottom: 40px;
  max-width: 550px;
  margin-left: auto;
  margin-right: auto;
}

/* ========================================
   Office Gallery
   ======================================== */
.office-gallery {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 4px;
}

.office-gallery img {
  width: 100%;
  height: 280px;
  object-fit: cover;
  transition: opacity 0.3s;
}

.office-gallery img:hover {
  opacity: 0.85;
}

/* ========================================
   Footer
   ======================================== */
.footer {
  background: var(--bg-dark);
  color: rgba(255, 255, 255, 0.7);
  padding: 80px 0 0;
}

.footer-content {
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: 60px;
  padding-bottom: 60px;
}

.footer-info h3 {
  font-size: 18px;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 20px;
  letter-spacing: 0.5px;
}

.footer-info p {
  font-size: 13px;
  line-height: 1.8;
  margin-bottom: 4px;
}

.footer-info .tel {
  font-size: 22px;
  font-weight: 700;
  color: var(--white);
  margin-top: 16px;
  letter-spacing: 1px;
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 12px;
  align-content: flex-start;
}

.footer-links a {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.5);
  text-transform: uppercase;
  letter-spacing: 1px;
  transition: color 0.3s;
}

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

.footer-contact-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--warm);
  color: var(--white) !important;
  padding: 14px 32px;
  border-radius: 4px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  margin-top: 20px;
  transition: background 0.3s;
}

.footer-contact-btn:hover {
  background: var(--warm-hover);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding: 24px 0;
  text-align: center;
  font-size: 12px;
  color: rgba(255, 255, 255, 0.3);
  letter-spacing: 1px;
}

/* ========================================
   Responsive
   ======================================== */
@media (max-width: 1024px) {
  .container {
    padding: 0 30px;
  }

  .intro-split {
    gap: 50px;
  }

  .hero-content h1 {
    font-size: 38px;
  }
}

@media (max-width: 768px) {
  :root {
    --header-height: 65px;
  }

  .container {
    padding: 0 20px;
  }

  .hamburger {
    display: flex;
  }

  .nav {
    position: fixed;
    top: var(--header-height);
    left: 0;
    width: 100%;
    background: var(--primary);
    transform: translateY(-100%);
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s;
    padding: 20px;
  }

  .nav.open {
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
  }

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

  .nav-list li {
    width: 100%;
  }

  .nav-list a {
    display: block;
    padding: 14px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  }

  .nav-list a::after {
    display: none;
  }

  .lang-switch {
    margin-left: 0;
    padding-left: 0;
    border-left: none;
    padding-top: 15px;
  }

  .hero {
    height: auto;
    min-height: 500px;
    padding: 120px 0 80px;
  }

  .hero-content h1 {
    font-size: 30px;
  }

  .hero-content p {
    font-size: 15px;
  }

  .section {
    padding: 60px 0;
  }

  .section-title h2 {
    font-size: 28px;
  }

  .mission-text h2 {
    font-size: 28px;
  }

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

  .intro-image img {
    height: 300px;
  }

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

  .cards-3 {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .service-grid {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .service-cards-grid {
    grid-template-columns: 1fr;
  }

  .philosophy-list {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .message-section {
    grid-template-columns: 1fr;
    gap: 30px;
  }

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

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

  .office-gallery {
    grid-template-columns: 1fr;
  }

  .info-table th {
    display: block;
    width: 100%;
  }

  .info-table td {
    display: block;
  }

  .page-header {
    padding: 100px 0 60px;
  }

  .page-header h1 {
    font-size: 32px;
  }
}

@media (max-width: 480px) {
  .hero-content h1 {
    font-size: 26px;
  }

  .stats-bar {
    grid-template-columns: 1fr;
  }

  .stat-item {
    border-right: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  }
}
