:root {
    --bg: #070707;
    --accent: #bdfc04; /* Neon green */
    --text: #ffffff;
    --text-dim: #999999;
    --line: rgba(255, 255, 255, 0.1);
}

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

body {
    background-color: var(--bg);
    color: var(--text);
    font-family: 'Inter', sans-serif;
    min-height: 100vh;
    overflow-x: hidden;
}

.bg-image {
    position: absolute;
    top: 0;
    right: 0;
    width: 65vw;
    height: 100vh;
    z-index: 0;
    background-image: url('../img/Samline_Garage_4K.png');
    background-size: cover;
    background-position: center right;
    background-repeat: no-repeat;
    /* Blend the left side into the dark background */
    -webkit-mask-image: linear-gradient(to right, transparent 0%, black 25%, black 100%);
    mask-image: linear-gradient(to right, transparent 0%, black 25%, black 100%);
    opacity: 0.9;
}

.site-wrapper {
    position: relative;
    z-index: 10;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
    max-width: 1600px;
    margin: 0 auto;
    padding: 2.5rem 5rem;
}

/* HEADER */
.header {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.logo-bars {
    display: flex;
    gap: 3px;
    transform: skew(-20deg);
}

.logo-bars span {
    display: block;
    width: 4px;
    background-color: var(--accent);
}

.logo-bars span:nth-child(1) { height: 24px; }
.logo-bars span:nth-child(2) { height: 20px; margin-top: 4px; }
.logo-bars span:nth-child(3) { height: 16px; margin-top: 8px; }

.logo-text {
    display: flex;
    flex-direction: column;
}

.logo-main {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.3rem;
    font-weight: 800;
    line-height: 1;
    letter-spacing: 0.05em;
}

.logo-sub {
    font-size: 0.65rem;
    letter-spacing: 0.4em;
    color: var(--text-dim);
    margin-top: 0.2rem;
}

.location {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.75rem;
    color: var(--text-dim);
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

/* MAIN CONTENT */
.content {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    position: relative;
    max-width: 50%;
    margin-top: 4rem;
}

.badge-line {
    display: flex;
    align-items: center;
    gap: 1rem;
    font-size: 0.75rem;
    letter-spacing: 0.1em;
    color: var(--text-dim);
    margin-bottom: 2rem;
}

.badge-line .line {
    width: 30px;
    height: 1px;
    background-color: var(--accent);
}

.title {
    font-family: 'Montserrat', sans-serif;
    font-size: clamp(4rem, 7vw, 7.5rem);
    font-weight: 900;
    line-height: 0.95;
    letter-spacing: -0.02em;
    margin-bottom: 2rem;
    text-transform: uppercase;
}

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

.desc {
    font-size: 1.05rem;
    color: var(--text-dim);
    line-height: 1.6;
    max-width: 450px;
    margin-bottom: 2.5rem;
}

.badge-pill {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    background-color: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 0.6rem 1.25rem;
    border-radius: 50px;
    font-size: 0.8rem;
    color: var(--text-dim);
    margin-bottom: 3rem;
    width: fit-content;
}

.badge-pill .dot {
    width: 6px;
    height: 6px;
    background-color: var(--accent);
    border-radius: 50%;
    box-shadow: 0 0 10px rgba(189, 252, 4, 0.6);
}

/* ACTION BUTTONS (NEW) */
.action-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.8rem 1.5rem;
    border-radius: 8px;
    font-size: 0.9rem;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    font-family: 'Montserrat', sans-serif;
}

.btn-whatsapp {
    background-color: var(--accent);
    color: #000000;
}

.btn-whatsapp:hover {
    background-color: #a8e503;
    transform: translateY(-2px);
}

.btn-phone {
    background-color: rgba(255, 255, 255, 0.05);
    color: var(--text);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.btn-phone:hover {
    background-color: rgba(255, 255, 255, 0.1);
    transform: translateY(-2px);
}

/* IMAGE CAPTION */
.image-caption {
    position: absolute;
    right: 5rem;
    bottom: 8rem;
    text-align: right;
    font-size: 0.7rem;
    letter-spacing: 0.1em;
    color: var(--text-dim);
    line-height: 1.6;
    z-index: 10;
}

.image-caption .highlight {
    color: var(--accent);
}

/* FOOTER */
.footer {
    margin-top: auto;
    padding-top: 3rem;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.footer-divider {
    display: flex;
    align-items: center;
    gap: 1rem;
    font-size: 0.75rem;
    letter-spacing: 0.1em;
    color: var(--text-dim);
}

.footer-divider .num {
    color: var(--accent);
    font-weight: 600;
}

.footer-divider .line {
    flex: 1;
    height: 1px;
    background-color: var(--line);
}

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

.f-col {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.f-left {
    flex: 1;
}

.f-left .f-icon {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 44px;
    height: 44px;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: rgba(255,255,255,0.02);
}

.f-text {
    display: flex;
    flex-direction: column;
    gap: 0.3rem;
}

.f-text strong {
    font-size: 0.75rem;
    letter-spacing: 0.05em;
    color: var(--text);
}

.f-text span {
    font-size: 0.75rem;
    color: var(--text-dim);
    line-height: 1.4;
}

.f-center {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.3rem;
}

.f-center strong {
    font-size: 0.75rem;
    letter-spacing: 0.05em;
    color: var(--text);
}

.f-phone {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--text);
    text-decoration: none;
    letter-spacing: 0.02em;
    transition: color 0.3s;
}

.f-phone:hover {
    color: var(--accent);
}

.f-right {
    flex: 1;
    display: flex;
    justify-content: flex-end;
}

.f-right a {
    font-size: 0.7rem;
    color: var(--text-dim);
    text-decoration: none;
    text-align: right;
    max-width: 250px;
    line-height: 1.5;
    transition: color 0.3s;
}

.f-right a:hover {
    color: var(--text);
}

@media (max-width: 1200px) {
    .bg-image { 
        width: 100vw; 
        opacity: 0.15; 
        background-size: contain; 
        background-position: center; 
        -webkit-mask-image: none;
        mask-image: none;
    }
    .content { max-width: 100%; margin-top: 2rem; }
    .image-caption { display: none; }
}

@media (max-width: 900px) {
    .site-wrapper { padding: 2rem; }
    .title { font-size: clamp(3rem, 10vw, 4.5rem); }
    .footer-content { flex-direction: column; align-items: flex-start; gap: 2rem; }
    .f-center { align-items: flex-start; }
    .f-right { justify-content: flex-start; }
    .f-right a { text-align: left; }
    .action-buttons { flex-direction: column; width: 100%; }
    .btn { justify-content: center; width: 100%; }
}
