/* ===== ZANE DEVELOPMENT — SHARED DESIGN SYSTEM ===== */

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800&display=swap');

*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    /* PREMIUM BEIGE DESIGN SYSTEM */
    --black: #0c0b0a;
    --white: #ffffff;
    --off-white: #fdfbf7;
    --beige-bg: #f8f3ed;
    --beige-mid: #ece6de;
    --accent-grey: #e8e8e8;
    --accent-gold: #b89352;
    
    --surface: #ffffff;
    --grey-900: #1a1816;
    --grey-700: #4a4540;
    --grey-500: #8a8279;
    --grey-300: #cdc3b8;

    /* Warm Premium Gradients */
    --silver-gradient: linear-gradient(135deg, #ffffff 0%, #e0e0e0 100%);
    --beige-gradient: linear-gradient(135deg, #fdfbf7 0%, #ece6de 100%);

    /* Typography */
    --font-heading: 'Inter', sans-serif;
    --font-body: 'Inter', sans-serif;

    /* Extended Colors */
    --dark: #0c0b0a;
    --gold: #b89352;
    --accent: var(--accent-gold);
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    background: var(--beige-bg);
    color: var(--black);
    overflow-x: hidden;
}

a {
    color: inherit;
}

/* ===== NAVBAR ===== */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 100;
    padding: 24px 48px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.navbar.scrolled {
    background: rgba(0, 0, 0, 0.75);
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    padding: 16px 48px;
}

.navbar.light-nav {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.navbar.light-nav .nav-logo img {
    filter: invert(1) brightness(0.1);
}

.navbar.light-nav .nav-logo {
    color: var(--black);
}

.navbar.light-nav .nav-links a {
    color: rgba(0, 0, 0, 0.7);
}

.navbar.light-nav .nav-links a:hover,
.navbar.light-nav .nav-links a.active {
    color: var(--black);
}

.navbar.light-nav .nav-links a::after {
    background: var(--black);
}

.navbar.light-nav .nav-enquire {
    color: var(--black);
    border-color: rgba(0, 0, 0, 0.2);
}

.navbar.light-nav .nav-enquire:hover {
    background: var(--black);
    color: var(--white);
}

.navbar.dark-nav {
    background: rgba(0, 0, 0, 0.75);
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    color: var(--white);
    font-size: 22px;
    font-weight: 800;
    letter-spacing: 2px;
}

.nav-logo svg {
    width: 28px;
    height: 28px;
    fill: var(--white);
}

.nav-right {
    display: flex;
    align-items: center;
    gap: 24px;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 32px;
    list-style: none;
}

.nav-links a {
    color: rgba(255, 255, 255, 0.7);
    font-size: 13px;
    font-weight: 500;
    letter-spacing: 1px;
    text-transform: uppercase;
    text-decoration: none;
    transition: color 0.3s;
    position: relative;
    padding: 8px 0;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 1px;
    background: var(--white);
    transition: width 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

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

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

.nav-menu-btn {
    color: var(--white);
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 3px;
    text-transform: uppercase;
    cursor: pointer;
    background: none;
    border: none;
    padding: 8px 0;
    display: none;
}

.navbar.light-nav .nav-menu-btn {
    color: var(--black);
}

.nav-enquire {
    color: var(--white);
    font-size: 13px;
    font-weight: 500;
    letter-spacing: 1px;
    text-transform: uppercase;
    text-decoration: none;
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 100px;
    padding: 10px 24px;
    transition: all 0.3s ease;
}

.nav-enquire:hover {
    background: var(--white);
    color: var(--black);
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(255, 255, 255, 0.1);
}

/* ===== FULLSCREEN MENU ===== */
.menu-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.85);
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
    z-index: 200;
    display: flex;
    flex-direction: column;
    padding: 24px 48px;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.4s ease, backdrop-filter 0.4s ease;
}

.menu-overlay.active {
    opacity: 1;
    pointer-events: all;
}

.menu-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 60px;
}

.menu-close {
    color: var(--white);
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 3px;
    text-transform: uppercase;
    cursor: pointer;
    background: none;
    border: none;
}

.menu-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    flex: 1;
    align-content: center;
    max-width: 900px;
}

.menu-col h4 {
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--grey-500);
    margin-bottom: 24px;
}

.menu-col a {
    display: block;
    color: var(--white);
    text-decoration: none;
    font-size: 32px;
    font-weight: 300;
    margin-bottom: 16px;
    transition: color 0.3s;
}

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

/* ===== PAGE HERO (Reusable) ===== */
.page-hero {
    position: relative;
    width: 100%;
    height: 60vh;
    min-height: 400px;
    overflow: hidden;
    display: flex;
    align-items: flex-end;
}

.page-hero-full {
    height: 100vh;
    min-height: 700px;
}

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

.page-hero .hero-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.page-hero .hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.3) 0%, rgba(0, 0, 0, 0.5) 60%, rgba(0, 0, 0, 0.7) 100%);
}

.page-hero .hero-content {
    position: relative;
    z-index: 2;
    width: 100%;
    padding: 0 48px 80px;
}

.page-hero .hero-title {
    font-size: clamp(36px, 5vw, 72px);
    font-family: var(--font-heading);
    font-weight: 700;
    color: var(--white);
    line-height: 1.1;
    letter-spacing: -1px;
    margin-bottom: 16px;
}

.page-hero .hero-subtitle {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.7);
    font-weight: 300;
    max-width: 600px;
    line-height: 1.6;
}

.hero-badges {
    display: flex;
    gap: 12px;
    margin-top: 20px;
    flex-wrap: wrap;
}

.hero-badge {
    background: rgba(255, 255, 255, 0.15);
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 100px;
    padding: 6px 16px;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: var(--accent);
}

/* ===== HERO (Homepage-specific full) ===== */
.hero {
    position: relative;
    width: 100%;
    height: 100vh;
    min-height: 700px;
    overflow: hidden;
    display: flex;
    align-items: flex-end;
}

.hero-bg {
    position: absolute;
    inset: 0;
}

.hero-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    animation: kenBurns 18s ease-in-out infinite alternate;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.3) 0%, rgba(0, 0, 0, 0.5) 60%, rgba(0, 0, 0, 0.7) 100%);
}

.hero-content {
    position: relative;
    z-index: 2;
    width: 100%;
    padding: 0 48px 80px;
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
}

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

.hero-title {
    font-size: clamp(48px, 7vw, 96px);
    font-family: var(--font-heading);
    font-weight: 700;
    color: var(--white);
    line-height: 1.05;
    letter-spacing: -1px;
}

.hero-tagline {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.75);
    font-weight: 300;
    margin-top: 20px;
    max-width: 560px;
    line-height: 1.6;
}

.hero-ctas {
    display: flex;
    gap: 16px;
    margin-top: 32px;
}

@keyframes shimmer {
    0% { background-position: -200% 0; }
    100% { background-position: 200% 0; }
}

.btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 16px 36px;
    background: linear-gradient(90deg, #ffffff 0%, #e0e0e0 25%, #ffffff 50%, #e0e0e0 75%, #ffffff 100%);
    background-size: 200% auto;
    color: #000000;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    text-decoration: none;
    border-radius: 100px;
    border: none;
    cursor: pointer;
    transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
    box-shadow: 0 4px 20px rgba(255, 255, 255, 0.15);
    animation: shimmer 6s linear infinite;
}

.btn-primary:hover {
    transform: translateY(-4px) scale(1.02);
    box-shadow: 0 16px 48px rgba(255, 255, 255, 0.25);
    background-position: 100% 0;
}

.btn-outline {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 32px;
    background: transparent;
    color: var(--white);
    font-size: 13px;
    font-weight: 500;
    letter-spacing: 1px;
    text-transform: uppercase;
    text-decoration: none;
    border-radius: 100px;
    border: 1px solid rgba(255, 255, 255, 0.3);
    cursor: pointer;
    transition: all 0.3s ease;
}

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

.btn-dark {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 32px;
    background: var(--dark);
    color: var(--white);
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    text-decoration: none;
    border-radius: 100px;
    border: 1px solid var(--grey-900);
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-dark:hover {
    background: var(--black);
    border-color: var(--grey-500);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
}

.hero-stat {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--white);
    font-size: 14px;
    font-weight: 400;
    letter-spacing: 0.5px;
}

.hero-stat-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--accent);
    animation: pulse 2s infinite, shimmerDot 3s ease-in-out infinite;
}

.hero-stats-row {
    display: flex;
    gap: 32px;
    flex-wrap: wrap;
}

/* ===== SECTION UTILITIES ===== */
.section {
    padding: 120px 48px;
}

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

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

.section-light .section-title,
.section-light h1,
.section-light h2,
.section-light h3 {
    color: var(--black);
    background: none;
    -webkit-background-clip: initial;
    background-clip: initial;
    animation: none;
}

.section-light .section-label span {
    color: var(--black);
}

.section-light p {
    color: var(--grey-700);
}

.section-grey {
    background: var(--off-white);
}

.section-label {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 40px;
}

.section-label .dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--accent);
}

.section-label span {
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 3px;
    text-transform: uppercase;
}

.section-title {
    font-size: clamp(28px, 4vw, 52px);
    font-family: var(--font-heading);
    font-weight: 400;
    line-height: 1.35;
    letter-spacing: -0.5px;
    max-width: 800px;
}

.section-subtitle {
    font-size: 16px;
    color: var(--grey-500);
    line-height: 1.7;
    max-width: 620px;
    margin-top: 20px;
}

/* ===== LEARN MORE / ARROW BUTTONS ===== */
.learn-more-btn {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    margin-top: 40px;
    text-decoration: none;
    color: var(--white);
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.learn-more-btn:hover {
    gap: 18px;
    color: var(--accent);
}

.learn-more-btn .circle {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    background: transparent;
}

.learn-more-btn:hover .circle {
    background: var(--white);
    border-color: var(--white);
    transform: rotate(-45deg);
}

.learn-more-btn:hover .circle svg {
    stroke: var(--black);
}

.learn-more-btn .circle svg {
    width: 14px;
    height: 14px;
    stroke: var(--white);
    fill: none;
    transition: stroke 0.4s;
}

.learn-more-btn.light {
    color: var(--white);
}

.learn-more-btn.light .circle {
    border-color: rgba(255, 255, 255, 0.3);
}

.learn-more-btn.light .circle svg {
    stroke: var(--white);
}

.learn-more-btn.light:hover .circle {
    background: var(--black);
    border-color: var(--white);
}

.learn-more-btn.light:hover .circle svg {
    stroke: var(--black);
}

/* ===== PROJECT CARDS ===== */
.project-card {
    flex: 0 0 560px;
    height: 560px;
    border-radius: 16px;
    overflow: hidden;
    background: var(--dark);
    position: relative;
    cursor: pointer;
    scroll-snap-align: start;
    transition: transform 0.4s;
    transform-style: preserve-3d;
    perspective: 1000px;
}

.project-card:hover {
    transform: scale(1.02);
}

.project-card-content {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    padding: 32px;
    z-index: 2;
}

.project-card-name {
    font-size: 22px;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 6px;
}

.project-card-desc {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.65);
    font-weight: 300;
    line-height: 1.5;
}

.project-card-img {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 65%;
}

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

.project-card-action {
    position: absolute;
    bottom: 28px;
    left: 32px;
    z-index: 2;
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--white);
    font-size: 12px;
    font-weight: 500;
    letter-spacing: 2px;
    text-transform: uppercase;
    text-decoration: none;
}

.project-card-action .arr {
    font-size: 16px;
    transition: transform 0.3s;
}

.project-card:hover .project-card-action .arr {
    transform: translateX(4px);
}

.project-card-hover-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(0deg, rgba(255, 255, 255, 0.18) 0%, transparent 100%);
    height: 50%;
    transform: translateY(100%);
    transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
    z-index: 3;
}

.project-card:hover .project-card-hover-overlay {
    transform: translateY(0);
}

/* ===== FOOTER ===== */
.footer {
    background: var(--black);
    border-top: 1px solid var(--grey-900);
    padding: 80px 48px 40px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 60px;
    margin-bottom: 80px;
}

.footer-brand .nav-logo {
    margin-bottom: 20px;
    color: var(--white);
}

.footer-brand p {
    font-size: 14px;
    color: var(--grey-500);
    line-height: 1.6;
    max-width: 320px;
}

.footer-col h5 {
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--grey-500);
    margin-bottom: 20px;
}

.footer-col a {
    display: block;
    color: var(--grey-300);
    text-decoration: none;
    font-size: 15px;
    font-weight: 400;
    margin-bottom: 12px;
    transition: color 0.3s;
}

.footer-col a:hover {
    color: var(--white);
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 32px;
    border-top: 1px solid var(--grey-900);
}

.footer-bottom p {
    font-size: 12px;
    color: var(--grey-700);
}

.footer-bottom a {
    color: var(--grey-500);
    font-size: 12px;
    text-decoration: none;
}

/* ===== FORM STYLES ===== */
.form-group {
    margin-bottom: 24px;
}

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

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 14px 20px;
    background: var(--grey-900);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 12px;
    color: var(--white);
    font-family: var(--font-body);
    font-size: 15px;
    transition: border-color 0.3s;
}

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

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

.form-group select option {
    background: var(--dark);
}

/* ===== GRID LAYOUTS ===== */
.grid-2 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
}

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

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

/* ===== STAT CARDS ===== */
.stat-card {
    text-align: center;
    padding: 40px 24px;
}

.stat-number {
    font-size: clamp(36px, 5vw, 56px);
    font-weight: 700;
    color: var(--accent);
    line-height: 1;
    margin-bottom: 8px;
}

.stat-label {
    font-size: 13px;
    font-weight: 500;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--grey-500);
}

/* ===== DETAIL CARDS ===== */
.detail-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 1px;
    background: var(--grey-900);
    border-radius: 16px;
    overflow: hidden;
}

.detail-item {
    background: var(--surface);
    padding: 32px;
}

.detail-item-label {
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--grey-500);
    margin-bottom: 8px;
}

.detail-item-value {
    font-size: 18px;
    font-weight: 600;
    color: var(--white);
}

/* ===== TIMELINE ===== */
.timeline {
    position: relative;
    padding-left: 40px;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 7px;
    top: 0;
    bottom: 0;
    width: 2px;
    background: var(--grey-900);
}

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

.timeline-item::before {
    content: '';
    position: absolute;
    left: -40px;
    top: 6px;
    width: 16px;
    height: 16px;
    border-radius: 50%;
    background: var(--accent);
    border: 3px solid var(--black);
}

.timeline-item h3 {
    font-size: 20px;
    font-weight: 600;
    color: var(--white);
    margin-bottom: 8px;
}

.timeline-item p {
    font-size: 15px;
    color: var(--grey-500);
    line-height: 1.7;
}

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

.gallery-item {
    aspect-ratio: 4/3;
    overflow: hidden;
    cursor: pointer;
}

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

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

.gallery-item.large {
    grid-column: span 2;
    grid-row: span 2;
}

/* ===== ANIMATIONS ===== */

/* Text Gradient Animation */
/* Text Gradient Animation */
@keyframes textShimmer {
    0% {
        background-position: 0% 50%;
    }

    50% {
        background-position: 100% 50%;
    }

    100% {
        background-position: 0% 50%;
    }
}

@keyframes textFloat {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-4px);
    }
}

h1,
h2,
.hero-title,
.section-title {
    background: linear-gradient(270deg, #ffffff, #888888, #ffffff, #aaaaaa);
    background-size: 300% 300%;
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    animation: textShimmer 8s ease-in-out infinite, textFloat 6s ease-in-out infinite;
    letter-spacing: -0.04em;
    display: inline-block;
}

.hero-overlay {
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.3) 0%, rgba(0, 0, 0, 0.9) 100%);
}

.hero-title {
    background: linear-gradient(270deg, #ffffff, #a3a3a3, #ffffff);
    background-size: 200% 200%;
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    animation: textShimmer 6s ease-in-out infinite;
}

/* Scroll reveal */
.reveal {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.9s cubic-bezier(0.16, 1, 0.3, 1), transform 0.9s cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}

.reveal-delay-1 {
    transition-delay: 0.1s;
}

.reveal-delay-2 {
    transition-delay: 0.2s;
}

.reveal-delay-3 {
    transition-delay: 0.3s;
}

.reveal-delay-4 {
    transition-delay: 0.4s;
}

/* Clip-path text reveal */
.clip-reveal {
    overflow: hidden;
}

.clip-reveal-inner {
    display: block;
    transform: translateY(110%);
    transition: transform 1s cubic-bezier(0.16, 1, 0.3, 1);
}

.clip-reveal.visible .clip-reveal-inner {
    transform: translateY(0);
}

/* Ken Burns */
@keyframes kenBurns {
    0% {
        transform: scale(1) translate(0, 0);
    }

    100% {
        transform: scale(1.08) translate(-1%, -1%);
    }
}

@keyframes pulse {

    0%,
    100% {
        opacity: 1;
        box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.4);
    }

    70% {
        box-shadow: 0 0 0 10px rgba(255, 255, 255, 0);
    }
}

@keyframes shimmerDot {

    0%,
    100% {
        box-shadow: 0 0 8px 2px rgba(255, 255, 255, 0.5);
    }

    50% {
        box-shadow: 0 0 20px 6px rgba(255, 255, 255, 0.8);
    }
}

/* Parallax */
.parallax-img {
    will-change: transform;
}

/* Progress bar */
.progress-bar {
    position: fixed;
    top: 0;
    left: 0;
    height: 2px;
    background: var(--accent);
    width: 0%;
    z-index: 9999;
    transition: width 0.05s linear;
}

/* Grain */
.grain {
    position: fixed;
    inset: 0;
    z-index: 9996;
    pointer-events: none;
    opacity: 0.03;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)'/%3E%3C/svg%3E");
    background-size: 200px;
    animation: grainMove 0.5s steps(2) infinite;
}

@keyframes grainMove {

    0%,
    100% {
        transform: translate(0, 0);
    }

    25% {
        transform: translate(-3px, 2px);
    }

    50% {
        transform: translate(2px, -3px);
    }

    75% {
        transform: translate(-1px, 3px);
    }
}

/* Shimmer */
.shimmer {
    background: linear-gradient(90deg, var(--accent) 0%, #fff 40%, var(--accent) 80%);
    background-size: 200% auto;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: shimmerMove 3s linear infinite;
}

@keyframes shimmerMove {
    to {
        background-position: 200% center;
    }
}

/* Ripple */
.ripple-container {
    position: relative;
    overflow: hidden;
}

.ripple {
    position: absolute;
    border-radius: 50%;
    transform: scale(0);
    background: rgba(255, 255, 255, 0.25);
    animation: rippleAnim 0.6s linear;
    pointer-events: none;
}

@keyframes rippleAnim {
    to {
        transform: scale(4);
        opacity: 0;
    }
}

/* Skew */
.skewable {
    transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

/* Scroll hint */
.scroll-hint {
    position: absolute;
    bottom: 24px;
    left: 48px;
    z-index: 2;
}

.scroll-hint svg {
    width: 14px;
    height: 14px;
    stroke: rgba(255, 255, 255, 0.5);
    animation: bobDown 2s ease-in-out infinite;
}

@keyframes bobDown {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(6px);
    }
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
    .nav-links {
        display: none;
    }

    .nav-menu-btn {
        display: block;
    }

    .nav-enquire {
        display: none;
    }

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

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

@media (max-width: 768px) {
    .navbar {
        padding: 16px 24px;
    }

    .navbar.scrolled {
        padding: 12px 24px;
    }

    .hero-content {
        padding: 0 24px 48px;
        flex-direction: column;
        align-items: flex-start;
        gap: 24px;
    }

    .page-hero .hero-content {
        padding: 0 24px 48px;
    }

    .section {
        padding: 80px 24px;
    }

    .section-label {
        padding: 0;
    }

    .project-card {
        flex: 0 0 300px;
        height: 440px;
    }

    .grid-2,
    .grid-3,
    .grid-4 {
        grid-template-columns: 1fr;
    }

    /* Footer responsive */
    .footer {
        padding: 48px 24px 24px;
    }

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

    .footer-brand {
        grid-column: 1 / -1;
    }

    .footer-bottom {
        flex-direction: column;
        align-items: flex-start;
        gap: 12px;
        padding-top: 24px;
    }

    /* Mobile menu overlay */
    .menu-overlay {
        padding: 24px;
    }

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

    .menu-col a {
        font-size: 28px;
        margin-bottom: 12px;
    }

    .menu-col h4 {
        margin-bottom: 16px;
    }

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

    .gallery-item.large {
        grid-column: span 1;
        grid-row: span 1;
    }

    .hero-ctas {
        flex-direction: column;
        gap: 12px;
    }

    .hero-ctas a {
        width: 100%;
        justify-content: center;
        text-align: center;
    }

    .hero-stats-row {
        flex-direction: column;
        gap: 16px;
    }

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

/* ===== CUSTOM CURSOR ===== */
body {
    cursor: none;
}

.cursor-dot {
    position: fixed;
    top: 0;
    left: 0;
    width: 6px;
    height: 6px;
    background: var(--accent);
    border-radius: 50%;
    pointer-events: none;
    z-index: 10000;
    opacity: 1;
    transition: opacity 0.3s ease, transform 0.2s cubic-bezier(0.16, 1, 0.3, 1);
}

.cursor-ring {
    position: fixed;
    top: 0;
    left: 0;
    width: 40px;
    height: 40px;
    border: 1px solid rgba(255, 255, 255, 0.4);
    border-radius: 50%;
    pointer-events: none;
    z-index: 9999;
    opacity: 1;
    transition: opacity 0.3s ease, width 0.3s ease, height 0.3s ease, background 0.3s ease, border-color 0.3s ease;
}

.cursor-ring.hovering {
    width: 60px;
    height: 60px;
    background: rgba(255, 255, 255, 0.1);
    border-color: transparent;
}

/* ===== PROGRESS BAR ===== */
.progress-bar {
    position: fixed;
    top: 0;
    left: 0;
    height: 3px;
    background: var(--accent);
    z-index: 1000;
    width: 0%;
    transition: width 0.1s;
}

/* ===== SCROLL REVEAL ===== */
.reveal {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.8s ease, transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}

.reveal-delay-1 {
    transition-delay: 0.15s;
}

.reveal-delay-2 {
    transition-delay: 0.3s;
}

.reveal-delay-3 {
    transition-delay: 0.45s;
}

.reveal-delay-4 {
    transition-delay: 0.6s;
}

.clip-reveal {
    clip-path: inset(100% 0 0 0);
    transition: clip-path 1.2s cubic-bezier(0.16, 1, 0.3, 1);
}

.clip-reveal.visible {
    clip-path: inset(0 0 0 0);
}

@media (max-width: 480px) {
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .footer-brand {
        grid-column: auto;
    }

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

    .hero-title {
        font-size: clamp(36px, 10vw, 56px);
    }

    .page-hero .hero-title {
        font-size: clamp(28px, 9vw, 48px);
    }

    .menu-col a {
        font-size: 24px;
    }

    .navbar {
        padding: 14px 20px;
    }
}