@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:wght@400;500;600;700&family=Space+Grotesk:wght@300;400;500;600;700&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary: #2c2c2c;
    --secondary: #8b7355;
    --accent: #d4c4b0;
    --light: #f5f2ed;
    --white: #ffffff;
    --dark: #1a1a1a;
    --grey: #6b6b6b;
    --warm-grey: #a89f91;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 14px;
    line-height: 1.6;
    color: var(--primary);
    background-color: var(--light);
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Cormorant Garamond', serif;
    font-weight: 600;
    line-height: 1.2;
}

h1 { font-size: 2.5rem; }
h2 { font-size: 2rem; }
h3 { font-size: 1.5rem; }
h4 { font-size: 1.25rem; }

a {
    text-decoration: none;
    color: inherit;
    transition: color 0.3s ease;
}

a:hover {
    color: var(--secondary);
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

ul {
    list-style: none;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

header {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: 15px 0;
    background: linear-gradient(180deg, rgba(245,242,237,0.95) 0%, rgba(245,242,237,0) 100%);
    transition: transform 0.4s ease, opacity 0.4s ease;
}

header.header-hidden {
    transform: translateY(-100%);
    opacity: 0;
}

.header-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--primary);
    letter-spacing: 1px;
}

.logo span {
    color: var(--secondary);
}

nav {
    display: flex;
    align-items: center;
    gap: 25px;
}

nav a {
    font-size: 0.85rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--primary);
    position: relative;
}

nav a::after {
    content: '';
    position: absolute;
    bottom: -3px;
    left: 0;
    width: 0;
    height: 1px;
    background: var(--secondary);
    transition: width 0.3s ease;
}

nav a:hover::after {
    width: 100%;
}

.menu-toggle {
    display: none;
    flex-direction: column;
    gap: 4px;
    cursor: pointer;
    padding: 5px;
}

.menu-toggle span {
    display: block;
    width: 22px;
    height: 2px;
    background: var(--primary);
    transition: all 0.3s ease;
}

.mobile-nav {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: var(--light);
    z-index: 999;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 25px;
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s ease;
}

.mobile-nav.active {
    opacity: 1;
    visibility: visible;
    z-index: 1001;
}

.mobile-nav a {
    font-size: 1.5rem;
    font-family: 'Cormorant Garamond', serif;
}

.close-menu {
    position: absolute;
    top: 20px;
    right: 20px;
    font-size: 1.5rem;
    cursor: pointer;
}

.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    background: linear-gradient(135deg, var(--light) 0%, var(--accent) 100%);
    overflow: hidden;
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
    padding: 80px 0;
}

.hero-text {
    max-width: 500px;
}

.hero-text span {
    display: inline-block;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 3px;
    color: var(--secondary);
    margin-bottom: 15px;
}

.hero-text h1 {
    font-size: 3rem;
    margin-bottom: 20px;
    color: var(--dark);
}

.hero-text p {
    color: var(--grey);
    margin-bottom: 25px;
    font-size: 0.95rem;
}

.hero-image {
    position: relative;
}

.hero-image img {
    border-radius: 8px;
    box-shadow: 0 30px 60px rgba(0,0,0,0.1);
}

.hero-image::before {
    content: '';
    position: absolute;
    top: -20px;
    right: -20px;
    width: 100%;
    height: 100%;
    border: 2px solid var(--secondary);
    border-radius: 8px;
    z-index: -1;
}

.btn {
    display: inline-block;
    padding: 12px 28px;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-radius: 4px;
    transition: all 0.3s ease;
    cursor: pointer;
    border: none;
}

.btn-primary {
    background: var(--primary);
    color: var(--white);
}

.btn-primary:hover {
    background: var(--secondary);
    color: var(--white);
}

.btn-secondary {
    background: transparent;
    color: var(--primary);
    border: 1px solid var(--primary);
}

.btn-secondary:hover {
    background: var(--primary);
    color: var(--white);
}

section {
    padding: 60px 0;
}

.section-header {
    text-align: center;
    margin-bottom: 40px;
}

.section-header span {
    display: inline-block;
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 3px;
    color: var(--secondary);
    margin-bottom: 10px;
}

.section-header h2 {
    color: var(--dark);
    margin-bottom: 15px;
}

.section-header p {
    max-width: 600px;
    margin: 0 auto;
    color: var(--grey);
    font-size: 0.9rem;
}

.services {
    background: var(--white);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
}

.service-card {
    padding: 30px 25px;
    background: var(--light);
    border-radius: 8px;
    text-align: center;
    transition: all 0.3s ease;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.08);
}

.service-card i {
    font-size: 2rem;
    color: var(--secondary);
    margin-bottom: 15px;
}

.service-card h3 {
    font-size: 1.2rem;
    margin-bottom: 10px;
    color: var(--dark);
}

.service-card p {
    font-size: 0.85rem;
    color: var(--grey);
}

.about {
    background: var(--light);
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.about-image {
    position: relative;
}

.about-image img {
    border-radius: 8px;
}

.about-stats {
    position: absolute;
    bottom: -20px;
    right: -20px;
    background: var(--white);
    padding: 20px 25px;
    border-radius: 8px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.about-stats strong {
    display: block;
    font-size: 2rem;
    font-family: 'Cormorant Garamond', serif;
    color: var(--secondary);
}

.about-stats span {
    font-size: 0.75rem;
    color: var(--grey);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.about-text h2 {
    margin-bottom: 20px;
}

.about-text p {
    color: var(--grey);
    margin-bottom: 15px;
    font-size: 0.9rem;
}

.features-list {
    margin: 20px 0;
}

.features-list li {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 10px;
    font-size: 0.85rem;
}

.features-list i {
    color: var(--secondary);
}

.products {
    background: var(--white);
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
}

.product-card {
    background: var(--light);
    border-radius: 8px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.product-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.08);
}

.product-image {
    position: relative;
    overflow: hidden;
    height: 200px;
}

.product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.product-card:hover .product-image img {
    transform: scale(1.05);
}

.product-info {
    padding: 20px;
    text-align: center;
}

.product-info h3 {
    font-size: 1.1rem;
    margin-bottom: 8px;
    color: var(--dark);
}

.product-info p {
    font-size: 0.8rem;
    color: var(--grey);
    margin-bottom: 12px;
}

.product-price {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--secondary);
    font-family: 'Cormorant Garamond', serif;
}

.process {
    background: linear-gradient(135deg, var(--dark) 0%, var(--primary) 100%);
    color: var(--white);
}

.process .section-header span,
.process .section-header h2 {
    color: var(--white);
}

.process .section-header p {
    color: var(--warm-grey);
}

.process-steps {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.step {
    text-align: center;
    position: relative;
}

.step-number {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    background: var(--secondary);
    border-radius: 50%;
    font-size: 1.2rem;
    font-weight: 700;
    font-family: 'Cormorant Garamond', serif;
    margin-bottom: 15px;
}

.step h4 {
    font-size: 1rem;
    margin-bottom: 10px;
}

.step p {
    font-size: 0.8rem;
    color: var(--warm-grey);
}

.testimonials {
    background: var(--light);
}

.testimonials-slider {
    max-width: 700px;
    margin: 0 auto;
}

.testimonial {
    text-align: center;
    padding: 30px;
    background: var(--white);
    border-radius: 8px;
}

.testimonial-text {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.3rem;
    font-style: italic;
    color: var(--dark);
    margin-bottom: 20px;
}

.testimonial-author {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--secondary);
}

.cta {
    background: var(--accent);
    text-align: center;
    padding: 50px 0;
}

.cta h2 {
    margin-bottom: 15px;
    color: var(--dark);
}

.cta p {
    color: var(--grey);
    margin-bottom: 25px;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
    font-size: 0.9rem;
}

footer {
    background: var(--dark);
    color: var(--warm-grey);
    padding: 30px 0 15px;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    flex-wrap: wrap;
    gap: 30px;
    margin-bottom: 20px;
    padding-bottom: 20px;
    border-bottom: 1px solid rgba(255,255,255,0.1);
}

.footer-brand {
    max-width: 250px;
}

.footer-brand .logo {
    color: var(--white);
    margin-bottom: 10px;
}

.footer-brand p {
    font-size: 0.8rem;
}

.footer-links h4 {
    color: var(--white);
    font-size: 0.9rem;
    margin-bottom: 12px;
}

.footer-links ul {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.footer-links a {
    font-size: 0.8rem;
    color: var(--warm-grey);
}

.footer-links a:hover {
    color: var(--white);
}

.footer-contact p {
    font-size: 0.8rem;
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 6px;
}

.footer-contact i {
    color: var(--secondary);
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 15px;
}

.footer-bottom p {
    font-size: 0.75rem;
}

.policy-links {
    display: flex;
    gap: 15px;
}

.policy-links a {
    font-size: 0.75rem;
    color: var(--warm-grey);
}

.policy-links a:hover {
    color: var(--white);
}

.page-header {
    padding: 120px 0 50px;
    background: linear-gradient(135deg, var(--light) 0%, var(--accent) 100%);
    text-align: center;
}

.page-header h1 {
    margin-bottom: 15px;
    color: var(--dark);
}

.page-header p {
    color: var(--grey);
    max-width: 600px;
    margin: 0 auto;
}

.breadcrumb {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 15px;
    font-size: 0.8rem;
}

.breadcrumb a {
    color: var(--secondary);
}

.breadcrumb span {
    color: var(--grey);
}

.contact-section {
    background: var(--white);
}

.contact-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
}

.contact-info {
    background: var(--dark);
    color: var(--white);
    padding: 35px;
    border-radius: 8px;
}

.contact-info h3 {
    margin-bottom: 20px;
}

.contact-info-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    margin-bottom: 20px;
}

.contact-info-item i {
    font-size: 1.2rem;
    color: var(--secondary);
    margin-top: 3px;
}

.contact-info-item strong {
    display: block;
    margin-bottom: 5px;
    font-size: 0.85rem;
}

.contact-info-item span {
    font-size: 0.85rem;
    color: var(--warm-grey);
}

.contact-form-wrapper {
    background: var(--light);
    padding: 35px;
    border-radius: 8px;
}

.contact-form-wrapper h3 {
    margin-bottom: 20px;
}

.form-group {
    margin-bottom: 18px;
}

.form-group label {
    display: block;
    font-size: 0.8rem;
    font-weight: 500;
    margin-bottom: 6px;
    color: var(--dark);
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid var(--accent);
    border-radius: 4px;
    font-family: 'Space Grotesk', sans-serif;
    font-size: 0.9rem;
    background: var(--white);
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--secondary);
}

.form-group textarea {
    min-height: 120px;
    resize: vertical;
}

.checkbox-group {
    display: flex;
    align-items: flex-start;
    gap: 10px;
}

.checkbox-group input[type="checkbox"] {
    width: auto;
    margin-top: 3px;
}

.checkbox-group label {
    font-size: 0.75rem;
    color: var(--grey);
    margin-bottom: 0;
}

.map-section {
    background: var(--light);
}

.map-container {
    border-radius: 8px;
    overflow: hidden;
    height: 350px;
}

.map-container iframe {
    width: 100%;
    height: 100%;
    border: none;
}

.thank-you-section {
    min-height: calc(100vh - 180px);
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    background: linear-gradient(135deg, var(--light) 0%, var(--accent) 100%);
}

.thank-you-content {
    max-width: 500px;
    padding: 40px;
}

.thank-you-content i {
    font-size: 4rem;
    color: var(--secondary);
    margin-bottom: 20px;
}

.thank-you-content h1 {
    margin-bottom: 15px;
    color: var(--dark);
}

.thank-you-content p {
    color: var(--grey);
    margin-bottom: 25px;
}

.error-section {
    min-height: calc(100vh - 180px);
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    background: linear-gradient(135deg, var(--light) 0%, var(--accent) 100%);
}

.error-content {
    max-width: 500px;
    padding: 40px;
}

.error-content h1 {
    font-size: 6rem;
    color: var(--secondary);
    margin-bottom: 10px;
}

.error-content h2 {
    margin-bottom: 15px;
    color: var(--dark);
}

.error-content p {
    color: var(--grey);
    margin-bottom: 25px;
}

.policy-section {
    background: var(--white);
    min-height: 60vh;
}

.policy-content {
    max-width: 800px;
    margin: 0 auto;
}

.policy-content h2 {
    margin: 30px 0 15px;
    font-size: 1.5rem;
}

.policy-content h3 {
    margin: 25px 0 12px;
    font-size: 1.2rem;
}

.policy-content p {
    color: var(--grey);
    margin-bottom: 15px;
    font-size: 0.9rem;
}

.policy-content ul {
    margin: 15px 0 15px 20px;
}

.policy-content li {
    color: var(--grey);
    font-size: 0.9rem;
    margin-bottom: 8px;
    position: relative;
    padding-left: 15px;
}

.policy-content li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: var(--secondary);
}

.cookie-popup {
    position: fixed;
    bottom: 20px;
    left: 20px;
    right: 20px;
    max-width: 400px;
    background: var(--white);
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.15);
    z-index: 9999;
    display: none;
}

.cookie-popup.show {
    display: block;
}

.cookie-popup h4 {
    margin-bottom: 10px;
    font-size: 1rem;
}

.cookie-popup p {
    font-size: 0.8rem;
    color: var(--grey);
    margin-bottom: 15px;
}

.cookie-buttons {
    display: flex;
    gap: 10px;
}

.cookie-buttons .btn {
    padding: 10px 20px;
    font-size: 0.75rem;
}

.subpage-intro {
    background: var(--white);
}

.intro-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
}

.intro-text h2 {
    margin-bottom: 15px;
}

.intro-text p {
    color: var(--grey);
    margin-bottom: 15px;
    font-size: 0.9rem;
}

.intro-image img {
    border-radius: 8px;
}

.evaluation-process {
    background: var(--light);
}

.evaluation-steps {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
}

.eval-step {
    background: var(--white);
    padding: 25px;
    border-radius: 8px;
    text-align: center;
}

.eval-step-icon {
    width: 60px;
    height: 60px;
    background: var(--accent);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 15px;
}

.eval-step-icon i {
    font-size: 1.5rem;
    color: var(--secondary);
}

.eval-step h3 {
    font-size: 1.1rem;
    margin-bottom: 10px;
}

.eval-step p {
    font-size: 0.85rem;
    color: var(--grey);
}

.pricing-section {
    background: var(--white);
}

.pricing-table {
    max-width: 600px;
    margin: 0 auto;
    background: var(--light);
    border-radius: 8px;
    overflow: hidden;
}

.pricing-row {
    display: flex;
    justify-content: space-between;
    padding: 15px 25px;
    border-bottom: 1px solid var(--accent);
}

.pricing-row:last-child {
    border-bottom: none;
}

.pricing-row span {
    font-size: 0.9rem;
}

.pricing-row strong {
    color: var(--secondary);
}

.repair-categories {
    background: var(--light);
}

.categories-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
}

.category-card {
    background: var(--white);
    padding: 25px;
    border-radius: 8px;
    display: flex;
    gap: 20px;
    align-items: flex-start;
}

.category-icon {
    width: 50px;
    height: 50px;
    background: var(--accent);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.category-icon i {
    font-size: 1.3rem;
    color: var(--secondary);
}

.category-content h3 {
    font-size: 1.1rem;
    margin-bottom: 8px;
}

.category-content p {
    font-size: 0.85rem;
    color: var(--grey);
}

.guarantee-section {
    background: var(--white);
}

.guarantee-content {
    text-align: center;
    max-width: 700px;
    margin: 0 auto;
}

.guarantee-badges {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin-top: 30px;
}

.guarantee-badge {
    text-align: center;
}

.guarantee-badge i {
    font-size: 2rem;
    color: var(--secondary);
    margin-bottom: 10px;
}

.guarantee-badge span {
    display: block;
    font-size: 0.85rem;
    color: var(--grey);
}

@media (max-width: 992px) {
    .hero-content,
    .about-content,
    .contact-wrapper,
    .intro-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .services-grid,
    .products-grid,
    .evaluation-steps {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .process-steps {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .hero-text {
        max-width: 100%;
        text-align: center;
    }
    
    .hero-image::before {
        display: none;
    }
}

@media (max-width: 768px) {
    nav {
        display: none;
    }
    
    .menu-toggle {
        display: flex;
    }
    
    .mobile-nav {
        display: flex;
    }
    
    h1 { font-size: 2rem; }
    h2 { font-size: 1.6rem; }
    
    .hero-text h1 {
        font-size: 2.2rem;
    }
    
    .services-grid,
    .products-grid,
    .process-steps,
    .evaluation-steps {
        grid-template-columns: 1fr;
    }
    
    .categories-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-content {
        flex-direction: column;
        text-align: center;
    }
    
    .footer-brand {
        max-width: 100%;
    }
    
    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }
    
    .policy-links {
        flex-wrap: wrap;
        justify-content: center;
    }
    
    .about-stats {
        position: static;
        margin-top: 20px;
    }
    
    .guarantee-badges {
        flex-direction: column;
        gap: 20px;
    }
    
    .cookie-popup {
        left: 10px;
        right: 10px;
        max-width: none;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }
    
    section {
        padding: 40px 0;
    }
    
    h1 { font-size: 1.7rem; }
    h2 { font-size: 1.4rem; }
    
    .hero {
        min-height: auto;
        padding: 100px 0 60px;
    }
    
    .hero-text h1 {
        font-size: 1.8rem;
    }
    
    .btn {
        padding: 10px 20px;
        font-size: 0.75rem;
    }
    
    .service-card,
    .product-card,
    .eval-step,
    .category-card {
        padding: 20px 15px;
    }
    
    .contact-info,
    .contact-form-wrapper {
        padding: 25px 20px;
    }
    
    .category-card {
        flex-direction: column;
        text-align: center;
    }
    
    .category-icon {
        margin: 0 auto;
    }
}

@media (max-width: 320px) {
    body {
        font-size: 13px;
    }
    
    .logo {
        font-size: 1.1rem;
    }
    
    h1 { font-size: 1.5rem; }
    h2 { font-size: 1.3rem; }
    
    .hero-text h1 {
        font-size: 1.5rem;
    }
    
    .step-number {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }
}
