/* Variables for a soft, premium, fresh feel */
:root {
    --primary: #7B9E87; /* Soft Sage Green */
    --primary-hover: #658A71;
    --secondary: #E3D9C6; /* Soft Warm Beige */
    --text-dark: #2D3A3A; /* Dark Slate / Greenish Gray */
    --text-body: #556060;
    --bg-base: #FAF9F6; /* Off-white / Cream */
    --bg-white: #FFFFFF;
    --border: #E8E6DF;
    --shadow-soft: 0 10px 30px rgba(45, 58, 58, 0.05);
    --transition: all 0.3s ease;
    
    --font-heading: 'Playfair Display', serif;
    --font-body: 'DM Sans', sans-serif;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    color: var(--text-body);
    background-color: var(--bg-base);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4 {
    font-family: var(--font-heading);
    color: var(--text-dark);
    line-height: 1.2;
    font-weight: 600;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

.container {
    width: 100%;
    max-width: 1140px;
    margin: 0 auto;
    padding: 0 24px;
}

.text-center {
    text-align: center;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px 28px;
    border-radius: 40px;
    font-weight: 500;
    font-size: 1rem;
    cursor: pointer;
    transition: var(--transition);
    border: 1px solid transparent;
}

.btn-large {
    padding: 16px 36px;
    font-size: 1.1rem;
}

.btn-primary {
    background-color: var(--primary);
    color: white;
}

.btn-primary:hover {
    background-color: var(--primary-hover);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(123, 158, 135, 0.3);
}

.btn-secondary {
    background-color: var(--bg-white);
    color: var(--text-dark);
    border-color: var(--border);
}

.btn-secondary:hover {
    border-color: var(--primary);
    color: var(--primary);
    transform: translateY(-2px);
}

/* Header */
header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 100;
    background-color: rgba(250, 249, 246, 0.9);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid transparent;
    transition: var(--transition);
    padding: 20px 0;
}

header.scrolled {
    padding: 12px 0;
    border-bottom-color: var(--border);
    background-color: rgba(255, 255, 255, 0.95);
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: var(--font-heading);
    font-size: 1.4rem;
    font-weight: 600;
    color: var(--text-dark);
}

.logo i {
    color: var(--primary);
}

.desktop-nav {
    display: flex;
    gap: 32px;
    align-items: center;
}

.desktop-nav a {
    font-weight: 500;
    font-size: 0.95rem;
    color: var(--text-dark);
}

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

.nav-highlight {
    color: var(--primary) !important;
    position: relative;
}

.nav-highlight::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 100%;
    height: 1px;
    background-color: var(--primary);
}

/* Hero Section */
.hero {
    position: relative;
    padding: 160px 0 100px;
    min-height: 90vh;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.hero-image {
    position: absolute;
    top: 0;
    right: 0;
    width: 55%;
    height: 100%;
    z-index: -1;
}

.hero-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: left center;
}

.hero-image .overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, var(--bg-base) 0%, rgba(250, 249, 246, 0.8) 40%, rgba(250, 249, 246, 0) 100%);
}

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

.hero-text {
    max-width: 600px;
}

.eyebrow {
    display: inline-block;
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--primary);
    margin-bottom: 20px;
}

.hero h1 {
    font-size: 4rem;
    margin-bottom: 24px;
}

.hero p {
    font-size: 1.2rem;
    margin-bottom: 40px;
    max-width: 500px;
}

.hero-actions {
    display: flex;
    gap: 16px;
    margin-bottom: 24px;
    flex-wrap: wrap;
}

.contact-note {
    font-size: 0.9rem !important;
    color: #8c9b9b !important;
    display: flex;
    align-items: center;
    gap: 8px;
}

/* Benefits Section */
.benefits {
    padding: 80px 0;
    background-color: var(--bg-white);
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
}

.benefit-card {
    text-align: center;
    padding: 32px;
}

.benefit-card i {
    font-size: 2.5rem;
    color: var(--secondary);
    margin-bottom: 20px;
}

.benefit-card h3 {
    font-size: 1.5rem;
    margin-bottom: 12px;
}

/* Services Section */
.services {
    padding: 120px 0;
}

.section-heading {
    margin-bottom: 64px;
}

.section-heading h2 {
    font-size: 3rem;
    margin-bottom: 16px;
}

.section-heading p {
    font-size: 1.1rem;
}

.services-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 32px;
}

.service-item {
    display: flex;
    gap: 24px;
    background-color: var(--bg-white);
    padding: 40px;
    border-radius: 20px;
    box-shadow: var(--shadow-soft);
    border: 1px solid rgba(0,0,0,0.02);
    transition: var(--transition);
}

.service-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(45, 58, 58, 0.08);
}

.service-icon {
    width: 64px;
    height: 64px;
    background-color: var(--secondary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: var(--text-dark);
    flex-shrink: 0;
}

.service-info h3 {
    font-size: 1.4rem;
    margin-bottom: 12px;
}

/* How to get a quote */
.how-to-quote {
    padding: 100px 0;
    background-color: var(--text-dark);
    color: var(--bg-base);
}

.how-to-quote h2 {
    color: var(--bg-white);
    font-size: 2.5rem;
    margin-bottom: 24px;
}

.quote-wrapper {
    max-width: 800px;
    margin: 0 auto;
}

.steps {
    margin: 48px 0;
    display: flex;
    flex-direction: column;
    gap: 32px;
}

.step {
    display: flex;
    gap: 24px;
    align-items: flex-start;
}

.step-num {
    width: 48px;
    height: 48px;
    background-color: rgba(255,255,255,0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-heading);
    font-size: 1.5rem;
    color: var(--primary);
    flex-shrink: 0;
}

.step h4 {
    color: var(--bg-white);
    font-family: var(--font-body);
    font-size: 1.2rem;
    margin-bottom: 8px;
}

.step p {
    color: rgba(255,255,255,0.7);
}

/* Footer */
footer {
    background-color: var(--bg-white);
    padding: 80px 0 40px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 64px;
    margin-bottom: 64px;
}

.footer-brand .logo {
    margin-bottom: 24px;
}

.footer-brand p {
    max-width: 400px;
}

.footer-contact h4 {
    margin-bottom: 24px;
    font-family: var(--font-body);
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 0.9rem;
}

.footer-contact ul {
    list-style: none;
}

.footer-contact li {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 16px;
}

.footer-contact li i {
    color: var(--primary);
}

.footer-contact a:hover {
    color: var(--primary);
}

.footer-bottom {
    padding-top: 32px;
    border-top: 1px solid var(--border);
    text-align: center;
    font-size: 0.9rem;
}

/* Responsive */
@media (max-width: 992px) {
    .hero {
        padding: 120px 0 80px;
    }
    
    .hero-image {
        width: 100%;
        opacity: 0.2;
    }
    
    .hero-image .overlay {
        background: linear-gradient(180deg, var(--bg-base) 0%, rgba(250, 249, 246, 0.9) 100%);
    }
    
    .hero h1 {
        font-size: 3rem;
    }
    
    .services-list {
        grid-template-columns: 1fr;
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
}

@media (max-width: 768px) {
    .desktop-nav, .header-action {
        display: none;
    }
    
    .hero h1 {
        font-size: 2.5rem;
    }
    
    .hero-actions {
        flex-direction: column;
    }
    
    .hero-actions .btn {
        width: 100%;
    }
}
