/* ============================================
   FLAT06. Indonesia - Brand Identity Website
   Functional Modernism | Urban Minimalist
   Primary: #F47920 (FLAT06 Orange)
   Aesthetic: Japandi Industrial
   ============================================ */

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

:root {
    --primary: #F47920;
    --primary-dark: #D96A1A;
    --primary-light: #F89B50;
    --primary-subtle: rgba(244, 121, 32, 0.06);
    --primary-muted: rgba(244, 121, 32, 0.10);
    --black: #1A1A1A;
    --dark: #333333;
    --gray: #7A7A7A;
    --cool-gray: #A0A0A0;
    --light-gray: #E8E8E8;
    --off-white: #F8F7F5;
    --white: #FFFFFF;
    --font-heading: 'Century Gothic', 'Futura', 'Avant Garde', 'Avenir', sans-serif;
    --font-body: 'Lato', 'Helvetica Neue', 'Helvetica', sans-serif;
    --transition: 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    --transition-fast: 0.2s ease;
}

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

body {
    font-family: var(--font-body);
    font-weight: 300;
    color: var(--dark);
    background: var(--white);
    line-height: 1.8;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

body.no-scroll {
    overflow: hidden;
}

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

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

ul {
    list-style: none;
}

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

.section {
    padding: 120px 0;
}

/* === Preloader === */
.preloader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--white);
    z-index: 10000;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: opacity 0.6s ease, visibility 0.6s ease;
}

.preloader.loaded {
    opacity: 0;
    visibility: hidden;
}

.preloader-inner {
    text-align: center;
}

.preloader-logo {
    margin-bottom: 32px;
}

.preloader-logo img {
    height: 64px;
    width: auto;
}

.preloader-bar {
    width: 200px;
    height: 2px;
    background: var(--light-gray);
    overflow: hidden;
    margin: 0 auto;
}

.preloader-progress {
    width: 0%;
    height: 100%;
    background: var(--primary);
    animation: preloaderProgress 1.5s ease forwards;
}

@keyframes preloaderProgress {
    0% { width: 0%; }
    100% { width: 100%; }
}

/* === Navigation === */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: 24px 0;
    transition: all var(--transition);
    background: rgba(255, 255, 255, 0.0);
}

.navbar.scrolled {
    background: rgba(255, 255, 255, 0.97);
    padding: 14px 0;
    border-bottom: 1px solid var(--light-gray);
}

.nav-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.nav-logo {
    z-index: 1001;
}

.nav-logo img {
    height: 36px;
    width: auto;
    transition: all var(--transition);
}

.navbar.scrolled .nav-logo img {
    height: 32px;
}

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

.nav-link {
    font-family: var(--font-body);
    font-size: 0.8rem;
    font-weight: 400;
    color: var(--white);
    text-transform: uppercase;
    letter-spacing: 2px;
    position: relative;
    padding: 4px 0;
}

.navbar.scrolled .nav-link {
    color: var(--dark);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary);
    transition: width var(--transition);
}

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

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

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

.nav-cta {
    font-family: var(--font-body);
    font-size: 0.8rem;
    font-weight: 400;
    color: var(--white);
    background: var(--primary);
    padding: 10px 28px;
    letter-spacing: 1px;
    text-transform: uppercase;
    transition: all var(--transition-fast);
}

.nav-cta:hover {
    background: var(--primary-dark);
}

.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    z-index: 1001;
    padding: 4px;
}

.nav-toggle span {
    width: 24px;
    height: 1px;
    background: var(--white);
    transition: all 0.3s ease;
    display: block;
}

.navbar.scrolled .nav-toggle span {
    background: var(--dark);
}

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

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

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

/* === Buttons === */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: var(--font-body);
    font-size: 0.85rem;
    font-weight: 400;
    padding: 14px 36px;
    cursor: pointer;
    transition: all var(--transition);
    border: 1px solid transparent;
    letter-spacing: 1px;
    text-transform: uppercase;
}

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

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

.btn-outline {
    background: transparent;
    color: var(--white);
    border-color: rgba(255, 255, 255, 0.4);
}

.btn-outline:hover {
    border-color: var(--white);
    background: rgba(255, 255, 255, 0.08);
}

.btn-lg {
    padding: 16px 44px;
    font-size: 0.9rem;
}

.btn-dark {
    background: var(--dark);
    color: var(--white);
    border-color: var(--dark);
}

.btn-dark:hover {
    background: var(--black);
}

/* === Section Tags & Titles === */
.section-tag {
    display: inline-flex;
    align-items: center;
    gap: 16px;
    font-size: 0.75rem;
    font-weight: 400;
    text-transform: uppercase;
    letter-spacing: 4px;
    color: var(--primary);
    margin-bottom: 24px;
}

.section-tag::before {
    content: '';
    width: 48px;
    height: 1px;
    background: var(--primary);
}

.section-tag-light {
    color: var(--white);
}

.section-tag-light::before {
    background: var(--white);
}

.section-title {
    font-family: var(--font-heading);
    font-size: 2.8rem;
    font-weight: 300;
    line-height: 1.2;
    letter-spacing: -0.5px;
    color: var(--dark);
    margin-bottom: 20px;
}

.section-subtitle {
    font-size: 1.05rem;
    font-weight: 300;
    color: var(--gray);
    max-width: 600px;
    line-height: 1.8;
}

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

.section-header .section-tag {
    justify-content: center;
}

.section-header .section-subtitle {
    margin: 0 auto;
}

.section-cta {
    text-align: center;
    margin-top: 56px;
}

.link-arrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 0.9rem;
    font-weight: 400;
    color: var(--primary);
    letter-spacing: 0.5px;
    transition: all var(--transition-fast);
}

.link-arrow i {
    transition: transform var(--transition-fast);
}

.link-arrow:hover {
    color: var(--primary-dark);
}

.link-arrow:hover i {
    transform: translateX(4px);
}

/* === Hero Section === */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 120px 40px 80px;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--dark);
    background-image: url('../assets/images/hero/lobby.jpg');
    background-image: -webkit-image-set(
        url('../assets/images/hero/lobby.webp') type('image/webp'),
        url('../assets/images/hero/lobby.jpg') type('image/jpeg')
    );
    background-image: image-set(
        url('../assets/images/hero/lobby.webp') type('image/webp'),
        url('../assets/images/hero/lobby.jpg') type('image/jpeg')
    );
    background-size: cover;
    background-position: center;
}

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

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
}

.hero-tag {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 32px;
    opacity: 0;
    animation: fadeInUp 0.8s ease 0.5s forwards;
}

.tag-line {
    width: 48px;
    height: 1px;
    background: var(--primary);
}

.tag-text {
    font-size: 0.8rem;
    font-weight: 400;
    text-transform: uppercase;
    letter-spacing: 4px;
    color: var(--primary);
}

.hero-title {
    font-family: var(--font-heading);
    font-size: 4.2rem;
    font-weight: 300;
    line-height: 1.15;
    letter-spacing: -1px;
    color: var(--white);
    margin-bottom: 28px;
}

.hero-title .title-line {
    display: block;
    opacity: 0;
    animation: fadeInUp 0.8s ease forwards;
}

.hero-title .title-line:nth-child(1) { animation-delay: 0.7s; }
.hero-title .title-line:nth-child(2) { animation-delay: 0.9s; }
.hero-title .title-line:nth-child(3) { animation-delay: 1.1s; }

.title-accent {
    color: var(--primary);
}

.hero-subtitle {
    font-size: 1.1rem;
    font-weight: 300;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.9;
    max-width: 560px;
    margin-bottom: 44px;
    opacity: 0;
    animation: fadeInUp 0.8s ease 1.3s forwards;
}

.hero-actions {
    display: flex;
    gap: 16px;
    opacity: 0;
    animation: fadeInUp 0.8s ease 1.5s forwards;
}

.hero-stats {
    position: absolute;
    bottom: 80px;
    right: 40px;
    display: flex;
    align-items: center;
    gap: 40px;
    z-index: 2;
    opacity: 0;
    animation: fadeInUp 0.8s ease 1.8s forwards;
}

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

.stat-number {
    font-family: var(--font-heading);
    font-size: 2.6rem;
    font-weight: 300;
    color: var(--white);
    display: inline;
}

.stat-suffix {
    font-family: var(--font-heading);
    font-size: 1.6rem;
    font-weight: 300;
    color: var(--primary);
}

.stat-label {
    display: block;
    font-size: 0.7rem;
    font-weight: 400;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: rgba(255, 255, 255, 0.5);
    margin-top: 4px;
}

.stat-divider {
    width: 1px;
    height: 40px;
    background: rgba(255, 255, 255, 0.15);
}

.hero-scroll {
    position: absolute;
    bottom: 40px;
    left: 40px;
    display: flex;
    align-items: center;
    gap: 12px;
    z-index: 2;
    opacity: 0;
    animation: fadeInUp 0.8s ease 2s forwards;
}

.hero-scroll span {
    font-size: 0.7rem;
    font-weight: 400;
    text-transform: uppercase;
    letter-spacing: 3px;
    color: rgba(255, 255, 255, 0.4);
}

.scroll-indicator {
    width: 1px;
    height: 48px;
    background: rgba(255, 255, 255, 0.15);
    position: relative;
    overflow: hidden;
}

.scroll-indicator::after {
    content: '';
    position: absolute;
    top: -100%;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--primary);
    animation: scrollDown 2s ease infinite;
}

@keyframes scrollDown {
    0% { top: -100%; }
    100% { top: 100%; }
}

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

/* === About Preview === */
.about-preview-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 100px;
    align-items: center;
}

.about-preview-content .section-title {
    font-size: 2.4rem;
}

.section-text {
    font-size: 1rem;
    font-weight: 300;
    color: var(--gray);
    line-height: 1.9;
    margin-bottom: 16px;
}

.about-preview-visual {
    position: relative;
    height: 500px;
}

.visual-card {
    position: absolute;
    overflow: hidden;
}

.visual-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.visual-card-1 {
    top: 0;
    left: 0;
    width: 320px;
    height: 380px;
    z-index: 2;
}

.visual-card-2 {
    bottom: 0;
    right: 0;
    width: 280px;
    height: 320px;
    z-index: 1;
}

.visual-accent {
    position: absolute;
    top: 40px;
    right: 40px;
    width: 120px;
    height: 120px;
    border: 2px solid var(--primary);
    z-index: 0;
}

/* === Grey Background Utility === */
.section-grey-bg {
    background: #B2B2B2 !important;
}

.section-grey-bg .section-tag {
    color: var(--white);
}

.section-grey-bg .section-tag::before {
    background: var(--white);
}

.section-grey-bg .section-title {
    color: var(--white);
}

.section-grey-bg .section-subtitle {
    color: rgba(255, 255, 255, 0.8);
}

.section-grey-bg .value-card {
    background: var(--primary);
    border-color: var(--primary);
}

.section-grey-bg .value-card h3 {
    color: var(--white);
}

.section-grey-bg .value-card p {
    color: rgba(255, 255, 255, 0.9);
}

.section-grey-bg .value-icon {
    background: rgba(255, 255, 255, 0.25);
    color: var(--white);
}

.section-grey-bg .stat-suffix {
    color: var(--white);
}

/* === Services Preview === */
.section-services-preview {
    background: #B2B2B2;
}

.section-services-preview .section-tag {
    color: var(--white);
}

.section-services-preview .section-tag::before {
    background: var(--white);
}

.section-services-preview .section-title {
    color: var(--white);
}

.section-services-preview .section-subtitle {
    color: rgba(255, 255, 255, 0.8);
}

.section-services-preview .link-arrow {
    color: var(--white);
}

.section-services-preview .link-arrow:hover {
    color: rgba(255, 255, 255, 0.8);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
}

.service-card {
    background: var(--primary);
    padding: 44px 36px;
    transition: all var(--transition);
    border: 1px solid var(--primary);
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background: var(--primary);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform var(--transition);
}

.service-card:hover {
    border-color: var(--primary-dark);
    background: var(--primary-dark);
}

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

.service-icon {
    background: rgba(255, 255, 255, 0.25) !important;
    color: var(--white) !important;
    width: 56px;
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.2);
    margin-bottom: 28px;
    font-size: 1.3rem;
    color: var(--white);
    transition: all var(--transition);
}

.service-card:hover .service-icon {
    background: var(--white);
    color: var(--primary);
}

.service-card h3 {
    font-family: var(--font-heading);
    font-size: 1.15rem;
    font-weight: 400;
    margin-bottom: 12px;
    color: var(--white);
}

.service-card p {
    font-size: 0.9rem;
    font-weight: 300;
    color: rgba(255, 255, 255, 0.75);
    line-height: 1.8;
}

/* === UVP Section === */
.section-uvp {
    padding: 0;
}

.uvp-inner {
    background: #B2B2B2;
    padding: 120px 0;
    position: relative;
    overflow: hidden;
}

.uvp-inner::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(244, 121, 32, 0.04) 0%, transparent 70%);
    border-radius: 50%;
}

.uvp-content {
    max-width: 700px;
    position: relative;
    z-index: 1;
}

.uvp-title {
    font-family: var(--font-heading);
    font-size: 2.8rem;
    font-weight: 300;
    line-height: 1.2;
    color: var(--white);
    margin-bottom: 24px;
}

.uvp-text {
    font-size: 1.05rem;
    font-weight: 300;
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.9;
    margin-bottom: 48px;
}

.uvp-features {
    display: flex;
    flex-direction: column;
    gap: 32px;
    margin-bottom: 48px;
}

.uvp-feature {
    display: flex;
    gap: 20px;
    align-items: flex-start;
}

.uvp-feature-icon {
    width: 48px;
    height: 48px;
    min-width: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--primary);
    color: var(--white);
    font-size: 1.1rem;
}

.uvp-feature h4 {
    font-family: var(--font-heading);
    font-size: 1.05rem;
    font-weight: 400;
    color: var(--white);
    margin-bottom: 4px;
}

.uvp-feature p {
    font-size: 0.9rem;
    font-weight: 300;
    color: rgba(255, 255, 255, 0.75);
    line-height: 1.7;
}

/* === Portfolio Preview === */
.portfolio-showcase {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.portfolio-card {
    overflow: hidden;
    background: var(--white);
    border: 1px solid var(--light-gray);
    transition: all var(--transition);
}

.portfolio-card:hover {
    border-color: var(--primary);
}

.portfolio-image {
    position: relative;
    height: 200px;
    overflow: hidden;
}

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

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

.portfolio-overlay {
    position: absolute;
    top: 12px;
    right: 12px;
}

.portfolio-type {
    font-size: 0.65rem;
    font-weight: 400;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    background: var(--primary);
    color: var(--white);
    padding: 4px 12px;
}

.portfolio-info {
    padding: 20px;
}

.portfolio-info h3 {
    font-family: var(--font-heading);
    font-size: 0.95rem;
    font-weight: 400;
    color: var(--dark);
    margin-bottom: 4px;
}

.portfolio-info p {
    font-size: 0.8rem;
    font-weight: 300;
    color: var(--gray);
}

.portfolio-card-coming .portfolio-image {
    background: var(--off-white);
}

.coming-soon-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 12px;
    color: var(--gray);
}

.coming-soon-placeholder i {
    font-size: 2rem;
    color: var(--primary);
}

.coming-soon-placeholder span {
    font-size: 0.75rem;
    font-weight: 400;
    text-transform: uppercase;
    letter-spacing: 3px;
}

/* === CTA Banner === */
.section-cta-banner {
    padding: 80px 0;
}

.cta-banner {
    background: #B2B2B2;
    padding: 72px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 48px;
}

.cta-content h2 {
    font-family: var(--font-heading);
    font-size: 2rem;
    font-weight: 300;
    line-height: 1.3;
    color: var(--white);
    margin-bottom: 12px;
}

.cta-content p {
    font-size: 1rem;
    font-weight: 300;
    color: rgba(255, 255, 255, 0.8);
    max-width: 480px;
}

.cta-actions {
    display: flex;
    gap: 16px;
    flex-shrink: 0;
}

.cta-actions .btn-outline {
    color: var(--white);
    border-color: var(--white);
}

.cta-actions .btn-outline:hover {
    background: var(--white);
    color: var(--dark);
}

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

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1.5fr;
    gap: 48px;
    padding-bottom: 48px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-brand {
    margin-bottom: 16px;
}

.footer-brand img {
    height: 40px;
    width: auto;
}

.footer-tagline {
    font-size: 0.9rem;
    font-weight: 300;
    line-height: 1.7;
    margin-bottom: 24px;
}

.footer-social {
    display: flex;
    gap: 12px;
}

.footer-social a {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.06);
    color: rgba(255, 255, 255, 0.5);
    transition: all var(--transition-fast);
}

.footer-social a:hover {
    background: var(--primary);
    color: var(--white);
}

.footer-nav h4,
.footer-contact h4 {
    font-family: var(--font-heading);
    font-size: 0.8rem;
    font-weight: 400;
    color: var(--white);
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 20px;
}

.footer-nav ul li,
.footer-contact ul li {
    margin-bottom: 10px;
}

.footer-nav a,
.footer-contact a {
    font-size: 0.9rem;
    font-weight: 300;
    color: rgba(255, 255, 255, 0.5);
    transition: color var(--transition-fast);
}

.footer-nav a:hover,
.footer-contact a:hover {
    color: var(--primary);
}

.footer-contact li {
    display: flex;
    gap: 12px;
    align-items: flex-start;
}

.footer-contact li i {
    color: var(--primary);
    margin-top: 4px;
    min-width: 16px;
}

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

.footer-bottom p {
    font-size: 0.8rem;
    font-weight: 300;
    color: rgba(255, 255, 255, 0.3);
}

/* === Reveal Animations === */
.reveal-up,
.reveal-left,
.reveal-right {
    opacity: 0;
    transition: all 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    transition-delay: var(--delay, 0s);
}

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

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

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

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

/* === Responsive === */
@media (max-width: 1024px) {
    .hero-title {
        font-size: 3.2rem;
    }

    .hero-stats {
        position: relative;
        bottom: auto;
        right: auto;
        margin-top: 48px;
        justify-content: flex-start;
    }

    .hero {
        padding: 120px 24px 60px;
    }

    .hero-scroll {
        display: none;
    }

    .about-preview-grid {
        grid-template-columns: 1fr;
        gap: 48px;
    }

    .about-preview-visual {
        height: 400px;
    }

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

    .portfolio-showcase {
        grid-template-columns: repeat(3, 1fr);
    }

    .cta-banner {
        flex-direction: column;
        text-align: center;
        padding: 48px 32px;
    }

    .cta-content p {
        margin: 0 auto;
    }

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

    .container {
        padding: 0 24px;
    }
}

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

    .nav-menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 100%;
        height: 100vh;
        background: var(--white);
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 24px;
        transition: right 0.4s ease;
    }

    .nav-menu.active {
        right: 0;
    }

    .nav-link {
        font-size: 1rem;
        color: var(--dark);
    }

    .nav-cta {
        display: none;
    }

    .nav-toggle {
        display: flex;
    }

    .hero-bg {
        background-image: url('../assets/images/hero/lobby-mobile.jpg');
        background-image: -webkit-image-set(
            url('../assets/images/hero/lobby-mobile.webp') type('image/webp'),
            url('../assets/images/hero/lobby-mobile.jpg') type('image/jpeg')
        );
        background-image: image-set(
            url('../assets/images/hero/lobby-mobile.webp') type('image/webp'),
            url('../assets/images/hero/lobby-mobile.jpg') type('image/jpeg')
        );
    }

    .hero-title {
        font-size: 2.4rem;
    }

    .hero-subtitle {
        font-size: 1rem;
    }

    .hero-stats {
        flex-wrap: wrap;
        gap: 24px;
    }

    .stat-divider {
        display: none;
    }

    .stat-item {
        width: calc(50% - 12px);
    }

    .stat-number {
        font-size: 2rem;
    }

    .section-title {
        font-size: 2rem;
    }

    .about-preview-visual {
        height: 300px;
    }

    .visual-card-1 {
        width: 60%;
        height: 280px;
    }

    .visual-card-2 {
        width: 50%;
        height: 220px;
    }

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

    .uvp-title {
        font-size: 2rem;
    }

    .portfolio-showcase {
        grid-template-columns: repeat(2, 1fr);
        gap: 16px;
    }

    .portfolio-image {
        height: 160px;
    }

    .cta-banner {
        padding: 40px 24px;
    }

    .cta-content h2 {
        font-size: 1.6rem;
    }

    .cta-actions {
        flex-direction: column;
        width: 100%;
    }

    .cta-actions .btn {
        width: 100%;
        justify-content: center;
    }

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

    .hero-actions {
        flex-direction: column;
    }

    .hero-actions .btn {
        text-align: center;
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 1.9rem;
    }

    .section-title {
        font-size: 1.7rem;
    }

    .portfolio-showcase {
        grid-template-columns: 1fr;
    }

    .portfolio-image {
        height: 200px;
    }
}

/* === Page-specific styles for inner pages === */

/* Page Hero */
.page-hero {
    position: relative;
    min-height: 50vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 160px 24px 80px;
    background: var(--dark);
    overflow: hidden;
}

.page-hero::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -20%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(244, 121, 32, 0.06) 0%, transparent 70%);
    border-radius: 50%;
}

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

.page-hero .section-tag {
    color: var(--primary);
    justify-content: center;
}

.page-hero .section-tag::before {
    background: var(--primary);
}

.page-hero .section-title {
    color: var(--white);
    font-size: 3.2rem;
    margin-bottom: 16px;
}

.page-hero .section-subtitle {
    color: rgba(255, 255, 255, 0.6);
    margin: 0 auto;
}

/* Story Section */
.story-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 100px;
    align-items: center;
}

.story-content .section-text {
    margin-bottom: 24px;
}

.story-image {
    position: relative;
    overflow: hidden;
    height: 480px;
}

.story-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.story-image-accent {
    position: absolute;
    bottom: -20px;
    left: -20px;
    width: 120px;
    height: 120px;
    border: 2px solid var(--primary);
    z-index: -1;
}

/* Values */
.values-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
}

.value-card {
    padding: 44px 36px;
    border: 1px solid var(--light-gray);
    transition: all var(--transition);
    text-align: center;
}

.value-card:hover {
    border-color: var(--primary);
}

.value-icon {
    width: 64px;
    height: 64px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--primary-subtle);
    margin: 0 auto 24px;
    font-size: 1.5rem;
    color: var(--primary);
}

.value-card h3 {
    font-family: var(--font-heading);
    font-size: 1.15rem;
    font-weight: 400;
    margin-bottom: 12px;
    color: var(--dark);
}

.value-card p {
    font-size: 0.9rem;
    font-weight: 300;
    color: var(--gray);
    line-height: 1.8;
}

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

.timeline::before {
    content: '';
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 1px;
    background: var(--light-gray);
    transform: translateX(-50%);
}

.timeline-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 48px;
    position: relative;
}

.timeline-item:nth-child(odd) {
    flex-direction: row;
    padding-right: calc(50% + 40px);
    text-align: right;
}

.timeline-item:nth-child(even) {
    flex-direction: row-reverse;
    padding-left: calc(50% + 40px);
    text-align: left;
}

.timeline-dot {
    position: absolute;
    left: 50%;
    top: 8px;
    width: 12px;
    height: 12px;
    background: var(--primary);
    border-radius: 50%;
    transform: translateX(-50%);
    z-index: 1;
}

.timeline-content h3 {
    font-family: var(--font-heading);
    font-size: 1.05rem;
    font-weight: 400;
    color: var(--primary);
    margin-bottom: 4px;
}

.timeline-content h4 {
    font-family: var(--font-heading);
    font-size: 1rem;
    font-weight: 400;
    color: var(--dark);
    margin-bottom: 8px;
}

.timeline-content p {
    font-size: 0.9rem;
    font-weight: 300;
    color: var(--gray);
    line-height: 1.7;
}

/* Services Page */
.service-detail {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
    padding: 80px 0;
    border-bottom: 1px solid var(--light-gray);
}

.service-detail:last-child {
    border-bottom: none;
}

.service-detail:nth-child(even) {
    direction: rtl;
}

.service-detail:nth-child(even) > * {
    direction: ltr;
}

.service-detail-icon {
    width: 72px;
    height: 72px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--primary-subtle);
    font-size: 1.8rem;
    color: var(--primary);
    margin-bottom: 24px;
}

.service-detail-content h3 {
    font-family: var(--font-heading);
    font-size: 1.7rem;
    font-weight: 300;
    color: var(--dark);
    margin-bottom: 16px;
}

.service-detail-content p {
    font-size: 1rem;
    font-weight: 300;
    color: var(--gray);
    line-height: 1.9;
    margin-bottom: 16px;
}

.service-detail-list {
    margin-top: 24px;
}

.service-detail-list li {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 8px 0;
    font-size: 0.95rem;
    font-weight: 300;
    color: var(--dark);
}

.service-detail-list li i {
    color: var(--primary);
    font-size: 0.8rem;
}

.service-detail-visual {
    position: relative;
    height: 400px;
    overflow: hidden;
}

.service-detail-visual img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.service-number {
    position: absolute;
    top: 24px;
    left: 24px;
    font-family: var(--font-heading);
    font-size: 4rem;
    font-weight: 300;
    color: rgba(244, 121, 32, 0.15);
    line-height: 1;
}

/* Portfolio Page */
.portfolio-detail-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 48px;
}

.portfolio-detail-card {
    overflow: hidden;
    background: var(--white);
    border: 1px solid var(--light-gray);
    transition: all var(--transition);
}

.portfolio-detail-card:hover {
    border-color: var(--primary);
}

.portfolio-detail-image {
    height: 280px;
    overflow: hidden;
    position: relative;
}

.portfolio-detail-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

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

.portfolio-detail-content {
    padding: 32px;
}

.portfolio-detail-content h3 {
    font-family: var(--font-heading);
    font-size: 1.3rem;
    font-weight: 400;
    color: var(--dark);
    margin-bottom: 8px;
}

.portfolio-detail-content .portfolio-location {
    font-size: 0.9rem;
    font-weight: 300;
    color: var(--gray);
    margin-bottom: 16px;
    display: flex;
    align-items: center;
    gap: 6px;
}

.portfolio-detail-content .portfolio-description {
    font-size: 0.95rem;
    font-weight: 300;
    color: var(--gray);
    line-height: 1.8;
    margin-bottom: 20px;
}

.portfolio-meta {
    display: flex;
    gap: 24px;
    padding-top: 16px;
    border-top: 1px solid var(--light-gray);
}

.portfolio-meta-item {
    text-align: center;
}

.portfolio-meta-item .meta-value {
    font-family: var(--font-heading);
    font-size: 1.2rem;
    font-weight: 400;
    color: var(--primary);
    display: block;
}

.portfolio-meta-item .meta-label {
    font-size: 0.7rem;
    font-weight: 400;
    color: var(--gray);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.portfolio-detail-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-top: 16px;
    font-weight: 400;
    color: var(--primary);
    font-size: 0.9rem;
}

.portfolio-detail-link:hover {
    color: var(--primary-dark);
}

/* Partnership Page */
.partnership-model {
    background: #B2B2B2;
    padding: 64px;
    margin-bottom: 48px;
}

.partnership-model h3 {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    font-weight: 300;
    color: var(--white);
    margin-bottom: 16px;
}

.partnership-steps {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 32px;
    margin-top: 48px;
}

.step-card {
    text-align: center;
    position: relative;
}

.step-number {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--primary);
    color: var(--white);
    font-family: var(--font-heading);
    font-size: 1.2rem;
    font-weight: 400;
    border-radius: 50%;
    margin: 0 auto 16px;
}

.step-card h4 {
    font-family: var(--font-heading);
    font-size: 1rem;
    font-weight: 400;
    color: var(--white);
    margin-bottom: 8px;
}

.step-card p {
    font-size: 0.85rem;
    font-weight: 300;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.7;
}

/* Career Page */
.career-values-list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin-top: 32px;
}

.career-value-item {
    display: flex;
    gap: 16px;
    align-items: flex-start;
    padding: 24px;
    background: var(--primary);
}

.career-value-item i {
    color: var(--white);
    font-size: 1.1rem;
    margin-top: 2px;
}

.career-value-item p {
    font-size: 0.95rem;
    font-weight: 300;
    color: var(--white);
    line-height: 1.7;
}

/* Contact Page */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
}

.contact-info-card {
    display: flex;
    gap: 20px;
    padding: 24px 0;
    border-bottom: 1px solid var(--light-gray);
}

.contact-info-card:last-child {
    border-bottom: none;
}

.contact-info-icon {
    width: 48px;
    height: 48px;
    min-width: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--primary-subtle);
    color: var(--primary);
    font-size: 1.1rem;
}

.contact-info-card h4 {
    font-family: var(--font-heading);
    font-size: 1rem;
    font-weight: 400;
    color: var(--dark);
    margin-bottom: 4px;
}

.contact-info-card p,
.contact-info-card a {
    font-size: 0.95rem;
    font-weight: 300;
    color: var(--gray);
    line-height: 1.7;
}

.contact-info-card a:hover {
    color: var(--primary);
}

.contact-form {
    background: #B2B2B2;
    padding: 48px;
}

.contact-form h3 {
    font-family: var(--font-heading);
    font-size: 1.4rem;
    font-weight: 400;
    color: var(--white);
    margin-bottom: 24px;
}

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

.form-group label {
    display: block;
    font-size: 0.8rem;
    font-weight: 400;
    color: var(--white);
    margin-bottom: 6px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 16px;
    border: 1px solid var(--light-gray);
    font-family: var(--font-body);
    font-size: 0.95rem;
    font-weight: 300;
    color: var(--dark);
    background: var(--white);
    transition: border-color var(--transition-fast);
}

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

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

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.contact-map {
    margin-top: 48px;
    overflow: hidden;
    height: 400px;
}

.contact-map iframe {
    width: 100%;
    height: 100%;
    border: none;
}

/* Responsive for inner pages */
@media (max-width: 1024px) {
    .story-grid {
        grid-template-columns: 1fr;
        gap: 48px;
    }

    .story-image {
        height: 360px;
    }

    .service-detail {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .service-detail:nth-child(even) {
        direction: ltr;
    }

    .service-detail-visual {
        height: 300px;
    }

    .portfolio-detail-grid {
        grid-template-columns: 1fr;
    }

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

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

@media (max-width: 768px) {
    .page-hero .section-title {
        font-size: 2.2rem;
    }

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

    .timeline::before {
        left: 20px;
    }

    .timeline-item:nth-child(odd),
    .timeline-item:nth-child(even) {
        padding-left: 56px;
        padding-right: 0;
        text-align: left;
        flex-direction: row;
    }

    .timeline-dot {
        left: 20px;
    }

    .partnership-model {
        padding: 40px 24px;
    }

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

    .career-values-list {
        grid-template-columns: 1fr;
    }

    .contact-form {
        padding: 32px 24px;
    }

    .form-row {
        grid-template-columns: 1fr;
    }
}

/* === Founder Section === */
.founder-section {
    display: grid;
    grid-template-columns: 300px 1fr;
    gap: 60px;
    align-items: start;
    margin-top: 48px;
}

.founder-image {
    position: relative;
}

.founder-placeholder {
    width: 300px;
    height: 360px;
    background: var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
}

.founder-placeholder i {
    font-size: 80px;
    color: rgba(255, 255, 255, 0.4);
}

.founder-name {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    font-weight: 400;
    color: var(--dark);
    margin-bottom: 4px;
}

.founder-title {
    display: inline-block;
    font-family: var(--font-body);
    font-size: 0.85rem;
    font-weight: 300;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--primary);
    margin-bottom: 24px;
}

.founder-bio {
    font-size: 1rem;
    font-weight: 300;
    color: var(--gray);
    line-height: 1.8;
    margin-bottom: 16px;
}

.founder-bio strong {
    color: var(--dark);
    font-weight: 400;
}

.founder-linkedin {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-top: 16px;
    padding: 12px 28px;
    background: #0077B5;
    color: var(--white);
    font-family: var(--font-body);
    font-size: 0.85rem;
    font-weight: 400;
    letter-spacing: 1px;
    text-transform: uppercase;
    text-decoration: none;
    transition: all var(--transition);
}

.founder-linkedin:hover {
    background: #005E93;
}

.founder-linkedin i {
    font-size: 1rem;
}

@media (max-width: 768px) {
    .founder-section {
        grid-template-columns: 1fr;
        gap: 32px;
        text-align: center;
    }

    .founder-placeholder {
        width: 200px;
        height: 240px;
        margin: 0 auto;
    }

    .founder-placeholder i {
        font-size: 56px;
    }

    .founder-name {
        font-size: 1.5rem;
    }
}
