/* Variables */
:root {
    --primary-color: #1A1A1A;
    --accent-color:  #B8932F;
    --text-color:    #2B2B2B;
    --muted-color:   #6B6B6B;
    --light-bg:      #FAFAF7;
    --border-color:  #E5E2D8;
    --transition: all 0.3s ease;
}

/* Global Styles */
body {
    font-family: "Inter", system-ui, -apple-system, sans-serif;
    color: var(--text-color);
    overflow-x: hidden;
    background-color: #ffffff;
}

h1, h2, h3, h4, h5, h6 {
    font-family: "Playfair Display", Georgia, serif;
    color: var(--primary-color);
    letter-spacing: -0.01em;
}

/* Navigation */
.navbar {
    background-color: white;
    box-shadow: 0 1px 0 var(--border-color);
    padding: 1rem 0;
}

.navbar-brand {
    font-family: "Playfair Display", Georgia, serif;
    font-weight: 600;
    font-size: 1.4rem;
    color: var(--primary-color);
    letter-spacing: 0.01em;
}

.nav-link {
    font-weight: 500;
    color: var(--text-color);
    margin: 0 0.5rem;
    transition: var(--transition);
}

.nav-link:hover {
    color: var(--accent-color);
}

/* Hero Section */
.hero-section {
    padding: 8rem 0 4rem;
    background-color: var(--light-bg);
    border-bottom: 1px solid var(--border-color);
}

.hero-text h1 {
    font-size: 3.25rem;
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
    line-height: 1.15;
}

.hero-text .lead {
    color: var(--muted-color);
    font-size: 1.15rem;
}

/* Sections */
.section-padding {
    padding: 5rem 0;
}

.section-title {
    text-align: center;
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: 3rem;
}

/* Values Cards */
.value-card {
    text-align: center;
    padding: 2rem;
    background: white;
    border: 1px solid var(--border-color);
    border-radius: 4px;
    transition: var(--transition);
}

.value-card:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
}

.value-card i {
    font-size: 2.5rem;
    color: var(--accent-color);
    margin-bottom: 1rem;
}

/* Stats Section */
.stat-item {
    margin: 2rem 0;
}

.stat-number {
    font-size: 3rem;
    font-weight: 700;
    color: var(--accent-color);
}

/* Team Cards */
.team-card {
    text-align: center;
    background: white;
    border: 1px solid var(--border-color);
    border-radius: 4px;
    overflow: hidden;
    transition: var(--transition);
}

.team-card:hover {
    transform: translateY(-4px);
}

.team-card img {
    width: 100%;
    height: 300px;
    object-fit: cover;
}

.team-card h3 {
    margin-top: 1.5rem;
    font-weight: 600;
}

.team-card p {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
}

/* Contact Section */
.contact-info {
    padding: 2rem;
}

.contact-item {
    display: flex;
    align-items: center;
    margin-bottom: 1.5rem;
}

.contact-item i {
    font-size: 1.5rem;
    color: var(--accent-color);
    margin-right: 1rem;
}

/* Footer */
.footer {
    background: var(--primary-color);
    color: #e8e5db;
    padding: 3rem 0;
    position: relative;
    overflow: hidden;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: var(--accent-color);
}

.footer p {
    margin-bottom: 0;
    font-size: 1rem;
    opacity: 0.85;
}

.footer-links a,
.footer a.text-white {
    color: #e8e5db !important;
    text-decoration: none;
    transition: var(--transition);
}

.footer-links a:hover,
.footer a.text-white:hover {
    color: var(--accent-color) !important;
}

.social-links {
    display: flex;
    justify-content: flex-end;
    gap: 1.5rem;
}

.social-links a {
    color: white;
    font-size: 1.4rem;
    transition: var(--transition);
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.08);
}

.social-links a:hover {
    color: var(--accent-color);
    background: rgba(255, 255, 255, 0.14);
    transform: translateY(-3px);
}

/* Animations */
@keyframes fadeInUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero-text h1 {
        font-size: 2.25rem;
    }

    .section-padding {
        padding: 3rem 0;
    }

    .team-card img {
        height: 250px;
    }
}

/* Product/Service Cards */
.product-card {
    background: white;
    padding: 2rem;
    border: 1px solid var(--border-color);
    border-radius: 4px;
    height: 100%;
    transition: var(--transition);
}

.product-card:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
}

.product-card h3 {
    color: var(--primary-color);
    margin-bottom: 1.5rem;
    font-weight: 600;
}

.product-features {
    list-style: none;
    padding: 0;
}

.product-features li {
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
}

.product-features li i {
    color: var(--accent-color);
}

.product-subcategory {
    margin-bottom: 1.5rem;
}

.product-subcategory h4 {
    color: var(--accent-color);
    font-size: 1.15rem;
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.product-subcategory p {
    margin-bottom: 1rem;
}

/* Legal page readability */
.terms-content p,
.terms-content li {
    color: var(--text-color);
    line-height: 1.7;
}

.terms-content h2 {
    margin-top: 2rem;
    font-size: 1.5rem;
}
