/* Hostinger CSS Fix - Load this first */

/* Reset and Base Styles */
* {
    box-sizing: border-box;
}

body {
    font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif !important;
    line-height: 1.6 !important;
    color: #2d3748 !important;
    background-color: #f8f9fa !important;
    margin: 0 !important;
    padding: 0 !important;
}

/* Container Fix */
.container {
    max-width: 1600px !important;
    margin: 0 auto !important;
    padding: 0 20px !important;
}

/* Button Fixes */
.btn {
    display: inline-flex !important;
    align-items: center !important;
    gap: 8px !important;
    padding: 12px 24px !important;
    border-radius: 8px !important;
    font-weight: 500 !important;
    text-decoration: none !important;
    transition: all 0.3s ease !important;
    border: none !important;
    cursor: pointer !important;
    font-size: 14px !important;
    line-height: 1.5 !important;
}

.btn-primary {
    background: #667eea !important;
    color: white !important;
    border-color: #667eea !important;
}

.btn-primary:hover {
    background: #5a67d8 !important;
    border-color: #5a67d8 !important;
    transform: translateY(-1px) !important;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1) !important;
    color: white !important;
}

/* Card Fixes */
.card {
    background: white !important;
    border-radius: 12px !important;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1) !important;
    overflow: hidden !important;
    transition: all 0.3s ease !important;
    border: 1px solid #e2e8f0 !important;
}

.card:hover {
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1) !important;
    transform: translateY(-2px) !important;
}

/* Navbar Fixes */
.navbar {
    background: white !important;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1) !important;
    border-bottom: 1px solid #e9ecef !important;
    padding: 1rem 0 !important;
}

.navbar-brand {
    font-weight: 700 !important;
    color: #667eea !important;
    font-size: 1.5rem !important;
}

.nav-link {
    color: #4a5568 !important;
    font-weight: 500 !important;
    padding: 0.5rem 1rem !important;
    transition: all 0.3s ease !important;
}

.nav-link:hover {
    color: #667eea !important;
}

/* Form Fixes */
.form-control,
input,
select,
textarea {
    padding: 12px 16px !important;
    border: 2px solid #e2e8f0 !important;
    border-radius: 8px !important;
    font-size: 14px !important;
    transition: all 0.3s ease !important;
    background: white !important;
    color: #2d3748 !important;
}

.form-control:focus,
input:focus,
select:focus,
textarea:focus {
    outline: none !important;
    border-color: #667eea !important;
    box-shadow: 0 0 0 3px rgba(102, 126, 234, 0.1) !important;
}

/* Typography Fixes */
h1, h2, h3, h4, h5, h6 {
    color: #2d3748 !important;
    font-weight: 600 !important;
    line-height: 1.3 !important;
    margin-bottom: 1rem !important;
}

p {
    color: #4a5568 !important;
    line-height: 1.6 !important;
    margin-bottom: 1rem !important;
}

/* Dropdown Fixes */
.dropdown-menu {
    border: none !important;
    box-shadow: 0 4px 12px rgba(0,0,0,0.15) !important;
    border-radius: 8px !important;
}

.dropdown-item {
    padding: 0.75rem 1rem !important;
    color: #4a5568 !important;
    transition: all 0.3s ease !important;
}

.dropdown-item:hover {
    background-color: #667eea !important;
    color: white !important;
}

/* Hero Section Fix */
.hero-section {
    position: relative !important;
    min-height: 100vh !important;
    display: flex !important;
    align-items: center !important;
    overflow: hidden !important;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%) !important;
}

.hero-content {
    position: relative !important;
    z-index: 2 !important;
    text-align: center !important;
    color: white !important;
    padding: 80px 0 !important;
}

.hero-title {
    font-size: 3.5rem !important;
    font-weight: 700 !important;
    line-height: 1.2 !important;
    margin-bottom: 24px !important;
    color: white !important;
}

/* Responsive Fixes */
@media (max-width: 768px) {
    .hero-title {
        font-size: 2.5rem !important;
    }
    
    .container {
        padding: 0 16px !important;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2rem !important;
    }
    
    .btn {
        padding: 10px 20px !important;
        font-size: 13px !important;
    }
}



/* Utility Classes */
.text-center { text-align: center !important; }
.text-left { text-align: left !important; }
.text-right { text-align: right !important; }
.d-flex { display: flex !important; }
.d-block { display: block !important; }
.d-none { display: none !important; }
.justify-content-center { justify-content: center !important; }
.align-items-center { align-items: center !important; }
.mb-0 { margin-bottom: 0 !important; }
.mb-1 { margin-bottom: 8px !important; }
.mb-2 { margin-bottom: 16px !important; }
.mb-3 { margin-bottom: 24px !important; }
.mt-0 { margin-top: 0 !important; }
.mt-1 { margin-top: 8px !important; }
.mt-2 { margin-top: 16px !important; }
.mt-3 { margin-top: 24px !important; }