/* Hero Banner */
.page-hero {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    background-size: cover;
    background-position: center top;
    background-repeat: no-repeat;
    background-blend-mode: normal;
    position: relative;
    padding: 150px 0 200px;
    min-height: 520px;
    color: #fff;
    overflow: hidden;
    margin-bottom: -80px;
    z-index: 1;
    perspective: 1000px;
}

.page-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to bottom, 
                rgba(0,0,0,0.3) 0%,
                rgba(0,0,0,0.5) 50%,
                rgba(0,0,0,0.7) 100%);
    z-index: 1;
}

.page-hero::after {
    content: '';
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    height: 250px;
    background: linear-gradient(to bottom, 
                rgba(22, 27, 46, 0) 0%,
                rgba(22, 27, 46, 0.95) 80%,
                rgba(22, 27, 46, 1) 100%);
    z-index: 2;
}

.hero-content {
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
    position: relative;
    z-index: 3;
    transform-style: preserve-3d;
    animation: heroEntrance 1.5s ease-out forwards;
}

@keyframes heroEntrance {
    0% {
        opacity: 0;
        transform: translateY(30px) translateZ(-100px);
    }
    100% {
        opacity: 1;
        transform: translateY(0) translateZ(0);
    }
}

.hero-title {
    font-size: 4rem;
    font-weight: 800;
    margin-bottom: 25px;
    text-shadow: 0 5px 15px rgba(0, 0, 0, 0.5);
    animation: fadeInDown 1s ease-out;
    transform: translateZ(50px);
    letter-spacing: -0.5px;
    background: linear-gradient(135deg, #fff 0%, rgba(255,255,255,0.8) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    position: relative;
}

.hero-title::after {
    content: attr(data-text);
    position: absolute;
    left: 0;
    top: 0;
    z-index: -1;
    color: rgba(255,255,255,0.1);
    transform: translateZ(-5px) translateY(5px) scale(1.05);
    filter: blur(10px);
}

.hero-subtitle {
    font-size: 1.4rem;
    opacity: 0.9;
    max-width: 700px;
    margin: 0 auto 35px;
    animation: fadeInUp 1s ease-out;
    transform: translateZ(30px);
    text-shadow: 0 2px 5px rgba(0, 0, 0, 0.3);
}

.hero-cta {
    animation: fadeIn 1.5s ease-out;
    display: flex;
    justify-content: center;
    gap: 25px;
    margin-top: 40px;
    transform: translateZ(40px);
}

.hero-cta .btn {
    padding: 14px 35px;
    border-radius: 30px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
    font-size: 1.05rem;
    position: relative;
    overflow: hidden;
    border: none;
}

.btn-accent {
    background: #FF5722; /* Turuncu */
    color: #fff;
    box-shadow: 0 8px 20px rgba(255, 87, 34, 0.4);
}

.btn-secondary {
    background: #7B1FA2; /* Mor */
    color: #fff;
    box-shadow: 0 8px 20px rgba(123, 31, 162, 0.4);
}

.shine-btn::before {
    content: '';
    position: absolute;
    top: -180px;
    left: 0;
    width: 30px;
    height: 100%;
    background: rgba(255, 255, 255, 0.3);
    transform: rotate(45deg) translateX(-150%);
    animation: shine 3s infinite;
    transition: all 0.3s ease;
}

@keyframes shine {
    0% {
        transform: rotate(45deg) translateX(-150%);
    }
    15% {
        transform: rotate(45deg) translateX(350%);
    }
    100% {
        transform: rotate(45deg) translateX(350%);
    }
}

.shine-btn:hover::before {
    animation-duration: 1s;
}

.float-btn {
    animation: float 2s ease-in-out infinite;
}

@keyframes float {
    0% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-7px);
    }
    100% {
        transform: translateY(0);
    }
}

.hero-cta .btn:hover {
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.4);
}

.hero-cta .btn::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 150%;
    height: 150%;
    background: radial-gradient(circle, rgba(255,255,255,0.2) 0%, rgba(255,255,255,0) 80%);
    transform: translate(-50%, -50%) scale(0);
    opacity: 0;
    transition: transform 0.6s, opacity 0.5s;
}

.hero-cta .btn:active::after {
    transform: translate(-50%, -50%) scale(1);
    opacity: 1;
    transition: 0s;
}

/* Animation keyframes */
@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes scaleIn {
    from {
        opacity: 0;
        transform: scale(0.9);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

/* Section Styles */
.section-header {
    text-align: center;
    margin-bottom: 60px;
    position: relative;
    z-index: 5;
}

.section-title {
    font-size: 2.8rem;
    font-weight: 800;
    margin-bottom: 15px;
    color: var(--text-light);
    position: relative;
    display: inline-block;
}

.section-title:after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: var(--primary-color);
    border-radius: 2px;
}

.section-description {
    font-size: 1.2rem;
    color: var(--text-muted);
    max-width: 700px;
    margin: 0 auto;
}

/* VDS Features Section */
.vds-features-section {
    padding: 100px 0;
    background-color: var(--dark-bg-color);
    position: relative;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.vds-features-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: linear-gradient(45deg, rgba(var(--primary-color-rgb), 0.03) 25%, transparent 25%, transparent 50%, rgba(var(--primary-color-rgb), 0.03) 50%, rgba(var(--primary-color-rgb), 0.03) 75%, transparent 75%, transparent);
    background-size: 100px 100px;
    opacity: 0.05;
}

.vds-features {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 30px;
    position: relative;
    z-index: 5;
}

.vds-feature-card {
    background: rgba(255, 255, 255, 0.02);
    border-radius: 15px;
    padding: 40px 30px;
    transition: all 0.5s cubic-bezier(0.165, 0.84, 0.44, 1);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    text-align: center;
    position: relative;
    overflow: hidden;
    z-index: 1;
    border: 1px solid rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
    transform-style: preserve-3d;
    perspective: 1000px;
}

.vds-feature-card:hover {
    transform: translateY(-10px) rotateX(5deg) rotateY(5deg);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}

.vds-feature-card:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(var(--primary-color-rgb), 0.1) 0%, rgba(var(--secondary-color-rgb), 0.05) 100%);
    z-index: -1;
    opacity: 0;
    transition: all 0.5s ease;
}

.vds-feature-card:hover:before {
    opacity: 1;
}

.feature-icon {
    font-size: 3rem;
    margin-bottom: 25px;
    color: var(--primary-color);
    position: relative;
    display: inline-block;
    transform: translateZ(30px);
}

.feature-icon:after {
    content: '';
    position: absolute;
    width: 70px;
    height: 70px;
    background: rgba(var(--primary-color-rgb), 0.1);
    border-radius: 50%;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: -1;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(var(--primary-color-rgb), 0.2);
}

.vds-feature-card:hover .feature-icon:after {
    transform: translate(-50%, -50%) scale(1.2);
    background: rgba(var(--primary-color-rgb), 0.2);
    box-shadow: 0 10px 25px rgba(var(--primary-color-rgb), 0.3);
}

.vds-feature-card h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 15px;
    color: var(--heading-color);
    transition: all 0.3s ease;
    transform: translateZ(20px);
}

.vds-feature-card p {
    color: var(--text-color);
    font-size: 1rem;
    line-height: 1.6;
    transform: translateZ(10px);
}

/* VDS Pricing Section */
.vds-pricing-section {
    padding: 0 0 100px;
    background-color: var(--dark-bg-color);
    position: relative;
    z-index: 2;
}

.vds-pricing-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 100%;
    background-image: url('../../img/pattern-bg.png');
    background-size: 300px;
    opacity: 0.03;
    pointer-events: none;
}

.pricing-tabs {
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 5;
}

.tab-buttons {
    display: flex;
    justify-content: center;
    margin-bottom: 50px;
    flex-wrap: wrap;
    gap: 15px;
}

.tab-button {
    padding: 12px 30px;
    background: rgba(255, 255, 255, 0.05);
    border: 2px solid var(--primary-color);
    border-radius: 30px;
    font-weight: 600;
    font-size: 1.1rem;
    color: var(--text-light);
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.tab-button.active, .tab-button:hover {
    background: var(--primary-color);
    color: #fff;
    box-shadow: 0 8px 20px rgba(var(--primary-color-rgb), 0.4);
}

.tab-content {
    position: relative;
}

.pricing-grid {
    display: none;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
}

.pricing-grid.active {
    display: grid;
    animation: fadeIn 0.5s ease-out;
}

.vds-pricing-card {
    background: rgba(255, 255, 255, 0.02);
    border-radius: 20px;
    padding: 40px 30px;
    position: relative;
    transition: all 0.5s cubic-bezier(0.23, 1, 0.32, 1);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    display: flex;
    flex-direction: column;
    border: 1px solid rgba(255, 255, 255, 0.05);
    overflow: hidden;
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
    transform-style: preserve-3d;
    perspective: 1000px;
}

.vds-pricing-card.featured {
    border: 2px solid var(--primary-color);
    transform: scale(1.05) translateZ(30px);
    z-index: 2;
    box-shadow: 0 15px 40px rgba(var(--primary-color-rgb), 0.3);
    background: rgba(var(--primary-color-rgb), 0.08);
}

.vds-pricing-card:hover {
    transform: translateY(-15px) translateZ(20px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.25);
}

.vds-pricing-card.featured:hover {
    transform: scale(1.05) translateY(-15px) translateZ(40px);
    box-shadow: 0 25px 50px rgba(var(--primary-color-rgb), 0.4);
}

.vds-pricing-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.1) 0%, rgba(255, 255, 255, 0.03) 100%);
    opacity: 0;
    transition: opacity 0.5s ease;
    pointer-events: none;
    z-index: -1;
}

.vds-pricing-card:hover::after {
    opacity: 1;
}

.featured-badge {
    position: absolute;
    top: -15px;
    right: 20px;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    color: white;
    padding: 7px 18px;
    border-radius: 30px;
    font-size: 0.9rem;
    font-weight: 700;
    box-shadow: 0 5px 15px rgba(var(--primary-color-rgb), 0.3);
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% { box-shadow: 0 0 0 0 rgba(var(--primary-color-rgb), 0.7); }
    70% { box-shadow: 0 0 0 10px rgba(var(--primary-color-rgb), 0); }
    100% { box-shadow: 0 0 0 0 rgba(var(--primary-color-rgb), 0); }
}

.featured-badge i {
    margin-right: 5px;
}

.pricing-header {
    text-align: center;
    margin-bottom: 25px;
    position: relative;
    z-index: 1;
}

.package-name {
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 8px;
    color: var(--heading-color);
    transition: all 0.3s ease;
}

.vds-pricing-card:hover .package-name {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    transform: scale(1.05);
}

.package-subtitle {
    font-size: 1rem;
    color: var(--text-muted);
}

.pricing-price {
    text-align: center;
    margin-bottom: 20px;
    position: relative;
    padding: 15px 0;
    background: linear-gradient(135deg, rgba(var(--primary-color-rgb), 0.08) 0%, rgba(var(--secondary-color-rgb), 0.05) 100%);
    border-radius: 15px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    box-shadow: inset 0 0 30px rgba(0, 0, 0, 0.1);
    overflow: hidden;
}

.pricing-price::before {
    content: '';
    position: absolute;
    top: -5px;
    left: -5px;
    right: -5px;
    bottom: -5px;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    z-index: -2;
    opacity: 0.1;
    border-radius: 20px;
    transition: all 0.3s ease;
}

.vds-pricing-card:hover .pricing-price::before {
    opacity: 0.3;
    transform: scale(1.02);
}

.price {
    font-size: 2.2rem;
    font-weight: 800;
    color: var(--primary-color);
    line-height: 1;
    transition: all 0.3s ease;
    text-shadow: 0 0 10px rgba(var(--primary-color-rgb), 0.2);
    display: inline-block;
    position: relative;
}

.price::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 100%;
    height: 3px;
    background: var(--primary-color);
    border-radius: 2px;
    transform: scaleX(0);
    transform-origin: center;
    transition: transform 0.3s ease;
}

.vds-pricing-card:hover .price::after {
    transform: scaleX(1);
}

.vds-pricing-card:hover .price {
    transform: scale(1.1);
    text-shadow: 0 5px 15px rgba(var(--primary-color-rgb), 0.4);
}

.old-price {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 1rem;
    color: var(--text-muted);
    text-decoration: line-through;
    opacity: 0.7;
}

.period {
    font-size: 0.9rem;
    color: var(--text-muted);
    margin-left: 3px;
    position: relative;
    top: -3px;
}

.pricing-features {
    margin-bottom: 30px;
    flex-grow: 1;
}

.pricing-features ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.pricing-features li {
    padding: 12px 5px;
    display: flex;
    align-items: center;
    gap: 15px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    font-weight: 500;
    transition: all 0.3s ease;
}

.vds-pricing-card:hover .pricing-features li {
    border-bottom-color: rgba(var(--primary-color-rgb), 0.1);
    transform: translateX(5px);
}

.pricing-features li:last-child {
    border-bottom: none;
}

.pricing-features i {
    color: var(--primary-color);
    width: 20px;
    text-align: center;
    font-size: 1.1rem;
    transition: all 0.3s ease;
}

.vds-pricing-card:hover .pricing-features i {
    transform: scale(1.2);
}

.pricing-action {
    text-align: center;
    margin-top: auto;
}

.pricing-action .btn {
    width: 100%;
    padding: 15px;
    font-weight: 600;
    border-radius: 10px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    font-size: 1.1rem;
    box-shadow: 0 8px 15px rgba(var(--primary-color-rgb), 0.2);
    position: relative;
    overflow: hidden;
}

.pricing-action .btn:after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 120%;
    height: 0;
    padding-bottom: 120%;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    transform: translate(-50%, -50%) scale(0);
    opacity: 0;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.pricing-action .btn:hover:after {
    transform: translate(-50%, -50%) scale(1);
    opacity: 1;
}

.pricing-action .btn:hover {
    transform: translateY(-5px) scale(1.03);
    box-shadow: 0 12px 30px rgba(var(--primary-color-rgb), 0.4);
}

.no-products {
    grid-column: 1 / -1;
    text-align: center;
    padding: 70px;
    background: var(--card-bg);
    border-radius: 15px;
    color: var(--text-muted);
    font-size: 1.2rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

/* FAQ Section */
.faq-section {
    position: relative;
    padding: 80px 0;
    background-color: var(--card-bg);
    background: linear-gradient(to bottom, rgba(22, 27, 46, 0.4), rgba(30, 38, 66, 0.8));
    backdrop-filter: blur(5px);
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.faq-section .section-title {
    color: var(--text-color);
}

.faq-section .section-subtitle {
    color: var(--text-muted);
}

.faq-accordion {
    max-width: 900px;
    margin: 0 auto;
    position: relative;
    z-index: 5;
}

.faq-item {
    margin-bottom: 15px;
    border-radius: 8px;
    overflow: hidden;
    background-color: rgba(26, 28, 40, 0.7);
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.faq-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.faq-question {
    padding: 20px;
    cursor: pointer;
    position: relative;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: all 0.3s ease;
}

.faq-question:hover {
    background-color: rgba(30, 38, 66, 0.9);
}

.faq-question h3 {
    margin: 0;
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--text-color);
    flex: 1;
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.5s cubic-bezier(0, 1, 0, 1);
    background-color: rgba(22, 27, 46, 0.4);
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.faq-answer.active {
    max-height: 1000px;
    transition: max-height 1s ease-in-out;
}

.faq-answer p {
    padding: 20px;
    margin: 0;
    color: var(--text-muted);
    line-height: 1.6;
}

.faq-icon {
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    color: var(--primary-color);
    font-size: 14px;
    background-color: rgba(255, 102, 0, 0.1);
    border-radius: 50%;
    padding: 12px;
    margin-left: 10px;
}

.faq-question.active .faq-icon i {
    transform: rotate(135deg);
}

.faq-question:hover .faq-icon {
    background-color: rgba(255, 102, 0, 0.2);
}

/* SSS Javascript */
.faq-question.active {
    border-bottom: none;
    background-color: rgba(30, 38, 66, 0.9);
}

/* Responsive Styles */
@media (max-width: 992px) {
    .hero-title {
        font-size: 2.8rem;
    }
    
    .section-title {
        font-size: 2.3rem;
    }
    
    .vds-features {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .pricing-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .hero-title {
        font-size: 2.3rem;
    }
    
    .hero-subtitle {
        font-size: 1.1rem;
    }
    
    .hero-cta {
        flex-direction: column;
        gap: 15px;
    }
    
    .hero-cta .btn {
        width: 100%;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .vds-features {
        grid-template-columns: 1fr;
    }
    
    .pricing-grid {
        grid-template-columns: repeat(1, 1fr);
    }
    
    .vds-pricing-card.featured {
        transform: scale(1);
    }
    
    .vds-pricing-card.featured:hover {
        transform: translateY(-10px);
    }
    
    .tab-button {
        font-size: 0.9rem;
        padding: 10px 20px;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2rem;
    }
    
    .section-title {
        font-size: 1.8rem;
    }
    
    .section-description {
        font-size: 1rem;
    }
    
    .tab-buttons {
        flex-direction: column;
        width: 80%;
        margin: 0 auto 40px;
    }
    
    .tab-button {
        width: 100%;
    }
}

/* Paket resmi */
.package-image {
    padding: 10px 10px 0;
    text-align: center;
    max-height: 120px;
    overflow: hidden;
}

.package-image img {
    max-width: 80%;
    height: auto;
    border-radius: 8px;
    margin-bottom: 5px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.vds-pricing-card:hover .package-image img {
    transform: scale(1.03);
} 