/* ===================================
   RESET AND BASE STYLES
   =================================== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: #2c1810;
    background-color: #faf8f5;
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* ===================================
   TYPOGRAPHY
   =================================== */
h1, h2, h3, h4, h5, h6 {
    font-weight: 600;
    margin-bottom: 1rem;
    color: #2c1810;
}

h1 { font-size: 2.5rem; }
h2 { font-size: 2rem; }
h3 { font-size: 1.5rem; }
h4 { font-size: 1.25rem; }

p {
    margin-bottom: 1rem;
    color: #4a3728;
}

a {
    color: #8b4513;
    text-decoration: none;
    transition: color 0.3s ease;
}

a:hover {
    color: #d2691e;
}

/* ===================================
   BUTTONS
   =================================== */
.btn-primary, .btn-secondary {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 12px 24px;
    border: none;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 600;
    text-decoration: none;
    cursor: pointer;
    transition: all 0.3s ease;
    text-align: center;
}

.btn-primary {
    background: linear-gradient(135deg, #8b4513, #d2691e);
    color: white;
    box-shadow: 0 4px 15px rgba(139, 69, 19, 0.3);
}

.btn-primary:hover {
    background: linear-gradient(135deg, #d2691e, #8b4513);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(139, 69, 19, 0.4);
    color: white;
}

.btn-secondary {
    background: transparent;
    color: #8b4513;
    border: 2px solid #8b4513;
}

.btn-secondary:hover {
    background: #8b4513;
    color: white;
}

/* ===================================
   COOKIE BANNER
   =================================== */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(135deg, #2c1810, #4a3728);
    color: white;
    padding: 20px;
    z-index: 10000;
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.2);
    transform: translateY(100%);
    opacity: 0;
    transition: all 0.5s ease;
}

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

.cookie-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: 1200px;
    margin: 0 auto;
    gap: 20px;
    flex-wrap: wrap;
}

.cookie-text {
    display: flex;
    align-items: center;
    gap: 10px;
    flex: 1;
}

.cookie-text i {
    font-size: 1.5rem;
    color: #d2691e;
}

.cookie-buttons {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.cookie-btn {
    padding: 8px 16px;
    border: none;
    border-radius: 6px;
    font-size: 0.9rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
}

.cookie-btn.accept-all {
    background: #8b4513;
    color: white;
}

.cookie-btn.accept-all:hover {
    background: #d2691e;
}

.cookie-btn.necessary-only {
    background: #6b5b5b;
    color: white;
}

.cookie-btn.necessary-only:hover {
    background: #8b8b8b;
}

.cookie-btn.custom {
    background: transparent;
    color: white;
    border: 1px solid white;
}

.cookie-btn.custom:hover {
    background: white;
    color: #2c1810;
}

/* ===================================
   COOKIE SETTINGS MODAL
   =================================== */
.modal {
    display: none;
    position: fixed;
    z-index: 10001;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(5px);
}

.modal.show {
    display: flex;
    align-items: center;
    justify-content: center;
}

.modal-content {
    background: white;
    padding: 30px;
    border-radius: 15px;
    max-width: 500px;
    width: 90%;
    max-height: 80vh;
    overflow-y: auto;
    position: relative;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.close {
    position: absolute;
    right: 15px;
    top: 15px;
    font-size: 28px;
    font-weight: bold;
    cursor: pointer;
    color: #666;
}

.close:hover {
    color: #8b4513;
}

.cookie-category {
    display: flex;
    align-items: center;
    gap: 15px;
    margin: 20px 0;
    padding: 15px;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
}

.switch {
    position: relative;
    display: inline-block;
    width: 50px;
    height: 24px;
}

.switch input {
    opacity: 0;
    width: 0;
    height: 0;
}

.slider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #ccc;
    transition: 0.4s;
    border-radius: 24px;
}

.slider:before {
    position: absolute;
    content: "";
    height: 18px;
    width: 18px;
    left: 3px;
    bottom: 3px;
    background-color: white;
    transition: 0.4s;
    border-radius: 50%;
}

input:checked + .slider {
    background-color: #8b4513;
}

input:checked + .slider:before {
    transform: translateX(26px);
}

input:disabled + .slider {
    background-color: #8b4513;
    opacity: 0.6;
}

.cookie-info h4 {
    margin-bottom: 5px;
    color: #2c1810;
}

.cookie-info p {
    margin: 0;
    font-size: 0.9rem;
    color: #666;
}

.save-settings {
    width: 100%;
    margin-top: 20px;
    background: #8b4513;
    color: white;
}

.save-settings:hover {
    background: #d2691e;
}

/* ===================================
   HEADER
   =================================== */
.header {
    background: linear-gradient(135deg, #2c1810, #4a3728);
    color: white;
    padding: 1rem 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.navigation {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 1.5rem;
    font-weight: 700;
    color: #d2691e;
}

.logo i {
    font-size: 2rem;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-menu a {
    color: white;
    font-weight: 500;
    transition: color 0.3s ease;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.nav-menu a:hover {
    color: #d2691e;
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: white;
    margin: 3px 0;
    transition: 0.3s;
}

/* ===================================
   HERO BANNER (Block 1)
   =================================== */
.hero-banner {
    position: relative;
    height: 70vh;
    min-height: 500px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #f5e6d3, #e8d5c2);
    overflow: hidden;
}

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

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

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: #2c1810;
    max-width: 800px;
    padding: 0 20px;
}

.hero-content h1 {
    font-size: 3.5rem;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    flex-wrap: wrap;
}

.hero-content h1 i {
    color: #8b4513;
    font-size: 3rem;
}

.hero-subtitle {
    font-size: 1.3rem;
    margin-bottom: 2rem;
    color: #4a3728;
    font-weight: 400;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* ===================================
   SERVICES SECTION (Block 2)
   =================================== */
.services-section {
    padding: 80px 0;
    background: white;
}

.section-header {
    text-align: center;
    margin-bottom: 3rem;
}

.section-header h2 {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.section-header h2 i {
    color: #8b4513;
}

.section-header p {
    font-size: 1.2rem;
    color: #6b5b5b;
    max-width: 600px;
    margin: 0 auto;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.service-card {
    background: #faf8f5;
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    border: 3px solid transparent;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(139, 69, 19, 0.1), transparent);
    transition: left 0.5s ease;
}

.service-card:hover::before {
    left: 100%;
}

.service-card:hover {
    border-color: #8b4513;
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(139, 69, 19, 0.2);
}

.service-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #8b4513, #d2691e);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 2rem;
    color: white;
}

.service-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #2c1810;
}

.service-card p {
    color: #6b5b5b;
    line-height: 1.6;
}

/* ===================================
   ABOUT SECTION (Block 3)
   =================================== */
.about-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #f5e6d3, #e8d5c2);
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.about-text {
    padding: 2rem;
}

.about-subtitle {
    font-size: 1.3rem;
    color: #8b4513;
    font-weight: 500;
    margin-bottom: 1.5rem;
}

.about-description p {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

.about-description i {
    color: #8b4513;
    margin-top: 3px;
    flex-shrink: 0;
}

.company-stats {
    display: flex;
    gap: 2rem;
    margin-top: 2rem;
    flex-wrap: wrap;
}

.stat {
    text-align: center;
    flex: 1;
    min-width: 120px;
}

.stat i {
    font-size: 2rem;
    color: #8b4513;
    display: block;
    margin-bottom: 0.5rem;
}

.stat-number {
    display: block;
    font-size: 2rem;
    font-weight: bold;
    color: #2c1810;
}

.stat-label {
    font-size: 0.9rem;
    color: #6b5b5b;
}

.about-visual {
    background: white;
    border-radius: 20px;
    padding: 3rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.expertise-icons {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
}

.expertise-item {
    text-align: center;
    padding: 1.5rem;
    border-radius: 15px;
    background: #faf8f5;
    transition: all 0.3s ease;
}

.expertise-item:hover {
    background: #f0e8dc;
    transform: translateY(-3px);
}

.expertise-item i {
    font-size: 2.5rem;
    color: #8b4513;
    display: block;
    margin-bottom: 1rem;
}

.expertise-item span {
    font-weight: 600;
    color: #2c1810;
}

/* ===================================
   REVIEWS SECTION (Block 4)
   =================================== */
.reviews-section {
    padding: 80px 0;
    background: white;
}

.reviews-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
}

.review-card {
    background: #faf8f5;
    padding: 2rem;
    border-radius: 15px;
    border-left: 5px solid #8b4513;
    position: relative;
    transition: all 0.3s ease;
}

.review-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(139, 69, 19, 0.15);
}

.review-stars {
    display: flex;
    gap: 5px;
    margin-bottom: 1rem;
}

.review-stars i {
    color: #d2691e;
    font-size: 1.2rem;
}

.review-card p {
    font-style: italic;
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
    line-height: 1.6;
}

.reviewer {
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 600;
    color: #2c1810;
}

.reviewer i {
    font-size: 1.5rem;
    color: #8b4513;
}

/* ===================================
   PROCESS SECTION (Block 5)
   =================================== */
.process-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #f5e6d3, #e8d5c2);
}

.process-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.process-step {
    text-align: center;
    padding: 2rem;
    background: white;
    border-radius: 20px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    position: relative;
    transition: all 0.3s ease;
}

.process-step:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
}

.step-number {
    position: relative;
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #8b4513, #d2691e);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    color: white;
    font-size: 1.5rem;
    font-weight: bold;
}

.step-number i {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 1.8rem;
}

.step-number span {
    position: absolute;
    bottom: -5px;
    right: -5px;
    background: #2c1810;
    color: white;
    width: 25px;
    height: 25px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.9rem;
}

.process-step h3 {
    margin-bottom: 1rem;
    color: #2c1810;
}

.process-step p {
    color: #6b5b5b;
    line-height: 1.6;
}

/* ===================================
   SPECIALTIES SECTION (Block 6)
   =================================== */
.specialties-section {
    padding: 80px 0;
    background: white;
}

.specialties-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.specialty-card {
    background: #faf8f5;
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    border-top: 5px solid #8b4513;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.specialty-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: linear-gradient(90deg, #8b4513, #d2691e, #8b4513);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.specialty-card:hover::after {
    transform: scaleX(1);
}

.specialty-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(139, 69, 19, 0.2);
}

.specialty-card i {
    font-size: 3rem;
    color: #8b4513;
    margin-bottom: 1rem;
}

.specialty-card h3 {
    margin-bottom: 1.5rem;
    color: #2c1810;
}

.specialty-card ul {
    list-style: none;
    text-align: left;
}

.specialty-card li {
    padding: 0.5rem 0;
    border-bottom: 1px solid #e0e0e0;
    color: #6b5b5b;
    transition: color 0.3s ease;
}

.specialty-card li:last-child {
    border-bottom: none;
}

.specialty-card li:hover {
    color: #8b4513;
}

/* ===================================
   LOCATION SECTION (Block 7)
   =================================== */
.location-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #f5e6d3, #e8d5c2);
}

.location-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.contact-details {
    margin: 2rem 0;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    margin-bottom: 2rem;
    padding: 1.5rem;
    background: white;
    border-radius: 10px;
    box-shadow: 0 3px 15px rgba(0, 0, 0, 0.1);
}

.contact-item i {
    font-size: 1.5rem;
    color: #8b4513;
    margin-top: 5px;
    width: 30px;
    flex-shrink: 0;
}

.contact-item h4 {
    margin-bottom: 0.5rem;
    color: #2c1810;
}

.contact-item p {
    margin: 0;
    color: #6b5b5b;
}

.contact-item a {
    color: #8b4513;
    font-weight: 600;
}

.location-features {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    margin-top: 2rem;
}

.feature {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 0.8rem 1.2rem;
    background: white;
    border-radius: 25px;
    font-size: 0.9rem;
    color: #6b5b5b;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.feature i {
    color: #8b4513;
}

.location-visual {
    display: flex;
    justify-content: center;
    align-items: center;
}

.google-map {
    width: 100%;
    height: 400px;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.google-map iframe {
    width: 100%;
    height: 100%;
    border: none;
    border-radius: 20px;
}

/* ===================================
   CONTACT SECTION (Block 8)
   =================================== */
.contact-section {
    padding: 80px 0;
    background: white;
}

.contact-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 4rem;
}

.contact-form {
    background: #faf8f5;
    padding: 3rem;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.form-group {
    margin-bottom: 1.5rem;
}

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

.form-group label {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 0.5rem;
    font-weight: 600;
    color: #2c1810;
}

.form-group label i {
    color: #8b4513;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px;
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    font-size: 1rem;
    transition: border-color 0.3s ease;
    background: white;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #8b4513;
}

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

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

.checkbox-label input[type="checkbox"] {
    width: auto;
    margin: 0;
}

.checkmark {
    width: 20px;
    height: 20px;
    border: 2px solid #8b4513;
    border-radius: 4px;
    position: relative;
    flex-shrink: 0;
    margin-top: 2px;
}

.checkbox-label input[type="checkbox"] {
    position: absolute;
    opacity: 0;
    cursor: pointer;
}

.checkbox-label input[type="checkbox"]:checked + .checkmark {
    background: #8b4513;
}

.checkbox-label input[type="checkbox"]:checked + .checkmark::after {
    content: '✓';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: white;
    font-weight: bold;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.info-card {
    background: #faf8f5;
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    border: 3px solid transparent;
    transition: all 0.3s ease;
}

.info-card:hover {
    border-color: #8b4513;
    transform: translateY(-3px);
}

.info-card i {
    font-size: 2.5rem;
    color: #8b4513;
    margin-bottom: 1rem;
}

.info-card h3 {
    margin-bottom: 1rem;
    color: #2c1810;
}

.info-card p {
    color: #6b5b5b;
    margin-bottom: 1rem;
}

.contact-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 20px;
    background: #8b4513;
    color: white;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

.contact-btn:hover {
    background: #d2691e;
    color: white;
}

/* ===================================
   SOCIAL SECTION (Block 9)
   =================================== */
.social-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #f5e6d3, #e8d5c2);
}

.social-content {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 3rem;
    align-items: center;
    margin-bottom: 3rem;
}

.social-info h2 {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 1rem;
}

.social-info h2 i {
    color: #8b4513;
}

.social-links {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.social-link {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 20px;
    background: white;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 3px 15px rgba(0, 0, 0, 0.1);
}

.social-link:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.15);
}

.social-link.facebook { color: #1877f2; }
.social-link.instagram { color: #e4405f; }
.social-link.linkedin { color: #0077b5; }
.social-link.twitter { color: #1da1f2; }

.social-link i {
    font-size: 1.2rem;
}

.newsletter-section {
    background: white;
    padding: 2rem;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.newsletter-form {
    display: flex;
    gap: 2rem;
    align-items: center;
    flex-wrap: wrap;
}

.newsletter-content {
    display: flex;
    align-items: center;
    gap: 15px;
    flex: 1;
}

.newsletter-content i {
    font-size: 2.5rem;
    color: #8b4513;
}

.newsletter-text h3 {
    margin-bottom: 0.5rem;
    color: #2c1810;
}

.newsletter-text p {
    margin: 0;
    color: #6b5b5b;
}

.newsletter-input {
    display: flex;
    gap: 10px;
    min-width: 300px;
}

.newsletter-input input {
    flex: 1;
    padding: 12px;
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    font-size: 1rem;
}

.newsletter-input input:focus {
    outline: none;
    border-color: #8b4513;
}

.newsletter-input button {
    padding: 12px 20px;
    background: #8b4513;
    color: white;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    transition: background 0.3s ease;
}

.newsletter-input button:hover {
    background: #d2691e;
}

/* ===================================
   THANK YOU PAGE
   =================================== */
.thank-you-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #f5e6d3, #e8d5c2);
    min-height: 60vh;
    display: flex;
    align-items: center;
}

.thank-you-content {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
    background: white;
    padding: 3rem;
    border-radius: 20px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

.thank-you-icon {
    font-size: 4rem;
    color: #8b4513;
    margin-bottom: 2rem;
}

.thank-you-content h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
    color: #2c1810;
}

.thank-you-message {
    font-size: 1.2rem;
    margin-bottom: 3rem;
    color: #6b5b5b;
    line-height: 1.6;
}

.next-steps {
    background: #faf8f5;
    padding: 2rem;
    border-radius: 15px;
    margin: 2rem 0;
    text-align: left;
}

.next-steps h3 {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 1.5rem;
    color: #2c1810;
}

.next-steps h3 i {
    color: #8b4513;
}

.next-steps ul {
    list-style: none;
}

.next-steps li {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 1rem;
    color: #6b5b5b;
}

.next-steps li i {
    color: #8b4513;
    width: 20px;
}

.contact-alternatives {
    background: #faf8f5;
    padding: 2rem;
    border-radius: 15px;
    margin: 2rem 0;
}

.contact-alternatives h3 {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 1rem;
    color: #2c1810;
}

.contact-alternatives h3 i {
    color: #8b4513;
}

.urgent-contact {
    display: flex;
    gap: 2rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 1.5rem;
}

.contact-option {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 1rem;
    background: white;
    border-radius: 10px;
    box-shadow: 0 3px 15px rgba(0, 0, 0, 0.1);
}

.contact-option i {
    font-size: 1.5rem;
    color: #8b4513;
}

.contact-option h4 {
    margin-bottom: 0.5rem;
    color: #2c1810;
}

.contact-option p,
.contact-option a {
    margin: 0;
    color: #6b5b5b;
}

.return-actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
    margin-top: 2rem;
    flex-wrap: wrap;
}

/* ===================================
   LEGAL PAGES
   =================================== */
.legal-section {
    padding: 80px 0;
    background: white;
}

.legal-header {
    text-align: center;
    margin-bottom: 3rem;
    padding: 2rem;
    background: linear-gradient(135deg, #f5e6d3, #e8d5c2);
    border-radius: 20px;
}

.legal-header h1 {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.legal-header h1 i {
    color: #8b4513;
}

.last-updated {
    font-style: italic;
    color: #6b5b5b;
    font-size: 0.95rem;
}

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

.legal-block {
    background: #faf8f5;
    padding: 2rem;
    border-radius: 15px;
    margin-bottom: 2rem;
    border-left: 5px solid #8b4513;
}

.legal-block h2 {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 1.5rem;
    color: #2c1810;
    font-size: 1.5rem;
}

.legal-block h2 i {
    color: #8b4513;
}

.legal-block h3 {
    color: #2c1810;
    margin: 1.5rem 0 1rem 0;
    font-size: 1.2rem;
}

.legal-block ul,
.legal-block ol {
    margin-left: 1.5rem;
    margin-bottom: 1rem;
}

.legal-block li {
    margin-bottom: 0.5rem;
    color: #4a3728;
}

.contact-info {
    background: white;
    padding: 1.5rem;
    border-radius: 10px;
    margin: 1rem 0;
    border: 1px solid #e0e0e0;
}

.contact-info strong {
    color: #2c1810;
}

.legal-footer {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    margin-top: 2rem;
    border: 2px solid #8b4513;
}

.legal-footer strong {
    color: #2c1810;
}

/* Cookie Policy Specific Styles */
.cookie-category-info {
    background: white;
    padding: 1.5rem;
    border-radius: 10px;
    margin: 1rem 0;
    border-left: 3px solid #8b4513;
}

.cookie-table table {
    width: 100%;
    border-collapse: collapse;
    margin: 1rem 0;
    background: white;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 3px 15px rgba(0, 0, 0, 0.1);
}

.cookie-table th,
.cookie-table td {
    padding: 12px;
    text-align: left;
    border-bottom: 1px solid #e0e0e0;
}

.cookie-table th {
    background: #8b4513;
    color: white;
    font-weight: 600;
}

.cookie-table tr:last-child td {
    border-bottom: none;
}

.third-party-info {
    background: white;
    padding: 1.5rem;
    border-radius: 10px;
    margin: 1rem 0;
    border: 1px solid #e0e0e0;
}

.cookie-settings-section {
    text-align: center;
    margin: 2rem 0;
}

.cookie-settings-btn {
    padding: 12px 24px;
    background: #8b4513;
    color: white;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    font-size: 1rem;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: background 0.3s ease;
}

.cookie-settings-btn:hover {
    background: #d2691e;
}

.faq-section {
    margin-top: 2rem;
}

.faq-item {
    background: white;
    padding: 1.5rem;
    border-radius: 10px;
    margin-bottom: 1rem;
    border: 1px solid #e0e0e0;
}

.faq-item h4 {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 1rem;
    color: #2c1810;
}

.faq-item h4 i {
    color: #8b4513;
}

.faq-item p {
    margin: 0;
    color: #6b5b5b;
    line-height: 1.6;
}

/* ===================================
   FOOTER
   =================================== */
.footer {
    background: linear-gradient(135deg, #2c1810, #1a0f0a);
    color: white;
    padding: 60px 0 20px;
}

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

.footer-section h4 {
    color: #d2691e;
    margin-bottom: 1.5rem;
    font-size: 1.2rem;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 1.5rem;
    font-weight: 700;
    color: #d2691e;
    margin-bottom: 1rem;
}

.footer-logo i {
    font-size: 2rem;
}

.footer-section p {
    color: #ccc;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.footer-contact p {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 0.5rem;
    color: #ccc;
}

.footer-contact i {
    color: #d2691e;
    width: 20px;
}

.footer-contact a {
    color: #d2691e;
}

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

.footer-section ul li {
    margin-bottom: 0.8rem;
}

.footer-section ul li a {
    color: #ccc;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: color 0.3s ease;
}

.footer-section ul li a:hover {
    color: #d2691e;
}

.footer-section ul li a i {
    width: 20px;
    color: #8b4513;
}

.opening-hours li {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #ccc;
    margin-bottom: 0.8rem;
}

.opening-hours i {
    color: #8b4513;
    width: 20px;
}

.footer-bottom {
    border-top: 1px solid #444;
    padding-top: 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.footer-bottom p {
    color: #ccc;
    margin: 0;
}

.footer-social {
    display: flex;
    gap: 1rem;
}

.footer-social a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: #444;
    color: white;
    border-radius: 50%;
    transition: all 0.3s ease;
}

.footer-social a:hover {
    background: #8b4513;
    transform: translateY(-2px);
}

/* ===================================
   RESPONSIVE DESIGN
   =================================== */
@media (max-width: 768px) {
    .hamburger {
        display: flex;
    }
    
    .nav-menu {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: #2c1810;
        flex-direction: column;
        padding: 2rem;
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    }
    
    .nav-menu.active {
        display: flex;
    }
    
    .hero-content h1 {
        font-size: 2.5rem;
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .about-content,
    .location-content,
    .contact-content,
    .social-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .services-grid,
    .specialties-grid {
        grid-template-columns: 1fr;
    }
    
    .process-steps {
        grid-template-columns: 1fr;
    }
    
    .company-stats {
        justify-content: center;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .newsletter-form {
        flex-direction: column;
        text-align: center;
    }
    
    .newsletter-input {
        min-width: auto;
        width: 100%;
    }
    
    .urgent-contact {
        flex-direction: column;
        align-items: center;
    }
    
    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }
    
    .cookie-content {
        flex-direction: column;
        text-align: center;
    }
    
    .cookie-buttons {
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }
    
    .hero-content h1 {
        font-size: 2rem;
        flex-direction: column;
    }
    
    .hero-content h1 i {
        font-size: 2.5rem;
    }
    
    .section-header h2 {
        font-size: 2rem;
        flex-direction: column;
    }
    
    .modal-content {
        padding: 20px;
        margin: 20px;
    }
    
    .cookie-category {
        flex-direction: column;
        text-align: center;
        gap: 10px;
    }
    
    .thank-you-content {
        padding: 2rem;
    }
    
    .thank-you-content h1 {
        font-size: 2rem;
    }
    
    .return-actions {
        flex-direction: column;
    }
}

/* ===================================
   ANIMATIONS AND TRANSITIONS
   =================================== */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes pulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.05); }
    100% { transform: scale(1); }
}

.service-card:hover .service-icon {
    animation: pulse 0.6s ease;
}

.section-header {
    animation: fadeInUp 0.8s ease;
}

/* ===================================
   UTILITY CLASSES
   =================================== */
.text-center { text-align: center; }
.text-left { text-align: left; }
.text-right { text-align: right; }

.mt-1 { margin-top: 0.5rem; }
.mt-2 { margin-top: 1rem; }
.mt-3 { margin-top: 1.5rem; }
.mb-1 { margin-bottom: 0.5rem; }
.mb-2 { margin-bottom: 1rem; }
.mb-3 { margin-bottom: 1.5rem; }

.hidden { display: none; }
.visible { display: block; }

/* ===================================
   PRINT STYLES
   =================================== */
@media print {
    .header,
    .footer,
    .cookie-banner,
    .modal,
    .hero-banner,
    .social-section,
    .contact-section {
        display: none;
    }
    
    body {
        font-size: 12pt;
        line-height: 1.4;
        color: #000;
    }
    
    .legal-content {
        max-width: none;
    }
    
    .legal-block {
        border: 1px solid #000;
        page-break-inside: avoid;
    }
}
