:root {
    --primary: #1E3A8A; /* Deep Navy Blue */
    --primary-light: #3B82F6;
    --accent: #F59E0B; /* Vibrant Amber */
    --accent-hover: #D97706;
    --bg-color: #F8FAFC;
    --text-main: #334155;
    --text-muted: #64748B;
    --white: #FFFFFF;
    --input-bg: #F1F5F9;
    --input-border: #CBD5E1;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Outfit', sans-serif;
    background-color: var(--bg-color);
    color: var(--text-main);
    overflow-x: hidden;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

/* Background animated elements */
.background-elements {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    z-index: -1;
    overflow: hidden;
}

.blob {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.6;
    animation: float 10s infinite alternate ease-in-out;
}

.blob-1 {
    top: -10%;
    left: -10%;
    width: 40vw;
    height: 40vw;
    background-color: rgba(59, 130, 246, 0.4); /* Blue */
}

.blob-2 {
    bottom: -10%;
    right: -10%;
    width: 50vw;
    height: 50vw;
    background-color: rgba(245, 158, 11, 0.3); /* Amber */
    animation-delay: 2s;
}

@keyframes float {
    0% { transform: translateY(0) scale(1); }
    100% { transform: translateY(30px) scale(1.1); }
}

/* Layout container */
.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 2rem;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

/* Header */
.header {
    width: 100%;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    padding-bottom: 2rem;
}

.logo {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    font-size: 1.5rem;
    color: var(--primary);
}

.logo i {
    font-size: 2rem;
    color: var(--accent);
}

/* Main Content */
.content-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    flex-grow: 1;
}

.info-section h1 {
    font-size: 3.5rem;
    line-height: 1.1;
    color: var(--primary);
    margin-bottom: 1.5rem;
    font-weight: 700;
}

.info-section .subtitle {
    font-size: 1.25rem;
    color: var(--text-muted);
    margin-bottom: 3rem;
    max-width: 450px;
}

/* Benefits */
.benefits-scroller {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.benefit-card {
    display: flex;
    align-items: flex-start;
    gap: 1.2rem;
    background: rgba(255, 255, 255, 0.6);
    backdrop-filter: blur(10px);
    padding: 1.5rem;
    border-radius: 16px;
    border: 1px solid rgba(255,255,255,0.8);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.03);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.benefit-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
}

.benefit-card i {
    background: var(--primary-light);
    color: white;
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
    font-size: 1.2rem;
    flex-shrink: 0;
}

.benefit-card h3 {
    font-size: 1.1rem;
    margin-bottom: 0.3rem;
    color: var(--primary);
}

.benefit-card p {
    font-size: 0.95rem;
    color: var(--text-muted);
}

/* Form Section */
.form-section {
    width: 100%;
}

.form-container {
    background: var(--white);
    padding: 3rem;
    border-radius: 24px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.08);
    position: relative;
    z-index: 10;
}

.form-container h2 {
    font-size: 2rem;
    color: var(--primary);
    margin-bottom: 0.5rem;
}

.form-desc {
    color: var(--text-muted);
    margin-bottom: 2rem;
}

.input-group {
    margin-bottom: 1.5rem;
}

.input-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
}

label {
    display: block;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: var(--text-main);
}

.input-wrapper {
    position: relative;
    display: flex;
    align-items: center;
}

.input-wrapper i {
    position: absolute;
    left: 1rem;
    color: var(--text-muted);
    font-size: 1.1rem;
}

input, select {
    width: 100%;
    padding: 1rem 1rem 1rem 3rem;
    border: 1px solid var(--input-border);
    border-radius: 12px;
    background-color: var(--input-bg);
    font-family: inherit;
    font-size: 1rem;
    transition: all 0.3s ease;
    color: var(--text-main);
}

input:focus, select:focus {
    outline: none;
    border-color: var(--primary-light);
    box-shadow: 0 0 0 4px rgba(59, 130, 246, 0.1);
    background-color: var(--white);
}

select {
    appearance: none;
    -webkit-appearance: none;
    cursor: pointer;
}

.submit-btn {
    width: 100%;
    padding: 1.2rem;
    background: linear-gradient(135deg, var(--accent), var(--accent-hover));
    color: white;
    border: none;
    border-radius: 12px;
    font-size: 1.1rem;
    font-weight: 700;
    cursor: pointer;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 0.8rem;
    transition: all 0.3s ease;
    margin-top: 1rem;
    box-shadow: 0 10px 20px rgba(245, 158, 11, 0.3);
}

.submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 15px 25px rgba(245, 158, 11, 0.4);
}

/* Success Message */
.success-message {
    text-align: center;
    padding: 2rem 0;
}

.success-message i.fa-check-circle {
    font-size: 4rem;
    color: #10B981;
    margin-bottom: 1rem;
}

.success-message h3 {
    font-size: 1.8rem;
    color: var(--primary);
    margin-bottom: 1rem;
}

.tracking-code {
    background: var(--input-bg);
    padding: 1rem 1.5rem;
    border-radius: 8px;
    font-family: monospace;
    font-size: 1.2rem;
    letter-spacing: 1px;
    color: var(--primary-light);
    margin: 1.5rem 0;
    border: 1px dashed var(--primary-light);
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.id-wrapper {
    display: flex;
    align-items: center;
    gap: 0.8rem;
}

.copy-btn {
    background: var(--primary-light);
    color: white;
    border: none;
    border-radius: 50%;
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.2s ease;
    box-shadow: 0 4px 10px rgba(59, 130, 246, 0.3);
}

.copy-btn:hover {
    background: var(--primary);
    transform: scale(1.1);
}

.copy-btn:active {
    transform: scale(0.95);
}

.important-notice {
    background: rgba(132, 184, 75, 0.1);
    border-left: 4px solid var(--accent);
    padding: 1.25rem;
    text-align: left;
    margin-bottom: 2rem;
    border-radius: 4px;
}

.important-notice .notice-title {
    color: var(--text-main);
    display: block;
    margin-bottom: 0.5rem;
    font-weight: bold;
}

.important-notice strong {
    color: var(--text-main);
}

.important-notice p {
    font-size: 0.95rem;
    margin-bottom: 0.75rem;
}

.important-notice .small-text {
    font-size: 0.9rem;
    color: var(--text-muted);
    font-style: italic;
    margin-bottom: 0;
}

.whatsapp-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 1rem 2rem;
    background-color: transparent;
    color: #25D366;
    border: 2px solid #25D366;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
}

.whatsapp-btn:hover {
    background-color: #25D366;
    color: white;
}

/* Textarea & Custom inputs */
textarea {
    width: 100%;
    padding: 1rem 1rem 1rem 3rem;
    border: 1px solid var(--input-border);
    border-radius: 12px;
    background-color: var(--input-bg);
    font-family: inherit;
    font-size: 1rem;
    transition: all 0.3s ease;
    color: var(--text-main);
    resize: vertical;
    min-height: 100px;
}

textarea:focus {
    outline: none;
    border-color: var(--primary-light);
    box-shadow: 0 0 0 4px rgba(59, 130, 246, 0.1);
    background-color: var(--white);
}

.radio-group.row-radio {
    display: flex;
    gap: 1.5rem;
    margin-top: 0.5rem;
    flex-wrap: wrap;
}

.custom-radio, .custom-checkbox {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    cursor: pointer;
    font-size: 0.95rem;
    color: var(--text-main);
}

.custom-radio input[type="radio"], .custom-checkbox input[type="checkbox"] {
    width: auto;
    padding: 0;
    margin: 0;
    appearance: auto;
    -webkit-appearance: auto;
    accent-color: var(--primary);
}

.checkbox-group {
    margin-top: 2rem;
    padding-top: 1.5rem;
    border-top: 1px solid var(--input-border);
}

.success-message.hidden {
    display: none !important;
}

/* Footer */
footer {
    text-align: center;
    padding: 2rem 0;
    color: var(--text-muted);
    font-size: 0.9rem;
    margin-top: auto;
}

/* Responsive */
@media (max-width: 968px) {
    .content-wrapper {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .info-section h1 {
        font-size: 2.5rem;
    }
    
    .info-section {
        text-align: center;
    }
    
    .info-section .subtitle {
        margin: 0 auto 2rem;
    }
}

@media (max-width: 640px) {
    .container {
        padding: 1.5rem;
    }

    .form-container {
        padding: 2rem 1.5rem;
    }
    
    .input-row {
        grid-template-columns: 1fr;
        gap: 0;
    }

    .info-section h1 {
        font-size: 2rem;
    }
}
