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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Lora', serif;
    line-height: 1.6;
    color: #e8e8e8;
    background-color: #1a1a1a;
    font-size: 16px;
    overflow-x: hidden;
}

/* 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: #ffffff;
}

h1 {
    font-size: 2.5rem;
    font-weight: 700;
}

h2 {
    font-size: 2rem;
}

h3 {
    font-size: 1.5rem;
}

h4 {
    font-size: 1.25rem;
}

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

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

a:hover {
    color: #ff7b4d;
}

/* Buttons */
.btn-primary,
.btn-secondary {
    display: inline-block;
    padding: 12px 24px;
    border-radius: 5px;
    font-weight: 500;
    text-align: center;
    transition: all 0.3s ease;
    cursor: pointer;
    border: none;
    font-size: 1rem;
    font-family: 'Lora', serif;
}

.btn-primary {
    background-color: #ff5e24;
    color: #ffffff;
}

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

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

.btn-secondary:hover {
    background-color: #ff5e24;
    color: #ffffff;
}

/* Navigation */
.navbar {
    background-color: #2d2d2d;
    padding: 1rem 0;
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    border-bottom: 1px solid #404040;
}

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

.nav-logo a {
    font-size: 1.5rem;
    font-weight: 700;
    color: #ffffff;
}

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

.nav-link {
    color: #e8e8e8;
    font-weight: 500;
    transition: color 0.3s ease;
}

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

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

.bar {
    width: 25px;
    height: 3px;
    background-color: #e8e8e8;
    margin: 3px 0;
    transition: 0.3s;
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
    overflow: hidden;
}

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

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

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 600px;
    text-align: center;
}

.hero h1 {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    background: linear-gradient(45deg, #ffffff, #ff5e24);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero p {
    font-size: 1.25rem;
    margin-bottom: 2rem;
    color: #cccccc;
}

/* Section Styles */
section {
    padding: 80px 0;
}

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

.section-icon {
    width: 64px;
    height: 64px;
    margin: 0 auto 1.5rem;
    display: block;
    filter: brightness(0) saturate(100%) invert(100%);
}

.section-header h2 {
    margin-bottom: 1rem;
}

.section-header p {
    font-size: 1.125rem;
    max-width: 600px;
    margin: 0 auto;
}

/* Page Header */
.page-header {
    padding: 120px 0 80px;
    background: linear-gradient(135deg, #2d2d2d 0%, #1a1a1a 100%);
    text-align: center;
}

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

.page-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 2rem;
    display: block;
    filter: brightness(0) saturate(100%) invert(17%) sepia(100%) saturate(3000%) hue-rotate(14deg) brightness(95%) contrast(105%);
}

/* Grid Layouts */
.about-grid,
.contact-grid,
.content-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

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

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

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

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

/* Cards */
.advantage-card,
.service-card,
.team-card,
.benefit-card,
.review-card {
    background-color: #2d2d2d;
    padding: 2rem;
    border-radius: 10px;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid #404040;
}

.advantage-card:hover,
.service-card:hover,
.team-card:hover,
.benefit-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(255, 94, 36, 0.1);
}

.card-icon,
.team-icon,
.benefit-icon {
    width: 48px;
    height: 48px;
    margin: 0 auto 1.5rem;
    display: block;
    filter: brightness(0) saturate(100%) invert(17%) sepia(100%) saturate(3000%) hue-rotate(14deg) brightness(95%) contrast(105%);
}

.service-rating {
    color: #ff5e24;
    font-weight: 500;
    margin: 1rem 0;
}

.service-price {
    font-size: 1.25rem;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 1rem;
}

/* Achievement Cards */
.achievement-card {
    text-align: center;
    padding: 2rem;
}

.achievement-number {
    font-size: 3rem;
    font-weight: 700;
    color: #ff5e24;
    margin-bottom: 0.5rem;
}

.achievement-text {
    font-size: 1.125rem;
    color: #cccccc;
}

/* Review Cards */
.review-stars {
    color: #ff5e24;
    font-size: 1.25rem;
    margin-bottom: 1rem;
}

.review-author {
    font-style: italic;
    color: #999999;
    margin-top: 1rem;
}

/* Services Specific */
.service-category {
    margin-bottom: 4rem;
}

.service-category h3 {
    font-size: 1.75rem;
    margin-bottom: 2rem;
    color: #ff5e24;
    border-bottom: 2px solid #ff5e24;
    padding-bottom: 0.5rem;
}

.service-detail-card {
    background-color: #2d2d2d;
    border-radius: 10px;
    padding: 2rem;
    border: 1px solid #404040;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-detail-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(255, 94, 36, 0.1);
}

.service-icon {
    width: 64px;
    height: 64px;
    margin-bottom: 1.5rem;
    filter: brightness(0) saturate(100%) invert(17%) sepia(100%) saturate(3000%) hue-rotate(14deg) brightness(95%) contrast(105%);
}

.service-content h4 {
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

.service-features {
    margin: 1.5rem 0;
}

.service-features ul {
    list-style: none;
    padding: 0;
}

.service-features li {
    padding: 0.5rem 0;
    position: relative;
    padding-left: 1.5rem;
    color: #cccccc;
}

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

/* Process Steps */
.process-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.process-step {
    text-align: center;
    padding: 2rem;
}

.step-number {
    width: 60px;
    height: 60px;
    background-color: #ff5e24;
    color: #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    margin: 0 auto 1.5rem;
}

/* Contact Form */
.contact-form-container {
    background-color: #2d2d2d;
    padding: 3rem;
    border-radius: 10px;
    border: 1px solid #404040;
}

.contact-form {
    max-width: 100%;
}

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

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 500;
    color: #ffffff;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px;
    border: 1px solid #555555;
    border-radius: 5px;
    background-color: #1a1a1a;
    color: #e8e8e8;
    font-family: 'Lora', serif;
    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: #ff5e24;
}

.checkbox-group {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
}

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

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

.checkmark {
    display: inline-block;;
    width: 18px;
    height: 18px;
    border: 2px solid #555555;
    border-radius: 3px;
    background-color: #1a1a1a;
    position: relative;
    flex-shrink: 0;
    margin-top: 2px;
}

.checkbox-label input[type="checkbox"]:checked + .checkmark {
    background-color: #ff5e24;
    border-color: #ff5e24;
}

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

/* Contact Info */
.contact-info {
    padding: 2rem;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.contact-icon {
    width: 48px;
    height: 48px;
    filter: brightness(0) saturate(100%) invert(17%) sepia(100%) saturate(3000%) hue-rotate(14deg) brightness(95%) contrast(105%);
    flex-shrink: 0;
}

.contact-details h3 {
    margin-bottom: 0.5rem;
    font-size: 1.25rem;
}

.contact-hours {
    font-size: 0.9rem;
    color: #999999;
    font-style: italic;
}

/* Map Section */
.map-section {
    background-color: #2d2d2d;
    padding: 4rem 0;
}

.map-container {
    background-color: #1a1a1a;
    border-radius: 10px;
    padding: 3rem;
    text-align: center;
    border: 1px solid #404040;
}

.map-icon {
    width: 64px;
    height: 64px;
    margin: 0 auto 1.5rem;
    filter: brightness(0) saturate(100%) invert(17%) sepia(100%) saturate(3000%) hue-rotate(14deg) brightness(95%) contrast(105%);
}

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

.faq-item {
    background-color: #2d2d2d;
    padding: 2rem;
    border-radius: 10px;
    border: 1px solid #404040;
}

.faq-item h3 {
    margin-bottom: 1rem;
    color: #ff5e24;
    font-size: 1.125rem;
}

/* Thanks Page */
.thanks-section {
    padding: 120px 0 80px;
    text-align: center;
}

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

.thanks-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 2rem;
    filter: brightness(0) saturate(100%) invert(37%) sepia(100%) saturate(500%) hue-rotate(85deg) brightness(95%) contrast(105%);
}

.thanks-message {
    font-size: 1.25rem;
    margin-bottom: 3rem;
    color: #cccccc;
}

.next-steps {
    margin: 4rem 0;
}

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

.step-item {
    background-color: #2d2d2d;
    padding: 2rem;
    border-radius: 10px;
    border: 1px solid #404040;
}

.contact-info-box {
    background-color: #2d2d2d;
    padding: 2rem;
    border-radius: 10px;
    margin: 3rem 0;
    border: 1px solid #404040;
}

.urgent-contact {
    margin-top: 1rem;
}

.office-hours {
    font-size: 0.9rem;
    color: #999999;
    font-style: italic;
}

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

.resources-section {
    background-color: #2d2d2d;
    padding: 4rem 0;
}

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

.resource-card {
    background-color: #1a1a1a;
    padding: 2rem;
    border-radius: 10px;
    text-align: center;
    border: 1px solid #404040;
    transition: transform 0.3s ease;
}

.resource-card:hover {
    transform: translateY(-3px);
}

.resource-icon {
    width: 48px;
    height: 48px;
    margin: 0 auto 1.5rem;
    filter: brightness(0) saturate(100%) invert(17%) sepia(100%) saturate(3000%) hue-rotate(14deg) brightness(95%) contrast(105%);
}

.resource-link {
    display: inline-block;
    margin-top: 1rem;
    font-weight: 500;
}

/* Legal Content */
.legal-content {
    padding: 2rem 0 4rem;
}

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

.last-updated {
    background-color: #2d2d2d;
    padding: 1rem;
    border-radius: 5px;
    font-style: italic;
    color: #cccccc;
    margin-bottom: 2rem;
    border: 1px solid #404040;
}

.contact-box {
    background-color: #2d2d2d;
    padding: 1.5rem;
    border-radius: 5px;
    margin: 1.5rem 0;
    border: 1px solid #404040;
}

.values-list {
    list-style: none;
    padding: 0;
}

.values-list li {
    padding: 0.75rem 0;
    border-bottom: 1px solid #404040;
}

.values-list li:last-child {
    border-bottom: none;
}

/* Cookie Policy Specific */
.cookie-table {
    margin: 1.5rem 0;
    overflow-x: auto;
}

.cookie-table table {
    width: 100%;
    border-collapse: collapse;
    background-color: #2d2d2d;
    border-radius: 5px;
    overflow: hidden;
}

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

.cookie-table th {
    background-color: #1a1a1a;
    color: #ff5e24;
    font-weight: 600;
}

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

/* CTA Section */
.cta-section {
    background-color: #2d2d2d;
    padding: 4rem 0;
    text-align: center;
}

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

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

.cta-content p {
    font-size: 1.125rem;
    margin-bottom: 2rem;
}

/* Cookie Banner */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #2d2d2d;
    padding: 1.5rem;
    border-top: 1px solid #404040;
    z-index: 1001;
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.3);
}

.cookie-content {
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
}

.cookie-content h3 {
    margin-bottom: 1rem;
    color: #ffffff;
}

.cookie-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 1.5rem;
}

.cookie-buttons button {
    padding: 10px 20px;
    border: none;
    border-radius: 5px;
    font-family: 'Lora', serif;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
}

/* Cookie Modal */
.cookie-modal {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0.8);
    z-index: 1002;
    display: none;
    align-items: center;
    justify-content: center;
}

.cookie-modal-content {
    background-color: #2d2d2d;
    padding: 2rem;
    border-radius: 10px;
    max-width: 500px;
    width: 90%;
    max-height: 80vh;
    overflow-y: auto;
    border: 1px solid #404040;
}

.cookie-category {
    margin: 1.5rem 0;
    padding: 1rem;
    background-color: #1a1a1a;
    border-radius: 5px;
    border: 1px solid #404040;
}

.cookie-category label {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    cursor: pointer;
}

.cookie-category input[type="checkbox"] {
    margin-top: 2px;
}

.cookie-category span {
    font-size: 0.9rem;
    color: #cccccc;
}

.cookie-modal-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    margin-top: 2rem;
}

/* Footer */
.footer {
    background-color: #1a1a1a;
    padding: 4rem 0 2rem;
    border-top: 1px solid #404040;
}

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

.footer-section h3,
.footer-section h4 {
    margin-bottom: 1.5rem;
    color: #ffffff;
}

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

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

.footer-section ul li a {
    color: #cccccc;
    transition: color 0.3s ease;
}

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

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

.social-links a {
    color: #cccccc;
    font-size: 1.5rem;
    transition: color 0.3s ease;
}

.social-links a:hover {
    color: #ff5e24;
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid #404040;
    color: #999999;
}

/* Image Styles */
.feature-image,
.about-image,
.hero-background {
    width: 100%;
    height: auto;
    border-radius: 10px;
}

.about-image {
    max-width: 400px;
}

/* Utility Classes */
.services-cta {
    text-align: center;
    margin-top: 3rem;
}

.hidden {
    display: none !important;
}

/* Mobile Styles */
@media (max-width: 768px) {
    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background-color: #2d2d2d;
        width: 100%;
        text-align: center;
        transition: 0.3s;
        box-shadow: 0 10px 27px rgba(0, 0, 0, 0.05);
        padding: 2rem 0;
        border-top: 1px solid #404040;
    }

    .nav-menu.active {
        left: 0;
    }

    .nav-toggle {
        display: flex;
    }

    .nav-toggle.active .bar:nth-child(2) {
        opacity: 0;
    }

    .nav-toggle.active .bar:nth-child(1) {
        transform: translateY(8px) rotate(45deg);
    }

    .nav-toggle.active .bar:nth-child(3) {
        transform: translateY(-10px) rotate(-45deg);
    }

    .hero h1 {
        font-size: 2rem;
    }

    .hero p {
        font-size: 1.125rem;
    }

    h1 {
        font-size: 2rem;
    }

    h2 {
        font-size: 1.75rem;
    }

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

    .advantages-grid,
    .services-grid {
        grid-template-columns: 1fr;
    }

    .achievements-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .reviews-grid,
    .team-grid,
    .benefits-grid {
        grid-template-columns: 1fr;
    }

    .process-steps {
        grid-template-columns: 1fr;
    }

    .contact-form-container {
        padding: 2rem;
    }

    .cookie-buttons {
        flex-direction: column;
        align-items: center;
    }

    .cookie-buttons button {
        width: 200px;
    }

    .thanks-actions {
        flex-direction: column;
        align-items: center;
    }

    .thanks-actions .btn-primary,
    .thanks-actions .btn-secondary {
        width: 100%;
        max-width: 300px;
    }

    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .social-links {
        justify-content: center;
    }

    section {
        padding: 60px 0;
    }

    .page-header {
        padding: 100px 0 60px;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }

    .hero h1 {
        font-size: 1.75rem;
    }

    .achievements-grid {
        grid-template-columns: 1fr;
    }

    .cookie-modal-content {
        padding: 1.5rem;
        width: 95%;
    }

    .cookie-modal-buttons {
        flex-direction: column;
    }

    .cookie-modal-buttons button {
        width: 100%;
    }
    [class*="-grid"] {
    grid-template-columns: 1fr;}
    body {
    word-break: break-word;}
}

/* Dark theme adjustments for better contrast */
@media (prefers-color-scheme: dark) {
    body {
        background-color: #1a1a1a;
        color: #e8e8e8;
    }

    .navbar {
        background-color: #2d2d2d;
    }

    .hero {
        background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
    }
}

/* Focus styles for accessibility */
button:focus,
input:focus,
select:focus,
textarea:focus,
a:focus {
    outline: 2px solid #ff5e24;
    outline-offset: 2px;
}

/* Print styles */
@media print {
    .navbar,
    .cookie-banner,
    .cookie-modal,
    .footer {
        display: none;
    }

    body {
        background: white;
        color: black;
    }

    .page-header {
        padding-top: 2rem;
    }
}
