/* CSS Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-color: #cf927a;
    --secondary-color: #543b31;
    --text-dark: #2c3e50;
    --text-light: #7f8c8d;
    --background-light: #fafafa;
    --background-white: #ffffff;
    --border-light: #e8e8e8;
    --shadow-light: rgba(0, 0, 0, 0.1);
    --transition: all 0.3s ease;
    --border-radius: 8px;
    --max-width: 1200px;
}

html {
    scroll-behavior: smooth;
    line-height: 1.6;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    color: var(--text-dark);
    background-color: var(--background-light);
    overflow-x: hidden;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    color: var(--primary-color);
    text-decoration: none;
    transition: var(--transition);
}

a:hover {
    color: var(--secondary-color);
}

/* Container */
.container {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 20px;
}

/* Header and Navigation */
.header {
    background: var(--background-white);
    box-shadow: 0 2px 10px var(--shadow-light);
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
}

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

.nav-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 1.5rem;
    font-weight: bold;
    color: var(--secondary-color);
}

.logo-icon {
    width: 32px;
    height: 32px;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 30px;
}

.nav-menu a {
    color: var(--text-dark);
    font-weight: 500;
    padding: 5px 10px;
    border-radius: var(--border-radius);
    transition: var(--transition);
}

.nav-menu a:hover,
.nav-menu a.active {
    background: var(--primary-color);
    color: white;
}

.nav-toggle {
    display: none;
    flex-direction: column;
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
}

.nav-toggle span {
    width: 25px;
    height: 3px;
    background: var(--secondary-color);
    margin: 3px 0;
    transition: var(--transition);
}

/* Main Content */
main {
    margin-top: 70px;
}

/* Hero Section */
.hero {
    position: relative;
    min-height: 500px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-align: center;
    overflow: hidden;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    background-color: #cf927aad;
}

.hero-svg {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 600px;
    padding: 40px 20px;
}

.hero-content h1 {
    font-size: 3rem;
    margin-bottom: 20px;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
}

.hero-content p {
    font-size: 1.2rem;
    margin-bottom: 30px;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.5);
}

/* Page Header */
.page-header {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: white;
    padding: 80px 0 60px;
    text-align: center;
}

.header-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
}

.page-icon {
    width: 60px;
    height: 60px;
}

.page-header h1 {
    font-size: 2.5rem;
    margin-bottom: 10px;
}

.page-header p {
    font-size: 1.1rem;
    opacity: 0.9;
    max-width: 600px;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 12px 24px;
    border-radius: var(--border-radius);
    font-size: 1rem;
    font-weight: 500;
    text-decoration: none;
    border: 2px solid transparent;
    cursor: pointer;
    transition: var(--transition);
    text-align: center;
}

.btn svg {
    width: 20px;
    height: 20px;
}

.btn-primary {
    background: var(--primary-color);
    color: white;
}

.btn-primary:hover {
    background: var(--secondary-color);
    color: white;
    transform: translateY(-2px);
}

.btn-secondary {
    background: var(--text-light);
    color: white;
}

.btn-secondary:hover {
    background: var(--text-dark);
    color: white;
}

.btn-outline {
    background: transparent;
    color: var(--primary-color);
    border-color: var(--primary-color);
}

.btn-outline:hover {
    background: var(--primary-color);
    color: white;
}

.btn-large {
    padding: 16px 32px;
    font-size: 1.1rem;
}

/* Sections */
section {
    padding: 80px 0;
}

section:nth-child(even) {
    background: var(--background-white);
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-icon {
    width: 48px;
    height: 48px;
    margin: 0 auto 20px;
}

.section-header h2 {
    font-size: 2.2rem;
    margin-bottom: 15px;
    color: var(--secondary-color);
}

.section-header p {
    font-size: 1.1rem;
    color: var(--text-light);
    max-width: 600px;
    margin: 0 auto;
}

/* Grids */
.about-grid,
.advantages-grid,
.offers-grid,
.reviews-grid,
.faq-grid,
.guides-grid,
.tips-grid,
.craftsmen-grid,
.products-grid,
.categories-grid,
.certification-grid,
.guarantees-grid,
.steps-grid,
.guarantees-grid,
.frequency-grid,
.seasons-grid,
.areas-grid,
.faq-quick-grid {
    display: grid;
    gap: 30px;
}

.advantages-grid,
.offers-grid,
.reviews-grid,
.certification-grid,
.guarantees-grid,
.categories-grid {
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
}

.faq-grid,
.guides-grid,
.tips-grid,
.frequency-grid,
.faq-quick-grid {
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
}

.seasons-grid {
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
}

.craftsmen-grid,
.products-grid {
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
}

.steps-grid {
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
}

.areas-grid {
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
}

/* Cards */
.advantage-card,
.offer-card,
.review-card,
.faq-item,
.guide-card,
.tip-card,
.craftsman-card,
.product-card,
.category-card,
.cert-card,
.guarantee-card,
.step-card,
.frequency-card,
.season-card,
.area-card {
    background: var(--background-white);
    padding: 30px;
    border-radius: var(--border-radius);
    box-shadow: 0 4px 15px var(--shadow-light);
    transition: var(--transition);
}

.advantage-card:hover,
.offer-card:hover,
.category-card:hover,
.cert-card:hover,
.guarantee-card:hover,
.craftsman-card:hover,
.product-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px var(--shadow-light);
}

/* Card Icons */
.advantage-icon,
.guide-icon,
.season-icon,
.cert-icon,
.guarantee-icon,
.category-icon,
.step-icon {
    width: 48px;
    height: 48px;
    margin-bottom: 20px;
}

/* About Section */
.about-grid {
    grid-template-columns: 2fr 1fr;
    align-items: center;
}

.about-text p {
    margin-bottom: 20px;
    font-size: 1.1rem;
    line-height: 1.8;
}

.about-stats {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.stat {
    text-align: center;
    padding: 20px;
    background: var(--background-light);
    border-radius: var(--border-radius);
}

.stat-number {
    display: block;
    font-size: 2rem;
    font-weight: bold;
    color: var(--primary-color);
}

.stat-label {
    font-size: 0.9rem;
    color: var(--text-light);
}

/* Offers */
.offer-card {
    position: relative;
    text-align: center;
}

.offer-card.featured {
    border: 2px solid var(--primary-color);
    transform: scale(1.05);
}

.offer-badge {
    position: absolute;
    top: -10px;
    right: 20px;
    background: var(--primary-color);
    color: white;
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: bold;
}

.offer-price {
    margin: 20px 0;
}

.old-price {
    text-decoration: line-through;
    color: var(--text-light);
    margin-right: 10px;
}

.new-price {
    font-size: 1.5rem;
    font-weight: bold;
    color: var(--primary-color);
}

/* Services Tabs */
.services-tabs {
    max-width: 800px;
    margin: 0 auto;
}

.tab-buttons {
    display: flex;
    justify-content: center;
    margin-bottom: 40px;
    border-bottom: 1px solid var(--border-light);
}

.tab-button {
    background: none;
    border: none;
    padding: 15px 25px;
    font-size: 1rem;
    cursor: pointer;
    color: var(--text-light);
    border-bottom: 3px solid transparent;
    transition: var(--transition);
}

.tab-button.active,
.tab-button:hover {
    color: var(--primary-color);
    border-bottom-color: var(--primary-color);
}

.tab-panel {
    display: none;
    text-align: center;
}

.tab-panel.active {
    display: block;
}

.service-detail ul {
    list-style: none;
    margin: 20px 0;
}

.service-detail li {
    padding: 8px 0;
    padding-left: 20px;
    position: relative;
}

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

/* Reviews */
.review-stars {
    color: #ffc107;
    font-size: 1.2rem;
    margin-bottom: 15px;
}

.review-author {
    margin-top: 20px;
    padding-top: 15px;
    border-top: 1px solid var(--border-light);
}

.review-author strong {
    display: block;
    color: var(--secondary-color);
}

.review-author span {
    font-size: 0.9rem;
    color: var(--text-light);
}

/* Craftsmen Cards */
.craftsman-card {
    position: relative;
}

.craftsman-card.featured {
    border: 2px solid var(--primary-color);
}

.craftsman-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 20px;
}

.craftsman-avatar {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: var(--background-light);
    display: flex;
    align-items: center;
    justify-content: center;
}

.craftsman-avatar svg {
    width: 32px;
    height: 32px;
}

.featured-badge {
    background: var(--primary-color);
    color: white;
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: bold;
}

.specialty {
    color: var(--primary-color);
    font-weight: 600;
    margin: 5px 0;
}

.location {
    color: var(--text-light);
    font-size: 0.9rem;
}

.rating {
    display: flex;
    align-items: center;
    gap: 10px;
    margin: 15px 0;
}

.stars {
    color: #ffc107;
}

.rating-text {
    font-size: 0.9rem;
    color: var(--text-light);
}

.certifications {
    display: flex;
    gap: 8px;
    margin: 15px 0;
    flex-wrap: wrap;
}

.cert-badge {
    background: var(--secondary-color);
    color: white;
    padding: 3px 8px;
    border-radius: 12px;
    font-size: 0.75rem;
}

.craftsman-details ul {
    list-style: none;
    margin: 15px 0;
}

.craftsman-details li {
    padding: 4px 0;
    padding-left: 16px;
    position: relative;
    font-size: 0.9rem;
}

.craftsman-details li:before {
    content: "•";
    position: absolute;
    left: 0;
    color: var(--primary-color);
}

.contact-craftsman {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 20px;
    padding-top: 15px;
    border-top: 1px solid var(--border-light);
}

.availability {
    font-size: 0.85rem;
    color: var(--text-light);
}

/* Product Cards */
.product-card {
    position: relative;
}

.product-card.bestseller {
    border: 2px solid var(--primary-color);
}

.product-card.eco-friendly {
    border: 2px solid #28a745;
}

.product-card.professional {
    border: 2px solid var(--secondary-color);
}

.product-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: bold;
    z-index: 1;
}

.product-card.bestseller .product-badge {
    background: var(--primary-color);
    color: white;
}

.product-card.eco-friendly .product-badge {
    background: #28a745;
    color: white;
}

.product-card.professional .product-badge {
    background: var(--secondary-color);
    color: white;
}

.product-image {
    height: 200px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--background-light);
    border-radius: var(--border-radius);
    margin-bottom: 20px;
}

.product-image svg {
    width: 100px;
    height: 100px;
}

.product-brand {
    font-size: 0.85rem;
    color: var(--primary-color);
    font-weight: 600;
    margin: 5px 0;
}

.product-description {
    font-size: 0.9rem;
    line-height: 1.5;
    margin: 10px 0;
}

.product-features {
    display: flex;
    gap: 5px;
    margin: 15px 0;
    flex-wrap: wrap;
}

.feature-tag {
    background: var(--primary-color);
    color: white;
    padding: 2px 8px;
    border-radius: 12px;
    font-size: 0.7rem;
}

.product-specs {
    font-size: 0.85rem;
    margin: 15px 0;
}

.product-specs p {
    margin: 5px 0;
}

.product-price {
    display: flex;
    align-items: baseline;
    gap: 5px;
    margin: 15px 0;
}

.price {
    font-size: 1.3rem;
    font-weight: bold;
    color: var(--primary-color);
}

.unit {
    font-size: 0.9rem;
    color: var(--text-light);
}

.product-availability {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.85rem;
    margin-top: 15px;
    padding-top: 15px;
    border-top: 1px solid var(--border-light);
}

.stock-status {
    padding: 2px 8px;
    border-radius: 12px;
    font-size: 0.75rem;
    font-weight: bold;
}

.stock-status.available {
    background: #d4edda;
    color: #155724;
}

.stock-status.limited {
    background: #fff3cd;
    color: #856404;
}

.delivery {
    color: var(--text-light);
}

/* Comparison Table */
.comparison-table {
    overflow-x: auto;
    margin: 40px 0;
}

.comparison-table table {
    width: 100%;
    border-collapse: collapse;
    background: var(--background-white);
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: 0 4px 15px var(--shadow-light);
}

.comparison-table th,
.comparison-table td {
    padding: 15px;
    text-align: left;
    border-bottom: 1px solid var(--border-light);
}

.comparison-table th {
    background: var(--primary-color);
    color: white;
    font-weight: 600;
}

.comparison-table tr.highlighted {
    background: rgba(207, 146, 122, 0.1);
}

.rating-badge {
    background: var(--primary-color);
    color: white;
    padding: 4px 8px;
    border-radius: 12px;
    font-size: 0.85rem;
    font-weight: bold;
}

/* Steps Timeline */
.steps-timeline {
    max-width: 600px;
    margin: 0 auto;
}

.timeline-step {
    display: flex;
    gap: 20px;
    margin-bottom: 40px;
    align-items: flex-start;
}

.step-indicator {
    flex-shrink: 0;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--primary-color);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: bold;
}

.step-content h3 {
    margin-bottom: 8px;
    color: var(--secondary-color);
}

.step-time {
    font-size: 0.85rem;
    color: var(--primary-color);
    font-weight: 600;
    margin-top: 5px;
    display: block;
}

.step-number {
    background: var(--primary-color);
    color: white;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.8rem;
    font-weight: bold;
    margin-bottom: 15px;
}

/* Contact Form */
.contact-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 60px;
    align-items: start;
}

.form-header {
    text-align: center;
    margin-bottom: 40px;
}

.form-icon {
    width: 48px;
    height: 48px;
    margin: 0 auto 20px;
}

.contact-form {
    background: var(--background-white);
    padding: 40px;
    border-radius: var(--border-radius);
    box-shadow: 0 4px 15px var(--shadow-light);
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.form-group {
    margin-bottom: 25px;
    position: relative;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: var(--secondary-color);
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 15px;
    border: 2px solid var(--border-light);
    border-radius: var(--border-radius);
    font-size: 1rem;
    transition: var(--transition);
    background: var(--background-white);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
}

.form-field-icon {
    position: absolute;
    right: 15px;
    top: 45px;
    width: 20px;
    height: 20px;
    color: var(--text-light);
}

.checkbox-group {
    display: flex;
    align-items: flex-start;
    gap: 12px;
}

.checkbox-label {
    display: flex !important;
    align-items: flex-start;
    flex-wrap: wrap;
    gap: 12px;
    font-size: 0.95rem;
    line-height: 1.4;
    cursor: pointer;
}

.checkmark {
    width: 20px;
    height: 20px;
    border: 2px solid var(--border-light);
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
    flex-shrink: 0;
    margin-top: 2px;
}

.checkbox-label input[type="checkbox"] {
    display: none;
}

.checkbox-label input[type="checkbox"]:checked + .checkmark {
    background: var(--primary-color);
    border-color: var(--primary-color);
}

.checkbox-label input[type="checkbox"]:checked + .checkmark:after {
    content: "✓";
    color: white;
    font-size: 0.8rem;
    font-weight: bold;
}

/* Contact Info Cards */
.contact-info-container {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.contact-info-card,
.quick-contact-card {
    background: var(--background-white);
    padding: 30px;
    border-radius: var(--border-radius);
    box-shadow: 0 4px 15px var(--shadow-light);
}

.info-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 30px;
}

.info-icon {
    width: 48px;
    height: 48px;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.contact-item {
    display: flex;
    gap: 15px;
}

.contact-icon-wrapper {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(207, 146, 122, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.contact-icon-wrapper svg {
    width: 20px;
    height: 20px;
}

.contact-text h4 {
    margin-bottom: 5px;
    color: var(--secondary-color);
}

.contact-text small {
    color: var(--text-light);
    font-size: 0.85rem;
}

.hours-info {
    margin-top: 30px;
    padding-top: 25px;
    border-top: 1px solid var(--border-light);
}

.hours-list {
    margin: 15px 0;
}

.hours-item {
    display: flex;
    justify-content: space-between;
    margin: 8px 0;
    font-size: 0.9rem;
}

.day {
    color: var(--text-dark);
}

.time {
    color: var(--text-light);
    font-weight: 500;
}

.emergency-note {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-top: 15px;
    padding: 10px;
    background: rgba(207, 146, 122, 0.1);
    border-radius: var(--border-radius);
    font-size: 0.9rem;
    color: var(--primary-color);
}

.emergency-note svg {
    width: 16px;
    height: 16px;
}

.quick-contact-options {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-top: 20px;
}

.quick-contact-btn {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 20px;
    background: var(--primary-color);
    color: white;
    border-radius: var(--border-radius);
    text-decoration: none;
    font-weight: 500;
    transition: var(--transition);
}

.quick-contact-btn:hover {
    background: var(--secondary-color);
    color: white;
    transform: translateY(-2px);
}

.quick-contact-btn svg {
    width: 18px;
    height: 18px;
}

/* Areas */
.area-card.primary {
    border-left: 4px solid var(--primary-color);
}

.area-card.secondary {
    border-left: 4px solid var(--secondary-color);
}

.area-card.extended {
    border-left: 4px solid var(--text-light);
}

.areas-note {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    max-width: 600px;
    margin: 40px auto 0;
    padding: 20px;
    background: rgba(207, 146, 122, 0.1);
    border-radius: var(--border-radius);
}

.areas-note svg {
    width: 20px;
    height: 20px;
    color: var(--primary-color);
    flex-shrink: 0;
    margin-top: 2px;
}

/* Seasonal Cards */
.season-card.spring {
    border-top: 4px solid #28a745;
}

.season-card.summer {
    border-top: 4px solid #ffc107;
}

.season-card.autumn {
    border-top: 4px solid #fd7e14;
}

.season-card.winter {
    border-top: 4px solid #6f42c1;
}

/* Thank You Page */
.thank-you-section {
    padding: 100px 0;
    text-align: center;
}

.thank-you-content {
    max-width: 800px;
    margin: 0 auto;
}

.success-icon {
    margin-bottom: 40px;
}

.success-icon svg {
    width: 100px;
    height: 100px;
}

.thank-you-message h1 {
    font-size: 2.5rem;
    color: var(--secondary-color);
    margin-bottom: 20px;
}

.lead {
    font-size: 1.2rem;
    color: var(--text-light);
    margin-bottom: 50px;
}

.next-steps {
    margin: 60px 0;
}

.emergency-contact {
    margin-top: 60px;
}

.emergency-card {
    background: var(--background-white);
    padding: 40px;
    border-radius: var(--border-radius);
    box-shadow: 0 4px 15px var(--shadow-light);
    max-width: 400px;
    margin: 0 auto;
}

.emergency-icon {
    width: 48px;
    height: 48px;
    margin: 0 auto 20px;
}

.emergency-actions {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
    margin-top: 20px;
}

/* Reviews Preview */
.reviews-carousel {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-bottom: 40px;
}

.reviews-cta {
    text-align: center;
}

/* Footer */
.footer {
    background: var(--secondary-color);
    color: white;
    padding: 60px 0 20px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 1.3rem;
    font-weight: bold;
    margin-bottom: 15px;
}

.footer-section h3 {
    margin-bottom: 20px;
    color: var(--primary-color);
}

.footer-section ul {
    list-style: none;
}

.footer-section li {
    margin-bottom: 8px;
}

.footer-section a {
    color: rgba(255, 255, 255, 0.8);
    transition: var(--transition);
}

.footer-section a:hover {
    color: var(--primary-color);
}

.social-links {
    display: flex;
    gap: 15px;
    margin-top: 20px;
}

.social-links a {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}

.social-links a:hover {
    background: var(--primary-color);
    color: white;
}

.social-links svg {
    width: 20px;
    height: 20px;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.contact-info p {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    color: rgba(255, 255, 255, 0.9);
}

.contact-icon {
    width: 18px;
    height: 18px;
    flex-shrink: 0;
    margin-top: 2px;
}

.footer-bottom {
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
    color: rgba(255, 255, 255, 0.7);
}

.footer-bottom p {
    margin-bottom: 8px;
}

/* Cookie Management */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--secondary-color);
    color: white;
    padding: 20px;
    z-index: 1001;
    transform: translateY(100%);
    transition: var(--transition);
}

.cookie-banner.show {
    transform: translateY(0);
}

.cookie-content {
    max-width: var(--max-width);
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 15px;
    align-items: center;
    text-align: center;
}

.cookie-buttons {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
    justify-content: center;
}

.cookie-modal {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1002;
}

.cookie-modal.hidden {
    display: none;
}

.modal-content {
    background: var(--background-white);
    padding: 40px;
    border-radius: var(--border-radius);
    max-width: 500px;
    width: 90%;
}

.cookie-category {
    margin: 20px 0;
}

.cookie-category label {
    display: flex;
    align-items: center;
    gap: 10px;
    cursor: pointer;
}

.modal-buttons {
    display: flex;
    gap: 15px;
    justify-content: flex-end;
    margin-top: 30px;
}

/* CTA Sections */
.cta {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color)) !important;
    color: white;
    text-align: center;
}

.cta-content {
    max-width: 600px;
    margin: 0 auto;
}

.cta h2 {
    font-size: 2.2rem;
    margin-bottom: 15px;
}

.cta p {
    font-size: 1.1rem;
    margin-bottom: 30px;
    opacity: 0.9;
}

.cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.cta .btn-primary {
    background: white;
    color: var(--primary-color);
}

.cta .btn-primary:hover {
    background: var(--background-light);
    color: var(--secondary-color);
}

.cta .btn-outline {
    border-color: white;
    color: white;
}

.cta .btn-outline:hover {
    background: white;
    color: var(--primary-color);
}

/* Legal Pages */
.legal-page {
    padding: 100px 0;
}

.legal-content {
    max-width: 800px;
    margin: 0 auto;
    background: var(--background-white);
    padding: 40px;
    border-radius: var(--border-radius);
    box-shadow: 0 4px 15px var(--shadow-light);
}

.legal-content h1 {
    color: var(--secondary-color);
    margin-bottom: 30px;
    font-size: 2.2rem;
}

.legal-content h2 {
    color: var(--primary-color);
    margin: 30px 0 15px;
    font-size: 1.4rem;
}

.legal-content h3 {
    color: var(--secondary-color);
    margin: 20px 0 10px;
    font-size: 1.2rem;
}

.legal-content p {
    margin-bottom: 15px;
    line-height: 1.7;
}

/* Hidden class */
.hidden {
    display: none !important;
}

/* Mobile Styles */
@media (max-width: 768px) {
    .nav-menu {
        position: fixed;
        top: 70px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 70px);
        background: var(--background-white);
        flex-direction: column;
        align-items: center;
        justify-content: flex-start;
        padding-top: 50px;
        transition: var(--transition);
        box-shadow: 0 4px 15px var(--shadow-light);
    }
    
    .nav-menu.active {
        left: 0;
    }
    
    .nav-toggle {
        display: flex;
    }
    
    .nav-toggle.active span:nth-child(1) {
        transform: rotate(45deg) translate(5px, 5px);
    }
    
    .nav-toggle.active span:nth-child(2) {
        opacity: 0;
    }
    
    .nav-toggle.active span:nth-child(3) {
        transform: rotate(-45deg) translate(7px, -6px);
    }
    
    .hero-content h1 {
        font-size: 2rem;
    }
    
    .page-header h1 {
        font-size: 2rem;
    }
    
    .about-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .about-stats {
        flex-direction: row;
        justify-content: space-around;
    }
    
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .tab-buttons {
        flex-wrap: wrap;
    }
    
    .tab-button {
        padding: 12px 15px;
        font-size: 0.9rem;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .cookie-content {
        text-align: left;
    }
    
    .cookie-buttons {
        justify-content: flex-start;
    }
    
    .comparison-table {
        font-size: 0.85rem;
    }
    
    .comparison-table th,
    .comparison-table td {
        padding: 10px 8px;
    }
    
    .timeline-step {
        flex-direction: column;
        text-align: center;
    }
    
    .steps-grid {
        grid-template-columns: 1fr;
    }
    
    section {
        padding: 60px 0;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }
    
    .hero-content h1 {
        font-size: 1.8rem;
    }
    
    .page-header h1 {
        font-size: 1.8rem;
    }
    
    .section-header h2 {
        font-size: 1.8rem;
    }
    
    .btn {
        padding: 10px 20px;
        font-size: 0.9rem;
    }
    
    .btn-large {
        padding: 14px 28px;
        font-size: 1rem;
    }
    
    .advantages-grid,
    .offers-grid,
    .reviews-grid,
    .craftsmen-grid,
    .products-grid,
    .categories-grid,
    .certification-grid,
    .guarantees-grid, [class*="-grid"] {
        grid-template-columns: 1fr;
    }
    
    .about-stats {
        flex-direction: column;
    }
    
    .contact-form {
        padding: 30px 20px;
    }
    
    section {
        padding: 50px 0;
    }
    .contact-craftsman {
    flex-direction: column;}
}