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

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

body {
    font-family: 'Noto Sans JP', sans-serif;
    color: #333;
    line-height: 1.8;
    overflow-x: hidden;
    background: #fff;
}

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

a {
    text-decoration: none;
    color: inherit;
    transition: opacity 0.3s;
}

a:hover {
    opacity: 0.7;
}

ul { list-style: none; }

/* ============================================
   UTILITY
   ============================================ */
.section-padding {
    padding: 100px 0;
}

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

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

.section-header .en {
    font-family: 'Playfair Display', serif;
    font-size: 0.85rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: #2e7d32;
    display: block;
    margin-bottom: 8px;
}

.section-header h2 {
    font-size: 2rem;
    font-weight: 700;
    letter-spacing: 0.05em;
    position: relative;
    display: inline-block;
}

.section-header h2::after {
    content: '';
    position: absolute;
    bottom: -12px;
    left: 50%;
    transform: translateX(-50%);
    width: 40px;
    height: 2px;
    background: #2e7d32;
}

.section-header p {
    margin-top: 28px;
    color: #666;
    font-size: 0.95rem;
}

.bg-light { background: #fafaf7; }
.bg-white { background: #fff; }
.bg-green { background: #f0f7f0; }

.text-green { color: #2e7d32; }

.btn {
    display: inline-block;
    padding: 16px 48px;
    border-radius: 60px;
    font-size: 0.95rem;
    font-weight: 500;
    letter-spacing: 0.08em;
    transition: background 0.3s, transform 0.3s, color 0.3s;
    text-align: center;
}

.btn-primary {
    background: #2e7d32;
    color: #fff;
}

.btn-primary:hover {
    background: #1b5e20;
    opacity: 1;
    transform: scale(1.03);
}

.btn-outline {
    border: 2px solid #2e7d32;
    color: #2e7d32;
    background: transparent;
}

.btn-outline:hover {
    background: #2e7d32;
    color: #fff;
    opacity: 1;
}

.btn-white {
    background: #fff;
    color: #2e7d32;
}

.btn-white:hover {
    background: #e8f5e9;
    opacity: 1;
    transform: scale(1.03);
}

/* ============================================
   SCROLL ANIMATIONS
   ============================================ */
.fade-in {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

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

.fade-in-left {
    opacity: 0;
    transform: translateX(-60px);
    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(60px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

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

.scale-in {
    opacity: 0;
    transform: scale(0.9);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.scale-in.visible {
    opacity: 1;
    transform: scale(1);
}

/* ============================================
   HEADER / NAV
   ============================================ */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    transition: background 0.4s, box-shadow 0.4s, padding 0.4s;
    padding: 20px 0;
}

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

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

.logo img {
    height: 40px;
    transition: filter 0.4s;
}

.nav-list {
    display: flex;
    list-style: none;
    gap: 28px;
}

.nav-list a {
    font-size: 0.85rem;
    font-weight: 500;
    letter-spacing: 0.08em;
    color: #fff;
    position: relative;
    padding-bottom: 4px;
    transition: color 0.4s;
}

.header.scrolled .nav-list a {
    color: #333;
}

.nav-list a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: #2e7d32;
    transition: width 0.3s;
}

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

.nav-list a:hover {
    opacity: 1;
}

/* Subpage header (always has white background) */
.header-sub {
    background: rgba(255, 255, 255, 0.97);
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.08);
    padding: 10px 0;
}

.header-sub .nav-list a {
    color: #333;
}

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

.hamburger span {
    display: block;
    width: 28px;
    height: 2px;
    background: #fff;
    transition: transform 0.3s, opacity 0.3s, background 0.4s;
}

.header.scrolled .hamburger span,
.header-sub .hamburger span {
    background: #333;
}

.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(6px, -6px);
}

/* ============================================
   MOBILE NAV OVERLAY
   ============================================ */
.mobile-nav {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.95);
    z-index: 999;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.4s;
}

.mobile-nav.active {
    opacity: 1;
    pointer-events: all;
}

.mobile-nav-list {
    list-style: none;
    text-align: center;
}

.mobile-nav-list li {
    margin-bottom: 24px;
}

.mobile-nav-list a {
    color: #fff;
    font-size: 1.2rem;
    letter-spacing: 0.15em;
}

/* ============================================
   PAGE HERO (Subpages)
   ============================================ */
.page-hero {
    position: relative;
    height: 50vh;
    min-height: 360px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.page-hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 120%;
    background-size: cover;
    background-position: center;
    will-change: transform;
}

.page-hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(0,0,0,0.5) 0%, rgba(0,50,0,0.3) 100%);
    z-index: 1;
}

.page-hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: #fff;
}

.page-hero-content .en {
    font-family: 'Playfair Display', serif;
    font-size: 0.9rem;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    margin-bottom: 12px;
    display: block;
}

.page-hero-content h1 {
    font-size: clamp(1.8rem, 4vw, 2.8rem);
    font-weight: 700;
    letter-spacing: 0.1em;
}

/* Breadcrumb */
.breadcrumb {
    padding: 16px 0;
    background: #f5f5f0;
    font-size: 0.8rem;
}

.breadcrumb a {
    color: #2e7d32;
}

.breadcrumb span {
    color: #999;
    margin: 0 8px;
}

/* ============================================
   TOP HERO
   ============================================ */
.hero {
    position: relative;
    height: 100vh;
    min-height: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 120%;
    background: url('../images/bg/hero.jpg') center center / cover no-repeat;
    will-change: transform;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(0,0,0,0.55) 0%, rgba(0,50,0,0.35) 100%);
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: #fff;
}

.hero-content .sub {
    font-family: 'Playfair Display', serif;
    font-size: 1rem;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    margin-bottom: 20px;
    opacity: 0;
    animation: heroFadeUp 1s 0.3s forwards;
}

.hero-content h1 {
    font-size: clamp(2rem, 5vw, 3.5rem);
    font-weight: 700;
    letter-spacing: 0.1em;
    line-height: 1.5;
    margin-bottom: 24px;
    opacity: 0;
    animation: heroFadeUp 1s 0.6s forwards;
}

.hero-content .lead {
    font-size: 1rem;
    font-weight: 300;
    letter-spacing: 0.1em;
    opacity: 0;
    animation: heroFadeUp 1s 0.9s forwards;
}

.hero-scroll {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
    color: #fff;
    font-size: 0.75rem;
    letter-spacing: 0.15em;
    text-align: center;
}

.hero-scroll::after {
    content: '';
    display: block;
    width: 1px;
    height: 40px;
    background: #fff;
    margin: 8px auto 0;
    animation: scrollLine 1.5s infinite;
}

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

@keyframes scrollLine {
    0%   { transform: scaleY(0); transform-origin: top; }
    50%  { transform: scaleY(1); transform-origin: top; }
    51%  { transform-origin: bottom; }
    100% { transform: scaleY(0); transform-origin: bottom; }
}

/* ============================================
   PARALLAX SECTION
   ============================================ */
.parallax-section {
    position: relative;
    height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.parallax-bg {
    position: absolute;
    top: -50%;
    left: 0;
    width: 100%;
    height: 200%;
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
}

.parallax-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.5);
}

.parallax-content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: #fff;
}

.stats {
    display: flex;
    gap: 60px;
    flex-wrap: wrap;
    justify-content: center;
}

.stat-item { text-align: center; }

.stat-number {
    font-family: 'Playfair Display', serif;
    font-size: 3.5rem;
    font-weight: 700;
    line-height: 1;
    margin-bottom: 8px;
}

.stat-label {
    font-size: 0.85rem;
    letter-spacing: 0.1em;
    opacity: 0.9;
}

/* ============================================
   CONCEPT
   ============================================ */
.concept-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.concept-image {
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0,0,0,0.1);
}

.concept-image img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    transition: transform 0.6s;
}

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

.concept-text h3 {
    font-size: 1.6rem;
    margin-bottom: 24px;
    line-height: 1.6;
}

.concept-text p {
    color: #555;
    font-size: 0.95rem;
    margin-bottom: 16px;
}

/* ============================================
   SERVICE CARDS
   ============================================ */
.service-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.service-card {
    border-radius: 12px;
    overflow: hidden;
    background: #fff;
    box-shadow: 0 4px 30px rgba(0,0,0,0.06);
    transition: transform 0.4s, box-shadow 0.4s;
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 40px rgba(0,0,0,0.12);
}

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

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

.service-card:hover .service-card-image img {
    transform: scale(1.08);
}

.service-card-body {
    padding: 24px 20px;
}

.service-card-body h3 {
    font-size: 1.1rem;
    margin-bottom: 8px;
    color: #2e7d32;
}

.service-card-body p {
    font-size: 0.85rem;
    color: #666;
    line-height: 1.7;
}

.service-card-body .btn {
    margin-top: 16px;
    padding: 10px 28px;
    font-size: 0.8rem;
}

/* ============================================
   GALLERY
   ============================================ */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
}

.gallery-item {
    border-radius: 8px;
    overflow: hidden;
    position: relative;
    aspect-ratio: 4 / 3;
    cursor: pointer;
}

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

.gallery-item::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(46,125,50,0);
    transition: background 0.4s;
}

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

.gallery-item:hover::after {
    background: rgba(46,125,50,0.2);
}

.gallery-item-label {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 16px;
    background: linear-gradient(transparent, rgba(0,0,0,0.6));
    color: #fff;
    font-size: 0.85rem;
    z-index: 1;
}

/* ============================================
   TEAM
   ============================================ */
.team-main {
    border-radius: 12px;
    overflow: hidden;
    margin-bottom: 40px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.08);
}

.team-main img {
    width: 100%;
    height: 420px;
    object-fit: cover;
    object-position: center 20%;
}

.team-members {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.team-member { text-align: center; }

.team-member-photo {
    width: 140px;
    height: 140px;
    border-radius: 50%;
    overflow: hidden;
    margin: 0 auto 16px;
    border: 3px solid #e8f5e9;
    transition: border-color 0.3s, transform 0.3s;
}

.team-member:hover .team-member-photo {
    border-color: #2e7d32;
    transform: scale(1.05);
}

.team-member-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.team-member h4 {
    font-size: 0.95rem;
    margin-bottom: 4px;
}

.team-member p {
    font-size: 0.8rem;
    color: #888;
}

/* ============================================
   COMPANY TABLE
   ============================================ */
.company-table {
    max-width: 800px;
    margin: 0 auto;
    width: 100%;
    border-collapse: collapse;
}

.company-table tr {
    border-bottom: 1px solid #e0e0e0;
}

.company-table th,
.company-table td {
    padding: 20px 16px;
    text-align: left;
    font-size: 0.95rem;
}

.company-table th {
    width: 160px;
    font-weight: 500;
    color: #2e7d32;
    vertical-align: top;
}

.company-table td {
    color: #555;
}

/* ============================================
   CONTACT
   ============================================ */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
}

.contact-info {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.contact-info h3 {
    font-size: 1.4rem;
    margin-bottom: 24px;
}

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

.contact-info-icon {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: #e8f5e9;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    font-size: 1.1rem;
}

.contact-info-text {
    font-size: 0.95rem;
    color: #555;
}

.contact-info-text strong {
    display: block;
    color: #333;
    margin-bottom: 2px;
}

.contact-tel {
    display: inline-block;
    margin-top: 24px;
    padding: 16px 40px;
    background: #2e7d32;
    color: #fff;
    font-size: 1.3rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    border-radius: 60px;
    transition: background 0.3s, transform 0.3s;
}

.contact-tel:hover {
    background: #1b5e20;
    opacity: 1;
    transform: scale(1.03);
}

.contact-tel small {
    display: block;
    font-size: 0.7rem;
    font-weight: 400;
    margin-bottom: 4px;
}

.contact-map {
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
}

.contact-map iframe {
    width: 100%;
    height: 400px;
    border: 0;
}

/* Contact Form */
.contact-form {
    max-width: 700px;
    margin: 0 auto;
}

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

.form-group label {
    display: block;
    font-size: 0.9rem;
    font-weight: 500;
    margin-bottom: 8px;
    color: #333;
}

.form-group label .required {
    background: #e53935;
    color: #fff;
    font-size: 0.7rem;
    padding: 2px 8px;
    border-radius: 3px;
    margin-left: 8px;
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 14px 16px;
    border: 1px solid #ddd;
    border-radius: 8px;
    font-size: 0.95rem;
    font-family: inherit;
    transition: border-color 0.3s;
    background: #fff;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    outline: none;
    border-color: #2e7d32;
}

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

/* ============================================
   PROCESS / FLOW
   ============================================ */
.process-steps {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    margin-top: 40px;
}

.process-step {
    text-align: center;
    padding: 32px 20px;
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.05);
    position: relative;
}

.process-step-number {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    font-weight: 700;
    color: #e8f5e9;
    line-height: 1;
    margin-bottom: 12px;
}

.process-step h4 {
    font-size: 1rem;
    margin-bottom: 10px;
    color: #2e7d32;
}

.process-step p {
    font-size: 0.85rem;
    color: #666;
}

/* ============================================
   FEATURE LIST
   ============================================ */
.feature-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
}

.feature-item {
    text-align: center;
    padding: 40px 24px;
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.05);
    transition: transform 0.3s;
}

.feature-item:hover {
    transform: translateY(-4px);
}

.feature-icon {
    font-size: 2.5rem;
    margin-bottom: 16px;
}

.feature-item h3 {
    font-size: 1.1rem;
    margin-bottom: 12px;
    color: #2e7d32;
}

.feature-item p {
    font-size: 0.85rem;
    color: #666;
    line-height: 1.7;
}

/* ============================================
   CTA SECTION
   ============================================ */
.cta-section {
    background: #2e7d32;
    padding: 80px 0;
    text-align: center;
    color: #fff;
}

.cta-section h2 {
    font-size: 1.8rem;
    margin-bottom: 16px;
}

.cta-section p {
    margin-bottom: 32px;
    opacity: 0.9;
}

/* ============================================
   FAQ
   ============================================ */
.faq-list {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    border-bottom: 1px solid #e0e0e0;
    padding: 24px 0;
}

.faq-question {
    font-weight: 500;
    font-size: 1rem;
    padding-left: 32px;
    position: relative;
    cursor: pointer;
}

.faq-question::before {
    content: 'Q.';
    position: absolute;
    left: 0;
    color: #2e7d32;
    font-weight: 700;
}

.faq-answer {
    margin-top: 12px;
    padding-left: 32px;
    color: #666;
    font-size: 0.9rem;
    position: relative;
}

.faq-answer::before {
    content: 'A.';
    position: absolute;
    left: 0;
    color: #e65100;
    font-weight: 700;
}

/* ============================================
   PARALLAX QUOTE
   ============================================ */
.parallax-quote {
    position: relative;
    padding: 120px 0;
    overflow: hidden;
    text-align: center;
}

.parallax-quote .parallax-bg {
    background-image: url('../images/bg/parallax-2.jpg');
}

.parallax-quote .parallax-overlay {
    background: rgba(0,0,0,0.55);
}

.parallax-quote-content {
    position: relative;
    z-index: 2;
    color: #fff;
}

.parallax-quote-content blockquote {
    font-size: clamp(1.2rem, 2.5vw, 1.8rem);
    font-weight: 300;
    line-height: 2;
    letter-spacing: 0.08em;
    max-width: 700px;
    margin: 0 auto;
}

/* ============================================
   CONTENT SECTIONS (Subpages)
   ============================================ */
.content-block {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    margin-bottom: 80px;
}

.content-block:last-child {
    margin-bottom: 0;
}

.content-block.reverse {
    direction: rtl;
}

.content-block.reverse > * {
    direction: ltr;
}

.content-block-image {
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0,0,0,0.1);
}

.content-block-image img {
    width: 100%;
    height: 350px;
    object-fit: cover;
}

.content-block-text h3 {
    font-size: 1.5rem;
    margin-bottom: 16px;
    line-height: 1.5;
}

.content-block-text p {
    color: #555;
    font-size: 0.95rem;
    margin-bottom: 14px;
}

.content-block-text ul {
    list-style: none;
    margin-top: 16px;
}

.content-block-text ul li {
    padding: 6px 0 6px 24px;
    position: relative;
    color: #555;
    font-size: 0.9rem;
}

.content-block-text ul li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #2e7d32;
    font-weight: 700;
}

/* Price Table */
.price-table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 20px;
}

.price-table th,
.price-table td {
    padding: 14px 16px;
    text-align: left;
    border-bottom: 1px solid #e0e0e0;
    font-size: 0.9rem;
}

.price-table th {
    background: #f0f7f0;
    font-weight: 500;
    color: #2e7d32;
}

.price-table td {
    color: #555;
}

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

.timeline::before {
    content: '';
    position: absolute;
    left: 14px;
    top: 0;
    bottom: 0;
    width: 2px;
    background: #e8f5e9;
}

.timeline-item {
    position: relative;
    margin-bottom: 32px;
    padding-left: 24px;
}

.timeline-item::before {
    content: '';
    position: absolute;
    left: -30px;
    top: 6px;
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: #2e7d32;
    border: 3px solid #e8f5e9;
}

.timeline-year {
    font-family: 'Playfair Display', serif;
    font-weight: 700;
    color: #2e7d32;
    margin-bottom: 4px;
}

.timeline-text {
    color: #555;
    font-size: 0.9rem;
}

/* ============================================
   FOOTER
   ============================================ */
.footer {
    background: #1a1a1a;
    color: #aaa;
    padding: 60px 0 30px;
}

.footer-inner {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    flex-wrap: wrap;
    gap: 40px;
    margin-bottom: 40px;
}

.footer-logo img {
    height: 36px;
    margin-bottom: 16px;
}

.footer-logo p {
    font-size: 0.8rem;
    line-height: 1.7;
}

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

.footer-nav a {
    font-size: 0.85rem;
    color: #aaa;
    transition: color 0.3s;
}

.footer-nav a:hover {
    color: #fff;
    opacity: 1;
}

.footer-bottom {
    border-top: 1px solid #333;
    padding-top: 20px;
    text-align: center;
    font-size: 0.75rem;
}

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 1024px) {
    .service-grid { grid-template-columns: repeat(2, 1fr); }
    .process-steps { grid-template-columns: repeat(2, 1fr); }
    .feature-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
    .nav-list { display: none; }
    .hamburger { display: flex; }

    .hero-content h1 { font-size: 1.8rem; }

    .concept-grid,
    .content-block {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .content-block.reverse { direction: ltr; }

    .concept-image img { height: 280px; }

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

    .team-main img { height: 260px; }
    .team-members { grid-template-columns: repeat(2, 1fr); }

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

    .stats { gap: 30px; }
    .stat-number { font-size: 2.5rem; }

    .section-padding { padding: 70px 0; }
    .parallax-section { height: 300px; }
    .parallax-bg { background-attachment: scroll; }
    .page-hero { height: 40vh; min-height: 280px; }

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

    .footer-inner {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .footer-nav { justify-content: center; }
    .company-table th { width: 120px; }
}

@media (max-width: 480px) {
    .gallery-grid { grid-template-columns: 1fr; }
    .team-members { grid-template-columns: 1fr 1fr; gap: 16px; }
    .team-member-photo { width: 110px; height: 110px; }

    .company-table th,
    .company-table td {
        display: block;
        padding: 10px 16px;
    }

    .company-table th { width: auto; padding-bottom: 0; }
}
