@font-face {
    font-family: 'Poppins';
    font-style: normal;
    font-weight: 300;
    src: local('Poppins Light'), local('Poppins-Light'),
         url('/assets/fonts/Poppins/Poppins-Light.ttf') format('truetype');
}
@font-face {
    font-family: 'Poppins';
    font-style: normal;
    font-weight: 400;
    src: local('Poppins Regular'), local('Poppins-Regular'),
         url('/assets/fonts/Poppins/Poppins-Regular.ttf') format('truetype');
}
@font-face {
    font-family: 'Poppins';
    font-style: normal;
    font-weight: 500;
    src: local('Poppins Medium'), local('Poppins-Medium'),
         url('/assets/fonts/Poppins/Poppins-Medium.ttf') format('truetype');
}
@font-face {
    font-family: 'Poppins';
    font-style: normal;
    font-weight: 600;
    src: local('Poppins SemiBold'), local('Poppins-SemiBold'),
         url('/assets/fonts/Poppins/Poppins-SemiBold.ttf') format('truetype');
}
@font-face {
    font-family: 'Poppins';
    font-style: normal;
    font-weight: 700;
    src: local('Poppins Bold'), local('Poppins-Bold'),
         url('/assets/fonts/Poppins/Poppins-Bold.ttf') format('truetype');
}

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

body {
    font-family: 'Poppins', sans-serif;
    background-color: #0A0C11;
    color: #ffffff;
    line-height: 1.6;
    overflow-x: hidden;
    position: relative;
}

body::before {
    content: '';
    position: fixed;
    inset: 0;
    background:
        radial-gradient(circle at top left, rgba(255,255,255,0.05), transparent 40%),
        radial-gradient(circle at bottom right, rgba(255,255,255,0.03), transparent 40%);
    pointer-events: none;
    z-index: -1;
}

.preloader {
    position: fixed;
    left: 0;
    top: 0;
    right: 0;
    bottom: 0;
    background: #000000;
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
}

.preloader__row {
    text-align: center;
}

.preloader__item {
    display: inline-block;
    width: 50px;
    height: 50px;
    border: 3px solid rgba(255,255,255,0.15);
    border-top-color: #ffffff;
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

.loaded_hiding .preloader {
    transition: 0.3s opacity;
    opacity: 0;
    pointer-events: none;
}

.loaded .preloader {
    display: none;
}

main {
    animation: fadeIn 0.4s ease-out;
}
@keyframes fadeIn {
    from { opacity: 0; transform: translateY(8px); }
    to   { opacity: 1; transform: translateY(0); }
}

.will-reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}
.will-reveal.revealed {
    opacity: 1 !important;
    transform: translateY(0) !important;
}

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

.section {
    padding: 100px 0;
}

.section-header {
    text-align: center;
    margin-bottom: 64px;
}

.section-subtitle {
    color: #9E9E9E;
    font-size: 1rem;
    letter-spacing: 4px;
    text-transform: uppercase;
    margin-bottom: 12px;
    font-weight: 500;
}

.section-title {
    font-size: 3rem;
    font-weight: 700;
    position: relative;
    display: inline-block;
    letter-spacing: -0.5px;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -12px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: #ffffff;
    border-radius: 2px;
}

header {
    padding: 8px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    background-color: rgba(10, 12, 17, 0.6);
    backdrop-filter: blur(16px);
    border-bottom: 1px solid rgba(255,255,255,0.08);
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

a.logo {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
    color: inherit;
}

.logo img {
    height: 70px;
    width: auto;
}

.logo-text {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
}

.logo-text h1 {
    font-size: 2rem;
    font-weight: 600;
    color: #ffffff;
    letter-spacing: -0.5px;
    line-height: 1.2;
}

.logo-tagline {
    font-size: 1rem;
    font-weight: 400;
    color: #B0B3B8;
    margin-top: 4px;
}

.desktop-nav {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    justify-content: center;
}

.desktop-nav a {
    color: #ffffff;
    text-decoration: none;
    font-weight: 500;
    font-size: 1rem;
    padding: 8px 20px;
    border: 1px solid rgba(255,255,255,0.2);
    border-radius: 40px;
    background: transparent;
    transition: all 0.3s ease;
    display: inline-block;
    white-space: nowrap;
}

.desktop-nav a:hover {
    background-color: rgba(255,255,255,0.1);
    border-color: #ffffff;
    transform: scale(1.02);
    box-shadow: 0 0 15px rgba(255,255,255,0.3);
}

.mobile-menu-toggle {
    display: none;
    position: relative;
    width: 40px;
    height: 24px;
    cursor: pointer;
    background: transparent;
    display: flex;
    align-items: center;
    justify-content: center;
}
.mobile-menu-toggle .bar {
    width: 32px;
    height: 3px;
    background-color: #ffffff;
    border-radius: 2px;
    transition: opacity 0.3s ease;
}
.mobile-menu-toggle .menu-text {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 0.9rem;
    font-weight: 500;
    white-space: nowrap;
    color: #ffffff;
    opacity: 0;
    transition: opacity 0.3s ease;
    pointer-events: none;
}
.mobile-menu-toggle.text-mode .bar {
    opacity: 0;
}
.mobile-menu-toggle.text-mode .menu-text {
    opacity: 1;
}

.mobile-nav {
    width: 100%;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease-out;
    margin-top: 0;
    background: transparent;
    backdrop-filter: none;
    border-radius: 0 0 24px 24px;
}

.mobile-nav.open {
    max-height: 300px;
    margin-top: 10px;
}

.mobile-nav ul {
    list-style: none;
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    justify-content: center;
    padding: 20px 0;
    background: transparent;
}

.mobile-nav li {
    background: transparent;
}

.mobile-nav a {
    color: #ffffff;
    text-decoration: none;
    font-weight: 500;
    font-size: 1rem;
    padding: 8px 20px;
    border: 1px solid rgba(255,255,255,0.2);
    border-radius: 40px;
    background: transparent;
    transition: all 0.3s ease;
    display: inline-block;
    white-space: nowrap;
}

.mobile-nav a:hover {
    background-color: rgba(255,255,255,0.1);
    border-color: #ffffff;
    transform: scale(1.02);
    box-shadow: 0 0 15px rgba(255,255,255,0.3);
}

.hero {
    padding: 140px 0;
    text-align: center;
}

.hero h1 {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 24px;
    line-height: 1.2;
    letter-spacing: -1px;
    background: linear-gradient(90deg, rgba(255,255,255,0.5) 0%, #fff 30%, #fff 70%, rgba(255,255,255,0.5) 100%);
    background-size: 200% auto;
    background-clip: text;
    -webkit-background-clip: text;
    color: transparent;
    animation: textWave 8s infinite linear;
}

.hero h2 {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 24px;
    line-height: 1.2;
    letter-spacing: -1px;
    background: linear-gradient(90deg, rgba(255,255,255,0.5) 0%, #fff 30%, #fff 70%, rgba(255,255,255,0.5) 100%);
    background-size: 200% auto;
    background-clip: text;
    -webkit-background-clip: text;
    color: transparent;
    animation: textWave 10s infinite linear;
    animation-delay: 0.5s;
}

@keyframes textWave {
    0% { background-position: 0% center; }
    100% { background-position: 200% center; }
}

.hero-info {
    max-width: 700px;
    margin: 40px auto 0;
    padding: 20px 0 0 0;
    text-align: left;
    border-top: 2px solid rgba(255,255,255,0.15);
}
.hero-info p {
    margin: 0 0 16px 0;
    font-size: 1.1rem;
    color: #dddddd;
}
.hero-info p strong {
    color: #ffffff;
    font-weight: 600;
}

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

.service-card {
    background-color: rgba(34,34,34,0.6);
    backdrop-filter: blur(8px);
    border-radius: 28px;
    padding: 32px 24px;
    text-align: center;
    border: 1px solid rgba(255,255,255,0.05);
    box-shadow: 0 8px 20px rgba(0,0,0,0.3);
    transition: all 0.3s cubic-bezier(0.2,0,0,1);
    animation: softGlow 4s infinite ease-in-out;
}

@keyframes softGlow {
    0% {
        background-color: rgba(34,34,34,0.6);
        box-shadow: 0 8px 20px rgba(0,0,0,0.3);
    }
    50% {
        background-color: rgba(45,45,50,0.7);
        box-shadow: 0 8px 25px rgba(255,255,255,0.1);
    }
    100% {
        background-color: rgba(34,34,34,0.6);
        box-shadow: 0 8px 20px rgba(0,0,0,0.3);
    }
}

.service-card:nth-child(1) { animation-delay: 0s; }
.service-card:nth-child(2) { animation-delay: 0.4s; }
.service-card:nth-child(3) { animation-delay: 0.8s; }
.service-card:nth-child(4) { animation-delay: 1.2s; }
.service-card:nth-child(5) { animation-delay: 0.2s; }
.service-card:nth-child(6) { animation-delay: 0.6s; }

.service-card:hover {
    animation-play-state: paused;
    transform: translateY(-8px);
    background-color: rgba(40,40,45,0.9);
    border-color: rgba(255,255,255,0.2);
    box-shadow: 0 16px 32px rgba(0,0,0,0.4);
}

.service-icon {
    font-size: 3rem;
    margin-bottom: 20px;
    color: #ffffff;
}

.material-symbols-outlined {
    font-size: 48px;
}

.service-title {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 12px;
    letter-spacing: -0.3px;
}

.service-desc {
    color: #B0B3B8;
}

.form-section {
    background-color: transparent;
}

.contact-form, .review-form {
    max-width: 600px;
    margin: 0 auto;
    padding: 48px;
    background-color: rgba(10,12,17,0.8);
    backdrop-filter: blur(16px);
    border-radius: 32px;
    box-shadow: 0 25px 50px -12px rgba(0,0,0,0.5);
    border: 1px solid rgba(255,255,255,0.05);
    transition: all 0.3s ease;
}

.contact-form:hover, .review-form:hover {
    transform: scale(1.02);
    background-color: rgba(20,20,25,0.9);
    border-color: rgba(255,255,255,0.5);
    box-shadow: 0 0 30px rgba(255,255,255,0.4);
}

.form-group {
    margin-bottom: 24px;
    position: relative;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
    color: #E0E0E0;
    font-size: 0.95rem;
    letter-spacing: 0.3px;
}

.form-control {
    width: 100%;
    padding: 16px 20px;
    background-color: rgba(255,255,255,0.07);
    border: 1px solid rgba(255,255,255,0.15);
    border-radius: 24px;
    color: white;
    font-size: 1rem;
    transition: all 0.2s;
    font-family: 'Poppins', sans-serif;
}

.form-control:focus {
    outline: none;
    border-color: #ffffff;
    background-color: rgba(255,255,255,0.12);
    box-shadow: 0 0 0 4px rgba(255,255,255,0.15);
}

.error-message {
    display: flex;
    align-items: center;
    gap: 8px;
    background-color: rgba(30,30,35,0.95);
    backdrop-filter: blur(4px);
    border-radius: 12px;
    padding: 10px 16px;
    margin-top: 8px;
    color: #ffffff;
    font-size: 0.9rem;
    box-shadow: 0 4px 12px rgba(0,0,0,0.3);
}
.error-message .material-symbols-outlined {
    font-size: 20px;
    color: #ffffff;
}

.checkbox-group {
    margin-bottom: 24px;
}

.checkbox-group label {
    display: flex;
    align-items: center;
    gap: 12px;
    cursor: pointer;
    font-weight: 400;
    color: #CCCCCC;
}

.checkbox-group input[type="checkbox"] {
    position: absolute;
    opacity: 0;
    width: 0;
    height: 0;
}

.custom-checkbox {
    display: inline-block;
    width: 24px;
    height: 24px;
    background-color: transparent;
    border: 2px solid rgba(255,255,255,0.3);
    border-radius: 6px;
    position: relative;
    transition: all 0.2s;
    flex-shrink: 0;
}

.checkbox-group input[type="checkbox"]:checked + .custom-checkbox {
    background-color: #ffffff;
    border-color: #ffffff;
}

.checkbox-group input[type="checkbox"]:checked + .custom-checkbox::after {
    content: '';
    position: absolute;
    left: 7px;
    top: 3px;
    width: 6px;
    height: 12px;
    border: solid #0A0C11;
    border-width: 0 2px 2px 0;
    transform: rotate(45deg);
}

.checkbox-group input[type="checkbox"]:focus + .custom-checkbox {
    box-shadow: 0 0 0 4px rgba(255,255,255,0.15);
    border-color: #ffffff;
}

.checkbox-group a {
    color: #ffffff;
    text-decoration: underline;
}

.checkbox-group a:hover {
    color: #cccccc;
}

button[type="submit"] {
    width: 100%;
    padding: 16px 24px;
    background: transparent;
    color: #ffffff;
    border: 1px solid rgba(255,255,255,0.2);
    border-radius: 40px;
    font-size: 1.1rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: none;
}

button[type="submit"]:hover {
    background-color: rgba(255,255,255,0.1);
    border-color: #ffffff;
    transform: scale(1.02);
    box-shadow: 0 0 15px rgba(255,255,255,0.3);
}

.star-rating {
    display: flex;
    gap: 8px;
    margin-top: 8px;
}

.star-rating .star {
    font-family: 'Material Symbols Outlined';
    font-size: 36px;
    color: white;
    cursor: pointer;
    transition: transform 0.2s, filter 0.2s;
    user-select: none;
}

.star-rating .star:hover {
    transform: scale(1.1);
    filter: brightness(1.2);
}

.star-rating .star.filled {
    font-variation-settings: 'FILL' 1, 'wght' 400, 'GRAD' 0, 'opsz' 24;
}

.star-rating .star.empty {
    font-variation-settings: 'FILL' 0, 'wght' 400, 'GRAD' 0, 'opsz' 24;
}

textarea.form-control {
    resize: none;
    overflow: hidden;
    min-height: 120px;
}

.reviews-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 32px;
    margin-bottom: 60px;
}

.review-card {
    background-color: rgba(34,34,34,0.6);
    backdrop-filter: blur(8px);
    border-radius: 28px;
    padding: 28px;
    border: 1px solid rgba(255,255,255,0.05);
    box-shadow: 0 8px 20px rgba(0,0,0,0.3);
    transition: all 0.3s ease;
    animation: softGlow 4s infinite ease-in-out;
}

.review-card:hover {
    animation-play-state: paused;
    transform: translateY(-4px);
    background-color: rgba(40,40,45,0.9);
    border-color: rgba(255,255,255,0.2);
    box-shadow: 0 12px 28px rgba(0,0,0,0.4);
}

.review-rating {
    font-size: 3rem;
    color: #ffffff;
    margin-bottom: 12px;
}

.review-date {
    color: #9E9E9E;
    font-size: 0.9rem;
    margin-bottom: 12px;
}

.review-text {
    margin-bottom: 16px;
    color: #dddddd;
    line-height: 1.6;
}

.review-author {
    font-weight: 600;
    color: #ffffff;
}

.faq-grid {
    display: flex;
    flex-direction: column;
    gap: 24px;
    max-width: 900px;
    margin: 0 auto;
}

.faq-card {
    background-color: rgba(34,34,34,0.6);
    backdrop-filter: blur(8px);
    border-radius: 28px;
    padding: 32px 32px;
    border: 1px solid rgba(255,255,255,0.05);
    box-shadow: 0 8px 20px rgba(0,0,0,0.3);
    transition: all 0.3s ease;
    animation: softGlow 4s infinite ease-in-out;
}

.faq-card:nth-child(1) { animation-delay: 0s; }
.faq-card:nth-child(2) { animation-delay: 0.5s; }
.faq-card:nth-child(3) { animation-delay: 1s; }
.faq-card:nth-child(4) { animation-delay: 1.5s; }
.faq-card:nth-child(5) { animation-delay: 0.2s; }
.faq-card:nth-child(6) { animation-delay: 0.7s; }
.faq-card:nth-child(7) { animation-delay: 1.2s; }
.faq-card:nth-child(8) { animation-delay: 1.7s; }

.faq-card:hover {
    animation-play-state: paused;
    transform: translateY(-4px);
    background-color: rgba(40,40,45,0.9);
    border-color: rgba(255,255,255,0.2);
    box-shadow: 0 16px 32px rgba(0,0,0,0.4);
}

.faq-question {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 16px;
}

.faq-question .material-symbols-outlined {
    font-size: 32px;
    color: #ffffff;
}

.faq-question h3 {
    font-size: 1.5rem;
    font-weight: 600;
    letter-spacing: -0.3px;
    color: #ffffff;
}

.faq-answer {
    color: #B0B3B8;
    font-size: 1.1rem;
    line-height: 1.7;
    padding-left: 48px;
}

.faq-answer p {
    margin-bottom: 16px;
}

.faq-answer p:last-child {
    margin-bottom: 0;
}

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

.faq-item {
    background-color: rgba(34,34,34,0.6);
    backdrop-filter: blur(8px);
    border-radius: 24px;
    padding: 28px;
    margin-bottom: 24px;
    border: 1px solid rgba(255,255,255,0.05);
    box-shadow: 0 8px 20px rgba(0,0,0,0.3);
    transition: all 0.3s ease;
}

.faq-item:hover {
    transform: translateY(-4px);
    background-color: rgba(40,40,45,0.9);
    border-color: rgba(255,255,255,0.2);
    box-shadow: 0 12px 28px rgba(0,0,0,0.4);
}

.faq-item h3 {
    color: #ffffff;
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 16px;
    letter-spacing: -0.3px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.faq-item p {
    color: #dddddd;
    line-height: 1.6;
    margin-bottom: 0;
}

.policy-grid {
    display: flex;
    flex-direction: column;
    gap: 24px;
    max-width: 900px;
    margin: 0 auto;
}

.policy-card {
    background-color: rgba(34,34,34,0.6);
    backdrop-filter: blur(8px);
    border-radius: 28px;
    padding: 32px 32px;
    border: 1px solid rgba(255,255,255,0.05);
    box-shadow: 0 8px 20px rgba(0,0,0,0.3);
    transition: all 0.3s ease;
    animation: softGlow 4s infinite ease-in-out;
}

.policy-card:nth-child(1) { animation-delay: 0s; }
.policy-card:nth-child(2) { animation-delay: 0.5s; }
.policy-card:nth-child(3) { animation-delay: 1s; }
.policy-card:nth-child(4) { animation-delay: 1.5s; }
.policy-card:nth-child(5) { animation-delay: 0.2s; }
.policy-card:nth-child(6) { animation-delay: 0.7s; }
.policy-card:nth-child(7) { animation-delay: 1.2s; }
.policy-card:nth-child(8) { animation-delay: 1.7s; }
.policy-card:nth-child(9) { animation-delay: 2.2s; }
.policy-card:nth-child(10) { animation-delay: 2.7s; }

.policy-card:hover {
    animation-play-state: paused;
    transform: translateY(-4px);
    background-color: rgba(40,40,45,0.9);
    border-color: rgba(255,255,255,0.2);
    box-shadow: 0 16px 32px rgba(0,0,0,0.4);
}

.policy-question {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 16px;
}

.policy-question .material-symbols-outlined {
    font-size: 32px;
    color: #ffffff;
}

.policy-question h3 {
    font-size: 1.5rem;
    font-weight: 600;
    letter-spacing: -0.3px;
    color: #ffffff;
}

.policy-answer {
    color: #B0B3B8;
    font-size: 1.1rem;
    line-height: 1.7;
    padding-left: 48px;
}

.policy-answer p {
    margin-bottom: 16px;
}

.policy-answer p:last-child {
    margin-bottom: 0;
}

.policy-answer ul {
    list-style-type: disc;
    margin-left: 24px;
    margin-bottom: 16px;
}

.policy-answer li {
    margin-bottom: 8px;
}

.policy-answer a {
    color: #ffffff;
    text-decoration: underline;
    transition: opacity 0.2s;
}

.policy-answer a:hover {
    opacity: 0.8;
    text-decoration: none;
}

footer {
    padding: 48px 0 24px;
    text-align: center;
    border-top: 1px solid rgba(255,255,255,0.08);
}

.footer-links {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 28px;
    margin-bottom: 24px;
}

.footer-links a {
    color: #B0B3B8;
    text-decoration: none;
    transition: color 0.2s;
    font-weight: 500;
}

.footer-links a:hover {
    color: #ffffff;
}

.copyright {
    color: #757575;
    font-size: 0.9rem;
}

@media (max-width: 768px) {
    header {
        padding: 3px 0 0 0;
    }
    .header-container {
        flex-direction: row;
        flex-wrap: wrap;
        justify-content: space-between;
        align-items: center;
        gap: 8px;
    }
    a.logo {
        gap: 6px;
        align-items: center;
    }
    .logo img {
        height: 55px;
    }
    .logo-text h1 {
        font-size: 1.7rem;
    }
    .logo-tagline {
        font-size: 0.95rem;
        margin-top: 2px;
    }
    .desktop-nav {
        display: none;
    }
    .mobile-menu-toggle {
        display: flex;
        margin: 0;
        transform: none;
        align-self: center;
    }
    .mobile-nav {
        width: 100%;
        order: 2;
        margin-top: 0;
        background: transparent !important;
        backdrop-filter: none !important;
    }
    .mobile-nav.open {
        margin-top: 10px;
    }
    .mobile-nav ul {
        gap: 8px;
        padding: 15px 0;
    }
    .mobile-nav a {
        padding: 6px 12px;
        font-size: 0.9rem;
    }
    .hero h1, .hero h2 {
        font-size: 2rem;
        word-break: break-word;
    }
    .hero h2 {
        margin-bottom: 16px;
    }
    .section-title {
        font-size: 2.2rem;
    }
    .hero-info {
        padding: 15px 0 0 0;
    }
    .policy-question h3 {
        font-size: 1.3rem;
    }
    .policy-answer {
        padding-left: 0;
        font-size: 1rem;
    }
}

@media (min-width: 769px) {
    .mobile-menu-toggle, .mobile-nav {
        display: none;
    }
}
