/* Detail Page Styles */
.project-detail-section {
    padding: 4rem 0;
    background-color: #f8f9fa;
    background-image: linear-gradient(to bottom, #f8f9fa, #ffffff);
}

/* Enhanced Slider */
.slider-wrapper {
    position: relative;
    overflow: hidden;
    margin-bottom: 14px;
    border-radius: 16px;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

#projectSlider {
    border-radius: 16px;
    overflow: hidden;
    position: relative;
}

#projectSlider .carousel-item {
    height: 737px;
    transition: all 0.3s ease;
}

.image-container {
    position: relative;
    height: 100%;
    width: 100%;
    overflow: hidden;
    cursor: zoom-in;
    transition: all 0.3s ease;
}

.image-container.zoomed {
    cursor: zoom-out;
}

#projectSlider .carousel-item img {
    /* object-fit: cover; */
    height: 100%;
    width: 100%;
    transition: transform 0.5s ease;
    transform-origin: center;
}

/* Zoom hint overlay */
.zoom-hint {
    position: absolute;
    bottom: 20px;
    left: 20px;
    padding: 8px 16px;
    background-color: rgba(0, 0, 0, 0.6);
    color: white;
    border-radius: 30px;
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    gap: 8px;
    opacity: 0;
    transition: opacity 0.3s ease;
    pointer-events: none;
    z-index: 10;
}

.zoom-hint i {
    font-size: 1.1rem;
}

.image-container:hover .zoom-hint {
    opacity: 1;
}

/* Navigation Controls */
.carousel-control-prev,
.carousel-control-next { 
    opacity: 0;
    transition: all 0.4s ease;
}

#projectSlider:hover .carousel-control-prev,
#projectSlider:hover .carousel-control-next {
    opacity: 0.9;
}

.carousel-control-prev-icon,
.carousel-control-next-icon {
   /* background-color: rgba(37, 99, 235, 0.8);
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background-size: 45%;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);*/
}

/* Thumbnail Gallery */
.thumbnail-gallery {
    margin-top: 14px;
}

.thumbnail {
    height: 90px;
    object-fit: cover;
    border-radius: 10px;
    cursor: pointer;
    transition: all 0.4s ease;
    border: 3px solid transparent;
    opacity: 0.7;
    box-shadow: 0 8px 15px rgba(0, 0, 0, 0.08);
}

.thumbnail:hover {
    opacity: 1;
    transform: translateY(-3px);
}

.thumbnail.active {
    border-color: #2563eb;
    opacity: 1;
    transform: translateY(-3px);
}

/* Project Info Card */
.project-info-card {
    background-color: white;
    border-radius: 16px; 
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
    height: 100%;
    display: flex;
    flex-direction: column;
    position: relative;
    overflow: hidden;
}

.project-info-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 6px;
    height: 100%;
    background: linear-gradient(to bottom, #2563eb, #3b82f6);
}

.project-title h1 {
    font-size: 1.8rem;
    font-weight: 800;
    margin-bottom: 25px;
    color: #1a202c;
    line-height: 1.3;
    letter-spacing: -0.5px;
    position: relative;
}

.project-title h1::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 60px;
    height: 3px;
    background: linear-gradient(to right, #2563eb, #3b82f6);
    border-radius: 3px;
}

.project-location {
    margin-bottom: 20px;
    margin-top: 10px;
}

.project-location p {
    color: #4b5563;
    font-size: 1.05rem;
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 500;
}

.project-location i {
    color: #2563eb;
    font-size: 1.2rem;
}

.project-property,
.project-price,
.project-delivery {
    margin-bottom: 18px;
    padding-bottom: 18px;
    border-bottom: 1px solid rgba(229, 231, 235, 0.6);
}

.project-property p,
.project-price p,
.project-delivery p {
    margin-bottom: 0;
    color: #4b5563;
    font-size: 1.05rem;
}

.project-property p strong,
.project-price p strong,
.project-delivery p strong {
    color: #1a202c;
    font-weight: 600;
    margin-right: 5px;
}

.project-contact {
    margin-top: auto;
}

.project-contact .btn-primary {
    height: 56px;
    font-size: 1.1rem;
    font-weight: 600;
    letter-spacing: 0.3px;
    box-shadow: 0 10px 20px rgba(37, 99, 235, 0.25);
    transition: all 0.4s ease;
}

.project-contact .btn-primary:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(37, 99, 235, 0.35);
}

.btn-details {
    background: linear-gradient(135deg, #0d6efd, #0b5ed7);
    border: none;
    text-transform: uppercase;
    font-size: 1rem;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.btn-details::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #0b5ed7, #0a58ca);
    z-index: -1;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.btn-details:hover::after {
    opacity: 1;
}

.contact-btn {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 72px;
    border-radius: 12px;
    color: white;
    transition: all 0.4s ease;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
    position: relative;
    overflow: hidden;
}

.btn-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 100%;
}

.btn-icon {
    margin-bottom: 6px;
    font-size: 1.4rem;
    height: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.btn-text {
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    line-height: 1;
    text-wrap: nowrap;
}

.contact-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.1);
    transform: translateX(-100%);
    transition: all 0.4s ease;
}

.contact-btn:hover::before {
    transform: translateX(0);
}

.contact-btn:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.15);
    color: white;
}

.contact-btn.appointment {
    background: linear-gradient(135deg, #1a73e8, #0d47a1);
}

.contact-btn.zoom {
    background: linear-gradient(135deg, #2D8CFF, #0057d2);
}

.contact-btn.mail {
    background: linear-gradient(135deg, #EA4335, #c62828);
}

/* Tabs Styling */
.nav-tabs {
    border-bottom: 2px solid #e5e7eb;
    margin-bottom: 35px;
    display: flex;
    justify-content: center;
}

.nav-tabs .nav-item {
    margin: 0 5px;
}

.nav-tabs .nav-link {
    border: none;
    color: #6b7280;
    font-weight: 600;
    padding: 14px 24px;
    margin-right: 10px;
    transition: all 0.3s ease;
    position: relative;
    letter-spacing: 0.3px;
    border-radius: 10px 10px 0 0;
}

.nav-tabs .nav-link:after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 3px;
    background: linear-gradient(135deg, #2563eb, #3b82f6);
    transition: all 0.3s ease;
}

.nav-tabs .nav-link:hover {
    color: #2563eb;
    background-color: rgba(37, 99, 235, 0.05);
}

.nav-tabs .nav-link.active {
    background-color: transparent;
    border: none;
    color: #2563eb;
    font-weight: 700;
}

.nav-tabs .nav-link.active:after {
    width: 100%;
}

.content-area {
    background-color: white;
    border-radius: 16px;
    padding: 35px;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.06);
    position: relative;
    overflow: hidden;
    animation: fadeIn 0.6s ease forwards;
}

.content-area::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: linear-gradient(to right, #2563eb, #3b82f6);
}

.content-area h3 {
    color: #1a202c;
    font-weight: 700;
    margin-bottom: 25px;
    font-size: 1.5rem;
    position: relative;
    display: inline-block;
}

.content-area h3::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 40px;
    height: 3px;
    background: linear-gradient(to right, #2563eb, #3b82f6);
    border-radius: 3px;
}

.content-area p {
    color: #4b5563;
    line-height: 1.8; 
    font-size: 1.05rem;
}

/* Features Tab */
.feature-item {
    display: flex;
    align-items: center;
    margin-bottom: 16px;
    padding: 16px 20px;
    background-color: #f8f9fa;
    border-radius: 12px;
    transition: all 0.4s ease;
    border-left: 3px solid transparent;
    opacity: 0;
    animation: fadeIn 0.6s ease forwards;
}

.feature-item:hover {
    background-color: #edf2fd;
    transform: translateX(8px);
    border-left: 3px solid #2563eb;
}

.feature-item i {
    color: #2563eb;
    font-size: 1.4rem;
    margin-right: 18px;
    transition: all 0.3s ease;
}

.feature-item:hover i {
    transform: scale(1.2);
}

.feature-item span {
    color: #4b5563;
    font-weight: 500;
    font-size: 1.05rem;
}

/* Location Tab */
.location-item {
    display: flex;
    align-items: center;
    margin-bottom: 24px;
    padding: 5px 0;
    transition: all 0.3s ease;
    opacity: 0;
    animation: fadeIn 0.6s ease forwards;
}

.location-item:hover {
    transform: translateX(5px);
}

.location-item i {
    color: #2563eb;
    font-size: 1.6rem;
    margin-right: 20px;
    background-color: #edf2fd;
    padding: 16px;
    border-radius: 12px;
    transition: all 0.3s ease;
    box-shadow: 0 6px 12px rgba(37, 99, 235, 0.12);
}

.location-item:hover i {
    background-color: #2563eb;
    color: white;
}

.location-item h6 {
    margin-bottom: 6px;
    font-weight: 600;
    color: #1a202c;
    font-size: 1.1rem;
}

.location-item p {
    margin-bottom: 0;
    color: #6b7280;
    font-weight: 500;
}

.map-container {
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.08);
    position: relative;
}

.map-container::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    box-shadow: inset 0 0 20px rgba(0, 0, 0, 0.1);
    pointer-events: none;
    z-index: 1;
}

/* Floorplan Tab */
.floorplan-card {
    background-color: #fff;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.07);
    transition: all 0.4s ease;
    position: relative;
    opacity: 0;
    animation: fadeIn 0.6s ease forwards;
}

.floorplan-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.floorplan-card img {
    height: 200px;
    object-fit: cover;
    width: 100%;
}

.floorplan-info {
    padding: 20px;
}

.floorplan-info h5 {
    font-weight: 700;
    color: #1a202c;
    margin-bottom: 10px;
}

.floorplan-info p {
    color: #6b7280;
    margin-bottom: 5px;
}

.floorplan-info .price {
    font-weight: 600;
    color: #2563eb;
    margin-bottom: 15px;
}

/* Project Badge */
.project-badge {
    position: absolute;
    top: 20px;
    left: 20px;
    z-index: 10;
    background: rgba(37, 99, 235, 0.9);
    color: white;
    padding: 8px 16px;
    border-radius: 30px;
    font-weight: 600;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    display: flex;
    align-items: center;
    gap: 8px;
    backdrop-filter: blur(5px);
}

.project-badge i {
    font-size: 1.1rem;
}

/* Project Label */
.project-label {
    display: inline-block;
    background: linear-gradient(45deg, rgba(13, 110, 253, 0.1), rgba(13, 202, 240, 0.1));
    color: #0d6efd;
    padding: 0.2rem 1.25rem;
    border-radius: 5px;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 1rem;
    border: 1px solid rgba(13, 110, 253, 0.2);
}

/* Custom Styling for Property Info */
.property-values, .price-values, .delivery-date {
    color: #2563eb;
    font-weight: 500;
}

/* Project Status */
.project-status {
    margin-bottom: 18px;
    padding-bottom: 18px;
    border-bottom: 1px solid rgba(229, 231, 235, 0.6);
}

.status-label {
    color: #1a202c;
    font-weight: 600;
    margin-bottom: 10px;
}

.status-progress {
    height: 10px;
    background-color: #e5e7eb;
    border-radius: 5px;
    overflow: hidden;
}

.status-progress .progress-bar {
    background: linear-gradient(to right, #2563eb, #3b82f6);
    border-radius: 5px;
}

/* Highlight Box */
.highlight-box {
    background-color: rgba(37, 99, 235, 0.05);
    border-left: 5px solid #2563eb;
    padding: 20px;
    border-radius: 0 8px 8px 0;
    margin-bottom: 25px;
}

.highlight-text {
    color: #1a202c;
    font-weight: 500;
    line-height: 1.8;
    margin-bottom: 0;
    font-size: 1.1rem;
}

/* Info Box */
.info-box {
    display: flex;
    align-items: center;
    background-color: white;
    border-radius: 12px;
    padding: 15px;
    height: 100%;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.info-box:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

.info-box i {
    color: #2563eb;
    font-size: 1.6rem;
    margin-right: 15px;
    background-color: rgba(37, 99, 235, 0.1);
    padding: 12px;
    border-radius: 10px;
}

.info-box h6 {
    font-weight: 600;
    color: #1a202c;
    margin-bottom: 5px;
}

.info-box p {
    margin-bottom: 0;
    color: #6b7280;
    font-size: 0.9rem;
}

/* Floorplan Badge */
.floorplan-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background: rgba(37, 99, 235, 0.9);
    color: white;
    padding: 8px 15px;
    border-radius: 20px;
    font-weight: 700;
    z-index: 1;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.15);
}

/* Animation Keyframes */
@keyframes fadeIn {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

/* Animation Delay */
.feature-item:nth-child(1) { animation-delay: 0.05s; }
.feature-item:nth-child(2) { animation-delay: 0.1s; }
.feature-item:nth-child(3) { animation-delay: 0.15s; }
.feature-item:nth-child(4) { animation-delay: 0.2s; }
.feature-item:nth-child(5) { animation-delay: 0.25s; }

.location-item:nth-child(1) { animation-delay: 0.05s; }
.location-item:nth-child(2) { animation-delay: 0.1s; }
.location-item:nth-child(3) { animation-delay: 0.15s; }

.floorplan-card:nth-child(1) { animation-delay: 0.05s; }
.floorplan-card:nth-child(2) { animation-delay: 0.1s; }
.floorplan-card:nth-child(3) { animation-delay: 0.15s; }

/* Media Queries */
@media (max-width: 992px) {
    #projectSlider .carousel-item {
        height: 500px;
    }
    
    .project-info-card {
        margin-top: 30px;
    }
    
    .project-title h1 {
        font-size: 1.4rem;
    }
    
    .project-badge {
        top: 15px;
        left: 15px;
        padding: 6px 12px;
        font-size: 0.9rem;
    }
    
    .highlight-text {
        font-size: 1rem;
    }
    
    .info-box {
        padding: 12px;
    }
    
    .info-box i {
        font-size: 1.4rem;
        padding: 10px;
    }
    
    .zoom-hint {
        bottom: 15px;
        left: 15px;
    }
    
    .zoom-hint i {
        font-size: 1rem;
    }
    
    .carousel-control-prev,
    .carousel-control-next {
        width: 10%;
        opacity: 0.7;
    }
    
    .carousel-control-prev-icon,
    .carousel-control-next-icon {
        width: 45px;
        height: 45px;
    }
}

@media (max-width: 768px) {
    #projectSlider .carousel-item {
        height: 400px;
    }
    
    .thumbnail {
        height: 60px;
    }
    
    .nav-tabs .nav-link {
        padding: 10px 15px;
        font-size: 0.9rem;
    }
    
    .content-area {
        padding: 20px;
    }
    
    .project-title h1 {
        font-size: 1.2rem;
    }
    
    .project-badge {
        top: 10px;
        left: 10px;
        padding: 5px 10px;
        font-size: 0.8rem;
    }
    
    .highlight-box {
        padding: 15px;
    }
    
    .floorplan-badge {
        top: 10px;
        right: 10px;
        padding: 5px 10px;
        font-size: 0.8rem;
    }
    
    .info-box {
        margin-bottom: 10px;
    }
} 

@media (max-width: 558px) {
    .nav-tabs .nav-link {
        padding: 10px 20px;
        font-size: 13px;
    }
    .floorplan-header h3{
        font-size: 1.5rem !important;
    }
}


.customer-reps-container {
    background: #ffffff;
    border-radius: 20px;
    padding: 30px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.03);
}
.customer-rep-card {
    border: none;
    border-radius: 12px;
    padding: 25px;
    margin-bottom: 20px;
    transition: all 0.3s ease;
    background-color: #f8fafc;
    position: relative;
    overflow: hidden;
}
.customer-rep-card:before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, #2563eb, #1e40af);
    opacity: 0;
    transition: all 0.3s ease;
}
.customer-rep-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(37,99,235,0.07);
}
.customer-rep-card:hover:before {
    opacity: 1;
}
.customer-rep-card img {
    width: 80px;
    height: 80px;
    object-fit: cover;
    border-radius: 12px;
    margin-bottom: 15px;
    border: 3px solid #fff;
    box-shadow: 0 3px 10px rgba(0,0,0,0.1);
}
.rep-image-container {
    width: 100px;
    height: 100px;
    margin: 0 auto 15px;
    border-radius: 50%;
    overflow: hidden;
    border: 3px solid #e9ecef;
    transition: all 0.3s ease;
}

.customer-rep-card:hover .rep-image-container {
    transform: scale(1.05);
    border-color: #228be6;
}

.rep-image-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 0.3s ease;
}

.customer-rep-card:hover .rep-image-container img {
    transform: scale(1.1);
}

.rep-info {
    margin-top: 15px;
    transition: all 0.3s ease;
}

.rep-name {
    color: #343a40;
    font-size: 1.2rem;
    margin-bottom: 5px;
    transition: color 0.3s ease;
}

.customer-rep-card:hover .rep-name {
    color: #228be6;
}

.rep-position {
    color: #868e96;
    font-size: 0.9rem;
    margin-bottom: 10px;
    transition: all 0.3s ease;
}

.rep-email {
    color: #495057;
    font-size: 0.85rem;
    margin-bottom: 15px;
    transition: all 0.3s ease;
}

.rep-email i {
    transition: transform 0.3s ease;
}

.customer-rep-card:hover .rep-email i {
    transform: translateX(-3px);
}

.video-call-btn {
    background: #228be6;
    color: white;
    border: none;
    border-radius: 8px;
    padding: 10px 20px;
    width: 100%;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    position: relative;
    overflow: hidden;
}

.video-call-btn::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: -100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
    transition: 0.5s;
}

.video-call-btn:hover:not([disabled]) {
    background: #1971c2;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(34,139,230,0.3);
}

.video-call-btn:hover::after {
    left: 100%;
}

.video-call-btn[disabled] {
    background: #adb5bd;
    cursor: not-allowed;
}

.video-call-btn i {
    font-size: 1.1rem;
    transition: transform 0.3s ease;
}

.video-call-btn:hover:not([disabled]) i {
    transform: scale(1.1);
}

.modal-content {
    border-radius: 20px;
    border: none;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.modal-header {
    background: #f8f9fa;
    border-radius: 20px 20px 0 0;
    border-bottom: 1px solid rgba(0,0,0,0.05);
}

.section-title {
    color: #343a40;
    font-size: 1.5rem;
    font-weight: 600;
    position: relative;
    padding-bottom: 5px;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50px;
    height: 3px;
    background: #228be6;
    border-radius: 3px;
}

.btn-close {
    transition: transform 0.3s ease;
}

.btn-close:hover {
    transform: rotate(90deg);
}






  
.carousel-item {
    padding: 0rem 0 !important;
}

.image-container {
    position: relative;
    overflow: hidden;
    cursor: grab;
}

.image-container img {
    transition: transform 0.3s ease-out;
    transform-origin: center;
    max-width: 100%;
    height: auto;
}

.image-container.zoomed img {
    cursor: grabbing;
}

.zoom-controls {
    position: absolute;
    bottom: 10px;
    right: 10px;
    display: flex;
    gap: 5px;
    z-index: 1000;
}

.zoom-controls button {
    background: rgba(255, 255, 255, 0.8);
    border: none;
    border-radius: 4px;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: background-color 0.2s;
}

.zoom-controls button:hover {
    background: rgba(255, 255, 255, 1);
}

.floating-arrow {
    position: fixed;
    right: 30px;
    bottom: 30px;
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #0d6efd, #0dcaf0);
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: 0 5px 15px rgba(13, 110, 253, 0.3);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 999;
}

.floating-arrow i {
    font-size: 24px;
    transition: all 0.3s ease;
}

.floating-arrow:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(13, 110, 253, 0.4);
}

.floating-arrow:hover i {
    animation: bounce 1s infinite;
}

.floating-arrow[data-direction="up"] {
    animation: pulse-up 2s infinite;
}

.floating-arrow[data-direction="down"] {
    animation: pulse-down 2s infinite;
}

.floating-arrow::after {
    content: attr(title);
    position: absolute;
    top: -40px;
    left: 50%;
    transform: translateX(-50%);
    background: rgba(0, 0, 0, 0.7);
    color: white;
    padding: 5px 10px;
    border-radius: 5px;
    font-size: 14px;
    opacity: 0;
    transition: opacity 0.3s ease;
    white-space: nowrap;
}

.floating-arrow:hover::after {
    opacity: 1;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateY(0);
    }
    40% {
        transform: translateY(-8px);
    }
    60% {
        transform: translateY(-4px);
    }
}

@keyframes pulse-up {
    0% {
        box-shadow: 0 0 0 0 rgba(13, 110, 253, 0.7);
        transform: translateY(0);
    }
    50% {
        box-shadow: 0 0 0 10px rgba(13, 110, 253, 0);
        transform: translateY(-5px);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(13, 110, 253, 0);
        transform: translateY(0);
    }
}

@keyframes pulse-down {
    0% {
        box-shadow: 0 0 0 0 rgba(13, 110, 253, 0.7);
        transform: translateY(0);
    }
    50% {
        box-shadow: 0 0 0 10px rgba(13, 110, 253, 0);
        transform: translateY(5px);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(13, 110, 253, 0);
        transform: translateY(0);
    }
}

/* FAQ to Payment Section Connection */
.faq-payment-connection {
    position: relative;
    height: 80px;
    margin-top: -30px;
    margin-bottom: -30px;
    z-index: 1;
    overflow: hidden;
}

.faq-payment-connection::after {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    width: 2px;
    height: 100%;
    background: linear-gradient(to bottom, rgba(13, 110, 253, 0.1), rgba(13, 110, 253, 0.5));
    transform: translateX(-50%);
}

.faq-payment-connection .connection-circle {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 40px;
    height: 40px;
    background-color: #fff;
    border: 2px solid #0d6efd;
    border-radius: 50%;
    transform: translate(-50%, -50%);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2;
    box-shadow: 0 0 0 6px rgba(13, 110, 253, 0.1);
}

.faq-payment-connection .connection-circle i {
    color: #0d6efd;
    font-size: 18px;
}

.land-payment-section {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    padding: 4rem 0;
}

.payment-card {
    background: white;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
    padding: 2.5rem;
    position: relative;
    overflow: hidden;
}

.payment-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: linear-gradient(90deg, #0d6efd, #0dcaf0);
}

.payment-header {
    text-align: center;
    margin-bottom: 3rem;
    position: relative;
}

.payment-header h3 {
    color: #2b2f32;
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.payment-header p {
    color: #6c757d;
    font-size: 1.1rem;
    max-width: 80%;
    margin: 0 auto;
}

.info-item {
    background: #f8f9fa;
    border-radius: 12px;
    padding: 1.25rem;
    margin-bottom: 1.5rem;
    transition: all 0.3s ease;
    height: 125px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items:start;
    gap: 4px;
}

.info-item:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}

.info-item label {
    display: block;
    color: #6c757d;
    font-size: 0.9rem;
    font-weight: 500;
    margin-bottom: 0.5rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.info-item h5 {
    color: #2b2f32;
    font-size: 1.25rem;
    font-weight: 700;
    margin: 0;
}

.form-select {
    border: 2px solid #e9ecef;
    padding: 0.75rem 1rem;
    border-radius: 12px;
    font-size: 1rem;
    font-weight: 500;
    color: #2b2f32;
    transition: all 0.3s ease;
    background-color: white;
}

.form-select:focus {
    border-color: #0d6efd;
    box-shadow: 0 0 0 0.25rem rgba(13, 110, 253, 0.1);
}

.payment-action {
    margin-top: 2.5rem;
}

.payment-action .btn {
    padding: 1rem 2rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-radius: 12px;
    transition: all 0.3s ease;
    background: linear-gradient(90deg, #0d6efd, #0dcaf0);
    border: none;
    position: relative;
    overflow: hidden;
}

.payment-action .btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(13, 110, 253, 0.3);
}

.payment-action .btn i {
    font-size: 1.2rem;
    margin-right: 0.5rem;
    vertical-align: middle;
}

#landPayment {
    color: #0d6efd;
    font-weight: 700;
    font-size: 1.5rem;
}

.price-badge {
    display: inline-block;
    background: rgba(13, 110, 253, 0.1);
    color: #0d6efd;
    padding: 0.25rem 0.75rem;
    border-radius: 5px;
    font-size: 0.85rem;
    font-weight: 500; 
}

@media (max-width: 768px) {
    .payment-card {
        padding: 1.5rem;
    }
    
    .payment-header h3 {
        font-size: 1.5rem;
    }
    
    .payment-header p {
        font-size: 1rem;
    }
    
    .info-item {
        padding: 1rem;
    }
    
    .info-item h5 {
        font-size: 1.1rem;
    }
}

.project-info-card {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-radius: 24px;
    padding: 20px 26px 10px 26px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.08);
    border: 1px solid rgba(255, 255, 255, 0.1);
    position: relative;
    overflow: hidden;
}

.project-info-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: linear-gradient(90deg, #0d6efd, #0dcaf0);
}

.project-title {
    margin-bottom: 2rem;
    position: relative;
}


.project-title h1 {
    font-size: 1.75rem;
    font-weight: 800;
    color: #2b2f32;
    line-height: 1.3;
    margin: 0;
}

.project-info-group {
    background: #f8f9fa;
    border-radius: 16px;
    padding: 1.5rem;
    margin-bottom: 1.5rem;
    transition: all 0.3s ease;
}

.project-info-group:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.05);
}

.project-location p,
.project-property p,
.project-price p,
.project-delivery p {
    display: flex;
    align-items: center;
    margin: 0;
    font-size: 16px;
    color: #6c757d;
}

.project-location i,
.project-property i,
.project-price i,
.project-delivery i {
    color: #0d6efd;
    font-size: 1.25rem;
    margin-right: 0.75rem;
}

.property-values,
.price-values,
.delivery-date {
    color: #2b2f32;
    font-weight: 600;
    margin-left: 0.5rem;
}

.project-status {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    border-radius: 16px;
    padding: 1rem;
    margin-bottom: -0.5rem;
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
    transition: all 0.3s ease;
}

.project-status:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.1);
}

.status-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.5rem;
}

.status-label {
    font-size: 1.1rem;
    font-weight: 600;
    color: #2b2f32;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.status-label i {
    color: #0d6efd;
    font-size: 1.2rem;
}

.status-percentage {
    font-size: 1.5rem;
    font-weight: 700;
    color: #0d6efd; 
}

.status-container {
    display: flex;
    gap: 1.5rem;
    align-items: center;
}

.status-progress-wrapper {
    flex: 1;
    position: relative;
}

.status-progress {
    height: 12px;
    background: rgba(13, 110, 253, 0.1);
    border-radius: 6px;
    overflow: visible;
    position: relative;
}

.status-progress .progress-bar {
    background: linear-gradient(90deg, #0d6efd, #0dcaf0);
    position: relative;
    transition: width 1.5s ease-in-out;
    animation: progressAnimation 2s ease-out;
}

.progress-bar::after {
    content: '35%';
    position: absolute;
    right: -5px;
    top: -25px;
    background: #0d6efd;
    color: white;
    padding: 2px 8px;
    border-radius: 12px;
    font-size: 0.8rem;
    font-weight: 600;
    transform: translateX(50%);
    white-space: nowrap;
    box-shadow: 0 2px 8px rgba(13, 110, 253, 0.3);
    animation: float 2s ease-in-out infinite;
}

.progress-bar::before {
    content: '';
    position: absolute;
    right: 0;
    top: -8px;
    transform: translateX(50%);
    border-left: 6px solid transparent;
    border-right: 6px solid transparent;
    border-top: 6px solid #0d6efd;
}

@keyframes float {
    0%, 100% {
        transform: translateX(50%) translateY(0);
    }
    50% {
        transform: translateX(50%) translateY(-5px);
    }
}

.progress-glow {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
    animation: glowAnimation 2s infinite;
}

.status-image {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    overflow: hidden;
    border: 2px solid #0d6efd;
    animation: borderPulse 2s infinite;
}

.construction-gif {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

@keyframes progressAnimation {
    from {
        width: 0;
    }
    to {
        width: 35%;
    }
}

@keyframes glowAnimation {
    0% {
        transform: translateX(-100%);
    }
    100% {
        transform: translateX(100%);
    }
}

@keyframes borderPulse {
    0% {
        box-shadow: 0 0 0 0 rgba(13, 110, 253, 0.4);
    }
    70% {
        box-shadow: 0 0 0 10px rgba(13, 110, 253, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(13, 110, 253, 0);
    }
}

@keyframes pulse {
    0% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.1);
    }
    100% {
        transform: scale(1);
    }
}

@media (max-width: 768px) {
    .status-container {
        flex-direction: column;
        gap: 1rem;
    }

    .status-image {
        width: 60px;
        height: 60px;
    }
}

 

.project-contact .btn-primary {
    background: linear-gradient(45deg, #0d6efd, #0dcaf0);
    border: none;
    padding: 1rem;
    font-weight: 600;
    border-radius: 12px;
    transition: all 0.3s ease;
}

.project-contact .btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(13, 110, 253, 0.2);
}

.contact-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 65px;
    border-radius: 16px;
    color: #fff;
    font-size: 0.95rem;
    font-weight: 600;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    gap: 12px;
    padding: 0 20px;
    border: none;
    position: relative;
    overflow: hidden;
    text-decoration: none;
}

.contact-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, rgba(255,255,255,0.15), rgba(255,255,255,0));
    opacity: 0;
    transition: opacity 0.3s ease;
}

.contact-btn:hover::before {
    opacity: 1;
}

.btn-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px; 
    border-radius: 10px;
    transition: all 0.3s ease;
}

.contact-btn:hover .btn-icon {
    background: rgba(255, 255, 255, 0.3);
    transform: scale(1.1);
}

.btn-icon i {
    font-size: 1.2rem;
    transition: transform 0.3s ease;
}

.btn-text {
    display: flex;
    align-items: center;
    text-align: center;
}

.btn-text span {
    font-size: 0.9rem;
    font-weight: 600;
    letter-spacing: 0.3px;
}

.contact-btn.appointment {
    background: linear-gradient(135deg, #25D366, #128C7E);
}

.contact-btn.zoom {
    background: linear-gradient(135deg, #2D8CFF, #1A73E8);
}

.contact-btn.mail {
    background: linear-gradient(135deg, #EA4335, #C62828);
}

.contact-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.15);
    color: #fff;
}

@media (max-width: 768px) {
    .contact-btn {
        height: 52px;
        font-size: 0.9rem;
        padding: 0 15px;
    }
    
    .btn-icon {
        width: 28px;
        height: 28px;
    }
    
    .btn-icon i {
        font-size: 1.1rem;
    }
    
    .btn-text span {
        font-size: 0.85rem;
    }
}

.contact-btn.appointment {
    background: #25D366;
}

.contact-btn.zoom {
    background: #2D8CFF;
}

.contact-btn.mail {
    background: #EA4335;
}

.contact-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.15);
    color: #fff;
}

@media (max-width: 768px) {
    .contact-btn span {
        font-size: 0.8rem;
    }
    
    .contact-btn i {
        font-size: 1.1rem;
    }
}

@media (max-width: 768px) {
    .project-info-card {
        padding: 1.5rem;
        margin-top: 2rem;
    }

    .project-title h1 {
        font-size: 1.5rem;
    }
}

/* Floorplan Cards Styling */
.floorplan-header h3 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #2b2f32;
}

.floorplan-card {
    background: #fff;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: rgba(0, 0, 0, 0.25) 0px 0.0625em 0.0625em, rgba(0, 0, 0, 0.25) 0px 0.125em 0.5em, rgba(255, 255, 255, 0.1) 0px 0px 0px 1px inset;
    transition: all 0.3s ease;
}

.floorplan-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.12);
}

.floorplan-image {
    position: relative;
    overflow: hidden;
}

.floorplan-image img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.floorplan-card:hover .floorplan-image img {
    transform: scale(1.05);
}

.floorplan-badge {
    position: absolute;
    top: 15px;
    left: 15px;
    background: linear-gradient(45deg, #0d6efd, #0dcaf0);
    color: white;
    padding: 4px 16px;
    border-radius: 8px;
    font-weight: 600;
    font-size: 0.9rem;
    z-index: 1;
    width: fit-content;
}

.floorplan-content {
    padding: 1.5rem;
}

.floorplan-specs {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.spec-item {
    text-align: center;
    color: #6c757d;
}

.spec-item i {
    font-size: 1.5rem;
    color: #0d6efd;
    margin-bottom: 0.5rem;
    display: block;
}

.spec-item span {
    font-size: 0.9rem;
    display: block;
}

.floorplan-price {
    text-align: center; 
}

.price-label {
    display: block;
    color: #6c757d;
    font-size: 0.9rem;
    margin-bottom: 0.5rem;
}

.price-value {
    font-size: 1.5rem;
    font-weight: 700;
    color: #0d6efd;
}

.floorplan-actions {
    padding-top: 1rem;
    border-top: 1px solid #e9ecef;
}

@media (max-width: 768px) {
    .floorplan-specs {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* Appointment Modal Styling */
.appointment-modal .modal-content {
    border: none;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 15px 50px rgba(0,0,0,0.1);
}

.appointment-modal .modal-header {
    background: linear-gradient(135deg, #0d6efd, #0dcaf0);
    color: white;
    border-bottom: none;
    padding: .9rem !important;
    position: relative;
}

.appointment-modal .modal-title {
    font-weight: 700;
    font-size: 16px;
    padding: 0px 20px;
}

.appointment-modal .modal-header .btn-close {
    color: white;
    background: transparent url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23fff'%3e%3cpath d='M.293.293a1 1 0 011.414 0L8 6.586 14.293.293a1 1 0 111.414 1.414L9.414 8l6.293 6.293a1 1 0 01-1.414 1.414L8 9.414l-6.293 6.293a1 1 0 01-1.414-1.414L6.586 8 .293 1.707a1 1 0 010-1.414z'/%3e%3c/svg%3e") center/1em auto no-repeat;
    opacity: 1;
}

.appointment-modal .modal-body {
    padding: 1.5rem;
    padding-bottom: 0px;
}

.appointment-modal .form-label {
    font-weight: 600;
    font-size: 0.9rem;
    color: #495057;
    margin-bottom: 0.5rem;
}

.appointment-modal .form-control,
.appointment-modal .form-select {
    padding: 0.75rem 1rem;
    border-radius: 10px;
    border: 2px solid #e9ecef;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.appointment-modal .form-control:focus,
.appointment-modal .form-select:focus {
    border-color: #0d6efd;
    box-shadow: 0 0 0 0.25rem rgba(13, 110, 253, 0.1);
}

.appointment-modal .form-control::placeholder {
    color: #adb5bd;
    font-size: 0.9rem;
}

.appointment-modal .input-group-text {
    border-radius: 10px 0 0 10px;
    background-color: #f8f9fa;
    border: 2px solid #e9ecef;
    border-right: none;
}

.appointment-modal .input-group .form-control {
    border-radius: 0 10px 10px 0;
}

.appointment-modal .modal-footer {
    border-top: none;
    padding: 1rem 2rem 1rem;
}

.appointment-modal .btn {
    padding: 0.75rem 1.5rem;
    font-weight: 600;
    border-radius: 10px;
    transition: all 0.3s ease;
}

.appointment-modal .btn-primary {
    background: linear-gradient(135deg, #0d6efd, #0dcaf0);
    border: none;
}

.appointment-modal .btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(13, 110, 253, 0.2);
}

.appointment-modal .btn-secondary {
    background-color: #f8f9fa;
    color: #6c757d;
    border: none;
}

.appointment-modal .date-time-container {
    display: flex;
    gap: 1rem;
}

@media (max-width: 576px) {
    .appointment-modal .date-time-container {
        flex-direction: column;
        gap: 0.5rem;
    }
}

.appointment-modal .form-icon {
    position: absolute;
    top: 50%;
    right: 1rem;
    transform: translateY(-50%);
    color: #0d6efd;
}

.appointment-modal .form-info {
    font-size: 0.8rem;
    color: #6c757d;
    margin-top: 0.25rem;
}

.modal-footer .text-muted a:hover {
    color: #0a58ca;
    text-decoration: underline;
}


#contactFormModal .modal-content {
    border: none;
    border-radius: 18px;
    box-shadow: 0 15px 50px rgba(0,0,0,0.12);
}

#contactFormModal .modal-header {
    background: linear-gradient(135deg, #0d6efd, #0dcaf0);
    color: white;
    border-bottom: none;
    padding: .9rem !important;
    
}
#contactFormModal .modal-header button{
    color: white;
    background: transparent url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23fff'%3e%3cpath d='M.293.293a1 1 0 011.414 0L8 6.586 14.293.293a1 1 0 111.414 1.414L9.414 8l6.293 6.293a1 1 0 01-1.414 1.414L8 9.414l-6.293 6.293a1 1 0 01-1.414-1.414L6.586 8 .293 1.707a1 1 0 010-1.414z'/%3e%3c/svg%3e") center/1em auto no-repeat;
    opacity: 1;
}
#contactFormModal .modal-title {
    font-weight: 600;
    font-size: 16px;
}

#contactFormModal .modal-body {
    padding: 1.5rem;
    padding-bottom: 0px;
}

#contactFormModal .form-label {
    font-weight: 500;
    font-size: 0.9rem;
    color: #495057;
    margin-bottom: 0.5rem;
}

#contactFormModal .form-control,
#contactFormModal .input-group-text {
    padding: 0.5rem 1rem;
    border-radius: 10px;
    border: 2px solid #e9ecef;
    font-size: 1rem;
    transition: all 0.3s ease;
}

#contactFormModal .input-group .form-control {
    border-top-left-radius: 0;
    border-bottom-left-radius: 0;
}

#contactFormModal .input-group-text {
    border-right: none;
    background-color: #f8f9fa;
    border-top-right-radius: 0;
    border-bottom-right-radius: 0;
}

#contactFormModal .form-control:focus {
    border-color: #EA4335;
    box-shadow: 0 0 0 0.25rem rgba(234, 67, 53, 0.1);
}

#contactFormModal .form-control.is-invalid {
    border-color: #dc3545;
}

#contactFormModal .form-text {
    font-size: 0.8rem;
    color: #6c757d;
    margin-top: 0.25rem;
}

#contactFormModal .text-danger {
    color: #dc3545;
}

#contactFormModal .form-check-input {
    width: 1.1rem;
    height: 1.1rem;
}

#contactFormModal .form-check-input:checked {
    background-color: #EA4335;
    border-color: #EA4335;
}

#contactFormModal .form-check-input:focus {
    border-color: #EA4335;
    box-shadow: 0 0 0 0.25rem rgba(234, 67, 53, 0.1);
}

#contactFormModal .form-check-label {
    font-size: 0.9rem;
}

#contactFormModal .modal-footer {
    padding: 1rem 1.75rem 1.75rem;
    border-top: none;
}

#contactFormModal .btn-primary {
    background: linear-gradient(135deg, #0d6efd, #0dcaf0); 
    border: none;
    padding: 0.75rem 1.5rem;
    font-weight: 600;
    border-radius: 10px;
    transition: all 0.3s ease;
}

#contactFormModal .btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(234, 67, 53, 0.3);
}

#contactFormModal .btn-secondary {
    background-color: #f8f9fa;
    color: #6c757d;
    border: none;
    padding: 0.75rem 1.5rem;
    font-weight: 600;
    border-radius: 10px;
}

#contactFormModal .btn-secondary:hover {
    background-color: #e9ecef;
}

.floating-arrow[data-direction="left"]::after {
    content: 'Sayfanın Başına Dön';
}

.floating-arrow[data-direction="left"] {
    animation: pulse-left 2s infinite;
}

.floating-arrow[data-direction="down"] {
    animation: pulse-down 2s infinite;
}

@keyframes pulse-down {
    0% {
        box-shadow: 0 0 0 0 rgba(13, 110, 253, 0.7);
        transform: translateY(0);
    }
    50% {
        box-shadow: 0 0 0 10px rgba(13, 110, 253, 0);
        transform: translateY(5px);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(13, 110, 253, 0);
        transform: translateY(0);
    }
}

@keyframes pulse-left {
    0% {
        box-shadow: 0 0 0 0 rgba(13, 110, 253, 0.7);
        transform: translateX(0);
    }
    50% {
        box-shadow: 0 0 0 10px rgba(13, 110, 253, 0);
        transform: translateX(-5px);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(13, 110, 253, 0);
        transform: translateX(0);
    }
}

.carousel-item {
transition: transform 1s ease-in-out;
}

.customer-rep-card {
    background: white;
    border-radius: 15px;
    padding: 1.5rem;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    position: relative;
    transition: all 0.3s ease;
}

.customer-rep-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.1);
}

.status-indicator {
    position: absolute;
    top: 1rem;
    right: 1rem;
    width: 12px;
    height: 12px;
    border-radius: 50%;
    animation: pulse 2s infinite;
}

.status-indicator.available {
    background-color: #25D366;
    box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7);
}

.status-indicator.busy {
    background-color: #FF3B30;
    box-shadow: 0 0 0 0 rgba(255, 59, 48, 0.7);
}

@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7);
    }
    70% {
        box-shadow: 0 0 0 10px rgba(37, 211, 102, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
    }
}

.status-indicator.busy {
    animation: pulse-red 2s infinite;
}

@keyframes pulse-red {
    0% {
        box-shadow: 0 0 0 0 rgba(255, 59, 48, 0.7);
    }
    70% {
        box-shadow: 0 0 0 10px rgba(255, 59, 48, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(255, 59, 48, 0);
    }
}

.rep-image-container {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    overflow: hidden;
    margin: 0 auto 1rem;
    border: 3px solid #f8f9fa;
}

.rep-image-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.rep-info {
    text-align: center;
}

.rep-name {
    font-size: 1.1rem;
    font-weight: 600;
    color: #2b2f32;
    margin-bottom: 0.25rem;
}

.rep-position {
    font-size: 0.9rem;
    color: #6c757d;
    margin-bottom: 0.5rem;
}

.rep-email {
    font-size: 0.85rem;
    color: #6c757d;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.rep-email i {
    color: #0d6efd;
}

.video-call-btn {
    background: linear-gradient(135deg, #0d6efd, #0dcaf0);
    border: none;
    color: white;
    padding: 0.75rem 1.5rem;
    border-radius: 10px;
    font-weight: 500;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    width: 100%;
    transition: all 0.3s ease;
}

.video-call-btn:hover:not(:disabled) {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(13, 110, 253, 0.2);
}

.video-call-btn:disabled {
    background: #e9ecef;
    color: #6c757d;
    cursor: not-allowed;
}

.video-call-btn i {
    font-size: 1.1rem;
}

/* FAQ Section Styling */
.faq-section { 
    background-color: #f8f9fa;
    position: relative;
    overflow: hidden;
    border-radius: 20px;
    margin: 50px 0; 
}

.faq-section::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(13, 110, 253, 0.05) 0%, rgba(255,255,255,0) 70%);
    border-radius: 50%;
    z-index: 0;
}

.faq-section::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 200px;
    height: 200px;
    background: radial-gradient(circle, rgba(13, 110, 253, 0.05) 0%, rgba(255,255,255,0) 70%);
    border-radius: 50%;
    z-index: 0;
}

.faq-section .section-title h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #333;
    margin-bottom: 15px;
    position: relative;
    display: inline-block;
}

.faq-section .section-title h2:after {
    content: '';
    display: block;
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, #0d6efd, #6ea8fe);
    margin: 15px auto 0;
    border-radius: 2px;
}

.faq-section .badge {
    font-size: 0.85rem;
    letter-spacing: 1px;
    font-weight: 600;
    background: linear-gradient(45deg, #0d6efd, #4d94ff);
    box-shadow: 0 5px 15px rgba(13, 110, 253, 0.2);
    transform: translateY(0);
    transition: all 0.3s ease;
}

.faq-section .badge:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(13, 110, 253, 0.3);
}

.faq-section .custom-accordion .accordion-item {
    border: 1px solid rgba(0,0,0,0.08);
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
    transition: all 0.3s ease;
    margin-bottom: 16px;
}

.faq-section .custom-accordion .accordion-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.08);
}

.faq-section .custom-accordion .accordion-button {
    padding: 20px 25px;
    font-weight: 600;
    font-size: 1.05rem;
    color: #333;
    background-color: #fff;
    border: none;
    box-shadow: none;
    display: flex;
    align-items: center;
}

.faq-section .custom-accordion .accordion-button .question-icon {
    background-color: rgba(13, 110, 253, 0.1);
    width: 36px;
    height: 36px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 15px;
    transition: all 0.3s ease;
}

.faq-section .custom-accordion .accordion-button .question-icon i {
    color: #0d6efd;
    font-size: 1.2rem;
    margin: 0 !important;
}

.faq-section .custom-accordion .accordion-button:not(.collapsed) {
    color: #0d6efd;
    background-color: rgba(13, 110, 253, 0.05);
}

.faq-section .custom-accordion .accordion-button:not(.collapsed) .question-icon {
    background-color: #0d6efd;
}

.faq-section .custom-accordion .accordion-button:not(.collapsed) .question-icon i {
    color: #fff;
}

.faq-section .custom-accordion .accordion-button:focus {
    box-shadow: none;
    border-color: rgba(13, 110, 253, 0.25);
}

.faq-section .custom-accordion .accordion-button::after {
    background-size: 18px;
    transition: all 0.3s ease;
    opacity: 0.7;
}

.faq-section .custom-accordion .accordion-button:not(.collapsed)::after {
    transform: rotate(-180deg);
    opacity: 1;
}

.faq-section .custom-accordion .accordion-body {
    padding: 20px 25px 25px 76px;
    line-height: 1.7;
    color: #555;
    background-color: #fff;
    font-size: 0.98rem;
    border-top: 1px solid rgba(0,0,0,0.05);
}

@media (max-width: 768px) {
    .faq-section {
        padding: 60px 0;
    }
    
    .faq-section .section-title h2 {
        font-size: 2rem;
    }
    
    .faq-section .custom-accordion .accordion-body {
        padding: 20px 25px 25px 25px;
    }
}

.similar-projects {
    background-color: #f8f9fa;
}

.title-separator {
    width: 80px;
    height: 3px;
    background: linear-gradient(to right, #5a7fff, #37cfdc);
}

.project-card {
    border-bottom-right-radius: 8%;
    border-top-left-radius: 8%;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    background-color: white;
    padding: 16px;
}

.project-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.15);
}

.project-image {
    position: relative;
    height: 220px;
    overflow: hidden;
}

.project-image img {
    width: 100%;
    height: 100%;
    /*Sonradan eklenecek:  object-fit: cover;   */
    transition: transform 0.5s ease;
    border-top-left-radius: 8%;
}

.project-card:hover .project-image img {
    transform: scale(1.05);
}

.project-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.project-card:hover .project-overlay {
    opacity: 1;
}

.project-content {
    padding: 20px;
}

.project-title {
    font-size: 1.25rem;
    margin-bottom: 15px;
    font-weight: 600;
    color: #333;
}

.project-info {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.project-info > div {
    display: flex;
    align-items: center;
    color: #666;
    font-size: 0.9rem;
}

.project-info i {
    width: 20px;
    margin-right: 8px;
    color: #5a7fff;
}

.btn-primary {
    background: linear-gradient(to right, #5a7fff, #37cfdc);
    border: none;
    padding: 10px 25px;
    border-radius: 50px;
    font-weight: 500;
    transition: all 0.3s ease;
}

.btn-primary:hover {
    box-shadow: 0 5px 15px rgba(90, 127, 255, 0.4);
    transform: translateY(-2px);
}

.btn-outline-light {
    border: 2px solid white;
    color: white;
    background: transparent;
    border-radius: 50px;
    padding: 8px 20px;
    transition: all 0.3s ease;
}

.btn-outline-light:hover {
    background: white;
    color: #5a7fff;
}

/* Apartment Detail Modal Styles */
.apartment-details {
    background: #fff;
    padding: 1.5rem;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.detail-item {
    display: flex;
    align-items: center;
    margin-bottom: 1.25rem;
    padding-bottom: 1.25rem;
    border-bottom: 1px solid #eee;
}

.detail-item:last-child {
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom: none;
}

.detail-item i {
    font-size: 1.5rem;
    color: #0d6efd;
    margin-right: 1rem;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(13, 110, 253, 0.1);
    border-radius: 8px;
}

.detail-item h6 {
    margin: 0;
    font-size: 0.9rem;
    color: #666;
    font-weight: 500;
}

.detail-item p {
    margin: 0.25rem 0 0;
    font-size: 1rem;
    color: #333;
    font-weight: 600;
}

.apartment-features {
    background: #fff;
    padding: 1.5rem;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.apartment-features h6 {
    color: #333;
    font-weight: 600;
    font-size: 1.1rem;
}

.feature-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0.75rem;
}

.feature-list li {
    display: flex;
    align-items: center;
    font-size: 0.95rem;
    color: #444;
}

.feature-list li i {
    color: #0d6efd;
    margin-right: 0.5rem;
    font-size: 1rem;
}

.apartment-image {
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

.apartment-image img {
    width: 100%;
    height: 300px;
    transition: transform 0.3s ease;
}

.apartment-image:hover img {
    transform: scale(1.02);
}

.payment-plan {
    background: #fff;
    padding: 1.5rem;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.payment-plan h6 {
    color: #333;
    font-weight: 600;
    font-size: 1.1rem;
}

.plan-details {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.plan-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.75rem;
    background: #f8f9fa;
    border-radius: 8px;
}

.plan-label {
    color: #666;
    font-size: 0.95rem;
}

.plan-value {
    color: #333;
    font-weight: 600;
    font-size: 1.1rem;
}

.payment-plan .btn-primary {
    padding: 0.75rem 1.5rem;
    font-weight: 500;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.payment-plan .btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(13, 110, 253, 0.3);
}

/* Modal Header Styles */
.modal-header {
    border-bottom: none;
    padding: 1.5rem;
}

.modal-title {
    font-size: 1.5rem;
    font-weight: 600;
    color: #333;
}

.modal-title i {
    color: #0d6efd;
}

/* Responsive Styles */
@media (max-width: 768px) {
    .feature-list {
        grid-template-columns: 1fr;
    }
    
    .detail-item {
        margin-bottom: 1rem;
        padding-bottom: 1rem;
    }
    
    .detail-item i {
        font-size: 1.25rem;
        width: 35px;
        height: 35px;
    }
    
    .modal-header {
        padding: 1rem;
    }
    
    .modal-title {
        font-size: 1.25rem;
    }
}
