/* Compiled Tailwind CSS - Generated Styles */

:root {
    --siroco-orange: #FF8C42;
    --siroco-dark: #1a2332;
    --siroco-light: #f5f5f5;
}

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

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    color: var(--siroco-dark);
    background: white;
    line-height: 1.6;
}

.hero-gradient {
    background: linear-gradient(135deg, var(--siroco-dark) 0%, #2d3e50 100%);
}

.btn-primary {
    background-color: var(--siroco-orange);
    color: white;
    padding: 12px 24px;
    border-radius: 8px;
    font-weight: 600;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-primary:hover {
    background-color: #f5791a;
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(255, 140, 66, 0.3);
}

.btn-secondary {
    border: 2px solid var(--siroco-orange);
    color: var(--siroco-orange);
    padding: 10px 22px;
    border-radius: 8px;
    font-weight: 600;
    background: transparent;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-secondary:hover {
    background-color: var(--siroco-orange);
    color: white;
}

.card {
    background: white;
    border-radius: 12px;
    transition: all 0.3s ease;
    border: 1px solid #e5e7eb;
    padding: 24px;
}

.card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.service-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--siroco-orange), #f5791a);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 28px;
    margin-bottom: 16px;
}

.fade-in-up {
    animation: fadeInUp 0.6s ease-out;
}

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

.navbar {
    background: white;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    position: sticky;
    top: 0;
    z-index: 100;
}

.footer {
    background: var(--siroco-dark);
    color: white;
}

.input-field {
    border: 2px solid #e5e7eb;
    border-radius: 8px;
    padding: 12px 16px;
    width: 100%;
    font-family: inherit;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.input-field:focus {
    outline: none;
    border-color: var(--siroco-orange);
    box-shadow: 0 0 0 3px rgba(255, 140, 66, 0.1);
}

.alert {
    padding: 16px;
    border-radius: 8px;
    margin-bottom: 16px;
    display: none;
}

.alert-success {
    background-color: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
}

.alert-error {
    background-color: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb;
}

.hidden {
    display: none !important;
}

/* Responsive utilities */
@media (max-width: 768px) {
    .md\:hidden {
        display: none;
    }
}

@media (min-width: 768px) {
    .hidden {
        display: block !important;
    }
}
