/* ARGE VİNÇ Ana Sayfa Özel CSS */
:root {
    --ar-primary-color: #e63946;
    --ar-secondary-color: #1d3557;
    --ar-light-color: #f1faee;
    --ar-accent-color: #a8dadc;
    --ar-dark-color: #1d3557;
    --ar-gradient-primary: linear-gradient(135deg, #e63946 0%, #d62b39 100%);
    --ar-gradient-dark: linear-gradient(135deg, #1d3557 0%, #162a45 100%);
}

/* Ana Hero Bölümü */
.ar-hero-section {
    min-height: 100vh;
    position: relative;
    background-color: #111;
    overflow: hidden;
    display: flex;
    align-items: center;
}

.ar-hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

.ar-hero-bg video {
    position: absolute;
    top: 50%;
    left: 50%;
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    transform: translateX(-50%) translateY(-50%);
    object-fit: cover;
    opacity: 0.6;
}

.ar-hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    z-index: 1;
}

.ar-hero-content {
    position: relative;
    z-index: 2;
}

.ar-hero-subtitle {
    font-size: 1.25rem;
    font-weight: 500;
    color: var(--ar-primary-color);
    margin-bottom: 1rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    animation: fadeInUp 1s ease;
}

.ar-hero-title {
    font-size: 5rem;
    font-weight: 800;
    color: #fff;
    margin-bottom: 1.5rem;
    line-height: 1.1;
    animation: fadeInUp 1s ease 0.2s;
    animation-fill-mode: both;
}

.ar-hero-title span {
    display: block;
    color: var(--ar-primary-color);
}

.ar-hero-description {
    font-size: 1.25rem;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 2rem;
    max-width: 600px;
    animation: fadeInUp 1s ease 0.4s;
    animation-fill-mode: both;
}

.ar-hero-btns {
    display: flex;
    gap: 1rem;
    animation: fadeInUp 1s ease 0.6s;
    animation-fill-mode: both;
}

.ar-hero-btn {
    display: inline-flex;
    align-items: center;
    padding: 1rem 2rem;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1rem;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.ar-hero-btn-primary {
    background-color: var(--ar-primary-color);
    color: #fff;
    box-shadow: 0 6px 15px rgba(230, 57, 70, 0.3);
}

.ar-hero-btn-primary:hover {
    background-color: #d62b39;
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(230, 57, 70, 0.4);
}

.ar-hero-btn-secondary {
    background-color: transparent;
    color: #fff;
    border: 2px solid rgba(255, 255, 255, 0.3);
}

.ar-hero-btn-secondary:hover {
    background-color: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.5);
    transform: translateY(-3px);
}

.ar-hero-btn i {
    margin-right: 8px;
    font-size: 1.2rem;
}

/* Scrolling Services */
.ar-scrolling-services {
    padding: 6rem 0;
    background-color: var(--ar-dark-color);
    overflow: hidden;
    position: relative;
}

.ar-scrolling-services::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 1px;
    background: linear-gradient(90deg, rgba(255,255,255,0) 0%, rgba(255,255,255,0.3) 50%, rgba(255,255,255,0) 100%);
}

.ar-scrolling-services::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 1px;
    background: linear-gradient(90deg, rgba(255,255,255,0) 0%, rgba(255,255,255,0.3) 50%, rgba(255,255,255,0) 100%);
}

.ar-scrolling-title {
    font-size: 3rem;
    font-weight: 700;
    color: #fff;
    text-align: center;
    margin-bottom: 5rem;
    position: relative;
}

.ar-scrolling-title::after {
    content: "";
    position: absolute;
    bottom: -20px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background-color: var(--ar-primary-color);
}

.ar-scrolling-wrapper {
    display: flex;
    width: 300%;
    animation: scroll 60s linear infinite;
}

.ar-scrolling-item {
    display: flex;
    align-items: center;
    margin: 0 2rem;
    opacity: 0.7;
    transition: all 0.3s ease;
}

.ar-scrolling-item:hover {
    opacity: 1;
}

.ar-scrolling-item-number {
    font-size: 6rem;
    font-weight: 800;
    color: rgba(255, 255, 255, 0.1);
    margin-right: 2rem;
}

.ar-scrolling-item-title {
    font-size: 4rem;
    font-weight: 700;
    color: #fff;
    white-space: nowrap;
    position: relative;
}

.ar-scrolling-item-title::after {
    content: "";
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 0;
    height: 3px;
    background-color: var(--ar-primary-color);
    transition: width 0.3s ease;
}

.ar-scrolling-item:hover .ar-scrolling-item-title::after {
    width: 100%;
}

@keyframes scroll {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-66.6666%);
    }
}

/* Numbered Services */
.ar-numbered-services {
    padding: 6rem 0;
    background-color: #f8f9fa;
    position: relative;
}

.ar-numbered-title {
    font-size: 3rem;
    font-weight: 700;
    color: var(--ar-dark-color);
    text-align: center;
    margin-bottom: 4rem;
    position: relative;
}

.ar-numbered-title::after {
    content: "";
    position: absolute;
    bottom: -20px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background-color: var(--ar-primary-color);
}

.ar-numbered-item {
    display: flex;
    margin-bottom: 5rem;
    position: relative;
}

.ar-numbered-item:last-child {
    margin-bottom: 0;
}

.ar-numbered-number {
    font-size: 10rem;
    font-weight: 800;
    color: rgba(29, 53, 87, 0.05);
    position: absolute;
    top: -3rem;
    left: -2rem;
    line-height: 1;
    z-index: 0;
}

.ar-numbered-content {
    position: relative;
    z-index: 1;
    padding-left: 100px;
}

.ar-numbered-icon {
    font-size: 3rem;
    color: var(--ar-primary-color);
    margin-bottom: 1.5rem;
}

.ar-numbered-subtitle {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--ar-primary-color);
    margin-bottom: 0.5rem;
    letter-spacing: 1px;
}

.ar-numbered-item-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--ar-dark-color);
    margin-bottom: 1rem;
}

.ar-numbered-description {
    font-size: 1.1rem;
    color: #6c757d;
    max-width: 600px;
}

.ar-numbered-btn {
    display: inline-flex;
    align-items: center;
    padding: 0.75rem 1.5rem;
    border-radius: 50px;
    background-color: var(--ar-dark-color);
    color: #fff;
    font-weight: 600;
    margin-top: 1.5rem;
    transition: all 0.3s ease;
}

.ar-numbered-btn:hover {
    background-color: var(--ar-primary-color);
    transform: translateX(5px);
}

.ar-numbered-btn i {
    margin-left: 8px;
    transition: transform 0.3s ease;
}

.ar-numbered-btn:hover i {
    transform: translateX(5px);
}

/* Parallax Seperator */
.ar-parallax-section {
    height: 500px;
    background-attachment: fixed;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    position: relative;
}

.ar-parallax-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1;
}

.ar-parallax-content {
    max-width: 800px;
    text-align: center;
    color: #fff;
    padding: 2rem;
}

.ar-parallax-title {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
}

.ar-parallax-subtitle {
    font-size: 1.5rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.ar-parallax-btn {
    display: inline-flex;
    align-items: center;
    padding: 1rem 2rem;
    border-radius: 50px;
    background-color: var(--ar-primary-color);
    color: #fff;
    font-weight: 600;
    transition: all 0.3s ease;
}

.ar-parallax-btn:hover {
    background-color: #fff;
    color: var(--ar-primary-color);
}

.ar-parallax-btn i {
    margin-right: 8px;
}

/* Testimonials with Slider */
.ar-testimonials {
    padding: 6rem 0;
    background-color: #fff;
}

.ar-testimonials-title {
    font-size: 3rem;
    font-weight: 700;
    color: var(--ar-dark-color);
    text-align: center;
    margin-bottom: 4rem;
    position: relative;
}

.ar-testimonials-title::after {
    content: "";
    position: absolute;
    bottom: -20px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background-color: var(--ar-primary-color);
}

.ar-testimonial-item {
    position: relative;
    background-color: #f8f9fa;
    border-radius: 10px;
    padding: 2.5rem;
    margin: 0 1rem;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    transition: all 0.3s ease;
}

.ar-testimonial-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.1);
}

.ar-testimonial-quote {
    font-size: 5rem;
    position: absolute;
    top: -30px;
    left: 25px;
    color: var(--ar-primary-color);
    opacity: 0.2;
}

.ar-testimonial-text {
    font-size: 1.1rem;
    color: #6c757d;
    margin-bottom: 2rem;
    position: relative;
    z-index: 1;
}

.ar-testimonial-footer {
    display: flex;
    align-items: center;
}

.ar-testimonial-avatar {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    overflow: hidden;
    margin-right: 1rem;
}

.ar-testimonial-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.ar-testimonial-info h4 {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--ar-dark-color);
    margin-bottom: 0.25rem;
}

.ar-testimonial-info p {
    font-size: 0.9rem;
    color: #6c757d;
}

/* Stats Counter Section */
.ar-stats {
    padding: 6rem 0;
    background-color: var(--ar-dark-color);
    color: #fff;
}

.ar-stats-title {
    font-size: 3rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 4rem;
    position: relative;
}

.ar-stats-title::after {
    content: "";
    position: absolute;
    bottom: -20px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background-color: var(--ar-primary-color);
}

.ar-stats-item {
    text-align: center;
    padding: 2rem;
}

.ar-stats-icon {
    font-size: 3rem;
    color: var(--ar-primary-color);
    margin-bottom: 1.5rem;
}

.ar-stats-number {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.ar-stats-text {
    font-size: 1.1rem;
    opacity: 0.8;
}

/* Contact CTA with Background */
.ar-contact-cta-special {
    padding: 6rem 0;
    background-color: #f8f9fa;
    position: relative;
    overflow: hidden;
}

.ar-contact-cta-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0.15;
    z-index: 0;
}

.ar-contact-cta-content {
    position: relative;
    z-index: 1;
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.ar-contact-cta-title {
    font-size: 3.5rem;
    font-weight: 700;
    color: var(--ar-dark-color);
    margin-bottom: 1.5rem;
}

.ar-contact-cta-subtitle {
    font-size: 1.5rem;
    color: #6c757d;
    margin-bottom: 2rem;
}

.ar-contact-methods {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 2rem;
    margin-top: 3rem;
}

.ar-contact-method {
    text-align: center;
    background-color: #fff;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    flex: 1;
    min-width: 250px;
    transition: all 0.3s ease;
}

.ar-contact-method:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
}

.ar-contact-method-icon {
    font-size: 2.5rem;
    color: var(--ar-primary-color);
    margin-bottom: 1.5rem;
}

.ar-contact-method-title {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--ar-dark-color);
    margin-bottom: 1rem;
}

.ar-contact-method-text {
    font-size: 1rem;
    color: #6c757d;
    margin-bottom: 1.5rem;
}

.ar-contact-method-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.75rem 1.5rem;
    border-radius: 50px;
    background-color: var(--ar-dark-color);
    color: #fff;
    font-weight: 600;
    transition: all 0.3s ease;
}

.ar-contact-method-btn:hover {
    background-color: var(--ar-primary-color);
}

.ar-contact-method-btn i {
    margin-right: 8px;
}

/* Responsive Styles */
@media (max-width: 1200px) {
    .ar-hero-title {
        font-size: 4rem;
    }
    
    .ar-scrolling-item-title {
        font-size: 3rem;
    }
    
    .ar-numbered-number {
        font-size: 8rem;
    }
    
    .ar-numbered-item-title {
        font-size: 2rem;
    }
}

@media (max-width: 992px) {
    .ar-hero-title {
        font-size: 3.5rem;
    }
    
    .ar-hero-description {
        font-size: 1.1rem;
    }
    
    .ar-scrolling-item-number {
        font-size: 5rem;
    }
    
    .ar-scrolling-item-title {
        font-size: 2.5rem;
    }
    
    .ar-numbered-number {
        font-size: 7rem;
        left: -1rem;
    }
    
    .ar-numbered-content {
        padding-left: 50px;
    }
    
    .ar-numbered-item-title {
        font-size: 1.75rem;
    }
    
    .ar-parallax-title {
        font-size: 3rem;
    }
}

@media (max-width: 768px) {
    .ar-hero-title {
        font-size: 2.5rem;
    }
    
    .ar-hero-subtitle {
        font-size: 1rem;
    }
    
    .ar-hero-description {
        font-size: 1rem;
    }
    
    .ar-scrolling-wrapper {
        width: 500%;
    }
    
    .ar-scrolling-item-number {
        font-size: 4rem;
        margin-right: 1rem;
    }
    
    .ar-scrolling-item-title {
        font-size: 2rem;
    }
    
    .ar-numbered-number {
        font-size: 5rem;
        top: -2rem;
        left: -1rem;
    }
    
    .ar-numbered-content {
        padding-left: 20px;
    }
    
    .ar-numbered-item-title {
        font-size: 1.5rem;
    }
    
    .ar-parallax-title {
        font-size: 2.5rem;
    }
    
    .ar-parallax-subtitle {
        font-size: 1.25rem;
    }
    
    .ar-contact-cta-title {
        font-size: 2.5rem;
    }
    
    .ar-contact-cta-subtitle {
        font-size: 1.25rem;
    }
}

@media (max-width: 576px) {
    .ar-hero-title {
        font-size: 2rem;
    }
    
    .ar-hero-btns {
        flex-direction: column;
    }
    
    .ar-hero-btn {
        width: 100%;
        text-align: center;
        justify-content: center;
    }
    
    .ar-scrolling-item-number {
        font-size: 3rem;
    }
    
    .ar-scrolling-item-title {
        font-size: 1.5rem;
    }

    .ar-numbered-number {
        font-size: 6rem;
        position: relative;
        margin-bottom: 1rem;
        top: 50px;
        left: 150px;
    }
    
    .ar-numbered-content {
        padding-left: 0;
    }
    
    .ar-numbered-item {
        flex-direction: column;
        margin-bottom: 1rem;
    }
    
    .ar-numbered-icon {
        font-size: 2rem;
    }
    
    .ar-parallax-title {
        font-size: 2rem;
    }
    
    .ar-parallax-subtitle {
        font-size: 1rem;
    }
    
    .ar-testimonial-item {
        padding: 2rem 1.5rem;
    }
    
    .ar-stats-number {
        font-size: 2.5rem;
    }
}

/* Animation Keyframes */
        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(30px);
            }

            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        @keyframes floatAnimation {
            0% {
                transform: translateY(0);
            }

            50% {
                transform: translateY(-15px);
            }

            100% {
                transform: translateY(0);
            }
        } 