/* Header Styles */

.header {
    position: fixed;
    width: 100%;
    z-index: 999;
    transition: all 0.3s ease;
}

.header.sticky {
    background: rgba(255, 255, 255, 0.97);
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}


/* Dropdown Styles */

.wsmenu-list li>.sub-menu {
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all 0.3s ease;
}

.wsmenu-list li:hover>.sub-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}


/* Teklif İste Button */

.wsmenu-list li .btn-primary {
    padding: 10px 20px;
    border-radius: 25px;
    margin-left: 15px;
    transition: all 0.3s ease;
}

.wsmenu-list li .btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}


/* Preview Box Styles */

.preview-box {
    position: relative;
    border-radius: 10px;
    overflow: hidden;
    margin-bottom: 30px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.preview-box img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    transition: all 0.5s ease;
}

.preview-content {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 30px;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8), transparent);
    color: white;
}

.preview-box:hover img {
    transform: scale(1.1);
}


/* Service Preview Styles */

.service-preview-box {
    background: #fff;
    border-radius: 10px;
    overflow: hidden;
    margin-bottom: 30px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.service-preview-box:hover {
    transform: translateY(-5px);
}

.service-image {
    position: relative;
    overflow: hidden;
}

.service-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: all 0.3s ease;
}

.service-preview-box:hover .service-overlay {
    opacity: 1;
}

.service-content {
    padding: 25px;
}


/* Hero Section Styles */

.hero-section {
    position: relative;
    height: 100vh;
    min-height: 700px;
    overflow: hidden;
}

.slider {
    height: 100%;
    position: relative;
}

.slides {
    height: 100%;
    margin: 0;
    padding: 0;
    list-style: none;
}

.slide {
    height: 100%;
    position: relative;
    display: none;
}

.slide.active {
    display: block;
}

.slide img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-txt {
    position: relative;
    z-index: 10;
    padding-top: 200px;
    text-align: center;
}

.hero-txt h2 {
    font-size: 4rem;
    margin-bottom: 20px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.hero-txt h3 {
    font-size: 2.5rem;
    margin-bottom: 25px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.hero-txt p {
    font-size: 1.25rem;
    margin-bottom: 30px;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
}


/* Slide Overlay */

.slide::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.4);
    z-index: 1;
}


/* Button Styles */

.btn-tra-white {
    background-color: transparent;
    border: 2px solid #fff;
    color: #fff;
}

.btn-tra-white:hover {
    background-color: #fff;
    color: #333;
}


/* Responsive Styles */

@media (max-width: 991px) {
    .hero-txt h2 {
        font-size: 3rem;
    }
    .hero-txt h3 {
        font-size: 2rem;
    }
    .hero-txt p {
        font-size: 1.1rem;
    }
}

@media (max-width: 767px) {
    .hero-section {
        min-height: 600px;
    }
    .hero-txt {
        padding-top: 150px;
    }
    .hero-txt h2 {
        font-size: 2.5rem;
    }
    .hero-txt h3 {
        font-size: 1.75rem;
    }
}


/* Testimonials Preview Styles */

.testimonials-section {
    position: relative;
    background-color: #f8f9fa;
}

.review-1 {
    position: relative;
    padding: 40px 30px;
    margin: 0 15px;
    background-color: #fff;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

.review-1:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
}

.testimonial-avatar {
    width: 90px;
    height: 90px;
    margin: 0 auto 20px;
}

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

.author-data {
    text-align: center;
    margin-bottom: 15px;
}

.author-data h6 {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 5px;
}

.wedding-date {
    font-size: 0.9rem;
    color: #888;
}

.review-1-txt {
    text-align: center;
    font-style: italic;
    line-height: 1.6;
}

.review-1-txt p {
    margin-bottom: 15px;
}


/* Owl Carousel Custom Styles */

.owl-theme .owl-dots .owl-dot span {
    background: #ddd;
}

.owl-theme .owl-dots .owl-dot.active span,
.owl-theme .owl-dots .owl-dot:hover span {
    background: #007bff;
}


/* Button Styles */

.btn-tra-white {
    background-color: transparent;
    border: 1px solid #007bff;
    color: #007bff;
}

.btn-tra-white:hover {
    background-color: #007bff;
    color: #fff;
}


/* Responsive Styles */

@media (max-width: 767px) {
    .review-1 {
        padding: 30px 20px;
    }
    .testimonial-avatar {
        width: 70px;
        height: 70px;
    }
}


/* Gallery Preview Styles */

.gallery-item {
    position: relative;
    margin-bottom: 30px;
    border-radius: 8px;
    overflow: hidden;
}

.hover-overlay {
    position: relative;
}

.hover-overlay img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    transition: all 0.5s ease;
}

.item-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.6);
    opacity: 0;
    transition: all 0.5s ease;
}

.img-meta {
    position: absolute;
    bottom: -50px;
    left: 0;
    width: 100%;
    padding: 20px;
    text-align: center;
    transition: all 0.5s ease;
}

.img-meta h5 {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 5px;
}

.img-meta p {
    font-size: 0.9rem;
    opacity: 0.9;
}

.gallery-links {
    position: absolute;
    top: 50%;
    width: 100%;
    text-align: center;
    transform: translateY(-50%);
    opacity: 0;
    transition: all 0.5s ease;
}

.gallery-links a {
    display: inline-block;
    width: 45px;
    height: 45px;
    line-height: 45px;
    background-color: #fff;
    color: #333;
    border-radius: 50%;
    margin: 0 5px;
    transition: all 0.3s ease;
}

.gallery-links a:hover {
    background-color: #007bff;
    color: #fff;
}


/* Hover Effects */

.gallery-item:hover .item-overlay {
    opacity: 1;
}

.gallery-item:hover .img-meta {
    bottom: 0;
}

.gallery-item:hover .gallery-links {
    opacity: 1;
}

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


/* Responsive Styles */

@media (max-width: 991px) {
    .hover-overlay img {
        height: 250px;
    }
}

@media (max-width: 767px) {
    .hover-overlay img {
        height: 200px;
    }
}


/* CTA Section Styles */

.cta-section {
    position: relative;
    padding: 100px 0;
    background-image: url('../images/cta-bg.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
}

.bg-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.6);
}

.cta-txt {
    position: relative;
    z-index: 10;
}

.cta-txt h3 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 15px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.cta-txt h4 {
    font-size: 1.8rem;
    font-weight: 500;
    margin-bottom: 25px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.cta-txt p {
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 30px;
}

.cta-txt .p-sm {
    font-size: 0.95rem;
    opacity: 0.9;
}


/* CTA Button Styles */

.btn-primary.tra-white-hover {
    background-color: #fff;
    color: #007bff;
    border: 2px solid #fff;
    font-weight: 600;
    padding: 12px 30px;
    border-radius: 30px;
    transition: all 0.3s ease;
}

.btn-primary.tra-white-hover:hover {
    background-color: transparent;
    color: #fff;
}


/* Social Media Icons */

.cta-social {
    margin-top: 40px;
}

.ico-50 {
    padding: 0;
    margin: 0;
    list-style: none;
    display: flex;
    justify-content: center;
    gap: 15px;
}

.ico-50 li a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    background-color: rgba(255, 255, 255, 0.15);
    color: #fff;
    border-radius: 50%;
    transition: all 0.3s ease;
}

.ico-50 li a:hover {
    background-color: #fff;
    transform: translateY(-3px);
}

.ico-facebook:hover {
    color: #3b5998;
}

.ico-instagram:hover {
    color: #e4405f;
}

.ico-youtube:hover {
    color: #ff0000;
}

.ico-whatsapp:hover {
    color: #25d366;
}


/* Responsive Styles */

@media (max-width: 991px) {
    .cta-section {
        padding: 80px 0;
    }
    .cta-txt h3 {
        font-size: 2rem;
    }
    .cta-txt h4 {
        font-size: 1.5rem;
    }
}

@media (max-width: 767px) {
    .cta-section {
        padding: 60px 0;
    }
    .cta-txt h3 {
        font-size: 1.8rem;
    }
    .cta-txt h4 {
        font-size: 1.3rem;
    }
    .cta-txt p {
        font-size: 1rem;
    }
}


/* All'N ONE Section Styles */

#allinone {
    background-color: #f8f9fa;
    /* Açık gri arka plan */
    padding: 80px 0;
}

.about-img {
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}


/* Services List Styles */


.service-item {
    background: #fff;
    margin-bottom: 15px;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.service-header {
    padding: 20px 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    transition: all 0.3s ease;
}

.service-header:hover {
    background-color: #f1f3f5;
}

.service-header h4 {
    margin: 0;
    font-size: 1.1rem;
    color: #333;
    display: flex;
    align-items: center;
}

.service-header h4 i {
    margin-right: 15px;
    color: #007bff;
    font-size: 1.2rem;
}

.toggle-icon {
    font-size: 1.5rem;
    color: #007bff;
    font-weight: 300;
    transition: all 0.3s ease;
}

.service-content {
    max-height: 0;
    overflow: hidden;
    padding: 0 30px;
    transition: all 0.5s ease;
    background-color: #fff;
}

.service-item.active .service-content {
    max-height: 500px;
    padding: 20px 30px;
}

.service-item.active .toggle-icon {
    transform: rotate(45deg);
}

.service-item.active .service-header {
    background-color: #f8f9fa;
    border-bottom: 1px solid #eee;
}


/* Responsive Styles */

@media (max-width: 991px) {
    .about-content {
        margin-top: 30px;
        padding-left: 0;
    }
}

@media (max-width: 767px) {
    .service-header {
        padding: 15px 20px;
    }
    .service-content {
        padding: 0 20px;
    }
    .service-item.active .service-content {
        padding: 15px 20px;
    }
}


/* Accordion Styles */

.accordion-item {
    border: none;
    margin-bottom: 10px;
    border-radius: 8px !important;
    overflow: hidden;
}

.accordion-button {
    padding: 15px 20px;
    font-weight: 600;
    color: #333;
    background-color: #f8f9fa;
    border: none;
    border-radius: 8px !important;
    transition: all 0.3s ease;
}

.accordion-button:not(.collapsed) {
    color: #fff;
    background-color: #007bff;
}

.accordion-button:focus {
    box-shadow: none;
    border-color: transparent;
}

.accordion-button::after {
    background-size: 16px;
}

.accordion-body {
    padding: 20px;
    background-color: #fff;
    border: 1px solid #eee;
    border-top: none;
    font-size: 0.95rem;
    line-height: 1.6;
}


/* Icon Styles */

.accordion-button i {
    font-size: 1.1rem;
    margin-right: 10px;
    transition: all 0.3s ease;
}

.accordion-button:not(.collapsed) i {
    color: #fff;
}


/* Hover Effects */

.accordion-button:hover {
    background-color: #e9ecef;
}

.accordion-button:not(.collapsed):hover {
    background-color: #0056b3;
}

.about-img:hover img {
    transform: scale(1.05);
}


/* Services Grid Styles */

.services-grid {
    margin-top: 30px;
}

.service-card {
    background: #fff;
    border-radius: 15px;
    padding: 25px 20px;
    text-align: center;
    position: relative;
    overflow: hidden;
    height: 200px;
    cursor: pointer;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    transition: all 0.4s ease;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.service-card .icon-wrap {
    width: 70px;
    height: 70px;
    margin: 0 auto 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: linear-gradient(45deg, #007bff, #00e5ff);
    transition: all 0.4s ease;
}

.service-card .icon-wrap i {
    font-size: 28px;
    color: #fff;
}

.service-card h5 {
    margin-bottom: 10px;
    font-weight: 600;
    color: #333;
    transition: all 0.3s ease;
}

.service-card .hover-content {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, #007bff, #00e5ff);
    padding: 20px;
    opacity: 0;
    transform: translateY(100%);
    transition: all 0.4s ease;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.service-card:hover .hover-content {
    opacity: 1;
    transform: translateY(0);
}

.service-card .hover-content p {
    color: #fff;
    margin-bottom: 15px;
    font-size: 0.9rem;
}

.service-card .read-more {
    color: #fff;
    font-weight: 600;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-bottom: 2px solid #fff;
}


/* Modal Styles */

.service-modal .modal-content {
    border-radius: 15px;
    overflow: hidden;
}

.service-modal .modal-header {
    background: linear-gradient(45deg, #007bff, #00e5ff);
    padding: 20px 30px;
    border: none;
}

.service-modal .modal-title {
    color: #fff;
    font-weight: 600;
}

.service-modal .modal-body {
    padding: 30px;
}

.service-modal .btn-close {
    color: #fff;
    opacity: 1;
}

.service-detail img {
    border-radius: 10px;
    margin-bottom: 20px;
}


/* Responsive Adjustments */

@media (max-width: 991px) {
    .service-card {
        height: 180px;
    }
}

@media (max-width: 767px) {
    .services-grid {
        margin-top: 20px;
    }
    .service-card {
        height: 160px;
        margin-bottom: 15px;
    }
    .service-card .icon-wrap {
        width: 60px;
        height: 60px;
    }
    .service-card .icon-wrap i {
        font-size: 24px;
    }
}

.modal-backdrop.fade.show {
    z-index: -1;
}

.phone-input-custom{
    width: 100%!important;
    height: auto!important;
    border: 1px solid #cacaca!important;
    border-radius: 10px!important;
}