:root {
    --bg-color: #000000;
    --text-color: #ffffff;
    --accent-gray: #333333;
    --border-color: #222222;
    --hover-color: #1a1a1a;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Inter', sans-serif;
    -webkit-font-smoothing: antialiased;
}

body {
    background-color: var(--bg-color);
    color: var(--text-color);
    line-height: 1.6;
    overflow-x: hidden;
    cursor: none;
    /* Custom cursor */
}

/* Custom Cursor */
.cursor-follower {
    position: fixed;
    width: 20px;
    height: 20px;
    background: rgba(255, 255, 255, 0.2);
    border: 1px solid white;
    border-radius: 50%;
    pointer-events: none;
    transform: translate(-50%, -50%);
    transition: transform 0.1s ease, width 0.3s ease, height 0.3s ease;
    z-index: 9999;
    mix-blend-mode: difference;
}

h1,
h2,
h3,
h4 {
    font-weight: 600;
    letter-spacing: -0.02em;
}

a {
    text-decoration: none;
    color: inherit;
    cursor: none;
    /* Let custom cursor handle hovering */
}

/* Header */
header {
    padding: 2rem 5%;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 100;
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(10px);
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
}

.logo {
    font-size: 1.5rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.btn-contact {
    border: 1px solid var(--text-color);
    padding: 1rem 2.5rem;
    font-size: 1.2rem;
    transition: all 0.3s ease;
}

.btn-contact:hover {
    background: var(--text-color);
    color: var(--bg-color);
}

/* Main Layout */
main {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 5%;
}

section {
    min-height: 80vh;
    /* Make sections substantial */
    display: flex;
    flex-direction: column;
    justify-content: center;
    border-bottom: 1px solid var(--border-color);
}

section:last-child {
    border: none;
}

/* Hero */
.hero {
    min-height: 100vh;
    padding-top: 100px;
}

h1 {
    font-size: clamp(3rem, 10vw, 6rem);
    line-height: 1.1;
    margin-bottom: 1rem;
}

.gradient-text {
    /* Optional sleek gradient or just pure white for minimalism. Keeping pure white for now as requested 'black and white', but maybe subtle grey? */
    color: #888;
}

.hero p {
    font-size: clamp(1.1rem, 2vw, 1.5rem);
    max-width: 600px;
    color: #ccc;
    margin-bottom: 3rem;
}

.badges {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.badge {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    background: var(--hover-color);
    border-radius: 4px;
    border: 1px solid var(--border-color);
    font-size: 0.85rem;
    color: #ccc;
}

/* About */
.about {
    align-items: flex-start;
}

.profile-card {
    border-left: 2px solid var(--text-color);
    padding-left: 2rem;
}

.profile-card h2 {
    font-size: 2.5rem;
    margin-bottom: 0.5rem;
}

.role {
    text-transform: uppercase;
    font-size: 0.9rem;
    letter-spacing: 0.05em;
    margin-bottom: 1.5rem;
    color: #888;
}

/* Services */
.services {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    align-content: center;
    /* Reset flex display from section rule for grid */
    display: flex;
    flex-wrap: wrap;
    flex-direction: row;
}

.service-item {
    flex: 1;
    min-width: 250px;
    padding: 2rem;
    border: 1px solid var(--border-color);
    transition: transform 0.3s ease, background 0.3s ease;
}

.service-item:hover {
    background: var(--hover-color);
    transform: translateY(-5px);
}

.service-item h3 {
    font-size: 1rem;
    color: #555;
    margin-bottom: 1rem;
}

.service-item h4 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.service-item p {
    color: #aaa;
    font-size: 0.95rem;
}

/* Contact */
footer {
    display: flex;
    flex-direction: column;
    justify-content: center;
    min-height: 60vh;
}

footer h2 {
    font-size: clamp(2rem, 5vw, 4rem);
    margin-bottom: 3rem;
}

.contact-methods {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin-bottom: 4rem;
}

.contact-link {
    font-size: clamp(1rem, 2vw, 1.5rem);
    padding-bottom: 0.5rem;
    border-bottom: 1px solid transparent;
    width: fit-content;
    transition: border-color 0.3s ease;
}

.contact-link:hover {
    border-bottom-color: var(--text-color);
}

/* Contact Form */
.contact-form-container {
    width: 100%;
    max-width: 500px;
    margin: 0 auto 4rem;
    text-align: center;
}

.discount-banner {
    background: #1a1a1a;
    border: 1px solid var(--border-color);
    padding: 1rem;
    border-radius: 8px;
    margin-bottom: 2rem;
    font-size: 1.1rem;
    color: #ddd;
}

.discount-banner .highlight {
    color: #fff;
    font-weight: 700;
    text-decoration: underline;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.form-group input {
    width: 100%;
    padding: 1rem;
    background: transparent;
    border: 1px solid var(--border-color);
    color: var(--text-color);
    font-size: 1rem;
    border-radius: 4px;
    transition: border-color 0.3s ease;
}

.form-group input:focus {
    outline: none;
    border-color: #fff;
    background: var(--hover-color);
}

.btn-submit {
    padding: 1rem;
    background: #fff;
    color: #000;
    font-weight: 700;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-size: 1.1rem;
    transition: transform 0.2s ease, background 0.2s ease;
}

.btn-submit:hover {
    background: #e0e0e0;
    transform: translateY(-2px);
}

.form-footer {
    font-size: 0.8rem;
    color: #666;
    margin-top: 0.5rem;
}

.copyright {
    color: #444;
    font-size: 0.8rem;
    margin-top: auto;
    padding-bottom: 2rem;
}

/* Animations */
.fade-in {
    opacity: 0;
    animation: fadeIn 1s forwards;
}

.fade-in-up {
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 0.8s forwards;
}

.delay-1 {
    animation-delay: 0.2s;
}

.delay-2 {
    animation-delay: 0.4s;
}

.delay-3 {
    animation-delay: 0.6s;
}

@keyframes fadeIn {
    to {
        opacity: 1;
    }
}

@keyframes fadeInUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fade-in-section {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 1s ease, transform 1s ease;
}

.fade-in-section.visible {
    opacity: 1;
    transform: translateY(0);
}

@media (max-width: 768px) {
    .services {
        flex-direction: column;
    }

    .cursor-follower {
        display: none;
        /* Native cursor better for touch */
    }

    body,
    a {
        cursor: auto;
    }
}