/* Premium Design Variables */
:root {
    --primary-color: #0f5132;
    /* Deep Corporate Green */
    --primary-light: #18804e;
    --accent-color: #c5a059;
    /* Gold Accent */
    --text-dark: #2c3e50;
    --text-light: #6c757d;
    --bg-light: #f8f9fa;
    --card-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    --font-heading: 'Montserrat', sans-serif;
    --font-body: 'Open Sans', sans-serif;
}

body {
    font-family: var(--font-body);
    color: var(--text-dark);
    background-color: #ffffff;
    overflow-x: hidden;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-heading);
    font-weight: 700;
    color: var(--primary-color);
}

/* Navbar */
.navbar {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.05);
    padding: 1rem 0;
}

.navbar-brand {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--primary-color) !important;
    letter-spacing: -0.5px;
}

.nav-link {
    color: var(--text-dark) !important;
    font-weight: 600;
    padding: 0.5rem 1.2rem !important;
    transition: color 0.3s;
}

.nav-link:hover,
.nav-link.active {
    color: var(--primary-light) !important;
}

/* Hero Section */
.hero-section {
    position: relative;
    padding: 140px 0 100px;
    /* Increased padding */
    background: url('../img/hero-bg.png') no-repeat center center;
    background-size: cover;
    color: white;
}

/* Overlay for readability */
.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(15, 81, 50, 0.85) 0%, rgba(21, 115, 71, 0.6) 100%);
    z-index: 1;
}

.hero-section .container {
    position: relative;
    z-index: 2;
}

.hero-title {
    font-size: 3.5rem;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    color: #fff;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.hero-subtitle {
    font-size: 1.25rem;
    font-weight: 300;
    margin-bottom: 2.5rem;
    color: rgba(255, 255, 255, 0.95);
}

/* Buttons */
.btn-primary {
    background-color: var(--accent-color);
    border-color: var(--accent-color);
    color: #fff;
    padding: 0.8rem 2rem;
    font-weight: 600;
    border-radius: 50px;
    transition: all 0.3s ease;
}

.btn-primary:hover {
    background-color: #b3904d;
    border-color: #b3904d;
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(197, 160, 89, 0.4);
}

.btn-outline-dark {
    color: #fff;
    border-color: rgba(255, 255, 255, 0.7);
    border-radius: 50px;
    padding: 0.8rem 2rem;
    transition: all 0.3s;
}

.btn-outline-dark:hover {
    background-color: white;
    color: var(--primary-color);
    border-color: white;
}

/* Glass Cards */
.card-custom,
.card {
    background: #fff;
    border: none;
    border-radius: 20px;
    box-shadow: var(--card-shadow);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    overflow: hidden;
}

.card-custom:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.feature-title {
    font-size: 1.35rem;
    margin-top: 1.5rem;
    margin-bottom: 1rem;
}

.card-icon {
    width: 80px;
    height: 80px;
    background: rgba(15, 81, 50, 0.1);
    color: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    margin-bottom: 1.5rem;
    transition: all 0.3s;
}

.card-custom:hover .card-icon {
    background: var(--primary-color);
    color: #fff;
    transform: scale(1.1) rotate(5deg);
}

/* Footer */
footer {
    background-color: #1a1a1a;
    color: rgba(255, 255, 255, 0.7);
    padding-top: 5rem;
    font-size: 0.95rem;
}

footer h5 {
    color: #fff;
    margin-bottom: 1.5rem;
}

footer a {
    color: rgba(255, 255, 255, 0.7) !important;
    /* Force override */
    text-decoration: none;
}

footer a:hover {
    color: var(--accent-color) !important;
}

/* Utility */
.text-primary-custom {
    color: var(--accent-color);
}

.bg-light-custom {
    background-color: #f0f2f5;
}