:root {
    --dark-green: #1a432b;
    --light-green: #2d6a45;
    --gold: #d4af37;
    --gold-hover: #b8962c;
    --light-gray: #f8f9fa;
    --text-color: #333333;
}

body {
    font-family: 'Inter', sans-serif;
    color: var(--text-color);
    background-color: #ffffff;
    display: flex;
    flex-direction: column;
    min-height: 100vh; /* For sticky footer */
}

h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
}

/* Typography and Colors */
.text-gold { color: var(--gold) !important; }
.bg-dark-green { background-color: var(--dark-green) !important; }
.bg-light-gray { background-color: var(--light-gray) !important; }

/* Navbar */
.custom-navbar {
    background-color: var(--dark-green);
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

.custom-navbar .navbar-brand .brand-text {
    line-height: 1.2;
    font-size: 1.2rem;
}

.custom-navbar .nav-link {
    color: rgba(255,255,255,0.85);
    font-weight: 500;
    transition: color 0.3s;
}

.custom-navbar .nav-link:hover,
.custom-navbar .nav-link.active {
    color: var(--gold) !important;
}

.custom-btn-nav {
    border-radius: 20px;
}

.btn-outline-gold {
    color: var(--gold);
    border-color: var(--gold);
    transition: all 0.3s;
}

.btn-outline-gold:hover {
    background-color: var(--gold);
    color: #fff;
}

.btn-gold {
    background-color: var(--gold);
    color: #fff;
    border: none;
    transition: all 0.3s;
}

.btn-gold:hover {
    background-color: var(--gold-hover);
    color: #fff;
}

/* Hero Section */
.hero-section {
    background: linear-gradient(rgba(26, 67, 43, 0.8), rgba(26, 67, 43, 0.8)), url('../img/hero-bg.jpg') center/cover;
    color: #fff;
    padding: 120px 0;
    text-align: center;
    position: relative;
}

.hero-section.page-hero {
    padding: 80px 0;
    background: linear-gradient(rgba(26, 67, 43, 0.9), rgba(26, 67, 43, 0.9));
}

.hero-section h1 {
    font-size: 3.5rem;
    margin-bottom: 20px;
}

.hero-section p {
    font-size: 1.25rem;
    margin-bottom: 30px;
    font-weight: 300;
}

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

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
    border-bottom-color: var(--gold);
}

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

/* List Styles */
.custom-list {
    list-style: none;
    padding-left: 0;
}
.custom-list li {
    position: relative;
    padding-left: 25px;
    margin-bottom: 12px;
}
.custom-list li::before {
    content: '\f00c';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    color: var(--gold);
    position: absolute;
    left: 0;
    top: 2px;
}

/* Gallery Placeholders */
.gallery-placeholder {
    background-color: var(--light-gray);
    border-radius: 8px;
    height: 250px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #999;
}

/* Footer */
.footer-links a {
    color: rgba(255,255,255,0.7);
    text-decoration: none;
    transition: color 0.3s;
    display: block;
    margin-bottom: 8px;
}

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

.contact-info li {
    margin-bottom: 10px;
    color: rgba(255,255,255,0.8);
}

/* Section Padding */
.py-section { padding: 80px 0; }
.pb-section { padding-bottom: 80px; }
.pt-section { padding-top: 80px; }

@media (max-width: 768px) {
    .hero-section h1 { font-size: 2.5rem; }
    .hero-section p { font-size: 1.1rem; }
}
