/* BizPulse Inquiry Form Styles */

:root {
    --black: #0a0a0a;
    --grey: #6b6b6b;
    --grey-light: #c4c4c4;
    --grey-bg: #f5f5f5;
    --yellow: #ffd600;
    --yellow-dark: #e6c200;
    --white: #ffffff;
    --error: #dc3545;
    --success: #28a745;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Manrope', sans-serif;
    background-color: var(--white);
    color: var(--black);
    overflow-x: hidden;
    line-height: 1.6;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Outfit', sans-serif;
}

/* Navigation */
nav {
    position: fixed;
    top: 0;
    width: 100%;
    padding: 2rem 4rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 1000;
    background: transparent;
    backdrop-filter: blur(10px);
    animation: slideDown 0.6s ease-out;
    transition: all 0.3s ease;
}

nav.scrolled {
    background: rgba(255, 255, 255, 0.95);
    padding: 1.5rem 4rem;
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.05);
}

@keyframes slideDown {
    from {
        transform: translateY(-100%);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

.logo {
    font-family: 'Outfit', sans-serif;
    font-size: 1.5rem;
    font-weight: 800;
    letter-spacing: -0.5px;
}

.logo span {
    color: var(--yellow);
}

.nav-links {
    display: flex;
    gap: 3rem;
    list-style: none;
}

.nav-actions {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.whatsapp-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    background: #25D366;
    color: var(--white);
    border-radius: 50%;
    transition: all 0.3s ease;
    box-shadow: 0 2px 10px rgba(37, 211, 102, 0.3);
}

.whatsapp-icon:hover {
    background: #128C7E;
    transform: scale(1.1);
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.5);
}

.whatsapp-icon svg {
    width: 24px;
    height: 24px;
}

.nav-links a {
    text-decoration: none;
    color: var(--black);
    font-weight: 500;
    font-size: 0.95rem;
    position: relative;
    transition: color 0.3s;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--yellow);
    transition: width 0.3s ease;
}

.nav-links a:hover::after,
.nav-links a.active::after {
    width: 100%;
}

.nav-links a.active {
    color: var(--yellow);
}

/* Hamburger Menu */
.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 5px;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: var(--black);
    transition: all 0.3s;
}

/* Page Hero */
.page-hero {
    min-height: 50vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--black) 0%, #1a1a1a 100%);
    color: var(--white);
    text-align: center;
    padding: 8rem 4rem 4rem;
}

.page-hero-content {
    max-width: 800px;
}

.launch-badge {
    display: inline-block;
    padding: 0.75rem 1.5rem;
    background: var(--yellow);
    color: var(--black);
    font-weight: 700;
    font-size: 0.85rem;
    letter-spacing: 1px;
    border-radius: 30px;
    margin-bottom: 2rem;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(255, 214, 0, 0.7);
    }
    50% {
        transform: scale(1.05);
        box-shadow: 0 0 0 10px rgba(255, 214, 0, 0);
    }
}

.page-hero-content h1 {
    font-size: clamp(3rem, 6vw, 5rem);
    font-weight: 900;
    margin-bottom: 1rem;
    letter-spacing: -2px;
    animation: fadeInUp 0.8s ease-out;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(40px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.page-hero-content h1 span {
    color: var(--yellow);
}

.page-hero-content p {
    font-size: 1.3rem;
    color: var(--grey-light);
    animation: fadeInUp 0.8s ease-out 0.2s backwards;
}

/* Inquiry Section */
.inquiry-section {
    padding: 6rem 4rem;
    background: var(--grey-bg);
}

.inquiry-container {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 400px 1fr;
    gap: 4rem;
    align-items: start;
}

/* Product Highlights */
.product-highlights {
    position: sticky;
    top: 120px;
}

.product-highlights h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    font-weight: 800;
}

.highlight-intro {
    color: var(--grey);
    font-size: 1.1rem;
    margin-bottom: 2rem;
}

.features-list {
    margin-bottom: 2rem;
}

.feature-item {
    display: flex;
    gap: 1rem;
    margin-bottom: 1.5rem;
    padding: 1rem;
    background: var(--white);
    border-radius: 12px;
    transition: all 0.3s;
}

.feature-item:hover {
    transform: translateX(5px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.feature-icon {
    font-size: 2rem;
    flex-shrink: 0;
}

.feature-text h4 {
    font-size: 1rem;
    margin-bottom: 0.25rem;
    font-weight: 600;
}

.feature-text p {
    font-size: 0.9rem;
    color: var(--grey);
}

.early-bird-box {
    background: linear-gradient(135deg, var(--yellow) 0%, var(--yellow-dark) 100%);
    padding: 2rem;
    border-radius: 15px;
    margin-bottom: 2rem;
}

.early-bird-box h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    font-weight: 800;
}

.early-bird-box ul {
    list-style: none;
    padding: 0;
}

.early-bird-box li {
    padding: 0.5rem 0;
    padding-left: 1.5rem;
    position: relative;
}

.early-bird-box li::before {
    content: '✓';
    position: absolute;
    left: 0;
    font-weight: bold;
    font-size: 1.2rem;
}

.contact-info-box {
    background: var(--white);
    padding: 1.5rem;
    border-radius: 12px;
    border: 2px solid var(--grey-bg);
}

.contact-info-box h4 {
    margin-bottom: 1rem;
    font-weight: 700;
}

.contact-info-box p {
    margin-bottom: 0.5rem;
    font-size: 0.95rem;
}

.contact-info-box a {
    color: var(--black);
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s;
}

.contact-info-box a:hover {
    color: var(--yellow);
}

/* Inquiry Form Container */
.inquiry-form-container {
    background: var(--white);
    padding: 3rem;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.05);
}

.form-header {
    margin-bottom: 3rem;
}

.form-header h2 {
    font-size: 2.5rem;
    margin-bottom: 0.5rem;
    font-weight: 800;
}

.form-header p {
    color: var(--grey);
    font-size: 1.1rem;
}

/* Form Sections */
.form-section {
    margin-bottom: 3rem;
    padding-bottom: 2rem;
    border-bottom: 2px solid var(--grey-bg);
}

.form-section:last-of-type {
    border-bottom: none;
}

.form-section h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    font-weight: 700;
    color: var(--black);
}

.section-desc {
    color: var(--grey);
    font-size: 0.95rem;
    margin-bottom: 1.5rem;
}

/* Form Rows and Groups */
.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
    margin-bottom: 1.5rem;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group.full-width {
    grid-column: 1 / -1;
}

.form-group label {
    margin-bottom: 0.5rem;
    font-weight: 600;
    font-size: 0.95rem;
    color: var(--black);
}

.required {
    color: var(--error);
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 1rem;
    border: 2px solid var(--grey-bg);
    border-radius: 10px;
    font-family: 'Manrope', sans-serif;
    font-size: 1rem;
    transition: all 0.3s;
    background: var(--white);
}

.form-group select[multiple] {
    min-height: 120px;
    padding: 0.5rem;
}

.form-group select[multiple] option {
    padding: 0.75rem;
    margin-bottom: 0.25rem;
    border-radius: 6px;
    cursor: pointer;
}

.form-group select[multiple] option:checked {
    background: var(--yellow);
    color: var(--black);
    font-weight: 600;
}

.field-hint {
    font-size: 0.85rem;
    color: var(--grey);
    margin-top: 0.5rem;
    font-style: italic;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--yellow);
    box-shadow: 0 0 0 3px rgba(255, 214, 0, 0.1);
}

.form-group input.error,
.form-group select.error,
.form-group textarea.error {
    border-color: var(--error);
}

.form-group input.success,
.form-group select.success,
.form-group textarea.success {
    border-color: var(--success);
}

.form-group textarea {
    resize: vertical;
    min-height: 100px;
}

/* Error Messages */
.error-message {
    color: var(--error);
    font-size: 0.85rem;
    margin-top: 0.5rem;
    display: none;
}

.error-message.show {
    display: block;
}

/* Checkbox Grid */
.checkbox-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
}

.checkbox-label {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    cursor: pointer;
    padding: 0.75rem;
    border-radius: 8px;
    transition: background 0.3s;
}

.checkbox-label:hover {
    background: var(--grey-bg);
}

.checkbox-label.inline {
    grid-column: 1 / -1;
}

.checkbox-label input[type="checkbox"] {
    width: 20px;
    height: 20px;
    cursor: pointer;
    accent-color: var(--yellow);
}

.checkbox-label span {
    font-size: 0.95rem;
}

/* Form Actions */
.form-actions {
    margin-top: 2rem;
}

.submit-button {
    width: 100%;
    padding: 1.5rem 3rem;
    background: var(--black);
    color: var(--white);
    border: none;
    border-radius: 50px;
    font-family: 'Manrope', sans-serif;
    font-size: 1.1rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s;
    position: relative;
    overflow: hidden;
}

.submit-button::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: var(--yellow);
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.submit-button:hover::before {
    width: 500px;
    height: 500px;
}

.submit-button:hover {
    color: var(--black);
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.submit-button:disabled {
    opacity: 0.6;
    cursor: not-allowed;
}

.submit-button span {
    position: relative;
    z-index: 1;
}

/* Form Message */
.form-message {
    margin-top: 2rem;
    padding: 1.5rem;
    border-radius: 10px;
    text-align: center;
    font-weight: 600;
    display: none;
}

.form-message.success {
    background: #d4edda;
    color: #155724;
    border: 2px solid #28a745;
    display: block;
}

.form-message.error {
    background: #f8d7da;
    color: #721c24;
    border: 2px solid #dc3545;
    display: block;
}

/* Countdown Section */
.countdown-section {
    padding: 6rem 4rem;
    background: var(--black);
    color: var(--white);
    text-align: center;
}

.countdown-container h2 {
    font-size: 2.5rem;
    margin-bottom: 0.5rem;
    font-weight: 800;
}

.countdown-subtitle {
    font-size: 1.2rem;
    color: var(--yellow);
    margin-bottom: 2.5rem;
    font-weight: 600;
}

.countdown {
    display: flex;
    justify-content: center;
    gap: 2rem;
    max-width: 800px;
    margin: 0 auto;
}

.countdown-item {
    background: rgba(255, 255, 255, 0.1);
    padding: 2rem;
    border-radius: 15px;
    min-width: 150px;
    backdrop-filter: blur(10px);
}

.countdown-value {
    font-size: 4rem;
    font-weight: 800;
    font-family: 'Outfit', sans-serif;
    color: var(--yellow);
    display: block;
    line-height: 1;
}

.countdown-label {
    font-size: 1rem;
    color: var(--grey-light);
    margin-top: 0.5rem;
    display: block;
}

/* Footer */
footer {
    background: var(--black);
    color: var(--white);
    padding: 4rem 4rem 2rem;
}

.footer-content {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer-brand h3 {
    font-family: 'Outfit', sans-serif;
    font-size: 2rem;
    font-weight: 800;
    margin-bottom: 1rem;
}

.footer-brand h3 span {
    color: var(--yellow);
}

.footer-brand p {
    color: var(--grey-light);
    line-height: 1.7;
}

.footer-links h4 {
    font-family: 'Outfit', sans-serif;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--yellow);
}

.footer-links ul {
    list-style: none;
}

.footer-links li {
    margin-bottom: 0.7rem;
}

.footer-links a {
    color: var(--grey-light);
    text-decoration: none;
    transition: color 0.3s;
}

.footer-links a:hover {
    color: var(--yellow);
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: var(--grey);
}

/* Responsive Design */
@media (max-width: 1024px) {
    .inquiry-container {
        grid-template-columns: 1fr;
    }

    .product-highlights {
        position: relative;
        top: 0;
    }

    .footer-content {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 768px) {
    nav {
        padding: 1.5rem 2rem;
    }

    nav.scrolled {
        padding: 1rem 2rem;
    }

    .logo {
        font-size: 1.2rem;
    }

    .nav-actions {
        order: 2;
        margin-right: 1rem;
    }

    .whatsapp-icon {
        width: 40px;
        height: 40px;
    }

    .whatsapp-icon svg {
        width: 20px;
        height: 20px;
    }

    .nav-links {
        position: fixed;
        top: 0;
        right: -100%;
        height: 100vh;
        width: 75%;
        max-width: 300px;
        background: var(--white);
        flex-direction: column;
        padding: 5rem 2rem;
        box-shadow: -5px 0 20px rgba(0,0,0,0.1);
        transition: right 0.3s ease;
        gap: 1.5rem;
        z-index: 999;
    }

    .nav-links.active {
        right: 0;
    }

    .nav-links a {
        font-size: 1.1rem;
        padding: 0.5rem 0;
    }

    .hamburger {
        display: flex;
        z-index: 1001;
        order: 3;
    }

    .hamburger.active span:nth-child(1) {
        transform: rotate(45deg) translate(8px, 8px);
    }

    .hamburger.active span:nth-child(2) {
        opacity: 0;
    }

    .hamburger.active span:nth-child(3) {
        transform: rotate(-45deg) translate(8px, -8px);
    }

    .page-hero {
        padding: 6rem 1.5rem 3rem;
        min-height: 40vh;
    }

    .inquiry-section,
    .countdown-section {
        padding: 4rem 1.5rem;
    }

    .inquiry-container {
        gap: 2rem;
    }

    .inquiry-form-container {
        padding: 2rem 1.5rem;
    }

    .form-header h2 {
        font-size: 2rem;
    }

    .form-row {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .checkbox-grid {
        grid-template-columns: 1fr;
    }

    .countdown {
        flex-wrap: wrap;
        gap: 1rem;
    }

    .countdown-item {
        min-width: 120px;
        padding: 1.5rem 1rem;
    }

    .countdown-value {
        font-size: 3rem;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
}

@media (max-width: 480px) {
    .inquiry-form-container {
        padding: 1.5rem 1rem;
    }

    .form-section {
        margin-bottom: 2rem;
        padding-bottom: 1.5rem;
    }

    .product-highlights h2 {
        font-size: 2rem;
    }

    .countdown-item {
        min-width: 100px;
        padding: 1rem;
    }

    .countdown-value {
        font-size: 2.5rem;
    }

    .countdown-label {
        font-size: 0.85rem;
    }

    .countdown-subtitle {
        font-size: 1rem;
        margin-bottom: 2rem;
    }
}
