:root {
--graphite: #1a1a1a;
--dark-gray: #2a2a2a;
--medium-gray: #4a4a4a;
--light-gray: #e8e8e8;
--concrete: #f0f0f0;
--accent-gold: #B89A6E;
--accent-gold-dark: #9C8255;
--white: #ffffff;
--shadow-sm: 0 2px 10px rgba(0, 0, 0, 0.1);
--shadow-md: 0 4px 20px rgba(0, 0, 0, 0.15);
--shadow-lg: 0 10px 30px rgba(0, 0, 0, 0.2);
--transition: all 0.3s ease;
}
* {
margin: 0;
padding: 0;
box-sizing: border-box;
}
body {
font-family: 'Inter', sans-serif;
color: var(--white);
background-color: var(--graphite);
overflow-x: hidden;
line-height: 1.6;
}
h1, h2, h3, h4, h5, h6 {
font-family: 'Manrope', sans-serif;
font-weight: 800;
line-height: 1.2;
}
.container {
padding-left: 1.5rem;
padding-right: 1.5rem;
width: 100%;
max-width: 1200px;
margin: 0 auto;
}
/* Header & Navigation */
header {
position: fixed;
top: 0;
left: 0;
width: 100%;
z-index: 1000;
padding: 15px 0;
transition: var(--transition);
}
header.scrolled{
background-color: rgba(26, 26, 26, 0.95);
box-shadow: var(--shadow-md);
padding: 10px 0;
}
.navbar {
padding: 0;
}
.navbar-brand {
display: flex;
align-items: center;
font-family: 'Manrope', sans-serif;
font-weight: 800;
font-size: 1.3rem;
color: var(--white) !important;
white-space: nowrap;
}
.navbar-brand span.accent {
color: var(--accent-gold);
}
.navbar-brand .logo-block {
display: inline-block;
width: 46px;
height: 46px;
background-image: url("/static/assets/logo.png");
background-size: contain;
background-repeat: no-repeat;
background-position: center;
margin-right: 8px;
border-radius: 4px;
position: relative;
overflow: hidden;
flex-shrink: 0;
}
.navbar-nav .nav-link {
color: var(--white) !important;
font-weight: 500;
font-size: 1.05rem;
margin: 0 8px;
position: relative;
padding: 5px 0 !important;
transition: var(--transition);
white-space: nowrap;
}
.navbar-nav .nav-link:hover,
.navbar-nav .nav-link.active {
color: var(--accent-gold) !important;
}
.navbar-nav .nav-link::after {
content: '';
position: absolute;
bottom: 0;
left: 0;
width: 0;
height: 2px;
background-color: var(--accent-gold);
transition: var(--transition);
}
.navbar-nav .nav-link:hover::after,
.navbar-nav .nav-link.active::after {
width: 100%;
}
.navbar-toggler {
border: none;
padding: 0;
margin-left: 15px;
}
.navbar-toggler-icon {
width: 24px;
height: 24px;
display: inline-block;
}
/* Page Header */
.page-header {
min-height: 40vh;
background: linear-gradient(rgba(26, 26, 26, 0.35), rgba(42, 42, 42, 0.45)), url('/static/assets/services-1.jpg');
background-size: cover;
background-position: center;
display: flex;
align-items: center;
position: relative;
overflow: hidden;
padding-top: 80px;
padding-bottom: 80px;
}
.page-header::before {
content: "";
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100%;
background: linear-gradient(135deg, rgba(42, 42, 42, 0.9) 0%, rgba(26, 26, 26, 0.95) 100%);
z-index: 1;
}
.page-header .container {
position: relative;
z-index: 2;
text-align: center;
}
.page-header h1 {
font-size: 2.5rem;
margin-bottom: 15px;
}
.page-header p {
font-size: 1.2rem;
color: var(--light-gray);
max-width: 700px;
margin: 0 auto;
}
/* About Section */
.about-section {
padding: 80px 0;
background-color: var(--dark-gray);
}
.section-title {
text-align: center;
margin-bottom: 60px;
padding: 0 15px;
}
.section-title h2 {
font-size: 2.5rem;
position: relative;
display: inline-block;
padding-bottom: 15px;
}
.section-title h2::after {
content: '';
position: absolute;
bottom: 0;
left: 50%;
transform: translateX(-50%);
width: 60px;
height: 3px;
background: var(--accent-gold);
border-radius: 2px;
}
.about-content {
max-width: 800px;
margin: 0 auto 60px;
}
.about-content p {
margin-bottom: 20px;
font-size: 1.1rem;
color: var(--light-gray);
opacity: 0.9;
line-height: 1.7;
}
.about-content h3 {
font-size: 1.8rem;
margin: 40px 0 20px;
color: var(--accent-gold);
position: relative;
padding-bottom: 10px;
}
.about-content h3::after {
content: '';
position: absolute;
bottom: 0;
left: 0;
width: 40px;
height: 2px;
background: var(--accent-gold);
border-radius: 1px;
}
.list-item {
margin-bottom: 12px;
padding-left: 25px;
position: relative;
font-size: 1.1rem;
color: var(--light-gray);
opacity: 0.9;
}
.list-item::before {
content: '✓';
position: absolute;
left: 0;
top: 0;
color: var(--accent-gold);
font-size: 1.2rem;
font-weight: bold;
}
.values-grid {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
gap: 30px;
margin-top: 40px;
}
.value-card {
background: rgba(50, 50, 50, 0.7);
border-radius: 16px;
padding: 30px;
box-shadow: var(--shadow-md);
border: 1px solid rgba(255, 255, 255, 0.08);
text-align: center;
transition: var(--transition);
}
.value-card:hover {
transform: translateY(-5px);
box-shadow: var(--shadow-lg);
}
.value-card h3 {
font-size: 1.4rem;
margin-bottom: 15px;
color: var(--accent-gold);
}
.value-card p {
color: var(--light-gray);
font-size: 1rem;
opacity: 0.85;
line-height: 1.6;
}
.quote-box {
background: linear-gradient(135deg, rgba(184, 154, 110, 0.15) 0%, rgba(156, 130, 85, 0.1) 100%);
border-left: 4px solid var(--accent-gold);
padding: 25px;
margin: 50px 0;
border-radius: 0 12px 12px 0;
}
.quote-box p {
font-size: 1.3rem;
font-style: italic;
color: var(--white);
line-height: 1.5;
position: relative;
}
.quote-box p::before,
.quote-box p::after {
content: "";
font-size: 2rem;
color: var(--accent-gold);
opacity: 0.7;
position: absolute;
}
.quote-box p::before {
top: -10px;
left: -10px;
}
.quote-box p::after {
bottom: -20px;
right: -10px;
}
/* Footer */
footer {
background-color: var(--dark-gray);
padding: 60px 0 0;
position: relative;
}
.footer-grid {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
gap: 30px;
margin-bottom: 40px;
}
.footer-col h3 {
font-size: 1.6rem;
margin-bottom: 25px;
position: relative;
padding-bottom: 12px;
}
.footer-col h3::after {
content: '';
position: absolute;
bottom: 0;
left: 0;
width: 35px;
height: 2.5px;
background: var(--accent-gold);
border-radius: 2px;
}
.footer-col p {
color: var(--light-gray);
opacity: 0.85;
margin: 15px 0;
font-size: 0.9rem;
line-height: 1.6;
-webkit-hyphens: auto;
-moz-hyphens: auto;
-ms-hyphens: auto;
hyphens: auto;
white-space: normal;
overflow-wrap: break-word;
word-wrap: break-word;
}
.footer-links {
list-style: none;
margin-top: 15px;
padding-left: 0;
}
.footer-links li {
margin-bottom: 10px;
}
.footer-links a {
color: var(--light-gray);
text-decoration: none;
transition: var(--transition);
font-size: 0.95rem;
display: block;
padding: 4px 0;
}
.footer-links a:hover {
color: var(--accent-gold);
transform: translateX(5px);
padding-left: 5px;
}
.footer-contact-item {
display: flex;
margin-bottom: 12px;
color: var(--light-gray);
opacity: 0.85;
font-size: 0.9rem;
align-items: flex-start;
}
.footer-contact-item i {
min-width: 22px;
display: flex;
align-items: center;
justify-content: center;
margin-top: 3px;
}
.footer-contact-item svg {
width: 16px;
height: 16px;
color: var(--accent-gold);
}
.copyright {
text-align: center;
padding: 20px 0;
border-top: 1px solid rgba(255, 255, 255, 0.08);
color: var(--light-gray);
opacity: 0.7;
font-size: 0.85rem;
margin-top: 25px;
line-height: 1.5;
}
/* Responsive Design */
@media (min-width: 768px) {
.page-header h1 {
font-size: 3.2rem;
}
.page-header p {
font-size: 1.3rem;
}
.about-content p {
font-size: 1.2rem;
}
.about-content h3 {
font-size: 2rem;
}
.quote-box p {
font-size: 1.4rem;
}
}
@media (min-width: 992px) {
.page-header h1 {
font-size: 3.8rem;
}
.page-header p {
font-size: 1.4rem;
}
}