* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background-color: #0d0d0d;
    color: #fff;
    font-family: 'Montserrat', sans-serif;
    overflow-x: hidden;
    height: 800vh;
}

/* ... existing styles ... */

.section-tag {
    display: block;
    color: #c5a059;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 4px;
    margin-bottom: 15px;
    font-weight: 600;
}

.experience-stats {
    display: flex;
    gap: 30px;
    margin-top: 40px;
}

.stat-item span {
    display: block;
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    color: #c5a059;
    font-weight: 800;
}

.stat-item p {
    font-size: 0.8rem;
    color: #888;
    text-transform: uppercase;
    letter-spacing: 1px;
}

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

.step-num {
    font-family: 'Playfair Display', serif;
    font-size: 3rem;
    color: rgba(197, 160, 89, 0.2);
    font-weight: 900;
    margin-bottom: -20px;
}

.step h3 {
    color: #c5a059;
    font-size: 1.2rem;
    margin-bottom: 15px;
}

.testimonial-item p {
    font-style: italic;
    font-size: 1.2rem;
    line-height: 1.8;
    color: #f5f5f5;
    margin-bottom: 20px;
}

.testimonial-item .author {
    color: #c5a059;
    font-weight: 600;
    font-size: 0.9rem;
}

.faq-container {
    display: flex;
    flex-direction: column;
    gap: 25px;
    margin-top: 30px;
}

.faq-item h4 {
    color: #c5a059;
    font-size: 1.1rem;
    margin-bottom: 10px;
}

.faq-item p {
    font-size: 0.95rem;
    color: #aaa;
    line-height: 1.6;
}

canvas.webgl {
    position: fixed;
    top: 0;
    left: 0;
    outline: none;
    z-index: 1;
}

/* Loader */
#loader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #0d0d0d;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 2000;
    transition: opacity 1s ease;
}

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

.loader-logo {
    width: 300px;
    margin-bottom: 30px;
}

.loader-bar-container {
    width: 200px;
    height: 2px;
    background: rgba(197, 160, 89, 0.2);
    margin: 0 auto 15px;
}

.loader-bar {
    width: 0%;
    height: 100%;
    background: #c5a059;
    transition: width 0.4s ease;
}

/* Header */
.header-3d {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    padding: 20px 5%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 1000;
}

.site-logo {
    width: 220px;
}

.btn-call {
    color: #c5a059;
    text-decoration: none;
    font-weight: 600;
    border: 1px solid #c5a059;
    padding: 10px 20px;
    border-radius: 2px;
    font-size: 0.9rem;
    background: rgba(0, 0, 0, 0.4);
    backdrop-filter: blur(5px);
}

/* Content */
#content {
    position: relative;
    z-index: 2;
}

.section {
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    padding: 0 10%;
    opacity: 0;
    transform: translateX(-50px);
    transition: all 1.2s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.section.active {
    opacity: 1;
    transform: translateX(0);
}

.content-wrapper {
    width: fit-content;
    max-width: 90%;
    background: rgba(0, 0, 0, 0.6);
    padding: 50px;
    border-left: 3px solid #c5a059;
    backdrop-filter: blur(15px);
}

h1.logo-text {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2rem, 10vw, 4rem);
    background: linear-gradient(135deg, #c5a059 0%, #f9e2af 50%, #c5a059 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    letter-spacing: 4px;
    margin-bottom: 20px;
    font-weight: 900;
    text-transform: uppercase;
    filter: drop-shadow(0 5px 15px rgba(0, 0, 0, 0.5));
    white-space: normal;
    word-break: break-word;
}

.slogan-3d {
    font-size: 1.6rem;
    font-weight: 300;
    color: #f5f5f5;
    margin-bottom: 40px;
    letter-spacing: 2px;
}

h2 {
    font-family: 'Playfair Display', serif;
    font-size: 2.8rem;
    color: #c5a059;
    margin-bottom: 30px;
    position: relative;
    display: inline-block;
}

h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 60px;
    height: 2px;
    background: #c5a059;
}

.sub-text {
    margin-top: 15px;
    color: #a0a0a0;
    font-size: 0.95rem;
}

.scroll-indicator {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 3px;
    color: #c5a059;
    margin-top: 40px;
}

.services-3d-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 15px;
    margin-top: 25px;
}

.service-item {
    font-size: 1rem;
    color: #f5f5f5;
    padding-left: 20px;
    position: relative;
}

.service-item::before {
    content: '•';
    position: absolute;
    left: 0;
    color: #c5a059;
}

.available-24h {
    margin-top: 25px;
    color: #c5a059;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 0.9rem;
}

@media (max-width: 768px) {
    .section {
        padding: 0 5%;
        justify-content: center;
    }

    .content-wrapper {
        padding: 30px;
        text-align: center;
        border-left: none;
        border-top: 3px solid #c5a059;
    }

    h1.logo-text {
        font-size: 1.4rem;
    }

    .site-logo {
        width: 150px;
    }
}

/* Carousel */
.carousel {
    overflow: hidden;
    width: 100%;
    margin-top: 30px;
    border-radius: 8px;
    position: relative;
}

.carousel-track {
    display: flex;
    gap: 15px;
    animation: scroll 20s linear infinite;
    width: max-content;
}

.carousel-img {
    height: 300px;
    width: auto;
    border-radius: 8px;
    object-fit: cover;
    border: 2px solid rgba(197, 160, 89, 0.4);
}

@keyframes scroll {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(calc(-300px * 7 - 15px * 7));
    }

    /* 7 images approx */
}

/* FAQ Background */
.faq-3d {
    position: relative;
}

.faq-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.15;
    z-index: -1;
    mask-image: linear-gradient(to bottom, transparent, black 10%, black 90%, transparent);
    -webkit-mask-image: linear-gradient(to bottom, transparent, black 10%, black 90%, transparent);
}

.faq-item {
    background: rgba(0, 0, 0, 0.5);
    padding: 15px;
    border-radius: 8px;
    border-left: 2px solid #c5a059;
}

/* Mobile Floating Button */
.mobile-floating-btn {
    display: none;
    /* hidden on desktop */
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #c5a059 0%, #f9e2af 50%, #c5a059 100%);
    color: #fff;
    border-radius: 50%;
    text-align: center;
    line-height: 60px;
    font-size: 24px;
    box-shadow: 0 4px 15px rgba(197, 160, 89, 0.5);
    z-index: 10000;
    cursor: pointer;
    transition: transform 0.3s ease;
}

.mobile-floating-btn:hover {
    transform: scale(1.1);
}

.mobile-floating-btn i {
    animation: phone-shake 2s infinite ease-in-out;
}

@keyframes phone-shake {

    0%,
    100% {
        transform: rotate(0deg);
    }

    10%,
    30%,
    50%,
    70%,
    90% {
        transform: rotate(-10deg);
    }

    20%,
    40%,
    60%,
    80% {
        transform: rotate(10deg);
    }
}

@media (max-width: 768px) {
    .mobile-floating-btn {
        display: block;
        /* show only on mobile */
    }
}

.area-links-wrapper {
    max-width: min(1100px, 92vw);
}

.area-links-intro {
    color: #d6d6d6;
    line-height: 1.7;
    margin: 0 0 22px;
    max-width: 720px;
}

.area-links-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 10px;
    max-height: 42vh;
    overflow-y: auto;
    padding-right: 8px;
}

.area-links-grid a {
    color: #f5f5f5;
    text-decoration: none;
    border: 1px solid rgba(197, 160, 89, 0.35);
    background: rgba(255, 255, 255, 0.04);
    padding: 10px 12px;
    border-radius: 4px;
    font-size: 0.86rem;
    line-height: 1.35;
    transition: border-color 0.2s ease, background 0.2s ease;
}

.area-links-grid a:hover,
.area-links-grid a:focus {
    border-color: #c5a059;
    background: rgba(197, 160, 89, 0.14);
    outline: none;
}

@media (max-width: 768px) {
    body {
        height: 850vh;
    }

    .area-links-grid {
        grid-template-columns: 1fr;
        max-height: 45vh;
    }
}
