:root {
    --primary-color: #0f172a; /* Navy Blue */
    --secondary-color: #c5a059; /* Gold */
    --light-bg: #f8f9fa;
    --text-dark: #333;
}

body {
    font-family: 'Lato', sans-serif;
    color: var(--text-dark);
    overflow-x: hidden;
}

h1, h2, h3, h4, h5 {
    font-family: 'Playfair Display', serif;
}

/* Navigation */
.navbar {
    background-color: var(--primary-color);
    padding: 1rem 0;
    transition: all 0.3s ease;
}

.navbar-brand {
    font-family: 'Playfair Display', serif;
    font-weight: 700;
    color: var(--secondary-color) !important;
    font-size: 1.5rem;
}

.nav-link {
    color: white !important;
    margin-left: 15px;
    font-weight: 400;
    transition: color 0.3s;
}

.nav-link:hover {
    color: var(--secondary-color) !important;
}

/* Showcase / Hero Section */
.hero-section {
    background: linear-gradient(rgba(15, 23, 42, 0.8), rgba(15, 23, 42, 0.7)), url('../img/blind\ justice.jpeg');
    background-size: cover;
    background-position: center;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 20px;
}

.hero-subtitle {
    font-size: 1.5rem;
    margin-bottom: 30px;
    font-weight: 300;
}

.btn-gold {
    background-color: var(--secondary-color);
    color: white;
    padding: 12px 30px;
    border-radius: 2px;
    text-transform: uppercase;
    letter-spacing: 1px;
    border: 2px solid var(--secondary-color);
    transition: all 0.3s;
}

.btn-gold:hover {
    background-color: transparent;
    color: var(--secondary-color);
}

/* Section Styling */
section {
    padding: 80px 0;
}

.section-title {
    text-align: center;
    margin-bottom: 60px;
    position: relative;
}

.section-title h2 {
    font-size: 2.5rem;
    color: var(--primary-color);
}

.section-title::after {
    content: '';
    display: block;
    width: 60px;
    height: 3px;
    background-color: var(--secondary-color);
    margin: 20px auto 0;
}

/* Services */
.service-card {
    background: white;
    padding: 40px 20px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    transition: transform 0.3s ease;
    height: 100%;
    border-bottom: 3px solid transparent;
}

.service-card:hover {
    transform: translateY(-10px);
    border-bottom: 3px solid var(--secondary-color);
}

.service-icon {
    font-size: 3rem;
    color: var(--secondary-color);
    margin-bottom: 20px;
}

/* Gallery */
.gallery-img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    border-radius: 4px;
    transition: transform 0.4s ease;
    cursor: pointer;
}

.gallery-item {
    overflow: hidden;
    border-radius: 4px;
    margin-bottom: 24px;
}

.gallery-item:hover .gallery-img {
    transform: scale(1.1);
}

/* Directions / Map */
.map-container {
    height: 400px;
    width: 100%;
    border: 5px solid white;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

/* Contact */
.contact-section {
    background-color: var(--primary-color);
    color: white;
}

.contact-section .section-title h2 {
    color: white;
}

.form-control {
    border-radius: 0;
    padding: 15px;
    margin-bottom: 20px;
    border: none;
}

.contact-info-item {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
}

.contact-info-item i {
    color: var(--secondary-color);
    font-size: 1.5rem;
    margin-right: 15px;
    width: 30px;
}

/* Footer */
footer {
    background-color: #0a0f1c;
    color: #aaa;
    padding: 30px 0;
    text-align: center;
    font-size: 0.9rem;
}