* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary: #0F172A;
    --secondary: #0369A1;
    --accent: #FF6B35;
    --light: #F8FAFC;
    --gray: #64748B;
    --white: #FFFFFF;
    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.08);
    --shadow-md: 0 10px 25px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 20px 60px rgba(0, 0, 0, 0.3);
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', sans-serif;
    background-color: var(--primary);
    color: #334155;
    line-height: 1.6;
    overflow-x: hidden;
}

/* ANIMATED BACKGROUND - PROFESSIONAL & PREMIUM */
.animated-background {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #0F172A 0%, #141f2e 50%, #0a1119 100%);
    z-index: -1;
    overflow: hidden;
}

/* Base dynamic gradient that shifts */
.animated-background::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 200%;
    height: 200%;
    background: 
        radial-gradient(circle at 20% 50%, rgba(3, 105, 161, 0.4) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(255, 107, 53, 0.3) 0%, transparent 50%),
        radial-gradient(circle at 40% 0%, rgba(3, 105, 161, 0.2) 0%, transparent 50%),
        radial-gradient(circle at 0% 100%, rgba(255, 107, 53, 0.15) 0%, transparent 50%);
    animation: shift 25s ease-in-out infinite;
    z-index: -1;
}

@keyframes shift {
    0%, 100% {
        transform: translate(0, 0);
    }
    25% {
        transform: translate(-50px, -50px);
    }
    50% {
        transform: translate(-100px, -100px);
    }
    75% {
        transform: translate(-50px, -50px);
    }
}

/* Top left floating orb */
.animated-background::after {
    content: '';
    position: absolute;
    top: -150px;
    left: -150px;
    width: 600px;
    height: 600px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(3, 105, 161, 0.25) 0%, transparent 70%);
    filter: blur(80px);
    animation: float-tl 15s ease-in-out infinite;
    z-index: -1;
}

@keyframes float-tl {
    0%, 100% {
        transform: translate(0, 0) scale(1);
    }
    50% {
        transform: translate(80px, 100px) scale(1.1);
    }
}

/* Add pseudo element for bottom right */
body::before {
    content: '';
    position: fixed;
    bottom: -200px;
    right: -200px;
    width: 700px;
    height: 700px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(255, 107, 53, 0.2) 0%, transparent 70%);
    filter: blur(80px);
    animation: float-br 18s ease-in-out infinite;
    z-index: -1;
    pointer-events: none;
}

@keyframes float-br {
    0%, 100% {
        transform: translate(0, 0) scale(1);
    }
    50% {
        transform: translate(-100px, -100px) scale(1.15);
    }
}

/* Middle accent glow */
body::after {
    content: '';
    position: fixed;
    top: 50%;
    left: 50%;
    width: 800px;
    height: 800px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(3, 105, 161, 0.08) 0%, transparent 70%);
    filter: blur(100px);
    transform: translate(-50%, -50%);
    animation: pulse-slow 20s ease-in-out infinite;
    z-index: -1;
    pointer-events: none;
}

@keyframes pulse-slow {
    0%, 100% {
        transform: translate(-50%, -50%) scale(1);
    }
    50% {
        transform: translate(-50%, -50%) scale(1.1);
    }
}

/* Grid pattern overlay */
.animated-background {
    background-image: 
        linear-gradient(0deg, transparent 24%, rgba(3, 105, 161, 0.02) 25%, rgba(3, 105, 161, 0.02) 26%, transparent 27%, transparent 74%, rgba(3, 105, 161, 0.02) 75%, rgba(3, 105, 161, 0.02) 76%, transparent 77%, transparent),
        linear-gradient(90deg, transparent 24%, rgba(3, 105, 161, 0.02) 25%, rgba(3, 105, 161, 0.02) 26%, transparent 27%, transparent 74%, rgba(3, 105, 161, 0.02) 75%, rgba(3, 105, 161, 0.02) 76%, transparent 77%, transparent),
        linear-gradient(135deg, #0F172A 0%, #141f2e 50%, #0a1119 100%);
    background-size: 80px 80px, 80px 80px, 100% 100%;
    background-attachment: fixed;
}

/* HEADER */
.header {
    background: linear-gradient(180deg, rgba(15, 23, 42, 0.98) 0%, rgba(15, 23, 42, 0.95) 100%);
    backdrop-filter: blur(20px);
    padding: 20px 0;
    position: sticky;
    top: 0;
    z-index: 100;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.container-header {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
}

.logo {
    font-size: 32px;
    font-weight: 800;
    color: var(--white);
    font-family: 'Poppins', sans-serif;
    letter-spacing: -1.5px;
    transition: all 0.3s ease;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
}

.logo:hover {
    transform: scale(1.02);
    filter: brightness(1.1);
}

.header-location {
    font-size: 11px;
    font-weight: 600;
    color: var(--secondary);
    letter-spacing: 1px;
    text-transform: uppercase;
    opacity: 0.85;
}

.header-tagline {
    color: var(--accent);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    opacity: 0.9;
}

/* MAIN CONTENT */
.main-content {
    width: 100%;
}

/* HERO SECTION */
.hero-section {
    padding: 60px 0 30px;
    text-align: center;
    position: relative;
}

.hero-content {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
}

.main-title {
    font-size: clamp(2.5rem, 8vw, 4rem);
    font-weight: 800;
    font-family: 'Poppins', sans-serif;
    color: var(--white);
    margin-bottom: 20px;
    line-height: 1.2;
    background: linear-gradient(135deg, #FFFFFF 0%, #CBD5E1 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    letter-spacing: -1px;
}

.main-subtitle {
    font-size: 1.2rem;
    color: #cbd5e1;
    max-width: 600px;
    margin: 0 auto 20px;
    font-weight: 300;
    line-height: 1.8;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 10px 22px;
    background: rgba(3, 105, 161, 0.12);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 50px;
    backdrop-filter: blur(15px);
    margin: 0 auto 30px;
    transition: all 0.3s ease;
}

.hero-badge:hover {
    background: rgba(3, 105, 161, 0.2);
    border-color: rgba(255, 255, 255, 0.25);
    box-shadow: 0 4px 15px rgba(3, 105, 161, 0.15);
}

.hero-badge .badge-icon {
    font-size: 18px;
    opacity: 0.9;
}

.hero-badge .badge-text-container {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.hero-badge .badge-text {
    color: #e2e8f0;
    font-size: 13px;
    font-weight: 500;
    letter-spacing: 0.2px;
}

.hero-badge .badge-subtext {
    color: #e2e8f0;
    font-size: 12px;
    font-weight: 500;
    letter-spacing: 0.3px;
    opacity: 0.95;
}

/* FORM WRAPPER */
.form-wrapper {
    padding: 20px 0 80px;
    position: relative;
}

.form-container {
    width: 90%;
    max-width: 560px;
    margin: 0 auto;
    background: rgba(15, 23, 42, 0.85);
    backdrop-filter: blur(30px);
    border-radius: 24px;
    padding: 50px 55px 45px;
    box-shadow: 0 25px 70px rgba(0,0,0,0.4), 
                0 0 0 1px rgba(255,255,255,0.08),
                inset 0 1px 0 rgba(255,255,255,0.05);
    position: relative;
    border: 1px solid rgba(255,255,255,0.1);
    transition: all .35s ease;
    overflow: hidden;
}
.form-container::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 24px;
    padding: 1px;
    background: linear-gradient(135deg, rgba(3,105,161,0.3), rgba(255,107,53,0.2));
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
            mask-composite: exclude;
    pointer-events: none;
    opacity: 0.6;
}
.form-container:hover {
    box-shadow: 0 30px 80px rgba(0,0,0,0.5), 
                0 0 0 1px rgba(255,255,255,0.12),
                inset 0 1px 0 rgba(255,255,255,0.08);
}
.form-title { position: relative; }
.form-title::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -14px;
    width: 70px;
    height: 4px;
    background: linear-gradient(90deg,var(--secondary),var(--accent));
    border-radius: 2px;
    box-shadow: 0 0 12px rgba(3,105,161,0.5);
}

.form-title {
    font-size: 32px;
    font-weight: 800;
    font-family: 'Poppins', sans-serif;
    color: var(--white);
    margin-bottom: 10px;
    background: linear-gradient(135deg, #ffffff 0%, #cbd5e1 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.form-description {
    color: #cbd5e1;
    margin-bottom: 40px;
    font-size: 15px;
    font-weight: 400;
}

.form-hint {
    display: inline-block;
    font-size: 13px;
    font-style: italic;
    color: var(--secondary);
    background-color: rgba(3, 105, 161, 0.08);
    padding: 8px 12px;
    border-left: 3px solid var(--secondary);
    border-radius: 4px;
    margin-top: 8px;
    line-height: 1.4;
}

.service-highlight {
    font-weight: 600;
    color: var(--white);
}

.service-desc {
    display: block;
    font-size: 12px;
    color: #94a3b8;
    font-weight: 400;
    margin-top: 4px;
}

.form-step {
    display: none;
    animation: fadeSlide 0.5s ease;
    width: 100%;
}

.form-step.active {
    display: block;
}

.form-step.completed {
    display: none !important;
}

@keyframes fadeSlide {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeOut {
    from {
        opacity: 1;
        transform: translateY(0);
    }
    to {
        opacity: 0;
        transform: translateY(-20px);
    }
}

.form-step label {
    display: block;
    font-weight: 600;
    color: var(--white);
    margin-bottom: 12px;
    font-size: 15px;
    letter-spacing: 0.3px;
}

.form-step input[type="text"],
.form-step input[type="email"],
.form-step input[type="tel"],
.form-step textarea {
    width: 100%;
    padding: 14px 16px;
    border: 1px solid rgba(255,255,255,0.15);
    border-radius: 10px;
    font-size: 15px;
    font-family: 'Inter', sans-serif;
    transition: all 0.3s ease;
    margin-bottom: 20px;
    background: rgba(255,255,255,0.05);
    color: var(--white);
}

.form-step input::placeholder,
.form-step textarea::placeholder {
    color: #94a3b8;
}

.form-step input:focus,
.form-step textarea:focus {
    outline: none;
    border-color: var(--secondary);
    box-shadow: 0 0 0 3px rgba(3, 105, 161, 0.25);
    background-color: rgba(3, 105, 161, 0.08);
}

.form-step input.error {
    border-color: #ff6b6b;
    background-color: rgba(255, 107, 107, 0.05);
}

.radio-options {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 20px;
}

.radio-option {
    display: flex;
    align-items: center;
    padding: 14px 16px;
    border: 1px solid rgba(255,255,255,0.15);
    border-radius: 10px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-weight: 500;
    color: var(--white);
    background-color: rgba(255,255,255,0.05);
}

.radio-option input[type="radio"] {
    margin-right: 12px;
    accent-color: var(--secondary);
    cursor: pointer;
    width: 18px;
    height: 18px;
    flex-shrink: 0;
}

.radio-option:hover {
    border-color: var(--secondary);
    background-color: rgba(3, 105, 161, 0.15);
    box-shadow: 0 4px 12px rgba(3, 105, 161, 0.2);
}

.radio-option input[type="radio"]:checked + span {
    color: var(--secondary);
    font-weight: 700;
}

/* CUSTOM SELECT STYLING */
.custom-select-wrapper {
    position: relative;
    margin-bottom: 20px;
}

.custom-select {
    width: 100%;
    padding: 14px 40px 14px 16px;
    border: 1px solid rgba(255,255,255,0.15);
    border-radius: 10px;
    font-size: 15px;
    font-family: 'Inter', sans-serif;
    font-weight: 500;
    transition: all 0.3s ease;
    background: rgba(255,255,255,0.05);
    color: var(--white);
    cursor: pointer;
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
}

.custom-select option {
    background: var(--primary);
    color: var(--white);
    padding: 12px;
}

.custom-select:hover {
    border-color: var(--secondary);
    background-color: rgba(3, 105, 161, 0.15);
    box-shadow: 0 4px 12px rgba(3, 105, 161, 0.2);
}

.custom-select:focus {
    outline: none;
    border-color: var(--secondary);
    box-shadow: 0 0 0 3px rgba(3, 105, 161, 0.25);
    background-color: rgba(3, 105, 161, 0.08);
}

.select-arrow {
    position: absolute;
    right: 16px;
    top: 50%;
    transform: translateY(-50%);
    pointer-events: none;
    color: var(--secondary);
    font-size: 12px;
    transition: all 0.3s ease;
}

.custom-select:focus + .select-arrow {
    transform: translateY(-50%) rotate(180deg);
}

.select-label {
    display: block;
    font-weight: 600;
    color: var(--white);
    margin-bottom: 10px;
    font-size: 14px;
}

/* CHECKBOX GROUP */
.checkbox-group {
    margin-bottom: 20px;
}

.checkbox-group label {
    display: flex;
    align-items: center;
    padding: 10px 0;
    color: var(--white);
    font-weight: 400;
    font-size: 14px;
    cursor: pointer;
    transition: all 0.2s ease;
}

.checkbox-group input[type="checkbox"] {
    margin-right: 10px;
    accent-color: var(--secondary);
    cursor: pointer;
    width: 18px;
    height: 18px;
}

.checkbox-group label:hover {
    color: var(--secondary);
}

.small-label {
    font-size: 14px;
    font-weight: 600;
    color: #cbd5e1;
    margin-bottom: 10px;
}

.btn-next,
.btn-submit {
    width: 100%;
    padding: 16px;
    background: linear-gradient(135deg, var(--secondary) 0%, #0d47a1 100%);
    color: var(--white);
    border: none;
    border-radius: 10px;
    font-weight: 700;
    font-size: 16px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: 'Inter', sans-serif;
    letter-spacing: 0.5px;
    box-shadow: 0 5px 15px rgba(3, 105, 161, 0.2);
}

.btn-next:hover,
.btn-submit:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 25px rgba(3, 105, 161, 0.4);
}

.btn-next:active,
.btn-submit:active {
    transform: translateY(-1px);
}

/* SUCCESS MESSAGE */
.success-message {
    text-align: center;
    padding: 40px 20px;
}

.success-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 40px;
    margin: 0 auto 20px;
    animation: scaleIn 0.5s ease;
    box-shadow: 0 8px 20px rgba(16, 185, 129, 0.3);
}

@keyframes scaleIn {
    from {
        transform: scale(0);
    }
    to {
        transform: scale(1);
    }
}

.success-message h3 {
    font-size: 24px;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 10px;
}

.success-message p {
    color: #cbd5e1;
    font-size: 15px;
}

/* INFO SECTION */
.info-section {
    padding: 100px 0;
    position: relative;
    background: linear-gradient(180deg, rgba(3, 105, 161, 0.05) 0%, transparent 100%);
}

.info-grid {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 25px;
}

.info-card {
    background: linear-gradient(135deg, rgba(3, 105, 161, 0.1) 0%, rgba(255, 107, 53, 0.05) 100%);
    backdrop-filter: blur(15px);
    border: 2px solid rgba(3, 105, 161, 0.3);
    padding: 45px 35px;
    border-radius: 20px;
    text-align: center;
    transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
    position: relative;
    overflow: hidden;
}

.info-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(255, 107, 53, 0.2) 0%, transparent 100%);
    opacity: 0;
    transition: opacity 0.4s ease;
    z-index: 1;
}

.info-card:hover {
    background: linear-gradient(135deg, rgba(3, 105, 161, 0.2) 0%, rgba(255, 107, 53, 0.1) 100%);
    transform: translateY(-12px) scale(1.02);
    box-shadow: 0 20px 60px rgba(3, 105, 161, 0.25), 0 0 40px rgba(255, 107, 53, 0.15);
    border-color: var(--accent);
}

.info-card:hover::before {
    opacity: 1;
}

.info-number {
    font-size: clamp(2.5rem, 8vw, 3.5rem);
    font-weight: 800;
    font-family: 'Poppins', sans-serif;
    background: linear-gradient(135deg, var(--accent) 0%, #FF8C42 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 12px;
    letter-spacing: -1px;
    position: relative;
    z-index: 2;
}

.info-text {
    color: var(--white);
    font-weight: 600;
    font-size: clamp(15px, 4vw, 18px);
    position: relative;
    z-index: 2;
    letter-spacing: 0.5px;
}

/* Credibility Section */
.credibility-section { padding: 70px 0 35px; position: relative; }
.credibility-inner { width:90%; max-width:1100px; margin:0 auto; text-align:center; }
.credibility-title { font-family:'Poppins',sans-serif; font-weight:700; font-size:clamp(1.6rem,4vw,2.2rem); color:var(--white); margin-bottom:14px; letter-spacing:-0.5px; }
.credibility-sub { color:#cbd5e1; font-size:15px; margin-bottom:40px; }
.trust-badges { display:grid; gap:28px; grid-template-columns:repeat(auto-fit,minmax(240px,1fr)); }
.badge { background:rgba(255,255,255,0.07); border:1px solid rgba(255,255,255,0.12); backdrop-filter:blur(12px); padding:20px 18px 18px; border-radius:18px; display:flex; align-items:flex-start; gap:14px; position:relative; transition:.35s ease; }
.badge:hover { transform:translateY(-6px); border-color:var(--accent); box-shadow:0 12px 35px -8px rgba(255,107,53,0.35); }
.badge-icon { font-size:30px; filter:drop-shadow(0 4px 10px rgba(0,0,0,0.3)); }
.badge-text strong { display:block; color:var(--white); font-size:15px; margin-bottom:4px; }
.badge-text span { color:#94a3b8; font-size:12px; }

/* Indicators Grid Enhancements */
.indicators-grid { margin-top:30px; }
.indicator { text-align:left; padding:32px 28px; }
.indicator-head { display:flex; align-items:center; gap:14px; margin-bottom:10px; }
.indicator-icon { font-size:30px; }
.indicator h4 { color:var(--white); font-weight:600; font-size:18px; margin:0; }
.indicator-desc { color:#94a3b8; font-size:13px; line-height:1.5; }

/* FOOTER */
.footer { background:linear-gradient(180deg, rgba(15,23,42,0.95) 0%, rgba(10,15,25,0.98) 100%); border-top:1px solid rgba(255,255,255,0.08); padding:60px 0 30px; position:relative; overflow:hidden; }
.footer-inner { width:90%; max-width:1200px; margin:0 auto 40px; display:grid; grid-template-columns:repeat(auto-fit,minmax(180px,1fr)); gap:40px; }
.footer-col h5 { color:var(--white); font-size:16px; margin-bottom:14px; font-weight:600; letter-spacing:.5px; }
.footer-col ul { list-style:none; }
.footer-col li { color:#cbd5e1; font-size:13px; padding:6px 0; opacity:.85; }
.footer-bottom { text-align:center; }
.footer-bottom p { color:var(--white); font-size:13px; margin:6px 0; }
.footer-legal { font-size:11px; opacity:.6; }

@media (max-width: 768px) {
    .badge { padding:18px 16px; }
    .indicator { padding:26px 22px; }
    .form-container { padding:48px 42px 44px; }
}
@media (max-width: 480px) {
    .badge { padding:16px 14px; gap:12px; }
    .badge-icon { font-size:26px; }
    .indicator { padding:22px 18px; }
}

/* RESPONSIVE */
@media (max-width: 768px) {
    .container-header {
        flex-direction: column;
        gap: 8px;
    }

    .logo {
        font-size: 24px;
    }

    .header-location {
        font-size: 11px;
        order: 2;
    }

    .header-tagline {
        order: 3;
        font-size: 11px;
    }

    .form-container {
        padding: 35px;
    }

    .form-title {
        font-size: 24px;
    }

    .main-title {
        font-size: 2rem;
    }

    .main-subtitle {
        font-size: 1rem;
    }

    .hero-section {
        padding: 50px 0 25px;
    }

    .form-wrapper {
        padding: 50px 0;
    }

    .info-section {
        padding: 50px 0;
    }

    .info-number {
        font-size: 2.2rem;
    }

    .info-text {
        font-size: 14px;
    }
}

@media (max-width: 480px) {
    .header {
        padding: 18px 0;
    }

    .container-header {
        flex-direction: column;
        gap: 5px;
    }

    .logo {
        font-size: 20px;
    }

    .header-location {
        font-size: 10px;
        letter-spacing: 0.3px;
    }

    .header-tagline {
        font-size: 10px;
        letter-spacing: 1px;
    }

    .form-container {
        padding: 25px;
        border-radius: 15px;
    }

    .form-title {
        font-size: 20px;
    }

    .main-title {
        font-size: 1.5rem;
    }

    .hero-section {
        padding: 35px 0 15px;
    }

    .btn-next,
    .btn-submit {
        padding: 14px;
        font-size: 14px;
    }

    .form-step input,
    .form-step textarea {
        padding: 12px 14px;
    }

    .info-grid {
        gap: 18px;
    }

    .info-card {
        padding: 35px 25px;
        border-radius: 15px;
    }

    .info-number {
        font-size: 2rem;
        margin-bottom: 8px;
    }

    .info-text {
        font-size: 13px;
    }
}

.container {
    width: 90%;
    max-width: var(--container-width);
    margin: 0 auto;
}
