/* =========================================
   1. CORE PAGE STYLES
   ========================================= */
body {
    background-color: #0b0b0b;
    color: #ffffff;
    font-family: 'Poppins', sans-serif;
    margin: 0;
    padding: 0;
    line-height: 1.8;
    overflow-x: hidden;
    text-align: center;
}

body.no-scroll { overflow-y: hidden; }

.yellow-text { color: #ffcc00 !important; }
.cyan-text { color: #4dd2ff !important; }

/* =========================================
   2. SLIM HEADER & NAV
   ========================================= */
header {
    background: #000000;
    padding: 15px 5%;
    border-bottom: 2px solid #4dd2ff;
    position: sticky;
    top: 0;
    z-index: 1000;
}

.header-container {
    display: flex;
    justify-content: center;
    align-items: center;
    max-width: 1600px;
    margin: 0 auto;
    gap: 40px;
}

.logo-group {
    display: flex;
    align-items: center;
    gap: 25px;
    flex: 1;
}

.main-logo-nav {
    max-height: 120px;
    width: auto;
    filter: none; 
}

.brand-name {
    color: #ffcc00;
    font-family: "cc-highjinkies-open", sans-serif;
    font-weight: 400;
    font-style: normal;
    font-size: 3rem;
    text-transform: uppercase;
    margin: 0;
    letter-spacing: 3px;
    line-height: 1;
    white-space: nowrap;
    text-shadow: 
        0 0 5px rgba(77, 210, 255, 0.9), 
        0 0 15px rgba(77, 210, 255, 0.7), 
        0 0 30px rgba(77, 210, 255, 0.4);
    -webkit-text-stroke: 1px rgba(77, 210, 255, 0.3);
}

nav ul {
    list-style: none;
    display: flex;
    margin: 0;
    padding: 0;
}

nav ul li { margin-left: 35px; }

nav ul li a {
    font-family: 'Inter', sans-serif;
    font-weight: 900;
    color: #4dd2ff;
    text-decoration: none;
    text-transform: uppercase;
    font-size: 0.95rem;
    letter-spacing: 1px;
    transition: 0.3s ease;
}

nav ul li a:hover { color: #ffcc00; }

/* =========================================
   3. WELCOME OVERLAY
   ========================================= */
#welcome-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.98);
    z-index: 9999;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    transition: transform 0.8s cubic-bezier(0.7, 0, 0.3, 1);
}

#welcome-overlay.exit { transform: translateX(-100%); }
#welcome-overlay.hidden { display: none; }

#welcome-overlay video {
    height: 70vh;
    width: auto;
    max-width: 90%;
    border-radius: 12px;
    margin-bottom: 30px;
    box-shadow: 0 0 40px rgba(77, 210, 255, 0.3);
    object-fit: contain;
}

/* =========================================
   4. CONTENT & REVEALS
   ========================================= */
.hero, section {
    padding: 80px 10% !important;
    max-width: 1200px;
    margin: 0 auto;
}

.reveal {
    opacity: 0;
    transform: translateY(50px);
    transition: opacity 1.2s ease-out, transform 1.2s ease-out;
}

.reveal.visible { opacity: 1; transform: translateY(0); }

/* =========================================
   5. SERVICE GLOWS & CARDS
   ========================================= */
.bg-glow-section {
    position: relative;
    width: 100%;
    min-height: 500px;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
}

.glow-cyan-bg {
    background: radial-gradient(circle at 80% 20%, rgba(77, 210, 255, 0.2), transparent 60%) !important;
}

.glow-yellow-bg {
    background: radial-gradient(circle at 20% 80%, rgba(255, 204, 0, 0.15), transparent 60%) !important;
}

.service-card {
    background: rgba(20, 20, 20, 0.8);
    border: 1px solid #333;
    backdrop-filter: blur(15px);
    padding: 60px 40px;
    border-radius: 20px;
    max-width: 850px;
    transition: 0.4s;
    z-index: 2;
}

.service-card:hover {
    border-color: #4dd2ff;
    box-shadow: 0 0 30px rgba(77, 210, 255, 0.2);
    transform: translateY(-5px);
}

/* =========================================
   6. THE PROCESS SECTION
   ========================================= */
.process-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px;
    margin-top: 50px;
}

.process-step {
    flex: 1;
    min-width: 280px;
    max-width: 350px;
    background: #111;
    padding: 40px;
    border-radius: 12px;
    border-top: 4px solid #333;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.process-step:hover { 
    border-top-color: #ffcc00; 
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(255, 204, 0, 0.2);
}

.step-number {
    font-family: "termina", sans-serif;
    font-weight: 900;
    font-size: 3rem;
    color: #ffcc00;
    margin-bottom: 10px;
    opacity: 0.3;
}

.deliverables {
    list-style: none;
    padding: 0;
    margin-top: 15px;
    text-align: left;
    display: inline-block;
}

.deliverables li { font-size: 0.85rem; color: #4dd2ff; font-weight: bold; }
.deliverables li::before { content: "→ "; color: #ffcc00; }

/* =========================================
   7. BUTTONS & FOOTER
   ========================================= */
.enter-btn, .submit-btn, button {
    background-color: #ffcc00;
    color: #000;
    border: none;
    padding: 18px 50px;
    font-family: "termina", sans-serif;
    font-weight: 900;
    text-transform: uppercase;
    font-size: 1.1rem;
    cursor: pointer;
    border-radius: 4px;
    box-shadow: 0 0 25px rgba(255, 204, 0, 0.6);
    transition: 0.3s;
}

.enter-btn:hover, button:hover {
    background-color: #4dd2ff;
    box-shadow: 0 0 35px #4dd2ff;
    transform: scale(1.05);
}

footer {
    background-color: #000;
    padding: 60px 20px;
    border-top: 2px solid #4dd2ff;
}

.social-icon {
    display: inline-block;
    color: #4dd2ff;
    font-family: "termina", sans-serif;
    font-weight: 700;
    text-transform: uppercase;
    text-decoration: none;
    padding: 10px 20px;
    border: 2px solid #4dd2ff;
    margin: 10px;
    border-radius: 4px;
    transition: 0.3s;
}

.social-icon:hover {
    background-color: #ffcc00;
    color: #000;
    border-color: #ffcc00;
    box-shadow: 0 0 25px rgba(255, 204, 0, 0.6);
}

.footer-contact a { color: #ffcc00; text-decoration: none; font-weight: bold; }

/* =========================================
   8. RESPONSIVE
   ========================================= */
@media (max-width : 1019px ){
    .header-container { flex-direction: column; gap: 20px; }
    .main-logo-nav { max-height: 80px; }
    .brand-name { font-size: 1.8rem; }
    nav ul { flex-direction: column; gap: 10px; }
    nav ul li { margin-left: 0; }
    .hero, section { padding: 40px 5% !important; }
    .process-step { max-width: 100%; }
}
/* --- EXPAND FORM WIDTH --- */
.service-card {
    max-width: 900px !important; /* Increased from 500-600px to 900px */
    width: 90%;                 /* Ensures it stays responsive on smaller screens */
    margin: 0 auto;             /* Keeps it perfectly centered */
    padding: 50px;              /* Extra breathing room inside the card */
}

/* Optional: Make the button match the new width if you want it massive */
.enter-btn {
    width: 100%; 
    max-width: 400px;           /* Keeps the button from getting TOO wide */
    margin: 0 auto;
    display: block;
}