:root {
    --primary-green: #2D4030;
    --accent-brown: #8C7356;
    --light-bg: #F8F9FA;
    --glass-bg: rgba(255, 255, 255, 0.8);
}

body {
    font-family: 'Inter', sans-serif;
    color: #333;
}

/* Glassmorphism Navbar */
.navbar {
    background: var(--glass-bg);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border-bottom: 1px solid rgba(0,0,0,0.05);
    transition: all 0.3s ease;
}

.navbar .nav-link {
    line-height: 2;
}

.navbar .navbar-toggler {
    border: none;
}

/* Hero Section with Video Overlay */
.hero {
    position: relative;
    height: 90vh;
    min-height: 600px;
    display: flex;
    align-items: center;
    overflow: hidden;
    color: white;
}

.hero-video {
    position: absolute;
    top: 50%;
    left: 50%;
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    transform: translate(-50%, -50%);
    z-index: -2;
    object-fit: cover;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, rgba(45, 64, 48, 0.85), rgba(0, 0, 0, 0.3));
    z-index: -1;
}

.btn-apple-primary {
    background-color: var(--primary-green);
    color: white;
    border-radius: 30px;
    padding: 12px 30px;
    font-weight: 600;
    transition: transform 0.2s;
}

.btn-apple-outline {
    border: 2px solid white;
    color: white;
    border-radius: 30px;
    padding: 12px 30px;
    font-weight: 600;
    transition: all 0.2s;
}

.btn-apple-outline.brown {
    border: 2px solid white;
    border-radius: 30px;
    padding: 12px 30px;
    font-weight: 600;
    transition: all 0.2s;
    border-color: var(--accent-brown); 
    color: var(--accent-brown);
}

.btn-apple-primary:hover, .btn-apple-outline:hover {
    transform: scale(1.05);
    color: #fff;
    background-color: var(--accent-brown);
    border-color: var(--accent-brown);
}

/* Cards & Grids */
.card {
    border: none;
    border-radius: 20px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    overflow: hidden;
}

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

.section-padding {
    padding: 100px 0;
}

.tag-brown {
    background: var(--accent-brown);
    color: white;
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 0.8rem;
    display: inline-block;
}

/* Reference Section */
.testimonial-img {
    width: 80px;
    height: 80px;
    object-fit: cover;
    border-radius: 50%;
    border: 3px solid var(--accent-brown);
}

/* Footer */
footer {
    background-color: #1a1a1a;
    color: #aaa;
    padding: 80px 0 30px;
    width: 100%;
    overflow: hidden;
}

.form-control {
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.1);
    color: white;
    border-radius: 10px;
    padding: 12px;
}

.form-control:focus {
    background: rgba(255,255,255,0.1);
    color: white;
    border-color: var(--accent-brown);
    box-shadow: none;
}

.form-control::placeholder {
    color: inherit;
}

.card-img-top {
    width: 100%;
    aspect-ratio: 3 / 2;
    object-fit: cover;
    object-position: center;
}