/* General Styles */
:root {
    --primary-color: #0082B4;
    --secondary-color: #6c757d;
    --success-color: #198754;
}

body {
    font-family: 'Segoe UI', system-ui, -apple-system, sans-serif;
    line-height: 1.6;
    color: #333;
}

/* Header Styles */
.phone-number {
    font-size: 1.5rem;
    color: var(--primary-color);
    margin: 0;
}

/* Hero Section */
.bg-primary {
    background: linear-gradient(135deg, var(--primary-color) 0%, #006690 100%) !important;
}

/* Product Cards */
.product-card {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: none;
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.1);
}

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

.product-card .card-img-top {
    height: 200px;
    object-fit: contain;
}

.product-card .card-title {
    color: var(--primary-color);
    font-size: 1.4rem;
    margin-bottom: 1rem;
}

.product-card ul li {
    margin-bottom: 0.5rem;
}

/* Form Styles */
.form-control:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 0.25rem rgba(0, 130, 180, 0.25);
}

.form-label {
    font-weight: 500;
}

.btn-primary {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
    padding: 0.8rem 2rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
}

.btn-primary:hover {
    background-color: #006690;
    border-color: #006690;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 130, 180, 0.3);
}

.btn-primary:focus {
    background-color: #006690;
    border-color: #006690;
    box-shadow: 0 0 0 0.25rem rgba(0, 130, 180, 0.25);
}

/* Footer */
footer {
    background: linear-gradient(135deg, #212529 0%, #343a40 100%);
}

footer i {
    color: var(--primary-color);
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .phone-number {
        font-size: 1.2rem;
    }
    
    .product-card {
        margin-bottom: 2rem;
    }
} 