/* Header Styles */
.site-header {
    background: #16171C;
    padding: 20px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
}

@media (max-width: 767px) {
    .site-header {
        padding: 8px 0;
    }
}

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

@media (max-width: 1365px) {
    .header-inner {
        gap: 15px;
    }
}

.header-logo a {
    display: inline-block;
    line-height: 0;
}

@media (max-width: 767px) {
   .header-inner {
        gap: 8px;
    }
}

.header-logo img {
    display: block;
    height: 30px;
    width: auto;
}

.desktop-nav {
    display: block;
    order: 3;
    width: 100%;
    overflow-x: auto;
    overflow-y: hidden;
    -webkit-overflow-scrolling: touch;
}

.desktop-nav::-webkit-scrollbar {
    height: 4px;
}

.desktop-nav::-webkit-scrollbar-track {
    background: rgba(255, 255, 255, 0.05);
}

.desktop-nav::-webkit-scrollbar-thumb {
    background: rgba(255, 255, 255, 0.2);
    border-radius: 2px;
}

@media (min-width: 1366px) {
    .desktop-nav {
        order: 0;
        width: auto;
        overflow: visible;
    }
}

.nav-menu {
    display: flex;
    gap: 20px;
    list-style: none;
    margin: 0;
    padding: 0;
    flex-wrap: nowrap;
    white-space: nowrap;
}

@media (max-width: 991px) {
    .nav-menu {
        gap: 12px;
        padding-bottom: 4px;
    }
}

@media (min-width: 1024px) and (max-width: 1365px) {
    .nav-menu {
        justify-self: center;
    }
}

.nav-menu .menu-item {
    border-radius: 10px;
    border: 1px solid #fff;
    padding: 4px 16px;
    transition: var(--transition);
    flex-shrink: 0;
}

@media (max-width: 991px) {
    .nav-menu .menu-item {
        padding: 4px 12px;
    }
}

.nav-menu .menu-item:hover {
    border-color: #fff;
    background: rgba(255, 255, 255, 0.4);
}

.nav-menu a {
    color: var(--light-text);
    font-size: 16px;
    transition: var(--transition);
    font-weight: 500;
}

@media (max-width: 767px) {
    .nav-menu a {
        font-size: 14px;
    }
}

.nav-menu a:hover {
    color: #fff;
    opacity: 1;
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 15px;
}

.lang-switcher {
    display: flex;
    gap: 12px;
    align-items: center;
}

.lang-btn {
    color: var(--light-text);
    font-size: 16px;
    font-weight: 500;
    text-transform: uppercase;
    opacity: 0.4;
    transition: var(--transition);
    position: relative;
    cursor: pointer;
    text-decoration: none;
}

.lang-btn.active {
    opacity: 1;
    text-decoration: underline;
}

.lang-btn:hover:not(.active) {
    opacity: 0.6;
}

.phone-dropdown-wrapper {
    position: relative;
}

.btn-call {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 8px 12px;
    background: #737477;
    border: 1px solid #fff;
    border-radius: 10px;
    color: var(--light-text);
    cursor: pointer;
    transition: var(--transition);
    font-family: 'Montserrat', sans-serif;
    font-size: 16px;
    font-weight: 500;
}

.btn-call:hover {
    background: rgba(255, 255, 255, 0.4);
}

.btn-call.active {
    background: rgba(255, 255, 255, 0.4);
}

.btn-call img {
    width: 20px;
    height: 20px;
}

.phone-dropdown {
    position: absolute;
    top: calc(100% + 8px);
    right: 0;
    min-width: 160px;
    background: #737477;
    border: 1px solid #fff;
    border-radius: 12px;
    padding: 8px 0;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: var(--transition);
    z-index: 100;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.phone-dropdown.active {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.phone-option {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 6px 0;
    color: var(--light-text);
    text-decoration: none;
    transition: var(--transition);
    font-size: 14px;
    font-weight: 500;
}

.phone-option:not(:last-child) {
    border-bottom: none;
}

.phone-option:hover {
    color: #fff;
}

.phone-option span {
    font-size: 14px;
    font-weight: 500;
}

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

.mobile-nav {
    display: none;
}

@media (max-width: 991px) {
    .header-logo img {
        height: 32px;
    }

    .btn-call {
        padding: 6px 10px;
    }

    .btn-call img {
        width: 18px;
        height: 18px;
    }

    .phone-dropdown {
        min-width: 180px;
    }

    .phone-option {
        padding: 8px 0;
    }
    
    .lang-btn {
        font-size: 14px;
    }
}

/* Hero Section */
.hero-section {
    position: relative;
    min-height: 60vh;
    display: flex;
    align-items: center;
    background: url('../images/hero-bg.jpg') center/cover no-repeat;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, #16171C 5%, #16171C00, #16171C);
}

.hero-content {
    position: relative;
    z-index: 1;
    text-align: center;
    padding: 40px 0;
    width: 100%;
}

.hero-content .container-wide {
    text-align: left;
}

.hero-title {
    margin-bottom: 40px;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
}

@media (min-width: 768px) {
    .hero-section {
        min-height: 82vh;
    }
}

@media (min-width: 992px) {
    .hero-title {
        max-width: 700px;
    }
}

@media (max-width: 991px) {
    .hero-title {
        margin-left: auto;
        margin-right: auto;
    }
}

.btn.btn-primary.btn-lg.hero-cta {
    background: #16171C66;
}

.btn.btn-primary.btn-lg.hero-cta:hover {
    transform: none;
    background: rgba(255, 255, 255, 0.4);
}

@media (min-width: 992px) {
    .btn.btn-primary.btn-lg.hero-cta {
        font-size: 26px;
        padding: 18px 72px;
    }
}

.btn {
    display: inline-block;
    padding: 14px 32px;
    border-radius: 16px;
    font-weight: 600;
    text-align: center;
    transition: var(--transition);
    border: 2px solid transparent;
    cursor: pointer;
    font-family: 'Montserrat', sans-serif;
}

.btn-primary {
    background: transparent;
    border-color: #fff;
    color: var(--light-text);
}

.btn-primary:hover {
    border-color: #fff;
    background: rgba(255, 255, 255, 0.4);
    color: #fff;
    opacity: 1;
    transform: translateY(-2px);
}

.btn-secondary {
    background: #6c757d;
    color: var(--light-text);
}

.btn-secondary:hover {
    background: #5a6268;
}

.btn-lg {
    padding: 16px 40px;
    font-size: 16px;
}

.section-title {
    margin-bottom: 28px;
    font-weight: 700;
}

.why-us-section {
    background: linear-gradient(#16171C, #171640);
}

.feature-card {
    border: 1px solid #fff;
    border-radius: 16px;
    padding: 12px;
    height: 100%;
    transition: var(--transition);
}

.feature-card:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.05);
}

.feature-title {
    font-size: 16px;
    margin-bottom: 15px;
    font-weight: 600;
}

.feature-text {
    color: #fff;
    font-size: 14px;
    line-height: 1.2;
}

@media (min-width: 768px) {
    .section-title {
        margin-bottom: 40px;
    }

    .feature-card {
        padding: 30px 20px;
        border-radius: 26px;
    }

    .feature-title {
        font-size: 22px;
    }

    .feature-text {
        font-size: 16px;
    }
}

@media (min-width: 1200px) {
    .feature-title {
        font-size: 26px;
    }

    .feature-text {
        font-size: 18px;
    }
}

/* Brands Section */
.brands-section {
    background: linear-gradient(#171640, #16171C);
    overflow-x: hidden;
}

.brands-grid {
    display: flex;
    gap: 30px;
    align-items: center;
    justify-content: flex-start;
    overflow-x: auto;
    padding-bottom: 10px;
}

.brands-grid::-webkit-scrollbar {
    height: 6px;
}

.brands-grid::-webkit-scrollbar-track {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 3px;
}

.brands-grid::-webkit-scrollbar-thumb {
    background: rgba(255, 255, 255, 0.2);
    border-radius: 3px;
}

.brands-grid::-webkit-scrollbar-thumb:hover {
    background: rgba(255, 255, 255, 0.3);
}

.brand-item {
    flex-shrink: 0;
}

.brand-item img {
    max-width: 82px;
    height: auto;
    transition: var(--transition);
}

@media (min-width: 992px) {
    .brands-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(110px, 1fr));
        gap: 30px 20px;
        justify-items: center;
        overflow-x: visible;
        margin: 0 auto;
    }

    .brand-item img {
        max-width: 110px;
    }
}

@media (min-width: 1400px) {
    .brands-grid {
        grid-template-columns: repeat(auto-fit, minmax(164px, 1fr));
        gap: 60px;
    }

    .brand-item img {
        max-width: 164px;
    }
}

.brand-item:hover img {
    transform: scale(1.1);
}

/* Services Section */
.services-section {
    background: linear-gradient(#16171C, #171640);
}

.service-card {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid #fff;
    border-radius: var(--border-radius);
    overflow: hidden;
    cursor: pointer;
    transition: var(--transition);
    height: 100%;
}

.service-card:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.15);
}

.service-image {
    aspect-ratio: 16/9;
    overflow: hidden;
}

.service-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.service-card:hover .service-image img {
    transform: scale(1.1);
}

.service-content {
    padding: 20px;
}

/* Service Content Pagination */
.service-content-page {
    animation: fadeIn 0.3s ease;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

.service-pagination {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-top: 30px;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.service-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    cursor: pointer;
    transition: all 0.3s ease;
}

.service-dot:hover {
    background: rgba(255, 255, 255, 0.5);
    transform: scale(1.2);
}

.service-dot.active {
    background: #fff;
    transform: scale(1.3);
}

.service-header {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

@media (min-width: 992px) {
    .service-header {
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
        gap: 15px;
    }
}

.service-title {
    font-size: 18px;
    margin-bottom: 0;
    font-weight: 300;
    flex: 1;
}

.service-price {
    color: #fff;
    font-weight: 600;
    font-style: italic;
    margin-bottom: 0;
    white-space: nowrap;
}

@media (max-width: 991px) {
    .service-title {
        font-size: 16px;
    }
    
    .service-price {
        font-size: 14px;
    }
}

.service-modal .modal-dialog {
    max-height: 90vh;
    margin: 0 auto;
}

.service-modal .modal-content {
    background: #171640;
    border-radius: var(--border-radius);
    color: #fff;
    max-height: 94vh;
    display: flex;
    flex-direction: column;
}

.service-modal .modal-header {
    border-bottom: none;
    padding: 20px 30px 0;
}

.service-modal .modal-title {
    font-size: 24px;
    font-weight: 600;
}

.service-modal .btn-close {
    filter: invert(1);
    opacity: 0.8;
}

.service-modal .btn-close:hover {
    opacity: 1;
}

.service-modal .modal-body {
    padding: 20px 30px;
    overflow-y: auto;
    flex: 1;
    min-height: 0;
}

.service-modal.gallery-fullscreen-active .modal-body {
    padding-top: 0;
}
@media (min-width:992px) {
    .service-modal.gallery-fullscreen-active .modal-dialog {
max-width: 530px;
}
.modal-portfolio-fullscreen .swiper-slide img {
height: 70vh;
}
} 

/* Fullscreen Gallery Mode */
.service-modal.gallery-fullscreen-active .service-details,
.service-modal.gallery-fullscreen-active .service-pagination,
.service-modal.gallery-fullscreen-active .modal-portfolio {
    display: none;
}

.service-modal .modal-portfolio-fullscreen {
    display: none;
}

.service-modal.gallery-fullscreen-active .modal-portfolio-fullscreen {
    display: flex;
    flex-direction: column;
    padding: 0;
    border: none;
    height: 100%;
    min-height: 0;
}

.modal-portfolio-fullscreen-header {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    margin-bottom: 0;
    flex-shrink: 0;
}

.modal-portfolio-fullscreen-nav {
    display: flex;
}

.fullscreen-nav-prev,
.fullscreen-nav-next {
    width: auto;
    min-width: 50px;
    height: 50px;
    border: none;
    background: transparent;
    color: #fff;
    border-radius: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: var(--transition);
    padding: 0 6px;
}

.fullscreen-nav-prev:hover,
.fullscreen-nav-next:hover {
    opacity: 0.7;
}

.fullscreen-nav-prev svg,
.fullscreen-nav-next svg {
    width: 80px;
    height: 16px;
}

.fullscreen-nav-prev svg {
    transform: rotate(180deg);
}

.modal-portfolio-fullscreen-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    min-height: 0;
    overflow: hidden;
}

.modal-portfolio-fullscreen .swiper {
    width: 100%;
    height: 100%;
    flex: 1;
    min-height: 0;
}

.modal-portfolio-fullscreen .swiper-wrapper {
    height: 100%;
}

.modal-portfolio-fullscreen .swiper-slide {
    cursor: default;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
}

.modal-portfolio-fullscreen .swiper-slide img {
    max-width: 100%;
    max-height: 100%;
    width: auto;
    height: auto;
    object-fit: contain;
    border-radius: 12px;
}

@media (min-width:992px) {
.modal-portfolio-fullscreen .swiper-slide img {
    height: 70vh;
}
}

.modal-portfolio-fullscreen-footer {
    display: flex;
    justify-content: center;
    padding-top: 20px;
    flex-shrink: 0;
}

.fullscreen-close-btn {
    background: #6c757d;
    border: 1px solid #fff;
    color: #fff;
    padding: 12px 0;
    border-radius: 16px;
    cursor: pointer;
    font-size: 16px;
    transition: var(--transition);
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    max-width: 400px;
    gap: 8px;
}

.fullscreen-close-btn:hover {
    background: rgba(255, 255, 255, 0.3);
}

.modal-portfolio .swiper-slide {
    cursor: pointer;
    transition: transform 0.2s;
}

.modal-portfolio .swiper-slide:hover {
    transform: scale(1.02);
}

@media (max-width: 767px) {
    .service-modal .modal-dialog {
        max-height: 95vh;
        margin: 0 auto;
    }
    
    .service-modal .modal-content {
        max-height: 95vh;
    }
    
    .fullscreen-nav-prev,
    .fullscreen-nav-next {
        min-width: 40px;
        height: 40px;
    }
    
    .fullscreen-nav-prev svg,
    .fullscreen-nav-next svg {
        width: 40px;
        height: 13px;
    }
    
    .fullscreen-close-btn {
        padding: 10px 0;
        font-size: 14px;
        max-width: 100%;
    }
    
    .modal-portfolio-fullscreen-footer {
        padding-top: 15px;
    }
}
/*big modal end*/

.service-details {
    background: rgba(255, 255, 255, 0.4);
    border-radius: 16px;
    padding: 20px 30px;
}

.service-details ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    gap: 14px;
}

.service-details ul li {
    padding-left: 24px;
    position: relative;
    color: #fff;
    font-size: 16px;
    line-height: 1.6;
}

.service-details ul li:before {
    content: "";
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 6px;
    height: 6px;
    background: #fff;
    border-radius: 50%;
}

.service-details p {
    color: #fff;
    font-size: 16px;
    line-height: 1.6;
    margin-bottom: 15px;
}

.service-details p:last-child {
    margin-bottom: 0;
}

.modal-portfolio {
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.modal-portfolio-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 14px;
    flex-wrap: wrap;
    gap: 15px;
}

.modal-portfolio h4 {
    margin-bottom: 0;
    font-size: 24px;
    font-weight: 600;
}

.modal-portfolio-nav {
    display: flex;
}

.modal-portfolio-prev svg {
    transform: rotate(180deg);
}

.modal-portfolio-prev,
.modal-portfolio-next {
    width: auto;
    min-width: 50px;
    height: 50px;
    border: none;
    background: transparent;
    color: #fff;
    border-radius: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: var(--transition);
    flex-shrink: 0;
    padding: 0 6px;
}

.modal-portfolio-prev:hover,
.modal-portfolio-next:hover {
    opacity: 0.7;
}

.modal-portfolio-prev svg,
.modal-portfolio-next svg {
    width: 80px;
    height: 16px;
}

@media (max-width: 767px) {
    .service-details ul li {
        font-size: 14px;
        padding-left: 18px;
    }
    
    .service-details ul li:before {
        width: 5px;
        height: 5px;
    }
    
    .modal-portfolio h4 {
        font-size: 20px;
    }
    
    .modal-portfolio-header {
        gap: 15px;
    }
    
    .modal-portfolio-prev,
    .modal-portfolio-next {
        min-width: 40px;
        height: 40px;
    }
    
    .modal-portfolio-prev svg,
    .modal-portfolio-next svg {
        width: 40px;
        height: 13px;
    }
}

@media (max-width: 992px) {
    .service-details {
        padding: 18px;
    }

    .service-details ul {
        gap: 12px;
    }

    .service-modal .modal-title {
        font-size: 20px;
    }
    
    .service-modal .modal-body {
        padding: 20px;
    }
}

/* Guarantee Section */
.guarantee-section {
    background: linear-gradient(#171640, #16171C);
}

.guarantee-content p {
    color: #fff;
    margin-bottom: 20px;
    line-height: 1.8;
}

.guarantee-video {
    border-radius: var(--border-radius);
    overflow: hidden;
    position: relative;
    background: #000;
}

.guarantee-video-player {
    width: 100%;
    height: auto;
    display: block;
    border-radius: var(--border-radius);
}

@media (max-width: 991px) {
    .guarantee-video {
        margin-top: 30px;
    }
}

/* Portfolio Section */
.portfolio-section {
    background: linear-gradient(#16171C, #171640);
}

.section-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 40px;
}

.portfolio-nav,
.reviews-nav {
    display: flex;
    gap: 15px;
}

.portfolio-prev,
.portfolio-next,
.reviews-prev,
.reviews-next {
    width: auto;
    min-width: 160px;
    height: 38px;
    border: 1px solid #fff;
    background: transparent;
    color: var(--light-text);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 30px;
    cursor: pointer;
    transition: var(--transition);
}

.portfolio-prev:hover,
.portfolio-next:hover,
.reviews-prev:hover,
.reviews-next:hover {
    background: rgba(255, 255, 255, 0.1);
}

.portfolio-prev:disabled,
.portfolio-next:disabled,
.reviews-prev:disabled,
.reviews-next:disabled {
    opacity: 0.3;
    cursor: not-allowed;
}

.portfolio-prev svg,
.reviews-prev svg {
    transform: rotate(180deg);
}

@media (max-width: 767px) {
    .section-header {
        gap: 16px;
        align-items: flex-start;
    }

    .portfolio-section .section-header,
    .reviews-section .section-header {
        align-items: flex-end;
    }

    .portfolio-section .section-title,
    .reviews-section .section-title {
        margin-bottom: 0;
    }
    
    .portfolio-nav,
    .reviews-nav {
        width: auto;
        justify-content: center;
        gap: 5px;
    }
    
    .portfolio-prev,
    .portfolio-next,
    .reviews-prev,
    .reviews-next {
        min-width: 60px;
        height: 34px;
        padding: 0 5px;
        border: none;
    }
    
    .portfolio-prev svg,
    .portfolio-next svg,
    .reviews-prev svg,
    .reviews-next svg {
        width: 60px;
        height: 14px;
    }
}

.portfolio-item {
    border-radius: var(--border-radius);
    overflow: hidden;
}

.modal-portfolio .swiper {
    width: 100%;
    overflow: hidden;
}

.modal-portfolio .swiper-slide {
    width: 100%;
    height: auto;
}

.modal-portfolio .swiper-slide img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 12px;
}

@media (min-width: 640px) {
    .modal-portfolio .swiper-slide {
        width: calc(50% - 10px);
    }
}

/* Contact Form Section */
.contact-form-section {
    background: linear-gradient(#171640, #16171C);
}

.contact-form-wrapper {
    padding: 40px;
    display: flex;
    flex-direction: column;
    gap: 40px;
}

@media (min-width: 992px) {
    .contact-form-wrapper {
        border-radius: 16px;
        background: rgba(255, 255, 255, 0.03);
        border: 1px solid #fff;
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
        padding: 60px;
        gap: 60px;
    }
}

.contact-form-content {
    flex: 1;
}

@media (max-width: 991px) {
    .contact-form-content {
        text-align: center;
    }
}

.contact-form-subtitle {
    color: #fff;
    font-size: 18px;
    margin: 0;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
    width: 100%;
}

@media (min-width: 992px) {
    .contact-form {
        max-width: 410px;
        flex-shrink: 0;
    }
}

.contact-form .form-group {
    width: 100%;
}

.contact-form .form-control {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid #fff;
    color: var(--light-text);
    padding: 24px 24px;
    border-radius: 16px;
    font-size: 18px;
    font-family: 'Montserrat', sans-serif;
    width: 100%;
}

.contact-form .form-control:focus {
    background: rgba(255, 255, 255, 0.08);
    border-color: #fff;
    outline: none;
}

.contact-form .form-control::placeholder {
    color: #fff;
    opacity: 0.7;
}

.contact-form .btn {
    width: 100%;
    padding: 18px 24px;
    border-radius: 16px;
    font-size: 26px;
    font-weight: 600;
    border: 1px solid #fff;
    background: #6c757d;
    color: #fff;
    cursor: pointer;
    transition: var(--transition);
}

.contact-form .btn:hover {
    background: #5a6268;
    transform: translateY(-2px);
}

@media (max-width: 991px) {
    .contact-form-wrapper {
        padding: 30px 20px;
    }
    
    .contact-form-subtitle {
        font-size: 16px;
    }
    
    .contact-form .form-control {
        font-size: 16px;
        padding: 14px 20px;
    }
    
    .contact-form .btn {
        font-size: 18px;
        padding: 14px 20px;
    }
}

.form-control {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: var(--light-text);
    padding: 14px 20px;
    border-radius: 12px;
    font-size: 16px;
    font-family: 'Montserrat', sans-serif;
}

.form-control:focus {
    background: rgba(255, 255, 255, 0.08);
    border-color: #fff;
    outline: none;
}

.form-control::placeholder {
    color: var(--gray-text);
}

/* FAQ Section */
.faq-section {
    background: linear-gradient(#16171C, #171640);
    padding: 80px 0;
}

.faq-section .section-title {
    margin-bottom: 60px;
    text-align: left;
}

@media (max-width: 991px) {
    .faq-section .section-title {
        text-align: center;
    }
}

.faq-image {
    border-radius: var(--border-radius);
    overflow: hidden;
    margin-bottom: 40px;
}

@media (min-width: 992px) {
    .faq-image {
        margin-bottom: 0;
    }
}

.faq-wrapper {
    max-width: 100%;
}

.faq-accordion {
    margin-bottom: 40px;
}

.accordion-item {
    background: transparent;
    border: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 0;
    margin-bottom: 0;
}

.accordion-item:last-child {
    border-bottom: none;
}

.accordion-header {
    margin-bottom: 0;
}

.accordion-button {
    background: transparent;
    color: #fff;
    border: none;
    padding: 24px 0;
    width: 100%;
    text-align: left;
    display: flex;
    align-items: center;
    gap: 20px;
    cursor: pointer;
    font-family: 'Montserrat', sans-serif;
    font-size: 18px;
    position: relative;
    transition: var(--transition);
}

.accordion-button:focus {
    box-shadow: none;
    outline: none;
}

.accordion-button:not(.collapsed) {
    background: transparent;
    color: #fff;
    box-shadow: none;
}

.accordion-button::after {
    display: none;
}

.accordion-number {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 60px;
    padding: 12px 20px;
    border-radius: 24px;
    border: 1px solid #fff;
    font-size: 20px;
    flex-shrink: 0;
}

.accordion-text {
    flex: 1;
}

.accordion-arrow {
    flex-shrink: 0;
    width: 70px;
    height: 70px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid #fff;
    border-radius: 50%;
    transition: var(--transition);
}

.accordion-arrow svg {
    transition: var(--transition);
}

.accordion-button:not(.collapsed) .accordion-arrow {
    transform: rotate(180deg);
}

.accordion-collapse {
    border: none;
}

.accordion-body {
    padding: 0 0 24px 80px;
    color: #fff;
    font-size: 16px;
    line-height: 1.6;
}

.faq-pagination {
    display: none;
    justify-content: center;
    gap: 12px;
    margin-top: 40px;
}

@media (min-width: 992px) {
    .faq-pagination {
        display: flex;
    }
}

.faq-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    cursor: pointer;
    transition: var(--transition);
}

.faq-dot.active {
    background: #fff;
}

.faq-dot:hover {
    background: rgba(255, 255, 255, 0.5);
}

@media (max-width: 991px) {
    .accordion-button {
        font-size: 16px;
        padding: 20px 0;
        gap: 12px;
    }
    
    .accordion-number {
        min-width: 44px;
        padding: 6px 8px;
        font-size: 18px;
    }
    
    .accordion-arrow {
        width: 38px;
        height: 38px;
    }
    
    .accordion-arrow svg {
        width: 16px;
        height: 16px;
    }
    
    .accordion-body {
        padding: 0 0 20px 0;
        font-size: 14px;
    }
}

@media (min-width: 768px) and (max-width: 991px) {
.accordion-body {
padding: 0 0 24px 70px;
}
}
/* Reviews Section */
.reviews-section {
background: linear-gradient(#171640, #16171C);
}
.reviews-slider {
padding-bottom: 20px;
}
.reviews-slider .swiper-wrapper {
align-items: stretch;
}
.reviews-slider .swiper-slide {
height: auto;
display: flex;
}
.review-card {
background: #FFFFFF1A;
border: 1px solid #fff;
border-radius: 16px;
padding: 30px;
min-height: 100%;
display: flex;
flex-direction: column;
flex: 1;
}
.review-author {
font-size: 18px;
margin-bottom: 10px;
font-weight: 600;
}
.review-rating {
margin-bottom: 15px;
}
.review-rating .star {
color: #ffd700;
font-size: 20px;
}
.review-rating .star:not(.filled) {
color: rgba(255, 215, 0, 0.3);
}
.review-text {
color: #fff;
line-height: 1.6;
flex: 1;
}
.review-form-wrapper {
margin-top: 60px;
}
.review-image {
border-radius: var(--border-radius);
overflow: hidden;
margin-bottom: 30px;
}
@media (min-width: 992px) {
.review-image {
margin-bottom: 0;
}
}
.review-form-content {
padding: 40px;
}
.review-form-header {
display: flex;
justify-content: space-between;
align-items: center;
margin-bottom: 30px;
gap: 20px;
}
@media (max-width: 767px) {
.review-form-header {
flex-direction: row;
align-items: flex-start;
gap: 6px;
}
}
.review-form-title {
font-size: 24px;
margin-bottom: 0;
font-weight: 600;
}
@media (min-width: 992px) {
.review-form-title {
font-size: 28px;
}
}
.rating-input {
display: flex;
flex-direction: row-reverse;
gap: 8px;
}
.rating-input input {
display: none;
}
.rating-input label {
font-size: 28px;
color: rgba(255, 215, 0, 0.3);
cursor: pointer;
transition: var(--transition);
line-height: 1;
}
@media (min-width: 992px) {
.rating-input label {
font-size: 32px;
}
}
.rating-input label:hover,
.rating-input label:hover ~ label,
.rating-input input:checked ~ label {
color: #ffd700;
}
.review-form {
display: flex;
flex-direction: column;
gap: 20px;
}
.review-form .form-group {
margin-bottom: 0;
}
.review-form .form-control {
background: rgba(255, 255, 255, 0.05);
border: 1px solid #fff;
color: var(--light-text);
padding: 24px 24px;
border-radius: 16px;
font-size: 16px;
font-family: 'Montserrat', sans-serif;
width: 100%;
resize: vertical;
}
.review-form input[type="text"].form-control {
min-height: auto;
}
.review-form textarea.form-control {
min-height: 150px;
}
.review-form .form-control:focus {
background: rgba(255, 255, 255, 0.08);
border-color: #fff;
outline: none;
}
.review-form .form-control::placeholder {
color: rgba(255, 255, 255, 0.5);
}
.review-form .btn {
width: 100%;
padding: 18px 24px;
border-radius: 16px;
font-size: 18px;
font-weight: 600;
border: 1px solid #fff;
background: #FFFFFF66;
color: #fff;
cursor: pointer;
transition: var(--transition);
}
@media (min-width: 992px) {
.review-form .btn {
font-size: 26px;
}
}
.review-form .btn:hover {
background: #5a6268;
transform: translateY(-2px);
}
@media (max-width: 991px) {
.review-form-content {
padding: 30px 0;
}
.review-form-title {
    font-size: 20px;
}

.rating-input label {
    font-size: 24px;
}

.review-form .form-control {
    padding: 16px 20px;
    font-size: 14px;
    min-height: 120px;
}

.review-form .btn {
    font-size: 16px;
    padding: 14px 20px;
}
}
/* Contacts Section */
.contacts-section {
background: linear-gradient(#16171C, #171640);
}
.contact-buttons {
display: grid;
grid-template-columns: 1fr;
gap: 15px;
margin-bottom: 30px;
}
@media (min-width: 768px) {
.contact-buttons {
grid-template-columns: repeat(2, 1fr);
}
}
.contact-btn {
display: flex;
align-items: center;
gap: 15px;
padding: 16px 20px;
border: 1px solid #fff;
border-radius: 16px;
color: var(--light-text);
transition: var(--transition);
font-family: 'Montserrat', sans-serif;
font-size: 16px;
text-decoration: none;
}
.contact-btn:hover {
background: rgba(255, 255, 255, 0.1);
transform: translateY(-2px);
color: var(--light-text);
}
.contact-btn img {
width: 24px;
height: 24px;
flex-shrink: 0;
object-fit: contain;
}
.contact-btn span {
white-space: nowrap;
}
.contact-address {
padding: 20px;
border-radius: 12px;
margin-top: 30px;
}
.contact-address strong {
font-weight: 600;
}
.contact-address p {
color: #fff;
margin: 0;
font-size: 16px;
}
.contact-map {
border-radius: var(--border-radius);
overflow: hidden;
}
.contact-map iframe {
height: 400px;
}
@media (max-width: 991px) {
.contact-map {
margin-top: 30px;
}
.contact-map iframe {
    height: 300px;
}
}
@media (max-width: 767px) {
.contact-buttons {
grid-template-columns: 1fr;
}
.contact-btn {
    font-size: 14px;
    padding: 12px 16px;
}

.contact-btn img {
    width: 20px;
    height: 20px;
}
}
/* Footer Section */
.site-footer {
background: #16171C;
padding: 60px 0 30px;
}
.footer-logo {
margin-bottom: 40px;
}
.footer-logo a {
display: inline-block;
}
.footer-logo img {
height: 40px;
width: auto;
}
.footer-content {
display: flex;
flex-direction: column;
gap: 30px;
}
@media (min-width: 992px) {
.footer-content {
flex-direction: row;
justify-content: space-between;
align-items: flex-end;
}
}
.footer-columns {
display: grid;
grid-template-columns: repeat(2, auto);
gap: 40px;
justify-content: start;
}
.footer-nav ul {
list-style: none;
padding: 0;
margin: 0;
}
.footer-nav li {
margin-bottom: 12px;
}
.footer-nav a {
color: var(--light-text);
font-size: 16px;
transition: var(--transition);
}
.footer-nav a:hover {
color: #fff;
}
.footer-social {
display: flex;
gap: 16px;
flex-wrap: wrap;
align-items: flex-start;
}
.social-icon {
display: flex;
align-items: center;
justify-content: center;
transition: var(--transition);
flex-shrink: 0;
}
.social-icon:hover {
transform: scale(1.1);
}
.social-icon img {
width: 32px;
height: 32px;
object-fit: contain;
}
@media (min-width: 992px) {
.footer-social {
gap: 35px;
flex-wrap: wrap;
}
.social-icon img {
    width: 45px;
    height: 45px;
}
}
@media (min-width: 1366px) {
.footer-social {
gap: 40px;
flex-wrap: nowrap;
}
.social-icon img {
    width: 50px;
    height: 50px;
}

.footer-content {
    gap: 40px;
}
}
.footer-subscribe {
min-width: 300px;
}
@media (min-width: 992px) {
.footer-subscribe {
min-width: 400px;
}
}
.footer-subscribe h3 {
font-size: 18px;
margin-bottom: 20px;
font-weight: 600;
}
@media (min-width: 992px) {
.footer-subscribe h3 {
font-size: 20px;
}
}
.subscribe-form {
display: flex;
gap: 15px;
align-items: center;
}
@media (max-width: 991px) {
.subscribe-form {
flex-direction: column;
align-items: stretch;
gap: 20px;
}
}
.subscribe-form input[type="email"] {
flex: 1;
background: transparent;
border: none;
border-bottom: 1px solid #fff;
color: var(--light-text);
padding: 12px 0;
font-size: 16px;
font-family: 'Montserrat', sans-serif;
outline: none;
}
.subscribe-form input[type="email"]::placeholder {
color: rgba(255, 255, 255, 0.5);
}
.subscribe-form input[type="email"]:focus {
border-bottom-color: #fff;
}
.btn-subscribe {
background: #FFFFFF66;
border: 1px solid #fff;
border-radius: 16px;
color: #fff;
padding: 12px 30px;
font-size: 16px;
font-weight: 600;
cursor: pointer;
transition: var(--transition);
white-space: nowrap;
font-family: 'Montserrat', sans-serif;
width: 210px;
}
@media (max-width: 991px) {
.btn-subscribe {
width: 100%;
padding: 14px 30px;
}
}
.btn-subscribe:hover {
background: rgba(255, 255, 255, 0.4);
}
.footer-bottom {
margin-top: 40px;
padding-top: 30px;
border-top: 1px solid rgba(255, 255, 255, 0.1);
display: flex;
justify-content: space-between;
align-items: center;
flex-wrap: wrap;
gap: 15px;
}
@media (max-width: 991px) {
.footer-bottom {
flex-direction: column;
align-items: flex-start;
}
}
.footer-copyright {
color: #fff;
font-size: 14px;
margin: 0;
}
/* Typography */
h1, h2, h3, h4, h5, h6,
p, a, button, input, textarea, select {
font-family: 'Montserrat', sans-serif;
}
/* Hide reCAPTCHA badge */
.grecaptcha-badge {
    visibility: hidden;
    opacity: 0;
}