/* Fonts */

@font-face {
    font-family: 'EuropeExt-normal';
    src: url('./public/fonts/europeextnormal.woff2') format('woff2'),
        url('./public/fonts/europeextnormal.woff') format('woff'),
        url('./public/fonts/europeextnormal.ttf') format('truetype');
}

@font-face {
    font-family: 'EuropeExt-bold';
    src: url('./public/fonts/europeextbold.woff2') format('woff2'),
        url('./public/fonts/europeextbold.woff') format('woff'),
        url('./public/fonts/europeextbold.ttf') format('truetype');
}

@font-face {
    font-family: 'CenturyGothic-normal';
    src: url('./public/fonts/centurygothic.woff2') format('woff2'),
        url('./public/fonts/centurygothic.woff') format('woff'),
        url('./public/fonts/centurygothic.ttf') format('truetype');
}

@font-face {
    font-family: 'CenturyGothic-bold';
    src: url('./public/fonts/centurygothic_bold.woff2') format('woff2'),
        url('./public/fonts/centurygothic_bold.woff') format('woff'),
        url('./public/fonts/centurygothic_bold.ttf') format('truetype');
}

.europeextnormal {
    font-family: 'EuropeExt-normal';
}

.europeextbold {
    font-family: 'EuropeExt-bold';
}

.centurygothicnormal {
    font-family: 'CenturyGothic-normal';
}

.centurygothicbold {
    font-family: 'CenturyGothic-bold';
}

.lh-0 {
    line-height: 0;
}

:root {
    --primary-bg: #001f3f;
    --accent-blue: #004080;
    --text-color: #ffffff;
    --btn-border: #ffffff;
}

body {
    font-family: 'Montserrat', sans-serif;
    color: var(--text-color);
    background: rgb(2, 46, 69);
    min-height: 100vh;
    overflow-x: hidden;
    position: relative;
}

/* Backgrounds */
.global-bg-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    z-index: -10;
}

.bg-layer {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.layer-default {
    background-image: url('./public/hero-background.webp');
    z-index: 1;
}

.layer-second {
    background-image: url('./public/product-background.webp');
    z-index: 2;
    opacity: 0;
}

/* Navbar Styling */
.navbar {
    position: fixed;
    padding-top: 1.5rem;
    padding-bottom: 1.5rem;
    background-color: rgba(17, 33, 53, 0.4);
    z-index: 9999;
}

.navbar-brand {
    display: flex;
    align-items: center;
    color: white;
    font-size: 1.2rem;
}

.navbar-brand .logo-icon {
    height: 40px;
}

.navbar-spacer {
    min-height: calc(40px + 2.5rem);
    width: 100%;
}

.phone-number {
    color: white;
    text-decoration: none;
    font-size: 0.9rem;
}

/* Hero Section */
.hero-section {
    padding-bottom: 5rem;
    background: transparent;
    position: relative;
    z-index: 1;
}

/* Icons Feature Grid */
.feature-item {
    margin-bottom: 1.5rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    position: relative;
    left: -4%;
}

.feature-grid {
    width: 75%;
}

.feature-icon {
    height: 80px;
    width: 80px;
    margin-bottom: 15px;
}

.feature-text {
    text-align: center;
    font-size: 1.2rem;
}

/* Buttons */

.btn-custom-primary {
    background-color: white;
    color: black;
    border: none;
    padding: 12px 30px;
    font-weight: 600;
    border-radius: 0;
    font-size: 1.2rem;
    transition: all 0.3s;
}

.btn-custom-primary:hover {
    background-color: #e6e6e6;
    color: black;
}

.btn-custom-outline {
    background-color: transparent;
    color: white;
    border: 3px solid white;
    padding: 10px 30px;
    font-weight: 400;
    border-radius: 0;
    font-size: 1.2rem;
    transition: all 0.3s;
}

.btn-custom-outline:hover {
    background-color: #f8f8f8;
    color: black;
}

/* Hero Image (Tooth) */
.hero-image-container {
    position: relative;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-img {
    max-width: 35vw;
    object-fit: contain;
    margin-left: 2rem;
}

/* --- Benefits Section Styles --- */
.benefits-section {
    position: relative;
    z-index: 2;
    will-change: clip-path;
    clip-path: circle(0% at 50% 100%);

    background-color: #ffffff;
    color: black;
    padding: 5rem 0;
}

.benefit-item {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    height: 80%;
}

.benefit-icon-wrapper {
    width: 120px;
    min-height: 120px;
    margin-bottom: 1.5rem;
}

.benefit-icon {
    width: 100%;
    height: 100%;
}

.benefit-title {
    color: black;
    font-size: 1.2rem;
    width: 85%;
}

/* --- Promo/Offer Section Styles --- */
.promo-section {
    background: transparent;
    position: relative;
    z-index: 1;
    text-align: center;
}

.promo-title {
    font-weight: 700;
    margin-bottom: 1.5rem;
}

.promo-icons-row {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    max-width: 70%;
}

.promo-item {
    margin-bottom: 1.5rem;
}

.promo-icon {
    height: 80px;
    width: 80px;
    margin-bottom: 15px;
}

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

/* --- Craft Section Styles --- */
.craft-section {
    background: transparent;
    position: relative;
    z-index: 1;
    color: white;
    padding: 6rem 0;
    position: relative;
    overflow: hidden;
    height: 100vh;
}

.craft-img-composition {
    position: relative;
    height: 100%;
    min-height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.craft-tooth {
    width: 60vh;
    height: auto;
    position: absolute;
    padding-top: 20vh;
    z-index: 1;
}

.craft-wand {
    position: absolute;
    top: -40vh;
    left: 50%;
    width: 35vh;
    z-index: 2;
    pointer-events: none;
}

.craft-title {
    margin-bottom: 1rem;
}

.craft-subtitle {
    margin-bottom: 2rem;
}

.craft-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.craft-list li {
    position: relative;
    padding-left: 30px;
    margin-bottom: 1.5rem;
}

.craft-list li::before {
    content: "•";
    position: absolute;
    left: 0;
    color: white;
    font-size: 1.2rem;
    top: 1px;
}

.highlight-bold {
    font-weight: 700;
    color: white;
}

/* --- Products/Catalog Section --- */
.products-section {
    background: transparent;
    position: relative;
    z-index: 1;
    padding: 5rem 0;
    color: white;
}

.section-title-centered {
    text-align: center;
    font-weight: 700;
    margin-bottom: 3rem;
}

.product-card {
    background-color: #000;
    border-radius: 10px;
    overflow: hidden;
    position: relative;
    height: 250px;
    transition: transform 0.3s ease;
}

.product-card::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 156, 255, 0.4);
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: 1;
}

.product-card:hover::after {
    opacity: 1;
}

.product-card.card-blue {
    background-color: #005689;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 1.5rem;
}

.product-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: opacity 0.3s;
}

.product-caption {
    position: absolute;
    z-index: 3;
    bottom: 0;
    left: 5%;
    width: 90%;
    padding: 15px;
    text-align: center;
    font-size: 0.9rem;
    font-weight: 500;
    color: white;
    transition: 0.3s ease;
}

.product-details {
    position: absolute;
    z-index: 3;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 15px;
    text-align: center;
    color: white;
    pointer-events: none;
    display: flex;
    transition: 0.3s ease;
    justify-content: center;
    gap: 0.75rem;
    opacity: 0;
}

.product-details .price {
    font-weight: 700;
}

.product-card:hover .product-details {
    transform: translateY(0.2rem);
    opacity: 1;
}

.product-card:hover .product-caption {
    transform: translateY(-1.2rem);
}

.price-info-block {
    background-color: rgba(22, 31, 48, 0.4);
    border-radius: 10px;
    padding: 2rem;
    margin-top: 4rem;
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
}

.info-check-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 1rem;
    color: white;
    width: 75%;
}

.info-check-icon {
    margin-right: 15px;
    color: white;
    font-size: 1.2rem;
    margin-top: 2px;
}

/* --- Steps/Flow Section --- */
.steps-section {
    background: transparent;
    position: relative;
    z-index: 1;
    color: white;
}

.steps-content-col {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 5rem;
}

.steps-content-wrapper {
    max-width: 500px;
    margin: 0 auto;
}

.steps-title {
    font-weight: 700;
    text-transform: uppercase;
    line-height: 1.2;
    margin-bottom: 1rem;
}

.step-item {
    align-items: center;
    margin-top: 4rem;
}

.step-circle {
    width: 120px;
    height: 120px;
    border: 1px solid white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 300;
    margin-bottom: 10px;
    margin-right: 1rem;
}

.step-img {
    opacity: 0;
    height: 100px;
    position: absolute;
    width: 50%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.step-number {
    opacity: 0;
    position: absolute;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.step-number div {
    line-height: 0.5;
}

.step-arrow {
    padding-top: 1rem;
}

@keyframes bounce {

    0%,
    20%,
    50%,
    80%,
    100% {
        transform: translateY(0);
    }

    40% {
        transform: translateY(5px);
    }

    60% {
        transform: translateY(3px);
    }
}

.step-text {
    opacity: 0;
    color: white;
    position: absolute;
    margin-left: calc(120px + 1.5rem);
    width: 80%;
}

.steps-image-container {
    height: 100%;
    min-height: 400px;
}

/* --- Online Support Section --- */
.support-section {
    background-color: white;
    z-index: 7;
    color: black;
    padding: 7rem 0;
    position: relative;
    overflow: hidden;
}

.support-title {
    font-weight: 700;
    text-transform: uppercase;
    line-height: 1.2;
    margin-bottom: 1rem;
    color: black;
}

.support-subtitle {
    font-size: 1.2rem;
    font-weight: 700;
    color: black;
    margin-bottom: 1.5rem;
}

.support-desc {
    font-size: 0.95rem;
    line-height: 1.6;
    color: black;
    margin-bottom: 2.5rem;
    max-width: 90%;
}

.support-subheader {
    font-weight: 700;
    text-transform: uppercase;
    color: black;
    margin-bottom: 1.5rem;
}

/* Custom Accordion */
.accordion-custom .accordion-item {
    border-radius: 10px;
    margin-bottom: 1rem;
    overflow: hidden;
}

.accordion-custom .accordion-button {
    background-color: #115c82;
    color: white;
    font-weight: 600;
    font-size: 1.2rem;
    padding: 1.2rem 1.5rem;
    box-shadow: none;
    gap: 20px;
    transition: background-color 0.3s ease;
    border: none;
    box-shadow: none
}

.accordion-custom .accordion-button:not(.collapsed),
.accordion-custom .accordion-button[aria-expanded="true"] {
    background-color: #01344e;
    color: white;
    border: none;
    box-shadow: none
}

.accordion-custom .accordion-button:focus {
    border-color: transparent;
    box-shadow: none;
    background-color: #01344e;
    color: white;
    border: none;
    box-shadow: none
}

/* Настройка стрелки */
.accordion-custom .accordion-button::after {
    background-image: url("./public/accordion-button.svg");
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    width: 1.25rem;
    height: 1.25rem;
    transform: scale(1.2) rotate(0deg);
    transition: transform 0.3s ease-in-out;
    flex-shrink: 0;
}

.accordion-custom .accordion-button:not(.collapsed)::after,
.accordion-custom .accordion-button[aria-expanded="true"]::after {
    transform: rotate(-90deg) scale(1.2) !important;
}

.accordion-custom .accordion-body {
    background-color: #01344e;
    color: white;
    font-size: 1rem;
    line-height: 1.5;
    padding: 0 1.5rem 1.5rem 1.5rem;
}

.accordion-locked {
    pointer-events: none;
}

/* Image breaking out of container */
.hand-phone-img-wrapper {
    height: 100%;
    position: relative;
    left: -5%;
    top: 7rem;
    display: flex;
    align-items: flex-end;
    justify-content: flex-start;
}

.hand-phone-img {
    width: 90%;
    position: absolute;
    height: auto;
    top: 0;
}

/* --- Map Section --- */
.map-section {
    z-index: 8;
    background-image: url("./public/map-background.webp");
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    color: white;
    padding: 6rem 0;
    position: relative;
    overflow: hidden;
}

.map-content {
    position: relative;
    z-index: 2;
}

.map-title {
    font-weight: 700;
    text-transform: uppercase;
    line-height: 1.2;
    margin-bottom: 2rem;
}

.map-list {
    list-style: none;
    padding: 0;
}

.map-list li {
    position: relative;
    padding-left: 1.5rem;
    margin-bottom: 1rem;
    font-size: 1.1rem;
    font-weight: 300;
    color: #dceeff;
}

.map-list li::before {
    content: "•";
    position: absolute;
    left: 0;
    color: white;
    font-size: 1.1rem;
}

/* --- Reviews Section --- */
.reviews-section {
    z-index: 9;
    margin-bottom: -200px;
    background: url("./public/review-background.webp");
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    color: white;
    padding: 6rem 0;
    position: relative;
}

.reviews-title {
    font-weight: 700;
    text-transform: uppercase;
    text-align: center;
    margin-bottom: 3rem;
}

.review-card {
    background-color: white;
    color: #001f3f;
    border-radius: 15px;
    padding: 2.5rem;
    height: 100%;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.review-author {
    font-size: 1.2rem;
    color: black;
}

.review-clinic {
    font-size: 1.2rem;
    margin-bottom: 1rem;
    color: black;
}

.review-text {
    font-size: 1rem;
    line-height: 1.6;
    font-weight: 400;
    color: #333;
}

/* --- Slider Wrapper --- */
.reviews-slider-wrapper {
    position: relative;
    padding: 0 60px;
    width: 85%;
}

/* Swiper Customization */
.custom-nav-btn {
    color: white;
    padding-bottom: 5rem;
}

.custom-nav-btn::after {
    font-size: 1.2rem;
    font-weight: bold;
}

.swiper-button-prev {
    left: 0;
}

.swiper-button-next {
    right: 0;
}

/* --- Pagination Dots --- */
.swiper-pagination {
    position: relative;
    margin-top: 2rem;
    bottom: 0 !important;
}

.swiper-pagination-bullet {
    width: 12px;
    height: 12px;
    background: #00aaff;
    opacity: 1;
    margin: 0 6px !important;
    transition: transform 0.2s;
}

.swiper-pagination-bullet-active {
    background: #ffffff;
    transform: scale(1.2);
}

.reviews-footer-text {
    text-align: center;
    margin-top: 3rem;
    text-transform: uppercase;
    color: white;
}

/* --- CTA Section --- */
.cta-section {
    z-index: 8;
    background: url("./public/cta-background.webp");
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    color: white;
    padding-top: 6rem;
    padding-bottom: 0;
    position: relative;
    overflow: hidden;
    text-align: center;
}

.cta-wrapper {
    position: relative;
    top: 20%;
}

.cta-title {
    font-weight: 700;
    text-transform: uppercase;
    line-height: 1;
}

.cta-tooth-wrapper {
    margin-top: 4rem;
    display: flex;
    justify-content: center;
}

.cta-tooth-img {
    width: 70vh;
    height: auto;
    display: block;
}

.footer-section {
    position: relative;
    top: 200px;
    background-color: #020b14;
    background-image: url('./public/footer-background.webp');
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    color: #ffffff;
    font-size: 0.9rem;
    position: relative;
}

.footer-overlay {
    padding: 60px 0;
}

.footer-logo img {
    width: 60%;
    margin-bottom: 10px;
}

.logo-text {
    font-size: 1.5rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin: 0;
    line-height: 1;
}

.logo-subtext {
    font-size: 0.6rem;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: #aaa;
}

.footer-links a {
    color: #e0e0e0;
    text-decoration: none;
    display: block;
    margin-bottom: 12px;
    transition: color 0.3s;
}

.footer-links a:hover {
    color: #fff;
    text-decoration: underline;
}

.contact-info p {
    margin-bottom: 8px;
    color: #d1d1d1;
}

.contact-phone {
    font-size: 1.1rem;
    color: #fff !important;
}

.policy-link {
    font-weight: 700;
    color: #fff;
    text-decoration: none;
    display: inline-block;
    margin-top: 10px;
}

.social-icons {
    margin-top: 20px;
}

.social-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 45px;
    height: 45px;
    margin: 0 8px;
    text-decoration: none;
    font-size: 1.2rem;
    transition: opacity 0.3s;
}

.social-btn img {
    width: 100%;
}

.social-btn:hover {
    opacity: 0.8;
    color: #000;
}

/* Mobile adjustments */
@media (max-width: 992px) {
    .reviews-slider-wrapper {
        padding: 0;
        width: 100%;
    }

    .custom-nav-btn {
        display: none
    }

    h1 {
        font-size: calc(0.95rem + 2.75vw) !important;
    }

    .fs-1 {
        font-size: calc(0.95rem + 3.5vw) !important;
    }

    .fs-3 {
        font-size: calc(0.75rem + 2.75vw) !important;
    }

    .fs-5 {
        font-size: calc(0.75rem + 2.75vw) !important;
    }

    p {
        font-size: calc(0.5rem + 1.5vw) !important;
    }

    a {
        font-size: calc(0.5rem + 1.5vw) !important;
    }

    li {
        font-size: calc(0.5rem + 1.5vw) !important;
    }

    .feature-item {
        left: 0%;
    }

    .feature-grid {
        width: 100%;
    }

    .hero-img {
        max-width: 60vw;
    }

    .benefit-title {
        width: 100%;
    }

    .hero-section {
        justify-content: flex-start !important;
        align-items: flex-start !important;
        padding-top: 8rem;
    }

    .craft-section {
        height: auto;
        justify-content: flex-start !important;
        align-items: flex-start !important;
    }

    .benefits-section {
        justify-content: flex-start !important;
        align-items: flex-start !important;
        padding-top: 8rem;
    }

    .craft-wand {
        position: absolute;
        top: -45%;
        left: 45%;
        width: 70%;
        z-index: 2;
        pointer-events: none;
    }

    .craft-tooth {
        width: 90%;
        height: auto;
        position: relative;
        padding-top: 20%;
        z-index: 1;
    }

    .craft-list li::before {
        content: "";
    }

    .craft-list li {
        position: relative;
        padding-left: 0;
    }

    .promo-section .btn {
        width: 100%;
    }

    .price-info-block {
        flex-direction: column;
    }

    .price-info-block .btn {
        margin-top: 1.2rem;
    }

    .info-check-item {
        width: 100%;
    }

    .product-card {
        height: 250px;
        border-radius: 20px;
        box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
        margin-bottom: 0;
        display: flex;
        flex-direction: column;
        justify-content: center;
    }

    .product-img {
        position: absolute;
    }

    .product-card::after {
        background: linear-gradient(to bottom, rgba(0, 0, 0, 0.2) 0%, rgba(0, 0, 0, 0.8) 100%);
        opacity: 1 !important;
    }

    .card-content {
        justify-content: flex-end;
        padding-bottom: 30px;
    }

    .product-caption {
        position: relative;
        font-size: 1.2rem;
        padding: 0px;
        transform: none !important;
    }

    .product-details {
        position: relative;
        opacity: 1 !important;
        padding: 0px;
        padding-top: 10px;
        transform: none !important;
        flex-wrap: wrap;
    }

    .step-item {
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        margin-top: 1.5rem;
    }

    .step-circle {
        margin-right: 0;
    }

    .map-list li::before {
        content: "";
    }

    .map-list li {
        position: relative;
        padding-left: 0;
    }

    .support-subheader {
        z-index: 5;
    }

    .accordion-custom {
        z-index: 5;
        width: 100%;
    }

    .hand-phone-img-wrapper {
        margin-bottom: -6rem;
        top: 0;
    }

    .hand-phone-img {
        width: 80%;
        height: auto;
    }

    .cta-tooth-img {
        width: 120vw;
    }

    .accordion-custom .accordion-button {
        display: flex;
        flex-direction: column-reverse;
        justify-content: center;
        align-items: center;
    }

    .accordion-custom .accordion-button::after {
        transform: scale(1.6) rotate(0deg);
        margin-left: 0;
    }

    .accordion-custom .accordion-button:not(.collapsed)::after,
    .accordion-custom .accordion-button[aria-expanded="true"]::after {
        transform: rotate(-90deg) scale(1.6) !important;
    }

    .step-text {
        margin-left: 0;
        margin-top: calc(120px + 8rem);
        display: flex;
        flex-direction: column;
        width: 80vw;
    }
}

/* Modal Styles */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 10000;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

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

.modal-container {
    background: #f4f6f9;
    padding: 3rem 4rem;
    border-radius: 20px;
    width: 90%;
    min-height: 60vh;
    max-width: 75vw;
    position: relative;
    text-align: center;
    color: #001f3f;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
    transform: translateY(20px);
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.modal-overlay.active .modal-container {
    transform: translateY(0);
}

.modal-close-btn {
    position: absolute;
    top: 20px;
    right: 30px;
    background: transparent;
    border: none;
    font-size: 1.5rem;
    cursor: pointer;
    color: #001f3f;
    transition: transform 0.2s;
}

.modal-close-btn:hover {
    transform: scale(1.1);
}

.modal-title {
    margin-bottom: 0.5rem;
    text-transform: uppercase;
    font-weight: 700;
    color: #001f3f;
}

.modal-subtitle {
    font-size: 1.2rem;
    margin-bottom: 2.5rem;
    font-weight: 400;
    letter-spacing: 1px;
    color: #001f3f;
}

.modal-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.modal-row {
    display: flex;
    gap: 1.5rem;
    justify-content: space-between;
}

.modal-input {
    flex: 1;
    padding: 10px 15px;
    border: 1px solid #dcdcdc;
    border-radius: 0;
    background: white;
    font-size: 1.1rem;
    outline: none;
    color: #333;
}

.modal-input::placeholder,
.modal-textarea::placeholder {
    color: #888;
}

.modal-textarea {
    width: 100%;
    height: 120px;
    padding: 15px;
    border: 1px solid #dcdcdc;
    border-radius: 0;
    background: white;
    font-size: 1rem;
    outline: none;
    resize: none;
    color: #333;
}

.modal-footer {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-top: 1rem;
}

.policy-text {
    font-size: 0.9rem;
    color: #555;
    margin-bottom: 1.5rem;
}

.policy-link-dark {
    color: #001f3f;
    text-decoration: none;
    font-weight: 700;
}

.modal-submit-btn {
    border: 2px solid #001f3f;
    color: #001f3f !important;
    padding: 10px 50px;
    font-weight: 600;
    text-transform: none;
    background: transparent;
}

.modal-submit-btn:hover {
    background: #001f3f;
    color: white !important;
}

@media (max-width: 992px) {
    .modal-container {
        padding: 2rem;
        width: 95%;
    }

    .modal-row {
        flex-direction: column;
        gap: 1rem;
    }

    .modal-title {
        font-size: 1.5rem;
    }

    .modal-subtitle {
        font-size: 0.9rem;
    }
}

/* Menu Styles */
.navbar.menu-open {
    background-color: #112135 !important;
    transition: background-color 0.3s ease;
}

.menu-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 9998;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.menu-overlay.active {
    opacity: 1;
    visibility: visible;
}

.interaction-menu {
    position: fixed;
    top: 0;
    left: 0;
    width: 50%;
    height: 100%;
    background: #112135;
    z-index: 9998;
    transform: translateX(-100%);
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    overflow-y: auto;
    box-shadow: 5px 0 30px rgba(0, 0, 0, 0.5);
}

.interaction-menu.active {
    transform: translateX(0);
}

.menu-wrapper {
    max-width: 600px;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.menu-logo-container {
    display: flex;
    align-items: center;
    gap: 10px;
}

.menu-logo {
    height: 40px;
}

.menu-close-btn {
    background: none;
    border: none;
    color: white;
    font-size: 2rem;
    cursor: pointer;
}

.menu-nav-list {
    display: flex;
    flex-direction: column;
    padding: 0 1.5rem;
    gap: 0;
}

.menu-item {
    width: 100%;
    color: white;
    text-decoration: none;
    font-size: 1.4rem !important;
    text-transform: uppercase;
    padding: 1rem 0;
    border-bottom: 1px solid #273a4e;
    display: block;
    text-align: left;
}

.menu-item:hover {
    text-shadow: 0 0 15px rgba(0, 160, 240, 0.75);
}

.menu-accordion-header {
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    border-bottom: 1px solid #273a4e;
    position: relative;
    border-bottom: none;
}

.menu-toggle-sign {
    color: white;
    font-size: 2.2rem;
    position: absolute;
    right: 0;
    font-weight: 300;
}

.menu-accordion-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease;
}

.menu-subitem {
    color: #d0d0d0;
    text-decoration: none;
    display: block;
    padding: 10px 0;
    text-align: left;
    font-size: 1.1rem !important;
    transition: color 0.3s;
    position: relative;
}

.menu-subitem::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0%;
    transform: translateX(-50%);
    width: 180%;
    height: 1px;
    background-color: #273a4e;
}

.menu-subitem:last-child::after {
    display: none;
}

.menu-subitem:hover {
    color: white;
}

.menu-socials {
    margin-top: auto;
    padding: 2rem 1rem;
}

.menu-socials .social-btn {
    margin: 0 10px;
    width: 52px;
    height: 52px;
}

/* Mobile adjustments */
@media (max-width: 992px) {
    .interaction-menu {
        width: 100%;
        align-items: center;
    }

    .menu-wrapper {
        width: 100%;
    }

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

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

    .menu-accordion-header {
        justify-content: center;
        align-items: center;
    }

    .menu-subitem::after {
        content: "";
        position: absolute;
        bottom: 0;
        left: 50%;
        transform: translateX(-50%);
        width: 90%;
        height: 1px;
        background-color: #273a4e;
    }

    .navbar.menu-open {
        background-color: #0b1527 !important;
        transition: background-color 0.3s ease;
    }

    .menu-socials {
        margin-top: auto;
        display: flex;
        justify-content: center;
        padding: 2rem 0;
    }
}

.menu-close-icon {
    width: 25px;
    height: 25px;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 6px;
}

::-webkit-scrollbar-track {
    background: #0b1527;
}

::-webkit-scrollbar-thumb {
    background: #115c82;
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: #0080c0;
}

/* --- Services Page Styles --- */
.services-hero {
    min-height: 80vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding-top: 100px;
}

.services-title-main {
    font-weight: 700;
    text-transform: uppercase;
    margin-bottom: 3rem;
    line-height: 1.2;
}

.services-icons-row {
    display: flex;
    justify-content: center;
    gap: 4rem;
    flex-wrap: wrap;
    margin-bottom: 4rem;
}

.service-icon-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 150px;
}

.service-icon-img {
    height: 80px;
    width: auto;
    margin-bottom: 1rem;
}

.service-icon-text {
    font-size: 0.9rem;
    color: #a0c0d0;
}

.info-block-container {
    background-color: #f8fbfe;
    border-radius: 20px;
    padding: 3rem;
    margin: 4rem 0;
    color: #112135;
    text-align: center;
    line-height: 1.6;
}

.info-text-p {
    margin-bottom: 0;
}

.services-grid-title {
    text-align: center;
    color: #fff;
    font-size: 2.5rem;
    text-transform: uppercase;
    margin-bottom: 3rem;
}

.service-card-new {
    background-color: #f4f4f4;
    border-radius: 10px;
    overflow: hidden;
    color: #001f3f;
    display: flex;
    flex-direction: column;
    height: 100%;
    transition: transform 0.3s;
}

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

.service-card-img-wrapper {
    height: 250px;
    width: 100%;
    background-color: #000;
    display: flex;
    align-items: center;
    justify-content: center;
}

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

.service-card-body {
    padding: 1.5rem;
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.service-card-title {
    font-weight: 700;
    font-size: 1.2rem;
    margin-bottom: 1rem;
    text-transform: uppercase;
}

.service-card-desc {
    font-size: 0.85rem;
    margin-bottom: 1rem;
    color: #444;
    flex-grow: 1;
}

.service-card-price {
    font-weight: 700;
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
}

.service-card-discount {
    font-size: 0.8rem;
    color: #666;
    margin-bottom: 1.5rem;
}

.service-card-btns {
    width: 100%;
    display: flex;
    gap: 10px;
}

.btn-service-dark {
    flex: 1;
    background-color: #003a5d;
    color: white;
    border: none;
    padding: 8px 0;
    font-weight: 500;
    font-size: 0.9rem;
    transition: background 0.3s;
}

.btn-service-dark:hover {
    background-color: #005080;
    color: white;
}

.btn-service-outline {
    flex: 1;
    background-color: transparent;
    border: 2px solid #003a5d;
    color: #003a5d;
    padding: 8px 0;
    font-weight: 500;
    font-size: 0.9rem;
    transition: all 0.3s;
}

.btn-service-outline:hover {
    background-color: #003a5d;
    color: white;
}

/* FAQ Section */
.faq-section {
    padding: 4rem 0;
}

.faq-title {
    text-align: center;
    text-transform: uppercase;
    font-size: 2.2rem;
    margin-bottom: 3rem;
}

.faq-item {
    margin-bottom: 10px;
    border-radius: 10px;
    overflow: hidden;
    background-color: #003a5d;
}

.faq-accordion-header {
    background-color: #003a5d;
    color: white;
    padding: 1.5rem;
    cursor: pointer;
    font-weight: 600;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: background 0.3s;
}

.faq-accordion-header:hover {
    background-color: #004a75;
}

.faq-accordion-header::after {
    content: url('./public/accordion-button.svg');
    /* Reuse existing arrow */
    transform: rotate(0deg) scale(0.8);
    transition: transform 0.3s;
    filter: invert(1);
    width: 20px;
    height: 20px;
}

.faq-accordion-header.active::after {
    transform: rotate(-90deg) scale(0.8);
}

.faq-accordion-body {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out;
    background-color: #0b1527;
    color: #e0e0e0;
}

.faq-content {
    padding: 1.5rem;
    font-size: 0.95rem;
    line-height: 1.5;
}