@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;500;600;700&display=swap');

:root {
    --primary-color: #0a1c3e; /* Navy match */
    --secondary-color: #25D366; /* WhatsApp Green */
    --accent-color: #f2b824; /* Gold match */
    --text-color: #1a1f36;
    --text-muted: #4f566b;
    --bg-color: #f8fafc;
    --white: #ffffff;
    --card-bg: rgba(255, 255, 255, 0.98);
    --border-radius: 20px;
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05), 0 2px 4px -1px rgba(0, 0, 0, 0.03);
    --shadow-lg: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Outfit', sans-serif;
}

body {
    background-color: var(--bg-color);
    background-image: url('assets/business_bg.png');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    color: var(--text-color);
    line-height: 1.6;
    display: flex;
    justify-content: center;
    min-height: 100vh;
}

.container {
    width: 100%;
    max-width: 500px;
    padding: 40px 20px;
    display: flex;
    flex-direction: column;
    gap: 24px;
    position: relative;
    z-index: 1;
}

/* Background Overlay for readability */
body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(246, 249, 252, 0.9) 0%, rgba(255, 255, 255, 0.8) 100%);
    z-index: 0;
}

/* Header Section */
.header {
    text-align: center;
    margin-bottom: 8px;
}

.logo {
    width: auto;
    max-width: 100%;
    height: 120px;
    background: var(--white);
    border-radius: 12px;
    padding: 12px;
    box-shadow: var(--shadow);
    margin-bottom: 24px;
    object-fit: contain;
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.brand-name {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 8px;
    letter-spacing: -0.5px;
}

.tagline {
    font-size: 0.95rem;
    color: var(--text-muted);
    font-weight: 500;
}

/* Section Cards */
.section {
    background: var(--card-bg);
    backdrop-filter: blur(10px);
    border-radius: var(--border-radius);
    padding: 24px;
    box-shadow: var(--shadow);
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.section-title {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 16px;
    color: var(--primary-color);
    display: flex;
    align-items: center;
    gap: 8px;
}

.about-text {
    color: var(--text-muted);
    font-size: 0.95rem;
    text-align: center;
}

/* Buttons */
.button-grid {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    padding: 16px;
    border-radius: 12px;
    text-decoration: none;
    font-size: 1rem;
    font-weight: 600;
    transition: var(--transition);
    border: 1px solid transparent;
}

.btn-whatsapp {
    background-color: var(--secondary-color);
    color: white;
    box-shadow: 0 4px 14px 0 rgba(37, 211, 102, 0.3);
}

.btn-whatsapp:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.4);
}


.btn-primary {
    background-color: var(--primary-color);
    color: white;
}

.btn-outline {
    background-color: white;
    color: var(--primary-color);
    border: 1.5px solid #e3e8ee;
}

.btn-email {
    background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
    color: white;
    box-shadow: 0 4px 14px 0 rgba(220, 39, 67, 0.3);
}

.btn-email:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(220, 39, 67, 0.4);
}

.btn:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

/* Product Links */
.product-list {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.product-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 14px 18px;
    background: #f8fafc;
    border-radius: 10px;
    text-decoration: none;
    color: var(--text-color);
    font-weight: 500;
    transition: var(--transition);
}

.product-item:hover {
    background: white;
    box-shadow: var(--shadow);
    transform: translateX(5px);
}

.product-item i {
    color: var(--accent-color);
}

/* Form */
.form-group {
    margin-bottom: 16px;
}

.form-group label {
    display: block;
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 6px;
    color: var(--text-muted);
}

.form-control {
    width: 100%;
    padding: 12px 16px;
    border-radius: 8px;
    border: 1.5px solid #e3e8ee;
    background: #f8fafc;
    font-size: 0.95rem;
    outline: none;
    transition: var(--transition);
}

.form-control:focus {
    border-color: var(--accent-color);
    background: white;
}

.btn-submit {
    width: 100%;
    background: var(--primary-color);
    color: white;
    border: none;
    padding: 14px;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
}

.btn-submit:hover {
    background: var(--accent-color);
}

/* Trust Section */
.trust-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--text-muted);
}

.trust-item i {
    color: var(--secondary-color);
}

/* Footer */
.footer {
    text-align: center;
    margin-top: 20px;
    padding-bottom: 40px;
}

.social-links {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 20px;
}

.social-icon {
    font-size: 1.4rem;
    color: var(--primary-color);
    transition: var(--transition);
}

.social-icon:hover {
    color: var(--accent-color);
    transform: scale(1.2);
}

.footer-note {
    font-size: 0.85rem;
    color: var(--text-muted);
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.container > * {
    animation: fadeInUp 0.6s ease-out forwards;
}

.container > *:nth-child(2) { animation-delay: 0.1s; }
.container > *:nth-child(3) { animation-delay: 0.2s; }
.container > *:nth-child(4) { animation-delay: 0.3s; }
.container > *:nth-child(5) { animation-delay: 0.4s; }
.container > *:nth-child(6) { animation-delay: 0.5s; }
.container > *:nth-child(7) { animation-delay: 0.6s; }
