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

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

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

a:hover {
    color: #4fd99c;
}

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

ul {
    list-style-type: none;
}

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

/* Grid System */
.grid {
    display: grid;
    gap: 2rem;
}

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

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

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

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

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

h2 {
    font-size: 2.5rem;
    font-weight: 600;
}

h3 {
    font-size: 2rem;
    font-weight: 600;
}

h4 {
    font-size: 1.5rem;
    font-weight: 500;
}

p {
    margin-bottom: 1rem;
}

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

.btn-primary {
    background-color: #6bfabc;
    color: #0a0a0a;
}

.btn-primary:hover {
    background-color: #4fd99c;
    color: #0a0a0a;
    transform: translateY(-2px);
}

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

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

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

.btn-outline:hover {
    background-color: #6bfabc;
    color: #0a0a0a;
}

/* Navigation */
.navbar {
    background-color: #111111;
    padding: 1rem 0;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.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.8rem;
    font-weight: 700;
    color: #6bfabc;
}

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

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

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

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

/* Mobile Menu Toggle */
.nav-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

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

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

.bg-dark {
    background-color: #0f0f0f;
}

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

.section-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 1rem;
    display: block;
}

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

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

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

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

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.hero-content h1 {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
    background: linear-gradient(135deg, #ffffff 0%, #6bfabc 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-content p {
    font-size: 1.3rem;
    margin-bottom: 2rem;
    color: #b0b0b0;
}

/* Page Header */
.page-header {
    background-color: #111111;
    padding: 120px 0 60px;
    text-align: center;
}

.page-header h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.page-header p {
    font-size: 1.2rem;
    color: #b0b0b0;
}

/* Cards */
.advantage-card,
.service-card,
.package-card,
.achievement-card,
.review-card,
.team-card,
.value-card,
.mission-card {
    background-color: #1a1a1a;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease;
    border: 1px solid #333333;
}

.advantage-card:hover,
.service-card:hover,
.package-card:hover,
.team-card:hover,
.value-card:hover,
.mission-card:hover {
    transform: translateY(-5px);
    border-color: #6bfabc;
}

.service-image,
.team-image,
.feature-image {
    width: 80px;
    height: 80px;
    margin-bottom: 1.5rem;
}

.package-card.featured {
    border: 2px solid #6bfabc;
    transform: scale(1.05);
}

.package-card .price {
    font-size: 2rem;
    font-weight: 700;
    color: #6bfabc;
    margin-bottom: 1.5rem;
}

.package-card ul {
    list-style: none;
    margin-bottom: 2rem;
}

.package-card li {
    padding: 0.5rem 0;
    position: relative;
    padding-left: 1.5rem;
}

.package-card li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #6bfabc;
    font-weight: bold;
}

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

.stars {
    color: #ffd700;
    font-size: 1.2rem;
    margin-bottom: 1rem;
}

.reviewer {
    font-style: italic;
    color: #b0b0b0;
    margin-top: 1rem;
}

.team-role {
    color: #6bfabc;
    font-weight: 600;
    margin-bottom: 1rem;
}

/* Service Detail Cards */
.service-detail-card {
    background-color: #1a1a1a;
    border-radius: 10px;
    overflow: hidden;
    margin-bottom: 3rem;
    border: 1px solid #333333;
}

.service-detail-image {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.service-detail-content {
    padding: 2rem;
}

.service-rating {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
}

.rating-text {
    color: #b0b0b0;
    font-size: 0.9rem;
}

.service-price {
    font-size: 1.5rem;
    font-weight: 700;
    color: #6bfabc;
    margin-bottom: 1.5rem;
}

.service-detail-content ul {
    margin-bottom: 1.5rem;
}

.service-detail-content li {
    margin-bottom: 0.5rem;
    padding-left: 1.5rem;
    position: relative;
}

.service-detail-content li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: #6bfabc;
}

.service-cta {
    margin-top: 2rem;
}

/* Process Steps */
.process-steps {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    justify-content: center;
}

.process-step {
    text-align: center;
    max-width: 200px;
}

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

/* Forms */
.contact-form {
    background-color: #1a1a1a;
    padding: 2rem;
    border-radius: 10px;
    border: 1px solid #333333;
}

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

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

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

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px;
    border: 1px solid #333333;
    border-radius: 5px;
    background-color: #0a0a0a;
    color: #e0e0e0;
    font-size: 1rem;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #6bfabc;
    box-shadow: 0 0 0 2px rgba(107, 250, 188, 0.2);
}

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

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

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

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

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

.checkbox-label input[type="checkbox"]:checked + .checkmark::after {
    content: '✓';
    position: absolute;
    top: -2px;
    left: 2px;
    color: #0a0a0a;
    font-weight: bold;
    font-size: 14px;
}

/* Contact Info */
.contact-info,
.contact-info-detailed {
    background-color: #1a1a1a;
    padding: 2rem;
    border-radius: 10px;
    border: 1px solid #333333;
}

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

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

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

.social-links a,
.social-link {
    color: #6bfabc;
    font-weight: 500;
    padding: 0.5rem 1rem;
    border: 1px solid #6bfabc;
    border-radius: 5px;
    transition: all 0.3s ease;
}

.social-links a:hover,
.social-link:hover {
    background-color: #6bfabc;
    color: #0a0a0a;
}

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

/* Service Areas */
.service-area-card {
    background-color: #1a1a1a;
    padding: 1.5rem;
    border-radius: 8px;
    border: 1px solid #333333;
}

.service-area-card ul {
    list-style: none;
}

.service-area-card li {
    padding: 0.3rem 0;
    color: #b0b0b0;
}

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

.faq-item {
    background-color: #1a1a1a;
    padding: 1.5rem;
    border-radius: 8px;
    border: 1px solid #333333;
}

.faq-item h3 {
    color: #6bfabc;
    margin-bottom: 1rem;
}

/* Emergency Contact */
.emergency-contact {
    text-align: center;
    max-width: 600px;
    margin: 0 auto;
}

.emergency-number {
    font-size: 2rem;
    font-weight: 700;
    margin: 1.5rem 0;
}

.emergency-number a {
    color: #ff6b6b;
}

/* Services Grid */
.services-grid {
    display: grid;
    gap: 3rem;
}

/* Warranty Cards */
.warranty-card {
    background-color: #1a1a1a;
    padding: 2rem;
    border-radius: 8px;
    border: 1px solid #333333;
}

.warranty-card ul {
    list-style: none;
}

.warranty-card li {
    padding: 0.5rem 0;
    position: relative;
    padding-left: 1.5rem;
}

.warranty-card li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #6bfabc;
    font-weight: bold;
}

/* Certification Cards */
.cert-card {
    background-color: #1a1a1a;
    padding: 2rem;
    border-radius: 8px;
    border: 1px solid #333333;
}

/* Cookie Management */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #111111;
    padding: 1rem;
    z-index: 10000;
    border-top: 2px solid #6bfabc;
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.3);
}

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

.cookie-buttons {
    display: flex;
    gap: 1rem;
}

.cookie-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.8);
    display: none;
    justify-content: center;
    align-items: center;
    z-index: 10001;
}

.cookie-modal-content {
    background-color: #1a1a1a;
    padding: 2rem;
    border-radius: 10px;
    max-width: 500px;
    width: 90%;
    border: 1px solid #333333;
}

.cookie-category {
    margin-bottom: 1.5rem;
}

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

.cookie-category span {
    font-size: 0.9rem;
    color: #b0b0b0;
    line-height: 1.4;
}

/* Cookie Controls */
.cookie-controls {
    background-color: #1a1a1a;
    padding: 2rem;
    border-radius: 10px;
    border: 1px solid #333333;
    margin: 2rem 0;
}

.cookie-category-control {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 1.5rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid #333333;
}

.cookie-category-control:last-child {
    border-bottom: none;
    margin-bottom: 2rem;
}

.switch {
    position: relative;
    display: inline-block;
    width: 60px;
    height: 34px;
    flex-shrink: 0;
}

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

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

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

input:checked + .slider {
    background-color: #6bfabc;
}

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

input:disabled + .slider {
    background-color: #6bfabc;
    opacity: 0.7;
}

.cookie-info strong {
    color: #ffffff;
    display: block;
    margin-bottom: 0.5rem;
}

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

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

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

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

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

.cookie-table td {
    color: #e0e0e0;
}

/* Legal Content */
.legal-content {
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.8;
}

.legal-content h2 {
    margin-top: 3rem;
    margin-bottom: 1.5rem;
    color: #6bfabc;
}

.legal-content h3,
.legal-content h4 {
    margin-top: 2rem;
    margin-bottom: 1rem;
}

.legal-content ul,
.legal-content ol {
    margin-bottom: 1.5rem;
    padding-left: 2rem;
}

.legal-content li {
    margin-bottom: 0.5rem;
}

.legal-content address {
    background-color: #1a1a1a;
    padding: 1.5rem;
    border-radius: 8px;
    border-left: 4px solid #6bfabc;
    font-style: normal;
    line-height: 1.6;
}

.contact-section {
    background-color: #1a1a1a;
    padding: 2rem;
    border-radius: 10px;
    border: 1px solid #333333;
    margin-top: 3rem;
}

/* Thank You Page */
.thank-you-section {
    padding: 120px 0 80px;
    min-height: 100vh;
    background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 100%);
}

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

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

.success-icon {
    width: 80px;
    height: 80px;
    filter: hue-rotate(120deg);
}

.thank-you-message {
    background-color: #1a1a1a;
    padding: 2rem;
    border-radius: 10px;
    border: 1px solid #333333;
    margin: 2rem 0;
}

.submitted-data {
    background-color: #1a1a1a;
    padding: 2rem;
    border-radius: 10px;
    border: 1px solid #333333;
    margin: 2rem 0;
    text-align: left;
}

.data-summary {
    margin-top: 1rem;
}

.data-item {
    margin-bottom: 1rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid #333333;
}

.data-item:last-child {
    border-bottom: none;
}

.data-item strong {
    color: #6bfabc;
    display: inline-block;
    min-width: 120px;
}

.message-content {
    background-color: #111111;
    padding: 1rem;
    border-radius: 5px;
    margin-top: 0.5rem;
    border-left: 3px solid #6bfabc;
}

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

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

.step {
    background-color: #1a1a1a;
    padding: 1.5rem;
    border-radius: 10px;
    border: 1px solid #333333;
    text-align: center;
}

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

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

.contact-details .contact-item {
    justify-content: center;
    margin-bottom: 0.5rem;
}

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

/* Footer */
.footer {
    background-color: #111111;
    padding: 3rem 0 1rem;
    border-top: 1px solid #333333;
}

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

.footer-section h3,
.footer-section h4 {
    color: #6bfabc;
    margin-bottom: 1rem;
}

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

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

.footer-section a {
    color: #b0b0b0;
    transition: color 0.3s ease;
}

.footer-section a:hover {
    color: #6bfabc;
}

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

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

    .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(9px) rotate(45deg);
    }

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

    .hero-content h1 {
        font-size: 2.5rem;
    }

    .grid-2,
    .grid-3,
    .grid-4 {
        grid-template-columns: 1fr;
    }

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

    .cookie-content {
        flex-direction: column;
        text-align: center;
    }

    .cookie-buttons {
        flex-wrap: wrap;
        justify-content: center;
    }

    .process-steps {
        flex-direction: column;
        align-items: center;
    }

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

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

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

    h1 {
        font-size: 2.5rem;
    }

    h2 {
        font-size: 2rem;
    }

    h3 {
        font-size: 1.5rem;
    }
}

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

    .section {
        padding: 60px 0;
    }

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

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

    .page-header h1 {
        font-size: 2rem;
    }

    .btn {
        padding: 10px 20px;
        font-size: 0.9rem;
    }

    .cookie-buttons {
        gap: 0.5rem;
    }

    .cookie-buttons .btn {
        padding: 8px 15px;
        font-size: 0.8rem;
    }
    body {
        word-break: break-word;
    }
    [class*="-grid"] {
        grid-template-columns: 1fr;
    }
}

/* Print Styles */
@media print {
    .navbar,
    .cookie-banner,
    .cookie-modal,
    .btn,
    .nav-toggle {
        display: none !important;
    }

    body {
        background: white !important;
        color: black !important;
    }

    .section {
        padding: 20px 0;
    }
}

/* High Contrast Mode */
@media (prefers-contrast: high) {
    .btn-outline {
        border-width: 3px;
    }
    
    .nav-link.active::after {
        height: 3px;
    }
    
    .form-group input:focus,
    .form-group select:focus,
    .form-group textarea:focus {
        border-width: 2px;
    }
}

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