/* Custom CSS config extension logic is handled via Tailwind CDN script in head, 
   but specific complex styles go here */

:root {
    --motozo-blue: #243261;
}

/* Tailwind Config extension for the arbitrary values used */
.bg-motozo-blue {
    background-color: var(--motozo-blue);
}
.text-motozo-blue {
    color: var(--motozo-blue);
}

body {
    font-family: 'Inter', sans-serif;
}

h1, h2, h3, h4 {
    font-family: 'Playfair Display', serif;
}

/* Form Styles */
.form-input, .form-select {
    width: 100%;
    padding: 0.875rem 1rem;
    background-color: #f8fafc;
    border: 1px solid #e2e8f0;
    border-radius: 0.75rem;
    font-size: 0.95rem;
    color: #1e293b;
    transition: all 0.2s ease;
    outline: none;
}

.form-input:focus, .form-select:focus {
    background-color: #ffffff;
    border-color: var(--motozo-blue);
    box-shadow: 0 0 0 3px rgba(36, 50, 97, 0.1);
}

.form-select {
    appearance: none;
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 20 20'%3e%3cpath stroke='%236b7280' stroke-linecap='round' stroke-linejoin='round' stroke-width='1.5' d='M6 8l4 4 4-4'/%3e%3c/svg%3e");
    background-position: right 0.5rem center;
    background-repeat: no-repeat;
    background-size: 1.5em 1.5em;
}

/* Card Hover Effects */
.benefit-card {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.benefit-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
}

/* Accordion Animation */
.accordion-content {
    transition: max-height 0.3s ease-out, opacity 0.3s ease-out;
    max-height: 0;
    opacity: 0;
    overflow: hidden;
}
.accordion-content.active {
    max-height: 500px; /* FIX: max-height missing tha, accordion open nahi hota tha */
    opacity: 1;
}

/* Smooth Scroll behavior fix for fixed header */
html {
    scroll-padding-top: 100px;
}

/* Process Timeline Connector */
.process-connector::after {
    content: '';
    position: absolute;
    top: 2rem;
    left: 100%; /* FIX: 50% tha, line galat jagah se shuru hoti thi */
    width: 100%;
    height: 2px;
    background: rgba(255,255,255,0.2);
    z-index: 0;
    display: none;
}

@media (min-width: 768px) {
    .process-connector:not(:last-child)::after {
        display: block;
    }
}