@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@400;500;600;700&family=Nunito:wght@300;400;500;600;700&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --sage: #9CAF88;
    --sage-light: #B8C9A3;
    --sage-dark: #7A8F6E;
    --terracotta: #C4745D;
    --terracotta-light: #D4917D;
    --terracotta-dark: #A45A45;
    --oak: #8B7355;
    --oak-light: #A69076;
    --cream: #F5F2EB;
    --cream-dark: #E8E4D9;
    --charcoal: #3D3D3D;
    --white: #FFFFFF;
    --font-heading: 'Playfair Display', serif;
    --font-body: 'Nunito', sans-serif;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    font-size: 14px;
    line-height: 1.6;
    color: var(--charcoal);
    background-color: var(--cream);
}

a {
    text-decoration: none;
    color: inherit;
    transition: color 0.3s ease;
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

.container {
    max-width: 1140px;
    margin: 0 auto;
    padding: 0 15px;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 600;
    line-height: 1.3;
    color: var(--charcoal);
}

h1 { font-size: 2.2rem; }
h2 { font-size: 1.8rem; }
h3 { font-size: 1.4rem; }
h4 { font-size: 1.2rem; }

.btn {
    display: inline-block;
    padding: 10px 24px;
    font-family: var(--font-body);
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    border: none;
    border-radius: 25px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-primary {
    background-color: var(--terracotta);
    color: var(--white);
}

.btn-primary:hover {
    background-color: var(--terracotta-dark);
    transform: translateY(-2px);
}

.btn-secondary {
    background-color: transparent;
    color: var(--sage-dark);
    border: 2px solid var(--sage-dark);
}

.btn-secondary:hover {
    background-color: var(--sage-dark);
    color: var(--white);
}

header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    transition: transform 0.4s ease, background 0.3s ease;
}

header.header-hidden {
    transform: translateY(-100%);
}

header.header-scrolled {
    background: rgba(245, 242, 235, 0.97);
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.08);
}

.header-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 0;
}

.logo {
    display: flex;
    align-items: center;
    gap: 8px;
}

.logo i {
    font-size: 1.6rem;
    color: var(--sage-dark);
}

.logo-text {
    font-family: var(--font-heading);
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--charcoal);
}

.nav-desktop {
    display: flex;
    align-items: center;
    gap: 25px;
}

.nav-desktop a {
    font-size: 13px;
    font-weight: 500;
    color: var(--charcoal);
    position: relative;
    padding: 5px;
}

.nav-desktop a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--terracotta);
    transition: width 0.3s ease;
}

.nav-desktop a:hover::after,
.nav-desktop a.active::after {
    width: 100%;
}

.nav-desktop a.nav-cta::after {
    display: none;
}

.nav-cta {
    margin-left: 15px;
}

.menu-toggle {
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 36px;
    height: 36px;
    background: var(--sage);
    border: none;
    border-radius: 8px;
    cursor: pointer;
    position: relative;
    z-index: 1001;
}

.menu-toggle span {
    display: block;
    width: 18px;
    height: 2px;
    background: var(--white);
    transition: all 0.3s ease;
    position: absolute;
}

.menu-toggle span:nth-child(1) {
    transform: translateY(-5px);
}

.menu-toggle span:nth-child(3) {
    transform: translateY(5px);
}

.menu-toggle.active span:nth-child(1) {
    transform: rotate(45deg);
}

.menu-toggle.active span:nth-child(2) {
    opacity: 0;
}

.menu-toggle.active span:nth-child(3) {
    transform: rotate(-45deg);
}

.nav-mobile {
    position: fixed;
    top: 0;
    right: -100%;
    width: 280px;
    height: 100vh;
    background: var(--cream);
    padding: 70px 25px 25px;
    transition: right 0.4s ease;
    box-shadow: -5px 0 30px rgba(0, 0, 0, 0.1);
    z-index: 999;
}

.nav-mobile.active {
    right: 0;
}

.nav-mobile a {
    display: block;
    padding: 12px 0;
    font-size: 15px;
    font-weight: 500;
    color: var(--charcoal);
    border-bottom: 1px solid var(--cream-dark);
}

.nav-mobile a:hover {
    color: var(--terracotta);
}

.nav-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 998;
}

.nav-overlay.active {
    opacity: 1;
    visibility: visible;
}

.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    background: linear-gradient(135deg, var(--cream) 0%, var(--cream-dark) 100%);
    padding-top: 60px;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 70%;
    height: 200%;
    background: radial-gradient(ellipse, var(--sage-light) 0%, transparent 70%);
    opacity: 0.3;
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
    position: relative;
    z-index: 1;
}

.hero-text h1 {
    font-size: 2.8rem;
    margin-bottom: 15px;
    color: var(--charcoal);
}

.hero-text h1 span {
    color: var(--sage-dark);
}

.hero-text p {
    font-size: 15px;
    color: var(--oak);
    margin-bottom: 25px;
    max-width: 450px;
}

.hero-buttons {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.hero-image {
    position: relative;
}

.hero-image img {
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}

.hero-badge {
    position: absolute;
    bottom: 20px;
    left: -20px;
    background: var(--white);
    padding: 12px 18px;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.hero-badge i {
    color: var(--terracotta);
    margin-right: 8px;
}

section {
    padding: 60px 0;
}

.section-header {
    text-align: center;
    margin-bottom: 40px;
}

.section-header span {
    display: inline-block;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--terracotta);
    margin-bottom: 8px;
}

.section-header h2 {
    margin-bottom: 12px;
}

.section-header p {
    color: var(--oak);
    max-width: 550px;
    margin: 0 auto;
    font-size: 14px;
}

.features {
    background: var(--white);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
}

.feature-card {
    text-align: center;
    padding: 30px 20px;
    background: var(--cream);
    border-radius: 15px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
}

.feature-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--sage-light);
    border-radius: 50%;
}

.feature-icon i {
    font-size: 1.5rem;
    color: var(--sage-dark);
}

.feature-card h3 {
    font-size: 1.1rem;
    margin-bottom: 8px;
}

.feature-card p {
    font-size: 13px;
    color: var(--oak);
}

.about-section {
    background: linear-gradient(to right, var(--sage-light) 0%, var(--sage-light) 40%, var(--cream) 40%);
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.about-image img {
    border-radius: 20px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.12);
}

.about-content h2 {
    margin-bottom: 15px;
}

.about-content p {
    margin-bottom: 12px;
    color: var(--oak);
    font-size: 14px;
}

.about-stats {
    display: flex;
    gap: 30px;
    margin-top: 25px;
}

.stat-item {
    text-align: center;
}

.stat-item .number {
    font-family: var(--font-heading);
    font-size: 2rem;
    font-weight: 700;
    color: var(--terracotta);
}

.stat-item span {
    display: block;
    font-size: 12px;
    color: var(--oak);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.services {
    background: var(--cream-dark);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
}

.service-card {
    background: var(--white);
    border-radius: 15px;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

.service-card img {
    width: 100%;
    height: 180px;
    object-fit: cover;
}

.service-content {
    padding: 20px;
}

.service-content h3 {
    font-size: 1.1rem;
    margin-bottom: 8px;
}

.service-content p {
    font-size: 13px;
    color: var(--oak);
    margin-bottom: 12px;
}

.products-section {
    background: var(--white);
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
}

.product-card {
    background: var(--cream);
    border-radius: 15px;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.product-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

.product-image {
    position: relative;
    height: 200px;
    background: var(--sage-light);
    display: flex;
    align-items: center;
    justify-content: center;
}

.product-image i {
    font-size: 4rem;
    color: var(--sage-dark);
}

.product-badge {
    position: absolute;
    top: 10px;
    right: 10px;
    background: var(--terracotta);
    color: var(--white);
    font-size: 11px;
    padding: 4px 10px;
    border-radius: 20px;
}

.product-content {
    padding: 20px;
}

.product-content h3 {
    font-size: 1rem;
    margin-bottom: 6px;
}

.product-content p {
    font-size: 12px;
    color: var(--oak);
    margin-bottom: 10px;
}

.product-price {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.price {
    font-family: var(--font-heading);
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--terracotta);
}

.testimonials {
    background: var(--sage);
    color: var(--white);
}

.testimonials .section-header span {
    color: var(--cream);
}

.testimonials .section-header h2,
.testimonials .section-header p {
    color: var(--white);
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
}

.testimonial-card {
    background: rgba(255, 255, 255, 0.1);
    padding: 25px;
    border-radius: 15px;
    backdrop-filter: blur(10px);
}

.testimonial-card p {
    font-size: 14px;
    margin-bottom: 15px;
    font-style: italic;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 12px;
}

.testimonial-avatar {
    width: 45px;
    height: 45px;
    background: var(--terracotta);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.testimonial-avatar i {
    font-size: 1.2rem;
}

.testimonial-info h4 {
    font-size: 14px;
    color: var(--white);
    margin-bottom: 2px;
}

.testimonial-info span {
    font-size: 12px;
    opacity: 0.8;
}

.cta-section {
    background: linear-gradient(135deg, var(--terracotta) 0%, var(--terracotta-dark) 100%);
    color: var(--white);
    text-align: center;
    padding: 50px 0;
}

.cta-section h2 {
    color: var(--white);
    margin-bottom: 12px;
}

.cta-section p {
    margin-bottom: 20px;
    opacity: 0.9;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
}

.cta-section .btn {
    background: var(--white);
    color: var(--terracotta);
}

.cta-section .btn:hover {
    background: var(--cream);
    transform: translateY(-2px);
}

footer {
    background: var(--charcoal);
    color: var(--white);
    padding: 30px 0 15px;
}

.footer-content {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr;
    gap: 30px;
    margin-bottom: 20px;
}

.footer-brand .logo {
    margin-bottom: 12px;
}

.footer-brand .logo-text {
    color: var(--white);
}

.footer-brand .logo i {
    color: var(--sage-light);
}

.footer-brand p {
    font-size: 13px;
    opacity: 0.8;
    margin-bottom: 12px;
}

.footer-contact p {
    font-size: 12px;
    margin-bottom: 6px;
    opacity: 0.8;
}

.footer-contact i {
    color: var(--sage-light);
    margin-right: 6px;
    width: 16px;
}

.footer-links h4 {
    font-size: 14px;
    color: var(--white);
    margin-bottom: 12px;
}

.footer-links a {
    display: block;
    font-size: 13px;
    padding: 4px 0;
    opacity: 0.8;
    transition: opacity 0.3s ease;
}

.footer-links a:hover {
    opacity: 1;
    color: var(--sage-light);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 15px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 10px;
}

.footer-bottom p {
    font-size: 12px;
    opacity: 0.7;
}

.footer-policies {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.footer-policies a {
    font-size: 11px;
    opacity: 0.7;
    transition: opacity 0.3s ease;
}

.footer-policies a:hover {
    opacity: 1;
}

.page-hero {
    padding: 100px 0 50px;
    background: linear-gradient(135deg, var(--cream) 0%, var(--cream-dark) 100%);
    text-align: center;
}

.page-hero h1 {
    margin-bottom: 12px;
}

.page-hero p {
    color: var(--oak);
    max-width: 550px;
    margin: 0 auto;
}

.breadcrumb {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-bottom: 15px;
    font-size: 13px;
}

.breadcrumb a {
    color: var(--oak);
}

.breadcrumb a:hover {
    color: var(--terracotta);
}

.breadcrumb span {
    color: var(--charcoal);
}

.content-section {
    padding: 50px 0;
}

.content-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 40px;
}

.content-main h2 {
    margin-bottom: 15px;
    font-size: 1.5rem;
}

.content-main h3 {
    margin: 25px 0 12px;
    font-size: 1.2rem;
}

.content-main p {
    margin-bottom: 12px;
    color: var(--oak);
    font-size: 14px;
}

.content-main ul {
    margin: 15px 0;
    padding-left: 20px;
}

.content-main li {
    margin-bottom: 8px;
    color: var(--oak);
    font-size: 14px;
    position: relative;
    padding-left: 20px;
}

.content-main li::before {
    content: '\f00c';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    position: absolute;
    left: 0;
    color: var(--sage);
}

.sidebar-card {
    background: var(--white);
    padding: 25px;
    border-radius: 15px;
    margin-bottom: 20px;
}

.sidebar-card h4 {
    margin-bottom: 12px;
    font-size: 1.1rem;
}

.sidebar-card p {
    font-size: 13px;
    color: var(--oak);
    margin-bottom: 12px;
}

.contact-section {
    background: var(--white);
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
}

.contact-info {
    background: linear-gradient(135deg, var(--sage) 0%, var(--sage-dark) 100%);
    padding: 35px;
    border-radius: 20px;
    color: var(--white);
}

.contact-info h2 {
    color: var(--white);
    margin-bottom: 15px;
    font-size: 1.6rem;
}

.contact-info > p {
    opacity: 0.9;
    margin-bottom: 25px;
    font-size: 14px;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 18px;
}

.contact-item i {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.contact-item h4 {
    color: var(--white);
    font-size: 13px;
    margin-bottom: 3px;
}

.contact-item p {
    font-size: 13px;
    opacity: 0.9;
}

.contact-form-wrapper {
    background: var(--cream);
    padding: 35px;
    border-radius: 20px;
}

.contact-form-wrapper h3 {
    margin-bottom: 20px;
    font-size: 1.3rem;
}

.form-group {
    margin-bottom: 18px;
}

.form-group label {
    display: block;
    font-size: 13px;
    font-weight: 600;
    margin-bottom: 6px;
    color: var(--charcoal);
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 12px 15px;
    border: 2px solid var(--cream-dark);
    border-radius: 10px;
    font-family: var(--font-body);
    font-size: 14px;
    transition: border-color 0.3s ease;
    background: var(--white);
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--sage);
}

.form-group textarea {
    min-height: 120px;
    resize: vertical;
}

.checkbox-group {
    display: flex;
    align-items: flex-start;
    gap: 10px;
}

.checkbox-group input[type="checkbox"] {
    width: 18px;
    height: 18px;
    margin-top: 2px;
    accent-color: var(--sage);
}

.checkbox-group label {
    font-size: 12px;
    font-weight: 400;
    margin-bottom: 0;
    color: var(--oak);
}

.map-section {
    padding: 0;
}

.map-container {
    height: 350px;
    border-radius: 20px;
    overflow: hidden;
    margin: 0 15px;
}

.map-container iframe {
    width: 100%;
    height: 100%;
    border: none;
}

.utility-page {
    min-height: calc(100vh - 180px);
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 100px 20px 50px;
}

.utility-content {
    max-width: 500px;
}

.utility-icon {
    width: 100px;
    height: 100px;
    margin: 0 auto 25px;
    background: var(--sage-light);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.utility-icon i {
    font-size: 3rem;
    color: var(--sage-dark);
}

.utility-content h1 {
    margin-bottom: 15px;
}

.utility-content p {
    color: var(--oak);
    margin-bottom: 25px;
    font-size: 15px;
}

.policy-content {
    max-width: 800px;
    margin: 0 auto;
    padding: 50px 20px;
}

.policy-content h1 {
    margin-bottom: 10px;
    text-align: center;
}

.policy-content .last-updated {
    text-align: center;
    color: var(--oak);
    font-size: 13px;
    margin-bottom: 30px;
}

.policy-content h2 {
    margin: 30px 0 15px;
    font-size: 1.3rem;
}

.policy-content h3 {
    margin: 20px 0 10px;
    font-size: 1.1rem;
}

.policy-content p {
    margin-bottom: 12px;
    color: var(--oak);
    font-size: 14px;
}

.policy-content ul {
    margin: 15px 0;
    padding-left: 25px;
}

.policy-content li {
    margin-bottom: 8px;
    color: var(--oak);
    font-size: 14px;
    list-style: disc;
}

.privacy-popup {
    position: fixed;
    bottom: 20px;
    left: 20px;
    right: 20px;
    max-width: 400px;
    background: var(--white);
    padding: 20px;
    border-radius: 15px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
    z-index: 9999;
    display: none;
}

.privacy-popup.show {
    display: block;
    animation: slideUp 0.4s ease;
}

@keyframes slideUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.privacy-popup h4 {
    margin-bottom: 10px;
    font-size: 1rem;
}

.privacy-popup p {
    font-size: 13px;
    color: var(--oak);
    margin-bottom: 15px;
}

.privacy-popup-buttons {
    display: flex;
    gap: 10px;
}

.privacy-popup .btn {
    padding: 8px 18px;
    font-size: 12px;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
}

.team-card {
    text-align: center;
    background: var(--white);
    padding: 25px;
    border-radius: 15px;
}

.team-avatar {
    width: 80px;
    height: 80px;
    margin: 0 auto 15px;
    background: var(--sage-light);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.team-avatar i {
    font-size: 2rem;
    color: var(--sage-dark);
}

.team-card h3 {
    font-size: 1rem;
    margin-bottom: 5px;
}

.team-card span {
    font-size: 12px;
    color: var(--terracotta);
    display: block;
    margin-bottom: 10px;
}

.team-card p {
    font-size: 13px;
    color: var(--oak);
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.value-card {
    display: flex;
    gap: 15px;
    background: var(--white);
    padding: 20px;
    border-radius: 12px;
}

.value-card i {
    width: 45px;
    height: 45px;
    background: var(--sage-light);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--sage-dark);
    flex-shrink: 0;
}

.value-card h4 {
    font-size: 1rem;
    margin-bottom: 5px;
}

.value-card p {
    font-size: 13px;
    color: var(--oak);
}

.process-steps {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.process-step {
    text-align: center;
    position: relative;
}

.process-step::after {
    content: '';
    position: absolute;
    top: 25px;
    right: -10px;
    width: calc(100% - 50px);
    height: 2px;
    background: var(--sage-light);
}

.process-step:last-child::after {
    display: none;
}

.step-number {
    width: 50px;
    height: 50px;
    margin: 0 auto 12px;
    background: var(--terracotta);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-heading);
    font-size: 1.2rem;
    font-weight: 700;
    position: relative;
    z-index: 1;
}

.process-step h4 {
    font-size: 0.95rem;
    margin-bottom: 6px;
}

.process-step p {
    font-size: 12px;
    color: var(--oak);
}

.pricing-card {
    background: var(--white);
    border-radius: 20px;
    padding: 30px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.pricing-card.featured {
    border: 2px solid var(--terracotta);
}

.pricing-card.featured::before {
    content: 'Popular';
    position: absolute;
    top: 15px;
    right: -30px;
    background: var(--terracotta);
    color: var(--white);
    font-size: 11px;
    padding: 4px 35px;
    transform: rotate(45deg);
}

.pricing-card h3 {
    font-size: 1.2rem;
    margin-bottom: 10px;
}

.pricing-card .price {
    font-size: 2rem;
    margin-bottom: 5px;
}

.pricing-card .period {
    font-size: 12px;
    color: var(--oak);
    margin-bottom: 20px;
}

.pricing-features {
    text-align: left;
    margin-bottom: 20px;
}

.pricing-features li {
    padding: 8px 0;
    font-size: 13px;
    color: var(--oak);
    border-bottom: 1px solid var(--cream-dark);
    display: flex;
    align-items: center;
    gap: 8px;
}

.pricing-features li i {
    color: var(--sage);
}

.faq-section {
    background: var(--cream-dark);
}

.faq-grid {
    max-width: 700px;
    margin: 0 auto;
}

.faq-item {
    background: var(--white);
    margin-bottom: 12px;
    border-radius: 10px;
    overflow: hidden;
}

.faq-question {
    width: 100%;
    padding: 18px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: none;
    border: none;
    font-family: var(--font-body);
    font-size: 14px;
    font-weight: 600;
    color: var(--charcoal);
    cursor: pointer;
    text-align: left;
}

.faq-question i {
    transition: transform 0.3s ease;
    color: var(--sage);
}

.faq-item.active .faq-question i {
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.faq-item.active .faq-answer {
    max-height: 500px;
}

.faq-answer p {
    padding: 0 20px 18px;
    font-size: 13px;
    color: var(--oak);
}

@media (max-width: 992px) {
    .hero-content {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .hero-text p {
        margin: 0 auto 25px;
    }

    .hero-buttons {
        justify-content: center;
    }

    .hero-image {
        order: -1;
        max-width: 450px;
        margin: 0 auto;
    }

    .hero-badge {
        left: 50%;
        transform: translateX(-50%);
    }

    .features-grid,
    .services-grid,
    .products-grid,
    .testimonials-grid,
    .team-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .about-section {
        background: var(--cream);
    }

    .about-grid {
        grid-template-columns: 1fr;
    }

    .about-image {
        max-width: 400px;
        margin: 0 auto;
    }

    .footer-content {
        grid-template-columns: 1fr 1fr;
    }

    .contact-grid {
        grid-template-columns: 1fr;
    }

    .content-grid {
        grid-template-columns: 1fr;
    }

    .process-steps {
        grid-template-columns: repeat(2, 1fr);
    }

    .process-step::after {
        display: none;
    }
}

@media (max-width: 768px) {
    h1 { font-size: 1.8rem; }
    h2 { font-size: 1.5rem; }

    .nav-desktop {
        display: none;
    }

    .menu-toggle {
        display: flex;
    }

    .hero {
        min-height: auto;
        padding: 100px 0 50px;
    }

    .hero-text h1 {
        font-size: 2rem;
    }

    .features-grid,
    .services-grid,
    .products-grid,
    .testimonials-grid,
    .team-grid {
        grid-template-columns: 1fr;
    }

    .about-stats {
        justify-content: center;
        flex-wrap: wrap;
    }

    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .footer-bottom {
        justify-content: center;
        flex-direction: column;
        text-align: center;
    }

    .footer-policies {
        justify-content: center;
    }

    .values-grid {
        grid-template-columns: 1fr;
    }

    section {
        padding: 40px 0;
    }

    .privacy-popup {
        left: 10px;
        right: 10px;
    }
}

@media (max-width: 480px) {
    body {
        font-size: 13px;
    }

    h1 { font-size: 1.6rem; }
    h2 { font-size: 1.3rem; }
    h3 { font-size: 1.1rem; }

    .container {
        padding: 0 12px;
    }

    .btn {
        padding: 8px 18px;
        font-size: 12px;
    }

    .hero-text h1 {
        font-size: 1.7rem;
    }

    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }

    .feature-card,
    .service-content,
    .product-content {
        padding: 18px;
    }

    .contact-info,
    .contact-form-wrapper {
        padding: 25px;
    }

    .process-steps {
        grid-template-columns: 1fr;
    }

    .utility-page {
        padding: 80px 15px 40px;
    }

    .map-container {
        height: 250px;
    }
}

@media (max-width: 320px) {
    h1 { font-size: 1.4rem; }
    h2 { font-size: 1.2rem; }

    .logo-text {
        font-size: 0.95rem;
    }

    .header-inner {
        padding: 10px 0;
    }

    .hero-text h1 {
        font-size: 1.5rem;
    }

    .btn {
        padding: 7px 14px;
        font-size: 11px;
    }

    .contact-info,
    .contact-form-wrapper {
        padding: 18px;
    }

    .form-group input,
    .form-group textarea {
        padding: 10px 12px;
    }
}
