:root {
    --primary-green: #5E7A5E;
    /* Sage Green */
    --primary-dark: #2F3E2F;
    --accent-gold: #D4AF37;
    --text-dark: #2C2C2C;
    --text-light: #F9F9F9;
    --bg-light: #FFFFFF;
    --bg-off-white: #F4F5F4;

    --font-serif: 'Playfair Display', serif;
    --font-sans: 'Roboto', sans-serif;

    --shadow-soft: 0 4px 20px rgba(0, 0, 0, 0.05);
    --shadow-hover: 0 10px 30px rgba(0, 0, 0, 0.1);
    --transition: all 0.3s ease;
}

body {
    font-family: var(--font-sans);
    color: var(--text-dark);
    margin: 0;
    padding: 0;
    background-color: var(--bg-light);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-serif);
    font-weight: 700;
    color: var(--primary-dark);
    margin-top: 0;
}

/* Header & Top Bar */
header {
    background-color: var(--bg-light);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.top-bar {
    background-color: var(--primary-green);
    color: var(--text-light);
    padding: 8px 5%;
    font-size: 0.85rem;
    display: flex;
    justify-content: space-between;
    letter-spacing: 0.5px;
}

.top-bar a {
    color: white;
    text-decoration: none;
    transition: opacity 0.2s;
}

.top-bar a:hover {
    opacity: 0.8;
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 5%;
    background: white;
}

/* Logo Area - Side by Side */
.logo-area a {
    display: flex;
    align-items: center;
    text-decoration: none;
    gap: 15px;
}

.logo-img {
    height: 60px;
    /* Controlled height */
    width: auto;
}

.logo-text-group {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.logo-text {
    font-family: var(--font-serif);
    font-size: 1.6rem;
    color: var(--primary-dark);
    line-height: 1.1;
    letter-spacing: -0.5px;
}

.logo-subtext {
    font-family: var(--font-sans);
    font-size: 0.8rem;
    color: var(--primary-green);
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-top: 2px;
}

/* Navigation */
.main-nav ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    gap: 35px;
}

.main-nav a {
    color: var(--primary-dark);
    text-decoration: none;
    text-transform: uppercase;
    font-weight: 500;
    font-size: 0.85rem;
    letter-spacing: 1px;
    position: relative;
    padding-bottom: 5px;
    transition: var(--transition);
}

.main-nav a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: 0;
    left: 0;
    background-color: var(--accent-gold);
    transition: var(--transition);
}

.main-nav a:hover {
    color: var(--primary-green);
}

.main-nav a:hover::after {
    width: 100%;
}

/* Hero Section */
.hero {
    background: linear-gradient(rgba(47, 62, 47, 0.7), rgba(47, 62, 47, 0.5)), url('https://images.unsplash.com/photo-1616486338812-3dadae4b4ace?ixlib=rb-1.2.1&auto=format&fit=crop&w=1950&q=80');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    /* Parallax feel */
    height: 75vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    color: white;
    padding: 0 20px;
}

.hero h1 {
    font-size: 4rem;
    font-weight: 700;
    color: white;
    margin-bottom: 1.5rem;
    text-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
}

.hero p {
    font-size: 1.35rem;
    margin-bottom: 2.5rem;
    max-width: 700px;
    font-weight: 300;
    opacity: 0.95;
}

/* Buttons */
.btn-primary {
    background-color: var(--accent-gold);
    color: var(--primary-dark);
    padding: 18px 40px;
    border-radius: 4px;
    /* More professional, less rounded */
    text-decoration: none;
    font-weight: 700;
    text-transform: uppercase;
    font-size: 0.9rem;
    letter-spacing: 1px;
    transition: var(--transition);
    border: none;
    cursor: pointer;
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.3);
}

.btn-primary:hover {
    background-color: #C5A028;
    /* Slightly darker gold */
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(212, 175, 55, 0.4);
}

/* Content Sections */
.section {
    padding: 80px 10%;
    text-align: center;
}

.section h2 {
    font-size: 2.8rem;
    margin-bottom: 20px;
    position: relative;
    display: inline-block;
}

.section h2::after {
    content: '';
    display: block;
    width: 60px;
    height: 3px;
    background: var(--accent-gold);
    margin: 15px auto 0;
}

.section p {
    color: #666;
    max-width: 800px;
    margin: 0 auto 50px;
    font-size: 1.1rem;
}

/* Services Grid */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
}

.service-card {
    padding: 40px 30px;
    background: white;
    border: 1px solid rgba(0, 0, 0, 0.05);
    border-radius: 6px;
    box-shadow: var(--shadow-soft);
    transition: var(--transition);
    text-align: left;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-hover);
    border-color: var(--accent-gold);
}

.service-card h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: var(--primary-green);
}

/* Forms */
.quote-form-container {
    max-width: 700px;
    margin: -100px auto 0;
    /* Pull up into section */
    position: relative;
    background: white;
    padding: 50px;
    border-radius: 8px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    border-top: 5px solid var(--primary-green);
}

.form-group {
    margin-bottom: 25px;
    text-align: left;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
    font-size: 0.95rem;
    color: var(--primary-dark);
}

.form-control {
    width: 100%;
    padding: 15px;
    border: 1px solid #e0e0e0;
    border-radius: 4px;
    font-family: var(--font-sans);
    font-size: 1rem;
    background-color: var(--bg-off-white);
    transition: var(--transition);
}

.form-control:focus {
    border-color: var(--primary-green);
    background-color: white;
    outline: none;
    box-shadow: 0 0 0 3px rgba(94, 122, 94, 0.1);
}

/* Footer */
footer {
    background-color: var(--primary-dark);
    color: rgba(255, 255, 255, 0.7);
    padding: 60px 5%;
    text-align: center;
    font-size: 0.9rem;
    border-top: 5px solid var(--accent-gold);
}