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

html {
    margin: 0;
    padding: 0;
}

:root {
    --primary-color: #1a1a1a;
    --secondary-color: #333;
    --accent-color: #d4af37;
    --text-color: #ffffff;
    --text-light: #cccccc;
    --bg-light: #1a1a1a;
    --bg-dark: #000000;
    --white: #ffffff;
    --border-color: #333333;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    line-height: 1.6;
    color: var(--text-color);
    background: var(--bg-dark);
    overflow-x: hidden;
    margin: 0;
    padding: 0;
}

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

/* Header */
.header {
    background: rgba(0, 0, 0, 0.3);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
    z-index: 1000;
}

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

.logo-img {
    height: 80px;
    width: auto;
    object-fit: contain;
}

.nav-list {
    display: flex;
    list-style: none;
    gap: 0;
    background: rgba(255, 255, 255, 0.95);
    padding: 0.5rem 1rem;
    border-radius: 12px;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.nav-list a {
    text-decoration: none;
    color: var(--primary-color);
    font-weight: 500;
    transition: color 0.3s;
    padding: 0.5rem 1rem;
    border-radius: 8px;
}

.nav-list a:hover {
    background: rgba(0, 0, 0, 0.05);
}

.nav-list a:hover {
    color: var(--accent-color);
}

.phone-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    text-decoration: none;
    color: var(--white);
    font-weight: 600;
    font-size: 1rem;
    background: #22c55e;
    padding: 0.6rem 1.2rem;
    border-radius: 8px;
    transition: all 0.3s;
}

.phone-link:hover {
    background: #16a34a;
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(34, 197, 94, 0.3);
}

.phone-icon {
    width: 18px;
    height: 18px;
    stroke: var(--white);
    fill: none;
}

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

.mobile-menu-toggle span {
    width: 25px;
    height: 3px;
    background: var(--white);
    transition: all 0.3s;
}

/* Hero Section */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    overflow: hidden;
    margin-top: 0;
    padding-top: 0;
}

.hero-video-wrapper {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    background: var(--bg-dark);
    margin: 0;
    padding: 0;
}

.hero-video {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 100%;
    height: 100%;
    min-width: 100%;
    min-height: 100%;
    transform: translate(-50%, -50%);
    object-fit: cover;
    pointer-events: none;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 2;
}

.hero-content {
    position: relative;
    z-index: 3;
    padding: 2rem 0;
}

.hero-title {
    font-size: 3.25rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 2rem;
    letter-spacing: -1px;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.8);
}

/* Scroll Indicator */
.scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 3;
    background: rgba(255, 255, 255, 0.75);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    padding: 0.4rem 2.25rem;
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.3s;
    animation: bounce 2s infinite;
}

.scroll-indicator:hover {
    background: rgba(255, 255, 255, 0.9);
}

.scroll-arrow {
    width: 18px;
    height: 18px;
    color: var(--bg-dark);
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateX(-50%) translateY(0);
    }
    40% {
        transform: translateX(-50%) translateY(-10px);
    }
    60% {
        transform: translateX(-50%) translateY(-5px);
    }
}

.btn {
    display: inline-block;
    padding: 1rem 2.5rem;
    text-decoration: none;
    border-radius: 5px;
    font-weight: 600;
    transition: all 0.3s;
    border: none;
    cursor: pointer;
    font-size: 1rem;
}

.btn-primary {
    background: var(--accent-color);
    color: var(--bg-dark);
}

.btn-primary:hover {
    background: #e6c85a;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(212, 175, 55, 0.4);
}

/* Booking Modal */
.booking-modal {
    position: fixed;
    inset: 0;
    z-index: 10000;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1rem;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s, visibility 0.3s;
}

.booking-modal.active {
    opacity: 1;
    visibility: visible;
}

.booking-modal-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(4px);
}

.booking-modal-content {
    position: relative;
    background: var(--primary-color);
    color: var(--white);
    border-radius: 16px;
    padding: 2rem;
    max-width: 720px;
    width: 100%;
    max-height: 90vh;
    overflow-y: auto;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
    border: 1px solid var(--border-color);
    transform: scale(0.95);
    transition: transform 0.3s;
}

.booking-modal.active .booking-modal-content {
    transform: scale(1);
}

.feedback-modal .feedback-modal-content {
    max-width: 440px;
}

.feedback-modal .feedback-modal-btn {
    width: 100%;
    margin-top: 0.5rem;
}

.booking-modal-close {
    position: absolute;
    top: 1rem;
    right: 1rem;
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: transparent;
    border: none;
    color: var(--white);
    font-size: 1.75rem;
    line-height: 1;
    cursor: pointer;
    border-radius: 8px;
    transition: background 0.2s, color 0.2s;
}

.booking-modal-close:hover {
    background: rgba(255, 255, 255, 0.1);
    color: var(--accent-color);
}

.booking-modal-title {
    font-size: 1.75rem;
    margin-bottom: 0.25rem;
}

.booking-modal-intro {
    color: var(--text-light);
    font-size: 0.95rem;
    margin-bottom: 1.5rem;
}

.booking-form .booking-form-columns {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    margin-bottom: 1rem;
}

.booking-form .booking-form-col {
    min-width: 0;
}

.booking-form label {
    display: block;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 0.35rem;
}

.booking-form .booking-field-label {
    display: block;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.booking-form .booking-categories {
    margin-bottom: 1rem;
}

.booking-form .booking-category-label {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-weight: 600;
    cursor: pointer;
    margin-bottom: 0.5rem;
}

.booking-form .booking-category-label input {
    width: auto;
    margin: 0;
    accent-color: var(--accent-color);
}

.booking-form .booking-category-coming-soon {
    opacity: 0.65;
    color: var(--text-muted, #666);
    cursor: default;
    pointer-events: none;
}

.booking-form .booking-category-coming-soon input {
    cursor: default;
}

.booking-form .booking-service-subgroup {
    display: none;
    grid-template-columns: 1fr;
    gap: 0.5rem 0;
    margin-left: 1rem;
    margin-bottom: 1rem;
    padding-left: 0.5rem;
    border-left: 2px solid var(--accent-color);
}

.booking-form .booking-service-subgroup.visible {
    display: grid;
}

.booking-form .booking-services {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.5rem 1.5rem;
    margin-bottom: 1rem;
}

.booking-form .booking-checkbox-label {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-weight: 500;
    cursor: pointer;
    margin-bottom: 0;
}

.booking-form .booking-checkbox-label input[type="checkbox"] {
    width: auto;
    margin: 0;
    accent-color: var(--accent-color);
}

/* Show price only when the option is selected */
.booking-form .booking-option-row {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 0.5rem 1rem;
}
.booking-form .booking-option-price-below {
    display: none;
    color: var(--accent-color);
    font-size: 0.95rem;
}
.booking-form .booking-option-row.checked .booking-option-price-below {
    display: inline;
}

@media (max-width: 640px) {
    .booking-modal-content {
        max-width: 100%;
    }

    .booking-form .booking-form-columns {
        grid-template-columns: 1fr;
        gap: 0;
    }
}

@media (max-width: 480px) {
    .booking-form .booking-services {
        grid-template-columns: 1fr;
    }
}

.booking-form input,
.booking-form textarea {
    width: 100%;
    padding: 0.65rem 0.9rem;
    margin-bottom: 1rem;
    border: 1px solid var(--border-color);
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.06);
    color: var(--white);
    font-size: 1rem;
    font-family: inherit;
    transition: border-color 0.2s;
}

.booking-form input::placeholder,
.booking-form textarea::placeholder {
    color: rgba(255, 255, 255, 0.4);
}

.booking-form input:focus,
.booking-form textarea:focus {
    outline: none;
    border-color: var(--accent-color);
}

.booking-form textarea {
    resize: vertical;
    min-height: 90px;
}

.booking-form .btn {
    width: 100%;
    margin-top: 0.5rem;
    text-align: center;
}

/* About Section */
.about {
    padding: 5rem 0;
    background: var(--bg-dark);
}

.section-title {
    font-size: 2.75rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 2rem;
    text-align: center;
    letter-spacing: -0.5px;
}

.about-text {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--white);
    text-align: center;
    margin-bottom: 1.5rem;
}

.about-description {
    font-size: 1.1rem;
    color: var(--text-light);
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.8;
}

/* Welcome Section */
.welcome {
    padding: 5rem 0;
    background: var(--bg-dark);
}

.welcome-subtitle {
    font-size: 1.3rem;
    color: var(--accent-color);
    text-align: center;
    font-weight: 600;
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.welcome-text {
    font-size: 1.1rem;
    color: var(--text-light);
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.8;
}

.welcome-motoroptimering {
    margin-bottom: 2.5rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    text-align: center;
}

.motoroptimering-heading {
    margin-bottom: 0.75rem;
    margin-top: 0;
}

.motoroptimering-text {
    font-size: 1.05rem;
    color: var(--text-light);
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.7;
}

/* Reviews block (inside Welcome) */
.reviews-block {
    margin-top: 4rem;
    padding-top: 3rem;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.reviews-heading {
    font-size: 1.5rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 1.5rem;
    color: var(--white);
}

.google-score {
    text-align: center;
    margin-bottom: 2rem;
}

.google-score-value {
    display: inline-block;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--white);
    line-height: 1;
}

.google-score-stars {
    display: inline-block;
    color: var(--accent-color);
    font-size: 1.25rem;
    letter-spacing: 2px;
    margin-left: 0.35rem;
    vertical-align: middle;
}

.google-score-label {
    font-size: 0.95rem;
    color: var(--text-light);
    margin: 0.5rem 0 0 0;
}

.google-score-label strong {
    color: var(--white);
}

.reviews-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.review-card {
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    padding: 1.5rem;
    transition: border-color 0.2s, box-shadow 0.2s;
}

.review-card:hover {
    border-color: rgba(255, 255, 255, 0.15);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
}

.review-stars {
    color: var(--accent-color);
    font-size: 1.1rem;
    letter-spacing: 2px;
    margin-bottom: 0.75rem;
}

.review-quote {
    font-size: 0.95rem;
    color: var(--text-light);
    line-height: 1.6;
    margin: 0 0 1rem 0;
    font-style: normal;
}

.review-author {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.6);
    font-style: normal;
}

.reviews-local-hint {
    font-size: 0.875rem;
    color: var(--text-muted, #666);
    text-align: center;
    margin: 0 0 0.5rem;
}

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

.reviews-link {
    display: inline-block;
    padding: 0.6rem 1.25rem;
    background: transparent;
    border: 2px solid var(--accent-color);
    color: var(--accent-color);
    font-weight: 600;
    font-size: 0.95rem;
    text-decoration: none;
    border-radius: 8px;
    transition: background 0.2s, color 0.2s;
}

.reviews-link:hover {
    background: var(--accent-color);
    color: var(--primary-color);
}

@media (max-width: 768px) {
    .reviews-grid {
        grid-template-columns: 1fr;
    }
}

/* Services Section */
.services {
    padding: 5rem 0;
    background: var(--bg-dark);
}

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

.service-card {
    position: relative;
    padding: 2.5rem;
    border-radius: 10px;
    text-align: center;
    transition: transform 0.3s, box-shadow 0.3s;
    border: 1px solid var(--border-color);
    cursor: pointer;
    background-size: cover;
    background-position: center;
    min-height: 220px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.55);
    border-radius: inherit;
}

.service-card > * {
    position: relative;
    z-index: 1;
}

.service-card-1 { background-image: url('images/exteriör.jpg'); }
.service-card-2 { background-image: url('images/interiör.jpg'); }
.service-card-3 { background-image: url('images/polering.jpg'); }
.service-card-4 { background-image: url('images/lackförsegling.jpg'); }
.service-card-5 { background-image: url('images/motortvätt.jpg'); }
.service-card-6 { background-image: url('images/motoroptimering.jpg'); }

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.service-card-soon {
    cursor: default;
    pointer-events: none;
}

.service-card-soon:hover {
    transform: none;
    box-shadow: none;
}

.service-card-soon-overlay {
    position: absolute;
    inset: 0;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0, 0, 0, 0.7);
    border-radius: inherit;
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--white);
    letter-spacing: 0.02em;
}

.service-number {
    font-size: 3rem;
    font-weight: 700;
    color: var(--accent-color);
    margin-bottom: 1rem;
    opacity: 0.3;
}

.service-title {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--white);
}

/* Service detail modal (flip popup) */
.service-modal {
    position: fixed;
    inset: 0;
    z-index: 10000;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1rem;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s, visibility 0.3s;
}

.service-modal.active {
    opacity: 1;
    visibility: visible;
}

.service-modal-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(4px);
}

.service-modal-content {
    position: relative;
    background: var(--primary-color);
    color: var(--white);
    border-radius: 16px;
    padding: 2rem;
    max-width: 560px;
    width: 100%;
    max-height: 90vh;
    overflow-y: auto;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
    border: 1px solid var(--border-color);
    transform: perspective(800px) rotateY(-180deg);
    transition: transform 0.5s ease;
}

.service-modal.active .service-modal-content {
    transform: perspective(800px) rotateY(0deg);
}

.service-modal-close {
    position: absolute;
    top: 1rem;
    right: 1rem;
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: transparent;
    border: none;
    color: var(--white);
    font-size: 1.75rem;
    line-height: 1;
    cursor: pointer;
    border-radius: 8px;
    transition: background 0.2s, color 0.2s;
}

.service-modal-close:hover {
    background: rgba(255, 255, 255, 0.1);
    color: var(--accent-color);
}

.service-modal-title {
    font-size: 1.75rem;
    margin-bottom: 1rem;
    padding-right: 2.5rem;
}

.service-modal-general {
    font-size: 1rem;
    color: var(--text-light);
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.service-modal-includes {
    font-size: 0.95rem;
    color: var(--text-light);
    line-height: 1.6;
}

.service-modal-includes h4 {
    font-size: 1rem;
    color: var(--white);
    margin-bottom: 0.5rem;
}

.service-modal-includes ul {
    margin: 0;
    padding-left: 1.25rem;
}

.service-modal-includes li {
    margin-bottom: 0.25rem;
}

.service-modal-includes .service-modal-price {
    font-size: 1rem;
    font-weight: 600;
    color: var(--accent-color);
    margin: 0.25rem 0 0 0;
}

.service-modal-includes .service-modal-price-list {
    margin: 0.25rem 0 0 0;
    font-size: 0.9rem;
    color: var(--text-light);
}

.service-modal-includes .service-modal-price-list li {
    margin-bottom: 0.15rem;
}

/* FAQ Section */
.faq {
    padding: 5rem 0;
    background: var(--bg-dark);
}

.faq-list {
    max-width: 800px;
    margin: 3rem auto 0;
}

.faq-item {
    background: #1a1a1a;
    border-radius: 10px;
    margin-bottom: 1rem;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.faq-question {
    width: 100%;
    padding: 1.5rem;
    background: #1a1a1a;
    border: none;
    text-align: left;
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--white);
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: background 0.3s;
}

.faq-question:hover {
    background: #2a2a2a;
}

.faq-icon {
    font-size: 1.5rem;
    color: var(--accent-color);
    transition: transform 0.3s;
}

.faq-item.active .faq-icon {
    transform: rotate(45deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out;
}

.faq-item.active .faq-answer {
    max-height: 500px;
}

.faq-answer p {
    padding: 1rem 1.5rem 1.5rem;
    color: var(--text-light);
    line-height: 1.8;
}

.faq-contact {
    text-align: center;
    margin-top: 3rem;
}

.faq-contact h3 {
    font-size: 1.5rem;
    color: var(--white);
}

/* Contact Section */
.contact {
    padding: 5rem 0;
    background: var(--bg-dark);
}

.contact-content {
    display: grid;
    grid-template-columns: 300px 1fr;
    gap: 3rem;
    align-items: center;
    max-width: 900px;
    margin: 0 auto;
}

.contact-image {
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.contact-image img {
    width: 100%;
    height: 300px;
    object-fit: contain;
    display: block;
    background: rgba(255, 255, 255, 0.05);
}

.contact-info {
    text-align: left;
}

.contact-info h2 {
    font-size: 2rem;
    color: var(--white);
    margin-bottom: 0.5rem;
}

.contact-role {
    font-size: 1.2rem;
    color: var(--accent-color);
    font-weight: 600;
    margin-bottom: 1rem;
}

.contact-phone {
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
}

.contact-phone a {
    color: var(--white);
    text-decoration: none;
    font-weight: 600;
}

.contact-phone a:hover {
    color: var(--accent-color);
}

.contact-description {
    color: var(--text-light);
    line-height: 1.8;
}

/* Gallery Section */
.gallery {
    padding: 5rem 0;
    background: var(--bg-dark);
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 1.5rem;
    margin-top: 3rem;
}

.gallery-item {
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s;
    cursor: pointer;
}

.gallery-item:hover {
    transform: scale(1.05);
}

.gallery-item img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    display: block;
}

/* Footer */
.footer {
    background: var(--primary-color);
    color: var(--white);
    padding: 4rem 0 2rem;
}

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

.footer-logo h2 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
}

.footer-section p {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.8;
    margin-bottom: 0.5rem;
}

.footer-section h3 {
    font-size: 1.2rem;
    margin-bottom: 1rem;
}

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

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

.footer-links a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: color 0.3s;
}

.footer-links a:hover {
    color: var(--accent-color);
}

.footer-section a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: color 0.3s;
}

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

.footer-map {
    width: 100%;
    margin-bottom: 2rem;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.footer-map iframe {
    display: block;
}

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

.api-health-status {
    margin-left: 0.5rem;
    font-size: 0.8rem;
}
.api-health-status.api-health-ok {
    color: #6ee7b7;
}
.api-health-status.api-health-fail {
    color: rgba(255, 255, 255, 0.5);
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav {
        display: none;
    }

    .nav.active {
        display: block;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: rgba(0, 0, 0, 0.3);
        backdrop-filter: blur(10px);
        -webkit-backdrop-filter: blur(10px);
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.5);
    }

    .nav.active .nav-list {
        flex-direction: column;
        padding: 1rem;
        gap: 0.5rem;
        background: rgba(255, 255, 255, 0.95);
        border-radius: 12px;
    }

    .nav.active .nav-list li {
        padding: 0;
    }

    .nav.active .nav-list a {
        display: block;
        padding: 0.75rem 1rem;
        border-radius: 8px;
    }

    .mobile-menu-toggle {
        display: flex;
    }

    .phone {
        display: none;
    }

    .hero-title {
        font-size: 2.25rem;
    }

    .hero {
        min-height: 80vh;
    }

    .section-title {
        font-size: 2.25rem;
    }

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

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

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

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

@media (max-width: 480px) {
    .hero-title {
        font-size: 1.75rem;
    }

    .hero {
        min-height: 70vh;
    }

    .section-title {
        font-size: 1.75rem;
    }

    .about-text {
        font-size: 1.2rem;
    }

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