:root {
    --primary-color: #0d1b2a; /* Dark Navy */
    --secondary-color: #1b263b; /* Slightly lighter navy */
    --accent-color: #e0e1dd; /* Off-white/Platinum */
    --highlight-color: #c9a227; /* Gold/Bronze for luxury feel */
    --text-color: #333;
    --light-text: #f8f9fa;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    color: var(--text-color);
    line-height: 1.6;
}

/* Navbar */
.navbar {
    background-color: var(--primary-color);
    padding: 1rem 0;
}

.navbar-brand {
    font-weight: 700;
    color: var(--light-text) !important;
    font-size: 1.25rem;
    letter-spacing: 1px;
}

.nav-link {
    color: var(--accent-color) !important;
    font-weight: 500;
    margin-left: 15px;
    transition: color 0.3s;
}

.nav-link:hover {
    color: var(--highlight-color) !important;
}

/* Hero Section */
.hero-section {
    background: linear-gradient(rgba(13, 27, 42, 0.7), rgba(13, 27, 42, 0.7)), url('https://images.unsplash.com/photo-1486406146926-c627a92ad1ab?ixlib=rb-4.0.3&auto=format&fit=crop&w=1920&q=80');
    background-size: cover;
    background-position: center;
    color: var(--light-text);
    padding: 150px 0;
    text-align: center;
}

.hero-title {
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.hero-subtitle {
    font-size: 1.2rem;
    margin-bottom: 40px;
    font-weight: 300;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.btn-primary-custom {
    background-color: var(--highlight-color);
    border: none;
    color: var(--primary-color);
    padding: 12px 30px;
    font-weight: 600;
    text-transform: uppercase;
    transition: all 0.3s;
}

.btn-primary-custom:hover {
    background-color: #b08d1f;
    color: white;
    transform: translateY(-2px);
}

/* Section Common */
.section-padding {
    padding: 80px 0;
}

.section-title {
    text-align: center;
    margin-bottom: 60px;
    color: var(--primary-color);
    font-weight: 700;
    position: relative;
}

.section-title::after {
    content: '';
    display: block;
    width: 60px;
    height: 3px;
    background-color: var(--highlight-color);
    margin: 15px auto 0;
}

/* Services */
.service-card {
    background: white;
    padding: 40px 30px;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    transition: transform 0.3s;
    height: 100%;
    text-align: center;
    border-bottom: 3px solid transparent;
}

.service-card:hover {
    transform: translateY(-10px);
    border-bottom: 3px solid var(--highlight-color);
}

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

/* Contact */
.contact-section {
    background-color: #f8f9fa;
}

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

.contact-info-icon {
    font-size: 1.5rem;
    color: var(--highlight-color);
    margin-right: 15px;
    width: 30px;
    text-align: center;
}

/* Footer */
footer {
    background-color: var(--primary-color);
    color: var(--accent-color);
    padding: 40px 0 20px;
    font-size: 0.9rem;
}

.footer-logo {
    color: var(--light-text);
    font-weight: 700;
    font-size: 1.1rem;
    margin-bottom: 15px;
    display: block;
}

.footer-links a {
    color: var(--accent-color);
    text-decoration: none;
    display: block;
    margin-bottom: 10px;
}

.footer-links a:hover {
    color: var(--highlight-color);
}

.copyright {
    border-top: 1px solid rgba(255,255,255,0.1);
    margin-top: 30px;
    padding-top: 20px;
    text-align: center;
    font-size: 0.8rem;
    opacity: 0.7;
}
