﻿/* E-Ticaret Paketleri - Yeni Tasarım */
.packages-hero {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    padding: 80px 0;
    color: white;
    text-align: center;
}

.packages-hero .hero-title {
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 20px;
    color: white;
}

.packages-hero .hero-subtitle {
    font-size: 1.2rem;
    margin-bottom: 30px;
    opacity: 0.9;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.hero-badges {
    display: flex;
    justify-content: center;
    gap: 15px;
    flex-wrap: wrap;
}

.hero-badges .badge {
    background: rgba(255, 255, 255, 0.2);
    padding: 8px 16px;
    border-radius: 25px;
    font-size: 0.9rem;
    font-weight: 600;
    backdrop-filter: blur(10px);
}

.packages-section {
    padding: 80px 0;
    background: #f8f9fa;
}

.packages-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.package-card {
    background: white;
    border-radius: 20px;
    padding: 40px 30px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    position: relative;
    border: 2px solid transparent;
}

.package-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}

.package-card.featured {
    border-color: #833eab;
    transform: scale(1.05);
}

.package-card.featured:hover {
    transform: scale(1.05) translateY(-10px);
}

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

.package-badge {
    display: inline-block;
    background: #833eab;
    color: white;
    padding: 8px 20px;
    border-radius: 25px;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 15px;
}

.package-badge.popular {
    background: linear-gradient(45deg, #ff6b6b, #ff8e8e);
}

.package-name {
    font-size: 2rem;
    font-weight: 800;
    margin-bottom: 10px;
    color: #333;
}

.package-description {
    color: #666;
    font-size: 1rem;
    line-height: 1.6;
}

.package-price {
    text-align: center;
    margin-bottom: 30px;
    padding: 20px;
    background: #f8f9fa;
    border-radius: 15px;
}

.price-label {
    display: block;
    font-size: 0.9rem;
    color: #666;
    margin-bottom: 10px;
}

.price-range {
    font-size: 1.8rem;
    font-weight: 800;
    color: #333;
}

.package-features h4 {
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 20px;
    color: #333;
}

.features-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.features-list li {
    display: flex;
    align-items: center;
    padding: 12px 0;
    border-bottom: 1px solid #f0f0f0;
    font-size: 1rem;
}

.features-list li:last-child {
    border-bottom: none;
}

.features-list i {
    color: #28c76f;
    margin-right: 12px;
    font-size: 1.1rem;
}

.package-cta {
    margin-top: 30px;
    text-align: center;
}
.package-cta button{color:#7f2db3;border-color:#7f2db3}
.packages-cta {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    padding: 60px 40px;
    border-radius: 20px;
    text-align: center;
    color: white;
    margin-top: 60px;
}

.packages-cta h3 {
    font-size: 2rem;
    font-weight: 800;
    margin-bottom: 15px;
}

.packages-cta p {
    font-size: 1.1rem;
    margin-bottom: 30px;
    opacity: 0.9;
}

.packages-features {
    padding: 80px 0;
    background: white;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-top: 50px;
}

.feature-item {
    text-align: center;
    padding: 30px 20px;
}

.feature-icon {
    font-size: 3rem;
    margin-bottom: 20px;
}

.feature-item h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 15px;
    color: #333;
}

.feature-item p {
    color: #666;
    line-height: 1.6;
}

/* Timeline Toggle Styles */
.timeline-hidden {
    display: none;
}

.timeline-toggle {
    text-align: center;
    margin-top: 40px;
    padding: 20px 0;
    position: relative;
    background: #f8f9fa;
}

/* Sadece butonun arkasındaki timeline çizgisini gizle */
.timeline-toggle::before {
    display: none !important;
}

.timeline-toggle .btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 12px 24px;
    border: 2px solid #833eab;
    background: transparent;
    color: #833eab;
    border-radius: 25px;
    font-weight: 600;
    transition: all 0.3s ease;
    cursor: pointer;
}

.timeline-toggle .btn:hover {
    background: #833eab;
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(102, 126, 234, 0.3);
}

.timeline-toggle .btn-icon {
    transition: transform 0.3s ease;
}

.timeline-toggle .btn:hover .btn-icon {
    transform: translateY(-1px);
}

/* Responsive */
@media (max-width: 768px) {
    .packages-hero .hero-title {
        font-size: 2.2rem;
    }
    
    .packages-hero .hero-subtitle {
        font-size: 1rem;
    }
    
    .hero-badges {
        flex-direction: column;
        align-items: center;
    }
    
    .packages-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .package-card {
        padding: 30px 20px;
    }
    
    .package-card.featured {
        transform: none;
    }
    
    .package-card.featured:hover {
        transform: translateY(-10px);
    }
    
    .packages-cta {
        padding: 40px 20px;
    }
    
    .packages-cta h3 {
        font-size: 1.5rem;
    }
    
    .timeline-toggle .btn {
        padding: 10px 20px;
        font-size: 0.9rem;
    }
}

/* Comparison table */
.packages-compare { background: #fff; border-radius: 14px; box-shadow: 0 10px 30px rgba(0,0,0,0.06); overflow: hidden; }
.packages-compare .compare-head { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; background: #f7f7fb; padding: 14px 16px; gap: 8px; align-items: end; }
.packages-compare .compare-group {grid-column: 1 / -1;background: #fafafa;padding: 10px 16px;font-weight: 900;color: #7f2db3;border-top: 1px solid #eee;}
.packages-compare .compare-row { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; padding: 12px 16px; border-top: 1px solid #eee; align-items: center; }
.packages-compare .col {padding: 6px 8px;text-align: center;}
.packages-compare .feature-col {font-weight: 600;color: #333;text-align: left;}
.packages-compare .plan-col { text-align: center; }
.packages-compare .plan-name { font-weight: 800; }
.packages-compare .plan-meta { font-size: 12px; color: #7a7a8a; margin-bottom: 6px; }
.packages-compare .fa-check { color: #28c76f; }
.packages-compare .fa-times { color: #c0c4d0; }

@media (max-width: 992px) {
  .packages-compare .compare-head,
  .packages-compare .compare-row { grid-template-columns: 1.4fr 1fr 1fr 1fr; }
}
@import url('https://fonts.googleapis.com/css2?family=Manrope:wght@300;400;500;600;700;800&family=Nunito+Sans:wght@300;400;600;700;800&family=DM+Sans:wght@400;500;700&display=swap');

:root {
    --font-heading: 'Manrope', sans-serif;
    --font-body: 'Nunito Sans', sans-serif;
    --font-light: 'Nunito Sans',  sans-serif;
    --font-medium: 'Manrope',  sans-serif;
    --font-bold: 'Manrope',  sans-serif;
    --color-background: #efefef;
    --color-accent: #9d59c0;
    --color-accent-dark: #7f3aa8;
    --color-accent-contrast: #ffffff;
}

body {
    
    padding-bottom: 20px;
    font-family: var(--font-body);
    font-weight: 400;
    line-height: 1.6;
    color: #333;
    background: var(--color-background);
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-bold);
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1rem;
}

h1 {
    font-family: var(--font-bold);
    font-weight: 700;
    font-size: 2.5rem;
}

h2 {
    font-family: var(--font-bold);
    font-weight: 700;
    font-size: 2rem;
}

h3 {
    font-family: var(--font-bold);
    font-weight: 700;
    font-size: 1.5rem;
}

.btn, .nav-cta-btn, .hero-buttons .btn { font-family: 'DM Sans', sans-serif; font-weight: 600; }
  .cta-content  .nav-cta-btn{margin-top:25px;font-size:20px!important}
    .navbar, .nav-menu a {
        font-family: var(--font-medium);
        font-weight: 500;
    }

.nav-toggle {
    display: none;
    width: 28px;
    height: 22px;
}
.nav-toggle span {
    display: block;
    height: 3px;
    background: #ffffff;
    border-radius: 2px;
    margin: 4px 0;
    transition: transform .25s ease, opacity .25s ease;
}
.nav-toggle.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.hero-main-container {
    position: relative;
    width: 100%;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    background: #f8f9fa;
}

.hero-content {
    display: flex;
    align-items: center;
    gap: 60px;
    padding: 80px 0;
    flex: 1;
    max-width: 1200px;
    margin: 0 auto;
    width: 100%;
    box-sizing: border-box;
}

.hero-left {
    flex: 1;
    min-width: 320px;
    padding-right: 20px;
}

.hero-right {
    flex: 1;
    display: flex;
    justify-content: flex-end;
    align-items: center;
}

.hero-title {
    font-family: var(--font-medium);
    font-weight: normal;
    font-size: 3.5rem;
    line-height: 1.1;
    margin-bottom: 20px;
    color: #1a1a1a;
}

.hero-badge {
    display: inline-block;
    padding: 8px 16px;
    border-radius: 20px;
    background: rgba(157, 89, 192, 0.1);
    color: #7f3aa8;
    font-size: 14px;
    font-family: var(--font-medium);
    font-weight: 500;
    margin-bottom: 20px;
    border: 1px solid rgba(157, 89, 192, 0.2);
}

.hero-description {
    font-family: var(--font-light);
    font-weight: 300;
    font-size: 1.2rem;
    line-height: 1.6;
    color: #666;
    margin-bottom: 30px;
    max-width: 500px;
}

.hero-buttons {
    display: flex;
    gap: 20px;
}

.hero-video {
    width: 100%;
    max-width: 500px;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0,0,0,0.15);
    border: 1px solid rgba(255,255,255,0.2);
}

.hero-video video {
    display: block;
    width: 100%;
    height: auto;
}

.section-title, .about-title, .references-title, .testimonials-title, .faq-title {
    font-family: var(--font-bold);
    font-weight: 700;
    text-align: center;
}

.section-subtitle, .about-subtitle, .references-subtitle, .testimonials-subtitle, .faq-subtitle {
    font-family: var(--font-light);
    font-weight: 300;
    text-align: center;
    color: #9f65c3;
    font-size: 15px;
}
.faq-subtitle {
    /* color: #bdb4e6!important; */
}

.service-card h3 {
    font-family: var(--font-heading);
    font-weight: 600;
}
.mt40{margin-top:40px}
.service-card a{text-decoration:none}
.service-card p {
    font-family: var(--font-body);
    font-weight: 400;
}

.testimonial-name {
    font-family: var(--font-heading);
    font-weight: 600;
    color: #fff;
}

.testimonial-role, .testimonial-text {
    font-family: var(--font-body);
    color: #fff;
}

.faq-question {
    font-family: var(--font-heading);
    font-weight: 500;
}
.faq-question .adim{background: #ffffff;width: 40px;height: 40px;text-align: center;border-radius: 10px;color: #7f2db3;font-weight: 900;display: flex;align-items: center;justify-content: center;font-family: var(--font-bold);}

.faq-answer {
    font-family: var(--font-body);
    font-weight: 400;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
    font-family: var(--font-body);
    font-weight: 400;
}

.contact-form .btn-main {
    font-family: var(--font-heading);
    font-weight: 600;
}

.modal-header h3 {
    font-family: var(--font-heading);
    font-weight: 700;
}

.footer h4 {
    font-family: var(--font-heading);
    font-weight: 600;
}

.footer p, .footer a {
    font-family: var(--font-body);
    font-weight: 400;
}

.body-content {
    padding-left: 15px;
    padding-right: 15px;
}

input,
select,
textarea {
    max-width: 280px;
}

.hero-logo {
    animation: float 2s ease-in-out infinite;
    transition: all 0.5s ease;
    cursor: pointer;
    /* max-width: 300px; */
    height: auto;
}

.hero-logo:hover {
    animation: bounce 0.8s ease-in-out;
    transform: scale(1.15) rotate(5deg);
    filter: drop-shadow(0 0 25px rgba(157, 89, 192, 0.8));
}

.hero-logo path,
.hero-logo .logo-path {
    transition: all 0.3s ease;
    fill: #333;
}

.hero-logo:hover path,
.hero-logo:hover .logo-path {
    fill: var(--color-accent);
    animation: pathPulse 0.8s ease-in-out;
}

@keyframes float {
    0%, 100% {
        transform: translateY(0px) rotate(0deg);
    }
    25% {
        transform: translateY(-15px) rotate(1deg);
    }
    50% {
        transform: translateY(-20px) rotate(0deg);
    }
    75% {
        transform: translateY(-15px) rotate(-1deg);
    }
}

@keyframes bounce {
    0% {
        transform: scale(1.15) rotate(5deg) translateY(0);
    }
    25% {
        transform: scale(1.2) rotate(8deg) translateY(-30px);
    }
    50% {
        transform: scale(1.25) rotate(5deg) translateY(-40px);
    }
    75% {
        transform: scale(1.2) rotate(2deg) translateY(-30px);
    }
    100% {
        transform: scale(1.15) rotate(5deg) translateY(0);
    }
}

@keyframes pathPulse {
    0% {
        fill: #333;
        opacity: 1;
    }
    50% {
        fill: var(--color-accent);
        opacity: 0.8;
    }
    100% {
        fill: var(--color-accent);
        opacity: 1;
    }
}

.hero-right {
    transition: all 0.3s ease;
}

.hero-right:hover {
    transform: scale(1.05);
}
.hero-right svg path{fill:#fff;opacity: 0.1;}

.hero-video {width: 100%;max-width: 560px;border-radius: 0;overflow: hidden;box-shadow: 0 20px 40px rgba(0,0,0,.18);border: 1px solid rgba(255,255,255,.15);}
.hero-video video { display:block; width: 100%; height: auto; }

.testimonials-section {
    padding: 80px 0;
    background: #ffffff;
}

.testimonials-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.testimonials-title {
    font-size: 2.5rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 15px;
    color: #1a1a1a;
}

.testimonials-subtitle {
    font-size: 1.1rem;
    color: #666;
    text-align: center;
    margin-bottom: 50px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.testimonials-animated-grid {
    display: flex;
    gap: 20px;
    height: 60vh;
    overflow: hidden;
    margin-top: 30px;
}

.testimonials-col {
    flex: 1;
    overflow: hidden;
}

.testimonials-col-up {
    overflow: hidden;
}

.testimonials-col-inner {
    display: flex;
    flex-direction: column;
    gap: 32px;
    animation: scroll-up-loop 10s linear infinite;
}

.testimonials-col-inner-left {
    animation: scroll-up-loop-left 50s linear infinite;
}

.testimonials-col-inner-center {
    animation: scroll-down-loop-center 45s linear infinite;
}

.testimonials-col-inner-right {
    animation: scroll-up-loop-right 50s linear infinite;
}

@keyframes scroll-up-loop {
    0% { transform: translateY(0); }
    100% { transform: translateY(-50%); }
}

@keyframes scroll-up-loop-left {
    0% { transform: translateY(0); }
    100% { transform: translateY(-50%); }
}

@keyframes scroll-down-loop-center {
    0% { transform: translateY(-50%); }
    100% { transform: translateY(0); }
}

@keyframes scroll-up-loop-right {
    0% { transform: translateY(0); }
    100% { transform: translateY(-50%); }
}

.testimonial-card {
    background: #fff;
    border: 1px solid #e0e0e0;
    border-radius: 15px;
    padding: 25px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.testimonial-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(157, 89, 192, 0.1), transparent);
    transition: left 0.5s;
}

.testimonial-card:hover::before {
    left: 100%;
}

.testimonial-card:hover {
    transform: translateY(-5px);
    border-color: #9d59c0;
    box-shadow: 0 8px 30px rgba(157, 89, 192, 0.15);
}

.testimonial-text {
    font-size: 1rem;
    line-height: 1.6;
    color: #333;
    margin-bottom: 20px;
    font-style: italic;
}

.testimonial-name {
    font-weight: 600;
    color: #9d59c0;
    font-size: 0.9rem;
    text-align: right;
}

.testimonial-user {
    margin-top: 25px;
    display: flex;
    justify-content: flex-start;
    align-items: center;
}

.testimonial-user img {
    width: 60px;
    margin-right: 20px;
    border-radius: 50%;
}

@media (max-width: 900px) {
    .testimonials-animated-grid {
        flex-direction: column;
        gap: 0;
        min-height: unset;
        height: auto;
    }
    
    .testimonials-col-inner {
        animation: none !important;
        gap: 18px;
    }
    
    .testimonials-title {
        font-size: 2rem;
    }
    
    .testimonials-subtitle {
        font-size: 1rem;
    }
    
    .testimonial-card {
        padding: 20px;
    }
}

@media (max-width: 768px) {
    .testimonials-col-up{margin-top:30px}
    .testimonials-section {padding: 60px 0;}
    .footer-logo, .social-links{display:flex;justify-content: center;}
    .testimonials-title {font-size: 1.8rem;}
    .testimonial-card {padding: 15px;}
    .testimonial-text {font-size: 0.9rem;}
    .career-icon{margin:0 auto}
    .career-text, .career-title{text-align:center}
    .nav-logo img{width:auto}
    .hizmetler .slider-navigation{top: inherit !important;bottom: -60px;transform: none !important;}
    .hizmetler .slider-navigation.left{left: 36% !important;}
    .hizmetler .slider-navigation.right{right: 34% !important;}
}

.references-slider-container {
    width: 100%;
    overflow: hidden;
    position: relative;
    /* background: white; */
    padding: 40px 0;
    margin-top: auto;
}

.references-slider {
    display: flex;
    width: 200%; /* İki track için */
    animation: slideLogos 30s linear infinite;
    animation-play-state: paused; /* Başlangıçta duracak, JS ile başlatılacak */
}

.references-track {
    display: flex;
    align-items: center;
    gap: 40px;
    padding: 20px 0;
    width: 100%;
    margin-left: 90px;
}

.reference-logo {
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 120px;
    height: 80px;
    background: #ffffff;
    border-radius: 12px;
    padding: 5px;
    transition: all 0.3s ease;
    border: 1px solid #e9ecef;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.reference-logo:hover {
    transform: translateY(-5px) scale(1.05);
    background: white;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    border-color: #7f3aa8;
}

.reference-logo img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    filter: grayscale(100%) brightness(1);
    transition: all 0.3s ease;
}

.reference-logo:hover img {
    filter: grayscale(0%) brightness(1);
}

@keyframes slideLogos {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%); /* İkinci track'a geçiş */
    }
}

.references-slider-container:hover .references-slider {
    animation-play-state: paused;
}

/* Responsive tasarım */
@media (max-width: 768px) {
    .hero-content {
        flex-direction: column;
        text-align: center;
        gap: 40px;
        padding: 60px 20px;
    }
    
    .hero-left {
        padding-right: 0;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-description {
        font-size: 1.1rem;
        max-width: 100%;
    }
    
    .hero-buttons {
        justify-content: center;
    }
    
    .references-track {
        gap: 20px;
    }
    
    .reference-logo {
        width: 80px;
        height: 60px;
        padding: 10px;
    }
    
    .references-slider {
        animation-duration: 20s; /* Mobilde daha hızlı */
        animation-play-state: paused; /* Başlangıçta duracak, JS ile başlatılacak */
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-description {
        font-size: 1rem;
        margin-bottom: 10px;
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .btn {
        width: 100%;
        max-width: 300px;
    }
}

.nav-cta-btn {
    background: linear-gradient(135deg, var(--color-accent) 0%, var(--color-accent-dark) 100%);
    font-size: 14px;
    cursor: pointer;
    text-transform: uppercase;
    border: 1px solid rgba(255, 255, 255, .25);
    padding: 10px 16px;
    border-radius: 10px;
    font-weight: 700;
    letter-spacing: .2px;
    transition: background .25s 
ease, color .25s 
ease, border-color .25s 
ease, box-shadow .25s 
ease, transform .2s 
ease;
    color: #fff;
}

.nav-cta-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(157, 89, 192, 0.4);
    background: linear-gradient(135deg, var(--color-accent-dark) 0%, var(--color-accent) 100%);
}

/* Modal Overlay */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(10px);
    display: none;
    justify-content: center;
    align-items: center;
    z-index: 9999;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.modal-overlay.active {
    display: flex;
    opacity: 1;
}

.modal-content {
    background: white;
    border-radius: 20px;
    width: 90%;
    max-width: 600px;
    max-height: 90vh;
    overflow-y: auto;
    transform: scale(0.7);
    transition: transform 0.3s ease;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

.modal-overlay.active .modal-content {
    transform: scale(0.95);
}

.modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 25px 30px;
    border-bottom: 1px solid #eee;
    background: linear-gradient(135deg, var(--color-accent) 0%, var(--color-accent-dark) 100%);
    color: white;
    border-radius: 20px 20px 0 0;
}

.modal-header h3 {
    margin: 0;
    font-size: 24px;
    font-weight: 700;
}

.modal-close {
    background: none;
    border: none;
    color: white;
    font-size: 24px;
    cursor: pointer;
    padding: 5px;
    border-radius: 50%;
    transition: all 0.3s ease;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.modal-close:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: rotate(90deg);
}

.modal-body {
    padding: 30px;
}

.contact-form {
    position: relative;
}

.form-group {
    margin-bottom: 20px;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 15px;
    border: 2px solid #e1e5e9;
    border-radius: 10px;
    font-size: 16px;
    transition: all 0.3s ease;
    background: #f8f9fa;
    max-width: 100%;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--color-accent);
    background: white;
    box-shadow: 0 0 0 3px rgba(157, 89, 192, 0.1);
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

.btn-main {
    background: linear-gradient(135deg, var(--color-accent) 0%, var(--color-accent-dark) 100%);
    color: white;
    border: none;
    padding: 15px 30px;
    border-radius: 25px;
    font-weight: 600;
    font-size: 16px;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    width: 100%;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.btn-main:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(157, 89, 192, 0.4);
}

.btn-main .circle {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.btn-main:hover .circle {
    width: 300px;
    height: 300px;
}

.formloading {
    display: none;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.9);
    justify-content: center;
    align-items: center;
    border-radius: 20px;
    z-index: 10;
}

.lds-roller {
    display: inline-block;
    position: relative;
    width: 80px;
    height: 80px;
}

.lds-roller div {
    animation: lds-roller 1.2s cubic-bezier(0.5, 0, 0.5, 1) infinite;
    transform-origin: 40px 40px;
}

.lds-roller div:after {
    content: " ";
    display: block;
    position: absolute;
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: #667eea;
    margin: -4px 0 0 -4px;
}

.lds-roller div:nth-child(1) {
    animation-delay: -0.036s;
}

.lds-roller div:nth-child(1):after {
    top: 63px;
    left: 63px;
}

.lds-roller div:nth-child(2) {
    animation-delay: -0.072s;
}

.lds-roller div:nth-child(2):after {
    top: 68px;
    left: 56px;
}

.lds-roller div:nth-child(3) {
    animation-delay: -0.108s;
}

.lds-roller div:nth-child(3):after {
    top: 71px;
    left: 48px;
}

.lds-roller div:nth-child(4) {
    animation-delay: -0.144s;
}

.lds-roller div:nth-child(4):after {
    top: 72px;
    left: 40px;
}

.lds-roller div:nth-child(5) {
    animation-delay: -0.18s;
}

.lds-roller div:nth-child(5):after {
    top: 71px;
    left: 32px;
}

.lds-roller div:nth-child(6) {
    animation-delay: -0.216s;
}

.lds-roller div:nth-child(6):after {
    top: 68px;
    left: 24px;
}

.lds-roller div:nth-child(7) {
    animation-delay: -0.252s;
}

.lds-roller div:nth-child(7):after {
    top: 63px;
    left: 17px;
}

.lds-roller div:nth-child(8) {
    animation-delay: -0.288s;
}

.lds-roller div:nth-child(8):after {
    top: 56px;
    left: 12px;
}

@keyframes lds-roller {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}

.tesekkurler {
    display: none;
    text-align: center;
    padding: 30px;
    background: linear-gradient(135deg, #4CAF50 0%, #45a049 100%);
    color: white;
    border-radius: 15px;
    margin-bottom: 20px;
}

.tesekkurler p {
    margin: 0;
    font-size: 18px;
    font-weight: 600;
}

@media (max-width: 768px) {
    .modal-content {
        width: 95%;
        margin: 20px;
    }
    
    .modal-header {
        padding: 20px;
    }
    
    .modal-body {
        padding: 20px;
    }
    
    .nav-cta-btn {
        padding: 10px 16px;
        font-size: 12px;
    }
}

.decorative-wave {
    width: 100vw;
    position: relative;
    left: 0;
    right: 0;
    overflow: hidden;
    bottom: -10px;
}
.decorative-wave path {fill: #7f2db3;fill-opacity: 1;}
.referansbottom{position: absolute;bottom: 50px;left: 0;overflow: visible;}

.services-section {
    padding: 80px 0;
    background: #ffffff;
}
.yorumlarsection{background: #ffffff;}
.beyazbg{background: #ffffff;}
.gribg{background: #f8f9fa;}
.services-slider-container {
    position: relative;
    margin: 0 auto;
    padding: 0 20px;
    overflow: hidden;
}

.hizmetler .services-slider-wrapper {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
}

.hizmetler .services-slider-wrapper .services-slider-container {
    flex: 1;
    margin: 0;
    padding: 0;
}

.services-slider {
    display: flex;
    gap: 30px;
    overflow: hidden;
    scroll-behavior: smooth;
    padding: 20px 0;
    width: max-content;
    transition: transform 0.4s ease-in-out;
}

.service-card {
    flex: 0 0 280px;
    background: white;
    border-radius: 20px;
    padding: 40px 30px;
    text-align: center;
    /* box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1); */
    transition: all 0.3s ease;
    border: 2px solid transparent;
    position: relative;
    overflow: hidden;
    border: 1px solid #ddd;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(127, 58, 168, 0.1), transparent);
    transition: left 0.5s ease;
}

.service-card:hover::before {
    left: 100%;
}

.service-card:hover {
    transform: translateY(-10px);
    border-color: #7f3aa8;
    box-shadow: 0 20px 40px rgba(127, 58, 168, 0.15);
}

.service-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 20px;
    /* background: linear-gradient(135deg, #7f3aa8, #9d59c0); */
    border-radius: 20px;
    /* display: flex; */
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: white;
    /* box-shadow: 0 10px 25px rgba(127, 58, 168, 0.3); */
    transition: all 0.3s ease;
}

.service-card:hover .service-icon {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 15px 35px rgba(127, 58, 168, 0.4);
}

.service-card h3 {
    font-family: var(--font-bold);
    font-size: 1.4rem;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 15px;
    line-height: 1.3;
}

.service-card p {
    font-family: var(--font-light);
    font-weight: 300;
    color: #666;
    line-height: 1.6;
    font-size: 1rem;
    margin: 0;
}

.hizmetler .slider-navigation {position: absolute;top: 50%;transform: translateY(-50%);}
.hizmetler .slider-navigation.left{left: -7%;z-index: 9;}
.hizmetler .slider-navigation.right{right: -7%;z-index: 9;}
.slider-navigation{display:flex;justify-content: center;align-items: center;margin-top: 30px;}
.slider-navigation button{
    margin: 0 10px;
}

.nav-btn {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: white;
    border: 2px solid #e9ecef;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 1.2rem;
    color: #7f3aa8;
    /* box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1); */
}

.nav-btn:hover {
    background: #7f3aa8;
    color: white;
    border-color: #7f3aa8;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(127, 58, 168, 0.3);
}

.nav-btn:active {
    transform: translateY(0);
}

/* Responsive Design */
@media (max-width: 768px) {
    .services-slider {
        gap: 20px;
        padding: 10px 0;
    }
    
    .service-card {
        flex: 0 0 250px;
        padding: 30px 20px;
    }
    
    .service-icon {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
    }
    
    .service-card h3 {
        font-size: 1.2rem;
    }
    
    .service-card p {
        font-size: 0.9rem;
    }
}

@media (max-width: 480px) {
    .service-card {
        flex: 0 0 220px;
        padding: 25px 15px;
    }
    
    .nav-btn {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }
}

.gradient-text {
    background: #7f2db3;
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.btn-primary {
    background: var(--color-accent);
    color: var(--color-accent-contrast);
    border: 1px solid var(--color-accent);
}
.btn-primary:hover { filter: brightness(0.95); }

.btn-secondary {
    background: transparent;
    color: var(--color-accent);
    border: 2px solid var(--color-accent);
}
.btn-secondary:hover { background: rgba(157, 89, 192, 0.08); }

.hero-badge {
    display: inline-block;
    padding: 6px 12px;
    border-radius: 999px;
    background: rgba(157, 89, 192, 0.12);
    color: #7f2db3;
    border: 1px solid rgba(157, 89, 192, 0.25);
}


.contact-hero {
    padding: 40px 0;
    background: linear-gradient(135deg, var(--color-accent) 0%, var(--color-accent-dark) 100%);
    color: #ffffff;
    margin-top: 100px;
}

.contact-hero-title {
    margin: 0 0 10px;
    font-weight: 800;
    letter-spacing: -0.5px;
    text-align: center;
}

.contact-hero-subtitle {
    margin: 0 auto;
    opacity: .95;
    max-width: 900px;
    text-align: center;
}

.contact-section {
    padding: 60px 0;
}

.contact-cards {display:flex;gap: 25px;}
.contact-cards>div{width:100%}

.contact-card {
    background: rgba(255, 255, 255, 0.65);
    border: 1px solid rgba(0, 0, 0, 0.06);
    border-radius: 16px;
    padding: 24px;
    height: 100%;
    backdrop-filter: blur(8px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    transition: transform .25s ease, box-shadow .25s ease;
}
.contact-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.12);
}

.contact-card-icon {
    width: 44px;
    height: 44px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
    background: linear-gradient(135deg, var(--color-accent) 0%, var(--color-accent-dark) 100%);
    color: #fff;
    margin-bottom: 12px;
    box-shadow: 0 8px 20px rgba(157, 89, 192, 0.35);
}

.contact-card-title {
    margin: 0 0 6px;
    font-size: 18px;
}

.contact-card-text {
    margin: 0;
    color: #333;
    opacity: .9;
}

.contact-link {
    color: var(--color-accent-dark);
    text-decoration: none;
}

.contact-link:hover { text-decoration: underline; }

.contact-main { row-gap: 24px; }

.contact-title { margin-top: 0; }

.contact-form-card {
    margin-top: 12px;
    background: #ffffff;
    border: 1px solid rgba(0, 0, 0, 0.06);
    border-radius: 16px;
    padding: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.06);
}

.contact-map {
    border: 1px solid rgba(0, 0, 0, 0.08);
    border-radius: 16px;
    overflow: hidden;
    background: #ffffff;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.06);margin-top:50px
}
.contact-map iframe{height:400px}
@media (max-width: 768px) {
    .contact-hero { padding: 60px 0; }
    .services-scroll, .contact-cards,.stats-row{flex-direction: column;}
    .service-slide{display:flex;justify-content: center; height: 410px;align-items: flex-start;}
    .yolarkadas>div{width:100%!important}
}


.refs-filter {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin: 20px 0 24px;
}

.filter-pill {
    appearance: none;
    border: 1px solid var(--color-accent);
    background: rgba(157, 89, 192, 0.1);
    color: #333;
    padding: 8px 14px;
    border-radius: 999px;
    font-weight: 600;
    cursor: pointer;
    transition: all .2s ease;
}

.filter-pill:hover {
    background: rgba(157, 89, 192, 0.18);
}

.filter-pill.active {
    background: linear-gradient(135deg, var(--color-accent) 0%, var(--color-accent-dark) 100%);
    color: #fff;
    border-color: transparent;
    box-shadow: 0 6px 18px rgba(157, 89, 192, 0.35);
}

.refs-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
    margin-top: 50px;
}

@media (max-width: 992px) {
    .refs-grid { grid-template-columns: repeat(3, 1fr); }
}

@media (max-width: 640px) {
    .refs-grid { grid-template-columns: repeat(2, 1fr); }
}

.ref-card {
    background: #fff;
    border: 1px solid rgba(0,0,0,0.08);
    border-radius: 12px;
    height: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all .2s ease;
    padding: 25px;
}

.ref-card:hover {
    box-shadow: 0 10px 24px rgba(0,0,0,0.08);
    transform: translateY(-2px);
}

.ref-card img {
  object-fit: contain;
  filter: grayscale(100%) brightness(1);
  transition: filter .2s ease;
  width: 70%;
  vertical-align: top;
}
.about-section { padding: 60px 0; }
.about-card {
    background: #fff;
    border: 1px solid rgba(0,0,0,0.06);
    border-radius: 16px;
    padding: 24px;
    height: 100%;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.06);
}
.about-card-title {margin: 0 0 6px;font-size: 18px;color: #8642ad;}
.about-card-text { margin: 0; color: #333; opacity: .9; }
.dijitalhedef{}
.dijitalhedef .nav-cta-btn{margin-top:15px}

.about-stats { padding: 30px 0 10px; }
.stats-row {gap: 25px;display: flex;justify-content: space-between;}
.stats-row>div{width:100%}
.stat-box {
    background: linear-gradient(135deg, var(--color-accent) 0%, var(--color-accent-dark) 100%);
    color: #fff;
    border-radius: 16px;
    padding: 20px;
    text-align: center;
    box-shadow: 0 12px 30px rgba(157, 89, 192, 0.3);
}
.stat-number { font-size: 28px; font-weight: 800; letter-spacing: -0.5px; }
.stat-label { opacity: .95; }
.eticaret{display:none}
.about-timeline { padding: 40px 0; }
.timeline { position: relative; margin: 20px 0; }
.yolarkadas{
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    justify-content: space-between;
    flex-direction: row;
    align-items: center;
}
.yolarkadas>div{
    width: calc(50% - 5px);
    margin: 0;
    gap: 0;
    display: flex;
}
.yolarkadas>div img{width:100%}
.timeline::before {
    content: "";
    position: absolute;
    left: 20px;
    top: 0;
    bottom: 0;
    width: 3px;
    background: linear-gradient(180deg, var(--color-accent), var(--color-accent-dark));
    border-radius: 2px;
}
.timeline-item { position: relative; padding-left: 64px; margin-bottom: 22px; }
.timeline-item.txtcenter {text-align:center!important}
.timeline-dot {
    position: absolute;
    left: 12px;
    width: 16px;
    height: 16px;
    background: #fff;
    border: 3px solid var(--color-accent);
    border-radius: 50%;
}
.timeline-content h4 { margin: 0 0 6px; }
.timeline-content p { margin: 0; color: #333; opacity: .9; }

.about-cta {
    background: rgba(255,255,255,.9);
    border: 1px solid rgba(0,0,0,.06);
    border-radius: 16px;
    padding: 24px;
    box-shadow: 0 12px 30px rgba(0,0,0,0.06);
}


.meta-overview { padding: 50px 0; }
.meta-process { padding: 40px 0; }
.meta-benefits { padding: 40px 0 60px; }

.process-steps {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 16px;
}
@media (max-width: 992px) { .process-steps { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 640px) { .process-steps { grid-template-columns: repeat(1, 1fr); } }

.process-step {
    background: #fff;
    border: 1px solid rgba(0,0,0,0.06);
    border-radius: 16px;
    padding: 20px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.06);
    position: relative;
    overflow: hidden;
}
.process-index {
    position: absolute;
    top: -6px;
    right: 12px;
    font-size: 48px;
    font-weight: 800;
    color: rgba(157, 89, 192, 0.12);
}

/* Reveal animation */
.reveal { opacity: 0; transform: translateY(16px); transition: all .5s ease; }
.reveal.in { opacity: 1; transform: translateY(0); }

/* Mobile Animation Fix */
@media (max-width: 768px) {
    .fade-in {
        opacity: 1 !important;
        transform: translateY(0) !important;
        transition: none !important;
    }
    
    .fade-in.visible {
        opacity: 1 !important;
        transform: translateY(0) !important;
    }
    
    .reveal {
        opacity: 1 !important;
        transform: translateY(0) !important;
        transition: none !important;
    }
    
    .reveal.in {
        opacity: 1 !important;
        transform: translateY(0) !important;
    }
}

   .nav-menu { list-style: none; margin: 0; padding: 0; align-items: center;}
        .nav-menu li {position: relative;list-style-type:none;padding: 0 5px;}
        .has-dropdown > a.dropdown-toggle::after {
            content: "\f107";
            font-family: "Font Awesome 6 Free";
            font-weight: 900;
            margin-left: 6px;
            font-size: 0.9em;position:inherit;background:none;bottom:0
        }
        .dropdown-menu {
            display: none;
            position: fixed;
            top: 100%;
            left: 50%;
            transform: translateX(-50%);
            min-width: 220px;
            background: #0f0f10;
            /* border: 1px solid rgba(255,255,255,0.08); */
            border-radius: 0;
            padding: 8px 0;
            z-index: 1000;
            box-shadow: 0 20px 50px rgba(0,0,0,0.35);
        }
        .dropdown-menu li a {display: block;padding: 10px 16px;white-space: nowrap;padding-left: 0;}
.has-dropdown.active > .dropdown-menu {
    display: block;
}


        .mega-dropdown {width: 1240px;padding: 0;background: #0f0f10;border-radius: 10px;}
        .mega-header { padding: 8px 8px 12px; border-bottom: 1px solid rgba(255,255,255,.06); margin-bottom: 12px; }
        .mega-header h4 { margin: 0 0 4px; color: #fff; }
        .mega-header p { margin: 0; color: #bdb4e6; font-size: 13px; }
        .mega-grid {display: grid;grid-template-columns: repeat(5, 1fr);gap: 12px;}
        .service-mini { display:flex; gap:10px; align-items: flex-start; padding: 12px; border-radius: 12px; background: rgba(255,255,255,.04); border: 1px solid rgba(255,255,255,.06); color:#fff; text-decoration:none; transition: transform .2s ease, background .2s ease, border-color .2s ease }
        .service-mini:hover { transform: translateY(-3px); background: rgba(255,255,255,.07); border-color: rgba(255,255,255,.12) }
        .service-mini .icon { width:34px; height:34px; display:inline-flex; align-items:center; justify-content:center; border-radius:10px; background: linear-gradient(135deg, var(--color-accent) 0%, var(--color-accent-dark) 100%); box-shadow: 0 6px 16px rgba(157,89,192,.35) }
        .service-mini h5 { margin: 0 0 4px; color:#fff; }
        .service-mini p { margin: 0; color:#bdb4e6; font-size: 12px; }
        .mega-footer { margin-top: 12px; padding-top: 12px; border-top: 1px solid rgba(255,255,255,.06); display: flex; justify-content: flex-end; }

        .mega-grid.three-cols {display: grid;grid-template-columns: 1.2fr 1.1fr 0.9fr;gap: 28px;align-items: stretch;}
        .mega-col {min-width: 0;padding: 65px 0;}

        .services-col .service-mini {display: grid;grid-template-columns: 72px 1fr;gap: 14px;align-items: center;padding: 14px 12px;border-radius: 14px;background: transparent;border: 0;}
        .services-col .service-mini:hover { background: rgba(157,89,192,0.10); }
        .services-col .service-mini .icon { width: 72px; height: 72px; border-radius: 50%; background: #efe9ff; display: grid; place-items: center; }
        .services-col .service-mini .icon img { width: 40px; height: 40px; object-fit: contain; }
        .services-col .service-mini h5 { margin: 0 0 6px; color: #fff; font-size: 20px; }
        .services-col .service-mini p { margin: 0; color:#bdb4e6; font-size: 13px; line-height: 1.5; }

        .center-col .robot-card {/* background: radial-gradient(120% 120% at 50% 0%, #1a1a22 0%, #0f0f12 70%); */border-radius: 16px;padding: 16px;display: flex;flex-direction: column;align-items: center;justify-content: center;height: 100%;}
        .center-col .robot-card img {max-width: 100%;max-height: 300px;object-fit: contain;display: block;animation: floatMaskot 4s 
ease-in-out infinite;}
        .center-col .robot-card .btn {margin-top: 60px;}

        .packages-col .packages-card {color: #fff;height: 100%;display: flex;flex-direction: column;padding: 0 25px;}
        .packages-col .packages-header { font-weight: 800; letter-spacing: .6px; opacity: .95; margin-bottom: 16px; }
        .packages-col .packages-list { list-style: none; margin: 0; padding: 0; display: grid; gap: 18px; }
        .packages-col .package-item { padding: 6px 0; }
        .packages-col .package-title { color: #fff; font-weight: 900; font-size: 30px; margin-bottom: 6px; }
        .packages-col .package-desc { color: rgba(255,255,255,.85); font-size: 14px; line-height: 1.5; margin: 0; }

@media (max-width: 992px) {
    .nav-container { 
        display: flex; 
        align-items: center; 
        justify-content: space-between; 
        position: relative; 
    }
    
    .nav-toggle { 
        display: flex;
        flex-direction: column;
        cursor: pointer; 
        z-index: 10001;
        width: 30px;
        height: 25px;
        justify-content: space-between;
        transition: all 0.3s ease;
    }
    
    .nav-toggle span {
        display: block;
        width: 100%;
        height: 3px;
        background: #9d59c0;
        border-radius: 3px;
        transition: all 0.3s ease;
    }
    
    .nav-toggle.open span:nth-child(1) {
        transform: translateY(2px) rotate(45deg);
        background: #fff;
    }
    
    .nav-toggle.open span:nth-child(2) {
        opacity: 0;
        transform: translateX(-20px);
    }
    
    .nav-toggle.open span:nth-child(3) {
        transform: translateY(-11px) rotate(-45deg);
        background: #fff;
    }
    
    .nav-menu {
        position: fixed;
        top: 0;
        left: -100%;
        width: 100%;
        height: 100vh;
        background: linear-gradient(135deg, #8e34c7 0%, #5e1a8f 100%);
        backdrop-filter: blur(20px);
        padding: 100px 30px 50px;
        overflow-y: auto;
        transition: left 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        z-index: 10000;
        display: flex;
        flex-direction: column;
        gap: 0;
    }
    
    .nav-menu::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: 
            radial-gradient(circle at 20% 30%, rgba(255,255,255,0.08) 0%, transparent 50%),
            radial-gradient(circle at 80% 70%, rgba(255,255,255,0.05) 0%, transparent 50%);
        pointer-events: none;
    }
    
    .nav-menu.open { 
        left: 0; 
    }
    
    .nav-menu > li {
        margin: 0;
        padding: 0;
        border-bottom: 1px solid rgba(255,255,255,0.1);
        opacity: 0;
        transform: translateX(-50px);
        animation: slideInLeft 0.5s forwards;
    }
    
    .nav-menu.open > li:nth-child(1) { animation-delay: 0.1s; }
    .nav-menu.open > li:nth-child(2) { animation-delay: 0.2s; }
    .nav-menu.open > li:nth-child(3) { animation-delay: 0.3s; }
    .nav-menu.open > li:nth-child(4) { animation-delay: 0.4s; }
    .nav-menu.open > li:nth-child(5) { animation-delay: 0.5s; }
    
    @keyframes slideInLeft {
        to {
            opacity: 1;
            transform: translateX(0);
        }
    }
    
    .nav-menu > li > a {
        display: block;
        color: #fff;
        font-size: 1.5rem;
        font-weight: 600;
        padding: 20px 0;
        text-decoration: none;
        transition: all 0.3s ease;
        position: relative;
    }
    
    .nav-menu > li > a::after {
        content: '';
        position: absolute;
        bottom: 15px;
        left: 0;
        width: 0;
        height: 3px;
        background: #fff;
        transition: width 0.3s ease;
    }
    
    .nav-menu > li > a:hover::after {
        width: 60px;
    }
    
    .has-dropdown > a.dropdown-toggle::after {
        content: "\f107";
        font-family: "Font Awesome 6 Free";
        font-weight: 900;
        margin-left: 10px;
        font-size: 1.2rem;
        transition: transform 0.3s ease;
    }
    
    .has-dropdown.active > a.dropdown-toggle::after {
        transform: rotate(180deg);
    }
    
    .dropdown-menu { 
        position: static;
        display: none;
        border: none; 
        box-shadow: none; 
        background: rgba(255,255,255,0.08);
        backdrop-filter: blur(10px);
        padding: 20px;
        margin-top: 10px;
        border-radius: 15px;
        border: 1px solid rgba(255,255,255,0.1);
    }
    
    .has-dropdown.active .dropdown-menu {
        display: block;
        animation: fadeInDown 0.3s ease;
    }
    
    @keyframes fadeInDown {
        from {
            opacity: 0;
            transform: translateY(-20px);
        }
        to {
            opacity: 1;
            transform: translateY(0);
        }
    }
    
    .mega-dropdown { 
        width: auto; 
        background: transparent; 
        padding: 0; 
    }
    
    .mega-header { 
        display: none; 
    }
    
    .mega-grid { 
        display: block !important;
        grid-template-columns: 1fr !important;
    }
    
    .mega-grid.three-cols {
        display: block !important;
        gap: 0;
    }
    
    .mega-col {
        padding: 0 !important;
        width: 100%;
    }
    
    .services-col {
        display: block !important;
    }
    
    .services-col .service-mini {
        display: flex !important;
        flex-direction: row !important;
        align-items: center !important;
        grid-template-columns: auto !important;
        background: rgba(255,255,255,0.1);
        border: 1px solid rgba(255,255,255,0.15);
        padding: 15px !important;
        margin-bottom: 12px;
        border-radius: 12px;
        transition: all 0.3s ease;
        gap: 15px;
    }
    
    .services-col .service-mini .icon {
        width: 50px !important;
        height: 50px !important;
        min-width: 50px;
        background: rgba(255,255,255,0.15) !important;
        border-radius: 10px;
        display: flex;
        align-items: center;
        justify-content: center;
    }
    
    .services-col .service-mini .icon img {
        width: 30px !important;
        height: 30px !important;
    }
    
    .services-col .service-mini > div {
        flex: 1;
    }
    
    .services-col .service-mini:hover {
        background: rgba(255,255,255,0.15);
        transform: translateX(5px);
    }
    
    .services-col .service-mini h5 {
        color: #fff !important;
        font-size: 1rem !important;
        margin-bottom: 5px !important;
    }
    
    .services-col .service-mini p {
        color: rgba(255,255,255,0.85) !important;
        font-size: 0.85rem !important;
        line-height: 1.4;
    }
    
    .center-col {
        display: none !important;
    }
    
    .center-col .robot-card {
        display: none !important;
    }
    
    .packages-col {
        display: none !important;
    }
    
    .eticaretpaket {
        display: none !important;
    }
    
    .nav-cta-btn {
        width: 100%;
        text-align: center;
        margin-top: 20px;
        padding: 15px 30px;
        font-size: 1.1rem;
        border-radius: 12px;
        border: none;
        font-weight: 700;
        box-shadow: 0 4px 20px rgba(255,255,255,0.2);
    }
    
    .nav-cta-btn:hover {
        transform: translateY(-2px);
        box-shadow: 0 6px 25px rgba(255,255,255,0.3);
    }
}

/* =============================
   About Page - New Design Styles
   ============================= */

/* E-Ticaret Packages Page */
.packages-page {/* max-width: 1100px; */margin: 120px auto;padding: 60px 0;}
.packages-tabs { display: flex; gap: 10px; margin-bottom: 20px; position: sticky; top: 64px; z-index: 10; }
.package-tab { background: #eee; border: none; padding: 10px 16px; border-radius: 10px; cursor: pointer; font-weight: 600; }
.package-tab.active { background: #7a2ae0; color: #fff; }
.package-panels { background: #fff; border-radius: 14px; box-shadow: 0 10px 30px rgba(0,0,0,0.08); padding: 20px; }
.package-panel { display: none; }
.package-panel h2 { margin-top: 0; font-size: 28px; }
.package-panel h2 small { font-size: 14px; font-weight: 600; color: #7a7a8a; }
.package-panel ul { margin: 14px 0 0 18px; }
.package-panel ul li { margin-bottom: 6px; }

/* Anchor offset for fixed nav */
.package-panel { scroll-margin-top: 90px; }

/* Hero Section */
.about-hero {
    position: relative;
    min-height: 80vh;
    display: flex;
    align-items: center;
    background: linear-gradient(135deg, #7f3aa8 0%, #9d59c0 50%, #b366d9 100%);
    overflow: hidden;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.moving-lines {
    position: absolute;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, transparent 30%, rgba(255,255,255,0.1) 50%, transparent 70%);
    animation: moveLines 3s linear infinite;
}

@keyframes moveLines {
    0% { transform: translateX(-100%); }
    100% { transform: translateX(100%); }
}

.meta-hero .hero-content {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
    gap: 60px;
    width: 100%;
}

.meta-hero .hero-text {
    flex: 1;
    color: white;
}

.meta-hero .hero-title {
    font-size: 3.5rem;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 20px;
    text-shadow: 0 2px 10px rgba(0,0,0,0.3);
}

.meta-hero .hero-subtitle {
    font-size: 1.3rem;
    opacity: 0.95;
    line-height: 1.6;
    max-width: 600px;
}

.meta-hero .hero-visual {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
}

.maskot-container {
    position: relative;
    animation: floatMaskot 4s ease-in-out infinite;
}

.maskot-bot {
    width: 280px;
    height: auto;
    filter: drop-shadow(0 10px 30px rgba(0,0,0,0.3));
}

.compass-icon {
    position: absolute;
    top: -20px;
    right: -20px;
    font-size: 2rem;
    animation: rotateCompass 2s linear infinite;
}

@keyframes floatMaskot {
    0%, 100% { transform: translateY(0px) rotate(0deg); }
    25% { transform: translateY(-10px) rotate(2deg); }
    50% { transform: translateY(-15px) rotate(0deg); }
    75% { transform: translateY(-10px) rotate(-2deg); }
}

@keyframes rotateCompass {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* Founder Story Section */
.founder-story {
    padding: 80px 0;
    background: #f8f9fa;
}

.timeline-container {
    position: relative;
    /* max-width: 830px; */
    margin: 0 auto;
}

.timeline-container::before {
    content: '';
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 4px;
    background: linear-gradient(180deg, var(--color-accent), var(--color-accent-dark));
    transform: translateX(-50%);
    border-radius: 2px;
}

.timeline-item {
    position: relative;
    margin: 40px 0;
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease;
}

.timeline-item.animate {
    opacity: 1;
    transform: translateY(0);
}

.timeline-item:nth-child(odd) {
    text-align: right;
    /* padding-right: 60px; */
}

.timeline-item:nth-child(even) {
    text-align: left;
    padding-left: 60px;
}

.timeline-icon {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    width: 60px;
    height: 60px;
    background: white;
    border: 4px solid var(--color-accent);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    z-index: 2;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

.timeline-content {
    background: white;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    border: 1px solid rgba(157, 89, 192, 0.1);
}

.timeline-content h3 {
    color: var(--color-accent);
    font-size: 1.5rem;
    margin-bottom: 10px;
}

.timeline-content p {
    color: #666;
    font-size: 1.1rem;
    line-height: 1.6;
}

/* Manifesto Section */
.manifesto-section {
    padding: 80px 0;
    background: #f8f9fa;
}

.manifesto-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    margin-top: 50px;
}

.manifesto-item {
    text-align: center;
    padding: 40px 30px;
    background: #ffffff;
    border-radius: 20px;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.manifesto-item:hover {
    transform: translateY(-10px);
    background: white;
    border-color: var(--color-accent);
    box-shadow: 0 20px 40px rgba(157, 89, 192, 0.15);
}

.manifesto-icon {
    font-size: 3rem;
    margin-bottom: 20px;
    transition: all 0.3s ease;
}

.manifesto-item:hover .manifesto-icon {
    transform: scale(1.2) rotate(10deg);
}

.manifesto-item h3 {
    color: #333;
    font-size: 1.3rem;
    line-height: 1.4;
}

/* Who We Are Not Section */
.who-we-are-not {
    padding: 50px 0;
    position: relative;
    background: linear-gradient(135deg, var(--color-accent) 0%, var(--color-accent-dark) 100%);
    color: white;
    overflow: hidden;
}
.who-we-are-not::before {
    content: "";
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(45deg, rgba(255,255,255,0.06) 25%, transparent 25%),
        linear-gradient(-45deg, rgba(255,255,255,0.06) 25%, transparent 25%);
    background-size: 24px 24px;
    opacity: .35;
    pointer-events: none;
}

.who-we-are-not .section-title {
    color: white;
    text-align: center;
    margin-bottom: 50px;
    background: none;
    -webkit-text-fill-color: initial;
}

.not-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.not-item {
    text-align: center;
    padding: 28px;
    background: rgba(255,255,255,0.92);
    border-radius: 18px;
    border: 1px solid rgba(0,0,0,0.06);
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
    transition: transform .25s ease, box-shadow .25s ease, background .25s ease, border-color .25s ease;
    color: #1a1a1a;
}

.not-item:hover {
    transform: translateY(-6px) scale(1.02);
    background: #ffffff;
    box-shadow: 0 16px 40px rgba(0,0,0,0.12);
    border-color: rgba(157, 89, 192, 0.35);
}

.not-icon {
    font-size: 2.2rem;
    margin-bottom: 12px;
    transition: transform .25s ease, filter .25s ease;
}
.not-icon img{width:120px}
@keyframes pulseX {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.1); }
}

.not-item:hover .not-icon { transform: translateY(-4px) scale(1.05); filter: brightness(1.05); }

.not-item p {
    font-size: 1.05rem;
    line-height: 1.6;
    margin: 0;
    color: #333;
}

/* Team Section */
.team-section {
    padding: 80px 0;
    background: #f8f9fa;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(330px, 1fr));
    gap: 40px;
    margin-top: 50px;
}

.team-member {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
    text-align: center;
}

.team-member:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.15);
}

.member-photo {
    position: relative;
    overflow: hidden;
    height: 600px;
}

.member-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 0.3s ease;
}

.team-member:hover .member-photo img {
    transform: scale(1.1);
}

.member-info {
    padding: 30px 20px;
}

.member-info h3 {
    color: var(--color-accent);
    font-size: 1.4rem;
    margin-bottom: 5px;
}

.member-role {
    color: #666;
    font-weight: 600;
    margin-bottom: 10px;
}

.member-detail {
    color: #999;
    font-size: 0.9rem;
    font-style: italic;
    margin: 0;
}

/* Future Vision Section */
.future-vision {
    position: relative;
    padding: 100px 0;
    background: linear-gradient(135deg, #0a0a0a 0%, #1a1a2e 50%, #16213e 100%);
    color: white;
    overflow: hidden;
}

.stars-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.star {
    position: absolute;
    width: 2px;
    height: 2px;
    background: white;
    border-radius: 50%;
    animation: twinkle 2s ease-in-out infinite;
}

.star:nth-child(1) { top: 20%; left: 20%; animation-delay: 0s; }
.star:nth-child(2) { top: 40%; left: 80%; animation-delay: 0.5s; }
.star:nth-child(3) { top: 60%; left: 30%; animation-delay: 1s; }
.star:nth-child(4) { top: 80%; left: 70%; animation-delay: 1.5s; }
.star:nth-child(5) { top: 30%; left: 60%; animation-delay: 2s; }

@keyframes twinkle {
    0%, 100% { opacity: 0.3; transform: scale(1); }
    50% { opacity: 1; transform: scale(1.5); }
}

.vision-content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.vision-title {
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 30px;
    background: linear-gradient(45deg, #fff, #9d59c0);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.vision-text {
    font-size: 1.3rem;
    line-height: 1.6;
    opacity: 0.9;
    min-height: 70px;
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero-content {
        flex-direction: column;
        text-align: center;
        gap: 40px;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-subtitle {
        font-size: 1.1rem;
    }
    
    .maskot-bot {
        width: 150px;
    }
    
    .timeline-container::before {
        left: 30px;
    }
    
    .timeline-item:nth-child(odd),
    .timeline-item:nth-child(even) {
        text-align: left;
        padding-left: 80px;
        padding-right: 20px;
    }
    
    .timeline-icon {
        left: 30px;
    }
    
    .manifesto-grid,
    .not-grid,
    .team-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .vision-title {
        font-size: 2.2rem;
    }
    
    .vision-text {
        font-size: 1.1rem;
    }
}

/* =============================
   Careers Page Styles
   ============================= */
.careers-hero {position: relative;padding: 80px 0 40px;background: linear-gradient(135deg, var(--color-accent) 0%, var(--color-accent-dark) 100%);color:#fff;overflow:hidden;margin-top: 100px;}
.careers-title {margin:0 0 8px; font-weight:800; letter-spacing:-.5px}
.careers-subtitle {margin:0; opacity:.95}
.careers-pattern {position:absolute; inset:0; background-image: radial-gradient(circle at 20% 30%, rgba(255,255,255,.12), transparent 40%), radial-gradient(circle at 80% 70%, rgba(255,255,255,.08), transparent 45%); pointer-events:none}

.careers-section {padding: 50px 0 80px}
.careers-grid {display:grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 20px}
.careers-note {margin: 0 0 18px; padding: 12px 16px; background: rgba(255,255,255,.9); border:1px solid rgba(0,0,0,.06); border-radius:12px; box-shadow:0 8px 20px rgba(0,0,0,.06)}
.careers-note .careers-mail {font-weight:700; color: var(--color-accent-dark); text-decoration:none}
.careers-note .careers-mail:hover {text-decoration: underline}
.career-card {background:#fff;border:1px solid rgba(0,0,0,.06);border-radius:16px;padding:22px;box-shadow:0 10px 30px rgba(0,0,0,.06);transition:transform .25s ease, box-shadow .25s ease;display: flex;flex-direction: column;justify-content: space-between;}
.career-card:hover {transform: translateY(-6px); box-shadow:0 16px 40px rgba(0,0,0,.12)}
.career-icon {font-size:32px; width:48px; height:48px; display:flex; align-items:center; justify-content:center; border-radius:12px; background: linear-gradient(135deg, var(--color-accent) 0%, var(--color-accent-dark) 100%); color:#fff; box-shadow:0 8px 20px rgba(157,89,192,.35)}
.career-icon img{width:100%}
.career-title {margin:12px 0 6px; color: var(--color-accent)}
.career-text {margin:0 0 14px; color:#333; opacity:.9}
.career-apply-btn {display:inline-block; background:#1a1a1a; color:#fff; border:1px solid #1a1a1a; padding:10px 14px; border-radius:10px; font-weight:700; transition:background .25s ease, color .25s ease, border-color .25s ease, transform .2s ease; text-decoration:none}
.career-apply-btn:hover {background:#ffffff; color:#6a2cff; border-color:#6a2cff; transform: translateY(-1px); box-shadow:0 6px 16px rgba(106,44,255,.25)}

.surec{padding: 100px 0;}

.surec>div>div{display:flex;align-content: center;justify-content: center;align-items: center;}
.surec p{margin-bottom:10px}
.surec h1{
    font-size: 2.5rem;
    font-weight: 700;
    color: #7f2db3;
    margin-bottom: 40px;
    letter-spacing: 0.5px;
    }
.surec>div>div>div:first-child{width: 50%;margin-right: 10%;}
.surec>div>div>div:last-child{}

/* Responsive Surec Section */
@media (max-width: 992px) {
    .surec {
        padding: 60px 0;
    }
    
    .surec>div>div {
        flex-direction: column;
        gap: 30px;
    }
    
    .surec>div>div>div:first-child {
        width: 100%;
        margin-right: 0;
    }
    
    .surec>div>div>div:last-child {
        width: 100%;
    }
    
    .surec h1 {
        font-size: 2rem;
        margin-bottom: 30px;
        text-align: center;
    }
    
    .surec p {
        text-align: center;
    }
}

@media (max-width: 768px) {
    .careers-hero {
        padding: 60px 0 30px;
    }
    
    .surec {
        padding: 40px 0;
    }
    
    .surec>div>div {
        gap: 25px;
    }
    
    .surec h1 {
        font-size: 1.8rem;
        margin-bottom: 20px;
    }
}

@media (max-width: 480px) {
    .surec {
        padding: 30px 0;
    }
    
    .surec h1 {
        font-size: 1.5rem;
        margin-bottom: 15px;
    }
    
    .surec p {
        font-size: 0.9rem;
        margin-bottom: 8px;
    }
}

/* =============================
   Google Ads Page Styles
   ============================= */

/* Google Hero Section */
.google-hero {
    position: relative;
    min-height: 60vh;
    display: flex;
    align-items: center;
    background: linear-gradient(135deg, var(--color-accent) 0%, var(--color-accent-dark) 50%, #9d59c0 100%);
    overflow: hidden;
}

.google-particles {
    position: absolute;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 20% 80%, rgba(255,255,255,0.1) 0%, transparent 50%),
                radial-gradient(circle at 80% 20%, rgba(255,255,255,0.1) 0%, transparent 50%);
    animation: floatParticles 6s ease-in-out infinite;
}

@keyframes floatParticles {
    0%, 100% { transform: translateY(0px) rotate(0deg); }
    50% { transform: translateY(-20px) rotate(180deg); }
}

.search-icons {
    position: absolute;
    top: 20%;
    right: 10%;
    display: flex;
    flex-direction: column;
    gap: 20px;
    z-index: 2;
}

.search-icons .icon {
    width: 60px;
    height: 60px;
    background: rgba(255,255,255,0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,0.2);
    animation: floatIcon 3s ease-in-out infinite;
    cursor: pointer;
    transition: all 0.3s ease;
}

.search-icons .icon:hover {
    transform: scale(1.1);
    background: rgba(255,255,255,0.2);
}

.search-icons .icon:nth-child(1) { animation-delay: 0s; }
.search-icons .icon:nth-child(2) { animation-delay: 1s; }
.search-icons .icon:nth-child(3) { animation-delay: 2s; }

@keyframes floatIcon {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-10px); }
}

.google-hero .hero-content {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
    gap: 160px;
    width: 100%;
    max-width: none;
}

.google-hero .hero-text {
    flex: 1;
    color: white;
}

.google-hero .hero-title {
    font-family: var(--font-bold);
    font-weight: 700;
    font-size: 3.5rem;
    line-height: 1.1;
    margin-bottom: 40px;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
    color: #fff;
}

.google-hero .hero-subtitle {
    font-family: var(--font-light);
    font-weight: 300;
    font-size: 16px;
    opacity: 0.95;
    line-height: 1.6;
    max-width: 600px;
    margin-bottom: 20px;
}

.google-hero .hero-visual {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
}

.google-dashboard {
    background: rgba(255,255,255,0.1);
    border-radius: 20px;
    padding: 30px;
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255,255,255,0.2);
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
    width: 100%;
    max-width: 400px;
}

.dashboard-header {
    margin-bottom: 20px;
}

.platform-tabs {
    display: flex;
    gap: 10px;
}

.tab {
    padding: 8px 16px;
    background: rgba(255,255,255,0.1);
    border-radius: 20px;
    font-size: 0.9rem;
    cursor: pointer;
    transition: all 0.3s ease;
    color: white;
}

.tab.active {
    background: rgba(255,255,255,0.3);
    font-weight: 600;
}

.dashboard-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
}

.metric-card {
    background: rgba(255,255,255,0.1);
    padding: 20px;
    border-radius: 15px;
    text-align: center;
    border: 1px solid rgba(255,255,255,0.2);
}

.metric-icon {
    font-size: 1.5rem;
    margin-bottom: 10px;
}

.metric-value {
    font-size: 1.5rem;
    font-weight: 700;
    color: white;
    margin-bottom: 5px;
}

.metric-label {
    font-size: 0.8rem;
    opacity: 0.9;
    color: white;
}

/* Google Features Section */
.google-features {
    padding: 80px 0;
    background: #f8f9fa;
}

.google-features .section-title {
    font-family: var(--font-bold);
    font-weight: 700;
    color: #1a1a1a;
    text-align: center;
    margin-bottom: 50px;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 40px;
    margin-top: 50px;
}

.feature-card {
    background: white;
    padding: 40px 30px;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    border: 2px solid transparent;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(157, 89, 192, 0.1), transparent);
    transition: left 0.5s ease;
}

.feature-card:hover::before {
    left: 100%;
}

.feature-card:hover {
    transform: translateY(-10px);
    border-color: var(--color-accent);
    box-shadow: 0 20px 40px rgba(157, 89, 192, 0.15);
}

.feature-icon {
    font-size: 3rem;
    margin-bottom: 20px;
    transition: all 0.3s ease;
}

.feature-card:hover .feature-icon {
    transform: scale(1.2) rotate(10deg);
}

.feature-card h3 {
    font-family: var(--font-bold);
    font-weight: 700;
    color: #1a1a1a;
    font-size: 1.4rem;
    margin-bottom: 15px;
}

.feature-card p {
    font-family: var(--font-light);
    font-weight: 300;
    color: #666;
    line-height: 1.6;
    margin-bottom: 20px;
}

.feature-highlight {
    background: linear-gradient(135deg, var(--color-accent), var(--color-accent-dark));
    color: white;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
    display: inline-block;
}

/* Google Platforms Section */
.google-platforms {
    padding: 80px 0;
    background: white;
}

.google-platforms .section-title {
    font-family: var(--font-bold);
    font-weight: 700;
    color: #1a1a1a;
    text-align: center;
    margin-bottom: 50px;
}

.platforms-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.platform-card {
    background: #f8f9fa;
    padding: 40px 30px;
    border-radius: 20px;
    text-align: center;
    transition: all 0.3s ease;
    border: 2px solid transparent;
    position: relative;
    overflow: hidden;
}

.platform-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--color-accent), var(--color-accent-dark));
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.platform-card:hover::before {
    transform: scaleX(1);
}

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

.platform-card.search:hover {
    border-color: var(--color-accent);
    background: rgba(157, 89, 192, 0.05);
}

.platform-card.display:hover {
    border-color: var(--color-accent-dark);
    background: rgba(127, 58, 168, 0.05);
}

.platform-card.youtube:hover {
    border-color: var(--color-accent);
    background: rgba(157, 89, 192, 0.05);
}

.platform-icon {
    font-size: 3rem;
    margin-bottom: 20px;
    transition: all 0.3s ease;
}

.platform-card:hover .platform-icon {
    transform: scale(1.2);
}

.platform-card h3 {
    font-family: var(--font-bold);
    font-weight: 700;
    color: #1a1a1a;
    font-size: 1.4rem;
    margin-bottom: 10px;
}

.platform-card p {
    font-family: var(--font-light);
    font-weight: 300;
    color: #666;
    margin-bottom: 20px;
}

.platform-features {
    list-style: none;
    padding: 0;
    margin: 0;
}

.platform-features li {
    padding: 8px 0;
    color: #666;
    border-bottom: 1px solid rgba(0,0,0,0.1);
    font-family: var(--font-light);
    font-weight: 300;
}

.platform-features li:last-child {
    border-bottom: none;
}

/* Google Process Section */
.google-process {
    padding: 80px 0;
    background: #f8f9fa;
}

.google-process .section-title {
    font-family: var(--font-bold);
    font-weight: 700;
    color: #1a1a1a;
    text-align: center;
    margin-bottom: 50px;
}

.process-timeline {
    position: relative;
    max-width: 1000px;
    margin: 0 auto;
}

.process-timeline::before {
    content: '';
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 4px;
    background: linear-gradient(180deg, var(--color-accent), var(--color-accent-dark));
    transform: translateX(-50%);
    border-radius: 2px;
}

.process-step {
    position: relative;
    margin: 40px 0;
    display: flex;
    align-items: center;
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease;
}

.process-step.animate {
    opacity: 1;
    transform: translateY(0);
}

.process-step:nth-child(odd) {
    flex-direction: row;
}

.process-step:nth-child(even) {
    flex-direction: row-reverse;
}

.step-number {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    width: 60px;
    height: 60px;
    background: white;
    border: 4px solid var(--color-accent);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.2rem;
    color: var(--color-accent);
    z-index: 2;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

.step-content {
    background: white;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    border: 1px solid rgba(157, 89, 192, 0.1);
    width: 45%;
    position: relative;
}

.step-content h3 {
    font-family: var(--font-bold);
    font-weight: 700;
    color: var(--color-accent);
    font-size: 1.3rem;
    margin-bottom: 10px;
}

.step-content p {
    font-family: var(--font-light);
    font-weight: 300;
    color: #666;
    line-height: 1.6;
    margin-bottom: 15px;
}

.step-icon {
    position: absolute;
    top: -15px;
    right: 20px;
    font-size: 2rem;
    background: white;
    padding: 10px;
    border-radius: 50%;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

/* Google Metrics Section */
.google-metrics {
    padding: 80px 0;
    background: linear-gradient(135deg, var(--color-accent) 0%, var(--color-accent-dark) 100%);
    color: white;
}

.google-metrics .section-title {
    font-family: var(--font-bold);
    font-weight: 700;
    color: white;
    text-align: center;
    margin-bottom: 50px;
    -webkit-text-fill-color: inherit;
}

.metrics-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 40px;
}

.metric-item {
    text-align: center;
    padding: 30px 20px;
    background: rgba(255,255,255,0.1);
    border-radius: 20px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,0.2);
    transition: all 0.3s ease;
}

.metric-item:hover {
    transform: translateY(-10px);
    background: rgba(255,255,255,0.2);
}

.metric-icon {
    font-size: 2.5rem;
    margin-bottom: 15px;
}

.metric-number {
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 10px;
    text-shadow: 0 2px 10px rgba(0,0,0,0.3);
}

.metric-label {
    font-size: 1rem;
    opacity: 0.9;
}

/* Google Benefits Section */
.google-benefits {
    padding: 80px 0;
    background: white;
}

.google-benefits .section-title {
    font-family: var(--font-bold);
    font-weight: 700;
    color: #1a1a1a;
    text-align: center;
    margin-bottom: 50px;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    margin-top: 50px;
}

.benefit-card {
    background: #f8f9fa;
    padding: 40px 30px;
    border-radius: 20px;
    text-align: center;
    transition: all 0.3s ease;
    border: 2px solid transparent;
    position: relative;
    overflow: hidden;
}

.benefit-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(157, 89, 192, 0.1), transparent);
    transition: left 0.5s ease;
}

.benefit-card:hover::before {
    left: 100%;
}

.benefit-card:hover {
    transform: translateY(-10px);
    border-color: var(--color-accent);
    box-shadow: 0 20px 40px rgba(157, 89, 192, 0.15);
}

.benefit-icon {
    font-size: 3rem;
    margin-bottom: 20px;
    transition: all 0.3s ease;
}

.benefit-card:hover .benefit-icon {
    transform: scale(1.2) rotate(10deg);
}

.benefit-card h3 {
    font-family: var(--font-bold);
    font-weight: 700;
    color: #1a1a1a;
    font-size: 1.4rem;
    margin-bottom: 15px;
}

.benefit-card p {
    font-family: var(--font-light);
    font-weight: 300;
    color: #666;
    line-height: 1.6;
    margin-bottom: 20px;
}

.benefit-highlight {
    background: linear-gradient(135deg, var(--color-accent), var(--color-accent-dark));
    color: white;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
    display: inline-block;
}

/* Google CTA Section */
.google-cta {
    padding: 80px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

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

/* Unified CTA visual styles */
.cta-robot { width: 160px; height: auto; display: block; margin: 0 auto 18px; }
.cta-title { margin: 0 0 6px; font-family: var(--font-heading); font-weight: 700; color: #1a1a1a; }
.cta-subtitle { max-width: 760px; margin: 0 auto 16px; font-family: var(--font-body); color: #666; }

.cta-content h2 {
    font-family: var(--font-bold);
    font-weight: 700;
    font-size: 2.5rem;
    color: #1a1a1a;
    margin-bottom: 20px;
}
.cta-content h2 b{font-family:'Manrope';font-style: italic;}
.cta-content p {
    font-family: var(--font-light);
    font-weight: 300;
    font-size: 1.2rem;
    color: #666;
    margin-bottom: 30px;
    line-height: 1.6;
}

.cta-features {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.cta-feature {
    background: white;
    padding: 15px 25px;
    border-radius: 25px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    font-weight: 600;
    color: var(--color-accent);
    font-family: var(--font-medium);
    font-weight: 500;
}

/* Responsive Design for Google Ads */
@media (max-width: 768px) {
    .google-hero .hero-content {
        text-align: center;
        gap: 40px;
        display: flex;
        flex-direction: column-reverse;
        margin: 0;
        padding-bottom: 0;
    }
    .google-hero{padding-bottom:40px}
    .google-hero .hero-title {
        font-size: 2.5rem;
    }
    
    .google-hero .hero-subtitle {
        font-size: 1.1rem;
    }
    
    .search-icons {
        position: relative;
        top: auto;
        right: auto;
        flex-direction: row;
        justify-content: center;
        margin-top: 30px;
    }
    
    .process-timeline::before {
        left: 30px;
    }
    
    .process-step:nth-child(odd),
    .process-step:nth-child(even) {
        flex-direction: row;
    }
    
    .step-number {
        left: 30px;
    }
    
    .step-content {
        width: calc(100% - 80px);
        margin-left: 80px;
    }
    
    .features-grid,
    .platforms-grid,
    .benefits-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .metrics-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
    
    .cta-features {
        flex-direction: column;
        align-items: center;
    }
}

/* =============================
   Meta Ads Page Styles
   ============================= */

/* Meta Hero Section */
.meta-hero {
    position: relative;
    min-height: 90vh;
    display: flex;
    align-items: center;
    background: linear-gradient(135deg, var(--color-accent) 0%, var(--color-accent-dark) 50%, #9d59c0 100%);
    overflow: hidden;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.meta-particles {
    position: absolute;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 20% 80%, rgba(255,255,255,0.1) 0%, transparent 50%),
                radial-gradient(circle at 80% 20%, rgba(255,255,255,0.1) 0%, transparent 50%);
    animation: floatParticles 6s ease-in-out infinite;
}

@keyframes floatParticles {
    0%, 100% { transform: translateY(0px) rotate(0deg); }
    50% { transform: translateY(-20px) rotate(180deg); }
}

.social-icons {
    position: absolute;
    top: 20%;
    right: 10%;
    display: flex;
    flex-direction: column;
    gap: 20px;
    z-index: 2;
}

.social-icons .icon {
    width: 60px;
    height: 60px;
    background: rgba(255,255,255,0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,0.2);
    animation: floatIcon 3s ease-in-out infinite;
    cursor: pointer;
    transition: all 0.3s ease;
}

.social-icons .icon:hover {
    transform: scale(1.1);
    background: rgba(255,255,255,0.2);
}

.social-icons .icon:nth-child(1) { animation-delay: 0s; }
.social-icons .icon:nth-child(2) { animation-delay: 1s; }
.social-icons .icon:nth-child(3) { animation-delay: 2s; }

@keyframes floatIcon {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-10px); }
}

.hero-content {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
    gap: 60px;
    width: 100%;
}

.hero-text {
    flex: 1;
    color: white;
}


.hero-subtitle {
    font-size: 1.3rem;
    opacity: 0.95;
    line-height: 1.6;
    max-width: 600px;
    margin-bottom: 40px;
}

.hero-stats {
    display: flex;
    gap: 40px;
    margin-top: 30px;
}

.stat-item {
    text-align: center;
}

.stat-number {
    display: block;
    font-size: 2.5rem;
    font-weight: 800;
    color: #fff;
    text-shadow: 0 2px 10px rgba(0,0,0,0.3);
}

.stat-label {
    font-size: 0.9rem;
    opacity: 0.9;
    margin-top: 5px;
}

.hero-visual {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
}

.meta-dashboard {
    background: rgba(255,255,255,0.1);
    border-radius: 20px;
    padding: 30px;
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255,255,255,0.2);
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
    width: 100%;
    max-width: 440px;
}

.dashboard-header {
    margin-bottom: 20px;
}

.platform-tabs {
    display: flex;
    gap: 10px;
}

.tab {
    padding: 8px 16px;
    background: rgba(255,255,255,0.1);
    border-radius: 20px;
    font-size: 0.9rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.tab.active {
    background: rgba(255,255,255,0.3);
    font-weight: 600;
}

.dashboard-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
}

.metric-card {
    background: rgba(255,255,255,0.1);
    padding: 20px;
    border-radius: 15px;
    text-align: center;
    border: 1px solid rgba(255,255,255,0.2);
}

.metric-icon {
    font-size: 1.5rem;
    margin-bottom: 10px;
}

.metric-value {
    font-size: 1.5rem;
    font-weight: 700;
    color: white;
    margin-bottom: 5px;
}

.metric-label {
    font-size: 0.8rem;
    opacity: 0.9;
}

/* Meta Features Section */
.meta-features {
    padding: 80px 0;
    background: #f8f9fa;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 40px;
    margin-top: 50px;
}

.feature-card {
    background: white;
    padding: 40px 30px;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    border: 2px solid transparent;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(157, 89, 192, 0.1), transparent);
    transition: left 0.5s ease;
}

.feature-card:hover::before {
    left: 100%;
}

.feature-card:hover {
    transform: translateY(-10px);
    border-color: var(--color-accent);
    box-shadow: 0 20px 40px rgba(157, 89, 192, 0.15);
}

.feature-icon {
    font-size: 3rem;
    margin-bottom: 20px;
    transition: all 0.3s ease;
}

.feature-card:hover .feature-icon {
    transform: scale(1.2) rotate(10deg);
}

.feature-card h3 {
    color: #333;
    font-size: 1.4rem;
    margin-bottom: 15px;
}

.feature-card p {
    color: #666;
    line-height: 1.6;
    margin-bottom: 20px;
}

.feature-highlight {
    background: linear-gradient(135deg, var(--color-accent), var(--color-accent-dark));
    color: white;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
    display: inline-block;
}

/* Meta Platforms Section */
.meta-platforms {
    padding: 80px 0;
    background: white;
}

.platforms-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.platform-card {
    background: #f8f9fa;
    padding: 40px 30px;
    border-radius: 20px;
    text-align: center;
    transition: all 0.3s ease;
    border: 2px solid transparent;
    position: relative;
    overflow: hidden;
}

.platform-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--color-accent), var(--color-accent-dark));
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.platform-card:hover::before {
    transform: scaleX(1);
}

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

.platform-card.facebook:hover {
    border-color: var(--color-accent);
    background: rgba(157, 89, 192, 0.05);
}

.platform-card.instagram:hover {
    border-color: var(--color-accent-dark);
    background: rgba(127, 58, 168, 0.05);
}

.platform-card.messenger:hover {
    border-color: var(--color-accent);
    background: rgba(157, 89, 192, 0.05);
}

.platform-icon {
    font-size: 3rem;
    margin-bottom: 20px;
    transition: all 0.3s ease;
}

.platform-card:hover .platform-icon {
    transform: scale(1.2);
}

.platform-card h3 {
    color: #333;
    font-size: 1.4rem;
    margin-bottom: 10px;
}

.platform-card p {
    color: #666;
    margin-bottom: 20px;
}

.platform-features {
    list-style: none;
    padding: 0;
    margin: 0;
}

.platform-features li {
    padding: 8px 0;
    color: #666;
    border-bottom: 1px solid rgba(0,0,0,0.1);
}

.platform-features li:last-child {
    border-bottom: none;
}

/* Meta Process Section */
.meta-process {
    padding: 80px 0;
    background: #f8f9fa;
}

.process-timeline {
    position: relative;
    max-width: 1000px;
    margin: 0 auto;
}

.process-timeline::before {
    content: '';
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 4px;
    background: linear-gradient(180deg, var(--color-accent), var(--color-accent-dark));
    transform: translateX(-50%);
    border-radius: 2px;
}

.process-step {
    position: relative;
    margin: 40px 0;
    display: flex;
    align-items: center;
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease;
}

.process-step.animate {
    opacity: 1;
    transform: translateY(0);
}

.process-step:nth-child(odd) {
    flex-direction: row;
}

.process-step:nth-child(even) {
    flex-direction: row-reverse;
}

.step-number {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    width: 60px;
    height: 60px;
    background: white;
    border: 4px solid var(--color-accent);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.2rem;
    color: var(--color-accent);
    z-index: 2;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

.step-content {
    background: white;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    border: 1px solid rgba(157, 89, 192, 0.1);
    width: 45%;
    position: relative;
}

.step-content h3 {
    color: var(--color-accent);
    font-size: 1.3rem;
    margin-bottom: 10px;
}

.step-content p {
    color: #666;
    line-height: 1.6;
    margin-bottom: 15px;
}

.step-icon {
    position: absolute;
    top: -15px;
    right: 20px;
    font-size: 2rem;
    background: white;
    padding: 10px;
    border-radius: 50%;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

/* Meta Metrics Section */
.meta-metrics {
    padding: 80px 0;
    background: linear-gradient(135deg, var(--color-accent) 0%, var(--color-accent-dark) 100%);
    color: white;
}

.meta-metrics .section-title {
    color: white;
    text-align: center;
    margin-bottom: 50px;
    -webkit-text-fill-color: inherit;
}

.metrics-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 40px;
}

.metric-item {
    text-align: center;
    padding: 30px 20px;
    background: rgba(255,255,255,0.1);
    border-radius: 20px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,0.2);
    transition: all 0.3s ease;
}

.metric-item:hover {
    transform: translateY(-10px);
    background: rgba(255,255,255,0.2);
}

.metric-icon {
    font-size: 2.5rem;
    margin-bottom: 15px;
}

.metric-number {
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 10px;
    text-shadow: 0 2px 10px rgba(0,0,0,0.3);
}

.metric-label {
    font-size: 1rem;
    opacity: 0.9;
}

/* Meta Benefits Section */
.meta-benefits {
    padding: 80px 0;
    background: white;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 40px;
    margin-top: 50px;
}

.benefit-card {
    background: #f8f9fa;
    padding: 40px 30px;
    border-radius: 20px;
    text-align: center;
    transition: all 0.3s ease;
    border: 2px solid transparent;
    position: relative;
    overflow: hidden;
}

.benefit-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(157, 89, 192, 0.1), transparent);
    transition: left 0.5s ease;
}

.benefit-card:hover::before {
    left: 100%;
}

.benefit-card:hover {
    transform: translateY(-10px);
    border-color: var(--color-accent);
    box-shadow: 0 20px 40px rgba(157, 89, 192, 0.15);
}

.benefit-icon {
    font-size: 3rem;
    margin-bottom: 20px;
    transition: all 0.3s ease;
}

.benefit-card:hover .benefit-icon {
    transform: scale(1.2) rotate(10deg);
}

.benefit-card h3 {
    color: #333;
    font-size: 1.4rem;
    margin-bottom: 15px;
}

.benefit-card p {
    color: #666;
    line-height: 1.6;
    margin-bottom: 20px;
}

.benefit-highlight {
    background: linear-gradient(135deg, var(--color-accent), var(--color-accent-dark));
    color: white;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
    display: inline-block;
}

/* Meta CTA Section */
.meta-cta {
    padding: 80px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    background: #fff;
}

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

.cta-content h2 {
    font-size: 2.5rem;
    color: #333;
    margin-bottom: 20px;
}

.cta-content p {
    font-size: 1.2rem;
    color: #666;
    margin-bottom: 30px;
    line-height: 1.6;
}

.cta-features {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.cta-feature {
    background: white;
    padding: 15px 25px;
    border-radius: 25px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    font-weight: 600;
    color: var(--color-accent);
}

/* Responsive Design for Meta Ads */
@media (max-width: 768px) {
    .hero-content {
        flex-direction: column;
        text-align: center;
        gap: 40px;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-subtitle {
        font-size: 1.1rem;
    }
    
    .hero-stats {
        flex-direction: column;
        gap: 20px;
    }
    
    .social-icons {
        position: relative;
        top: auto;
        right: auto;
        flex-direction: row;
        justify-content: center;
        margin-top: 30px;
    }
    
    .process-timeline::before {
        left: 30px;
    }
    
    .process-step:nth-child(odd),
    .process-step:nth-child(even) {
        flex-direction: row;
    }
    
    .step-number {
        left: 30px;
    }
    
    .step-content {
        width: calc(100% - 80px);
        margin-left: 80px;
    }
    
    .features-grid,
    .platforms-grid,
    .benefits-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .metrics-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
    
    .cta-features {
        flex-direction: column;
        align-items: center;
    }
}

/* =============================
   Navbar CTA Overrides (Menu button only)
   ============================= */
.navbar .nav-cta-btn {
    background: #833eab;
    color: #ffffff;
    border: 1px solid rgba(255,255,255,.25);
    padding: 10px 16px;
    border-radius: 10px;
    font-weight: 700;
    letter-spacing: .2px;
    transition: background .25s ease, color .25s ease, border-color .25s ease, box-shadow .25s ease, transform .2s ease;
}
.navbar .nav-cta-btn:hover,
.navbar .nav-cta-btn:focus {
    background: #ffffff;
    color: #6a2cff;
    border-color: #6a2cff;
    box-shadow: 0 6px 16px rgba(106,44,255,.25);
    transform: translateY(-1px);
}
.navbar .nav-menu li a { transition: color .2s ease, opacity .2s ease; }
.navbar .nav-menu li a:hover { opacity: .85; }
@media (max-width: 992px) {
    .navbar .nav-cta-btn {width: 100%;text-align: center;margin: 0;}
}

/* =============================
   About Page - Hero adjustments per request
   ============================= */
.about-hero { padding: 60px 0; min-height: 60vh; }
.about-hero .hero-title {line-height: 1.15;margin-bottom: 8px;text-transform: uppercase;color: #fff;font-style: italic;font-weight: 200;}
.about-hero .hero-title b{font-weight: 900;}
/* =============================
   Web Design Page Styles
   ============================= */

/* Web Hero Section */
.web-hero {
    position: relative;
    min-height: 90vh;
    display: flex;
    align-items: center;
    background: linear-gradient(135deg, var(--color-accent) 0%, var(--color-accent-dark) 50%, #9d59c0 100%);
    overflow: hidden;
}

.web-particles {
    position: absolute;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 20% 80%, rgba(255,255,255,0.1) 0%, transparent 50%),
                radial-gradient(circle at 80% 20%, rgba(255,255,255,0.1) 0%, transparent 50%);
    animation: floatParticles 6s ease-in-out infinite;
}

.code-icons {
    position: absolute;
    top: 20%;
    right: 10%;
    display: flex;
    flex-direction: column;
    gap: 20px;
    z-index: 2;
}

.code-icons .icon {
    width: 60px;
    height: 60px;
    background: rgba(255,255,255,0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,0.2);
    animation: floatIcon 3s ease-in-out infinite;
    cursor: pointer;
    transition: all 0.3s ease;
}

.code-icons .icon:hover {
    transform: scale(1.1);
    background: rgba(255,255,255,0.2);
}

.code-icons .icon:nth-child(1) { animation-delay: 0s; }
.code-icons .icon:nth-child(2) { animation-delay: 1s; }
.code-icons .icon:nth-child(3) { animation-delay: 2s; }
.code-icons .icon:nth-child(4) { animation-delay: 3s; }

.web-hero .hero-content {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
    gap: 60px;
    width: 100%;
}

.web-hero .hero-text {
    flex: 1;
    color: white;
}

.web-hero .hero-title {
    font-family: var(--font-bold);
    font-weight: 700;
    font-size: 3.5rem;
    line-height: 1.1;
    margin-bottom: 20px;
    text-shadow: 0 2px 10px rgba(0,0,0,0.3);
    color: #fff;
}

.web-hero .hero-subtitle {
    font-family: var(--font-light);
    font-weight: 300;
    font-size: 1.3rem;
    opacity: 0.95;
    line-height: 1.6;
    max-width: 600px;
    margin-bottom: 40px;
}

.web-hero .hero-visual {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
}

.web-dashboard {
    background: rgba(255,255,255,0.1);
    border-radius: 20px;
    padding: 30px;
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255,255,255,0.2);
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
    width: 100%;
    max-width: 400px;
}

/* Web Features Section */
.web-features {
    padding: 80px 0;
    background: white;
}

/* Technology Stack Section */
.tech-stack {
    padding: 80px 0;
    background: #f8f9fa;
}

.tech-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    margin-top: 60px;
}

.tech-category {
    background: white;
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.tech-category h3 {
    font-family: var(--font-bold);
    font-weight: 700;
    color: var(--color-accent);
    font-size: 1.5rem;
    margin-bottom: 30px;
    text-align: center;
}

.tech-items {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.tech-item {
    text-align: center;
    padding: 20px;
    border-radius: 15px;
    background: #f8f9fa;
    transition: all 0.3s ease;
}

.tech-item:hover {
    background: var(--color-accent);
    color: white;
    transform: translateY(-5px);
}

.tech-icon {
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 10px;
    color: var(--color-accent);
}

.tech-item:hover .tech-icon {
    color: white;
}

.tech-item span {
    font-size: 0.9rem;
    font-family: var(--font-light);
    font-weight: 300;
}

/* Design Process Section */
.design-process {
    padding: 80px 0;
    background: white;
}

/* Portfolio Showcase Section */
.portfolio-showcase {
    padding: 80px 0;
    background: #f8f9fa;
}

.portfolio-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 60px;
}

.portfolio-item {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
}

.portfolio-item:hover {
    transform: translateY(-10px);
}

.portfolio-image {
    height: 250px;
    background: linear-gradient(135deg, var(--color-accent), var(--color-accent-dark));
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.portfolio-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0,0,0,0.8);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: all 0.3s ease;
    color: white;
    text-align: center;
    padding: 20px;
}

.portfolio-item:hover .portfolio-overlay {
    opacity: 1;
}

.portfolio-overlay h4 {
    font-family: var(--font-bold);
    font-weight: 700;
    font-size: 1.3rem;
    margin-bottom: 10px;
}

.portfolio-overlay p {
    font-family: var(--font-light);
    font-weight: 300;
    margin-bottom: 20px;
}

.portfolio-link {
    background: var(--color-accent);
    color: white;
    padding: 10px 20px;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

.portfolio-link:hover {
    background: var(--color-accent-dark);
    transform: scale(1.05);
}

/* Pricing Section */
.pricing-section {
    padding: 80px 0;
    background: white;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 60px;
}

.pricing-card {
    background: white;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    border: 2px solid transparent;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.pricing-card:hover {
    transform: translateY(-10px);
    border-color: var(--color-accent);
    box-shadow: 0 20px 40px rgba(157, 89, 192, 0.15);
}

.pricing-card.featured {
    border-color: var(--color-accent);
    transform: scale(1.05);
}

.pricing-card.featured::before {
    content: 'Popüler';
    position: absolute;
    top: 20px;
    right: -30px;
    background: var(--color-accent);
    color: white;
    padding: 5px 40px;
    font-size: 0.8rem;
    font-weight: 600;
    transform: rotate(45deg);
}

.pricing-header {
    padding: 40px 30px 20px;
    text-align: center;
    border-bottom: 1px solid #eee;
}

.pricing-header h3 {
    font-family: var(--font-bold);
    font-weight: 700;
    color: #1a1a1a;
    font-size: 1.5rem;
    margin-bottom: 20px;
}

.price {
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 5px;
}

.currency {
    font-size: 1.2rem;
    color: var(--color-accent);
    font-weight: 600;
}

.amount {
    font-size: 3rem;
    font-weight: 700;
    color: var(--color-accent);
}

.period {
    font-size: 1rem;
    color: #666;
}

.pricing-features {
    padding: 30px;
    list-style: none;
}

.pricing-features li {
    padding: 10px 0;
    border-bottom: 1px solid #f0f0f0;
    font-family: var(--font-light);
    font-weight: 300;
    color: #666;
}

.pricing-features li:last-child {
    border-bottom: none;
}

.pricing-btn {
    display: block;
    background: var(--color-accent);
    color: white;
    text-align: center;
    padding: 15px 30px;
    margin: 0 30px 30px;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

.pricing-btn:hover {
    background: var(--color-accent-dark);
    transform: scale(1.05);
}

/* CTA Section */
.web-cta {
    padding: 80px 0;
    /* background: linear-gradient(135deg, var(--color-accent) 0%, var(--color-accent-dark) 100%); */
    color: white;
}

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

.cta-content h2 {
    font-family: var(--font-medium);
    font-weight: normal;
    font-size: 2.5rem;
    margin-bottom: 20px;
    color: #000 !important;
    -webkit-text-fill-color: inherit;
}

.cta-content p {
    font-family: var(--font-light);
    font-weight: 300;
    font-size: 1.2rem;
    margin-bottom: 0;
    color: #000;
}

/* Responsive Design for Web Design */
@media (max-width: 768px) {
    .web-hero .hero-content {
        flex-direction: column;
        text-align: center;
    }
    
    .web-hero .hero-title {
        font-size: 2.5rem;
    }
    
    .code-icons {
        position: relative;
        top: auto;
        right: auto;
        flex-direction: row;
        justify-content: center;
        margin-top: 30px;
    }
    
    .tech-grid {
        grid-template-columns: 1fr;
    }
    
    .tech-items {
        grid-template-columns: 1fr;
    }
    
    .portfolio-grid {
        grid-template-columns: 1fr;
    }
    
    .pricing-grid {
        grid-template-columns: 1fr;
    }
}

/* =============================
   YouTube Ads Page Styles
   ============================= */

/* YouTube Hero Section */
.youtube-hero {
    position: relative;
    min-height: 90vh;
    display: flex;
    align-items: center;
    overflow: hidden;
    background: linear-gradient(135deg, var(--color-accent) 0%, var(--color-accent-dark) 50%, #9d59c0 100%);
}

.video-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 20% 80%, rgba(255,255,255,0.1) 0%, transparent 50%),
                radial-gradient(circle at 80% 20%, rgba(255,255,255,0.1) 0%, transparent 50%);
}

.video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.3);
}

.floating-elements {
    position: absolute;
    top: 20%;
    right: 10%;
    display: flex;
    flex-direction: column;
    gap: 20px;
    z-index: 2;
}

.floating-elements > div {
    width: 60px;
    height: 60px;
    background: rgba(255,255,255,0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,0.2);
    animation: floatElement 3s ease-in-out infinite;
    cursor: pointer;
    transition: all 0.3s ease;
}

.floating-elements > div:hover {
    transform: scale(1.1);
    background: rgba(255,255,255,0.2);
}

.floating-elements > div:nth-child(1) { animation-delay: 0s; }
.floating-elements > div:nth-child(2) { animation-delay: 1s; }
.floating-elements > div:nth-child(3) { animation-delay: 2s; }
.floating-elements > div:nth-child(4) { animation-delay: 3s; }

@keyframes floatElement {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-10px); }
}

.youtube-hero .hero-content {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
    gap: 60px;
    width: 100%;
}

.youtube-hero .hero-text {
    flex: 1;
    color: white;
}

.youtube-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: rgba(255,255,255,0.1);
    padding: 10px 20px;
    border-radius: 25px;
    margin-bottom: 20px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,0.2);
}

.youtube-badge i {
    font-size: 1.5rem;
    color: #ff0000;
}

.youtube-badge span {
    font-family: var(--font-medium);
    font-weight: 500;
    font-size: 1rem;
}

.youtube-hero .hero-title {
    font-family: var(--font-bold);
    font-weight: 700;
    font-size: 3.5rem;
    line-height: 1.1;
    margin-bottom: 20px;
    text-shadow: 0 2px 10px rgba(0,0,0,0.3);
    color: #fff;
}

.youtube-hero .hero-subtitle {
    font-family: var(--font-light);
    font-weight: 300;
    font-size: 1.3rem;
    opacity: 0.95;
    line-height: 1.6;
    max-width: 600px;
    margin-bottom: 40px;
}

.hero-metrics {
    display: flex;
    gap: 40px;
    margin-bottom: 40px;
}

.hero-metrics .metric {
    text-align: center;
}

.metric-number {
    display: block;
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 5px;
}

.metric-label {
    font-size: 0.9rem;
    opacity: 0.8;
}

.hero-actions {
    display: flex;
    gap: 20px;
}

.youtube-hero .hero-visual {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
}

.youtube-dashboard {
    background: rgba(0,0,0,0.8);
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0,0,0,0.3);
    width: 100%;
    max-width: 400px;
}

.dashboard-header {
    background: #7f2db3;
    padding: 20px;
    display: flex;
    align-items: center;
    border-bottom: 1px solid #ffffff;
    justify-content: center;
}

.dashboard-header h3 {
    color: white;
    font-size: 1.1rem;
    margin: 0;
}

.status-indicator {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #4CAF50;
    font-size: 0.9rem;
}

.status-dot {
    width: 8px;
    height: 8px;
    background: #4CAF50;
    border-radius: 50%;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% { opacity: 1; }
    50% { opacity: 0.5; }
    100% { opacity: 1; }
}

.dashboard-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
    padding: 20px;
}

.metric-card {
    background: rgba(255,255,255,0.1);
    padding: 15px;
    border-radius: 10px;
    text-align: center;
    border: 1px solid rgba(255,255,255,0.2);
}

.metric-icon {
    font-size: 1.5rem;
    margin-bottom: 8px;
}

.metric-value {
    display: block;
    font-size: 1.3rem;
    font-weight: 700;
    color: white;
    margin-bottom: 5px;
}

.metric-label {
    font-size: 0.8rem;
    color: rgba(255,255,255,0.8);
}

.player-header {
    background: #333;
    padding: 15px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.player-controls {
    display: flex;
    gap: 10px;
}

.control {
    width: 30px;
    height: 30px;
    background: #555;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
}

.control:hover {
    background: #777;
}

.video-title {
    color: white;
    font-weight: 600;
    font-size: 0.9rem;
}

.video-thumbnail {
    position: relative;
    height: 200px;
    background: linear-gradient(135deg, #ff0000, #cc0000);
    display: flex;
    align-items: center;
    justify-content: center;
}

.play-overlay {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 80px;
    height: 80px;
    background: rgba(255,255,255,0.9);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
}

.play-overlay:hover {
    transform: translate(-50%, -50%) scale(1.1);
}

.play-icon {
    font-size: 2rem;
    color: #ff0000;
    margin-left: 5px;
}

.video-stats {
    position: absolute;
    bottom: 10px;
    right: 10px;
    display: flex;
    gap: 10px;
    color: white;
    font-size: 0.8rem;
}

/* YouTube Services Section */
.youtube-services {
    padding: 80px 0;
    background: white;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
    margin-top: 60px;
}

.service-card {
    background: white;
    padding: 40px 30px;
    border-radius: 20px;
    border: 2px solid transparent;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    border: 1px solid #ddd;
}

.service-card:hover {
    transform: translateY(-10px);
    border-color: var(--color-accent);
    box-shadow: 0 20px 40px #9d59c026;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, var(--color-accent), transparent);
    transition: left 0.5s ease;
}

.service-card:hover::before {
    left: 100%;
}

.service-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #ff0000, #cc0000);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 25px;
    font-size: 2rem;
    color: white;
    transition: all 0.3s ease;
}

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

.service-card h3 {
    font-family: var(--font-bold);
    font-weight: 700;
    color: #1a1a1a;
    font-size: 1.4rem;
    margin-bottom: 15px;
}

.service-card p {
    font-family: var(--font-light);
    font-weight: 300;
    color: #666;
    line-height: 1.6;
    margin-bottom: 20px;
}

.service-features {
    list-style: none;
    padding: 0;
}

.service-features li {
    padding: 8px 0;
    color: #666;
    font-size: 0.9rem;
    position: relative;
    padding-left: 25px;
}

.service-features li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #ff0000;
    font-weight: bold;
    font-size: 1rem;
}

/* Success Stories Section */
.success-stories {
    padding: 80px 0;
    background: #f8f9fa;
}

.stories-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 40px;
    margin-top: 60px;
}

.story-card {
    background: white;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    overflow: hidden;
    transition: all 0.3s ease;
}

.story-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.15);
}

.story-header {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 30px;
    background: linear-gradient(135deg, #ff0000, #cc0000);
    color: white;
}

.company-logo {
    width: 60px;
    height: 60px;
    background: rgba(255,255,255,0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
}

.company-info h3 {
    font-family: var(--font-bold);
    font-weight: 700;
    font-size: 1.3rem;
    margin: 0 0 5px 0;
}

.company-info p {
    font-family: var(--font-light);
    font-weight: 300;
    margin: 0;
    opacity: 0.9;
}

.story-content {
    padding: 30px;
}

.challenge, .solution, .results {
    margin-bottom: 25px;
}

.challenge h4, .solution h4, .results h4 {
    font-family: var(--font-bold);
    font-weight: 700;
    color: #1a1a1a;
    font-size: 1.1rem;
    margin-bottom: 10px;
}

.challenge p, .solution p {
    font-family: var(--font-light);
    font-weight: 300;
    color: #666;
    line-height: 1.6;
    margin: 0;
}

.result-metrics {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
    gap: 20px;
    margin-top: 15px;
}

.result-metric {
    text-align: center;
    padding: 15px;
    background: #7f2db3;
    border-radius: 10px;
}

.metric-value {
    display: block;
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 5px;
}

.metric-label {
    font-size: 0.8rem;
    color: #ffffff;
    font-family: var(--font-light);
    font-weight: 300;
}

/* Process Timeline Section */
.youtube-process {
    padding: 80px 0;
    background: white;
}

.process-timeline {
    position: relative;
    max-width: 1000px;
    margin: 0 auto;
}

.process-timeline::before {
    content: '';
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 4px;
    background: linear-gradient(180deg, #7f2db3, #7f2db3);
    transform: translateX(-50%);
    border-radius: 2px;
}

.process-step {
    position: relative;
    margin: 40px 0;
    display: flex;
    align-items: center;
    gap: 40px;
}

.process-step:nth-child(even) {
    flex-direction: row-reverse;
}

.step-number {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    width: 60px;
    height: 60px;
    background: white;
    border: 4px solid #ff0000;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.2rem;
    color: #ff0000;
    z-index: 2;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

.step-content {
    background: white;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    border: 1px solid rgba(255,0,0,0.1);
    width: 45%;
    position: relative;
}

.step-content h3 {
    font-family: var(--font-bold);
    font-weight: 700;
    color: #ff0000;
    font-size: 1.3rem;
    margin-bottom: 10px;
}

.step-content p {
    font-family: var(--font-light);
    font-weight: 300;
    color: #666;
    line-height: 1.6;
    margin-bottom: 15px;
}

.step-features {
    list-style: none;
    padding: 0;
}

.step-features li {
    padding: 5px 0;
    color: #666;
    font-size: 0.9rem;
    position: relative;
    padding-left: 20px;
}

.step-features li:before {
    content: "•";
    position: absolute;
    left: 0;
    color: #ff0000;
    font-weight: bold;
}

/* Why Choose Us Section */
.why-choose-us {
    padding: 80px 0;
    background: #f8f9fa;
}

.features-grid {
    display: grid;
    gap: 30px;
    margin-top: 60px;
}

.feature-item {
    background: white;
    padding: 40px 30px;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    text-align: center;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.feature-item:hover {
    transform: translateY(-10px);
    border-color: #ff0000;
    box-shadow: 0 20px 40px rgba(255,0,0,0.15);
}

.feature-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #9a56be, #7f2db3);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    font-size: 2rem;
    color: white;
    transition: all 0.3s ease;
}

.feature-item:hover .feature-icon {
    transform: scale(1.1);
}

.feature-item h3 {
    font-family: var(--font-bold);
    font-weight: 700;
    color: #1a1a1a;
    font-size: 1.3rem;
    margin-bottom: 15px;
}

.feature-item p {
    font-family: var(--font-light);
    font-weight: 300;
    color: #666;
    line-height: 1.6;
}

.video-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 60px;
}

.video-card {
    background: white;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    overflow: hidden;
    transition: all 0.3s ease;
}

.video-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.15);
}

.video-preview {
    position: relative;
    height: 200px;
    background: linear-gradient(135deg, #ff0000, #cc0000);
}

.video-thumb {
    position: relative;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.video-thumb .play-overlay {
    width: 60px;
    height: 60px;
}

.video-thumb .play-overlay i {
    font-size: 1.5rem;
}

.ad-badge {
    position: absolute;
    top: 10px;
    right: 10px;
    background: rgba(0,0,0,0.8);
    color: white;
    padding: 5px 10px;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: 600;
}

.video-info {
    padding: 30px;
}

.video-info h3 {
    font-family: var(--font-bold);
    font-weight: 700;
    color: #1a1a1a;
    font-size: 1.3rem;
    margin-bottom: 15px;
}

.video-info p {
    font-family: var(--font-light);
    font-weight: 300;
    color: #666;
    line-height: 1.6;
    margin-bottom: 20px;
}

.video-info .features {
    list-style: none;
    padding: 0;
}

.video-info .features li {
    padding: 5px 0;
    color: #666;
    font-size: 0.9rem;
}

.video-info .features li:before {
    content: "✓";
    color: #ff0000;
    font-weight: bold;
    margin-right: 10px;
}

/* Video Showcase Section */
.video-showcase {
    padding: 80px 0;
    background: #f8f9fa;
}

.showcase-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 40px;
    margin-top: 60px;
}

.showcase-item {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
}

.showcase-item:hover {
    transform: translateY(-10px);
}

.video-container {
    position: relative;
    height: 250px;
    background: linear-gradient(135deg, #ff0000, #cc0000);
}

.video-frame {
    position: relative;
    width: 100%;
    height: 100%;
}

.video-content {
    position: relative;
    width: 100%;
    height: 100%;
}

.video-thumbnail {
    position: relative;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.play-button-large {
    font-size: 4rem;
    color: white;
    cursor: pointer;
    transition: all 0.3s ease;
}

.play-button-large:hover {
    transform: scale(1.1);
}

.video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0,0,0,0.7);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: all 0.3s ease;
    color: white;
    text-align: center;
    padding: 20px;
}

.video-container:hover .video-overlay {
    opacity: 1;
}

.video-overlay h4 {
    font-family: var(--font-bold);
    font-weight: 700;
    font-size: 1.5rem;
    margin-bottom: 10px;
}

.video-overlay p {
    font-family: var(--font-light);
    font-weight: 300;
    font-size: 1.1rem;
}

.showcase-info {
    padding: 30px;
}

.showcase-info h3 {
    font-family: var(--font-bold);
    font-weight: 700;
    color: #1a1a1a;
    font-size: 1.4rem;
    margin-bottom: 15px;
}

.showcase-info p {
    font-family: var(--font-light);
    font-weight: 300;
    color: #666;
    line-height: 1.6;
    margin-bottom: 20px;
}

.metrics {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.metrics .metric {
    background: #f8f9fa;
    padding: 8px 15px;
    border-radius: 20px;
    font-size: 0.9rem;
    color: #666;
}

/* Targeting Options Section */
.targeting-options {
    padding: 80px 0;
    background: white;
}

.targeting-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 60px;
}

.targeting-card {
    background: white;
    padding: 40px 30px;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    text-align: center;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.targeting-card:hover {
    transform: translateY(-10px);
    border-color: #ff0000;
    box-shadow: 0 20px 40px rgba(255,0,0,0.15);
}

.targeting-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #ff0000, #cc0000);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 2rem;
    color: white;
}

.targeting-card h3 {
    font-family: var(--font-bold);
    font-weight: 700;
    color: #1a1a1a;
    font-size: 1.3rem;
    margin-bottom: 15px;
}

.targeting-card p {
    font-family: var(--font-light);
    font-weight: 300;
    color: #666;
    line-height: 1.6;
}

/* YouTube Process Section */
.youtube-process {
    padding: 80px 0;
    background: #f8f9fa;
}

.process-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 60px;
}

.step {
    background: white;
    padding: 40px 30px;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    text-align: center;
    position: relative;
    transition: all 0.3s ease;
}

.step:hover {
    transform: translateY(-10px);
}

.step-number {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #7f2db3, #7f2db3);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    color: white;
    margin: 0 auto 20px;
    border-color: #9352b7;
}

.step-content h3 {
    font-family: var(--font-bold);
    font-weight: 700;
    color: #1a1a1a;
    font-size: 1.3rem;
    margin-bottom: 15px;
}

.step-content p {
    font-family: var(--font-light);
    font-weight: 300;
    color: #666;
    line-height: 1.6;
}

/* YouTube Pricing Section */
.youtube-pricing {
    padding: 80px 0;
    background: white;
}

.pricing-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 60px;
}

.pricing-card {
    background: white;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    border: 2px solid transparent;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.pricing-card:hover {
    transform: translateY(-10px);
    border-color: #ff0000;
    box-shadow: 0 20px 40px rgba(255,0,0,0.15);
}

.pricing-card.featured {
    border-color: #ff0000;
    transform: scale(1.05);
}

.pricing-card.featured::before {
    content: 'Popüler';
    position: absolute;
    top: 20px;
    right: -30px;
    background: #ff0000;
    color: white;
    padding: 5px 40px;
    font-size: 0.8rem;
    font-weight: 600;
    transform: rotate(45deg);
}

.card-header {
    padding: 40px 30px 20px;
    text-align: center;
    border-bottom: 1px solid #eee;
}

.card-header h3 {
    font-family: var(--font-bold);
    font-weight: 700;
    color: #1a1a1a;
    font-size: 1.5rem;
    margin-bottom: 20px;
}

.price {
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 5px;
}

.currency {
    font-size: 1.2rem;
    color: #ff0000;
    font-weight: 600;
}

.amount {
    font-size: 3rem;
    font-weight: 700;
    color: #ff0000;
}

.period {
    font-size: 1rem;
    color: #666;
}

.card-body {
    padding: 30px;
}

.card-body .features {
    list-style: none;
    padding: 0;
}

.card-body .features li {
    padding: 10px 0;
    border-bottom: 1px solid #f0f0f0;
    font-family: var(--font-light);
    font-weight: 300;
    color: #666;
}

.card-body .features li:last-child {
    border-bottom: none;
}

.card-footer {
    padding: 0 30px 30px;
}

/* YouTube CTA Section */
.youtube-cta {
    padding: 80px 0;
    /* background: linear-gradient(135deg, #ff0000 0%, #cc0000 100%); */
    color: white;
}

.cta-content {
    display: flex;
    align-items: center;
    max-width: 1000px;
    margin: 0 auto;
    flex-direction: column;
}

.cta-text {
    flex: 1;
}

.cta-text h2 {
    font-family: var(--font-bold);
    font-weight: 700;
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.cta-text p {
    font-family: var(--font-light);
    font-weight: 300;
    font-size: 1.2rem;
    margin-bottom: 40px;
    opacity: 0.9;
}

.cta-features {
    display: flex;
    gap: 30px;
    margin-bottom: 30px;
    flex-wrap: wrap;
}

.cta-features .feature {
    background: rgba(255,255,255,0.1);
    padding: 15px 25px;
    border-radius: 25px;
    font-weight: 600;
    color: #000000;
    font-family: var(--font-medium);
    font-weight: 500;
}

.cta-action {
    flex: 0 0 auto;
}

/* Responsive Design for YouTube */
@media (max-width: 768px) {
    .youtube-hero .hero-content {
        flex-direction: column;
        text-align: center;
    }
    
    .youtube-hero .hero-title {
        font-size: 2.5rem;
    }
    
    .floating-elements {
        position: relative;
        top: auto;
        right: auto;
        flex-direction: row;
        justify-content: center;
        margin-top: 30px;
    }
    
    .hero-metrics {
        flex-direction: column;
        gap: 20px;
    }
    
    .hero-actions {
        flex-direction: column;
        align-items: center;
    }
    
    .video-grid {
        grid-template-columns: 1fr;
    }
    
    .showcase-grid {
        grid-template-columns: 1fr;
    }
    
    .targeting-grid {
        grid-template-columns: 1fr;
    }
    
    .process-steps {
        grid-template-columns: 1fr;
    }
    
    .pricing-cards {
        grid-template-columns: 1fr;
    }
    
    .cta-content {
        flex-direction: column;
        text-align: center;
    }
    
    .cta-features {
        flex-direction: column;
        align-items: center;
    }
}

/* =============================
   TikTok Ads Page Styles
   ============================= */

/* TikTok Hero Section */
.tiktok-hero {
    position: relative;
    min-height: 90vh;
    display: flex;
    align-items: center;
    background: linear-gradient(135deg, #000000 0%, #ff0050 50%, #00f2ea 100%);
    overflow: hidden;
}

.tiktok-hero .video-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 20% 80%, rgba(255,0,80,0.1) 0%, transparent 50%),
                radial-gradient(circle at 80% 20%, rgba(0,242,234,0.1) 0%, transparent 50%);
}

.tiktok-hero .video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.3);
}

.tiktok-hero .floating-elements {
    position: absolute;
    top: 20%;
    right: 10%;
    display: flex;
    flex-direction: column;
    gap: 20px;
    z-index: 2;
}

.tiktok-hero .floating-elements > div {
    width: 60px;
    height: 60px;
    background: rgba(255,255,255,0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,0.2);
    animation: floatElement 3s ease-in-out infinite;
    cursor: pointer;
    transition: all 0.3s ease;
}

.tiktok-hero .floating-elements > div:hover {
    transform: scale(1.1);
    background: rgba(255,255,255,0.2);
}

.tiktok-hero .floating-elements > div:nth-child(1) { animation-delay: 0s; }
.tiktok-hero .floating-elements > div:nth-child(2) { animation-delay: 1s; }
.tiktok-hero .floating-elements > div:nth-child(3) { animation-delay: 2s; }
.tiktok-hero .floating-elements > div:nth-child(4) { animation-delay: 3s; }

.tiktok-hero .hero-content {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
    gap: 60px;
    width: 100%;
}

.tiktok-hero .hero-text {
    flex: 1;
    color: white;
}

.tiktok-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: rgba(255,255,255,0.1);
    padding: 10px 20px;
    border-radius: 25px;
    margin-bottom: 20px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,0.2);
}

.tiktok-badge i {
    font-size: 1.5rem;
    color: #ff0050;
}

.tiktok-badge span {
    font-family: var(--font-medium);
    font-weight: 500;
    font-size: 1rem;
}

.tiktok-hero .hero-title {
    font-family: var(--font-bold);
    font-weight: 700;
    font-size: 3.5rem;
    line-height: 1.1;
    margin-bottom: 20px;
    text-shadow: 0 2px 10px rgba(0,0,0,0.3);
}

.tiktok-hero .hero-subtitle {
    font-family: var(--font-light);
    font-weight: 300;
    font-size: 1.3rem;
    opacity: 0.95;
    line-height: 1.6;
    max-width: 600px;
    margin-bottom: 40px;
}

.tiktok-hero .hero-metrics {
    display: flex;
    gap: 40px;
    margin-bottom: 40px;
}

.tiktok-hero .hero-metrics .metric {
    text-align: center;
}

.tiktok-hero .metric-number {
    display: block;
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 5px;
}

.tiktok-hero .metric-label {
    font-size: 0.9rem;
    opacity: 0.8;
}

.tiktok-hero .hero-actions {
    display: flex;
    gap: 20px;
}

.tiktok-hero .hero-visual {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
}

.tiktok-dashboard {
    background: rgba(0,0,0,0.8);
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0,0,0,0.3);
    width: 100%;
    max-width: 400px;
}

.tiktok-dashboard .dashboard-header {
    background: #333;
    padding: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid #555;
}

.tiktok-dashboard .dashboard-header h3 {
    color: white;
    font-size: 1.1rem;
    margin: 0;
}

.tiktok-dashboard .status-indicator {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #00f2ea;
    font-size: 0.9rem;
}

.tiktok-dashboard .status-dot {
    width: 8px;
    height: 8px;
    background: #00f2ea;
    border-radius: 50%;
    animation: pulse 2s infinite;
}

.tiktok-dashboard .dashboard-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
    padding: 20px;
}

.tiktok-dashboard .metric-card {
    background: rgba(255,255,255,0.1);
    padding: 15px;
    border-radius: 10px;
    text-align: center;
    border: 1px solid rgba(255,255,255,0.2);
}

.tiktok-dashboard .metric-icon {
    font-size: 1.5rem;
    margin-bottom: 8px;
}

.tiktok-dashboard .metric-value {
    display: block;
    font-size: 1.3rem;
    font-weight: 700;
    color: white;
    margin-bottom: 5px;
}

.tiktok-dashboard .metric-label {
    font-size: 0.8rem;
    color: rgba(255,255,255,0.8);
}

/* TikTok Services Section */
.tiktok-services {
    padding: 80px 0;
    background: white;
}

.tiktok-services .services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
    margin-top: 60px;
}

.tiktok-services .service-card {
    background: white;
    padding: 40px 30px;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    border: 2px solid transparent;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.tiktok-services .service-card:hover {
    transform: translateY(-10px);
    border-color: #ff0050;
    box-shadow: 0 20px 40px rgba(255,0,80,0.15);
}

.tiktok-services .service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,0,80,0.1), transparent);
    transition: left 0.5s ease;
}

.tiktok-services .service-card:hover::before {
    left: 100%;
}

.tiktok-services .service-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #ff0050, #00f2ea);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 25px;
    font-size: 2rem;
    color: white;
    transition: all 0.3s ease;
}

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

.tiktok-services .service-card h3 {
    font-family: var(--font-bold);
    font-weight: 700;
    color: #1a1a1a;
    font-size: 1.4rem;
    margin-bottom: 15px;
}

.tiktok-services .service-card p {
    font-family: var(--font-light);
    font-weight: 300;
    color: #666;
    line-height: 1.6;
    margin-bottom: 20px;
    text-align: -webkit-auto;
}

.tiktok-services .service-features {
    list-style: none;
    padding: 0;
}

.tiktok-services .service-features li {
    padding: 8px 0;
    color: #666;
    font-size: 0.9rem;
    position: relative;
    padding-left: 25px;
    text-align: left;
}

.tiktok-services .service-features li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #ff0050;
    font-weight: bold;
    font-size: 1rem;
}

/* TikTok Process Section */
.tiktok-process {
    padding: 80px 0;
    background: white;
}

.tiktok-process .process-timeline {
    position: relative;
    max-width: 1000px;
    margin: 0 auto;
}

.tiktok-process .process-timeline::before {
    content: '';
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 4px;
    background: linear-gradient(180deg, #ff0050, #00f2ea);
    transform: translateX(-50%);
    border-radius: 2px;
}

.tiktok-process .process-step {
    position: relative;
    margin: 40px 0;
    display: flex;
    align-items: center;
    gap: 40px;
}

.tiktok-process .process-step:nth-child(even) {
    flex-direction: row-reverse;
}

.tiktok-process .step-number {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    width: 60px;
    height: 60px;
    background: white;
    border: 4px solid #ff0050;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.2rem;
    color: #ff0050;
    z-index: 2;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

.tiktok-process .step-content {
    background: white;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    border: 1px solid rgba(255,0,80,0.1);
    width: 45%;
    position: relative;
}

.tiktok-process .step-content h3 {
    font-family: var(--font-bold);
    font-weight: 700;
    color: #ff0050;
    font-size: 1.3rem;
    margin-bottom: 10px;
}

.tiktok-process .step-content p {
    font-family: var(--font-light);
    font-weight: 300;
    color: #666;
    line-height: 1.6;
    margin-bottom: 15px;
}

.tiktok-process .step-features {
    list-style: none;
    padding: 0;
}

.tiktok-process .step-features li {
    padding: 5px 0;
    color: #666;
    font-size: 0.9rem;
    position: relative;
    padding-left: 20px;
}

.tiktok-process .step-features li:before {
    content: "•";
    position: absolute;
    left: 0;
    color: #ff0050;
    font-weight: bold;
}

/* TikTok CTA Section */
.tiktok-cta {
    padding: 80px 0;
    background: linear-gradient(135deg, #000000 0%, #ff0050 100%);
    color: white;
}

.tiktok-cta .cta-content {
    display: flex;
    align-items: center;
    gap: 60px;
    max-width: 1000px;
    margin: 0 auto;
}

.tiktok-cta .cta-text {
    flex: 1;
}

.tiktok-cta .cta-text h2 {
    font-family: var(--font-bold);
    font-weight: 700;
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.tiktok-cta .cta-text p {
    font-family: var(--font-light);
    font-weight: 300;
    font-size: 1.2rem;
    margin-bottom: 40px;
    opacity: 0.9;
}

.tiktok-cta .cta-features {
    display: flex;
    gap: 30px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.tiktok-cta .cta-features .feature {
    background: rgba(255,255,255,0.1);
    padding: 15px 25px;
    border-radius: 25px;
    font-weight: 600;
    color: white;
    font-family: var(--font-medium);
    font-weight: 500;
}

.tiktok-cta .cta-action {
    flex: 0 0 auto;
}

/* Responsive Design for TikTok */
@media (max-width: 768px) {
    .tiktok-hero .hero-content {
        flex-direction: column;
        text-align: center;
    }
    
    .tiktok-hero .hero-title {
        font-size: 2.5rem;
    }
    
    .tiktok-hero .floating-elements {
        position: relative;
        top: auto;
        right: auto;
        flex-direction: row;
        justify-content: center;
        margin-top: 30px;
    }
    
    .tiktok-hero .hero-metrics {
        flex-direction: column;
        gap: 20px;
    }
    
    .tiktok-hero .hero-actions {
        flex-direction: column;
        align-items: center;
    }
    
    .tiktok-services .services-grid {
        grid-template-columns: 1fr;
    }
    
    .tiktok-process .process-step {
        flex-direction: column;
        text-align: center;
    }
    
    .tiktok-process .process-step:nth-child(even) {
        flex-direction: column;
    }
    
    .tiktok-process .step-content {
        width: 100%;
    }
    
    .tiktok-process .process-timeline::before {
        display: none;
    }
    
    .tiktok-process .step-number {
        position: relative;
        left: auto;
        top: auto;
        transform: none;
        margin: 0 auto 20px;
    }
    
    .tiktok-cta .cta-content {
        flex-direction: column;
        text-align: center;
    }
    
    .tiktok-cta .cta-features {
        flex-direction: column;
        align-items: center;
    }
}

/* Career Apply Button Styles */
.career-apply-btn {
    display: inline-block;
    background: linear-gradient(135deg, var(--color-accent), var(--color-accent-dark));
    color: white;
    padding: 12px 24px;
    border-radius: 25px;
    /* text-decoration: none; */
    font-family: var(--font-medium);
    font-weight: 500;
    font-size: 0.9rem;
    margin-top: 20px;
    transition: all 0.3s ease;
    border: 2px solid transparent;
    text-align: center;
    width: 100%;
    box-sizing: border-box;
}

.career-apply-btn:hover {
    background: linear-gradient(135deg, var(--color-accent-dark), var(--color-accent));
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(157, 89, 192, 0.3);
    color: white;
    text-decoration: none;
}

.career-apply-btn:active {
    transform: translateY(0);
}

/* Career Card Hover Effect */
.career-card:hover .career-apply-btn {
    background: linear-gradient(135deg, var(--color-accent-dark), var(--color-accent));
    box-shadow: 0 5px 15px rgba(157, 89, 192, 0.2);
}

.about-hero .hero-subtitle { font-weight: 300; opacity: .8; }
@media (max-width: 768px) {
    .about-hero { padding: 40px 0; }
}

.referanshome{margin-top:100px}
.contactdiv{padding-top:0;padding-bottom:70px}
.eticaretpaket{background: #7b2bad;border-radius: 0px 10px 10px 0px;}
.paddingvar{padding-left:25px}
.google-hero .container{padding:0;}

/* ===========================================
   COMPREHENSIVE RESPONSIVE DESIGN
   =========================================== */

/* Desktop Large (1400px+) */
@media (min-width: 1400px) {
    .container {
        max-width: 1320px;
        margin: 0 auto;
        padding: 0 20px;
    }
    
    .hero-title {
        font-size: 3.5rem;
        line-height: 1.1;
    }
    
    .hero-subtitle {
        font-size: 1.3rem;
    }
    
    .mega-dropdown {
        width: 1400px;
    }
    
    .services-grid {
        grid-template-columns: repeat(4, 1fr);
        gap: 30px;
    }
}

/* Desktop (1200px - 1399px) */
@media (min-width: 1200px) and (max-width: 1399px) {
    .container {
        max-width: 1140px;
        margin: 0 auto;
        padding: 0 20px;
    }
    
    .hero-title {
        font-size: 3rem;
    }
    
    .mega-dropdown {
        width: 1200px;
    }
    
    .services-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 25px;
    }
}

/* Desktop Small (992px - 1199px) */
@media (min-width: 992px) and (max-width: 1199px) {
    .container {
        max-width: 960px;
        margin: 0 auto;
        padding: 0 15px;
    }
    
    .hero-title {
        font-size: 2.8rem;
    }
    
    .hero-subtitle {
        font-size: 1.1rem;
    }
    
    .mega-dropdown {
        width: 1000px;
    }
    
    .services-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 20px;
    }
    
    .nav-menu {
        gap: 20px;
    }
    
    .nav-menu li {
        padding: 0 8px;
    }
}

/* Tablet Large (768px - 991px) */
@media (min-width: 768px) and (max-width: 991px) {
    .container {
        max-width: 720px;
        margin: 0 auto;
        padding: 0 15px;
    }
    
    /* Navigation */
    .nav-container {
        display: flex;
        align-items: center;
        justify-content: space-between;
        position: relative;
    }
    
    .nav-toggle {
        display: block;
        cursor: pointer;
    }
    
    .nav-menu {
        position: fixed;
        top: 0;
        left: -100%;
        width: 100%;
        height: 100vh;
        background: rgba(15, 15, 16, 0.98);
        backdrop-filter: blur(20px);
        flex-direction: column;
        justify-content: center;
        align-items: center;
        transition: left 0.3s ease;
        z-index: 9999;
        gap: 30px;
    }
    
    .nav-menu.open {
        left: 0;
    }
    
    .nav-menu li {
        padding: 0;
    }
    
    .nav-menu li a {
        font-size: 1.5rem;
        font-weight: 600;
        color: #fff;
        text-decoration: none;
        transition: color 0.3s ease;
    }
    
    .nav-menu li a:hover {
        color: var(--color-accent);
    }
    
    .has-dropdown .dropdown-menu {
        position: static;
        display: none;
        background: transparent;
        box-shadow: none;
        padding: 20px 0;
        margin-top: 20px;
    }
    
    .has-dropdown.active .dropdown-menu {
        display: block;
    }
    
    .mega-dropdown {
        width: 100%;
        background: transparent;
        padding: 0;
    }
    
    .mega-grid.three-cols {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .mega-col {
        padding: 0;
    }
    
    .service-mini {
        background: rgba(255, 255, 255, 0.1);
        border: 1px solid rgba(255, 255, 255, 0.2);
        margin-bottom: 15px;
    }
    
    /* Hero Sections */
    .hero-content {
        flex-direction: column;
        text-align: center;
        gap: 30px;
    }
    
    .hero-title {
        font-size: 2.5rem;
        line-height: 1.2;
    }
    
    .hero-subtitle {
        font-size: 1.1rem;
        max-width: 600px;
        margin: 0 auto;
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: center;
        gap: 15px;
    }
    
    .hero-buttons .btn {
        width: 100%;
        max-width: 300px;
    }
    
    /* Services */
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
    
    .service-card {
        padding: 25px;
    }
    
    .service-card h3 {
        font-size: 1.3rem;
    }
    
    /* Process Steps */
    .process-steps {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
    
    .process-step {
        flex-direction: column;
        text-align: center;
        padding: 20px;
    }
    
    /* Stats */
    .stats-row {
        flex-direction: column;
        gap: 20px;
    }
    
    .stat-item {
        text-align: center;
    }
    
    /* Contact Cards */
    .contact-cards {
        flex-direction: column;
        gap: 20px;
    }
    
    .contact-card {
        width: 100%;
    }
    
    /* References */
    .refs-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
    
    /* Packages */
    .packages-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .packages-compare .compare-head,
    .packages-compare .compare-row {
        grid-template-columns: 1.5fr 1fr 1fr 1fr;
        font-size: 0.9rem;
    }
}

/* Tablet Small (576px - 767px) */
@media (min-width: 576px) and (max-width: 767px) {
    .container {
        max-width: 540px;
        margin: 0 auto;
        padding: 0 15px;
    }
    
    /* Navigation */
    .nav-container {
        display: flex;
        align-items: center;
        justify-content: space-between;
        position: relative;
    }
    
    .nav-toggle {
        display: block;
        cursor: pointer;
    }
    
    .nav-menu {
        position: fixed;
        top: 0;
        left: -100%;
        width: 100%;
        height: 100vh;
        background: rgba(15, 15, 16, 0.98);
        backdrop-filter: blur(20px);
        flex-direction: column;
        justify-content: center;
        align-items: center;
        transition: left 0.3s ease;
        z-index: 9999;
        gap: 25px;
    }
    
    .nav-menu.open {
        left: 0;
    }
    
    .nav-menu li a {
        font-size: 1.4rem;
        font-weight: 600;
        color: #fff;
    }
    
    .has-dropdown .dropdown-menu {
        position: static;
        display: none;
        background: transparent;
        box-shadow: none;
        padding: 15px 0;
        margin-top: 15px;
    }
    
    .has-dropdown.active .dropdown-menu {
        display: block;
    }
    
    .mega-dropdown {
        width: 100%;
        background: transparent;
        padding: 0;
    }
    
    .mega-grid.three-cols {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .service-mini {
        background: rgba(255, 255, 255, 0.1);
        border: 1px solid rgba(255, 255, 255, 0.2);
        margin-bottom: 12px;
        padding: 15px;
    }
    
    /* Hero Sections */
    .hero-content {
        flex-direction: column;
        text-align: center;
        gap: 25px;
    }
    
    .hero-title {
        font-size: 2.2rem;
        line-height: 1.3;
    }
    
    .hero-subtitle {
        font-size: 1rem;
        max-width: 500px;
        margin: 0 auto;
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: center;
        gap: 12px;
    }
    
    .hero-buttons .btn {
        width: 100%;
        max-width: 280px;
        padding: 12px 24px;
        font-size: 0.95rem;
    }
    
    /* Services */
    .services-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .service-card {
        padding: 20px;
    }
    
    .service-card h3 {
        font-size: 1.2rem;
    }
    
    .service-card p {
        font-size: 0.9rem;
    }
    
    /* Process Steps */
    .process-steps {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .process-step {
        flex-direction: column;
        text-align: center;
        padding: 20px;
    }
    
    /* Stats */
    .stats-row {
        flex-direction: column;
        gap: 20px;
    }
    
    .stat-item {
        text-align: center;
    }
    
    .stat-number {
        font-size: 2.5rem;
    }
    
    .stat-label {
        font-size: 0.9rem;
    }
    
    /* Contact Cards */
    .contact-cards {
        flex-direction: column;
        gap: 15px;
    }
    
    .contact-card {
        width: 100%;
        padding: 20px;
    }
    
    /* References */
    .refs-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    /* Packages */
    .packages-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .packages-compare .compare-head,
    .packages-compare .compare-row {
        grid-template-columns: 1.2fr 1fr 1fr 1fr;
        font-size: 0.85rem;
    }
    
    /* Modal */
    .modal-content {
        width: 95%;
        max-width: 500px;
        margin: 5% auto;
        padding: 20px;
    }
    
    .modal-header h2 {
        font-size: 1.5rem;
    }
}

/* Mobile Large (480px - 575px) */
@media (min-width: 480px) and (max-width: 575px) {
    .container {
        max-width: 100%;
        margin: 0 auto;
        padding: 0 15px;
    }
    
    /* Navigation */
    .nav-container {
        display: flex;
        align-items: center;
        justify-content: space-between;
        position: relative;
    }
    
    .nav-toggle {
        display: block;
        cursor: pointer;
    }
    
    .nav-menu {
        position: fixed;
        top: 0;
        left: -100%;
        width: 100%;
        height: 100vh;
        background: rgba(15, 15, 16, 0.98);
        backdrop-filter: blur(20px);
        flex-direction: column;
        justify-content: center;
        align-items: center;
        transition: left 0.3s ease;
        z-index: 9999;
        gap: 20px;
    }
    
    .nav-menu.open {
        left: 0;
    }
    
    .nav-menu li a {
        font-size: 1.3rem;
        font-weight: 600;
        color: #fff;
    }
    
    .has-dropdown .dropdown-menu {
        position: static;
        display: none;
        background: transparent;
        box-shadow: none;
        padding: 12px 0;
        margin-top: 12px;
    }
    
    .has-dropdown.active .dropdown-menu {
        display: block;
    }
    
    .mega-dropdown {
        width: 100%;
        background: transparent;
        padding: 0;
    }
    
    .mega-grid.three-cols {
        grid-template-columns: 1fr;
        gap: 12px;
    }
    
    .service-mini {
        background: rgba(255, 255, 255, 0.1);
        border: 1px solid rgba(255, 255, 255, 0.2);
        margin-bottom: 10px;
        padding: 12px;
    }
    
    .service-mini h5 {
        font-size: 0.9rem;
    }
    
    .service-mini p {
        font-size: 0.8rem;
    }
    
    /* Hero Sections */
    .hero-content {
        flex-direction: column;
        text-align: center;
        gap: 20px;
    }
    
    .hero-title {
        font-size: 2rem;
        line-height: 1.3;
    }
    
    .hero-subtitle {
        font-size: 0.95rem;
        max-width: 400px;
        margin: 0 auto;
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: center;
        gap: 10px;
    }
    
    .hero-buttons .btn {
        width: 100%;
        max-width: 260px;
        padding: 10px 20px;
        font-size: 0.9rem;
    }
    
    /* Services */
    .services-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .service-card {
        padding: 15px;
    }
    
    .service-card h3 {
        font-size: 1.1rem;
    }
    
    .service-card p {
        font-size: 0.85rem;
    }
    
    /* Process Steps */
    .process-steps {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .process-step {
        flex-direction: column;
        text-align: center;
        padding: 15px;
    }
    
    /* Stats */
    .stats-row {
        flex-direction: column;
        gap: 15px;
    }
    
    .stat-item {
        text-align: center;
    }
    
    .stat-number {
        font-size: 2.2rem;
    }
    
    .stat-label {
        font-size: 0.85rem;
    }
    
    /* Contact Cards */
    .contact-cards {
        flex-direction: column;
        gap: 12px;
    }
    
    .contact-card {
        width: 100%;
        padding: 15px;
    }
    
    /* References */
    .refs-grid {
        grid-template-columns: 1fr;
        gap: 12px;
    }
    
    /* Packages */
    .packages-grid {
        grid-template-columns: 1fr;
        gap: 12px;
    }
    
    .packages-compare .compare-head,
    .packages-compare .compare-row {
        grid-template-columns: 1fr 0.8fr 0.8fr 0.8fr;
        font-size: 0.8rem;
    }
    
    /* Modal */
    .modal-content {
        width: 95%;
        max-width: 450px;
        margin: 10% auto;
        padding: 15px;
    }
    
    .modal-header h2 {
        font-size: 1.3rem;
    }
    
    .form-group input,
    .form-group textarea {
        padding: 10px;
        font-size: 0.9rem;
    }
}

/* Mobile Small (320px - 479px) */
@media (max-width: 479px) {
    .package-cta button{width:auto!important}
    .container {
        max-width: 100%;
        margin: 0 auto;
        padding: 0 10px;
    }.eticaret{display:block}
    
    /* Navigation */
    .nav-container {
        display: flex;
        align-items: center;
        justify-content: space-between;
        position: relative;
    }
    
    .nav-toggle {
        display: block;
        cursor: pointer;
        width: 24px;
        height: 18px;
    }
    
    .nav-toggle span {
        height: 2px;
        background: #9d59c0;
    }
    
    .nav-menu {
        position: fixed;
        top: 0;
        left: -100%;
        width: 100%;
        height: 100vh;
        background: rgba(15, 15, 16, 0.98);
        backdrop-filter: blur(20px);
        flex-direction: column;
        justify-content: center;
        align-items: center;
        transition: left 0.3s ease;
        z-index: 9999;
        gap: 18px;
    }
    
    .nav-menu.open {
        left: 0;
        padding-top: 0;
    }

    .paddingvarmenu {
        padding-top: 100% !important;
    }

    
    .nav-menu li a {
        font-size: 1.2rem;
        font-weight: 600;
        color: #fff;
    }
    
    .has-dropdown .dropdown-menu {
        position: static;
        display: none;
        background: transparent;
        box-shadow: none;
        padding: 10px 0;
        margin-top: 10px;
    }
    
    .has-dropdown.active .dropdown-menu {
        display: flex;
        transform: translateX(0%);
        border: 0;
    }
    
    .mega-dropdown {
        width: 100%;
        background: transparent;
        padding: 0;
    }
    
    .mega-grid.three-cols {
        grid-template-columns: 1fr;
        gap: 10px;
    }
    
    .service-mini {
        background: rgba(255, 255, 255, 0.1);
        border: 1px solid rgba(255, 255, 255, 0.2);
        margin-bottom: 8px;
        padding: 10px;
    }
    
    .service-mini h5 {
        font-size: 0.85rem;
    }
    
    .service-mini p {
        font-size: 0.75rem;
    }
    
    /* Hero Sections */
    .hero-content {
        flex-direction: column;
        text-align: center;
        margin-top: 30px;
        padding-bottom: 0;
    }
    
    .hero-title {
        font-size: 1.7rem;
        line-height: 1.3;
    }
    
    .hero-subtitle {
        font-size: 0.9rem;
        max-width: 350px;
        margin: 0 auto;
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: center;
        gap: 8px;
    }
    
    .hero-buttons .btn {
        width: 100%;
        max-width: 180px;
        padding: 8px 16px;
        font-size: 0.85rem;
        justify-content: center;
    }
    
    /* Services */
    .services-grid {
        grid-template-columns: 1fr;
        gap: 12px;
    }
    
    .service-card {
        padding: 50px 12px;
    }
    
    .service-card h3 {
        font-size: 1rem;
    }
    
    .service-card p {
        font-size: 0.8rem;
    }
    
    /* Process Steps */
    .process-steps {
        grid-template-columns: 1fr;
        gap: 12px;
    }
    
    .process-step {
        flex-direction: column;
        text-align: center;
        padding: 12px;
    }
    
    /* Stats */
    .stats-row {
        flex-direction: column;
        gap: 12px;
    }
    
    .stat-item {
        text-align: center;
    }
    
    .stat-number {
        font-size: 2rem;
    }
    
    .stat-label {
        font-size: 0.8rem;
    }
    
    /* Contact Cards */
    .contact-cards {
        flex-direction: column;
        gap: 10px;
    }
    
    .contact-card {
        width: 100%;
        padding: 12px;
    }
    
    /* References */
    .refs-grid {
        grid-template-columns: 1fr;
        gap: 10px;
    }
    
    /* Packages */
    .packages-grid {
        grid-template-columns: 1fr;
        gap: 10px;
    }
    
    .packages-compare .compare-head,
    .packages-compare .compare-row {
        grid-template-columns: 1fr 0.7fr 0.7fr 0.7fr;
        font-size: 0.75rem;
    }
    
    /* Modal */
    .modal-content {
        width: 95%;
        max-width: 400px;
        margin: 15% auto;
        padding: 12px;
    }
    
    .modal-header h2 {
        font-size: 1.2rem;
    }
    
    .form-group input,
    .form-group textarea {
        padding: 8px;
        font-size: 0.85rem;
    }
    
    /* Typography */
    h1 {
        font-size: 1.8rem;
    }
    
    h2 {
        font-size: 1.5rem;
    }
    
    h3 {
        font-size: 1.2rem;
    }
    
    h4 {
        font-size: 1.1rem;
    }
    
    h5 {
        font-size: 1rem;
    }
    
    h6 {
        font-size: 0.9rem;
    }
    
    /* Buttons */
    .btn {
        padding: 8px 16px;
        font-size: 0.85rem;
    }
    
    .nav-cta-btn {
        padding: 8px 16px;
        font-size: 0.85rem;
    }
}

/* Landscape Mobile (480px - 767px) and height < 500px */
@media (max-width: 767px) and (max-height: 500px) {
    .nav-menu {
        gap: 15px;
    }
    
    .nav-menu li a {
        font-size: 1.1rem;
    }
    
    .hero-content {
        gap: 15px;
    }
    
    .hero-title {
        font-size: 1.6rem;
    }
    
    .hero-subtitle {
        font-size: 0.9rem;
    }
    
    .hero-buttons {
        flex-direction: row;
        justify-content: center;
        gap: 10px;
    }
    
    .hero-buttons .btn {
        width: auto;
        min-width: 120px;
        padding: 8px 16px;
        font-size: 0.8rem;
    }
}

/* Print Styles */
@media print {
    .navbar,
    .nav-toggle,
    .nav-cta-btn,
    .hero-buttons,
    .modal-overlay {
        display: none !important;
    }
    
    .hero-content {
        flex-direction: column;
        text-align: center;
    }
    
    .services-grid,
    .process-steps,
    .refs-grid {
        grid-template-columns: 1fr;
    }
    
    .contact-cards,
    .stats-row {
        flex-direction: column;
    }
    
    body {
        font-size: 12pt;
        line-height: 1.4;
        color: #000;
        background: #fff;
    }
    
    .hero-title,
    .service-card h3,
    .process-step h3 {
        color: #000;
    }
}

/* High DPI Displays */
@media (-webkit-min-device-pixel-ratio: 2), (min-resolution: 192dpi) {
    .service-mini .icon img,
    .service-card img,
    .hero-image img {
        image-rendering: -webkit-optimize-contrast;
        image-rendering: crisp-edges;
    }
}

/* Reduced Motion */
@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
        scroll-behavior: auto !important;
    }
}

/* ==========================================
   WHATSAPP FLOATING BUTTON
   ========================================== */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    left: 30px;
    z-index: 9999;
}

.whatsapp-button {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
    border-radius: 50%;
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
    color: white;
    text-decoration: none;
    transition: all 0.3s ease;
    position: relative;
    animation: whatsappBounce 2s infinite;
}

.whatsapp-button:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 30px rgba(37, 211, 102, 0.6);
    text-decoration: none;
}

.whatsapp-icon {
    width: 32px;
    height: 32px;
    position: relative;
    z-index: 2;
}

.whatsapp-pulse {
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background: rgba(37, 211, 102, 0.5);
    animation: whatsappPulse 2s infinite;
    z-index: 1;
}

@keyframes whatsappPulse {
    0% {
        transform: scale(1);
        opacity: 1;
    }
    50% {
        transform: scale(1.3);
        opacity: 0;
    }
    100% {
        transform: scale(1);
        opacity: 0;
    }
}

@keyframes whatsappBounce {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-10px);
    }
}

/* WhatsApp Tooltip */
.whatsapp-tooltip {
    position: absolute;
    bottom: 0;
    left: 75px;
    background: white;
    border-radius: 12px;
    padding: 16px 20px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
    min-width: 240px;
    opacity: 0;
    visibility: hidden;
    transform: translateX(-20px);
    transition: all 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

.whatsapp-tooltip.show {
    opacity: 1;
    visibility: visible;
    transform: translateX(0);
}

.whatsapp-tooltip::before {
    content: '';
    position: absolute;
    left: -8px;
    top: 50%;
    transform: translateY(-50%);
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 8px 8px 8px 0;
    border-color: transparent white transparent transparent;
}

.whatsapp-tooltip-content {
    position: relative;
}

.whatsapp-tooltip-content strong {
    display: block;
    color: #25D366;
    font-size: 16px;
    margin-bottom: 6px;
    font-family: var(--font-heading);
}

.whatsapp-tooltip-content p {
    margin: 0 0 8px 0;
    color: #333;
    font-size: 14px;
    line-height: 1.4;
}

.whatsapp-tooltip-content small {
    color: #888;
    font-size: 12px;
}

.whatsapp-close {
    position: absolute;
    top: -8px;
    right: -8px;
    width: 24px;
    height: 24px;
    background: #f44336;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-size: 16px;
    line-height: 1;
    transition: all 0.2s ease;
    box-shadow: 0 2px 8px rgba(244, 67, 54, 0.3);
}

.whatsapp-close:hover {
    transform: scale(1.1);
    background: #d32f2f;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .whatsapp-float {
        bottom: 20px;
        left: 20px;
    }
    .cta-content .nav-cta-btn{font-size:15px!important}
    .manifesto-item{display:flex;align-items: center;padding: 15px 30px;}
    .manifesto-item h3{font-size:1.1rem}
    .whatsapp-button {
        width: 56px;
        height: 56px;
    }

    .whatsapp-icon {
        width: 28px;
        height: 28px;
    }

    .whatsapp-tooltip {
        left: 0;
        right: 0;
        bottom: 70px;
        min-width: 200px;
    }

    .whatsapp-tooltip::before {
        left: 50%;
        top: auto;
        bottom: -8px;
        transform: translateX(-50%) rotate(90deg);
    }
    .not-item{display:flex;align-items: center;    }
    .not-icon {margin-bottom:0}
    .not-icon img{width:80px}
    .custom-cursor, .custom-cursor-follower{display:none}
    .packages-hero{padding:40px 0}
    .ref-card{width: calc(50% - 5px);}
    .refs-grid{display: flex;gap: 5px;flex-direction: row;flex-wrap: wrap;}
}

/* Print - Hide WhatsApp Button */
@media print {
    .whatsapp-float {
        display: none !important;
    }
}

