:root {
    --primary-color: #2b5329;
    --secondary-color: #ff6b00;
    --dark-color: #333;
    --light-color: #fff;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    line-height: 1.6;
    color: var(--dark-color);
    padding-top: 60px;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Navigation */
.top-nav {
    background: var(--dark-color);
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 15px 0;
}

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

.logo {
    display: flex;
    align-items: center;
}

.logo-img {
    height: 40px;
    width: auto;
}

.nav-links {
    display: flex;
    gap: 20px;
    align-items: center;
}

.nav-links a {
    color: var(--light-color);
    text-decoration: none;
    font-weight: 500;
    letter-spacing: -0.01em;
}

.nav-cta {
    background: var(--secondary-color);
    padding: 8px 15px;
    border-radius: 8px;
    transition: background 0.3s, transform 0.2s;
}

.nav-cta:hover {
    background: #ff8533;
    transform: translateY(-1px);
}

/* Hamburger Menu */
.hamburger {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 10px;
    z-index: 1001;
}

.hamburger span {
    display: block;
    width: 25px;
    height: 3px;
    background-color: var(--light-color);
    margin: 5px 0;
    transition: all 0.3s ease;
}

.hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
}

.hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -7px);
}

/* Hero Section */
.hero {
    background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)),
                url('images/hero.jpg');
    background-size: cover;
    background-position: center;
    color: var(--light-color);
    padding: 100px 0;
    text-align: center;
    min-height: 600px;
    display: flex;
    align-items: center;
}

.hero h1 {
    font-size: 3.5rem;
    margin-bottom: 20px;
    font-weight: 700;
    letter-spacing: -0.03em;
    line-height: 1.2;
}

.hero-text {
    font-size: 1.25rem;
    margin-bottom: 30px;
    font-weight: 400;
    letter-spacing: -0.01em;
}

.urgent {
    color: var(--secondary-color);
    font-weight: 600;
    margin-top: 20px;
    letter-spacing: -0.01em;
}

/* Service Images */
.service-img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 12px 12px 0 0;
    margin-bottom: 20px;
}

/* CTA Buttons */
.cta-button {
    display: inline-block;
    background: var(--secondary-color);
    color: var(--light-color);
    padding: 16px 32px;
    text-decoration: none;
    border-radius: 8px;
    font-size: 1.125rem;
    font-weight: 600;
    transition: all 0.3s ease;
    letter-spacing: -0.01em;
}

.cta-button:hover {
    background: #ff8533;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(255, 107, 0, 0.2);
}

/* Services Section */
.services {
    padding: 80px 0;
    background: #f9f9f9;
}

.service-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin: 40px 0;
}

.service-card {
    background: var(--light-color);
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    text-align: left;
    overflow: hidden;
    transition: transform 0.3s ease;
}

.service-card:hover {
    transform: translateY(-5px);
}

.service-card h3 {
    color: var(--primary-color);
    margin-bottom: 15px;
    font-size: 1.5rem;
    padding: 0 30px;
    font-weight: 600;
    letter-spacing: -0.02em;
}

.service-card p {
    margin-bottom: 20px;
    color: #4a5568;
    padding: 0 30px;
    font-size: 1rem;
    line-height: 1.7;
}

.service-features {
    list-style: none;
    margin-top: 15px;
    padding: 0 30px 30px;
}

.service-features li {
    margin: 12px 0;
    padding-left: 25px;
    position: relative;
    color: #4a5568;
}

.service-features li::before {
    content: "•";
    color: var(--primary-color);
    position: absolute;
    left: 0;
    font-weight: bold;
}

/* About Section */
.about {
    padding: 80px 0;
    background: linear-gradient(rgba(0, 0, 0, 0.8), rgba(0, 0, 0, 0.8)),
                url('images/hero.jpg');
    background-size: cover;
    background-position: center;
    color: var(--light-color);
}

.about h2 {
    color: var(--light-color);
    letter-spacing: -0.02em;
}

.benefits {
    list-style: none;
    margin: 30px 0;
}

.benefits li {
    margin: 16px 0;
    padding-left: 25px;
    position: relative;
    font-size: 1.125rem;
    letter-spacing: -0.01em;
}

.benefits li::before {
    content: "✓";
    color: var(--secondary-color);
    position: absolute;
    left: 0;
}

/* Testimonials Section */
.testimonials {
    padding: 80px 0;
    background: #f9f9f9;
}

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

.testimonial {
    background: var(--light-color);
    padding: 35px;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease;
}

.testimonial:hover {
    transform: translateY(-5px);
}

.testimonial p {
    font-style: italic;
    margin-bottom: 20px;
    font-size: 1.125rem;
    line-height: 1.7;
    color: #4a5568;
}

.testimonial cite {
    color: var(--primary-color);
    font-weight: 600;
    font-style: normal;
    letter-spacing: -0.01em;
}

/* CTA Boxes */
.cta-box {
    background: var(--primary-color);
    color: var(--light-color);
    padding: 50px;
    text-align: center;
    border-radius: 12px;
    margin: 40px 0;
}

.cta-box p {
    font-size: 1.5rem;
    margin-bottom: 25px;
    font-weight: 600;
    letter-spacing: -0.02em;
}

/* Footer */
footer {
    background: var(--dark-color);
    color: var(--light-color);
    padding: 60px 0;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 30px;
}

.footer-address h3 {
    margin-bottom: 15px;
    font-size: 1.25rem;
    font-weight: 600;
    letter-spacing: -0.01em;
}

.footer-address p {
    margin-bottom: 5px;
    color: #a0aec0;
}

.footer-contact {
    text-align: right;
}

footer .phone {
    color: var(--secondary-color);
    text-decoration: none;
    font-size: 1.25rem;
    font-weight: 600;
    display: block;
    margin-top: 10px;
    letter-spacing: -0.01em;
}

/* Headings */
h2 {
    text-align: center;
    color: var(--primary-color);
    font-size: 2.5rem;
    margin-bottom: 20px;
    font-weight: 700;
    letter-spacing: -0.03em;
}

/* Responsive Design */
@media (max-width: 768px) {
    .hamburger {
        display: block;
    }

    .nav-links {
        position: fixed;
        top: 60px;
        left: -100%;
        right: 0;
        bottom: 0;
        background: var(--dark-color);
        flex-direction: column;
        width: 100%;
        padding: 20px;
        transition: left 0.3s ease;
    }

    .nav-links.active {
        left: 0;
    }

    .nav-links a {
        width: 100%;
        text-align: center;
        padding: 12px 0;
    }

    .hero h1 {
        font-size: 2.5rem;
    }
    
    .service-grid,
    .testimonial-grid {
        grid-template-columns: 1fr;
    }
    
    .cta-box {
        padding: 30px;
    }

    .nav-container {
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
    }

    body {
        padding-top: 60px;
    }

    .footer-content {
        flex-direction: column;
        text-align: center;
    }

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