:root {
  --bg-color: #0b0f14;
  --bg-secondary: #121922;
  --bg-soft: #10161e;
  --text-color: #edf2f8;
  --text-muted: #a2afbf;
  --heading-color: #ffffff;
  --primary-color: #d0a85f;
  --primary-dark: #b78d42;
  --accent-color: #5db9ff;
  --border-color: rgba(255, 255, 255, 0.09);
  --shadow-color: rgba(0, 0, 0, 0.32);
  --header-bg: rgba(8, 12, 18, 0.72);
  --footer-bg: #080c11;
  --footer-text: #b7c3cf;
  --hero-overlay: linear-gradient(to right, rgba(5, 8, 12, 0.86), rgba(5, 8, 12, 0.44));
  --page-hero-overlay: linear-gradient(to right, rgba(5, 8, 12, 0.84), rgba(5, 8, 12, 0.52));
  --notice-bg: rgba(255, 255, 255, 0.03);
  --notice-border: rgba(255, 255, 255, 0.08);
  --notice-shadow: 0 18px 45px rgba(0, 0, 0, 0.18);
  --notice-accent: #d0a85f;
}

body.light-mode {
  --bg-color: #f7f8fb;
  --bg-secondary: #ffffff;
  --bg-soft: #eff3f8;
  --text-color: #1d2430;
  --text-muted: #5f6a79;
  --heading-color: #111827;
  --primary-color: #b68a39;
  --primary-dark: #976f28;
  --accent-color: #1171c9;
  --border-color: rgba(17, 24, 39, 0.09);
  --shadow-color: rgba(13, 29, 49, 0.08);
  --header-bg: rgba(255, 255, 255, 0.84);
  --footer-bg: #111827;
  --footer-text: #d3d9e2;
  --notice-bg: #ffffff;
  --notice-border: rgba(17, 24, 39, 0.08);
  --notice-shadow: 0 18px 45px rgba(15, 23, 42, 0.08);
  --notice-accent: #b68a39;
}

/* =========================
   RESET / BASE
========================= */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: Arial, sans-serif;
  background: var(--bg-color);
  color: var(--text-color);
  line-height: 1.65;
  transition: background 0.3s ease, color 0.3s ease;
}

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

a {
  color: inherit;
  text-decoration: none;
}

button,
input,
textarea,
select {
  font: inherit;
}

ul {
  list-style: none;
}

p,
li,
a,
label,
input,
textarea,
select,
small,
span {
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

h1,
h2,
h3,
h4 {
  letter-spacing: -0.01em;
}

.container {
  width: min(90%, 1240px);
  margin: 0 auto;
}

.section {
  padding: 110px 0;
}

.section-soft {
  background:
    radial-gradient(circle at top left, rgba(93, 185, 255, 0.06), transparent 34%),
    radial-gradient(circle at bottom right, rgba(208, 168, 95, 0.08), transparent 28%),
    var(--bg-soft);
}

.eyebrow {
  display: inline-block;
  margin-bottom: 16px;
  color: var(--primary-color);
  text-transform: uppercase;
  letter-spacing: 2px;
  font-size: 0.82rem;
  font-weight: 700;
}

.section-heading {
  max-width: 860px;
  margin: 0 auto 54px;
  text-align: center;
}

.left-heading {
  text-align: left;
  margin-left: 0;
  max-width: 900px;
}

.section-heading h2,
.left-heading h2,
.split-text h2,
.about-highlight-box h2,
.contact-card h2,
.form-card h2,
.support-detail-box h2,
.support-exclusion-card h3,
.support-plan-top h3,
.project-card h3,
.project-card-enhanced h3,
.service-card h3,
.contact-topic-card h3 {
  color: var(--heading-color);
}

.section-heading h2 {
  font-size: clamp(2rem, 3vw, 2.8rem);
  line-height: 1.12;
  margin-bottom: 16px;
}

.section-heading p {
  color: var(--text-muted);
  font-size: 1.02rem;
  max-width: 100%;
}

.left-heading p,
.split-text p,
.about-highlight-box p,
.contact-intro-text,
.form-intro-text,
.support-plan-text,
.support-detail-box p,
.support-exclusion-card p,
.project-card p,
.project-card-enhanced p,
.home-notice-text,
.cta-box p {
  max-width: 100%;
}

/* =========================
   BUTTONS
========================= */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 168px;
  min-height: 44px;
  padding: 15px 28px;
  border-radius: 999px;
  font-weight: 700;
  border: 1px solid transparent;
  cursor: pointer;
  transition:
    transform 0.25s ease,
    opacity 0.25s ease,
    background 0.25s ease,
    border-color 0.25s ease;
}

.btn:hover {
  transform: translateY(-2px);
}

.btn-primary {
  background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
  color: #0e1116;
}

.btn-secondary {
  background: transparent;
  border-color: rgba(255, 255, 255, 0.28);
  color: #ffffff;
}

.btn-light {
  background: #ffffff;
  color: #111827;
}

.btn-outline-light {
  background: transparent;
  border-color: rgba(255, 255, 255, 0.4);
  color: #ffffff;
}

.text-link {
  color: var(--accent-color);
  font-weight: 700;
  transition: opacity 0.25s ease;
}

.text-link:hover {
  opacity: 0.8;
}

/* =========================
   HEADER / NAV
========================= */
.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: var(--header-bg);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border-color);
}

.navbar {
  min-height: 86px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.logo {
  font-size: 1.95rem;
  font-weight: 700;
  color: var(--heading-color);
  white-space: nowrap;
}

.logo span {
  color: var(--primary-color);
}

.nav {
  margin-left: auto;
}

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

.nav-link,
.dropdown-toggle {
  display: inline-flex;
  align-items: center;
  min-height: 44px;
  color: var(--heading-color);
  background: none;
  border: none;
  cursor: pointer;
  font-size: 1rem;
  transition: color 0.25s ease;
}

.nav-link:hover,
.nav-link.active,
.dropdown-toggle:hover,
.dropdown-toggle.active {
  color: var(--primary-color);
}

.dropdown,
.language-switcher {
  position: relative;
}

.dropdown-menu,
.language-menu {
  position: absolute;
  top: calc(100% + 14px);
  right: 0;
  min-width: 220px;
  background: var(--bg-secondary);
  border: 1px solid var(--border-color);
  border-radius: 18px;
  padding: 12px;
  box-shadow: 0 18px 40px var(--shadow-color);
  display: none;
  z-index: 1001;
}

.dropdown.open .dropdown-menu,
.language-switcher.open .language-menu {
  display: block;
}

.dropdown-menu li a,
.language-option {
  display: block;
  width: 100%;
  min-height: 44px;
  text-align: left;
  padding: 12px 14px;
  border-radius: 10px;
  color: var(--heading-color);
  background: none;
  border: none;
  cursor: pointer;
  transition: background 0.25s ease, color 0.25s ease;
}

.dropdown-menu li a:hover,
.language-option:hover {
  background: var(--bg-soft);
  color: var(--primary-color);
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 12px;
}

.language-toggle,
.theme-toggle {
  height: 44px;
  min-width: 44px;
  border: 1px solid var(--border-color);
  background: var(--bg-secondary);
  color: var(--heading-color);
  border-radius: 999px;
  cursor: pointer;
  padding: 0 16px;
}

.theme-toggle {
  width: 44px;
  padding: 0;
}

.menu-toggle {
  display: none;
  width: 46px;
  height: 46px;
  border: none;
  background: transparent;
  cursor: pointer;
}

.menu-toggle span {
  display: block;
  width: 28px;
  height: 3px;
  margin: 5px auto;
  background: var(--heading-color);
  border-radius: 4px;
  transition: 0.3s ease;
}

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

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

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

/* =========================
   HERO / PAGE HERO
========================= */
.hero,
.page-hero {
  position: relative;
  display: flex;
  align-items: center;
}

.hero {
  min-height: 100vh;
}

.hero-portfolio {
  background: url("./image/converted_2.webp")
}

.page-hero-about {
  background: url("./image/converted_5.webp") center/cover no-repeat;
}

.page-hero-projects {
  background: url("./image/converted_4.webp") center/cover no-repeat;
}

.page-hero-contact {
  background: url("./image/converted_1.webp") center/cover no-repeat;
}

.page-hero-support {
  background: url("./image/converted_3.webp") center/cover no-repeat;
}



.hero-overlay,
.page-hero-overlay {
  position: absolute;
  inset: 0;
}

.hero-overlay {
  background: var(--hero-overlay);
}

.page-hero-overlay {
  background: var(--page-hero-overlay);
}

.hero-content,
.page-hero-content {
  position: relative;
  z-index: 2;
  width: 100%;
}

.hero-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 120px 0 80px;
  max-width: 1200px;
  margin: 0 auto;
}

.hero-text {
  width: 100%;
  max-width: 100%;
}

.hero-text h1 {
  font-size: clamp(2.5rem, 5vw, 4.3rem);
  line-height: 1.18;
  color: #ffffff;
  margin-bottom: 22px;
  max-width: 1100px;
  overflow-wrap: break-word;
}

.hero-text p {
  color: rgba(255, 255, 255, 0.82);
  font-size: 1.08rem;
  max-width: 720px;
  margin: 0 auto 30px;
}

.hero-buttons,
.reservation-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.hero-buttons {
  justify-content: center;
  margin-bottom: 36px;
}

.reservation-buttons {
  justify-content: center;
}

.hero-highlights {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  justify-content: center;
}

.highlight-pill {
  min-width: 185px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 18px;
  padding: 18px 20px;
  backdrop-filter: blur(10px);
}

.highlight-pill strong {
  display: block;
  color: #ffffff;
  margin-bottom: 4px;
}

.highlight-pill span {
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.93rem;
}

.page-hero {
  min-height: 56vh;
  color: #ffffff;
  text-align: center;
}

.page-hero-content {
  padding: 120px 0 80px;
  max-width: 900px;
  margin: 0 auto;
}

.page-hero-content h1 {
  font-size: clamp(2.2rem, 4vw, 3.6rem);
  line-height: 1.08;
  margin-bottom: 18px;
  overflow-wrap: break-word;
}

.page-hero-content p {
  color: rgba(255, 255, 255, 0.82);
  font-size: 1.04rem;
}

/* =========================
   HOME NOTICE
========================= */
.home-notice-section {
  padding: 32px 0 14px;
}

.home-notice-card {
  position: relative;
  background: var(--notice-bg);
  border: 1px solid var(--notice-border);
  border-left: 4px solid var(--notice-accent);
  border-radius: 22px;
  padding: 22px 26px;
  box-shadow: var(--notice-shadow);
  backdrop-filter: blur(10px);
  transition: transform 0.3s ease;
}

.home-notice-card:hover {
  transform: translateY(-3px);
}

.home-notice-top {
  margin-bottom: 12px;
}

.home-notice-content {
  max-width: 850px;
}

.home-notice-title {
  font-size: clamp(1.2rem, 2.3vw, 1.6rem);
  line-height: 1.3;
  color: var(--heading-color);
  margin-bottom: 8px;
}

.home-notice-text {
  font-size: 1rem;
  line-height: 1.7;
  color: var(--text-muted);
}

.notice-lang,
.notice-title-lang {
  display: none;
}

.notice-lang.active,
.notice-title-lang.active {
  display: block;
}

/* =========================
   LAYOUT GRIDS
========================= */
.service-grid,
.project-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.project-grid-enhanced {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.split-layout,
.contact-layout {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 32px;
  align-items: start;
}

.contact-layout-enhanced {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 28px;
  align-items: start;
}

.support-plan-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 32px;
}

.support-details-layout,
.support-exclusion-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

.contact-topic-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 28px;
}

/* =========================
   COMMON SURFACES / CARDS
========================= */
.service-card,
.project-card,
.stat-card,
.contact-card,
.form-card,
.support-box {
  background: var(--bg-secondary);
  border: 1px solid var(--border-color);
  border-radius: 24px;
  box-shadow: 0 12px 30px var(--shadow-color);
}

.contact-card-enhanced,
.form-card-enhanced,
.contact-topic-card,
.about-highlight-box,
.support-plan-card,
.support-detail-box,
.support-exclusion-card,
.project-card-enhanced {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 18px 45px rgba(0, 0, 0, 0.16);
  backdrop-filter: blur(10px);
}

body.light-mode .contact-card-enhanced,
body.light-mode .form-card-enhanced,
body.light-mode .contact-topic-card,
body.light-mode .about-highlight-box,
body.light-mode .support-plan-card,
body.light-mode .support-detail-box,
body.light-mode .support-exclusion-card,
body.light-mode .project-card-enhanced {
  background: #ffffff;
  border: 1px solid rgba(17, 24, 39, 0.08);
  box-shadow: 0 18px 45px rgba(15, 23, 42, 0.08);
}

.service-card,
.stat-card,
.contact-card,
.form-card,
.contact-card-enhanced,
.form-card-enhanced,
.contact-topic-card,
.support-plan-card,
.support-detail-box,
.support-exclusion-card,
.about-highlight-box {
  padding: 24px;
}

.contact-card,
.form-card {
  padding: 34px;
}

.support-box {
  padding: 42px;
}

.service-card:hover,
.contact-topic-card:hover,
.support-plan-card:hover,
.support-detail-box:hover,
.support-exclusion-card:hover,
.project-card-enhanced:hover {
  transform: translateY(-4px);
  transition: transform 0.25s ease;
}

.service-card h3,
.project-card h3,
.contact-card h2,
.form-card h2,
.split-text h2,
.contact-topic-card h3 {
  margin-bottom: 12px;
}

.service-card p,
.project-card p,
.split-text p,
.stat-card span,
.contact-list-item p,
.support-box p,
.support-detail-box p,
.support-exclusion-card p,
.support-plan-text,
.contact-topic-card p {
  color: var(--text-muted);
}

/* =========================
   SERVICES / ABOUT / STATS
========================= */
.service-card {
  padding: 30px;
}

.service-icon {
  width: 58px;
  height: 58px;
  border-radius: 16px;
  background: rgba(93, 185, 255, 0.12);
  color: var(--accent-color);
  display: grid;
  place-items: center;
  font-weight: 700;
  margin-bottom: 18px;
}

.split-text {
  max-width: 100%;
}

.split-text p {
  margin-bottom: 16px;
}

.split-text p:last-of-type {
  margin-bottom: 0;
}

.stats-panel {
  display: grid;
  gap: 18px;
  align-content: start;
}

.stat-card strong {
  display: block;
  margin-bottom: 6px;
  color: var(--primary-color);
  font-size: 1.15rem;
}

.about-highlight-box {
  border-left: 4px solid var(--primary-color);
  border-radius: 24px;
  padding: 28px 30px;
}

.about-highlight-box h2 {
  margin: 10px 0 14px;
  font-size: 1.55rem;
  line-height: 1.3;
}

.about-highlight-box p {
  line-height: 1.8;
  margin-bottom: 14px;
}

.about-highlight-box p:last-child {
  margin-bottom: 0;
}

/* =========================
   SUPPORT
========================= */
.support-plan-card,
.support-detail-box,
.support-exclusion-card {
  border-radius: 22px;
}

.support-plan-card-featured {
  border-color: rgba(208, 168, 95, 0.45);
}

.support-plan-top {
  margin-bottom: 18px;
}

.support-plan-label {
  display: inline-block;
  margin-bottom: 10px;
  padding: 6px 12px;
  border-radius: 999px;
  background: rgba(208, 168, 95, 0.12);
  color: var(--primary-color);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.support-plan-top h3,
.support-detail-box h2,
.support-exclusion-card h3 {
  margin-bottom: 8px;
  font-size: 1.35rem;
}

.support-price {
  color: var(--primary-color);
  font-weight: 700;
  font-size: 0.98rem;
}

.support-plan-text,
.support-detail-box p,
.support-exclusion-card p {
  color: var(--text-muted);
  line-height: 1.7;
}

.support-feature-list,
.project-feature-list {
  margin: 0;
  padding: 0;
}

.support-feature-list li,
.project-feature-list li {
  position: relative;
  padding-left: 18px;
  margin-bottom: 12px;
  color: var(--text-muted);
  line-height: 1.6;
}

.support-feature-list li:last-child,
.project-feature-list li:last-child {
  margin-bottom: 0;
}

.support-feature-list li::before,
.project-feature-list li::before {
  content: "•";
  position: absolute;
  left: 0;
  top: 0;
  color: var(--primary-color);
  font-weight: 700;
}

/* =========================
   CONTACT
========================= */
.contact-intro-text,
.form-intro-text {
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 20px;
}

.contact-list {
  display: grid;
  gap: 16px;
  margin-top: 16px;
}

.contact-list-item {
  padding-bottom: 14px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

body.light-mode .contact-list-item {
  border-bottom: 1px solid rgba(17, 24, 39, 0.06);
}

.contact-list-item:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.contact-list-item h3 {
  margin-bottom: 6px;
  color: var(--heading-color);
}

.contact-list-item a {
  color: var(--accent-color);
  word-break: break-word;
}

.contact-list-item p {
  word-break: break-word;
}

.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
  margin-bottom: 18px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 18px;
}

.form-group label {
  color: var(--heading-color);
  font-weight: 700;
  font-size: 0.95rem;
}

.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  border: 1px solid var(--border-color);
  background: var(--bg-soft);
  color: var(--heading-color);
  border-radius: 14px;
  padding: 14px 16px;
  outline: none;
  appearance: none;
  -webkit-appearance: none;
  transition:
    border-color 0.25s ease,
    box-shadow 0.25s ease,
    background 0.25s ease,
    transform 0.2s ease;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: var(--text-muted);
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  border-color: rgba(208, 168, 95, 0.55);
  box-shadow: 0 0 0 3px rgba(208, 168, 95, 0.12);
  transform: translateY(-1px);
}

.form-group textarea {
  resize: vertical;
}

.form-group select {
  background-image:
    linear-gradient(45deg, transparent 50%, var(--text-muted) 50%),
    linear-gradient(135deg, var(--text-muted) 50%, transparent 50%);
  background-position:
    calc(100% - 18px) calc(50% - 3px),
    calc(100% - 12px) calc(50% - 3px);
  background-size: 6px 6px, 6px 6px;
  background-repeat: no-repeat;
  padding-right: 40px;
}

.form-group select option {
  background: var(--bg-secondary);
  color: var(--heading-color);
}

body.light-mode .form-group select,
body.light-mode .form-group select option {
  background-color: #ffffff;
  color: #111827;
}

.error-message {
  min-height: 16px;
  margin-top: 2px;
  color: #ef7878;
  font-size: 0.85rem;
}

.input-error {
  border-color: #ef7878 !important;
}

.form-success {
  margin-top: 18px;
  color: #3cc58a;
  font-weight: 700;
}

.contact-topic-card {
  height: 100%;
}

.contact-topic-card h3 {
  margin: 12px 0 8px;
  font-size: 1.15rem;
}

/* =========================
   PROJECTS
========================= */
 .restaurant-preview {
  background-image:
  
   url("./image/restaurant.webp");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.personal-preview {
  background-image: url("./image/converted_2.webp");
  background-size: cover;
  background-position: center;
}
.coming-preview {
  background-image: url("./image/converted_2.webp");
  background-size: cover;
  background-position: center;
}

.project-card-enhanced {
  display: flex;
  flex-direction: column;
  overflow: hidden;
  border-radius: 24px;
  height: 100%;
}

.project-preview {
  min-height: 220px;
  background-size: cover;
  background-position: center;
}

body.light-mode .project-preview {
  border-bottom: 1px solid rgba(17, 24, 39, 0.06);
}

.project-card-enhanced .project-preview {
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}



.project-content {
  padding: 24px;
}

.project-meta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px;
  margin-bottom: 14px;
}

.project-tag {
  display: inline-flex;
  align-items: center;
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(208, 168, 95, 0.14);
  color: var(--primary-color);
  font-size: 0.84rem;
  font-weight: 700;
  line-height: 1.2;
}

.project-type {
  display: inline-flex;
  align-items: center;
  padding: 6px 12px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.06);
  color: var(--text-muted);
  font-size: 0.82rem;
  font-weight: 600;
  line-height: 1.2;
}

body.light-mode .project-type {
  background: #f3f4f6;
  color: #4b5563;
}

.muted-tag {
  background: rgba(93, 185, 255, 0.12);
  color: var(--accent-color);
}

.project-feature-list {
  margin-top: 12px;
  margin-bottom: 6px;
}

.project-feature-list li {
  padding-left: 16px;
}

.project-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 14px;
  margin-top: 8px;
}

.project-actions .text-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.project-actions .text-link:hover {
  opacity: 0.8;
}

/* =========================
   CTA
========================= */
.cta-box {
  background: linear-gradient(135deg, rgba(208, 168, 95, 0.95), rgba(183, 141, 66, 0.92)), #000;
  color: #0e1116;
  text-align: center;
  border-radius: 32px;
  padding: 58px 28px;
  box-shadow: 0 20px 45px var(--shadow-color);
}

.cta-box h2 {
  font-size: clamp(1.9rem, 3vw, 2.8rem);
  line-height: 1.15;
  margin-bottom: 14px;
}

.cta-box p {
  max-width: 760px;
  margin: 0 auto 28px;
  font-size: 1.02rem;
  color: rgba(14, 17, 22, 0.82);
}

/* =========================
   FOOTER
========================= */
.site-footer {
  background: var(--footer-bg);
  color: var(--footer-text);
  padding-top: 76px;
}

.footer-content {
  display: grid;
  grid-template-columns: 1.3fr 1fr 1fr 1fr;
  gap: 34px;
  padding-bottom: 40px;
}

.footer-column h3,
.footer-column h4 {
  color: #ffffff;
  margin-bottom: 16px;
}

.footer-column p,
.footer-column a,
.footer-column li {
  color: var(--footer-text);
}

.footer-column ul {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-column a:hover {
  color: #ffffff;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  text-align: center;
  padding: 20px 0;
  color: #bdbdbd;
}

/* =========================
   BRAND / LOGO
========================= */
.site-brand {
  display: flex;
  align-items: center;
  gap: 0;
}

.site-brand__icon {
  height: 52px;
  width: auto;
  display: block;
}

.site-brand__text {
  font-size: 1.5rem;
  font-weight: 700;
  line-height: 1;
  color: var(--heading-color);
  white-space: nowrap;
}

.site-brand__text span {
  background: linear-gradient(135deg, #7f5cff, #5db9ff);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* =========================
   RESPONSIVE
========================= */
@media (max-width: 980px) {
  .contact-layout-enhanced,
  .split-layout,
  .support-details-layout,
  .support-exclusion-grid {
    grid-template-columns: 1fr;
  }

  .contact-topic-grid,
  .support-plan-grid,
  .project-grid-enhanced,
  .service-grid,
  .project-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 900px) {
  .container {
    width: min(92%, 100%);
  }

  .footer-content,
  .support-plan-grid,
  .contact-topic-grid,
  .project-grid,
  .project-grid-enhanced,
  .service-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .split-layout,
  .contact-layout,
  .contact-layout-enhanced,
  .support-details-layout,
  .support-exclusion-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .section {
    padding: 88px 0;
  }

  .section-heading {
    margin-bottom: 40px;
  }
}

@media (max-width: 860px) {
  .menu-toggle {
    display: block;
  }

  .nav {
    position: absolute;
    top: 86px;
    left: 0;
    width: 100%;
    background: var(--bg-secondary);
    border-top: 1px solid var(--border-color);
    border-bottom: 1px solid var(--border-color);
    padding: 20px 5%;
    display: none;
  }

  .nav.active {
    display: block;
  }

  .nav-list {
    flex-direction: column;
    align-items: flex-start;
    gap: 18px;
  }

  .dropdown {
    width: 100%;
  }

  .dropdown-toggle {
    width: 100%;
    text-align: left;
    padding: 0;
  }

  .dropdown-menu {
    position: static;
    width: 100%;
    margin-top: 14px;
    box-shadow: none;
  }

  .language-menu {
    right: auto;
    left: 0;
  }

  .hero {
    min-height: auto;
  }

  .hero-content {
    padding: 120px 0 70px;
  }

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

@media (max-width: 768px) {
  html,
  body {
    overflow-x: hidden;
  }

  body {
    font-size: 16px;
    line-height: 1.75;
  }

  .container {
    width: min(92%, 100%);
  }

  .section {
    padding: 72px 0;
  }

  .eyebrow {
    font-size: 0.74rem;
    letter-spacing: 1.6px;
    margin-bottom: 12px;
  }

  .section-heading,
  .left-heading {
    text-align: left;
    margin-bottom: 30px;
    max-width: 100%;
  }

  .section-heading h2,
  .left-heading h2 {
    font-size: clamp(1.65rem, 6vw, 2.1rem);
    line-height: 1.22;
    margin-bottom: 12px;
  }

  .section-heading p,
  .left-heading p,
  .split-text p,
  .about-highlight-box p,
  .contact-intro-text,
  .form-intro-text,
  .support-plan-text,
  .support-detail-box p,
  .support-exclusion-card p,
  .project-card p,
  .project-card-enhanced p,
  .home-notice-text,
  .cta-box p {
    font-size: 1rem;
    line-height: 1.75;
  }

  .split-text p,
  .about-highlight-box p {
    margin-bottom: 14px;
  }

  .site-header {
    backdrop-filter: blur(14px);
  }

  .navbar {
    min-height: 74px;
    gap: 10px;
  }

  .logo {
    font-size: 1.42rem;
    line-height: 1;
  }

  .nav-actions {
    gap: 8px;
  }

  .language-toggle,
  .theme-toggle,
  .menu-toggle {
    width: 42px;
    min-width: 42px;
    height: 42px;
  }

  .language-toggle {
    width: auto;
    min-width: 58px;
    padding: 0 12px;
  }

  .nav {
    top: 74px;
    width: 100%;
    box-shadow: 0 18px 36px var(--shadow-color);
    padding: 18px 18px 22px;
  }

  .nav-list {
    flex-direction: column;
    align-items: stretch;
    gap: 8px;
    width: 100%;
  }

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

  .nav-link,
  .dropdown-toggle {
    display: block;
    width: 100%;
    padding: 12px 0;
    font-size: 1rem;
    line-height: 1.4;
    text-align: left;
  }

  .dropdown-menu {
    width: 100%;
    min-width: 0;
    margin-top: 8px;
    padding: 8px;
    border-radius: 14px;
  }

  .dropdown-menu li a {
    padding: 12px 14px;
    border-radius: 10px;
    font-size: 0.96rem;
  }

  .language-menu {
    right: 0;
    left: auto;
    min-width: 180px;
    padding: 8px;
    border-radius: 14px;
  }

  .language-option {
    padding: 12px 14px;
    font-size: 0.95rem;
  }

  .hero-content {
    padding: 104px 0 56px;
    text-align: left;
    align-items: stretch;
  }

  .hero-text h1 {
    font-size: clamp(2rem, 8vw, 2.65rem);
    line-height: 1.16;
    margin-bottom: 16px;
    max-width: 95%;
  }

  .hero-text p {
    font-size: 1rem;
    line-height: 1.78;
    margin: 0 0 24px;
    max-width: 100%;
    opacity: 0.96;
  }

  .hero-buttons,
  .reservation-buttons {
    display: grid;
    grid-template-columns: 1fr;
    gap: 12px;
    justify-content: stretch;
  }

  .hero-buttons {
    margin-bottom: 24px;
  }

  .hero-buttons .btn,
  .reservation-buttons .btn,
  .project-actions .btn {
    width: 100%;
    min-width: 0;
    font-size: 0.97rem;
    font-weight: 700;
  }

  .hero-highlights {
    display: grid;
    grid-template-columns: 1fr;
    gap: 12px;
    width: 100%;
  }

  .highlight-pill {
    min-width: 0;
    width: 100%;
    padding: 16px;
    border-radius: 16px;
    text-align: left;
    box-shadow: 0 10px 24px rgba(0, 0, 0, 0.12);
  }

  .highlight-pill strong {
    font-size: 1rem;
    line-height: 1.35;
  }

  .highlight-pill span {
    display: block;
    margin-top: 3px;
    font-size: 0.94rem;
    line-height: 1.6;
  }

  .page-hero {
    min-height: auto;
  }

  .page-hero-content {
    padding: 102px 0 54px;
    text-align: left;
    max-width: 100%;
  }

  .page-hero-content .eyebrow {
    margin-bottom: 10px;
  }

  .page-hero-content h1 {
    font-size: clamp(1.9rem, 7vw, 2.4rem);
    line-height: 1.16;
    margin-bottom: 14px;
  }

  .page-hero-content p {
    font-size: 1rem;
    line-height: 1.78;
  }

  .home-notice-section {
    padding: 18px 0 4px;
  }

  .home-notice-card {
    padding: 16px 14px;
    border-radius: 16px;
  }

  .home-notice-title {
    font-size: 1.08rem;
    line-height: 1.38;
    margin-bottom: 8px;
  }

  .service-grid,
  .project-grid,
  .project-grid-enhanced,
  .support-plan-grid,
  .contact-topic-grid,
  .footer-content,
  .form-grid {
    grid-template-columns: 1fr;
  }

  .service-grid,
  .project-grid,
  .project-grid-enhanced,
  .support-plan-grid,
  .contact-topic-grid {
    gap: 18px;
  }

  .form-grid {
    gap: 0;
    margin-bottom: 0;
  }

  .service-card,
  .project-card,
  .project-card-enhanced,
  .stat-card,
  .contact-card,
  .form-card,
  .support-box,
  .contact-card-enhanced,
  .form-card-enhanced,
  .contact-topic-card,
  .support-plan-card,
  .support-detail-box,
  .support-exclusion-card,
  .about-highlight-box {
    border-radius: 18px;
    padding: 20px;
    box-shadow: 0 12px 28px rgba(0, 0, 0, 0.12);
  }

  body.light-mode .service-card,
  body.light-mode .project-card-enhanced,
  body.light-mode .support-plan-card,
  body.light-mode .support-detail-box,
  body.light-mode .support-exclusion-card,
  body.light-mode .contact-topic-card,
  body.light-mode .contact-card-enhanced,
  body.light-mode .form-card-enhanced,
  body.light-mode .about-highlight-box,
  body.light-mode .stat-card {
    box-shadow: 0 12px 28px rgba(15, 23, 42, 0.08);
  }

  .service-card h3,
  .contact-topic-card h3,
  .support-plan-top h3,
  .support-detail-box h2,
  .support-exclusion-card h3,
  .project-card-enhanced h3 {
    font-size: 1.12rem;
    line-height: 1.32;
    margin-bottom: 10px;
  }

  .service-icon {
    width: 52px;
    height: 52px;
    margin-bottom: 16px;
    border-radius: 14px;
    font-size: 0.96rem;
  }

  .stats-panel {
    gap: 14px;
  }

  .stat-card strong {
    font-size: 1.06rem;
    margin-bottom: 6px;
  }

  .project-preview {
    min-height: 180px;
  }

  .project-content {
    padding: 18px;
  }

  .project-meta {
    gap: 8px;
    margin-bottom: 12px;
  }

  .project-tag,
  .project-type {
    font-size: 0.78rem;
    padding: 6px 10px;
    white-space: normal;
  }

  .project-feature-list li,
  .support-feature-list li {
    font-size: 0.96rem;
    line-height: 1.7;
    margin-bottom: 10px;
  }

  .project-actions {
    flex-direction: column;
    align-items: stretch;
    gap: 12px;
    margin-top: 14px;
  }

  .project-actions .btn,
  .project-actions .text-link {
    width: 100%;
    text-align: center;
  }

  .project-actions .text-link {
    min-height: 44px;
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.06);
    padding: 10px 14px;
  }

  body.light-mode .project-actions .text-link {
    background: #f8fafc;
    border: 1px solid rgba(17, 24, 39, 0.06);
  }

  .contact-layout,
  .contact-layout-enhanced,
  .split-layout,
  .support-details-layout,
  .support-exclusion-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .contact-list {
    gap: 14px;
    margin-top: 14px;
  }

  .contact-list-item {
    padding-bottom: 12px;
  }

  .contact-list-item h3 {
    font-size: 1rem;
    line-height: 1.4;
    margin-bottom: 6px;
  }

  .contact-list-item p,
  .contact-list-item a {
    font-size: 0.98rem;
    line-height: 1.7;
  }

  .form-group {
    gap: 8px;
    margin-bottom: 16px;
  }

  .form-group label {
    font-size: 0.93rem;
    line-height: 1.4;
  }

  .form-group input,
  .form-group textarea,
  .form-group select {
    padding: 13px 14px;
    border-radius: 12px;
    font-size: 16px;
    line-height: 1.5;
  }

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

  .error-message {
    font-size: 0.84rem;
    line-height: 1.5;
  }

  .form-success {
    font-size: 0.95rem;
    line-height: 1.6;
    margin-top: 14px;
  }

  .support-box {
    padding: 28px 20px;
  }

  .support-plan-top h3,
  .support-detail-box h2,
  .support-exclusion-card h3,
  .about-highlight-box h2 {
    font-size: 1.2rem;
    line-height: 1.34;
    margin-bottom: 8px;
  }

  .support-price {
    font-size: 0.94rem;
    line-height: 1.5;
  }

  .support-plan-top {
    margin-bottom: 16px;
  }

  .support-plan-label {
    font-size: 0.76rem;
    padding: 6px 10px;
    margin-bottom: 10px;
  }

  .support-plan-card-featured {
    transform: none;
  }

  .support-plan-card-featured .support-plan-top {
    position: relative;
  }

  .cta-box {
    border-radius: 22px;
    padding: 32px 18px;
    text-align: left;
  }

  .cta-box h2 {
    font-size: clamp(1.55rem, 6vw, 1.95rem);
    line-height: 1.22;
    margin-bottom: 12px;
  }

  .cta-box p {
    max-width: 100%;
    margin: 0 0 22px;
  }

  .cta-box .reservation-buttons {
    margin-top: 4px;
  }

  .site-footer {
    padding-top: 56px;
  }

  .footer-content {
    gap: 24px;
    padding-bottom: 28px;
  }

  .footer-column h3,
  .footer-column h4 {
    margin-bottom: 12px;
  }

  .footer-column p,
  .footer-column li,
  .footer-column a {
    font-size: 0.96rem;
    line-height: 1.7;
    opacity: 0.96;
  }

  .footer-column ul {
    gap: 8px;
  }

  .footer-column ul li a {
    display: inline-block;
    padding: 2px 0;
  }

  .footer-bottom {
    padding: 18px 0;
    font-size: 0.92rem;
    line-height: 1.6;
  }

  .section-heading h2,
  .page-hero-content h1,
  .hero-text h1,
  .project-card-enhanced h3,
  .support-plan-top h3,
  .support-detail-box h2,
  .support-exclusion-card h3 {
    overflow-wrap: break-word;
    word-break: normal;
  }
}

@media (max-width: 640px) {
  .section {
    padding: 82px 0;
  }

  .hero-content,
  .page-hero-content {
    padding-top: 108px;
    padding-bottom: 60px;
  }

  .hero-buttons .btn,
  .reservation-buttons .btn,
  .highlight-pill {
    width: 100%;
  }

  .hero-card,
  .contact-card,
  .form-card,
  .support-box,
  .cta-box {
    padding: 28px 20px;
  }

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

  .split-layout {
    gap: 22px;
  }

  .stats-panel {
    gap: 14px;
  }

  .stat-card {
    padding: 20px;
  }

  .split-text h2 {
    font-size: clamp(1.8rem, 7vw, 2.4rem);
    line-height: 1.28;
  }

  .split-text p {
    font-size: 0.98rem;
    line-height: 1.75;
  }
}

@media (max-width: 560px) {
  .container {
    width: min(94%, 100%);
  }

  .section {
    padding: 64px 0;
  }

  .navbar {
    min-height: 70px;
  }

  .nav {
    top: 70px;
    padding: 16px 16px 20px;
  }

  .logo {
    font-size: 1.28rem;
  }

  .language-toggle,
  .theme-toggle,
  .menu-toggle {
    width: 40px;
    min-width: 40px;
    height: 40px;
  }

  .language-toggle {
    min-width: 54px;
    padding: 0 10px;
  }

  .hero-content,
  .page-hero-content {
    padding-top: 96px;
    padding-bottom: 48px;
  }

  .hero-text h1 {
    max-width: 100%;
    margin-bottom: 14px;
    font-size: clamp(1.8rem, 8vw, 2.3rem);
  }

  .hero-text p {
    margin-bottom: 22px;
  }

  .page-hero-content h1 {
    font-size: clamp(1.72rem, 7.5vw, 2.1rem);
  }

  .section-heading h2,
  .left-heading h2 {
    font-size: clamp(1.5rem, 6.6vw, 1.92rem);
  }

  .service-card,
  .stat-card,
  .contact-card,
  .form-card,
  .support-box,
  .contact-card-enhanced,
  .form-card-enhanced,
  .contact-topic-card,
  .support-plan-card,
  .support-detail-box,
  .support-exclusion-card,
  .about-highlight-box {
    padding: 15px;
    border-radius: 16px;
  }

  .project-content {
    padding: 15px;
  }

  .project-preview {
    min-height: 152px;
  }

  .home-notice-card {
    padding: 14px 12px;
    border-radius: 14px;
  }

  .highlight-pill {
    padding: 14px;
    border-radius: 14px;
  }

  .hero-buttons,
  .reservation-buttons {
    gap: 10px;
  }

  .project-actions .text-link {
    padding: 10px 12px;
    border-radius: 10px;
    font-size: 0.94rem;
  }

  .form-group input,
  .form-group textarea,
  .form-group select {
    padding: 12px 13px;
  }

  .cta-box {
    padding: 26px 15px;
    border-radius: 18px;
  }

  .site-brand__text {
    display: none;
  }

  .site-brand__icon {
    width: auto;
    height: 52px;
  }
}

@media (max-width: 480px) {
  .navbar {
    min-height: 80px;
  }

  .nav {
    top: 78px;
  }

  .logo {
    font-size: 1.6rem;
  }

  .hero-text h1 {
    font-size: clamp(2rem, 8vw, 2.7rem);
  }

  .page-hero-content h1 {
    font-size: clamp(1.8rem, 7vw, 2.4rem);
  }

  .home-notice-card {
    padding: 16px 14px;
    border-radius: 16px;
  }

  .project-card-enhanced .project-content {
    padding: 18px;
  }

  .project-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .project-actions .btn,
  .project-actions .text-link {
    width: 100%;
    text-align: center;
  }
}

@media (max-width: 390px) {
  .container {
    width: min(95%, 100%);
  }

  .section {
    padding: 58px 0;
  }

  .hero-content,
  .page-hero-content {
    padding-top: 92px;
    padding-bottom: 44px;
  }

  .hero-text h1 {
    font-size: 1.66rem;
    line-height: 1.15;
  }

  .page-hero-content h1 {
    font-size: 1.58rem;
    line-height: 1.16;
  }

  .section-heading h2,
  .left-heading h2 {
    font-size: 1.36rem;
  }

  .btn {
    min-height: 44px;
    padding: 12px 16px;
    font-size: 0.95rem;
  }

  .project-tag,
  .project-type,
  .support-plan-label {
    font-size: 0.72rem;
    padding: 6px 8px;
  }

  .language-toggle {
    min-width: 50px;
    padding: 0 8px;
  }
}

@media (max-width: 768px) {
  .site-brand__text {
    display: none;
  }

  .site-brand__icon {
    width: auto;
    height: 52px;
  }
}