:root {
    --gold: #D4AF37;
    --black: #000;
    --dark-gray: #111;
    --gray: #222;
    --white: #fff;
}

body {
    margin: 0;
    font-family: Arial, Helvetica, sans-serif;
    background: var(--dark-gray);
    color: var(--white);
}

nav {
    background: var(--black);
    color: var(--gold);
    padding: 20px 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

nav a {
    color: var(--gold);
    text-decoration: none;
    margin-left: 25px;
    font-weight: 500;
}

.page-container {
    max-width: 1200px;
    margin: auto;
    padding: 40px 20px;
}

h1,
h2 {
    color: var(--gold);
}

/* ------------------ HERO ------------------ */
.uiux-hero {
    padding: 80px 40px;
    background: var(--black);
    color: #fff;
}

.uiux-hero-content {
    max-width: 900px;
    margin-bottom: 50px;
}

.uiux-hero-content h1 {
    font-size: 3rem;
    margin-bottom: 15px;
}

.uiux-hero-content p {
    font-size: 1.1rem;
    max-width: 700px;
    line-height: 1.7;
    color: #ddd;
}

.uiux-hero-actions {
    margin-top: 25px;
    display: flex;
    gap: 15px;
}

.btn-primary,
.btn-secondary {
    padding: 14px 26px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    transition: 0.3s;
}

.btn-primary {
    background: var(--gold);
    color: var(--black);
}

.btn-secondary {
    border: 1px solid var(--gold);
    color: var(--gold);
}

/* VIDEO GRID */
.uiux-hero-videos {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.video-wrapper {
    position: relative;
    overflow: hidden;
    border-radius: 14px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, .5);
    cursor: pointer;
}

.video-wrapper video {
    width: 100%;
    height: 280px;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.video-wrapper:hover video {
    transform: scale(1.05);
}

.video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom right, rgba(212, 175, 55, 0.3), rgba(0, 0, 0, 0.5));
    opacity: 0;
    transition: opacity 0.3s ease;
}

.video-wrapper:hover .video-overlay {
    opacity: 1;
}

/* ------------------ Tools & Platforms ------------------ */
.tools-section {
    margin: 80px 0;
    text-align: center;
}

.tools-section h2 {
    margin-bottom: 20px;
}

.tools-logos {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px;
    margin-top: 20px;
}

.tools-logos img {
    width: 80px;
    height: auto;
    filter: grayscale(0.7);
    transition: all 0.3s ease;
}

.tools-logos img:hover {
    filter: none;
    transform: scale(1.1);
}

/* ------------------ Tiers / Services ------------------ */
.services-section {
    background: var(--gray);
    padding: 60px 20px;
    border-radius: 12px;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 30px;
}

.service-card {
    background: var(--black);
    padding: 25px;
    border-radius: 12px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, .5);
    text-align: center;
    transition: transform 0.3s;
}

.service-card:hover {
    transform: translateY(-5px);
}

.service-card h3 {
    margin-bottom: 15px;
    color: var(--gold);
}

.service-card p {
    font-size: 0.95rem;
    color: #ddd;
}

/* RESPONSIVE */
@media (max-width: 900px) {
    .uiux-hero-videos {
        grid-template-columns: 1fr;
    }

    .uiux-hero-videos video {
        height: 240px;
    }

    .uiux-hero-content h1 {
        font-size: 2.3rem;
    }
}

/* ===============================
   UI/UX PRICING SECTION
================================ */
.pricing-section {
    padding: 80px 20px;
    background: #0b0b0b;
    color: #fff;
    text-align: center;
}

.pricing-section h2 {
    font-size: 2.5rem;
    margin-bottom: 10px;
}

.pricing-note {
    color: #bbb;
    max-width: 700px;
    margin: 0 auto 50px;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.pricing-card {
    background: linear-gradient(180deg, #111, #0c0c0c);
    border: 1px solid rgba(212, 175, 55, 0.15);
    border-radius: 16px;
    padding: 35px 25px;
    transition: transform .3s ease, box-shadow .3s ease;
}

.pricing-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 15px 40px rgba(212, 175, 55, 0.15);
}

.pricing-card h3 {
    color: #D4AF37;
    margin-bottom: 10px;
    font-size: 1.4rem;
}

.price {
    font-size: 1.8rem;
    font-weight: bold;
    margin-bottom: 20px;
}

.price span {
    font-size: 0.9rem;
    color: #aaa;
}

.pricing-card ul {
    list-style: none;
    padding: 0;
}

.pricing-card ul li {
    margin: 10px 0;
    color: #ccc;
}

.pricing-card.featured {
    border: 2px solid #D4AF37;
}

/* ===============================
   PRODUCT → TIER MAPPING
================================ */
.mapping-section {
    padding: 70px 20px;
    background: #000;
    color: #fff;
    text-align: center;
}

.mapping-section h2 {
    font-size: 2.2rem;
    margin-bottom: 40px;
}

.mapping-grid {
    max-width: 800px;
    margin: auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
}

.mapping-grid div {
    background: #111;
    padding: 18px 20px;
    border-radius: 12px;
    border: 1px solid rgba(212, 175, 55, 0.12);
    color: #ddd;
}

.mapping-grid strong {
    color: #D4AF37;
}

/* ===============================
   UI/UX REQUEST FORM
================================ */
.uiux-form-section {
    padding: 90px 20px;
    background: linear-gradient(180deg, #0b0b0b, #000);
    color: #fff;
}

.uiux-form-section h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 10px;
}

.uiux-form-section p {
    text-align: center;
    color: #aaa;
    margin-bottom: 50px;
}

#uiuxForm {
    max-width: 800px;
    margin: auto;
    background: #0f0f0f;
    padding: 50px;
    border-radius: 18px;
    border: 1px solid rgba(212, 175, 55, 0.2);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.6);
}

.form-group {
    display: flex;
    flex-direction: column;
    margin-bottom: 25px;
}

.form-group label {
    margin-bottom: 8px;
    font-weight: 600;
    color: #ddd;
}

.form-group input,
.form-group select {
    padding: 14px 16px;
    border-radius: 10px;
    border: 1px solid #333;
    background: #000;
    color: #fff;
    font-size: 15px;
}

.form-group input:read-only {
    background: #111;
    color: #D4AF37;
    border: 1px solid rgba(212, 175, 55, 0.3);
}

#uiuxForm button {
    width: 100%;
    padding: 18px;
    border-radius: 12px;
    border: none;
    background: linear-gradient(135deg, #D4AF37, #b8962e);
    color: #000;
    font-size: 1.1rem;
    font-weight: bold;
    cursor: pointer;
    transition: transform .3s ease, box-shadow .3s ease;
}

#uiuxForm button:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(212, 175, 55, 0.4);
}