/* ==========================================
   TWO BUILDERS - MODERN PREMIUM DESIGN
   ========================================== */

:root {
    --brand-green: #6F9A3E;   /* Logo Green */
    --brand-grey: #4B4B4B;    /* Logo Grey */
    --bg-soft: #fcfcfc;
    --text-dark: #333;
}

/* Modern Premium Navbar */
.navbar {
    background: #ffffff !important;
    padding: 15px 5% !important;
    transition: all 0.3s ease;
    border-bottom: 1px solid rgba(0,0,0,0.05);
}

.navbar-brand img {
    height: 60px !important;
    transition: transform 0.3s ease;
}

.navbar-brand:hover img {
    transform: scale(1.05);
}

.nav-item {
    margin: 0 10px;
}

.nav-link {
    color: #4B4B4B !important;
    font-weight: 600 !important;
    text-transform: uppercase;
    font-size: 14px;
    letter-spacing: 1px;
    position: relative;
    padding: 10px 15px !important;
}

.nav-link::after {
    content: '';
    position: absolute;
    width: 0%;
    height: 2px;
    bottom: 0;
    left: 15px;
    background-color: #6F9A3E;
    transition: width 0.3s ease;
}

.nav-link:hover::after, .nav-link.active::after {
    width: 60%;
}

.nav-link:hover {
    color: #6F9A3E !important;
}

/* Hero Section */
.hero-section-shaped {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 100px 8%;
    background-color: #ffffff;
    min-height: 80vh;
}

.hero-text-side { flex: 0 0 45%; }
.crafting-badge { color: #6F9A3E; font-weight: 800; letter-spacing: 3px; text-transform: uppercase; margin-bottom: 20px; display: block; }
.hero-title { font-size: 4.5rem; font-weight: 900; line-height: 1.1; color: #333; margin-bottom: 25px; }
.hero-title span { color: #6F9A3E; }
.hero-description { color: #666; font-size: 1.3rem; margin-bottom: 40px; }

.hero-image-shaped-wrap {
    flex: 0 0 52%;
    position: relative;
    padding-left: 30px;
}

.image-shape-mask {
    width: 100%;
    height: 600px;
    border-radius: 60% 40% 30% 70% / 60% 30% 70% 40%;
    overflow: hidden;
    border: none;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    position: relative;
    z-index: 2;
}

.hero-image-shaped-wrap::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    background: #6F9A3E;
    border-radius: 60% 40% 30% 70% / 60% 30% 70% 40%;
    top: 25px;
    left: 25px;
    z-index: 1;
    filter: blur(40px);
    opacity: 0.5;
}

.image-shape-mask img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform: scale(1.1);
}

/* Buttons */
.hero-cta-buttons { display: flex; gap: 20px; }
.btn-primary-shaped { background-color: #6F9A3E; color: #fff; padding: 18px 40px; font-weight: 700; border-radius: 50px; text-decoration: none; transition: 0.3s; }
.btn-primary-shaped:hover { background-color: #5a7d32; }
.btn-secondary-shaped { background-color: transparent; border: 2px solid #333; color: #333; padding: 18px 40px; font-weight: 700; border-radius: 50px; text-decoration: none; }
.btn-secondary-shaped:hover { background-color: #333; color: #fff; }

/* Expertise Section */
.expertise-section { padding: 80px 0; background: #fff; }
.expertise-card {
    background: #fff;
    padding: 40px;
    border-radius: 20px;
    border: 1px solid #e1e1e1;
    transition: 0.4s;
    text-align: center;
    height: 100%;
}
.expertise-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 35px rgba(0,0,0,0.08);
    border-color: #599839;
}
.expertise-card h3 { margin-bottom: 15px; color: #333; font-weight: 700; }
.card-link { color: #599839; font-weight: 700; text-decoration: none; display: block; margin-top: 20px; text-transform: uppercase; font-size: 0.9rem; }

/* Stats Section */
.stats-section { background: #599839; padding: 60px 0; color: #ffffff; }
.stats-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 30px; text-align: center; }
.stat-value { font-size: 3rem; font-weight: 800; margin-bottom: 5px; }
.stat-title { font-size: 1rem; text-transform: uppercase; letter-spacing: 2px; opacity: 0.9; }

/* Footer Design */
.footer-wrapper { background-color: #ffffff; padding: 60px 0 20px; border-top: 5px solid #599839; }
.footer-column h4 { color: #333; margin-bottom: 20px; font-weight: 700; text-transform: uppercase; font-size: 1.1rem; }
.footer-links { list-style: none; padding: 0; }
.footer-links li a { text-decoration: none; color: #555; display: block; padding: 6px 0; transition: 0.3s; }
.footer-links li a:hover { color: #599839; padding-left: 10px; }
.contact-info p { margin-bottom: 10px; color: #555; }
.contact-info span { color: #599839; font-weight: 800; font-size: 1.1rem; }

/* Responsive */
@media (max-width: 992px) {
    .hero-section-shaped { flex-direction: column; text-align: center; }
    .hero-text-side { flex: 0 0 100%; margin-bottom: 50px; }
    .hero-cta-buttons { justify-content: center; }
}