/* Hero Section */
.hero-section {
    position: relative;
    height: 100vh;
    overflow: hidden;
}

.hero-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.4));
    z-index: 2;
}

.hero-container {
    position: relative;
    z-index: 3;
    height: 100%;
    display: flex;
    align-items: center;
}

.hero-content {
    max-width: 800px;
}

.hero-title {
    color: white;
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.hero-title-highlight {
    font-weight: 700;
}

.hero-text {
    color: white;
    font-size: 1.2rem;
    margin-bottom: 2rem;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    margin-bottom: 3rem;
}

.primary-button {
    background: var(--primary-color);
    color: #000;
    padding: 12px 24px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: 600;
    transition: transform 0.3s ease, opacity 0.3s ease, background-color 0.3s ease;
    will-change: transform, opacity;
    display: inline-block;
}

.primary-button:hover {
    background: #FF8533;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(255, 107, 0, 0.3);
}

.secondary-button {
    background: transparent;
    color: white;
    padding: 12px 24px;
    border-radius: 5px;
    text-decoration: none;
    border: 2px solid white;
    font-weight: 600;
    transition: transform 0.3s ease, opacity 0.3s ease, background-color 0.3s ease;
    will-change: transform, opacity;
    display: inline-block;
}

.secondary-button:hover {
    background: rgba(255, 255, 255, 0.1);
    color: var(--primary-color);
    border-color: var(--primary-color);
}

/* About Section */
.about-section {
    padding: 80px 0;
    background-color: #000;
    position: relative;
    overflow: hidden;
}

.about-section-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    overflow: hidden;
}
.about-section-bg picture {
    display: block;
    width: 100%;
    height: 100%;
}
.about-section-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    opacity: 0.5;
    transform: scale(1.1);
}

.about-section .container {
    position: relative;
    z-index: 2;
}

.about-content {
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
    padding: 2rem;
}

.about-content h3 {
    font-size: 2.5rem;
    color: #fff;
    margin-bottom: 20px;
}

.about-text {
    color: #ccc;
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 50px;
}

.stats-container {
    display: flex;
    justify-content: space-between;
    margin-bottom: 50px;
    gap: 20px;
}

.stat-box {
    flex: 1;
    padding: 30px;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 10px;
    border: 1px solid rgba(230, 255, 0, 0.1);
}

.stat-number {
    background: linear-gradient(45deg, #FF6B00, #FFD700, #FF6B00);
    background-size: 200% auto;
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: textGradient 3s ease infinite;
    will-change: background-position;
    font-size: 2.5rem;
    font-weight: 700;
    display: inline-block;
}

.stat-label {
    color: #fff;
    font-size: 0.9rem;
    text-transform: uppercase;
}

.about-cta {
    display: inline-block;
    padding: 15px 30px;
    background: linear-gradient(45deg, #FF6B00, #FFD700, #FF6B00);
    background-size: 200% auto;
    color: #000;
    text-decoration: none;
    border-radius: 5px;
    font-weight: 600;
    transition: transform 0.3s ease, opacity 0.3s ease, background-color 0.3s ease;
    will-change: transform, background-position;
    animation: textGradient 3s ease infinite;
    border: none;
}

.about-cta:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(255, 107, 0, 0.3);
}

@media (max-width: 768px) {
    .stats-container {
        flex-direction: column;
    }
    
    .stat-box {
        margin-bottom: 20px;
    }
}

/* Services Section */
.services-section {
    padding: 0;
    background: #FFFFFF;
    position: relative;
}

/* Arka plan görselini ve z-index ayarlarını kaldırdık */
.section-header {
    text-align: center;
    margin: 0 0 40px 0;
    padding-top: 40px;
}

.section-header h3 {
    font-size: 3rem;
    color: #000000;
    margin-bottom: 1rem;
    font-weight: 700;
}

.section-header p {
    font-size: 1.2rem;
    color: #666666;
    max-width: 600px;
    margin: 0 auto;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    padding: 0 0 3rem 0;
}

.service-card {
    background: #FFFFFF;
    border: 1px solid #EEEEEE;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    border-radius: 20px;
    padding: 3rem 2rem;
    text-align: left;
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1), box-shadow 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    will-change: transform;
    position: relative;
    overflow: hidden;
    transform: translateY(0);
}

.service-card:hover {
    transform: translateY(-15px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.service-card::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: var(--primary-color);
    transform: scaleX(0);
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.service-card:hover::after {
    transform: scaleX(1);
}

.service-icon {
    width: 100%;
    aspect-ratio: 16/9;
    margin-bottom: 2rem;
    border-radius: 10px;
    overflow: hidden;
}

.service-icon img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

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

.service-card h4 {
    font-size: 1.5rem;
    color: #000000;
    margin-bottom: 1.2rem;
    font-weight: 600;
}

.service-card p {
    color: #666666;
    margin-bottom: 2rem;
    line-height: 1.6;
    font-size: 0.95rem;
}

.service-card .learn-more {
    color: #000000;
    text-decoration: none;
    font-weight: 500;
    font-size: 0.9rem;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: transform 0.3s ease, opacity 0.3s ease, background-color 0.3s ease;
    will-change: transform, opacity;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.service-card .learn-more:hover {
    gap: 1rem;
    color: var(--primary-color);
}

.service-card .learn-more i {
    font-size: 1.2rem;
    transition: transform 0.3s ease;
}

.service-card:hover .learn-more i {
    transform: translateX(5px);
}

@media screen and (max-width: 1200px) {
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media screen and (max-width: 768px) {
    .services-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .stats-container {
        flex-direction: column;
    }
    
    .stat-box {
        margin-bottom: 20px;
    }
}

@media screen and (max-width: 480px) {
    .services-grid {
        grid-template-columns: 1fr;
    }
    
    .section-header h3 {
        font-size: 2.2rem;
    }
}

/* Partner Logoları */
.partner-logos {
    display: flex;
    gap: 2rem;
    align-items: center;
}

.partner-logo {
    width: 120px;
    height: 45px;
    aspect-ratio: 8 / 3;
    object-fit: contain;
}

/* About Us Section */
.about-us-section {
    padding: 100px 0;
    background: linear-gradient(
        45deg,
        var(--background-color),
        #1a1a1a,
        #262626,
        var(--background-color)
    );
    background-size: 400% 400%;
    position: relative;
    animation: gradientBG 15s ease infinite;
    will-change: background-position;
    overflow: hidden;
}

/* Gradient overlay ekleyelim */
.about-us-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(
        circle at top right,
        rgba(230, 255, 0, 0.1),
        transparent 50%
    );
    pointer-events: none;
}

.about-us-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.about-us-image {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    height: 600px;
}

.about-us-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 30%;
    border-radius: 20px;
    transform: scale(1.3);
    transition: transform 0.5s ease;
}

.about-us-image:hover img {
    transform: scale(1.25);
}

/* Experience Box için yeni stil */
.experience-box {
    border: 2px solid var(--primary-color);
    background-color: transparent;
    padding: 15px;
    border-radius: 8px;
    position: absolute;
    bottom: 30px;
    right: 30px;
    text-align: center;
    transition: transform 0.3s ease, opacity 0.3s ease;
    will-change: transform, opacity;
}

.experience-box:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(255, 107, 0, 0.2);
}

.experience-box .years {
    color: var(--primary-color);
    font-size: 2rem;
    font-weight: 700;
    display: block;
    line-height: 1;
}

.experience-box .text {
    color: #fff;
    font-size: 0.9rem;
    margin-top: 5px;
}

.about-us-content .section-header {
    margin-bottom: 3rem;
}

.about-us-content .section-header h2 {
    font-size: 2.8rem;
    color: var(--text-primary);
    margin-bottom: 1rem;
    font-weight: 700;
}

.about-us-content .section-header p {
    font-size: 1.2rem;
    color: var(--text-secondary);
}

.feature-list {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.feature-item {
    display: flex;
    gap: 1.5rem;
    align-items: flex-start;
}

.feature-icon {
    width: 40px;
    height: 40px;
    background: linear-gradient(45deg, #FF6B00, #FFD700, #FF6B00);
    background-size: 200% auto;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    animation: textGradient 3s ease infinite;
    will-change: background-position;
}

.feature-icon i {
    font-size: 1.2rem;
    color: #000;
}

.feature-text h3,
.feature-text h4 {
    font-size: 1.3rem;
    color: var(--text-primary);
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.feature-text p {
    color: var(--text-secondary);
    line-height: 1.6;
}

/* Responsive */
@media screen and (max-width: 992px) {
    .about-us-section {
        background: linear-gradient(
            45deg,
            var(--background-color),
            #1a1a1a,
            #262626,
            var(--background-color)
        );
        background-size: 300% 300%;
    }

    .about-us-wrapper {
        grid-template-columns: 1fr;
    }

    .about-us-image {
        height: 400px;
    }
    
    .about-us-image img {
        transform: scale(1.35);
    }
}

@media screen and (max-width: 768px) {
    .about-us-content .section-header h2 {
        font-size: 2.2rem;
    }

    .feature-item {
        flex-direction: column;
        gap: 1rem;
    }
}

/* Partners Strip */
.partners-strip {
    background: #FFFFFF;
    padding: 50px 0;
    position: relative;
}

.partners-strip::before,
.partners-strip::after {
    content: '';
    position: absolute;
    left: 0;
    width: 100%;
    height: 1px;
    background: linear-gradient(to right, transparent, rgba(230, 255, 0, 0.5), transparent);
}

.partners-strip::before {
    top: 0;
}

.partners-strip::after {
    bottom: 0;
}

.partners-content {
    text-align: center;
}

.partners-content h3 {
    font-size: 1.8rem;
    color: #000000;
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.partners-content p {
    font-size: 1rem;
    color: #666666;
    margin-bottom: 2rem;
}

.partners-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 2rem;
    align-items: center;
    max-width: 1000px;
    margin: 0 auto;
}

.partner-item {
    padding: 1rem;
    transition: transform 0.3s ease, opacity 0.3s ease;
    will-change: transform, opacity;
}

.partner-item img {
    width: 150px;
    height: auto;
    aspect-ratio: 2 / 1;
    object-fit: contain;
    filter: grayscale(100%);
    opacity: 0.7;
    transition: transform 0.3s ease, opacity 0.3s ease, filter 0.3s ease;
}

.partner-item:hover img {
    filter: grayscale(0%);
    opacity: 1;
    transform: scale(1.05);
}

/* Responsive */
@media screen and (max-width: 992px) {
    .partners-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media screen and (max-width: 768px) {
    .partners-strip {
        padding: 40px 0;
    }
    
    .partners-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
    
    .partners-content h3 {
        font-size: 1.8rem;
    }
}

@media screen and (max-width: 480px) {
    .partners-grid {
        grid-template-columns: 1fr;
    }
}

/* Quote Page Styles */
.quote-hero {
    background: linear-gradient(
        45deg,
        var(--background-color),
        #1a1a1a,
        #262626,
        var(--background-color)
    );
    background-size: 400% 400%;
    padding: 100px 0 50px;
    position: relative;
    animation: gradientBG 15s ease infinite;
    will-change: background-position;
}

.quote-header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.quote-header h1 {
    font-size: 3rem;
    color: var(--text-primary);
    margin-bottom: 1rem;
}

.quote-header p {
    font-size: 1.2rem;
    color: var(--text-secondary);
}

.quote-form-section {
    padding: 80px 0;
    background: #fff;
}

.quote-form-wrapper {
    max-width: 900px;
    margin: 0 auto;
    background: #fff;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
    padding: 3rem;
}

.form-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.form-group.full-width {
    grid-column: 1 / -1;
}

.form-group label {
    font-size: 0.9rem;
    color: #333;
    font-weight: 500;
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 1rem;
    border: 1px solid #ddd;
    border-radius: 10px;
    font-size: 1rem;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: var(--primary-color);
    outline: none;
    box-shadow: 0 0 0 3px rgba(230, 255, 0, 0.1);
}

.form-footer {
    margin-top: 2rem;
    text-align: center;
}

.submit-btn {
    background: var(--primary-color);
    color: #000;
    border: none;
    padding: 1rem 2.5rem;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 10px;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 1rem;
    transition: transform 0.3s ease, opacity 0.3s ease, background-color 0.3s ease;
    will-change: transform, opacity;
}

.submit-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
}

/* Responsive */
@media screen and (max-width: 768px) {
    .quote-header h1 {
        font-size: 2.5rem;
    }
    
    .form-grid {
        grid-template-columns: 1fr;
    }
    
    .quote-form-wrapper {
        padding: 2rem;
    }
}

/* Btn-primary pulse-button için gradient stil */
.btn-primary.pulse-button {
    background: linear-gradient(45deg, #FF6B00, #FFD700, #FF6B00);
    background-size: 200% auto;
    color: #000;
    animation: textGradient 3s ease infinite;
    will-change: background-position;
    border: none;
}

/* Hover durumundaki davranışı koruyoruz */
.btn-primary.pulse-button:hover {
    /* Mevcut hover davranışını koruyoruz */
}

/* İkonlar için basit renk efekti */
.fas.fa-laptop-code,
.fas.fa-search,
.fas.fa-map-marker-alt,
.fas.fa-hashtag,
.fas.fa-ad,
.fas.fa-share-alt,
.service-card i,
.feature-item i {
    color: var(--primary-color);
}

/* Hover durumunda efekti güçlendir */
.service-card:hover i,
.feature-item:hover i {
    transform: scale(1.1);
    color: #FF8533;
}

/* Info-box içindeki tüm ikonlar için özel stil */
.info-box .fas.fa-phone,
.info-box .fas.fa-envelope,
.info-box .fas.fa-map-marker-alt {
    background: none;
    -webkit-text-fill-color: #000;
    color: #000;
    animation: none;
}

/* Adım numaralarının balonları için basit stil */
.step-item.active .step-circle,
.step-item.active .step-number,
.step-item.active .step-indicator,
.progress-step.active .step-circle,
.progress-step.active .step-number,
.progress-step.active .step-indicator,
.step.active .step-circle,
.step.active .step-number,
.step.active .step-indicator {
    background: var(--primary-color);
    color: #000;
    font-weight: 700;
}

/* Tamamlanmış adımlar için basit stil */
.step-item.completed .step-circle,
.step-item.completed .step-number,
.step-item.completed .step-indicator,
.progress-step.completed .step-circle,
.progress-step.completed .step-number,
.progress-step.completed .step-indicator,
.step.completed .step-circle,
.step.completed .step-number,
.step.completed .step-indicator {
    background: var(--primary-color);
    color: #000;
}

/* Mobil görünüm için özel ayarlamalar */
@media (max-width: 768px) {
    .step-item.active .step-circle,
    .step-item.active .step-number,
    .step-item.active .step-indicator,
    .progress-step.active .step-circle,
    .progress-step.active .step-number,
    .progress-step.active .step-indicator,
    .step.active .step-circle,
    .step.active .step-number,
    .step.active .step-indicator {
        width: 35px;
        height: 35px;
        font-size: 0.9rem;
    }
    
    /* Adımlar arası çizgiler için gradient */
    .step-connector.active,
    .step-line.active,
    .progress-connector.active {
        background: linear-gradient(45deg, #FF6B00, #FFD700, #FF6B00);
        background-size: 200% auto;
        animation: textGradient 3s ease infinite;
    }
}

/* Step numaraları için doğrudan gradient stil */
.step-number,
.step-circle,
.step-indicator,
.step-item .number,
.progress-step .number,
.wizard-step .number,
.form-step .number {
    background: linear-gradient(45deg, #FF6B00, #FFD700, #FF6B00) !important;
    background-size: 200% auto !important;
    animation: textGradient 3s ease infinite !important;
    color: #000 !important;
    font-weight: 700 !important;
    border: none !important;
}

/* Adım numaralarının içindeki metinler için stil */
.step-number span,
.step-circle span,
.step-indicator span {
    color: #000 !important;
}

/* Teklif Al sayfası için quote-steps gradient renk uyumlamaları */
.quote-steps {
    background: linear-gradient(45deg, #000000, #121212, #000000);
    background-size: 200% 200%;
    animation: gradientBG 15s ease infinite;
    will-change: background-position;
}

/* Step numaraları için gradient */
.quote-step-number {
    background: linear-gradient(45deg, #FF6B00, #FFD700, #FF6B00);
    background-size: 200% auto;
    animation: textGradient 3s ease infinite;
    color: #000;
    font-weight: 700;
}

/* Aktif adım için gradient */
.quote-step.active .quote-step-number {
    background: linear-gradient(45deg, #FF6B00, #FFD700, #FF6B00);
    background-size: 200% auto;
    animation: textGradient 3s ease infinite;
    box-shadow: 0 0 15px rgba(255, 107, 0, 0.5);
}

/* Aktif adım başlığı için gradient */
.quote-step.active .quote-step-title {
    background: linear-gradient(45deg, #FF6B00, #FFD700, #FF6B00);
    background-size: 200% auto;
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: textGradient 3s ease infinite;
    display: inline-block;
}

/* Tamamlanmış adımlar için gradient */
.quote-step.completed .quote-step-number {
    background: linear-gradient(45deg, #FF6B00, #FFD700, #FF6B00);
    background-size: 200% auto;
    animation: textGradient 3s ease infinite;
}

/* Adımlar arası çizgiler için gradient */
.quote-step-connector {
    background: rgba(255, 107, 0, 0.3);
}

.quote-step.active .quote-step-connector,
.quote-step.completed .quote-step-connector {
    background: linear-gradient(45deg, #FF6B00, #FFD700, #FF6B00);
    background-size: 200% auto;
    animation: textGradient 3s ease infinite;
}

/* Form butonları için gradient */
.quote-form .btn-primary {
    background: linear-gradient(45deg, #FF6B00, #FFD700, #FF6B00);
    background-size: 200% auto;
    animation: textGradient 3s ease infinite;
    color: #000;
    font-weight: 600;
    border: none;
}

.quote-form .btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(255, 107, 0, 0.3);
}

/* Mobil görünüm için özel ayarlamalar */
@media (max-width: 768px) {
    .quote-step-number {
        width: 40px;
        height: 40px;
        font-size: 1.2rem;
    }
    
    .quote-step.active .quote-step-title {
        font-size: 1rem;
    }
}

/* Teklif Al sayfası 2. aşama için gradient stil */
.quote-step:nth-child(2) .quote-step-number,
.step-item:nth-child(2) .step-number,
.progress-step:nth-child(2) .step-number,
#step2 .step-number,
.step-2 .step-number {
    background: linear-gradient(45deg, #FF6B00, #FFD700, #FF6B00) !important;
    background-size: 200% auto !important;
    animation: textGradient 3s ease infinite !important;
    color: #000 !important;
    font-weight: 700 !important;
    border: none !important;
}

/* 2. aşama başlığı için gradient */
.quote-step:nth-child(2) .quote-step-title,
.step-item:nth-child(2) .step-title,
.progress-step:nth-child(2) .step-title,
#step2 .step-title,
.step-2 .step-title {
    background: linear-gradient(45deg, #FF6B00, #FFD700, #FF6B00);
    background-size: 200% auto;
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: textGradient 3s ease infinite;
    display: inline-block;
}

/* 2. aşama içeriği için gradient vurgular */
.quote-step:nth-child(2) .service-option.selected,
.step-item:nth-child(2) .service-option.selected,
.progress-step:nth-child(2) .service-option.selected,
#step2 .service-option.selected,
.step-2 .service-option.selected {
    border-color: #FF6B00;
    background: rgba(255, 107, 0, 0.05);
    position: relative;
}

.quote-step:nth-child(2) .service-option.selected::before,
.step-item:nth-child(2) .service-option.selected::before,
.progress-step:nth-child(2) .service-option.selected::before,
#step2 .service-option.selected::before,
.step-2 .service-option.selected::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: linear-gradient(45deg, #FF6B00, #FFD700, #FF6B00);
    background-size: 200% auto;
    animation: textGradient 3s ease infinite;
}

/* Teklif Al sayfasındaki turuncu renkli elementler için gradient stil */
.quote-form .form-control:focus,
.quote-form input:focus,
.quote-form textarea:focus,
.quote-form select:focus {
    border-color: #FF6B00;
    box-shadow: 0 0 0 0.2rem rgba(255, 107, 0, 0.25);
}

/* Turuncu renkli butonlar için gradient */
.quote-form .btn-orange,
.quote-form [class*="btn-orange"],
.quote-form [style*="background-color: #FF6B00"],
.quote-form [style*="background: #FF6B00"] {
    background: linear-gradient(45deg, #FF6B00, #FFD700, #FF6B00) !important;
    background-size: 200% auto !important;
    animation: textGradient 3s ease infinite !important;
    color: #000 !important;
    font-weight: 600 !important;
    border: none !important;
}

/* Turuncu renkli metin için gradient */
.quote-form .text-orange,
.quote-form [class*="text-orange"],
.quote-form [style*="color: #FF6B00"],
.quote-form .orange-text {
    background: linear-gradient(45deg, #FF6B00, #FFD700, #FF6B00);
    background-size: 200% auto;
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: textGradient 3s ease infinite;
    display: inline-block;
}

/* Turuncu renkli border için gradient */
.quote-form .border-orange,
.quote-form [class*="border-orange"],
.quote-form [style*="border-color: #FF6B00"],
.quote-form [style*="border: 1px solid #FF6B00"] {
    border-image: linear-gradient(45deg, #FF6B00, #FFD700, #FF6B00) 1;
    animation: textGradient 3s ease infinite;
}

/* Turuncu renkli arka plan için gradient */
.quote-form .bg-orange,
.quote-form [class*="bg-orange"],
.quote-form [style*="background-color: #FF6B00"] {
    background: linear-gradient(45deg, #FF6B00, #FFD700, #FF6B00) !important;
    background-size: 200% auto !important;
    animation: textGradient 3s ease infinite !important;
}

/* Turuncu renkli ikonlar için gradient */
.quote-form i[style*="color: #FF6B00"],
.quote-form svg[style*="color: #FF6B00"],
.quote-form .orange-icon {
    background: linear-gradient(45deg, #FF6B00, #FFD700, #FF6B00);
    background-size: 200% auto;
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: textGradient 3s ease infinite;
    display: inline-block;
}

/* Web Sitesi yazısı için gradient stil */
.web-sitesi,
.web-site,
.website-option,
.option-web-site,
.service-option[data-service="web-sitesi"],
.service-option[data-type="web-sitesi"] {
    background: linear-gradient(45deg, #FF6B00, #FFD700, #FF6B00) !important;
    background-size: 200% auto !important;
    -webkit-background-clip: text !important;
    background-clip: text !important;
    -webkit-text-fill-color: transparent !important;
    animation: textGradient 3s ease infinite !important;
    display: inline-block !important;
    font-weight: 700 !important;
}

/* Service Detail Section için gradient stil */
.service-detail-section {
    background: linear-gradient(to bottom, #000000, #121212, #000000);
    background-size: 200% 200%;
    animation: gradientBG 15s ease infinite;
    will-change: background-position;
}

.service-detail-section .section-title h2,
.service-detail-section .section-title h3,
.service-detail-section .section-title h4 {
    background: linear-gradient(45deg, #FF6B00, #FFD700, #FF6B00);
    background-size: 200% auto;
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: textGradient 3s ease infinite;
    display: inline-block;
}

.service-detail-section .section-title::after {
    background: linear-gradient(45deg, #FF6B00, #FFD700, #FF6B00);
    background-size: 200% auto;
    animation: textGradient 3s ease infinite;
}

.service-detail-section .service-features h3,
.service-detail-section .service-features h4 {
    background: linear-gradient(45deg, #FF6B00, #FFD700, #FF6B00);
    background-size: 200% auto;
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: textGradient 3s ease infinite;
    display: inline-block;
}

.service-detail-section .service-features i {
    background: linear-gradient(45deg, #FF6B00, #FFD700, #FF6B00);
    background-size: 200% auto;
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: textGradient 3s ease infinite;
    display: inline-block;
}

.service-detail-section .btn-primary,
.service-detail-section .cta-button {
    background: linear-gradient(45deg, #FF6B00, #FFD700, #FF6B00);
    background-size: 200% auto;
    animation: textGradient 3s ease infinite;
    color: #000;
    font-weight: 600;
    border: none;
}

.service-detail-section .btn-primary:hover,
.service-detail-section .cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(255, 107, 0, 0.3);
}

/* Service detail içindeki kartlar için gradient border */
.service-detail-section .card,
.service-detail-section .feature-box {
    border: none;
    position: relative;
    z-index: 1;
    overflow: hidden;
}

.service-detail-section .card::before,
.service-detail-section .feature-box::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border-radius: inherit;
    padding: 2px;
    background: linear-gradient(45deg, #FF6B00, #FFD700, #FF6B00);
    background-size: 200% auto;
    animation: textGradient 3s ease infinite;
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    z-index: -1;
}

/* Teklif Al sayfası için genel gradient stil tanımlamaları */
.quote-page h1, 
.quote-page h2, 
.quote-page h3, 
.quote-page h4, 
.quote-page h5, 
.quote-page h6 {
    background: linear-gradient(45deg, #FF6B00, #FFD700, #FF6B00);
    background-size: 200% auto;
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: textGradient 3s ease infinite;
    display: inline-block;
}

/* Tüm butonlar için gradient */
.quote-page .btn,
.quote-page button[type="submit"],
.quote-page input[type="submit"],
.quote-page .button {
    background: linear-gradient(45deg, #FF6B00, #FFD700, #FF6B00) !important;
    background-size: 200% auto !important;
    animation: textGradient 3s ease infinite !important;
    will-change: background-position !important;
    color: #000 !important;
    font-weight: 600 !important;
    border: none !important;
    transition: transform 0.3s ease, opacity 0.3s ease !important;
}

.quote-page .btn:hover,
.quote-page button[type="submit"]:hover,
.quote-page input[type="submit"]:hover,
.quote-page .button:hover {
    transform: translateY(-3px) !important;
    box-shadow: 0 10px 20px rgba(255, 107, 0, 0.3) !important;
}

/* Tüm ikonlar için gradient */
.quote-page i,
.quote-page .icon,
.quote-page .fa,
.quote-page .fas,
.quote-page .far,
.quote-page .fab {
    background: linear-gradient(45deg, #FF6B00, #FFD700, #FF6B00);
    background-size: 200% auto;
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: textGradient 3s ease infinite;
    display: inline-block;
}

/* Tüm seçili elementler için gradient */
.quote-page .selected,
.quote-page .active,
.quote-page .current,
.quote-page .checked,
.quote-page input:checked + label {
    border-color: #FF6B00 !important;
    background: rgba(255, 107, 0, 0.05) !important;
    position: relative !important;
}

.quote-page .selected::before,
.quote-page .active::before,
.quote-page .current::before,
.quote-page .checked::before,
.quote-page input:checked + label::before {
    content: '' !important;
    position: absolute !important;
    top: 0 !important;
    left: 0 !important;
    width: 4px !important;
    height: 100% !important;
    background: linear-gradient(45deg, #FF6B00, #FFD700, #FF6B00) !important;
    background-size: 200% auto !important;
    animation: textGradient 3s ease infinite !important;
}

/* Form elementleri için gradient focus efekti */
.quote-page input:focus,
.quote-page textarea:focus,
.quote-page select:focus {
    border-color: #FF6B00 !important;
    box-shadow: 0 0 0 0.2rem rgba(255, 107, 0, 0.25) !important;
}

/* Tüm progress barlar için gradient */
.quote-page .progress-bar,
.quote-page .progress .bar,
.quote-page .meter,
.quote-page .gauge {
    background: linear-gradient(45deg, #FF6B00, #FFD700, #FF6B00) !important;
    background-size: 200% auto !important;
    animation: textGradient 3s ease infinite !important;
}

/* Tüm vurgu renkleri için gradient */
.quote-page .highlight,
.quote-page .accent,
.quote-page .emphasis,
.quote-page .important {
    color: transparent !important;
    background: linear-gradient(45deg, #FF6B00, #FFD700, #FF6B00) !important;
    background-size: 200% auto !important;
    -webkit-background-clip: text !important;
    background-clip: text !important;
    animation: textGradient 3s ease infinite !important;
    display: inline-block !important;
}

/* Tüm kenarlıklar için gradient */
.quote-page .border,
.quote-page [class*="border-"] {
    border: none !important;
    position: relative !important;
    z-index: 1 !important;
}

.quote-page .border::before,
.quote-page [class*="border-"]::before {
    content: '' !important;
    position: absolute !important;
    top: 0 !important;
    left: 0 !important;
    right: 0 !important;
    bottom: 0 !important;
    border-radius: inherit !important;
    padding: 1px !important;
    background: linear-gradient(45deg, #FF6B00, #FFD700, #FF6B00) !important;
    background-size: 200% auto !important;
    animation: textGradient 3s ease infinite !important;
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0) !important;
    -webkit-mask-composite: xor !important;
    mask-composite: exclude !important;
    z-index: -1 !important;
}

/* Gradient metin sınıfı */
.gradient-text {
    background: linear-gradient(45deg, #FF6B00, #FFD700, #FF6B00) !important;
    background-size: 200% auto !important;
    -webkit-background-clip: text !important;
    background-clip: text !important;
    -webkit-text-fill-color: transparent !important;
    animation: textGradient 3s ease infinite !important;
    display: inline-block !important;
}

/* Gradient buton sınıfı */
.gradient-button {
    background: linear-gradient(45deg, #FF6B00, #FFD700, #FF6B00) !important;
    background-size: 200% auto !important;
    animation: textGradient 3s ease infinite !important;
    color: #000 !important;
    font-weight: 600 !important;
    border: none !important;
}

/* Gradient ikon sınıfı */
.gradient-icon {
    background: linear-gradient(45deg, #FF6B00, #FFD700, #FF6B00) !important;
    background-size: 200% auto !important;
    -webkit-background-clip: text !important;
    background-clip: text !important;
    -webkit-text-fill-color: transparent !important;
    animation: textGradient 3s ease infinite !important;
    display: inline-block !important;
}

/* Buton konumlandırması için düzeltme */
.service-detail-buttons,
.service-navigation,
.detail-buttons,
.detail-navigation,
.service-buttons,
.service-actions,
.action-buttons,
.navigation-buttons,
div:has(> .detail-prev),
div:has(> button[onclick*="showServiceDetails"]) {
    display: flex !important;
    justify-content: flex-end !important; /* Sağa hizala */
    align-items: center !important;
    width: 100% !important;
    margin: 20px 0 !important;
}

/* Geri butonunu yeniden konumlandır */
.detail-prev,
button.detail-prev,
button[onclick*="goBack"] {
    margin-left: auto !important; /* Sağa hizala */
    background: linear-gradient(45deg, #FF6B00, #FFD700, #FF6B00) !important;
    background-size: 200% auto !important;
    animation: textGradient 3s ease infinite !important;
    color: #000 !important;
    font-weight: 600 !important;
    border: none !important;
    padding: 12px 24px !important;
    border-radius: 5px !important;
    cursor: pointer !important;
    transition: transform 0.3s ease, opacity 0.3s ease !important;
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    gap: 8px !important;
    text-decoration: none !important;
    min-width: 120px !important;
    text-align: center !important;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1) !important;
}

/* Sonraki Servis butonunu tamamen kaldır */
.btn-next,
button.btn-next,
.next-service-btn,
button.next-service-btn,
button[type="button"].btn-next,
button[class*="btn-next"],
button[class*="next-service"] {
    display: none !important;
    visibility: hidden !important;
    opacity: 0 !important;
    pointer-events: none !important;
    position: absolute !important;
    left: -9999px !important;
    width: 0 !important;
    height: 0 !important;
    padding: 0 !important;
    margin: 0 !important;
    border: 0 !important;
    overflow: hidden !important;
}

/* web-tasarim.php sayfasında mobil görünümde ad-consulting bölümünü gizle */
@media (max-width: 768px) {
    .web-tasarim-page .ad-consulting,
    .web-design-page .ad-consulting,
    .web-tasarim .ad-consulting,
    .web-design .ad-consulting,
    .ad-consulting.section-transition,
    .ad-consulting.section-entering,
    .ad-consulting.section-visible,
    section.ad-consulting,
    div.ad-consulting {
        display: none !important;
        visibility: hidden !important;
        opacity: 0 !important;
        height: 0 !important;
        overflow: hidden !important;
        margin: 0 !important;
        padding: 0 !important;
        position: absolute !important;
        left: -9999px !important;
    }
    
    /* Daha sade bir görünüm için ek düzenlemeler */
    .web-tasarim-page .container,
    .web-design-page .container,
    .web-tasarim .container,
    .web-design .container {
        padding: 20px !important;
    }
    
    /* Gereksiz boşlukları azalt */
    .web-tasarim-page section,
    .web-design-page section,
    .web-tasarim section,
    .web-design section {
        margin-bottom: 30px !important;
    }
}

/* Geri butonu konumlandırması - sol alt, daha aşağıda */
.detail-navigation {
    display: flex !important;
    justify-content: flex-start !important; /* Sola hizala */
    align-items: center !important;
    width: 100% !important;
    margin-top: 40px !important; /* Daha fazla üst boşluk */
    margin-bottom: 60px !important; /* Alt boşluğu artır */
    padding: 0 !important;
    position: relative !important;
    z-index: 100 !important; /* Yüksek z-index değeri */
}

/* Geri butonu stili - sol alt */
.detail-prev,
button.detail-prev,
button[onclick*="goBack"] {
    margin-right: auto !important; /* Sola hizala */
    background: linear-gradient(45deg, #FF6B00, #FFD700, #FF6B00) !important;
    background-size: 200% auto !important;
    animation: textGradient 3s ease infinite !important;
    color: #000 !important;
    font-weight: 600 !important;
    border: none !important;
    padding: 10px 20px !important;
    border-radius: 5px !important;
    cursor: pointer !important;
    transition: transform 0.3s ease, opacity 0.3s ease !important;
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    gap: 8px !important;
    text-decoration: none !important;
    min-width: 100px !important;
    text-align: center !important;
    box-shadow: 0 4px 6px rgba(255, 107, 0, 0.2) !important;
    font-size: 1rem !important;
    position: relative !important; /* Mutlak yerine göreceli konumlandırma */
    z-index: 101 !important; /* En yüksek z-index değeri */
    pointer-events: auto !important; /* Tıklamaları etkinleştir */
}

/* Hover efekti */
.detail-prev:hover,
button.detail-prev:hover,
button[onclick*="goBack"]:hover {
    transform: translateY(-3px) !important;
    box-shadow: 0 10px 20px rgba(255, 107, 0, 0.3) !important;
}

/* Aktif durum */
.detail-prev:active,
button.detail-prev:active,
button[onclick*="goBack"]:active {
    transform: translateY(1px) !important;
    box-shadow: 0 5px 10px rgba(255, 107, 0, 0.2) !important;
}

/* Servis detay sayfası aksiyon butonları */
.service-actions {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    margin-top: 40px;
    margin-bottom: 30px;
    padding: 0;
    position: relative;
    z-index: 100;
}

/* Geri butonu stili */
.detail-navigation {
    flex: 1;
    display: flex;
    justify-content: flex-start;
}

/* Devam Et butonu konteyner */
.next-action {
    flex: 1;
    display: flex;
    justify-content: flex-end;
}

/* Devam Et butonu stili */
.btn-continue {
    background: linear-gradient(45deg, #FF6B00, #FFD700, #FF6B00);
    background-size: 200% auto;
    animation: textGradient 3s ease infinite;
    color: #000;
    font-weight: 600;
    border: none;
    padding: 12px 24px;
    border-radius: 5px;
    cursor: pointer;
    transition: transform 0.3s ease, opacity 0.3s ease;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    text-decoration: none;
    min-width: 140px;
    text-align: center;
    box-shadow: 0 4px 6px rgba(255, 107, 0, 0.2);
    font-size: 1rem;
    position: relative;
    z-index: 101;
}

/* Devam Et butonu hover efekti */
.btn-continue:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(255, 107, 0, 0.3);
}

/* Devam Et butonu aktif durumu */
.btn-continue:active {
    transform: translateY(1px);
    box-shadow: 0 5px 10px rgba(255, 107, 0, 0.2);
}

/* Devre dışı Devam Et butonu stili */
.btn-continue.disabled,
.btn-continue:disabled {
    background: #cccccc;
    color: #666666;
    cursor: not-allowed;
    opacity: 0.7;
    pointer-events: none;
    box-shadow: none;
    animation: none;
}

/* Mobil görünüm için düzenleme */
@media (max-width: 768px) {
    .service-actions {
        flex-direction: column;
        gap: 20px;
    }
    
    .detail-navigation,
    .next-action {
        width: 100%;
        justify-content: center;
    }
    
    .detail-prev,
    .btn-continue {
        width: 100%;
        min-width: 100%;
    }
}

/* Devam Et butonu stili */
.btn-next {
    background: linear-gradient(45deg, #FF6B00, #FFD700, #FF6B00) !important;
    background-size: 200% auto !important;
    animation: textGradient 3s ease infinite !important;
    color: #000 !important;
    font-weight: 600 !important;
    border: none !important;
    padding: 15px 30px !important;
    border-radius: 5px !important;
    cursor: pointer !important;
    transition: transform 0.3s ease, opacity 0.3s ease !important;
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    gap: 10px !important;
    text-decoration: none !important;
    min-width: 180px !important;
    text-align: center !important;
    box-shadow: 0 4px 8px rgba(255, 107, 0, 0.2) !important;
    font-size: 1.1rem !important;
    position: relative !important;
    z-index: 101 !important;
}

/* Devam Et butonu hover efekti */
.btn-next:hover {
    transform: translateY(-3px) !important;
    box-shadow: 0 10px 20px rgba(255, 107, 0, 0.3) !important;
}

/* Devam Et butonu aktif durumu */
.btn-next:active {
    transform: translateY(1px) !important;
    box-shadow: 0 5px 10px rgba(255, 107, 0, 0.2) !important;
}

/* Devre dışı Devam Et butonu stili */
.btn-next.disabled,
.btn-next:disabled {
    background: #cccccc !important;
    color: #666666 !important;
    cursor: not-allowed !important;
    opacity: 0.7 !important;
    pointer-events: none !important;
    box-shadow: none !important;
    animation: none !important;
} 