* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --white: #ffffff;
    --green: #1e5631;
    --green-light: #2a7f3f;
    --green-lighter: #4a9d65;
    --green-dark: #0f3a1a;
    --yellow: #f1c40f;
    --light-green: #e8f4f0;
    --dark-gray: #1a1a1a;
    --light-gray: #f8f9fa;
    --text-gray: #555555;
    --border-gray: #e0e0e0;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Helvetica Neue', sans-serif;
    line-height: 1.7;
    color: var(--dark-gray);
    background-color: var(--white);
    letter-spacing: 0.3px;
}

img {
    max-width: 100%;
    height: auto;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* ===== HEADER & NAVIGATION ===== */
.header {
    background: linear-gradient(135deg, #0f3a1a 0%, #1e5631 50%, #2a7f3f 100%);
    color: var(--white);
    padding: 0.8rem 3rem;
    box-shadow: 0 8px 30px rgba(30, 86, 49, 0.25);
    position: sticky;
    top: 0;
    z-index: 100;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 3rem;
    overflow: visible;
}

.logo {
    position: relative;
    margin: -40px 0;
    flex-shrink: 0;
}

.logo-image {
    height: 180px;
    width: auto;
    display: block;
    border-radius: 4px;
}

.nav {
    display: flex;
    gap: 3rem;
    flex: 1;
}

.nav-left {
    justify-content: flex-end;
}

.nav-right {
    justify-content: flex-start;
}

.nav a {
    color: var(--white);
    text-decoration: none;
    font-weight: 600;
    font-size: 0.95rem;
    letter-spacing: 0.3px;
    position: relative;
    padding-bottom: 6px;
}

.nav a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--yellow);
}

.nav a:hover {
    color: var(--yellow);
}

.nav a:hover::after {
    width: 100%;
}

.nav a.active {
    color: #efb853;
}

.nav a.active::after {
    width: 100%;
    background-color: #efb853;
}

.menu-toggle {
    display: none;
    background: transparent;
    border: 2px solid rgba(255, 255, 255, 0.7);
    color: var(--white);
    width: 42px;
    height: 42px;
    border-radius: 8px;
    font-size: 1.3rem;
    line-height: 1;
    cursor: pointer;
}

.menu-toggle:hover {
    border-color: var(--yellow);
    color: var(--yellow);
}

.mobile-nav {
    display: none;
}

.menu-toggle:focus-visible {
    outline: 2px solid var(--yellow);
    outline-offset: 2px;
}

/* ===== HERO SECTION ===== */
.hero {
    background: linear-gradient(135deg, #f5f7f6 0%, #e8f4f0 100%);
    color: var(--dark-gray);
    padding: 6rem 2rem;
    text-align: left;
    display: flex;
    align-items: center;
    justify-content: space-between;
    min-height: 600px;
    gap: 4rem;
}

.hero-content {
    max-width: 600px;
    flex: 1;
}

.hero-badge {
    display: inline-block;
    background-color: var(--green);
    color: var(--white);
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 0.5px;
    margin-bottom: 1.5rem;
}

.hero-content h2 {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
    font-weight: 800;
    line-height: 1.2;
    letter-spacing: -1.5px;
    color: var(--green-dark);
}

.hero-content p {
    font-size: 1.25rem;
    margin-bottom: 2.5rem;
    opacity: 0.85;
    font-weight: 400;
    letter-spacing: 0.2px;
    color: var(--text-gray);
    line-height: 1.6;
}

.hero-buttons {
    display: flex;
    gap: 1.5rem;
    flex-wrap: wrap;
    align-items: center;
}

.cta-button {
    background-color: var(--green);
    color: var(--white);
    border: none;
    padding: 16px 36px;
    font-size: 1.05rem;
    font-weight: 700;
    border-radius: 8px;
    cursor: pointer;
    box-shadow: 0 8px 25px rgba(30, 86, 49, 0.25);
    letter-spacing: 0.5px;
    text-decoration: none;
    display: inline-block;
}

.cta-button:hover {
    background-color: #efb853;
}

.cta-button.secondary {
    background-color: transparent;
    color: var(--green);
    border: 2px solid var(--green);
    box-shadow: none;
}

.cta-button.secondary:hover {
    background-color: var(--green);
    color: var(--white);
}

.hero-image {
    flex: 1;
    position: relative;
    height: 400px;
}

.hero-visual {
    position: relative;
    width: 100%;
    height: 100%;
    background-image: url('bilder/background_städning.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    border-radius: 12px;
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.15);
}

.floating-card {
    position: absolute;
    background-color: var(--white);
    border-radius: 12px;
    padding: 1.5rem;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
    display: flex;
    align-items: center;
    gap: 1rem;
}

.card-1 {
    top: 20px;
    right: 20px;
    background: linear-gradient(135deg, var(--light-green), var(--white));
}

.card-2 {
    bottom: 60px;
    left: 20px;
    background: linear-gradient(135deg, #fff9e6, var(--white));
}

.check-icon {
    width: 45px;
    height: 45px;
    background-color: var(--green);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: bold;
    flex-shrink: 0;
}

.floating-card p {
    font-weight: 600;
    color: var(--green);
}

@keyframes float {
    0%, 100% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-15px);
    }
}

/* ===== SECTION HEADER ===== */
.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-badge {
    display: inline-block;
    background-color: var(--green);
    color: var(--white);
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 0.5px;
    margin-bottom: 1rem;
    text-transform: uppercase;
}

.section-header h2 {
    font-size: 2.8rem;
    margin-bottom: 1rem;
    color: var(--green-dark);
    font-weight: 800;
    letter-spacing: -0.5px;
}

.section-header p {
    font-size: 1.1rem;
    color: var(--text-gray);
    max-width: 500px;
    margin: 0 auto;
}

/* ===== SERVICES SECTION ===== */
.services {
    padding: 6rem 2rem;
    background: linear-gradient(180deg, var(--white) 0%, var(--light-gray) 100%);
}

.service-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.service-card {
    background-color: var(--white);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    border: 1px solid var(--border-gray);
    display: flex;
    flex-direction: column;
    max-height: 500px;
    transition: max-height 0.3s ease;
}

.service-card.expanded {
    max-height: none;
}

.service-details-wrapper {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.service-card.expanded .service-details-wrapper {
    max-height: 1000px;
}

.service-features {
    list-style: none;
    margin-bottom: 0.5rem;
}

.service-features li {
    color: var(--text-gray);
    font-size: 0.9rem;
    padding: 0.3rem 0;
    line-height: 1.5;
}

.service-toggle {
    background-color: var(--green);
    color: var(--white);
    border: none;
    padding: 10px 16px;
    font-size: 0.9rem;
    font-weight: 600;
    border-radius: 6px;
    cursor: pointer;
    margin-top: auto;
    transition: background-color 0.2s ease;
}

.service-toggle:hover {
    background-color: var(--green-light);
}

.service-image {
    width: 100%;
    height: 150px;
    overflow: hidden;
    background: linear-gradient(135deg, var(--light-green), var(--green-lighter));
    position: relative;
}

.image-placeholder {
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
}

/* Professional gradient placeholders */
.home-cleaning {
    background: linear-gradient(135deg, #1e5631 0%, #4a9d65 100%);
}

.office-cleaning {
    background: linear-gradient(135deg, #2a7f3f 0%, #5bb876 100%);
}

.deep-clean {
    background: linear-gradient(135deg, #0f3a1a 0%, #2a7f3f 100%);
}

.window-cleaning {
    background: linear-gradient(135deg, #339652 0%, #6bc686 100%);
}

.service-content {
    padding: 2rem;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.service-card h3 {
    color: var(--green);
    margin-bottom: 1rem;
    font-size: 1.4rem;
    font-weight: 700;
    letter-spacing: -0.2px;
}

.service-card p {
    color: var(--text-gray);
    font-size: 0.95rem;
    line-height: 1.7;
    margin-bottom: 1.5rem;
    flex-grow: 1;
}

.service-link {
    color: var(--green);
    text-decoration: none;
    font-weight: 600;
    display: inline-block;
    font-size: 0.95rem;
}

.service-link:hover {
    color: var(--green-light);
}

.rut-toggle-btn {
    background: none;
    border: none;
    padding: 0;
    margin-top: 0.25rem;
    cursor: pointer;
    font-family: inherit;
}

/* ===== ABOUT SECTION ===== */
.about {
    padding: 6rem 2rem;
    background-color: var(--white);
}

.about-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
}

.about-content {
    max-width: 500px;
}

.about-content .section-badge {
    margin-bottom: 1.5rem;
}

.about-content h2 {
    font-size: 2.8rem;
    margin-bottom: 1.5rem;
    color: var(--green-dark);
    font-weight: 800;
    letter-spacing: -0.5px;
}

.about-content > p {
    font-size: 1.05rem;
    color: var(--text-gray);
    margin-bottom: 2rem;
    line-height: 1.8;
}

.about-image {
    max-width: 550px;
    width: 100%;
    height: auto;
    border-radius: 20px;
}

.about-list {
    list-style: none;
    margin-bottom: 2rem;
}

.about-list li {
    padding: 0.8rem 0 0.8rem 2.5rem;
    position: relative;
    color: var(--text-gray);
    font-weight: 500;
}

.about-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--green);
    font-weight: 800;
    font-size: 1.3rem;
}

.about-stats {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2.5rem;
}

.stat-item {
    text-align: center;
    padding: 2rem;
    background: linear-gradient(135deg, var(--light-green), rgba(232, 244, 240, 0.5));
    border-radius: 12px;
    border: 1px solid rgba(30, 86, 49, 0.1);
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--green);
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 0.95rem;
    color: var(--text-gray);
    font-weight: 600;
}

.mustard-text {
    color: #D4A000;
}

/* ===== TESTIMONIALS SECTION ===== */
.testimonials {
    padding: 6rem 2rem;
    background: linear-gradient(180deg, var(--light-gray) 0%, var(--white) 100%);
}

.testimonial-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.testimonial-card {
    background-color: var(--white);
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    border: 1px solid var(--border-gray);
    display: flex;
    flex-direction: column;
}

.testimonial-content {
    margin-bottom: 1.5rem;
    flex-grow: 1;
}

.stars {
    color: var(--yellow);
    font-size: 1.1rem;
    letter-spacing: 2px;
    margin-bottom: 1rem;
    display: block;
}

.testimonial-content p {
    font-size: 0.95rem;
    color: var(--text-gray);
    line-height: 1.8;
    font-style: italic;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 1rem;
    border-top: 1px solid var(--border-gray);
    padding-top: 1.5rem;
}

.author-avatar {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--green), var(--green-light));
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.1rem;
    flex-shrink: 0;
}

.author-info strong {
    display: block;
    color: var(--dark-gray);
    font-weight: 600;
    margin-bottom: 0.2rem;
}

.author-info span {
    display: block;
    font-size: 0.85rem;
    color: var(--text-gray);
}

/* ===== CONTACT SECTION ===== */
.contact {
    padding: 6rem 2rem;
    background: linear-gradient(135deg, #f5f7f6 0%, var(--light-green) 100%);
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    max-width: 1100px;
    margin: 0 auto;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
    padding: 1.5rem;
    background-color: var(--white);
    border-radius: 12px;
}

.contact-icon {
    font-size: 2rem;
    flex-shrink: 0;
    width: 60px;
    height: 60px;
    background: var(--green);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
}

.contact-detail strong {
    display: block;
    color: var(--green);
    font-weight: 700;
    margin-bottom: 0.5rem;
    font-size: 1rem;
}

.contact-detail p {
    color: var(--text-gray);
    font-size: 0.95rem;
}

.submit-button {
    background-color: var(--green);
    color: var(--white);
    border: none;
    padding: 16px 30px;
    font-size: 1.05rem;
    font-weight: 700;
    border-radius: 8px;
    cursor: pointer;
    box-shadow: 0 6px 20px rgba(30, 86, 49, 0.25);
    letter-spacing: 0.5px;
}

.submit-button:hover {
    background-color: var(--green-light);
}

/* ===== FOOTER ===== */
.footer {
    background: linear-gradient(135deg, var(--green-dark) 0%, var(--green) 100%);
    color: var(--white);
    padding: 3rem 2rem 1.5rem;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer-section h4 {
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
    font-weight: 700;
    letter-spacing: -0.3px;
}

.footer-section p {
    font-size: 0.9rem;
    opacity: 0.9;
    line-height: 1.6;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 0.8rem;
}

.footer-section a {
    color: rgba(255, 255, 255, 0.9);
    text-decoration: none;
    font-size: 0.9rem;
    display: inline-block;
}

.footer-section a:hover {
    color: var(--yellow);
}

.social-links {
    display: flex;
    gap: 1.5rem;
}

.social-links a {
    padding: 0.5rem 1rem;
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 6px;
}

.social-links a:hover {
    background-color: rgba(255, 255, 255, 0.1);
    border-color: var(--yellow);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    padding-top: 1.5rem;
    text-align: center;
    max-width: 1200px;
    margin: 0 auto;
}

.footer-bottom p {
    font-size: 0.85rem;
    opacity: 0.8;
}

/* ===== CALCULATOR SECTION ===== */
.calculator-section {
    padding: 4rem 2rem;
    background: #e8f4f0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.calculator-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: url('bilder/background_blur1.png');
    background-size: cover;
    background-position: center;
    filter: blur(2px);
    transform: scale(1.03);
    z-index: 0;
}

.calculator-section > * {
    position: relative;
    z-index: 1;
}

.calculator-section h2 {
    font-size: 2rem;
    color: #0f3a1a;
    margin-bottom: 0.5rem;
}

.calculator-subtitle {
    color: #0f3a1a;
    margin-bottom: 2rem;
    font-size: 1rem;
}

.calculator-box {
    max-width: 600px;
    margin: 0 auto;
    background: #27743b;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
}

.calculator-box label {
    display: block;
    font-weight: 600;
    color: var(--white);
    margin-bottom: 0.8rem;
    font-size: 0.95rem;
    text-align: left;
}

.calculator-box input {
    width: 100%;
    padding: 12px 16px;
    border: 2px solid var(--border-gray);
    border-radius: 8px;
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
    text-align: center;
}

.calculator-box input:focus {
    outline: none;
    border-color: var(--green);
}

.calculator-results {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    margin-top: 1.5rem;
}

.result-box {
    flex: 1;
    padding: 1rem;
    background: var(--light-green);
    border-radius: 8px;
}

.result-label {
    display: block;
    font-size: 0.85rem;
    color: var(--text-gray);
    margin-bottom: 0.3rem;
}

.result-box strong {
    font-size: 1.5rem;
    color: var(--green);
    display: block;
}

.calculator-note {
    font-size: 0.8rem;
    color: #0f3a1a;
    margin-top: 1.5rem;
}

/* ===== PAGE HEADER ===== */
.page-header {
    background: #e8f4f0;
    color: var(--green-dark);
    padding: 4rem 2rem;
    text-align: center;
    box-shadow: 0 4px 15px rgba(30, 86, 49, 0.15);
    position: relative;
    overflow: hidden;
}

.page-header::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: url('bilder/background_blur.png');
    background-size: cover;
    background-position: center;
    filter: blur(2px);
    transform: scale(1.03);
    z-index: 0;
}

.page-header > * {
    position: relative;
    z-index: 1;
}

.page-header h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
    font-weight: 700;
}

.page-header p {
    font-size: 1.2rem;
    opacity: 0.9;
}

/* ===== CONTACT INFO SECTION ===== */
.contact-info-section {
    padding: 5rem 2rem;
    background: linear-gradient(180deg, var(--light-gray) 0%, var(--white) 100%);
}

.contact-section {
    padding: 5rem 2rem;
    background: linear-gradient(135deg, rgba(232, 244, 240, 0.3) 0%, var(--white) 100%);
}

.contact-info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.contact-info-card {
    background: var(--white);
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    text-align: center;
}

.contact-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.contact-info-card h3 {
    color: var(--green);
    margin-bottom: 0.8rem;
    font-size: 1.3rem;
}

.contact-info-card p {
    color: var(--text-gray);
    margin-bottom: 0.5rem;
}

.contact-info-card a {
    color: var(--green);
    text-decoration: none;
    font-weight: 600;
}

.contact-info-card a:hover {
    color: var(--green-light);
}

.contact-info-card .small-text {
    font-size: 0.85rem;
    color: var(--text-gray);
    opacity: 0.8;
}

/* ===== VALUES SECTION ===== */
.values-section {
    padding: 4rem 2rem;
    background: linear-gradient(180deg, rgba(232, 244, 240, 0.5) 0%, rgba(232, 244, 240, 0) 100%);
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.value-card {
    background: var(--white);
    padding: 2.5rem 2rem;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    text-align: center;
}

.value-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.value-card h3 {
    color: var(--green);
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

.value-card p {
    color: var(--text-gray);
    line-height: 1.6;
    font-size: 0.95rem;
}

/* ===== TEAM SECTION ===== */
.team-section {
    padding: 4rem 2rem;
    background-color: var(--white);
}

.team-intro {
    max-width: 800px;
    margin: 2rem auto;
    text-align: center;
    font-size: 1.05rem;
    color: var(--text-gray);
    line-height: 1.8;
}

/* ===== CONTACT BENEFITS ===== */
.contact-benefits {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.benefit-item {
    display: flex;
    gap: 1.5rem;
    padding: 1.8rem;
    background: var(--white);
    border-radius: 12px;
    border: 1px solid var(--border-gray);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.benefit-icon {
    flex-shrink: 0;
    color: var(--green);
    font-size: 2rem;
    min-width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.benefit-text h4 {
    color: var(--green-dark);
    margin-bottom: 0.5rem;
    font-size: 1.15rem;
    font-weight: 700;
}

.benefit-text p {
    color: var(--text-gray);
    font-size: 0.9rem;
    margin: 0;
    line-height: 1.6;
}

/* ===== CONTACT CTA ===== */
.contact-cta {
    text-align: center;
    padding: 3rem 2rem;
}

.btn-large {
    padding: 1rem 2.5rem;
    font-size: 1.1rem;
}

.btn-primary {
    background: linear-gradient(135deg, var(--green) 0%, var(--green-light) 100%);
    color: var(--white);
    border: none;
    padding: 0.8rem 1.5rem;
    border-radius: 8px;
    cursor: pointer;
    font-weight: 600;
    text-decoration: none;
    display: inline-block;
}

/* ===== FORM ELEMENTS ===== */
select {
    width: 100%;
    padding: 0.8rem;
    border: 2px solid var(--border-gray);
    border-radius: 8px;
    font-size: 1rem;
    font-family: inherit;
    cursor: pointer;
    background-color: var(--white);
    color: var(--dark-gray);
}

select:hover {
    border-color: var(--green);
}

select:focus {
    outline: none;
    border-color: var(--green);
    box-shadow: 0 0 0 3px rgba(30, 86, 49, 0.1);
}

/* ===== CONTACT WRAPPER ===== */
.contact-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    margin-top: 3rem;
    align-items: start;
}

.contact-form-column {
    background: var(--white);
    padding: 2.5rem;
    border-radius: 12px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
}

.contact-form-column h2 {
    color: var(--green);
    margin-bottom: 0.5rem;
    font-size: 2rem;
}

.form-description {
    color: var(--text-gray);
    margin-bottom: 2rem;
    font-size: 0.95rem;
    line-height: 1.6;
}

.contact-details-column h2 {
    color: var(--green);
    margin-bottom: 1rem;
    font-size: 2rem;
}

.contact-intro {
    color: var(--text-gray);
    margin-bottom: 2rem;
    font-size: 1rem;
    line-height: 1.7;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    font-weight: 600;
    color: var(--green-dark);
    margin-bottom: 0.5rem;
    font-size: 0.95rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.9rem;
    border: 2px solid var(--border-gray);
    border-radius: 8px;
    font-size: 0.95rem;
    font-family: inherit;
    background-color: var(--white);
    color: var(--dark-gray);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: #999;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--green);
    box-shadow: 0 0 0 3px rgba(30, 86, 49, 0.1);
}

.btn-submit {
    width: 100%;
    padding: 1rem 2rem;
    font-size: 1.05rem;
    margin-top: 0.5rem;
}

/* ===== RESPONSIVE DESIGN ===== */
@media (max-width: 992px) {
    .header {
        gap: 1.5rem;
        padding: 0.75rem 1.5rem;
    }

    .logo {
        margin: -20px 0;
    }

    .logo-image {
        height: 130px;
    }

    .nav {
        gap: 1.5rem;
    }

    .hero {
        padding: 4rem 1.5rem;
        gap: 2rem;
    }

    .hero-content h2 {
        font-size: 2.6rem;
    }
}

@media (max-width: 768px) {
    .container {
        padding: 0 16px;
    }

    .header {
        flex-wrap: wrap;
        justify-content: center;
        gap: 0.5rem;
        padding: 0.75rem 1rem;
        position: sticky;
        overflow: visible;
    }

    .logo {
        margin: 0;
        width: auto;
        display: flex;
        justify-content: flex-start;
        order: 1;
        flex: 1;
    }

    .logo-image {
        height: 90px;
    }

    .menu-toggle {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        order: 2;
        transition: border-color 0.2s ease, color 0.2s ease, background-color 0.2s ease;
    }

    .header.nav-open .menu-toggle {
        background-color: rgba(255, 255, 255, 0.12);
        border-color: var(--yellow);
        color: var(--yellow);
    }

    .nav,
    .nav-left,
    .nav-right {
        display: none;
    }

    .mobile-nav {
        display: flex;
        position: absolute;
        right: 1rem;
        top: calc(100% + 8px);
        width: min(72vw, 260px);
        flex-direction: column;
        gap: 0.25rem;
        padding: 0.65rem;
        border-radius: 12px;
        border: 1px solid rgba(255, 255, 255, 0.2);
        background: linear-gradient(135deg, #0f3a1a 0%, #1e5631 60%, #2a7f3f 100%);
        box-shadow: 0 14px 28px rgba(0, 0, 0, 0.22);
        opacity: 0;
        pointer-events: none;
        transform: translateY(-8px) scale(0.98);
        transition: opacity 0.2s ease, transform 0.2s ease;
    }

    .mobile-nav a {
        color: var(--white);
        text-decoration: none;
        font-weight: 600;
        font-size: 0.95rem;
        padding: 0.55rem 0.75rem;
        border-radius: 8px;
    }

    .mobile-nav a:hover,
    .mobile-nav a.active {
        background-color: rgba(255, 255, 255, 0.14);
        color: var(--yellow);
    }

    .header.nav-open .mobile-nav {
        opacity: 1;
        pointer-events: auto;
        transform: translateY(0) scale(1);
    }

    .hero {
        flex-direction: column;
        min-height: auto;
        padding: 3rem 1rem;
        gap: 2rem;
        text-align: center;
    }

    .hero-content {
        max-width: 100%;
    }

    .hero-content h2 {
        font-size: 2.1rem;
        letter-spacing: -0.8px;
    }

    .hero-content p {
        font-size: 1.05rem;
        margin-bottom: 2rem;
    }

    .hero-image {
        width: 100%;
        height: 280px;
    }

    .hero-buttons {
        flex-direction: column;
        gap: 1rem;
    }

    .cta-button,
    .cta-button.secondary {
        width: 100%;
        text-align: center;
    }

    .services,
    .about,
    .testimonials,
    .contact,
    .contact-info-section,
    .contact-section,
    .values-section,
    .team-section,
    .calculator-section,
    .page-header {
        padding-left: 1rem;
        padding-right: 1rem;
    }

    .page-header {
        padding-top: 2.75rem;
        padding-bottom: 2.75rem;
    }

    .page-header h1 {
        font-size: 2rem;
    }

    .page-header p {
        font-size: 1rem;
    }

    .section-header {
        margin-bottom: 2.5rem;
    }

    .section-header h2,
    .about-content h2,
    .contact-form-column h2,
    .contact-details-column h2 {
        font-size: 1.9rem;
        line-height: 1.3;
    }

    .service-grid,
    .values-grid,
    .testimonial-grid,
    .contact-info-grid,
    .contact-wrapper,
    .about-wrapper,
    .contact-content {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .service-content,
    .contact-form-column,
    .contact-info-card,
    .value-card,
    .benefit-item {
        padding: 1.25rem;
    }

    .contact-form-column {
        order: 1;
    }

    .contact-details-column {
        order: 2;
    }

    .about-stats,
    .footer-content,
    .calculator-results {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .calculator-results {
        display: flex;
        flex-direction: column;
    }

    .result-box strong {
        font-size: 1.25rem;
    }

    .social-links {
        flex-wrap: wrap;
        gap: 0.75rem;
    }
}

@media (max-width: 480px) {
    .header {
        padding: 0.5rem 0.75rem;
    }

    .logo-image {
        height: 70px;
    }

    .nav {
        gap: 0.8rem;
    }

    .mobile-nav {
        right: 0.75rem;
        width: min(82vw, 230px);
    }

    .mobile-nav a {
        font-size: 0.9rem;
    }

    .hero {
        padding: 2.4rem 0.75rem;
    }

    .hero-content h2 {
        font-size: 1.65rem;
        margin-bottom: 1rem;
    }

    .hero-content p {
        font-size: 0.95rem;
        margin-bottom: 1.5rem;
    }

    .hero-image {
        height: 220px;
    }

    .section-header h2,
    .about-content h2,
    .contact-form-column h2,
    .contact-details-column h2 {
        font-size: 1.5rem;
    }

    .page-header h1 {
        font-size: 1.7rem;
    }

    .page-header p {
        font-size: 0.92rem;
    }

    .contact-form-column,
    .calculator-box {
        padding: 1rem;
    }

    .benefit-item {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.75rem;
    }

    .benefit-icon {
        min-width: auto;
        height: auto;
        font-size: 1.4rem;
    }

    .service-image {
        height: 130px;
    }

    .footer {
        padding: 2rem 1rem 1.25rem;
    }

    .footer-section h4 {
        margin-bottom: 0.8rem;
    }
}