@font-face {
    font-family: 'Jost';
    src: url('assets/fonts/Jost-Regular.ttf') format('truetype');
    font-weight: 400;
    font-style: normal;
}

@font-face {
    font-family: 'Jost';
    src: url('assets/fonts/Jost-Medium.ttf') format('truetype');
    font-weight: 500;
    font-style: normal;
}

@font-face {
    font-family: 'Jost';
    src: url('assets/fonts/Jost-Bold.ttf') format('truetype');
    font-weight: 700;
    font-style: normal;
}

@font-face {
    font-family: 'Paytone One';
    src: url('assets/fonts/PaytoneOne-Regular.ttf') format('truetype');
    font-weight: 400;
    font-style: normal;
}

:root {
    --primary-color: #000000;
    --accent-color: #FFA800;
    --bg-color: #ffffff;
    --text-color: #333333;
    --card-bg: #fff;
    --font-heading: 'Paytone One', sans-serif;
    --font-body: 'Jost', sans-serif;
}

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

body {
    font-family: var(--font-body);
    font-weight: 500;
    color: var(--text-color);
    background-color: #f4f4f4;
    line-height: 1.5;
    padding-bottom: 0px;
}

a {
    text-decoration: none;
    color: inherit;
}

button {
    border: none;
    background: none;
    cursor: pointer;
    font-family: inherit;
}

/* Typography */
h1,
h2,
h3 {
    font-family: var(--font-heading);
    color: var(--primary-color);
}

/* Header */
.site-header {
    position: absolute;
    top: 0;
    right: 0;
    width: 100%;
    display: flex;
    justify-content: flex-end;
    align-items: center;
    padding: 1rem 1.5rem;
    z-index: 10;
}

.lang-switch {
    display: flex;
    gap: 0.5rem;
}

.lang-btn {
    background: transparent;
    border: 2px solid transparent;
    border-radius: 50%;
    /* Circle */
    padding: 2;
    cursor: pointer;
    width: 32px;
    height: 32px;
    overflow: hidden;
    opacity: 0.6;
    transition: all 0.2s;
    display: flex;
    align-items: center;
    justify-content: center;
}

.lang-btn img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
}

.lang-btn.active {
    opacity: 1;
    border-color: #fff;
    transform: scale(1.1);
}

.lang-btn:hover {
    opacity: 1;
}

/* Hero */
.hero {
    text-align: center;
    padding: 12rem 1.5rem 12rem 1.5rem;
    background-color: #0b1026;
    /* Night sky color */
    color: #fff;
    position: relative;
    /* Context for snow */
    overflow: hidden;
    /* Contain snow */
}

/* Snowfall Effect */
.snow-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    /* Let clicks pass through */
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    /* Ensure content is above snow */
}

.snowflake {
    position: absolute;
    top: -10px;
    background: #fff;
    border-radius: 50%;
    opacity: 0.8;
    pointer-events: none;
    animation: fall linear infinite;
}

@keyframes fall {
    0% {
        top: -10px;
        transform: translateX(0);
        opacity: 0.8;
    }

    100% {
        top: 100%;
        /* Fall through bottom of container */
        transform: translateX(20px);
        /* Slight drift */
        opacity: 0;
    }
}

.hero-logo {
    max-width: 350px;
    width: 80%;
    margin-bottom: 1rem;
    margin-top: 30px;
}

.hero h1 {
    font-family: var(--font-body);
    font-weight: 500;
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
    line-height: 1.2;
    color: #fff;
    /* White text */
    text-transform: uppercase;
}

.cta-button {
    display: inline-block;
    background-color: var(--accent-color);
    /* Accent background */
    color: #000;
    /* Black text */
    padding: 1rem 2.5rem;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1.1rem;
    transition: transform 0.2s, box-shadow 0.2s;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-top: 70px;
}

.cta-button:active {
    transform: scale(0.98);
}

/* Services Grid */
.services-grid {
    display: grid;
    grid-template-columns: 1fr;
    /* Single column stack on mobile for width */
    gap: 1.5rem;
    padding: 0 1.5rem;
    max-width: 1200px;
    margin: 30px auto;
}

.service-card {
    background: var(--card-bg);
    border-radius: 24px;
    padding: 0.75rem;
    /* Slight padding around the whole thing like the card */
    display: flex;
    /* Horizontal Layout */
    flex-direction: column;
    /* Stack on tiny screens, Row on tablet+ */
    gap: 1rem;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    /* Soft shadow */
    transition: transform 0.2s;
    cursor: pointer;
}

.service-card:hover {
    transform: translateY(-2px);
}

/* Image on Left */
.card-img-container {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    aspect-ratio: 4/3;
    /* Or square depending on pref */
    min-width: 140px;
}

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

/* Content on Right */
.card-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 0.5rem 0.25rem;
}

.card-header h2 {
    font-size: 1.15rem;
    margin-bottom: 0.5rem;
    font-family: var(--font-body);
    font-weight: 700;
}

.card-desc {
    font-size: 0.85rem;
    color: #777;
    line-height: 1.4;
    margin-bottom: 0.5rem;
}

/* Bottom Row inside content: Price left, Button right */
.card-footer {
    display: flex;
    justify-content: flex-end;
    /* Button only now in some cases */
    align-items: flex-end;
    margin-top: auto;
    /* Push to bottom */
    padding-top: 1rem;
}

.card-prices {
    margin-top: 0.5rem;
    font-size: 0.9rem;
    background: #f9f9f9;
    padding: 0.5rem;
    border-radius: 8px;
}

.price-row {
    display: flex;
    justify-content: space-between;
    margin-bottom: 2px;
}

.price-row:last-child {
    margin-bottom: 0;
}

.price-row strong {
    color: var(--primary-color);
}

.price-block {
    display: flex;
    flex-direction: column;
    gap: 2px;
    margin-right: auto;
    /* Push button right if price block exists */
}

.price-label {
    font-size: 0.8rem;
    color: #666;
    font-weight: 400;
}

.price-val {
    font-size: 1.25rem;
    font-weight: 700;
    color: #000;
}

.card-btn {
    background-color: var(--accent-color);
    color: #000;
    padding: 0.6rem 1.2rem;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.9rem;
    transition: background 0.2s;
}

.card-btn:hover {
    background-color: #e69500;
}

/* Modal */
.modal-overlay {
    display: none;
    /* Hidden by default */
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    z-index: 200;
    justify-content: center;
    align-items: center;
    padding: 1.5rem;
}

.modal-overlay.active {
    display: flex;
}

.modal-content {
    background: #fff;
    padding: 2rem;
    border-radius: 24px;
    width: 100%;
    max-width: 320px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    text-align: center;
    position: relative;
    animation: popIn 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

@keyframes popIn {
    from {
        transform: scale(0.8);
        opacity: 0;
    }

    to {
        transform: scale(1);
        opacity: 1;
    }
}

.close-modal {
    position: absolute;
    top: 10px;
    right: 15px;
    font-size: 2rem;
    line-height: 1;
    color: #999;
}

.modal-actions {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-top: 1.5rem;
}

.modal-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 1rem;
    border-radius: 12px;
    font-weight: 700;
    font-size: 1rem;
    transition: transform 0.1s;
}

.modal-btn svg {
    width: 24px;
    height: 24px;
}

.modal-btn:active {
    transform: scale(0.98);
}

.modal-btn.whatsapp {
    background: #25D366;
    color: #fff;
}

.modal-btn.phone {
    background: var(--accent-color);
    color: #000;
}

.modal-btn.mail {
    background: #333;
    color: #fff;
}


/* Footer */
.site-footer {
    text-align: center;
    padding: 3rem 1.5rem;
}

.site-footer h3 {
    margin-bottom: 1rem;
}

.footer-link {
    display: block;
    margin: 0.5rem 0;
    font-weight: 700;
}

.legal {
    margin-top: 2rem;
    font-size: 0.8rem;
    display: flex;
    justify-content: center;
    gap: 1rem;
}

/* Responsive adjustments */
@media (min-width: 600px) {

    .services-grid {
        grid-template-columns: repeat(2, 1fr);
        /* 2 Columns of wide cards */
    }

}

@media (min-width: 1200px) {
    .services-grid {
        grid-template-columns: repeat(3, 1fr);
        /* 2 Columns of wide cards */
    }
}

/* FAQ Section */
.faq-section {
    padding: 4rem 1.5rem;
    text-align: center;
}

.section-title {
    font-size: 1.5rem;
    margin-bottom: 2rem;
    text-transform: uppercase;
    font-weight: 700;
}

.faq-container {
    max-width: 800px;
    margin: 0 auto;
    text-align: left;
}

.faq-item {
    background: #fff;
    margin-bottom: 1rem;
    border-radius: 8px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
    overflow: hidden;
}

.faq-item summary {
    padding: 1.5rem;
    cursor: pointer;
    font-weight: 600;
    list-style: none;
    /* Hide default arrow */
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
    font-size: 1.1rem;
}

.faq-item summary::-webkit-details-marker {
    display: none;
}

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

.faq-item[open] .faq-icon {
    transform: rotate(45deg);
    /* Turn + to x */
}

.faq-answer {
    padding: 0 1.5rem 1.5rem 1.5rem;
    line-height: 1.6;
    color: #555;
    animation: fadeIn 0.3s ease-in-out;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Reviews Section */
.reviews-section {
    padding: 4rem 1.5rem;
    background-color: #f9f9f9;
    /* Slightly different from main if needed, or keep white */
    overflow: hidden;
}

.carousel-container {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
    overflow: hidden;
    /* Hide non-active cards */
    padding: 1rem 0;
}

.carousel-track {
    display: flex;
    transition: transform 0.3s ease-in-out;
    width: 100%;
}

.review-card {
    min-width: 100%;
    /* Show one at a time */
    padding: 3rem;
    /* Increased Space for shadow/buffer */
    /* Space for shadow */
    /* Visuals moved to inner */
    background: transparent;
    box-shadow: none;
    border-radius: 0;
}

.review-card-inner {
    background: #fff;
    padding: 2rem;
    border-radius: 24px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    /* Soft shadow like services */
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    width: 100%;
    height: 100%;
}

/* --- Carousel Overflow Fixes --- */

/* 1. Container: Visible for Buttons */
.carousel-container {
    overflow: visible !important;
    /* Force override */
    position: relative;
    max-width: 900px;
    margin: 0 auto;
    padding: 0;
}

/* 2. Viewport: Hidden for Cards/Bleeding */
.carousel-viewport {
    overflow: hidden;
    width: 100%;
    /* No padding needed on viewport now, card handles it */
    padding: 0;
    margin: 0;
    box-sizing: border-box;
}

.stars {
    color: var(--accent-color);
    font-size: 1.5rem;
    letter-spacing: 2px;
}

.review-text {
    font-size: 1.1rem;
    font-style: italic;
    color: #444;
    line-height: 1.6;
    max-width: 600px;
}

.review-author {
    font-weight: 700;
    color: var(--primary-color);
    margin-top: 0.5rem;
}

/* Dots */
.carousel-dots {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
    margin-top: 1.5rem;
}

.dot {
    width: 12px;
    height: 12px;
    background-color: #ddd;
    border-radius: 50%;
    cursor: pointer;
    transition: background-color 0.3s;
}

.dot.active {
    background-color: var(--accent-color);
    transform: scale(1.1);
}

/* Review Content Updates */
.review-content {
    min-height: 80px;
    /* Prevent jump when switching or loading */
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 100%;
}

.review-text {
    width: 100%;
}

.review-text.hidden {
    display: none;
}

/* Toggle Link */
.toggle-original-btn {
    font-size: 0.8rem;
    color: #999;
    text-decoration: underline;
    margin-top: 0.5rem;
    cursor: pointer;
    background: none;
    border: none;
    padding: 0;
}

.toggle-original-btn:hover {
    color: var(--accent-color);
}

.toggle-original-btn.hidden {
    display: none;
}

/* Google Link */
.google-review-link {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.85rem;
    color: #555;
    margin-top: 1rem;
    padding: 0.4rem 0.8rem;
    border: 1px solid #eee;
    border-radius: 50px;
    transition: all 0.2s;
    background: #fff;
}

.google-review-link:hover {
    border-color: #ddd;
    background: #f4f4f4;
    color: #333;
    transform: translateY(-1px);
}

.google-icon {
    width: 16px;
    height: 16px;
}

/* Fix Initial Visibility */
.review-text.translation {
    display: none;
}

/* Updated Toggle Link Style */
.toggle-original-btn {
    font-size: 0.9rem;
    color: #999;
    text-decoration: underline;
    margin-top: 0.5rem;
    cursor: pointer;
    background: none;
    border: none;
    padding: 0;
    display: none;
    /* Hidden by default, shown by JS in English mode */
}

/* Updated Google Link Style - Text Link */
.google-review-link {
    display: inline-block;
    font-size: 0.85rem;
    color: #555;
    margin-top: 1rem;
    padding: 0;
    border: none;
    background: none;
    text-decoration: underline;
    transition: color 0.2s;
}

.google-review-link:hover {
    color: var(--accent-color);
    background: none;
    transform: none;
}

/* Hide Icon */
.google-icon {
    display: none;
}

/* Desktop Swipe Cursor */
.carousel-track {
    cursor: grab;
    /* cursor: -webkit-grab; */
}

.carousel-track:active {
    cursor: grabbing;
    /* cursor: -webkit-grabbing; */
}

/* Carousel Nav & Shadow Fixes */

/* 1. Fix Shadow Clipping */
.carousel-container {
    /* Increase padding to let shadows breathe */
    padding: 2rem 1rem;
    /* Ensure buttons can be positioned absolutely relative to this */
    position: relative;
    max-width: 900px;
    /* Slightly wider to accommodate buttons if outside, or keep 800 */
}

/* 2. Navigation Buttons */
.carousel-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: #fff;
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    cursor: pointer;
    z-index: 10;
    font-size: 1.2rem;
    color: var(--primary-color);
    transition: all 0.3s ease;
    display: flex;
    justify-content: center;
    align-items: center;
}

.carousel-btn:hover {
    background: var(--accent-color);
    color: #fff;
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.2);
}

.carousel-btn.prev {
    left: 10px;
}

.carousel-btn.next {
    right: 10px;
}

/* Adjust Responsive placement */
@media (min-width: 768px) {
    .carousel-btn.prev {
        left: -20px;
    }

    .carousel-btn.next {
        right: -20px;
    }
}

/* --- Carousel Overflow Fixes --- */

/* 1. Container: Visible for Buttons */
.carousel-container {
    overflow: visible !important;
    /* Force override */
    position: relative;
    max-width: 900px;
    margin: 0 auto;
    /* Remove padding that was for shadow, move to viewport if needed */
    padding: 0;
}

/* 2. Viewport: Hidden for Cards/Bleeding */
.carousel-viewport {
    overflow: hidden;
    width: 100%;
    /* Add padding internally so shadows inside are visible */
    padding: 30px;
    margin: 0;
    box-sizing: border-box;
}

/* Re-adjust Track width logic if padding exists? */
/* If Viewport has padding, Track is smaller. Flex items (100%) will be 100% of Track. */
/* This is fine. The card will just be slightly narrower than full container width, which is good. */

/* 3. Section Overflow */
/* Ensure section doesn't clip the buttons if they stand out wide */
.reviews-section {
    overflow: visible;
}

/* 4. Button Position Tweaks */
/* Since container padding is gone/moved, buttons position relative to edge 0 */
.carousel-btn.prev {
    left: -15px;
}

.carousel-btn.next {
    right: -15px;
}

@media (min-width: 768px) {
    .carousel-btn.prev {
        left: -50px;
        /* More clearance */
    }

    .carousel-btn.next {
        right: -50px;
    }
}/* --- Cookie Banner --- */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background-color: #222;
    color: #fff;
    padding: 1rem 2rem;
    z-index: 9999;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    box-shadow: 0 -4px 10px rgba(0, 0, 0, 0.2);
    font-size: 0.9rem;
    gap: 1rem;
}

.cookie-content p {
    margin: 0;
    line-height: 1.4;
}

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

.cookie-btn {
    padding: 0.5rem 1.5rem;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-weight: 600;
    transition: opacity 0.2s;
}

.cookie-btn:hover {
    opacity: 0.9;
}

.cookie-btn.accept {
    background-color: var(--color-accent, #00d4ff);
    color: #000;
}

.cookie-btn.decline {
    background-color: transparent;
    border: 1px solid #fff;
    color: #fff;
}

@media (max-width: 600px) {
    .cookie-banner {
        flex-direction: column;
        text-align: center;
    }

    .cookie-actions {
        width: 100%;
        justify-content: center;
    }
}