@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;500;600;700&family=Space+Grotesk:wght@400;500;600;700&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary: #2d4a3e;
    --primary-dark: #1a2f28;
    --secondary: #e07a5f;
    --accent: #81b29a;
    --dark: #1a1a2e;
    --light: #f4f4f8;
    --gray: #6b7280;
    --matte-bg: #e8e8e8;
    --white: #ffffff;
    --font-main: 'Outfit', sans-serif;
    --font-accent: 'Space Grotesk', sans-serif;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-main);
    font-size: 14px;
    line-height: 1.6;
    color: var(--dark);
    background-color: var(--light);
}

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;
}

.btn {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 10px 20px;
    font-family: var(--font-accent);
    font-size: 13px;
    font-weight: 500;
    border-radius: 25px;
    cursor: pointer;
    transition: all 0.3s ease;
    border: none;
}

.btn-primary {
    background: var(--secondary);
    color: var(--white);
}

.btn-primary:hover {
    background: #c96a52;
    transform: translateY(-2px);
}

.btn-outline {
    background: transparent;
    border: 2px solid var(--primary);
    color: var(--primary);
}

.btn-outline:hover {
    background: var(--primary);
    color: var(--white);
}

.section-title {
    font-family: var(--font-accent);
    font-size: 28px;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 10px;
    text-align: center;
}

.section-subtitle {
    font-size: 14px;
    color: var(--gray);
    text-align: center;
    margin-bottom: 30px;
}

header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    transition: transform 0.4s ease, background 0.3s ease;
}

header.header-hidden {
    transform: translateY(-100%);
}

.header-wrapper {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    padding: 12px 0;
}

.header-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-family: var(--font-accent);
    font-size: 18px;
    font-weight: 700;
    color: var(--white);
    display: flex;
    align-items: center;
    gap: 8px;
}

.logo i {
    font-size: 22px;
    color: var(--secondary);
}

.nav-desktop {
    display: flex;
    align-items: center;
    gap: 25px;
}

.nav-desktop a {
    font-family: var(--font-accent);
    font-size: 13px;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.85);
    position: relative;
    padding: 5px 0;
}

.nav-desktop a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--secondary);
    transition: width 0.3s ease;
}

.nav-desktop a:hover,
.nav-desktop a.active {
    color: var(--white);
}

.nav-desktop a:hover::after,
.nav-desktop a.active::after {
    width: 100%;
}

.header-cta {
    display: flex;
    align-items: center;
    gap: 15px;
}

.header-phone {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 13px;
    color: var(--white);
}

.header-phone i {
    color: var(--secondary);
}

.menu-toggle {
    display: none;
    background: none;
    border: none;
    color: var(--white);
    font-size: 22px;
    cursor: pointer;
    padding: 5px;
}

.mobile-nav {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: var(--primary-dark);
    z-index: 999;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 20px;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.mobile-nav.active {
    opacity: 1;
    visibility: visible;
}

.mobile-nav a {
    font-family: var(--font-accent);
    font-size: 20px;
    font-weight: 600;
    color: var(--white);
    padding: 10px 20px;
}

.mobile-nav a:hover {
    color: var(--secondary);
}

.close-menu {
    position: absolute;
    top: 20px;
    right: 20px;
    background: none;
    border: none;
    color: var(--white);
    font-size: 28px;
    cursor: pointer;
}

.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    background: var(--matte-bg);
    padding-top: 80px;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 50%;
    height: 100%;
    background: linear-gradient(135deg, var(--primary) 0%, var(--accent) 100%);
    clip-path: polygon(20% 0, 100% 0, 100% 100%, 0% 100%);
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
    position: relative;
    z-index: 1;
}

.hero-text {
    padding-right: 30px;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: var(--secondary);
    color: var(--white);
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 11px;
    font-weight: 600;
    margin-bottom: 15px;
}

.hero-title {
    font-family: var(--font-accent);
    font-size: 42px;
    font-weight: 700;
    line-height: 1.15;
    color: var(--dark);
    margin-bottom: 15px;
}

.hero-title span {
    color: var(--primary);
}

.hero-desc {
    font-size: 15px;
    color: var(--gray);
    margin-bottom: 25px;
    max-width: 450px;
}

.hero-buttons {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.hero-stats {
    display: flex;
    gap: 30px;
    margin-top: 30px;
}

.stat-item {
    text-align: center;
}

.stat-number {
    font-family: var(--font-accent);
    font-size: 28px;
    font-weight: 700;
    color: var(--primary);
}

.stat-label {
    font-size: 11px;
    color: var(--gray);
}

.hero-image {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-image img {
    max-width: 100%;
    border-radius: 20px;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.15);
}

.floating-card {
    position: absolute;
    background: var(--white);
    padding: 12px 18px;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    display: flex;
    align-items: center;
    gap: 10px;
}

.floating-card i {
    font-size: 20px;
    color: var(--secondary);
}

.floating-card-text {
    font-size: 12px;
}

.floating-card-text strong {
    display: block;
    font-size: 14px;
    color: var(--dark);
}

.card-top {
    top: 20%;
    left: -30px;
    animation: float 3s ease-in-out infinite;
}

.card-bottom {
    bottom: 20%;
    right: -20px;
    animation: float 3s ease-in-out infinite 1.5s;
}

@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

section {
    padding: 60px 0;
}

.services-section {
    background: var(--white);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.service-card {
    background: var(--light);
    padding: 25px 20px;
    border-radius: 15px;
    text-align: center;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.service-card:hover {
    border-color: var(--primary);
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
}

.service-icon {
    width: 55px;
    height: 55px;
    background: linear-gradient(135deg, var(--primary) 0%, var(--accent) 100%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 15px;
}

.service-icon i {
    font-size: 24px;
    color: var(--white);
}

.service-card h3 {
    font-family: var(--font-accent);
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 8px;
    color: var(--dark);
}

.service-card p {
    font-size: 13px;
    color: var(--gray);
}

.about-section {
    background: var(--matte-bg);
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
}

.about-image {
    position: relative;
}

.about-image img {
    border-radius: 15px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.1);
}

.experience-badge {
    position: absolute;
    bottom: -15px;
    right: -7px;
    background: var(--secondary);
    color: var(--white);
    padding: 20px;
    border-radius: 12px;
    text-align: center;
}

.experience-badge span {
    display: block;
    font-family: var(--font-accent);
    font-size: 32px;
    font-weight: 700;
}

.experience-badge small {
    font-size: 11px;
}

.about-text h2 {
    font-family: var(--font-accent);
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 15px;
    color: var(--dark);
}

.about-text p {
    font-size: 14px;
    color: var(--gray);
    margin-bottom: 20px;
}

.about-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
}

.about-feature {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 13px;
    color: var(--dark);
}

.about-feature i {
    color: var(--secondary);
    font-size: 16px;
}

.process-section {
    background: var(--white);
}

.process-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.process-card {
    text-align: center;
    padding: 25px 15px;
    position: relative;
}

.process-card::after {
    content: '';
    position: absolute;
    top: 35px;
    right: -10px;
    width: 20px;
    height: 2px;
    background: var(--secondary);
}

.process-card:last-child::after {
    display: none;
}

.process-number {
    width: 45px;
    height: 45px;
    background: var(--primary);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-accent);
    font-size: 18px;
    font-weight: 700;
    margin: 0 auto 15px;
}

.process-card h3 {
    font-family: var(--font-accent);
    font-size: 15px;
    font-weight: 600;
    margin-bottom: 8px;
    color: var(--dark);
}

.process-card p {
    font-size: 12px;
    color: var(--gray);
}

.why-section {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    color: var(--white);
}

.why-section .section-title,
.why-section .section-subtitle {
    color: var(--white);
}

.why-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.why-card {
    background: rgba(255, 255, 255, 0.1);
    padding: 25px 20px;
    border-radius: 15px;
    text-align: center;
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}

.why-card:hover {
    background: rgba(255, 255, 255, 0.15);
    transform: translateY(-5px);
}

.why-card i {
    font-size: 32px;
    color: var(--secondary);
    margin-bottom: 15px;
}

.why-card h3 {
    font-family: var(--font-accent);
    font-size: 15px;
    font-weight: 600;
    margin-bottom: 8px;
}

.why-card p {
    font-size: 12px;
    opacity: 0.85;
}

.cta-section {
    background: var(--matte-bg);
    text-align: center;
}

.cta-content {
    max-width: 600px;
    margin: 0 auto;
}

.cta-content h2 {
    font-family: var(--font-accent);
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 15px;
    color: var(--dark);
}

.cta-content p {
    font-size: 14px;
    color: var(--gray);
    margin-bottom: 25px;
}

footer {
    background: var(--dark);
    color: var(--white);
    padding: 25px 0 15px;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 15px;
    padding-bottom: 15px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-logo {
    font-family: var(--font-accent);
    font-size: 16px;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 8px;
}

.footer-logo i {
    color: var(--secondary);
}

.footer-links {
    display: flex;
    gap: 20px;
}

.footer-links a {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.7);
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: var(--secondary);
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 10px;
    padding-top: 15px;
}

.copyright {
    font-size: 11px;
    color: rgba(255, 255, 255, 0.6);
}

.policy-links {
    display: flex;
    gap: 15px;
}

.policy-links a {
    font-size: 11px;
    color: rgba(255, 255, 255, 0.6);
    transition: color 0.3s ease;
}

.policy-links a:hover {
    color: var(--secondary);
}

.page-header {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    padding: 120px 0 50px;
    text-align: center;
    color: var(--white);
}

.page-header h1 {
    font-family: var(--font-accent);
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 10px;
}

.breadcrumb {
    display: flex;
    justify-content: center;
    gap: 10px;
    font-size: 13px;
}

.breadcrumb a {
    color: rgba(255, 255, 255, 0.7);
}

.breadcrumb a:hover {
    color: var(--white);
}

.breadcrumb span {
    color: var(--secondary);
}

.pricing-section {
    background: var(--white);
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
}

.pricing-card {
    background: var(--light);
    border-radius: 20px;
    padding: 30px 25px;
    text-align: center;
    transition: all 0.3s ease;
    border: 2px solid transparent;
    position: relative;
    overflow: hidden;
}

.pricing-card.featured {
    border-color: var(--secondary);
    transform: scale(1.02);
}

.pricing-card.featured::before {
    content: 'Popular';
    position: absolute;
    top: 15px;
    right: -30px;
    background: var(--secondary);
    color: var(--white);
    padding: 5px 40px;
    font-size: 11px;
    font-weight: 600;
    transform: rotate(45deg);
}

.pricing-card:hover {
    border-color: var(--primary);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.1);
}

.pricing-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary) 0%, var(--accent) 100%);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 15px;
}

.pricing-icon i {
    font-size: 26px;
    color: var(--white);
}

.pricing-card h3 {
    font-family: var(--font-accent);
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 10px;
    color: var(--dark);
}

.pricing-card .price {
    font-family: var(--font-accent);
    font-size: 32px;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 15px;
}

.pricing-card .price small {
    font-size: 14px;
    font-weight: 400;
    color: var(--gray);
}

.pricing-features {
    text-align: left;
    margin-bottom: 20px;
}

.pricing-features li {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    color: var(--gray);
    padding: 8px 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.pricing-features li i {
    color: var(--secondary);
    font-size: 14px;
}

.contact-section {
    background: var(--white);
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
}

.contact-info {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    padding: 35px;
    border-radius: 20px;
    color: var(--white);
}

.contact-info h3 {
    font-family: var(--font-accent);
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 20px;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    margin-bottom: 20px;
}

.contact-item-icon {
    width: 45px;
    height: 45px;
    background: rgba(255, 255, 255, 0.15);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.contact-item-icon i {
    font-size: 18px;
    color: var(--secondary);
}

.contact-item-text h4 {
    font-family: var(--font-accent);
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 3px;
}

.contact-item-text p {
    font-size: 13px;
    opacity: 0.85;
}

.contact-form-wrapper {
    background: var(--light);
    padding: 35px;
    border-radius: 20px;
}

.contact-form-wrapper h3 {
    font-family: var(--font-accent);
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 20px;
    color: var(--dark);
}

.form-group {
    margin-bottom: 18px;
}

.form-group label {
    display: block;
    font-size: 13px;
    font-weight: 500;
    color: var(--dark);
    margin-bottom: 6px;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 12px 15px;
    border: 2px solid #e0e0e0;
    border-radius: 10px;
    font-family: var(--font-main);
    font-size: 14px;
    transition: all 0.3s ease;
    background: var(--white);
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary);
}

.form-group textarea {
    min-height: 100px;
    resize: vertical;
}

.checkbox-group {
    display: flex;
    align-items: flex-start;
    gap: 10px;
}

.checkbox-group input[type="checkbox"] {
    width: 18px;
    height: 18px;
    margin-top: 2px;
    cursor: pointer;
}

.checkbox-group label {
    font-size: 12px;
    color: var(--gray);
    cursor: pointer;
}

.checkbox-group a {
    color: var(--primary);
    text-decoration: underline;
}

.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;
}

.appliance-section {
    background: var(--white);
}

.appliance-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.appliance-card {
    background: var(--light);
    padding: 25px 20px;
    border-radius: 15px;
    text-align: center;
    transition: all 0.3s ease;
}

.appliance-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
}

.appliance-card i {
    font-size: 36px;
    color: var(--primary);
    margin-bottom: 15px;
}

.appliance-card h3 {
    font-family: var(--font-accent);
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 8px;
    color: var(--dark);
}

.appliance-card p {
    font-size: 13px;
    color: var(--gray);
}

.features-list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
    margin-top: 20px;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 10px;
    background: var(--white);
    padding: 12px 15px;
    border-radius: 10px;
    font-size: 13px;
}

.feature-item i {
    color: var(--secondary);
}

.error-page {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--matte-bg);
    text-align: center;
    padding-top: 80px;
}

.error-content h1 {
    font-family: var(--font-accent);
    font-size: 120px;
    font-weight: 700;
    color: var(--primary);
    line-height: 1;
}

.error-content h2 {
    font-family: var(--font-accent);
    font-size: 28px;
    font-weight: 600;
    margin-bottom: 15px;
    color: var(--dark);
}

.error-content p {
    font-size: 14px;
    color: var(--gray);
    margin-bottom: 25px;
}

.thankyou-page {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--matte-bg);
    text-align: center;
    padding-top: 80px;
}

.thankyou-content {
    max-width: 500px;
}

.thankyou-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary) 0%, var(--accent) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.thankyou-icon i {
    font-size: 36px;
    color: var(--white);
}

.thankyou-content h1 {
    font-family: var(--font-accent);
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 15px;
    color: var(--dark);
}

.thankyou-content p {
    font-size: 14px;
    color: var(--gray);
    margin-bottom: 25px;
}

.policy-page {
    padding: 40px 0;
}

.policy-content {
    background: var(--white);
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.05);
}

.policy-content h2 {
    font-family: var(--font-accent);
    font-size: 22px;
    font-weight: 600;
    margin: 30px 0 15px;
    color: var(--dark);
}

.policy-content h2:first-child {
    margin-top: 0;
}

.policy-content p {
    font-size: 14px;
    color: var(--gray);
    margin-bottom: 15px;
    line-height: 1.7;
}

.policy-content ul {
    margin-bottom: 15px;
    padding-left: 20px;
}

.policy-content ul li {
    font-size: 14px;
    color: var(--gray);
    margin-bottom: 8px;
    position: relative;
    padding-left: 15px;
    list-style: disc;
}

.last-updated {
    font-size: 12px;
    color: var(--gray);
    font-style: italic;
    margin-bottom: 20px;
}

.cookie-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.15);
    z-index: 9999;
    display: none;
}

.cookie-popup.show {
    display: block;
    animation: slideUp 0.3s ease;
}

@keyframes slideUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.cookie-popup h4 {
    font-family: var(--font-accent);
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 10px;
    color: var(--dark);
}

.cookie-popup p {
    font-size: 12px;
    color: var(--gray);
    margin-bottom: 15px;
}

.cookie-popup a {
    color: var(--primary);
    text-decoration: underline;
}

.cookie-buttons {
    display: flex;
    gap: 10px;
}

.cookie-buttons .btn {
    flex: 1;
    justify-content: center;
    padding: 10px 15px;
    font-size: 12px;
}

.gallery-section {
    background: var(--light);
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.gallery-item {
    border-radius: 15px;
    overflow: hidden;
    position: relative;
}

.gallery-item img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.gallery-item:hover img {
    transform: scale(1.05);
}

.testimonials-section {
    background: var(--white);
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.testimonial-card {
    background: var(--light);
    padding: 25px;
    border-radius: 15px;
    position: relative;
}

.testimonial-card::before {
    content: '\f10d';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    font-size: 28px;
    color: var(--secondary);
    opacity: 0.3;
    position: absolute;
    top: 20px;
    right: 20px;
}

.testimonial-text {
    font-size: 13px;
    color: var(--gray);
    margin-bottom: 15px;
    line-height: 1.7;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 12px;
}

.testimonial-avatar {
    width: 45px;
    height: 45px;
    background: var(--primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-weight: 600;
}

.testimonial-info h4 {
    font-family: var(--font-accent);
    font-size: 14px;
    font-weight: 600;
    color: var(--dark);
}

.testimonial-info span {
    font-size: 11px;
    color: var(--gray);
}

.intro-section {
    background: var(--matte-bg);
}

.intro-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
}

.intro-text h2 {
    font-family: var(--font-accent);
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 15px;
    color: var(--dark);
}

.intro-text p {
    font-size: 14px;
    color: var(--gray);
    margin-bottom: 20px;
}

.intro-image img {
    border-radius: 15px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.1);
}

.faq-section {
    background: var(--white);
}

.faq-list {
    max-width: 700px;
    margin: 0 auto;
}

.faq-item {
    background: var(--light);
    border-radius: 12px;
    margin-bottom: 12px;
    overflow: hidden;
}

.faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 18px 20px;
    cursor: pointer;
    font-family: var(--font-accent);
    font-size: 14px;
    font-weight: 600;
    color: var(--dark);
    transition: all 0.3s ease;
}

.faq-question:hover {
    color: var(--primary);
}

.faq-question i {
    font-size: 14px;
    transition: transform 0.3s ease;
}

.faq-item.active .faq-question i {
    transform: rotate(180deg);
}

.faq-answer {
    padding: 0 20px;
    max-height: 0;
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item.active .faq-answer {
    padding: 0 20px 18px;
    max-height: 200px;
}

.faq-answer p {
    font-size: 13px;
    color: var(--gray);
    line-height: 1.7;
}

@media (max-width: 991px) {
    .hero-content {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .hero-text {
        padding-right: 0;
    }

    .hero-desc {
        margin-left: auto;
        margin-right: auto;
    }

    .hero-stats {
        justify-content: center;
    }

    .hero::before {
        display: none;
    }

    .services-grid,
    .pricing-grid,
    .appliance-grid,
    .testimonials-grid,
    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .process-grid,
    .why-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .process-card::after {
        display: none;
    }

    .about-content,
    .contact-grid,
    .intro-content {
        grid-template-columns: 1fr;
    }

    .about-image {
        order: -1;
    }

    .nav-desktop,
    .header-cta {
        display: none;
    }

    .menu-toggle {
        display: block;
    }

    .mobile-nav {
        display: flex;
    }
}

@media (max-width: 767px) {
    .hero-title {
        font-size: 32px;
    }

    .section-title {
        font-size: 24px;
    }

    .services-grid,
    .pricing-grid,
    .appliance-grid,
    .testimonials-grid,
    .gallery-grid,
    .process-grid,
    .why-grid {
        grid-template-columns: 1fr;
    }

    .pricing-card.featured {
        transform: none;
    }

    .about-features {
        grid-template-columns: 1fr;
    }

    .features-list {
        grid-template-columns: 1fr;
    }

    .footer-content {
        flex-direction: column;
        text-align: center;
    }

    .footer-links {
        flex-wrap: wrap;
        justify-content: center;
    }

    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }

    .policy-links {
        flex-wrap: wrap;
        justify-content: center;
    }

    .floating-card {
        display: none;
    }
}

@media (max-width: 480px) {
    body {
        font-size: 13px;
    }

    .container {
        padding: 0 12px;
    }

    section {
        padding: 40px 0;
    }

    .hero {
        padding-top: 70px;
    }

    .hero-title {
        font-size: 26px;
    }

    .hero-buttons {
        flex-direction: column;
    }

    .btn {
        width: 100%;
        justify-content: center;
    }

    .page-header {
        padding: 100px 0 40px;
    }

    .page-header h1 {
        font-size: 26px;
    }

    .contact-info,
    .contact-form-wrapper {
        padding: 25px;
    }

    .policy-content {
        padding: 25px;
    }

    .error-content h1 {
        font-size: 80px;
    }

    .cookie-popup {
        left: 10px;
        right: 10px;
    }
}

@media (max-width: 320px) {
    .hero-title {
        font-size: 22px;
    }

    .section-title {
        font-size: 20px;
    }

    .logo {
        font-size: 15px;
    }

    .hero-stats {
        flex-direction: column;
        gap: 15px;
    }
}
