/* Fonts & Variables */
:root {
    --bg-dark: #050505;
    --text-primary: #ffffff;
    --text-muted: rgba(255, 255, 255, 0.6);
    /* Satine Platinum Gold */
    --accent: #C8AA6E;
    --font-display: 'Syne', sans-serif;
    --font-body: 'Manrope', sans-serif;
    --transition-slow: all 0.8s cubic-bezier(0.16, 1, 0.3, 1);
    --transition-fast: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    cursor: default;
}

/* Global Link Reset - NO UNDERLINES */
a {
    text-decoration: none !important;
    border: none !important;
    color: inherit;
    cursor: pointer;
}

body {
    background-color: var(--bg-dark);
    background-image:
        radial-gradient(circle at 15% 50%, rgba(200, 170, 110, 0.05), transparent 40%),
        radial-gradient(circle at 85% 30%, rgba(255, 255, 255, 0.03), transparent 40%);
    color: var(--text-primary);
    font-family: var(--font-body);
    overflow-x: hidden;
    line-height: 1.7;
}

button {
    cursor: pointer;
}

ul {
    list-style: none;
}

.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 5%;
}

::selection {
    background: var(--accent);
    color: #000;
}

/* --- TYPOGRAPHY --- */
h1,
h2,
h3,
h4 {
    font-family: var(--font-display);
    font-weight: 500;
    text-transform: uppercase;
    color: #fff;
}

.section-header {
    margin-bottom: 80px;
    text-align: left;
}

.section-header .tag {
    display: inline-block;
    font-size: 0.8rem;
    color: var(--accent);
    letter-spacing: 3px;
    margin-bottom: 20px;
    border: 1px solid rgba(200, 170, 110, 0.2);
    padding: 8px 20px;
    border-radius: 50px;
}

.section-header h2 {
    font-size: 3.5rem;
    line-height: 1.1;
    letter-spacing: -1px;
}

/* --- NAVBAR (Glass) --- */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    padding: 30px 0;
    z-index: 1000;
    transition: 0.4s ease;
}

.navbar.scrolled {
    padding: 20px 0;
    background: rgba(5, 5, 5, 0.8);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.brand {
    font-family: var(--font-display);
    font-size: 1.6rem;
    color: #fff;
    font-weight: 700;
    letter-spacing: -1px;
}

.nav-links {
    display: flex;
    gap: 40px;
    align-items: center;
}

.nav-links a {
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--text-muted);
    transition: 0.3s;
}

.nav-links a:hover,
.nav-links a.active {
    color: #fff;
    letter-spacing: 2px;
    /* Subtle spacing instead of underline */
}

/* Minimal "Get Quote" Button */
.btn-quote {
    background: transparent;
    color: #fff;
    padding: 12px 30px;
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 100px;
    font-family: var(--font-body);
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: 0.3s;
}

.btn-quote:hover {
    border-color: var(--accent);
    background: rgba(200, 170, 110, 0.1);
    color: var(--accent);
}

.menu-btn {
    display: none;
    color: #fff;
    font-size: 1.5rem;
    cursor: pointer;
    z-index: 1001;
}

/* Mobile Menu */
.mobile-menu-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: #000;
    z-index: 999;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    opacity: 0;
    pointer-events: none;
    transition: 0.5s ease;
}

.mobile-menu-overlay.active {
    opacity: 1;
    pointer-events: auto;
}

.mobile-links a {
    font-family: var(--font-display);
    font-size: 2.5rem;
    display: block;
    margin: 15px 0;
    color: #fff;
    opacity: 0.6;
    transition: 0.3s;
}

.mobile-links a:hover {
    opacity: 1;
    color: var(--accent);
}

/* --- HERO SECTION --- */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    padding-top: 80px;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.8)), url('../assets/images/hero_bg.png') no-repeat center center/cover;
    z-index: -1;
}

.hero-founder {
    display: block;
    color: var(--accent);
    font-size: 0.9rem;
    letter-spacing: 4px;
    text-transform: uppercase;
    margin-bottom: 20px;
    opacity: 0;
    animation: fadeIn 1.5s ease forwards 0.5s;
}

.hero-title {
    font-size: 6vw;
    line-height: 0.9;
    letter-spacing: -2px;
    margin-bottom: 40px;
}

.hero-title .line {
    display: block;
    overflow: hidden;
}

.hero-title .line span {
    display: block;
    transform: translateY(100%);
    animation: slideUp 1.2s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

.hero-title .line:nth-child(2) span {
    color: transparent;
    -webkit-text-stroke: 1px #fff;
    animation-delay: 0.15s;
}

.hero-title .line:nth-child(3) span {
    animation-delay: 0.3s;
}

@keyframes slideUp {
    from {
        transform: translateY(110%);
    }

    to {
        transform: translateY(0);
    }
}

@keyframes fadeIn {
    to {
        opacity: 1;
    }
}


/* --- MARQUEE (Watermark) --- */
.marquee-section {
    padding: 80px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    overflow: hidden;
}

.marquee-content {
    display: flex;
    gap: 80px;
    white-space: nowrap;
    animation: marquee 50s linear infinite;
}

.marquee-content span {
    font-family: var(--font-display);
    font-size: 6rem;
    font-weight: 800;
    color: rgba(255, 255, 255, 0.03);
    /* Filigran */
    -webkit-text-stroke: 0;
}

@keyframes marquee {
    from {
        transform: translateX(0);
    }

    to {
        transform: translateX(-50%);
    }
}


/* --- BENTO GRID SERVICES (New) --- */
.services-section {
    padding: 120px 0;
}

.bento-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-auto-rows: 280px;
    gap: 20px;
}

.bento-card {
    background: rgba(20, 20, 20, 0.6);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    padding: 30px;
    position: relative;
    overflow: hidden;
    transition: all 0.4s ease;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
}

.bento-card:hover {
    transform: translateY(-5px);
    border-color: rgba(255, 255, 255, 0.15);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
}

/* Grid Spans */
.span-2 {
    grid-column: span 2;
}

.row-2 {
    grid-row: span 2;
}

/* Content inside Bento */
.bento-content {
    z-index: 2;
}

.bento-icon {
    font-size: 2rem;
    color: var(--accent);
    margin-bottom: 20px;
    display: inline-block;
}

.bento-card h3 {
    font-size: 1.4rem;
    margin-bottom: 10px;
    font-weight: 600;
}

.bento-card p {
    font-size: 0.95rem;
    color: var(--text-muted);
    line-height: 1.5;
    opacity: 0.8;
}

/* Background Images for Bento Cards */
.bento-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    opacity: 0.15;
    transition: 0.5s;
    z-index: 1;
}

.bento-card:hover .bento-bg {
    opacity: 0.3;
    transform: scale(1.05);
}

/* Specific Card Tweaks */
.card-dark {
    background: #111;
}

.card-accent {
    background: linear-gradient(135deg, rgba(200, 170, 110, 0.1), rgba(0, 0, 0, 0));
    border-color: rgba(200, 170, 110, 0.2);
}

.card-accent i {
    color: #fff;
}


/* --- PROJECTS --- */
.projects-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
    margin-top: 60px;
}

.project-card {
    position: relative;
    cursor: pointer;
}

.project-card img {
    width: 100%;
    height: 450px;
    object-fit: cover;
    border-radius: 4px;
    filter: grayscale(1);
    transition: 0.5s;
}

.project-card:hover img {
    filter: grayscale(0);
}

.project-info {
    margin-top: 15px;
    display: flex;
    justify-content: space-between;
    font-family: var(--font-display);
    font-size: 1.2rem;
}


/* --- FOOTER --- */
footer {
    padding: 80px 0 40px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    margin-top: 100px;
}

.footer-row {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 40px;
}

.footer-logo {
    font-size: 2rem;
    font-family: var(--font-display);
    font-weight: 700;
    color: #fff;
}

.footer-links a {
    display: block;
    margin-bottom: 10px;
    color: var(--text-muted);
    transition: 0.3s;
}

.footer-links a:hover {
    color: #fff;
}


/* RESPONSIVE */
@media (max-width: 900px) {
    .bento-grid {
        grid-template-columns: 1fr;
        grid-auto-rows: auto;
    }

    .span-2,
    .row-2 {
        grid-column: span 1;
        grid-row: span 1;
    }

    .hero-title {
        font-size: 12vw;
    }

    .nav-links {
        display: none;
    }

    .menu-btn {
        display: block;
    }

    .projects-grid {
        grid-template-columns: 1fr;
    }


    .bento-card {
        min-height: 250px;
    }
}


/* --- PAGE HEADERS (Missing) --- */
.page-header {
    padding: 150px 0 60px;
    text-align: center;
    background: linear-gradient(to bottom, rgba(5, 5, 5, 0.8), var(--bg-dark));
}

.page-title h1 {
    font-size: 3rem;
    margin-bottom: 10px;
    letter-spacing: -1px;
}

.page-title p {
    color: var(--accent);
    text-transform: uppercase;
    letter-spacing: 4px;
    font-size: 0.9rem;
}


/* --- ABOUT PAGE GRID --- */
.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.about-img {
    height: 500px;
    position: relative;
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 10px;
}

.about-text p {
    color: var(--text-muted);
    margin-bottom: 20px;
    font-size: 1.05rem;
}

.about-founder-sign {
    margin-top: 40px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 20px;
}

.founder-name {
    display: block;
    font-family: var(--font-display);
    font-size: 1.2rem;
    color: #fff;
}

.founder-title {
    font-size: 0.9rem;
    color: var(--accent);
}

@media (max-width: 900px) {
    .about-grid {
        grid-template-columns: 1fr;
    }

    .about-img {
        height: 300px;
    }
}


/* --- SERVICES GRID (Icons) --- */
.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.service-card {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.05);
    padding: 40px;
    transition: 0.3s;
}

.service-card:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: var(--accent);
    transform: translateY(-5px);
}

.service-card i {
    font-size: 2.5rem;
    color: var(--accent);
    margin-bottom: 25px;
}

.service-card h3 {
    font-size: 1.3rem;
    margin-bottom: 15px;
}

.service-card p {
    color: var(--text-muted);
    font-size: 0.95rem;
}

@media (max-width: 900px) {
    .services-grid {
        grid-template-columns: 1fr;
    }
}


/* --- CONTACT SECTION --- */
.contact-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
}

.contact-info h3,
.contact-form-wrapper h3 {
    margin-bottom: 30px;
    font-size: 1.8rem;
}

.info-item {
    display: flex;
    gap: 20px;
    margin-bottom: 30px;
}

.info-item i {
    font-size: 1.5rem;
    color: var(--accent);
    margin-top: 5px;
}

.info-item h4 {
    font-size: 1rem;
    margin-bottom: 5px;
}

.info-item p {
    color: var(--text-muted);
}

/* Forms */
.contact-form .form-group {
    margin-bottom: 20px;
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 15px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: #fff;
    font-family: var(--font-body);
    font-size: 1rem;
    outline: none;
    transition: 0.3s;
}

.contact-form input:focus,
.contact-form textarea:focus {
    border-color: var(--accent);
    background: rgba(255, 255, 255, 0.05);
}

.btn-primary {
    background: var(--accent);
    color: #000;
    border: none;
    padding: 15px 40px;
    font-family: var(--font-display);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: 0.3s;
    width: auto;
}

.btn-primary:hover {
    background: #fff;
    transform: translateY(-2px);
}

@media (max-width: 900px) {
    .contact-container {
        grid-template-columns: 1fr;
        gap: 50px;
    }
}


/* --- MODAL --- */
.modal {
    display: none;
    /* Hidden by default */
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(5px);
    z-index: 2000;
    justify-content: center;
    align-items: center;
    animation: fadeIn 0.3s ease;
}

.modal-content {
    background: #111;
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 40px;
    width: 90%;
    max-width: 500px;
    position: relative;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
}

.close-modal {
    position: absolute;
    top: 20px;
    right: 20px;
    font-size: 2rem;
    color: #fff;
    cursor: pointer;
    transition: 0.3s;
}

.close-modal:hover {
    color: var(--accent);
}

/* Utility to open modal via JS */
.modal.active {
    display: flex;
}