/* Simple button utilities */

.btn-pill {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 10px 20px;
    border-radius: 100px;
    font-weight: 600;
    font-size: 0.85rem;
    transition: all 0.2s;
}

.btn-black {
    background: var(--color-text);
    color: var(--color-bg);
}

.btn-black:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

.btn-outline {
    border: 1px solid #E5E5E5;
    color: var(--color-text);
}

.btn-outline:hover {
    background: #F5F5F5;
}

/* Custom button fix for font issue */
.btn-custom {
    display: inline-block;
    padding: 0.8rem 1.5rem;
    border-radius: 9999px;
    font-weight: 500;
    font-size: 0.9rem;
    text-align: center;
    transition: all 0.3s ease;
    font-family: 'Inter', sans-serif !important;
    text-decoration: none;
}

.btn-custom-primary {
    background: #000;
    color: white;
    border: 1px solid #000;
}

.btn-custom-primary:hover {
    opacity: 0.8;
}

.btn-custom-secondary {
    background: #fff;
    color: #000;
    border: 1px solid #ddd;
}

.btn-custom-secondary:hover {
    background: #f5f5f5;
}

/* --- PREMIUM PACK -- */

/* 1. NOISE TEXTURE REMOVED */

/* 2. INFINITE MARQUEE */
.marquee-container {
    overflow: hidden;
    background: var(--color-text);
    color: white;
    padding: 0.6rem 0;
    white-space: nowrap;
    position: relative;
    /* Optional rotation for avant-garde look */
    /* transform: rotate(-2deg); margin: 2rem 0; */
}

.marquee-content {
    display: inline-block;
    animation: marquee 20s linear infinite;
}

.marquee-item {
    display: inline-block;
    padding: 0 2rem;
    font-size: 0.9rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

@keyframes marquee {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

/* --- FORM STYLES (Custom "Bootstrap-like" Clean Look) --- */

.form-group {
    margin-bottom: 12px;
}

.form-label {
    display: block;
    margin-bottom: 6px;
    font-weight: 500;
    font-size: 0.8rem;
    color: var(--color-text);
}

.form-input,
.form-textarea {
    width: 100%;
    padding: 8px 14px;
    border: 1px solid #E5E5E5;
    background: #FAFAFA;
    border-radius: 8px;
    /* Soft modern radius */
    font-family: var(--font-body);
    font-size: 0.85rem;
    color: var(--color-text);
    transition: all 0.2s ease;
    outline: none;
}

.form-input::placeholder,
.form-textarea::placeholder {
    color: #A3A3A3;
}

.form-input:focus,
.form-textarea:focus {
    border-color: var(--color-text);
    background: #FFFFFF;
    box-shadow: 0 0 0 4px rgba(0, 0, 0, 0.05);
}

.form-textarea {
    min-height: 120px;
    resize: vertical;
}

/* --- DETAILED FORM LAYOUT --- */

.form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.form-grid .span-2 {
    grid-column: span 2;
}

.phone-group {
    display: flex;
    gap: 12px;
}

@media (max-width: 768px) {
    .form-grid {
        grid-template-columns: 1fr;
    }

    .form-grid .span-2 {
        grid-column: span 1;
    }
}

/* --- PROJECT CARDS (Responsive) --- */
.project-card {
    display: flex;
    flex-direction: row;
    background: #f0f0f0;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
    max-width: 1000px;
    margin: 0 auto;
    min-height: 400px;
}

.project-card-content {
    flex: 1;
    padding: 3rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 1.5rem;
}

.project-card-media {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem;
}

.project-card-media video {
    width: 100%;
    max-width: 240px;
    border-radius: 12px;
    display: block;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

@media (max-width: 768px) {
    .project-card {
        flex-direction: column !important;
        /* Force column on mobile */
        min-height: auto;
    }

    .project-card-content {
        padding: 2rem;
        /* Reduce padding */
        order: 2;
        /* Content below media usually */
    }

    .project-card-media {
        padding: 2rem 2rem 0 2rem;
        order: 1;
        /* Media first */
        padding-bottom: 0;
    }

    .project-card-media {
        order: -1;
        /* Always first on mobile */
    }
}