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

/* SWIPER TEMEL YAPILAR */
.swiper {
    margin: 0 auto;
    position: relative;
    overflow: hidden;
    list-style: none;
    padding: 0;
    z-index: 1;
    width: 100%;
    height: auto;
    border-radius: 20px;
}

.swiper-wrapper {
    position: relative;
    width: 100%;
    height: 100%;
    z-index: 1;
    display: flex;
    transition-property: transform;
    box-sizing: content-box;
    align-items: stretch;
    flex-direction: row;
}

.swiper-slide {
    flex-shrink: 0;
    width: 100%;
    height: 100%;
    position: relative;
    transition-property: transform;
    display: flex;
    align-items: stretch;
    justify-content: center;
}

.swiper-autoplay-paused .swiper-slide {
    transition-delay: 0ms;
}

.swiper-slide-duplicate {
    pointer-events: none;
}

/* NAVIGATION BUTTONS */
.swiper-button-prev,
.swiper-button-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 10;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #f4f4f4;
    width: clamp(40px, 5vw, 50px);
    height: clamp(40px, 5vw, 50px);
    background: #2c2c2c;
    border: 1px solid #eb6016;
    border-radius: 50%;
    transition: all 0.3s ease;
    opacity: 1;
}

.swiper-button-prev {
    left: clamp(-25px, -3vw, -30px);
}

.swiper-button-next {
    right: clamp(-25px, -3vw, -30px);
}

.swiper-button-prev:hover,
.swiper-button-next:hover {
    color: #fff;
    background: #3e3e3e;
    border-color: #eb6016;
    transform: translateY(-50%) scale(1.05);
}

.swiper-button-prev::after,
.swiper-button-next::after {
    content: '';
    width: 0;
    height: 0;
    border-style: solid;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    margin: auto;
}

.swiper-button-prev::after {
    border-width: 6px 10px 6px 0;
    border-color: transparent currentColor transparent transparent;
}

.swiper-button-next::after {
    border-width: 6px 0 6px 10px;
    border-color: transparent transparent transparent currentColor;
}

.swiper-button-next.swiper-button-disabled,
.swiper-button-prev.swiper-button-disabled {
    opacity: 0.35;
    cursor: auto;
    pointer-events: none;
}

.swiper-pagination {
    display: none;
}

/* REVIEWS SECTION */
.altinuc-reviews-section {
    background: #1a1a1a;
    color: #f4f4f4;
    padding: 40px 20px;
    width: 100%;
    max-width: 2000px;
    margin: 0 auto;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    position: relative;
    overflow: hidden;
}

.altinuc-reviews-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="25" cy="25" r="0.5" fill="%23000000" opacity="0.02"/><circle cx="75" cy="75" r="0.3" fill="%23000000" opacity="0.015"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
    pointer-events: none;
}

.altinuc-reviews-container {
    max-width: 100%;
    margin: 0 auto;
    padding: 5px 20px;
    position: relative;
    z-index: 1;
}

.altinuc-reviews-header {
    text-align: center;
    margin-bottom: 30px;
}

.altinuc-reviews-title {
    font-size: clamp(1.6rem, 2.5vw, 3rem);
    font-weight: 700;
    padding: 5px;
    color: #f4f4f4;
    margin: 0 0 3px 0;
    background: linear-gradient(135deg, #eb6016 0%, #ff7b2e 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.altinuc-reviews-subtitle {
    font-size: clamp(1rem, 2vw, 1.2rem);
    color: #f4f4f4;
    max-width: 800px;
    margin: 0 auto 30px;
    line-height: 1.6;
}

.altinuc-rating-display {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    background: #2c2c2c;
    border-left: 7px solid #eb6016;
    color: #f4f4f4;
    padding: 20px 30px;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(235, 96, 22, 0.2);
    text-decoration: none;
    transition: all 0.3s ease;
    position: relative;
}

.altinuc-rating-display:hover {
    background: #3e3e3e;
    border-color: #ff7b2e;
    transform: translateY(-2px);
    box-shadow: 0 6px 25px rgba(235, 96, 22, 0.3);
}

.altinuc-rating-display .altinuc-stars {
    font-size: clamp(1.1rem, 2vw, 1.3rem);
    letter-spacing: 2px;
    color: #ffd700;
    font-weight: 700;
    font-family: "Apple Color Emoji", "Segoe UI Emoji", "Noto Color Emoji", sans-serif;
}

.altinuc-rating-display .altinuc-rating-text {
    font-weight: 600;
    color: #f4f4f4;
    font-size: clamp(0.9rem, 1.5vw, 1rem);
}

.altinuc-rating-display .altinuc-google-icon {
    width: clamp(24px, 3vw, 28px);
    height: clamp(24px, 3vw, 28px);
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path fill="%234285f4" d="M22.56 12.25c0-.78-.07-1.53-.2-2.25H12v4.26h5.92c-.26 1.37-1.04 2.53-2.21 3.31v2.77h3.57c2.08-1.92 3.28-4.74 3.28-8.09z"/><path fill="%2334a853" d="M12 23c2.97 0 5.46-.98 7.28-2.66l-3.57-2.77c-.98.66-2.23 1.06-3.71 1.06-2.86 0-5.29-1.93-6.16-4.53H2.18v2.84C3.99 20.53 7.7 23 12 23z"/><path fill="%23fbbc05" d="M5.84 14.09c-.22-.66-.35-1.36-.35-2.09s.13-1.43.35-2.09V7.07H2.18C1.43 8.55 1 10.22 1 12s.43 3.45 1.18 4.93l2.85-2.22.81-.62z"/><path fill="%23ea4335" d="M12 5.38c1.62 0 3.06.56 4.21 1.64l3.15-3.15C17.45 2.09 14.97 1 12 1 7.7 1 3.99 3.47 2.18 7.07l3.66 2.84c.87-2.6 3.3-4.53 6.16-4.53z"/></svg>') no-repeat center;
    background-size: contain;
    flex-shrink: 0;
}

/* SWIPER CONTAINER */
.altinucSwiper-container {
    width: 100%;
    max-width: clamp(320px, 95vw, 1800px);
    height: auto;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: visible;
    padding: 20px 0;
}

/* REVIEW CARD */
.altinuc-review-card {
    background: #2c2c2c;
    border-radius: 20px;
    padding: 25px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.12);
    border: 1px solid #eb6016;
    color: #f4f4f4;
    height: clamp(280px, 35vh, 350px);
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    position: relative;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.altinuc-review-card:hover {
    background: #3e3e3e;
    box-shadow: 0 12px 40px rgba(235, 96, 22, 0.15);
}

.altinuc-review-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    /*background: linear-gradient(135deg, #eb6016 0%, #ff7b2e 100%);*/
    border-left: 5px solid #eb6016;
    box-sizing: border-box;
    border-radius: 9px;    
}

.altinuc-review-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
}

.altinuc-reviewer-avatar {
    width: clamp(48px, 6vw, 56px);
    height: clamp(48px, 6vw, 56px);
    border-radius: 50%;
    background: linear-gradient(135deg, #eb6016 0%, #ff7b2e 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: 600;
    font-size: clamp(1rem, 2vw, 1.2rem);
    flex-shrink: 0;
}

.altinuc-reviewer-info h3 {
    margin: 0 0 5px 0;
    font-size: clamp(1rem, 2vw, 1.2rem);
    font-weight: 600;
    line-height: 1.2;
}

.altinuc-review-date {
    font-size: clamp(0.8rem, 1.5vw, 0.9rem);
    color: rgba(199, 199, 199, 0.7);
}

.altinuc-review-rating {
    margin-bottom: 15px;
}

.altinuc-review-rating .altinuc-stars {
    font-size: clamp(1rem, 2vw, 1.2rem);
    letter-spacing: 1px;
    color: #ffd700;
    font-weight: 700;
    font-family: "Apple Color Emoji", "Segoe UI Emoji", "Noto Color Emoji", sans-serif;
}

.altinuc-review-text {
    color: #f4f4f4;
    line-height: 1.6;
    font-size: clamp(0.85rem, 1.5vw, 1rem);
    overflow-y: auto;
    flex-grow: 1;
    padding-right: 8px;
}

.altinuc-review-text::-webkit-scrollbar {
    width: 6px;
}

.altinuc-review-text::-webkit-scrollbar-track {
    background: transparent;
}

.altinuc-review-text::-webkit-scrollbar-thumb {
    background: #404040;
    border-radius: 3px;
}

.altinuc-review-text::-webkit-scrollbar-thumb:hover {
    background: #505050;
}

.altinuc-google-logo {
    position: absolute;
    top: 20px;
    right: 20px;
    width: clamp(20px, 3vw, 26px);
    height: clamp(20px, 3vw, 26px);
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path fill="%234285f4" d="M22.56 12.25c0-.78-.07-1.53-.2-2.25H12v4.26h5.92c-.26 1.37-1.04 2.53-2.21 3.31v2.77h3.57c2.08-1.92 3.28-4.74 3.28-8.09z"/><path fill="%2334a853" d="M12 23c2.97 0 5.46-.98 7.28-2.66l-3.57-2.77c-.98.66-2.23 1.06-3.71 1.06-2.86 0-5.29-1.93-6.16-4.53H2.18v2.84C3.99 20.53 7.7 23 12 23z"/><path fill="%23fbbc05" d="M5.84 14.09c-.22-.66-.35-1.36-.35-2.09s.13-1.43.35-2.09V7.07H2.18C1.43 8.55 1 10.22 1 12s.43 3.45 1.18 4.93l2.85-2.22.81-.62z"/><path fill="%23ea4335" d="M12 5.38c1.62 0 3.06.56 4.21 1.64l3.15-3.15C17.45 2.09 14.97 1 12 1 7.7 1 3.99 3.47 2.18 7.07l3.66 2.84c.87-2.6 3.3-4.53 6.16-4.53z"/></svg>') no-repeat center;
    background-size: contain;
    opacity: 0.8;
}

/* CTA SECTION */
.altinuc-cta-section {
    text-align: center;
    margin-top: 50px;
    padding: 30px;
    background: #2c2c2c;
    border: 1px solid #eb6016;
    border-radius: 12px;
}

.altinuc-cta-title {
    font-size: clamp(1.3rem, 3vw, 1.8rem);
    font-weight: 600;
    color: white;
    margin: 0 0 15px 0;
}

.altinuc-cta-subtitle {
    margin-bottom: 25px;
    opacity: 0.9;
    font-size: clamp(1rem, 2vw, 1.1rem);
}

.altinuc-cta-button {
    background: #3e3e3e;
    color: #f4f4f4;
    padding: 15px 30px;
    border-left: 7px solid #eb6016;
    border-radius: 15px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-size: clamp(0.9rem, 2vw, 1rem);
}

.altinuc-cta-button:hover {
    background: #4f4f4f;
    border-color: #ff7b2e;
    transform: translateY(-2px);
    color: white;
}

.altinuc-cta-button .altinuc-google-icon {
    width: clamp(20px, 3vw, 24px);
    height: clamp(20px, 3vw, 24px);
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path fill="%234285f4" d="M22.56 12.25c0-.78-.07-1.53-.2-2.25H12v4.26h5.92c-.26 1.37-1.04 2.53-2.21 3.31v2.77h3.57c2.08-1.92 3.28-4.74 3.28-8.09z"/><path fill="%2334a853" d="M12 23c2.97 0 5.46-.98 7.28-2.66l-3.57-2.77c-.98.66-2.23 1.06-3.71 1.06-2.86 0-5.29-1.93-6.16-4.53H2.18v2.84C3.99 20.53 7.7 23 12 23z"/><path fill="%23fbbc05" d="M5.84 14.09c-.22-.66-.35-1.36-.35-2.09s.13-1.43.35-2.09V7.07H2.18C1.43 8.55 1 10.22 1 12s.43 3.45 1.18 4.93l2.85-2.22.81-.62z"/><path fill="%23ea4335" d="M12 5.38c1.62 0 3.06.56 4.21 1.64l3.15-3.15C17.45 2.09 14.97 1 12 1 7.7 1 3.99 3.47 2.18 7.07l3.66 2.84c.87-2.6 3.3-4.53 6.16-4.53z"/></svg>') no-repeat center;
    background-size: contain;
    flex-shrink: 0;
}

/* RESPONSIVE BREAKPOINTS */

/* Mobil: 320px - 479px */
@media (max-width: 479px) {
    .altinuc-reviews-section {
        padding: 20px 10px;
    }
    
    .altinuc-reviews-container {
        padding: 0 10px;
    }
    
    .altinuc-reviews-header {
        margin-bottom: 25px;
    }
    
    .altinuc-rating-display {
        flex-direction: column;
        gap: 10px;
        padding: 15px 20px;
        text-align: center;
    }
    
    .altinuc-review-card {
        height: 280px;
        padding: 20px;
        margin: 0 5px;
    }
    
    .altinuc-review-header {
        gap: 12px;
        margin-bottom: 15px;
    }
    
    .altinucSwiper-container {
        max-width: 100%;
        padding: 15px 0;
    }
    
    .swiper-button-prev,
    .swiper-button-next {
        display: none;
    }
    
    .altinuc-cta-section {
        padding: 20px 15px;
        margin-top: 30px;
    }
}

/* Telefon: 480px - 767px */
@media (min-width: 480px) and (max-width: 767px) {
    .altinuc-reviews-section {
        padding: 25px 15px;
    }
    
    .altinuc-reviews-container {
        padding: 0 15px;
    }
    
    .altinuc-rating-display {
        flex-direction: row;
        gap: 12px;
        padding: 16px 25px;
    }
    
    .altinuc-review-card {
        height: 300px;
        padding: 22px;
        margin: 0 8px;
    }
    
    .altinucSwiper-container {
        max-width: 95%;
        padding: 18px 0;
    }
    
    .swiper-button-prev {
        left: -35px;
    }
    
    .swiper-button-next {
        right: -35px;
    }
    
    .altinuc-cta-section {
        padding: 25px 20px;
        margin-top: 35px;
    }
}

/* Tablet: 768px - 1023px */
@media (min-width: 768px) and (max-width: 1023px) {
    .altinuc-reviews-section {
        padding: 35px 20px;
    }
    
    .altinuc-reviews-header {
        margin-bottom: 35px;
    }
    
    .altinuc-rating-display {
        gap: 15px;
        padding: 18px 28px;
    }
    
    .altinuc-review-card {
        height: 320px;
        padding: 24px;
        margin: 0 10px;
    }
    
    .altinucSwiper-container {
        max-width: 90%;
        padding: 20px 0;
    }
    
    .swiper-button-prev {
        left: -40px;
    }
    
    .swiper-button-next {
        right: -40px;
    }
    
    .altinuc-cta-section {
        padding: 28px 25px;
        margin-top: 40px;
    }
}

/* Desktop: 1024px+ */
@media (min-width: 1024px) {
    .swiper-button-prev::after,
    .swiper-button-next::after {
        font-size: 2.5rem;
    }
    
    .altinuc-reviews-section {
        padding: 40px 25px;
    }
    
    .altinuc-reviews-header {
        margin-bottom: 40px;
    }
    
    .altinuc-rating-display {
        gap: 16px;
        padding: 20px 30px;
    }
    
    .altinuc-review-card {
        height: 330px;
        padding: 25px;
        margin: 0 12px;
    }
    
    .altinucSwiper-container {
        max-width: 85%;
        padding: 22px 0;
    }
    
    .swiper-button-prev {
        left: -45px;
    }
    
    .swiper-button-next {
        right: -45px;
    }
    
    .altinuc-cta-section {
        padding: 30px 30px;
        margin-top: 45px;
    }
}

/* Large Desktop: 1366px+ */
@media (min-width: 1366px) {
    .altinuc-reviews-section {
        padding: 45px 30px;
    }
    
    .altinuc-reviews-header {
        margin-bottom: 45px;
    }
    
    .altinuc-rating-display {
        gap: 18px;
        padding: 22px 35px;
    }
    
    .altinuc-review-card {
        height: 340px;
        padding: 26px;
        margin: 0 15px;
    }
    
    .altinucSwiper-container {
        max-width: 80%;
        padding: 25px 0;
    }
    
    .swiper-button-prev {
        left: -50px;
    }
    
    .swiper-button-next {
        right: -50px;
    }
    
    .altinuc-cta-section {
        padding: 32px 35px;
        margin-top: 50px;
    }
}

/* 4K: 1920px+ */
@media (min-width: 1920px) {
    .altinuc-reviews-section {
        padding: 50px 40px;
    }
    
    .altinuc-reviews-header {
        margin-bottom: 50px;
    }
    
    .altinuc-rating-display {
        gap: 20px;
        padding: 25px 40px;
    }
    
    .altinuc-review-card {
        height: 350px;
        padding: 28px;
        margin: 0 18px;
    }
    
    .altinucSwiper-container {
        max-width: 75%;
        padding: 30px 0;
    }
    
    .swiper-button-prev {
        left: -55px;
    }
    
    .swiper-button-next {
        right: -55px;
    }
    
    .altinuc-cta-section {
        padding: 35px 40px;
        margin-top: 55px;
    }
}

/* 8K: 2560px+ */
@media (min-width: 2560px) {
    .altinuc-reviews-section {
        padding: 60px 50px;
        max-width: 2400px;
    }
    
    .altinuc-reviews-header {
        margin-bottom: 60px;
    }
    
    .altinuc-rating-display {
        gap: 25px;
        padding: 30px 50px;
    }
    
    .altinuc-review-card {
        height: 380px;
        padding: 32px;
        margin: 0 22px;
    }
    
    .altinucSwiper-container {
        max-width: 70%;
        padding: 35px 0;
    }
    
    .swiper-button-prev {
        left: -65px;
    }
    
    .swiper-button-next {
        right: -65px;
    }
    
    .altinuc-cta-section {
        padding: 40px 50px;
        margin-top: 65px;
    }
}