/* ================================================================= */
/* 01. ROOT VARIABLES & GLOBAL STYLES                                */
/* ================================================================= */
:root {
    --bg: #050505;
    --bg2: #111;
    --card: #1a1a1a;
    --text: #f1f1f1;
    --muted: #a5a5a5;
    --line: #333;
    --silver: #d6d6d6;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: Manrope, sans-serif;
    background: var(--bg);
    color: var(--text);
    overflow-x: hidden; /* Iwas horizontal scroll sa mobile */
}

.container {
    max-width: 1380px;
    margin: auto;
    padding: 0 28px;
}


/* ================================================================= */
/* 02. HEADER & NAVIGATION SECTION                                   */
/* ================================================================= */
.header {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(27, 27, 27, 0.65);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(255, 255, 255, .05);
    z-index: 99;
    transition: background 0.3s ease, padding 0.3s ease;
}

.nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 18px 0;
}

.brand {
    display: flex;
    gap: 12px;
    align-items: center;
    font: 700 1.5rem 'Space Grotesk', sans-serif;
}

.brand img {
    width: 80px;
    transition: .4s;
}

.brand img:hover {
    transform: rotate(-5deg) scale(1.08);
}

.menu {
    display: flex;
    gap: 24px;
    align-items: center;
}

.menu a {
    color: #ddd;
    text-decoration: none;
    position: relative;
}

.menu a:not(.cta)::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -6px;
    width: 0;
    height: 2px;
    background: var(--silver);
    transition: .3s;
}

.menu a:hover::after {
    width: 100%;
}

.btn, .cta {
    background: linear-gradient(135deg, #fff, #bdbdbd);
    color: #000 !important;
    padding: 14px 24px;
    border-radius: 999px;
    text-decoration: none;
    font-weight: 800;
    border: none;
    cursor: pointer;
    transition: .35s;
}

.btn:hover, .cta:hover {
    transform: translateY(-4px);
    box-shadow: 0 14px 35px rgba(255, 255, 255, .18);
}

.ghost {
    color: #fff;
    text-decoration: none;
    padding: 12px 18px;
    border: 1px solid var(--line);
    border-radius: 999px;
    transition: .3s;
}

.ghost:hover {
    background: #fff;
    color: #000;
}

#toggle {
    display: none;
    background: none;
    border: none;
    color: #fff;
    font-size: 2rem;
    cursor: pointer;
    width: 50px;
    height: 50px;
    position: relative;
    z-index: 100;
    transition: transform 0.4s ease;
}

#toggle.active {
    transform: rotate(90deg);
}

.header.menu-open {
    background: rgba(25, 25, 25, 0.95);
}


/* ================================================================= */
/* 03. HERO SECTION                                                  */
/* ================================================================= */
.hero {
    padding: 130px 0 80px;
    min-height: 100vh;
    display: flex;
    align-items: center;
}

.hero-with-texture {
    position: relative;
    background: linear-gradient(135deg, #0a0a0a 0%, #27292e 50%, #111216 100%);
    overflow: hidden;
}

.hero-with-texture::before {
    content: "";
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg, transparent 45%, rgba(255, 255, 255, 0.04) 50%, transparent 55%);
    pointer-events: none;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1.1fr .9fr;
    gap: 40px;
    align-items: center;
}

.eyebrow {
    letter-spacing: 4px;
    color: var(--muted);
    font-weight: 700;
}

h1 {
    font: 700 clamp(2.5rem, 6vw, 6rem) / .95 'Space Grotesk', sans-serif;
    margin: 18px 0;
    color: #fff;
}

.hero p {
    color: #d0d0d0;
    font-size: 1.05rem;
}

.actions {
    display: flex;
    gap: 18px;
    margin-top: 32px;
}

.hero-stack-single {
    position: relative;
    height: 520px;
    width: 100%;
    background: linear-gradient(145deg, rgba(25, 25, 25, 0.6), rgba(10, 10, 10, 0.8));
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 22px;
    display: flex;
    justify-content: center;
    align-items: center;
    box-shadow: 0 25px 55px rgba(0, 0, 0, .45);
    transition: .4s;
    overflow: hidden;
}

.hero-stack-single img {
    width: 100%;
    max-width: 570px;
    height: auto;
    object-fit: contain;
    display: block;
    transition: .5s;
    filter: drop-shadow(0 10px 20px rgba(0, 0, 0, 0.5));
}

.hero-stack-single:hover {
    transform: translateY(-8px);
    border-color: var(--silver);
}


/* ================================================================= */
/* 04. ABOUT US SECTION                                              */
/* ================================================================= */
.about-box {
    background: linear-gradient(135deg, #0a0a0a 0%, #27292e 50%, #111216 100%);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 28px;
    padding: 60px;
    position: relative;
    overflow: hidden;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.5);
}

.about-box::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: linear-gradient(to bottom, #fff, #888);
}

.about-content h2 {
    text-align: left;
    font-size: clamp(2rem, 4vw, 2.8rem);
    margin-bottom: 20px;
    color: #fff;
}

.about-content .sub-text {
    font-size: 1.15rem;
    color: #d0d0d0;
    margin-bottom: 30px;
    line-height: 1.6;
}

.about-highlights {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
    margin-bottom: 35px;
}

.highlight-item {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.06);
    padding: 14px 20px;
    border-radius: 12px;
    font-weight: 600;
    color: #f1f1f1;
    transition: .3s ease;
}

.highlight-item:hover {
    border-color: var(--silver);
    background: rgba(255, 255, 255, 0.06);
    transform: translateY(-3px);
}

.cta-desc {
    font-size: 1.05rem;
    color: var(--muted);
    margin-bottom: 25px;
    font-style: italic;
}


/* ================================================================= */
/* 05. SERVICES SECTION                                              */
/* ================================================================= */
.section {
    padding: 90px 0;
}

h2 {
    text-align: center;
    font: 700 2.7rem 'Space Grotesk', sans-serif;
    margin-bottom: 40px;
}

.grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.card {
    background: var(--card);
    padding: 28px;
    border: 1px solid var(--line);
    border-radius: 20px;
    transition: .35s;
    position: relative;
    overflow: hidden;
}

.card::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(120deg, transparent, rgba(255, 255, 255, .08), transparent);
    transform: translateX(-100%);
    transition: .6s;
}

.card:hover::before {
    transform: translateX(100%);
}

.card:hover {
    transform: translateY(-8px);
    border-color: var(--silver);
}


/* ================================================================= */
/* 06. PROJECTS / GALLERY SECTION                                    */
/* ================================================================= */
.dark {
    background: var(--bg2);
}

.gallery {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.g {
    overflow: hidden;
    border-radius: 20px;
    background: var(--card);
    border: 1px solid var(--line);
}

.g img {
    width: 100%;
    display: block;
    transition: .5s;
}

.g:hover img {
    transform: scale(1.08);
}

.g span {
    display: block;
    padding: 16px;
}

.g.hidden-project {
    display: none;
}

.projects-action {
    display: flex;
    justify-content: center;
    margin-top: 40px;
}

.glass-btn {
    background: var(--card);
    color: var(--text);
    padding: 16px 36px;
    border: 1px solid var(--line);
    border-radius: 999px;
    font-weight: 700;
    font-size: 1rem;
    cursor: pointer;
    transition: .35s;
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(10px);
}

.glass-btn::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(120deg, transparent, rgba(255, 255, 255, .12), transparent);
    transform: translateX(-100%);
    transition: .6s;
}

.glass-btn:hover::before {
    transform: translateX(100%);
}

.glass-btn:hover {
    transform: translateY(-4px);
    border-color: var(--silver);
    background: rgba(255, 255, 255, 0.05);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.4);
}


/* ================================================================= */
/* 07. MEET OUR TEAM SECTION                                         */
/* ================================================================= */
.team-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-top: 40px;
}

.team-card {
    background: var(--card);
    border: 1px solid var(--line);
    border-radius: 20px;
    overflow: hidden;
    transition: .35s;
    position: relative;
    display: flex;
    flex-direction: column;
}

.team-card:hover {
    transform: translateY(-8px);
    border-color: var(--silver);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.5);
}

.team-img-box {
    width: 100%;
    height: 420px;
    background: rgba(255, 255, 255, 0.03);
    overflow: hidden;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.team-img-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.team-info {
    padding: 24px;
    text-align: center;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
    justify-content: space-between;
}

.team-info h3 {
    font-size: 1.2rem;
    color: #fff;
    margin-bottom: 6px;
}

.team-role {
    color: var(--muted);
    font-size: 0.9rem;
    margin-bottom: 20px;
    font-weight: 500;
}

.team-socials {
    display: flex;
    justify-content: center;
    gap: 12px;
}

.team-socials a {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.08);
    color: #fff;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: .3s ease;
    text-decoration: none;
}

.team-socials a:hover {
    background: #fff;
    color: #000;
    border-color: #fff;
    transform: translateY(-3px);
}

.team-socials span {
    font-size: 18px;
}


/* ================================================================= */
/* 08. BOOKING & CONTACT FORM SECTION                                */
/* ================================================================= */
.booking {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    background: linear-gradient(145deg, #101010, #181818);
    border: 1px solid var(--line);
    border-radius: 28px;
    padding: 40px;
}

.form {
    display: grid;
    gap: 14px;
}

.form input, 
.form select, 
.form textarea {
    background: #0f0f0f;
    border: 1px solid var(--line);
    color: #fff;
    padding: 16px;
    border-radius: 12px;
    transition: .3s;
    width: 100%;
}

.form input:focus, 
.form select:focus, 
.form textarea:focus {
    outline: none;
    border-color: var(--silver);
    box-shadow: 0 0 0 3px rgba(214, 214, 214, .12);
}

.booking-info-wrapper {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    gap: 30px;
}

.contact-details-list {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.contact-info-item {
    display: flex;
    align-items: center;
    gap: 16px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.06);
    padding: 14px 18px;
    border-radius: 14px;
    transition: .3s ease;
    position: relative;
    text-decoration: none;
    color: inherit;
}

.contact-info-item:hover {
    border-color: var(--silver);
    background: rgba(255, 255, 255, 0.06);
    transform: translateY(-2px);
}

.contact-info-item span.material-symbols-outlined {
    background: rgba(255, 255, 255, 0.08);
    color: #fff;
    padding: 10px;
    border-radius: 10px;
    font-size: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.contact-info-item div {
    display: flex;
    flex-direction: column;
}

.contact-info-item b {
    color: #fff;
    font-size: 0.95rem;
    font-weight: 600;
}

.contact-info-item small {
    color: var(--muted);
    font-size: 0.9rem;
}


/* ================================================================= */
/* 09. FOOTER SECTION                                                */
/* ================================================================= */
.footer {
    text-align: center;
    padding: 70px 20px;
    background: #030303;
}

.footer img {
    width: 120px;
    margin-bottom: 18px;
}


/* ================================================================= */
/* 10. RESPONSIVE MEDIA QUERIES (OPTIMIZED FOR ALL SCREENS)         */
/* ================================================================= */

/* Tablet / Smaller Laptops (Max 1024px) */
@media (max-width: 1024px) {
    .grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .hero-grid {
        grid-template-columns: 1fr;
        gap: 50px;
        text-align: center;
    }
    .hero .actions {
        justify-content: center;
    }
    .eyebrow {
        text-align: center;
    }
    .about-box {
        padding: 40px;
    }
}

/* Medium Tablets & Large Phones (Max 992px) */
@media (max-width: 992px) {
    .booking {
        grid-template-columns: 1fr;
        padding: 30px 20px;
    }
    .team-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* Mobile Phones (Max 768px) */
@media (max-width: 768px) {
    #toggle {
        display: block;
    }
    .menu {
        display: none;
        position: absolute;
        top: 72px;
        left: 0;
        right: 0;
        background: rgba(17, 17, 17, 0.98);
        backdrop-filter: blur(12px);
        flex-direction: column;
        padding: 30px 20px;
        border-bottom: 1px solid var(--line);
        box-shadow: 0 15px 30px rgba(0,0,0,0.5);
    }
    .menu.show {
        display: flex;
    }
    .hero-grid, .booking, .grid, .gallery, .team-grid {
        grid-template-columns: 1fr;
    }
    .hero-stack-single {
        height: 350px;
    }
    .about-box {
        padding: 30px 20px;
    }
    .about-highlights {
        grid-template-columns: 1fr;
    }
    .about-content h2 {
        text-align: center;
    }
    .about-box::before {
        display: none; /* Tanggalin ang accent line sa gilid kapag mobile para malinis tingnan */
    }
    h2 {
        font-size: 2.2rem;
    }
}

/* Small Mobile Phones (Max 480px) */
@media (max-width: 480px) {
    .container {
        padding: 0 16px;
    }
    .hero {
        padding: 100px 0 50px;
        min-height: auto;
    }
    .actions {
        flex-direction: column;
        width: 100%;
    }
    .actions a, .actions button {
        width: 100%;
        text-align: center;
    }
    .hero-stack-single {
        height: 280px;
    }
    .team-img-box {
        height: 320px;
    }
}
.site-footer {
    background-color: var(--dark, #111);
    color: var(--muted, #aaa);
    text-align: center;
    padding: 30px 20px;
    margin-top: 60px;
    border-top: 1px solid var(--dark-line, #222);
    font-size: 0.9rem;
    letter-spacing: 0.05em;
}