/* 1.1.general-setting-pages *************************/
/****************************************************/
:root {
    --sub-color: #f5f5f7;
    --main-color: #010f19;
    --accent-color: #42e6ff;
    --cubicbz: cubic-bezier(0.16, 1, 0.3, 1);
    --fz-big: 60px;
    --glow-color-1: rgba(32, 172, 203, 0.367);
    --glow-color-2: rgba(7, 28, 50, 0.599);
}

* {
    box-sizing: border-box;
    font-family: "Saira Stencil", system-ui;
    font-weight: 500;
    margin: 0;
    padding: 0;
    font-feature-settings:
        "pnum" on,
        "lnum" on;
}

/* Ensure headings retain their bold impact */
.title,
.section-title,
.site-header__logo a,
.fv__marq-txt,
.about__txt h2,
.footer__div,
.benefits__num,
.serv__item-txt,
.work__item-num {
    font-weight: 800;
}

/* Glow Effects for Background */
.glow-bg {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    z-index: -1;
    pointer-events: none;
    overflow: hidden;
    background-color: var(--main-color);
}

.glow-orb {
    position: absolute;
    filter: blur(120px);
    border-radius: 50%;
    opacity: 0.8;
    animation: orb-float 20s infinite alternate ease-in-out;
}

.glow-orb.orb-1 {
    width: 60vw;
    height: 60vw;
    background: var(--glow-color-1);
    top: -20vh;
    left: -20vw;
}

.glow-orb.orb-2 {
    width: 65vw;
    height: 65vw;
    background: var(--glow-color-2);
    bottom: -30vh;
    right: -10vw;
    animation-delay: -5s;
}

@keyframes orb-float {
    0% {
        transform: translate(0, 0) scale(1);
    }
    50% {
        transform: translate(5%, -5%) scale(1.1);
    }
    100% {
        transform: translate(-5%, 5%) scale(0.9);
    }
}

/* Utility classes for GSAP */
.js-fadeup {
    visibility: hidden;
}

body {
    background: var(--main-color);
}

/******************************************/
section {
    padding-top: 150px;
    padding-bottom: 50px;
}

.wrapp {
    width: 100%;
    height: auto;
    overflow: hidden;
    padding-top: 100vh;
    position: relative;
    z-index: 2;
}

.sub-wrapp {
    padding-top: 50vh;
}

.content {
    width: 100%;
    padding: 0 70px;
}

.char {
    display: inline-block;
}

/* Paralax Effect On GSAP **********************************/
/* header ********/
.fv {
    position: fixed;
    top: 0;
    left: 0;
    z-index: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 100vh;
}

.sub-fv {
    height: 50vh;
    padding-top: 0;
}

.sub-fv .fv__img {
    width: 100%;
}

.sub-fv .fv__img img {
    filter: brightness(0.6);
    object-position: center 25%;
}

.sub-fv .title {
    z-index: 2;
}

.fv__marq {
    position: absolute;
    bottom: 0;
    left: 0;
}

.fv__marq {
    width: 100%;
    height: auto;
    background: rgba(0, 0, 0, 0.15);
    overflow: hidden;
}

.fv__marq-wrapp {
    display: flex;
    width: 100%;
    height: auto;
    padding: 8px 70px;
}

.fv__marq-txt {
    position: relative;
    flex: 0 0 auto;
    display: inline-block;
    text-transform: uppercase;
    color: var(--sub-color);
    color: var(--sub-color);
    font-size: 35px;
}

.fv__marq-star {
    position: absolute;
    width: 40px;
    height: 40px;
    right: 0;
}

.fv__marq-star img {
    display: block;
    width: 100%;
    height: 100%;
}

.title {
    position: relative;
    margin: 0;
    width: 100%;
    color: var(--sub-color);
    text-transform: uppercase;
    text-align: center;
    font-size: 80px;
    z-index: 2;
    font-family: "Saira Stencil", system-ui;
}

.title_paralax {
    display: inline-block;
    will-change: transform;
}

.title .stroke {
    display: inline-block;
    color: transparent;
    -webkit-text-stroke: 1px var(--sub-color);
}

.fv__img {
    position: absolute;
    width: 50%;
    height: 100%;
    top: 0;
    right: 0;
    clip-path: polygon(0% 0%, 0% 0%, 0% 100%, 0% 100%);
    overflow: hidden;
}

.fv__img img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.section-title {
    position: relative;
    margin: 0;
    margin-bottom: 100px;
    line-height: 0.8;
    font-size: 70px;
    text-align: center;
    color: var(--sub-color);
    text-transform: uppercase;
}

.section-title .stroke {
    color: transparent;
    -webkit-text-stroke: 1px var(--sub-color);
}

.section-title__square {
    position: absolute;
    display: inline-block;
    width: 130px;
    height: 130px;
    border: 1px solid var(--accent-color);
    top: 50%;
    left: 35%;
    transform: translate(-50%, -50%);
    z-index: -1;
}

/* about ********/
.about {
    padding-bottom: 25vh; /* Space for intersecting serv section */
    position: relative;
    z-index: 1;
}

.about .section-title {
    text-align: left;
}

.about__wrapp {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.about__img,
.about__txt {
    width: calc(50% - 35px);
    height: auto;
}

.about__txt {
    padding-right: 70px;
}

.about__p {
    line-height: 1.4;
    font-size: 20px;
    color: var(--sub-color);
}

.about__img {
    height: 500px;
    overflow: hidden;
}

.about__img img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* benefits ********/
.benefits__list {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 40px;
    width: 100%;
    height: auto;
}

.benefits__item {
    list-style: none;
    width: calc(33.33% - 27px);
}

.benefits__num {
    display: inline-block;
    font-size: 60px;
    color: transparent;
    -webkit-text-stroke: 1px var(--sub-color);
}

.benefits__p {
    font-size: 20px;
    color: var(--sub-color);
}

/* work ********/
.work {
    padding-top: 250px;
}

.work-swiper {
    padding: 0 70px 50px;
    width: 100%;
}

/* recruit ********/
.recruit-table {
    width: 100%;
    border-collapse: collapse;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
}

.recruit-table th,
.recruit-table td {
    padding: 25px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
    text-align: left;
    vertical-align: top;
}

.recruit-table th {
    width: 25%;
    font-weight: 700;
    font-size: 18px;
    color: var(--sub-color);
}

.recruit-table td {
    width: 75%;
    font-size: 16px;
    line-height: 1.8;
}

.contact-btn {
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 240px;
    height: 80px;
    background-color: var(--sub-color);
    color: var(--main-color);
    text-decoration: none;
    font-family: "Noto Sans JP", sans-serif;
    font-size: 24px;
    font-weight: 800;
    border-radius: 4px;
    transition: all 0.3s ease;
}

.contact-btn span {
    font-family: "Syne", sans-serif;
    font-size: 12px;
    font-weight: 700;
    margin-top: 5px;
}

.contact-btn:hover {
    background-color: transparent;
    color: var(--sub-color);
    border: 1px solid var(--sub-color);
}

.work__item {
    position: relative;
    width: 100%;
    height: 60vh;
}

.work__item-num {
    position: absolute;
    display: inline-block;
    font-size: 70px;
    color: var(--sub-color);
    mix-blend-mode: difference;
    z-index: 2;
}

.work__item-img {
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.work__item-img img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Glass Area Effect (Ishibashi Kogyo Style) */
.glass-area {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
    border-radius: 24px;
    padding: 60px 50px;
    box-shadow:
        0 30px 60px rgba(0, 0, 0, 0.2),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
    position: relative;
    z-index: 2;
}

@media (max-width: 800px) {
    .glass-area {
        margin: 0 20px;
        padding: 40px 0;
    }
}

.js-glass-fadeup {
    visibility: hidden;
}

/* serv ********/
.serv {
    position: relative;
    z-index: 10;
}

.serv__list {
    display: flex;
    flex-direction: column;
    gap: 40px;
    margin-top: 40px;
}

.serv__item {
    display: flex;
    align-items: center;
    gap: 60px;
    padding: 60px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

.serv__item:last-child {
    border-bottom: none;
}

.serv__item:nth-child(even) {
    flex-direction: row-reverse;
}

.serv__item-img {
    width: 45%;
	max-height: 390px;
    border-radius: 24px;
    overflow: hidden;
}

.serv__item-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.serv__item:hover .serv__item-img img {
    transform: scale(1.06);
}

.serv__item-content {
    width: 50%;
}

.serv__item-sub {
    font-family: "Syne", sans-serif;
    font-size: 14px;
    font-weight: 800;
    color: var(--accent-color);
    letter-spacing: 0.1em;
    margin-bottom: 5px;
}

.serv__item-title {
    font-size: 36px;
    color: var(--sub-color);
    margin-bottom: 10px;
    font-weight: 800;
}

.serv__item-desc {
    font-size: 15px;
    color: var(--sub-color);
    line-height: 1.8;
    opacity: 0.85;
}

.serv__details-list {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 25px;
    padding-left: 0;
}

.serv__details-item {
    list-style: none;
    font-size: 13px;
    font-weight: 700;
    color: var(--sub-color);
    border: 1px solid rgba(255, 255, 255, 0.15);
    padding: 6px 14px;
    border-radius: 30px;
    background-color: rgba(255, 255, 255, 0.02);
    transition: all 0.3s ease;
}

.serv__item:hover .serv__details-item {
    border-color: var(--sub-color);
    background-color: rgba(255, 255, 255, 0.05);
}

.serv__item-btn-wrap {
    margin-top: 35px;
}

@media (max-width: 800px) {
    .serv__item,
    .serv__item:nth-child(even) {
        flex-direction: column;
        gap: 30px;
        padding: 40px 0;
    }
    .serv__item-img,
    .serv__item-content {
        width: 100%;
    }
    .serv__item-title {
        font-size: 28px;
    }
    .serv__item-btn-wrap {
        margin-top: 25px;
    }
}

.serv__item-text {
    position: relative;
    display: inline-block;
    transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
    transform-origin: bottom;
    transform-style: preserve-3d;
}

.serv__item-text::before {
    content: attr(data-text);
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    transform-origin: top;
    transform: rotateX(-90deg);
    color: var(--accent-color);
}

.serv__item:hover .serv__item-text {
    transform: translateY(-100%) rotateX(90deg);
}

/* footer ********/
.footer {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100vh;
    position: relative;
    flex-direction: column;
}

.footer__div {
    font-size: 70px;
    letter-spacing: 15px;
    color: var(--sub-color);
    text-transform: uppercase;
}

.footer__div span {
    display: inline-block;
}

/* site-header ********/
.site-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 80px;
    padding: 0 70px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 100;
}

.site-header__logo a {
    display: inline-flex;
    align-items: center;
    color: var(--sub-color);
    font-size: 24px;
    text-decoration: none;
    font-weight: 800;
}

.site-header__logo img {
    height: 150px;
    width: auto;
    display: block;
}

.site-header__nav ul {
    display: flex;
    list-style: none;
    gap: 40px;
}

.site-header__nav a {
    position: relative;
    color: var(--sub-color);
    text-decoration: none;
    font-size: 16px;
    text-transform: uppercase;
    letter-spacing: 2px;
    transition: opacity 0.3s;
}

.site-header__nav a::after {
    content: "";
    position: absolute;
    left: 50%;
    bottom: -4px;
    width: 0;
    height: 1px;
    background-color: var(--sub-color);
    transition:
        width 0.3s ease-in-out,
        transform 0.3s ease-in-out;
    transform: translateX(-50%);
}

.site-header__nav a:hover {
    opacity: 0.6;
}

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

.footer__copy {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    color: var(--sub-color);
    font-size: 14px;
    letter-spacing: 2px;
    font-weight: 400;
    opacity: 0.5;
}

/* hero-catchphrase ********/
.hero-catchphrase {
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    color: var(--accent-color);
    font-size: 7vw; /* scale with screen size */
    line-height: 1.3;
    z-index: 2;
}
.title img {
    width: 100%;
    margin: 0 auto;
    filter: drop-shadow(0 0 15px rgba(255, 255, 255, 0.8))
        drop-shadow(0 0 30px rgba(255, 255, 255, 0.5));
}
@media (min-width: 1200px) {
    .title img {
        width: 50%;
    }
}

/* Works Grid Page ********/
.works-grid {
    margin-top: 250px;
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    padding: 0 70px;
}
.swiper-slide {
    border-radius: 8px;
}
.works-card {
    width: calc(33.333% - 20px);
    background: #fff;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s;
    text-decoration: none;
}

.works-card:hover {
    transform: translateY(-5px);
}

.works-card__img {
    width: 100%;
    height: 250px; /* Adjust height based on preference */
    overflow: hidden;
}

.works-card__img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s;
}

.works-card:hover .works-card__img img {
    transform: scale(1.1);
}

.works-card__info {
    padding: 20px;
    background: #ffffff;
}

.works-card__meta {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 8px;
}

.works-card__date {
    font-size: 13px;
    color: #888;
    margin-bottom: 0;
    font-family: sans-serif;
}

.works-card__category {
    font-size: 11px;
    font-weight: 700;
    color: #fff;
    background-color: var(--main-color, #010f19);
    padding: 2px 8px;
    border-radius: 4px;
    letter-spacing: 0.05em;
    display: inline-block;
    line-height: 1.2;
}

.works-card__title {
    font-size: 16px;
    font-weight: 700;
    color: #333;
    line-height: 1.5;
    margin: 0;
}

/* Responsive works grid */
@media (max-width: 1024px) {
    .works-card {
        width: calc(50% - 15px);
    }
}

@media (max-width: 768px) {
    .works-grid {
        padding: 0 30px;
    }
    .works-card {
        width: 100%;
    }
}

/* Footer Navigation */
.footer__nav {
    margin-top: 50px;
    z-index: 2;
}
.footer__nav ul {
    display: flex;
    list-style: none;
    gap: 30px;
    padding: 0;
    margin: 0;
    flex-wrap: wrap;
    justify-content: center;
}
.footer__nav a {
    color: var(--sub-color);
    text-decoration: none;
    font-size: 14px;
    letter-spacing: 2px;
    text-transform: uppercase;
    transition: color 0.3s;
}
.footer__nav a:hover {
    color: var(--accent-color);
}

/* Hamburger Menu Button */
.hamburger {
    display: none;
    background: transparent;
    border: none;
    cursor: pointer;
    z-index: 101;
    width: 30px;
    height: 24px;
    position: relative;
    padding: 0;
    outline: none;
}

.hamburger span {
    display: block;
    position: absolute;
    width: 100%;
    height: 2px;
    background-color: var(--sub-color);
    transition:
        transform 0.3s ease,
        top 0.3s ease,
        opacity 0.3s ease;
    left: 0;
}

.hamburger span:nth-child(1) {
    top: 0;
}
.hamburger span:nth-child(2) {
    top: 11px;
}
.hamburger span:nth-child(3) {
    top: 22px;
}

/* Hamburger Active (X shape) */
.hamburger.is-active span:nth-child(1) {
    top: 11px;
    transform: rotate(45deg);
}
.hamburger.is-active span:nth-child(2) {
    opacity: 0;
}
.hamburger.is-active span:nth-child(3) {
    top: 11px;
    transform: rotate(-45deg);
}

/* Smartphone Responsive */
@media (max-width: 800px) {
    .site-header {
        padding: 0 30px;
        height: 60px;
    }
    .content,
    .about__txt,
    .works-grid {
        padding: 0 30px;
    }
    .site-header__logo {
        z-index: 102; /* ensure logo is clickable */
    }
    .site-header__logo img {
        height: 80px;
    }
    .hamburger {
        display: block;
    }
    .site-header__nav {
        display: flex;
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100vh;
        background-color: var(--main-color);
        flex-direction: column;
        justify-content: center;
        align-items: center;
        opacity: 0;
        visibility: hidden;
        transition:
            opacity 0.3s ease,
            visibility 0.3s ease;
        z-index: 100;
    }
    .site-header__nav.is-active {
        opacity: 1;
        visibility: visible;
    }
    .site-header__nav ul {
        flex-direction: column;
        align-items: center;
        gap: 30px;
    }
    .site-header__nav a {
        font-size: 24px;
    }

    .hero-catchphrase {
        font-size: 8vw;
        left: 30px;
    }
    .title {
        height: initial;
    }
    .fv {
        padding: 0 30px;
    }
    .fv__marq-wrapp {
        padding: 8px 10px;
    }
    .section-title {
        font-size: 10vw;
        margin-bottom: 150px;
    }
    .about__wrapp {
        flex-direction: column;
        gap: 40px;
    }
    .about__img,
    .about__txt {
        width: 100%;
        padding-right: 0;
    }
    .about__img {
        height: 50vh;
    }
    .benefits__item {
        width: 100%;
    }
    .work__item {
        width: 100%;
        height: 60vh;
    }
    .work__wrapp {
        padding: 0 30px;
        row-gap: 60px;
    }
    .footer__div {
        font-size: 10vw;
        letter-spacing: 5px;
    }
}

/* Enhanced Responsive Overrides */
@media (max-width: 800px) {
    .site-header__nav {
        transform: translateX(100%);
        transition:
            opacity 0.4s ease,
            visibility 0.4s ease,
            transform 0.4s cubic-bezier(0.16, 1, 0.3, 1) !important;
    }
    .site-header__nav.is-active {
        transform: translateX(0);
    }

    .fv__img {
        width: 100vw;
        right: 0;
        opacity: 0.5;

    }

    .title {
        font-size: clamp(32px, 8vw, 85px) !important;
    }
    .section-title {
        font-size: clamp(30px, 8vw, 70px) !important;
    }
    .footer__div {
        font-size: clamp(30px, 10vw, 70px) !important;
        letter-spacing: 5px;
    }
    .benefits__num {
        font-size: clamp(30px, 8vw, 60px) !important;
    }
    .serv__item-txt {
        font-size: clamp(24px, 6vw, 50px) !important;
    }
    .about__p,
    .benefits__p {
        font-size: 15px !important;
    }
    .work__item-num {
        font-size: clamp(30px, 8vw, 70px) !important;
    }
    .fv__marq-txt {
        font-size: clamp(16px, 4vw, 35px) !important;
    }
    .hero-catchphrase {
        font-size: clamp(24px, 7vw, 70px) !important;
        left: 20px !important;
    }
    .serv__list {
        gap: 30px !important;
    }
    .footer {
        height: auto;
        padding: 150px 20px 100px;
    }
    .footer__nav ul {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 20px 40px;
        text-align: center;
    }
    .footer__copy {
        font-size: 10px;
        width: 100%;
        text-align: center;
        letter-spacing: 1px;
    }
}
@media (max-width: 480px) {
    .site-header {
        padding: 0 20px !important;
    }
    .content,
    .works-grid,
    .about__txt,
    .work__wrapp {
        padding: 0 20px !important;
    }
    .serv__list {
        gap: 20px !important;
    }
    .serv__item-btn-wrap .common-btn.glass-area {
        padding: 15px 24px;
        font-size: 14px;
        white-space: normal;
        text-align: center;
        display: block;
        width: 100%;
        box-sizing: border-box;
    }
}

/* Works Filter */
.works-filter {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-top: 100px;
    margin-bottom: 100px;
    flex-wrap: wrap;
    padding: 0 70px;
}
.works-filter__btn {
    background: transparent;
    border: 1px solid var(--sub-color);
    color: var(--sub-color);
    padding: 8px 24px;
    border-radius: 30px;
    cursor: pointer;
    font-size: 14px;
    transition: all 0.3s ease;
    font-weight: bold;
    outline: none;
}
.works-filter__btn:hover,
.works-filter__btn.is-active {
    background: var(--sub-color);
    color: var(--main-color);
}
.works-card {
    transition:
        transform 0.4s ease,
        opacity 0.4s ease;
}
.works-grid {
    margin-top: 30px;
}
@media (max-width: 800px) {
    .works-filter {
        padding: 0 30px;
        gap: 10px;
        margin-bottom: 60px;
    }
    .works-filter__btn {
        padding: 6px 16px;
        font-size: 13px;
    }
}
@media (max-width: 480px) {
    .works-filter {
        padding: 0 20px;
    }
}

.u-sp {
    display: block !important;
}
.u-pc {
    display: none !important;
}
@media (min-width: 1200px) {
    .u-sp {
        display: none !important;
    }
    .u-pc {
        display: block !important;
    }
}

/* === New Kuroda-inspired Elements === */

/* Hero Swiper */
.fv-swiper {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
}
.fv-slide-img {
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    opacity: 0.4; /* darken for text readability */
}

/* Catchphrase overlay */
.fv__catch {
    position: absolute;
    bottom: 20%;
    left: 70px;
    color: var(--sub-color);
    font-size: 2.5rem;
    font-weight: 800;
    line-height: 1.4;
    text-shadow: 0 4px 15px rgba(0, 0, 0, 0.5);
    z-index: 2;
}

@media (max-width: 800px) {
    .fv__catch {
        left: 30px;
        font-size: 6vw;
        bottom: 25%;
    }
}

/* Strengths Grid */
.strengths {
    padding-top: 150px;
    position: relative;
    z-index: 2;
}
.strengths__grid {
    display: flex;
    justify-content: space-between;
    gap: 35px;
    margin-top: 50px;
}
.strengths__item {
    flex: 1;
    padding: 30px;
    text-align: center;
}
.strengths__title {
    font-size: 30px;
    color: var(--accent-color);
    margin-bottom: 20px;
    font-weight: 800;
}
.strengths__desc {
    font-size: 16px;
    color: var(--sub-color);
    line-height: 1.6;
}

@media (max-width: 800px) {
    .strengths__grid {
        flex-direction: column;
    }
    .strengths__item {
        margin-bottom: 20px;
    }
}

/* Services Buttons Layout */
.serv {
    position: relative;
    padding-top: 250px;
    z-index: 10;
}
.serv-bg-text {
    position: absolute;
    right: 0px;
    top: 50px;
    font-size: 15vw;
    font-weight: 900;
    line-height: 0.8;
    color: rgba(255, 255, 255, 0.05);
    text-transform: uppercase;
    text-align: right;
    pointer-events: none;
    z-index: -1;
    font-family: "Saira Stencil", system-ui;
}
.serv .content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 80px;
}
.serv-cards {
    display: flex;
    justify-content: space-between;
    gap: 30px;
    width: 100%;
}
.serv-card.glass-area {
    flex: 1;
    display: block;
    border-radius: 16px;
    overflow: hidden;
    text-decoration: none;
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    margin: 0;
    padding: 0;
}
.serv-card:hover {
    transform: translateY(-10px);
}
.serv-card__img {
    width: 100%;
    height: 200px;
    overflow: hidden;
    border-radius: 16px 16px 0 0;
}
.serv-card__img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}
.serv-card:hover .serv-card__img img {
    transform: scale(1.1);
}
.serv-card__txt {
    padding: 30px 20px;
    text-align: center;
}
.serv-card__title {
    color: var(--sub-color);
    font-size: 24px;
    margin-bottom: 10px;
    font-weight: 700;
}
.serv-card__desc {
    color: rgba(255, 255, 255, 0.7);
    font-size: 15px;
}

/* Common Glass Button */
.common-btn.glass-area {
    text-decoration: none;
    color: var(--sub-color);
    font-size: 16px;
    font-weight: 700;
    padding: 20px 40px;
    margin: 0;
    border-radius: 50px;
    transition:
        transform 0.3s ease,
        background 0.3s ease;
    white-space: nowrap;
    display: inline-block;
}
.common-btn:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.1);
}
.serv-text {
    text-align: center;
    color: var(--sub-color);
    font-size: 18px;
    line-height: 2;
    font-weight: 500;
    max-width: 1200px;
}

@media (max-width: 800px) {
    .serv-cards {
        flex-direction: column;
        align-items: center;
        gap: 20px;
    }
    .serv-card.glass-area {
        width: 100%;
    }
    .serv-text {
        font-size: 15px;
    }
    .serv-bg-text {
        font-size: 20vw;
        top: 20px;
    }
}

/* Safety Parallax */
.safety {
    position: relative;
    padding-top: 150px;
    z-index: 1;
}
.safety__parallax {
    position: relative;
    width: 100%;
    height: 60vh;
    background-attachment: fixed;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    display: flex;
    align-items: center;
    justify-content: center;
}
.safety__overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(28, 66, 87, 0.8); /* main color overlay (Egyptian Blue) */
}
.safety__content {
    position: relative;
    z-index: 2;
    text-align: center;
    padding: 0 30px;
}
.safety__title {
    font-size: 50px;
    color: var(--sub-color);
    font-weight: 800;
    margin-bottom: 30px;
}
.safety__desc {
    font-size: 18px;
    color: var(--sub-color);
    line-height: 1.8;
}

@media (max-width: 800px) {
    .safety__title {
        font-size: 30px;
    }
    .safety__desc {
        font-size: 15px;
    }
}

/* Recruit Section */
.recruit {
    padding-top: 150px;
    position: relative;
    z-index: 2;
}
.recruit__txt {
    width: 45%;
}
.recruit__catch {
    font-size: 32px;
    color: var(--accent-color);
    margin-bottom: 20px;
    font-weight: 800;
}
.recruit__desc {
    font-size: 16px;
    color: var(--sub-color);
    line-height: 2;
}
.recruit__img {
    width: 45%;
    height: 350px;
    border-radius: 16px;
    overflow: hidden;
}
.recruit__img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

@media (max-width: 800px) {
    .recruit__wrapp {
        flex-direction: column !important;
        padding: 40px 20px !important;
    }
    .recruit__txt,
    .recruit__img {
        width: 100%;
    }
    .recruit__img {
        margin-top: 30px;
        height: 250px;
    }
    .recruit__catch {
        font-size: 24px;
    }
}

/* Message Section */
.message {
    padding-top: 150px;
    position: relative;
    z-index: 2;
}
.message__box {
    padding: 80px 40px;
    text-align: center;
    max-width: 1200px;
    margin: 0 auto;
}
.message__title {
    font-size: 40px;
    color: var(--accent-color);
    margin-bottom: 40px;
    font-weight: 800;
}
.message__text {
    font-size: 18px;
    color: var(--sub-color);
    line-height: 2;
}

@media (max-width: 800px) {
    .message__box {
        padding: 50px 20px;
    }
    .message__title {
        font-size: 28px;
        margin-bottom: 20px;
    }
    .message__text {
        font-size: 15px;
    }
}

/* Works Single Page */
.single-work {
    padding-top: 150px;
    padding-bottom: 100px;
}
.single-work__header {
    text-align: center;
    margin-bottom: 50px;
}
.single-work__meta {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 20px;
    color: var(--accent-color);
    font-size: 14px;
    font-weight: 700;
}
.single-work__title {
    font-size: 40px;
    color: var(--sub-color);
    margin-bottom: 40px;
    font-weight: 800;
}
.single-work__hero {
    width: 100%;
    height: 60vh;
    border-radius: 20px;
    overflow: hidden;
    margin-bottom: 60px;
}
.single-work__hero img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.single-work__content {
    color: var(--sub-color);
    font-size: 16px;
    line-height: 2;
    max-width: 800px;
    margin: 0 auto;
    padding: 40px;
}
.single-work__content h3 {
    font-size: 24px;
    margin: 40px 0 20px;
    color: var(--accent-color);
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
    padding-bottom: 10px;
}
.single-work__content p {
    margin-bottom: 20px;
}
.back-btn-wrap {
    text-align: center;
    margin-top: 80px;
}
@media (max-width: 800px) {
    .single-work__title {
        font-size: 28px;
    }
    .single-work__hero {
        height: 40vh;
    }
}

/* Utilities extracted from inline styles */
.about__more {
    margin-top: 40px;
}
.serv-text {
    text-align: center;
    color: var(--sub-color);
    font-size: 18px;
    line-height: 2;
    font-weight: 500;
    max-width: 1200px;
    margin-top: 60px;
}
.work-swiper {
    padding-bottom: 50px;
}
.work-swiper .works-card {
    width: 100%;
}
.work__more {
    text-align: center;
    margin-top: 50px;
}
.recruit__wrapp {
    display: flex;
    justify-content: center;
    gap: 50px;
    align-items: center;
}
.recruit__more {
    margin-top: 40px;
}

@media (max-width: 800px) {
    .recruit-table th,
    .recruit-table td {
        display: block;
        width: 100%;
    }

    .recruit-table th {
        border-bottom: none;
        padding-bottom: 5px;
    }

    .recruit-table td {
        padding-top: 0;
    }
}

/* contact form ********/
.contact-form,
.wpcf7-form {
    max-width: 1000px;
    margin: 0 auto 100px;
    text-align: left;
}

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

.form-group label {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 10px;
    color: var(--sub-color);
}

.form-group .required {
    font-size: 11px;
    background-color: #ff3b30;
    color: #fff;
    padding: 2px 6px;
    border-radius: 2px;
}

.form-group .optional {
    font-size: 11px;
    background-color: rgba(255, 255, 255, 0.2);
    color: var(--sub-color);
    padding: 2px 6px;
    border-radius: 2px;
}

.form-group input[type="text"],
.form-group input[type="email"],
.form-group input[type="tel"],
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 15px;
    background-color: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 4px;
    color: var(--sub-color);
    font-size: 16px;
    font-family: inherit;
    box-sizing: border-box;
    transition: all 0.3s ease;
}

.form-group select {
    appearance: none;
    background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='rgba(255, 255, 255, 0.7)' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 15px center;
    background-size: 18px;
    padding-right: 40px;
}

.form-group select option {
    background-color: var(--main-color);
    color: var(--sub-color);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--sub-color);
    background-color: rgba(255, 255, 255, 0.08);
    box-shadow: 0 0 10px rgba(255, 255, 255, 0.05);
}

.policy-text-box {
    width: 100%;
    height: 150px;
    padding: 15px;
    background-color: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 4px;
    color: var(--sub-color);
    font-size: 13px;
    line-height: 1.6;
    overflow-y: auto;
    text-align: left;
    margin-bottom: 20px;
    box-sizing: border-box;
}

.policy-text-box::-webkit-scrollbar {
    width: 6px;
}

.policy-text-box::-webkit-scrollbar-track {
    background: rgba(255, 255, 255, 0.02);
}

.policy-text-box::-webkit-scrollbar-thumb {
    background: rgba(255, 255, 255, 0.2);
    border-radius: 3px;
}

.policy-text-box h3 {
    font-size: 15px;
    margin-top: 0;
    margin-bottom: 10px;
    font-weight: 700;
    color: var(--accent-color);
}

.policy-text-box p {
    margin-top: 0;
    margin-bottom: 15px;
}

.policy-text-box p:last-child {
    margin-bottom: 0;
}

.form-policy {
    margin: 40px 0;
    text-align: center;
}

.form-policy label {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    cursor: pointer;
    font-size: 14px;
    color: var(--sub-color);
}

.form-policy input[type="checkbox"] {
    width: 18px;
    height: 18px;
    accent-color: var(--sub-color);
}

.form-policy a {
    color: var(--sub-color);
    text-decoration: underline;
}

.submit-btn {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 280px;
    height: 80px;
    margin: 0 auto;
    background-color: var(--sub-color);
    color: var(--main-color);
    border: 1px solid var(--sub-color);
    font-family: "Noto Sans JP", sans-serif;
    font-size: 24px;
    font-weight: 800;
    border-radius: 4px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.submit-btn span {
    font-family: "Syne", sans-serif;
    font-size: 12px;
    font-weight: 700;
    margin-top: 5px;
}

.submit-btn:hover {
    background-color: transparent;
    color: var(--sub-color);
}

/* Recruit Page Text Color */
.page-template-page-recruit,
.benefits {
    color: #ffffff;
}