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

html {
    font-size: 16px;
    scroll-behavior: smooth;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #fff;
}

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

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-weight: 600;
    line-height: 1.2;
    margin-bottom: 1rem;
    color: #2c3e50;
}

h1 {
    font-size: 2.5rem;
}

h2 {
    font-size: 2rem;
}

h3 {
    font-size: 1.5rem;
}

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

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

a:hover {
    color: #d35400;
}

/* Button Styles */
.btn {
    display: inline-block;
    padding: 12px 30px;
    border-radius: 5px;
    font-weight: 600;
    text-align: center;
    text-decoration: none;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 1rem;
}

.btn-primary {
    background-color: #e67e22;
    color: white;
}

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

.btn-secondary {
    background-color: #3498db;
    color: white;
}

.btn-secondary:hover {
    background-color: #2980b9;
    color: white;
}

.btn-outline {
    background-color: transparent;
    color: #e67e22;
    border: 2px solid #e67e22;
}

.btn-outline:hover {
    background-color: #e67e22;
    color: white;
}

/* Cookie Banner */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #2c3e50;
    color: white;
    padding: 20px 0;
    z-index: 1000;
    transform: translateY(100%);
    transition: transform 0.3s ease;
}

.cookie-banner.show {
    transform: translateY(0);
}
.cookie-content p{
    color: #fff;
}
.cookie-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    flex-wrap: wrap;
}

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

.cookie-buttons .btn {
    padding: 8px 16px;
    font-size: 0.9rem;
}

/* Header */
.newsletter-content p{
    color: #fff;
}
.header {
    background-color: white;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    position: sticky;
    top: 0;
    z-index: 100;
}

.nav-wrapper {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1rem 0;
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
}

.logo-img {
    width: 40px;
    height: 40px;
}

.logo-text {
    font-size: 1.5rem;
    font-weight: bold;
    color: #2c3e50;
}

.nav {
    display: flex;
    align-items: center;
}

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

.nav-link {
    color: #333;
    font-weight: 500;
    padding: 10px 0;
    position: relative;
    transition: color 0.3s ease;
}

.nav-link:hover,
.nav-link.active {
    color: #e67e22;
}

.nav-link.active::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background-color: #e67e22;
}

.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 4px;
}

.mobile-menu-toggle span {
    width: 25px;
    height: 3px;
    background-color: #333;
    transition: 0.3s;
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    padding: 80px 0;
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.hero-title {
    font-size: 3rem;
    color: #2c3e50;
    margin-bottom: 1.5rem;
}

.hero-subtitle {
    font-size: 1.2rem;
    color: #666;
    margin-bottom: 2rem;
    line-height: 1.7;
}

.hero-buttons {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.hero-image {
    text-align: center;
}

.hero-img {
    width: 100%;
    max-width: 500px;
    height: auto;
}

/* Page Header */
.page-header {
    background: linear-gradient(135deg, #2c3e50 0%, #3498db 100%);
    color: white;
    padding: 60px 0;
    text-align: center;
}

.page-title {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: white;
}

.page-subtitle {
    font-size: 1.2rem;
    opacity: 0.9;
    color: white;
}

/* Sections */
.services-preview,
.why-choose-us,
.about-content,
.company-values,
.team-section,
.services-grid-section,
.process-section,
.additional-services,
.testimonials-section,
.stats-section,
.blog-section,
.newsletter-section,
.contact-section,
.service-areas,
.faq-section,
.while-you-wait {
    padding: 80px 0;
}

.section-title {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: #2c3e50;
}

/* Grid Layouts */
.services-grid,
.values-grid,
.features-grid,
.process-grid,
.additional-grid,
.testimonials-grid,
.stats-grid,
.blog-grid,
.wait-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 2rem;
}

/* Cards */
.service-card,
.value-card,
.feature,
.process-step,
.additional-card,
.testimonial-card,
.stat-card,
.blog-card,
.wait-card {
    background: white;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    text-align: center;
}

.service-card:hover,
.value-card:hover,
.blog-card:hover,
.wait-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.15);
}

.service-icon,
.value-icon,
.wait-icon {
    margin-bottom: 20px;
}

.service-img,
.value-img,
.wait-img {
    width: 60px;
    height: 60px;
}

.service-card h3,
.value-card h3,
.additional-card h3,
.wait-card h3 {
    margin-bottom: 15px;
    color: #2c3e50;
}

/* Features Grid */
.feature {
    text-align: center;
}

.feature-number {
    font-size: 3rem;
    font-weight: bold;
    color: #e67e22;
    margin-bottom: 10px;
}

.feature h3 {
    margin-bottom: 10px;
}

/* Process Steps */
.process-step {
    position: relative;
}

.process-number {
    width: 60px;
    height: 60px;
    background-color: #e67e22;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: bold;
    margin: 0 auto 20px;
}

/* Detailed Service Cards */
.service-card.detailed {
    text-align: left;
    padding: 40px;
}

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

.service-features li {
    padding: 8px 0;
    padding-left: 20px;
    position: relative;
    color: #666;
}

.service-features li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #27ae60;
    font-weight: bold;
}

.service-price {
    font-size: 1.2rem;
    font-weight: bold;
    color: #e67e22;
    margin-top: 20px;
}

/* About Content */
.about-grid,
.team-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.about-text h2,
.team-text h3 {
    color: #2c3e50;
    margin-bottom: 20px;
}

.about-img,
.team-img {
    width: 100%;
    max-width: 400px;
    height: auto;
}

/* Testimonials */
.testimonial-card {
    text-align: left;
    position: relative;
}

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

.testimonial-author h3 {
    margin-bottom: 5px;
    color: #2c3e50;
}

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

.testimonial-rating {
    font-size: 1.2rem;
}

.testimonial-card blockquote {
    font-style: italic;
    color: #555;
    margin: 20px 0;
    line-height: 1.6;
}

.testimonial-project {
    margin-top: 15px;
    font-size: 0.9rem;
    color: #666;
}

/* Stats */
.stat-card {
    background: linear-gradient(135deg, #e67e22 0%, #d35400 100%);
    color: white;
}

.stat-number {
    font-size: 3rem;
    font-weight: bold;
    margin-bottom: 10px;
}

.stat-label {
    font-size: 1.1rem;
    opacity: 0.9;
}

/* Blog */
.blog-card {
    text-align: left;
    overflow: hidden;
}

.blog-image {
    margin: -30px -30px 20px -30px;
    height: 200px;
    overflow: hidden;
}

.blog-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.blog-meta {
    display: flex;
    gap: 20px;
    margin-bottom: 15px;
    font-size: 0.9rem;
    color: #666;
}

.blog-title {
    margin-bottom: 15px;
}

.blog-title a {
    color: #2c3e50;
    text-decoration: none;
}

.blog-title a:hover {
    color: #e67e22;
}

.blog-excerpt {
    color: #666;
    margin-bottom: 15px;
}

.blog-link {
    color: #e67e22;
    font-weight: 600;
}

/* Newsletter */
.newsletter-section {
    background: linear-gradient(135deg, #2c3e50 0%, #3498db 100%);
    color: white;
    text-align: center;
}

.newsletter-section h2 {
    color: white;
    margin-bottom: 1rem;
}

.newsletter-form {
    display: flex;
    gap: 10px;
    max-width: 500px;
    margin: 0 auto;
    margin-top: 2rem;
}

.newsletter-form input {
    flex: 1;
    padding: 12px;
    border: none;
    border-radius: 5px;
    font-size: 1rem;
}

/* Contact Section */
.contact-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
}

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

.contact-item {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
}

.contact-icon {
    width: 24px;
    height: 24px;
    flex-shrink: 0;
}

.contact-text h3 {
    margin-bottom: 5px;
    color: #2c3e50;
}

.contact-text p {
    margin: 0;
    color: #666;
}

.working-hours {
    margin-top: 2rem;
}

.working-hours h3 {
    margin-bottom: 1rem;
    color: #2c3e50;
}

.working-hours ul {
    list-style: none;
}

.working-hours li {
    padding: 5px 0;
    color: #666;
}

.contact-img {
    width: 100%;
    max-width: 300px;
    height: auto;
    margin-top: 2rem;
}

/* Forms */
.contact-form,
.review-form {
    background: #f8f9fa;
    padding: 30px;
    border-radius: 10px;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: #2c3e50;
}

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

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

.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.9rem;
    line-height: 1.4;
}

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

.checkmark {
    width: 18px;
    height: 18px;
    border: 2px solid #ddd;
    border-radius: 3px;
    flex-shrink: 0;
    margin-top: 2px;
}

/* Service Areas */
.areas-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
}

.areas-list {
    list-style: none;
    columns: 2;
    gap: 20px;
}

.areas-list li {
    padding: 5px 0;
    break-inside: avoid;
    color: #666;
}

.areas-info h3 {
    color: #2c3e50;
    margin-bottom: 15px;
}

/* FAQ */
.faq-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
}

.faq-item {
    background: #f8f9fa;
    padding: 25px;
    border-radius: 10px;
}

.faq-item h3 {
    color: #2c3e50;
    margin-bottom: 15px;
}

/* CTA Section */
.cta-section {
    background: linear-gradient(135deg, #e67e22 0%, #d35400 100%);
    color: white;
    text-align: center;
    padding: 80px 0;
}

.cta-content h2 {
    color: white;
    margin-bottom: 1rem;
}

.cta-content p {
    color: rgba(255,255,255,0.9);
    margin-bottom: 2rem;
    font-size: 1.2rem;
}

.cta-content .btn {
    background-color: white;
    color: #e67e22;
}

.cta-content .btn:hover {
    background-color: #f8f9fa;
    transform: translateY(-2px);
}

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

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

.thank-you-icon {
    margin-bottom: 2rem;
}

.thank-you-title {
    color: #27ae60;
    margin-bottom: 1rem;
}

.thank-you-message {
    font-size: 1.2rem;
    margin-bottom: 3rem;
    color: #666;
}

.thank-you-info {
    background: #f8f9fa;
    padding: 40px;
    border-radius: 10px;
    margin: 3rem 0;
    text-align: left;
}

.next-steps {
    margin-top: 2rem;
}

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

.step-number {
    width: 40px;
    height: 40px;
    background-color: #e67e22;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    flex-shrink: 0;
}

.step-content h3 {
    margin-bottom: 10px;
    color: #2c3e50;
}

.contact-urgency {
    background: #fff3cd;
    padding: 30px;
    border-radius: 10px;
    margin: 3rem 0;
    border-left: 4px solid #ffc107;
}

.urgent-contact {
    display: flex;
    gap: 30px;
    margin-top: 20px;
    flex-wrap: wrap;
}

.urgent-item {
    display: flex;
    align-items: center;
    gap: 15px;
}

.urgent-icon {
    width: 24px;
    height: 24px;
}

.thank-you-actions {
    display: flex;
    gap: 20px;
    justify-content: center;
    margin-top: 3rem;
    flex-wrap: wrap;
}

/* Article Pages */
.article-header {
    background: linear-gradient(135deg, #2c3e50 0%, #3498db 100%);
    color: white;
    padding: 60px 0;
}

.article-breadcrumb {
    margin-bottom: 20px;
    opacity: 0.8;
}

.article-breadcrumb a {
    color: white;
}

.article-title {
    font-size: 2.5rem;
    margin-bottom: 20px;
    color: white;
}

.article-meta {
    display: flex;
    gap: 20px;
    font-size: 0.9rem;
    opacity: 0.8;
}

.article-content {
    padding: 80px 0;
}

.article-wrapper {
    max-width: 800px;
    margin: 0 auto;
}

.article-image {
    text-align: center;
    margin-bottom: 3rem;
}

.article-img {
    width: 200px;
    height: 200px;
}

.article-text h2 {
    margin-top: 2rem;
    margin-bottom: 1rem;
}

.article-text h3 {
    margin-top: 1.5rem;
    margin-bottom: 0.8rem;
}

.article-text ul {
    margin-bottom: 1.5rem;
    padding-left: 20px;
}

.article-text li {
    margin-bottom: 0.5rem;
    color: #666;
}

.article-cta {
    background: #f8f9fa;
    padding: 60px 0;
    text-align: center;
}

.related-articles {
    padding: 60px 0;
}

.related-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.related-card {
    background: white;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.08);
    text-align: center;
}

.related-image {
    margin-bottom: 20px;
}

.related-img {
    width: 60px;
    height: 60px;
}

.related-card h3 {
    margin-bottom: 15px;
}

.related-card h3 a {
    color: #2c3e50;
    text-decoration: none;
}

.related-card h3 a:hover {
    color: #e67e22;
}

/* Legal Pages */
.legal-content {
    padding: 80px 0;
}

.legal-title {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: #2c3e50;
    text-align: center;
}

.legal-meta {
    text-align: center;
    margin-bottom: 3rem;
    color: #666;
}

.legal-text {
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.8;
}

.legal-text h2 {
    margin-top: 2.5rem;
    margin-bottom: 1rem;
    color: #2c3e50;
}

.legal-text h3 {
    margin-top: 1.5rem;
    margin-bottom: 0.8rem;
    color: #34495e;
}

.legal-text ul {
    margin-bottom: 1.5rem;
    padding-left: 25px;
}

.legal-text li {
    margin-bottom: 0.8rem;
    color: #666;
}

.cookie-settings-btn {
    background: none;
    border: none;
    color: #e67e22;
    text-decoration: underline;
    cursor: pointer;
    font-size: inherit;
}

.cookie-settings-btn:hover {
    color: #d35400;
}

/* Footer */
.footer {
    background-color: #2c3e50;
    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-section h3 {
    color: white;
    margin-bottom: 20px;
}

.footer-section p {
    color: #bdc3c7;
    line-height: 1.6;
}

.contact-info {
    margin-top: 20px;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 15px;
    color: #bdc3c7;
}

.contact-icon {
    width: 20px;
    height: 20px;
    flex-shrink: 0;
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 10px;
}

.footer-links a {
    color: #bdc3c7;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: #e67e22;
}

.footer-bottom {
    border-top: 1px solid #34495e;
    padding-top: 20px;
    text-align: center;
    color: #bdc3c7;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .container {
        padding: 0 15px;
    }
    
    .nav-list {
        display: none;
    }
    
    .mobile-menu-toggle {
        display: flex;
    }
    
    .hero-content,
    .about-grid,
    .team-content,
    .contact-wrapper,
    .areas-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .hero-title {
        font-size: 2rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .services-grid,
    .values-grid,
    .features-grid {
        grid-template-columns: 1fr;
    }
    
    .cookie-content {
        flex-direction: column;
        text-align: center;
    }
    
    .newsletter-form {
        flex-direction: column;
        gap: 15px;
    }
    
    .hero-buttons,
    .thank-you-actions {
        flex-direction: column;
        align-items: center;
    }
    
    .urgent-contact {
        flex-direction: column;
        gap: 20px;
    }
    
    .article-meta {
        flex-direction: column;
        gap: 10px;
    }
    
    .areas-list {
        columns: 1;
    }
    
    .faq-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 1.8rem;
    }
    
    .page-title {
        font-size: 2rem;
    }
    
    .article-title {
        font-size: 2rem;
    }
    
    .btn {
        padding: 10px 20px;
        font-size: 0.9rem;
    }
    
    .service-card,
    .value-card,
    .blog-card {
        padding: 20px;
    }
    
    .contact-form,
    .review-form {
        padding: 20px;
    }
}

/* Print Styles */
@media print {
    .header,
    .footer,
    .cookie-banner,
    .cta-section {
        display: none;
    }
    
    body {
        font-size: 12pt;
        line-height: 1.4;
    }
    
    .container {
        max-width: none;
        padding: 0;
    }
}

/* High Contrast Mode */
@media (prefers-contrast: high) {
    .btn-outline {
        border-width: 3px;
    }
    
    .nav-link.active::after {
        height: 3px;
    }
    
    .service-card,
    .value-card,
    .blog-card {
        border: 2px solid #ddd;
    }
}

/* Reduced Motion */
@media (prefers-reduced-motion: reduce) {
    * {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
        scroll-behavior: auto !important;
    }
}
