:root {
    --bg: #000000;
    --fg: #ffffff;
}

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

body {
    background-color: var(--bg);
    color: var(--fg);
    font-family: 'Inter', sans-serif;
    overflow-x: hidden;
}

/* Smooth Scrolling */
.lenis.lenis-smooth {
    height: auto;
}

.lenis.lenis-smooth [data-lenis-prevent] {
    overscroll-behavior: contain;
}

.lenis.lenis-stopped {
    overflow: hidden;
}

/* Typography */
.text-huge {
    font-size: clamp(2.5rem, 8vw, 10rem);
    line-height: 0.85;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: -0.05em;
}

.section-padding {
    padding: 10rem 2rem;
}

.row-padding {
    padding: 3rem 2rem;
}

/* Components */
.btn-outline {
    border: 1px solid white;
    padding: 1rem 2.5rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    transition: all 0.3s ease;
    border-radius: 9999px; /* Pill shape */
}

.btn-outline:hover {
    background: white;
    color: black;
}

.service-row {
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.5s cubic-bezier(0.19, 1, 0.22, 1);
    background: rgba(255, 255, 255, 0.05);
    cursor: pointer;
    margin-bottom: 1.5rem;
    overflow: hidden;
    color: white;
    min-height: 250px; /* Force uniform height */
    display: flex;
    align-items: center;
    justify-content: center;
}

.service-row:hover {
    background: white;
    color: black;
    border-color: white;
}

/* Media Containers */
.video-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    filter: grayscale(100%) brightness(0.4);
}

video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.project-img {
    width: 100%;
    aspect-ratio: 16/9;
    background: #111;
    filter: grayscale(100%);
    transition: filter 0.5s ease, transform 0.5s ease;
    object-fit: cover;
}

.project-img:hover {
    filter: grayscale(0%);
    transform: scale(1.02);
}

/* Forms */
input, select, textarea {
    background: transparent;
    border-bottom: 1px solid #333;
    padding: 1rem 0;
    width: 100%;
    outline: none;
    transition: border-color 0.3s;
    color: white;
}

select {
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' fill='white' viewBox='0 0 16 16'%3E%3Cpath d='M7.247 11.14 2.451 5.658C1.885 5.013 2.345 4 3.204 4h9.592a1 1 0 0 1 .753 1.659l-4.796 5.48a1 1 0 0 1-1.506 0z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 1rem center;
}

select option {
    background: #111;
    color: white;
}

input:focus, select:focus, textarea:focus {
    border-color: #fff;
}

/* Utils */
.glass {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.whatsapp-float {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    background: #fff;
    color: #000;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 100;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease;
}

.whatsapp-float:hover {
    transform: scale(1.1);
}

/* Rounding Rule */
.rounded-premium {
    border-radius: 2rem;
}

.rounded-section {
    border-radius: 30px;
}
