/* VLD Lab Custom Styles */

:root {
    --brand-gold: #c29225;
    --brand-gold-light: #d4a84a;
    --brand-gold-dark: #a67c1e;
    --brand-dark: #333333;
    --brand-dark-deep: #252525;
    --brand-dark-light: #4a4a4a;
    --text-light: #f8f9fa;
    --text-muted: #6c757d;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

/* Navbar */
.navbar {
    border-bottom: 2px solid #f0f0f0;
}

.navbar-brand img {
    max-height: 40px;
}

.navbar-light .navbar-nav .nav-link {
    color: #333;
    font-weight: 500;
    padding: 0.5rem 1rem;
    transition: color 0.3s ease;
}

.navbar-light .navbar-nav .nav-link:hover {
    color: var(--brand-gold);
}

.navbar-light .navbar-nav .nav-link.active {
    color: var(--brand-gold);
    font-weight: 600;
}

.navbar-light .navbar-nav .dropdown-menu .dropdown-item.active {
    background-color: var(--brand-gold);
    color: white;
}

/* Hero Section */
.hero-section {
    background: linear-gradient(135deg, var(--brand-dark) 0%, var(--brand-dark-deep) 100%);
    color: white;
    padding: 100px 0;
    text-align: center;
}

.hero-section h1 {
    font-size: 3rem;
    font-weight: bold;
    margin-bottom: 20px;
    color: var(--brand-gold);
}

.hero-section p {
    font-size: 1.3rem;
    margin-bottom: 30px;
    color: rgba(255, 255, 255, 0.85);
}

/* Services Cards */
.service-card {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    height: 100%;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.service-icon {
    font-size: 3rem;
    color: var(--brand-gold);
    margin-bottom: 20px;
}

/* Contact Form */
.contact-form {
    background: #f8f9fa;
    padding: 40px;
    border-radius: 10px;
}

.contact-info {
    background: var(--brand-dark);
    color: white;
    padding: 40px;
    border-radius: 10px;
}

.contact-info h3 {
    margin-bottom: 30px;
}

.contact-item {
    display: flex;
    align-items: start;
    margin-bottom: 20px;
}

.contact-item i {
    font-size: 1.5rem;
    margin-right: 15px;
    margin-top: 5px;
}

/* Footer */
.site-footer {
    background-color: var(--brand-dark);
}

.site-footer .footer-title {
    color: var(--brand-gold);
    font-weight: 600;
    margin-bottom: 1rem;
}

.site-footer a {
    transition: color 0.3s ease;
}

.site-footer a:hover {
    color: var(--brand-gold) !important;
}

/* Brand Colors */
.text-brand-gold {
    color: var(--brand-gold) !important;
}

.bg-brand-gold {
    background-color: var(--brand-gold) !important;
}

/* Utility Classes */
.section-title {
    font-size: 2.5rem;
    font-weight: bold;
    margin-bottom: 15px;
}

.section-subtitle {
    color: var(--secondary-color);
    font-size: 1.1rem;
    margin-bottom: 40px;
}

.btn-primary {
    background-color: var(--brand-gold);
    border: none;
    padding: 12px 30px;
    font-size: 1.1rem;
    transition: all 0.3s ease;
}

.btn-primary:hover {
    background-color: var(--brand-gold-dark);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(194, 146, 37, 0.4);
}

.bg-primary {
    background-color: var(--brand-dark) !important;
}

/* Responsive */
@media (max-width: 768px) {
    .hero-section h1 {
        font-size: 2rem;
    }

    .hero-section p {
        font-size: 1.1rem;
    }

    .section-title {
        font-size: 2rem;
    }
}
