

/* Custom CSS for Packers and Movers Website */

:root {
    --primary-orange: #f50b2e;
    --primary-yellow: #000000;
    --danger-red: #dc3545;
    --dark-bg: #1f2937;
    --light-bg: #f8f9fa;
}

/* Global Styles */
body {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", "Roboto", "Oxygen", "Ubuntu", "Cantarell", "Fira Sans", "Droid Sans", "Helvetica Neue", sans-serif;
    line-height: 1.6;
}

/* Header Styles */
.header-top {
    background: linear-gradient(135deg, #101010, #ea0808);
    padding: 10px 0;
}

.header-nav {
    background: linear-gradient(135deg, #1a1a19, #d90606);
    padding: 15px 0;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.navbar-brand img {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    border: 2px solid white;
}

.nav-link {
    font-weight: 600;
    font-size: 14px;
    transition: all 0.3s ease;
    position: relative;
}

.nav-link:hover {
    color: #000 !important;
}

.nav-link.active {
    color: #000 !important;
}

.branch-badge {
    background: white;
    color: #000;
    font-weight: 600;
    font-size: 12px;
    padding: 5px 10px;
    border-radius: 15px;
}

/* Form Styles */
.form-control-dark {
    background-color: #374151;
    border: 1px solid #4b5563;
    color: white;
}

.form-control-dark:focus {
    background-color: #374151;
    border-color: #ea0808;
    color: white;
    box-shadow: 0 0 0 0.2rem rgba(234, 179, 8, 0.25);
}

.form-control-dark::placeholder {
    color: #9ca3af;
}

.form-select.form-control-dark {
    background-color: #374151;
    border: 1px solid #4b5563;
    color: white;
}

.btn-gradient {
    background: linear-gradient(135deg, #0e0601, #ea0808);
    border: none;
    color: white;
    font-weight: bold;
    transition: all 0.3s ease;
}

.btn-gradient:hover {
    background: linear-gradient(135deg, #000000, #ca0404);
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(234, 88, 12, 0.4);
}

/* Hero Section */
.hero-section {
    min-height: 100vh;
    background: #f8f9fa;
}

.content-area {
    padding-left: 2rem;
}

@media (max-width: 992px) {
    .content-area {
        padding-left: 0;
        margin-top: 2rem;
    }
}

/* Call Buttons */
.call-buttons {
    position: fixed;
    bottom: 20px;
    left: 20px;
    z-index: 1000;
}

.call-btn {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 20px;
    border-radius: 25px;
    text-decoration: none;
    font-weight: bold;
    font-size: 14px;
    margin-bottom: 10px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
    transition: all 0.3s ease;
}

.call-btn:hover {
    transform: scale(1.05);
    text-decoration: none;
}

.call-btn-phone {
    background: #16a34a;
    color: white;
}

.call-btn-whatsapp {
    background: #22c55e;
    color: white;
}

/* Footer Styles */
.footer {
    background: #1f2937;
    color: white;
    padding: 50px 0 20px;
}

.footer h3, .footer h4 {
    color: #ea081b;
}

.footer a {
    color: #d1d5db;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer a:hover {
    color: white;
}

.branch-card {
    background: #5a100a;
    padding: 20px;
    border-radius: 10px;
    margin-bottom: 20px;
    transition: all 0.3s ease;
}

.branch-card:hover {
    background: #4b5563;
}

.branch-card h5 {
    color: white;
    font-weight: bold;
}

.branch-card .text-muted {
    color: #d1d5db !important;
}

.contact-icon {
    color: #000000;
    width: 16px;
}

/* Page Specific Styles */
.page-header {
    background: linear-gradient(135deg, #232222, #ea0808);
    color: white;
    padding: 60px 0;
    text-align: center;
}

.service-card {
    transition: all 0.3s ease;
    height: 100%;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.stat-card {
    text-align: center;
    padding: 30px;
    background: white;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.stat-number {
    font-size: 3rem;
    font-weight: bold;
    color: #dc3545;
}

/* Animation Classes */
.fade-in {
    animation: fadeIn 0.6s ease-out;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive Design */
@media (max-width: 768px) {
    .header-top .container {
        flex-direction: column;
        text-align: center;
        gap: 10px;
    }
    
    .nav-link {
        font-size: 12px;
        padding: 5px 10px;
    }
    
    .call-buttons {
        left: 10px;
        right: 10px;
        bottom: 10px;
    }
    
    .call-btn {
        padding: 10px 15px;
        font-size: 12px;
        border-radius: 20px;
    }
    
    .branch-card {
        margin-bottom: 15px;
    }
}

/* Additional Component Styles */
.contact-card {
    background: white;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    margin-bottom: 20px;
    transition: all 0.3s ease;
}

.contact-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.15);
}

.process-step {
    text-align: center;
    padding: 20px;
}

.process-number {
    width: 60px;
    height: 60px;
    background: #fee2e2;
    color: #dc3545;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    font-weight: bold;
    margin: 0 auto 20px;
}

.investment-card {
    background: linear-gradient(135deg, #fef3c7, #fed7aa);
    padding: 20px;
    border-radius: 10px;
    text-align: center;
    margin-bottom: 15px;
}

.login-tab {
    cursor: pointer;
    padding: 15px 30px;
    background: #f8f9fa;
    border: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

.login-tab.active {
    background: #dc3545;
    color: white;
}

/* Form Validation Styles */
.form-control:invalid {
    border-color: #dc3545;
}

.form-control:valid {
    border-color: #28a745;
}

/* Loading Animation */
.loading {
    opacity: 0.6;
    pointer-events: none;
}

.spinner {
    display: inline-block;
    width: 20px;
    height: 20px;
    border: 3px solid rgba(255,255,255,.3);
    border-radius: 50%;
    border-top-color: #fff;
    animation: spin 1s ease-in-out infinite;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}
.bg-primary-black {
    background-color: #000000 !important;
    color: #ffffff !important;
    padding: 15px 0;
}

