/* Reset & Base */
* { box-sizing: border-box; margin: 0; padding: 0; }
body {
    font-family: 'Segoe UI', Arial, sans-serif;
    background: #fff !important;
    color: #222;
    min-height: 100vh;
    position: relative;
    overflow-x: hidden;
    padding-top: 64px;
    /* background-image, background-repeat, background-position, background-size, background-attachment kaldırıldı */
}
body::before, body::after, .bg-blobs, .wave-bg, .custom-wave-bg {
    display: none !important;
}
a { color: #e6005a; text-decoration: none; transition: color 0.2s; }
a:hover { color: #00a2e8; }

/* Navbar */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 10000;
    background: #fff;
    box-shadow: 0 2px 16px rgba(0,0,0,0.06);
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 14px 40px;
    min-height: 64px;
    transition: box-shadow 0.2s;
    margin-bottom: 0;
    overflow: visible !important;
}
.logo-img {
    height: 64px;
    max-height: 64px;
}
.logo, .logo a {
    background: none !important;
    box-shadow: none !important;
    border: none !important;
    outline: none !important;
    transition: none !important;
}
.navbar ul {
    list-style: none;
    display: flex;
    gap: 28px;
    margin: 0;
    padding: 0;
    overflow: visible !important;
}
.navbar a {
    color: #222;
    font-weight: 500;
    font-size: 1.08rem;
    padding: 8px 16px;
    border-radius: 6px;
    transition: background 0.2s, color 0.2s;
}
.navbar a.active, .navbar a:hover {
    background: #e6005a;
    color: #fff;
}

/* Mobile Menu Toggle */
.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
    padding: 8px;
    z-index: 1001;
}

.mobile-menu-toggle span {
    width: 25px;
    height: 3px;
    background: #333;
    margin: 3px 0;
    transition: 0.3s;
    border-radius: 2px;
}

.mobile-menu-toggle.active span:nth-child(1) {
    transform: rotate(-45deg) translate(-5px, 6px);
}

.mobile-menu-toggle.active span:nth-child(2) {
    opacity: 0;
}

.mobile-menu-toggle.active span:nth-child(3) {
    transform: rotate(45deg) translate(-5px, -6px);
}

/* Main Layout */
main {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 16px 32px 16px;
}
.section-title {
    width: 100%;
    text-align: center;
    color: #e6005a;
    font-size: 2.5rem !important;
    margin: 48px 0 18px 0;
    letter-spacing: 1px;
    font-weight: bold;
    text-shadow: 0 2px 12px #ffd20044;
    animation: fadeInUp 1.1s;
}
.section-desc {
    width: 100%;
    text-align: center;
    color: #444;
    margin-bottom: 32px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    font-size: 1.1rem;
    animation: fadeInUp 1.2s;
}

/* Hizmetler */
.home-sections {
    display: flex;
    flex-wrap: wrap;
    gap: 32px;
    justify-content: center;
    margin: 56px auto 56px auto !important;
    max-width: 1100px;
}
.home-card {
    position: relative;
    background: #fff;
    border-radius: 18px;
    box-shadow: 0 4px 24px rgba(0,0,0,0.08);
    padding: 48px 28px 28px 28px;
    min-width: 260px;
    max-width: 340px;
    text-align: center;
    transition: transform 0.25s, box-shadow 0.25s, border 0.25s;
    border: 3px solid transparent;
    margin: 0 8px;
    flex: 1 1 300px;
    display: flex;
    flex-direction: column;
    align-items: center;
    animation: fadeInUp 1.1s;
}
.home-card:hover {
    transform: translateY(-10px) scale(1.05);
    box-shadow: 0 16px 40px rgba(230,0,90,0.13);
    border-image: linear-gradient(90deg, #e6005a, #00a2e8, #ffd200) 1;
}
.home-card .icon {
    width: 54px;
    height: 54px;
    border-radius: 50%;
    background: linear-gradient(135deg, #e6005a 60%, #ffd200 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 18px;
    font-size: 2rem;
    color: #fff;
    box-shadow: 0 2px 12px #ffd20033;
    animation: fadeIn 1.2s;
}
.home-card h3 {
    color: #e6005a;
    margin-bottom: 16px;
    font-size: 1.35rem;
    font-weight: bold;
    letter-spacing: 0.5px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}
.home-card h3::before {
    content: '\2605';
    color: #00a2e8;
    font-size: 1.3em;
    margin-right: 4px;
    opacity: 0.7;
}
.home-card p {
    color: #444;
    font-size: 1.08rem;
    margin: 0;
}

/* Kurumsal Bilgi */
.corporate-section {
    display: flex;
    justify-content: center;
    margin: 0 auto 56px auto;
}
.corporate-card {
    background: #fff;
    border-radius: 18px;
    box-shadow: 0 4px 24px rgba(0,0,0,0.08);
    padding: 40px 32px 32px 32px;
    max-width: 700px;
    width: 100%;
    text-align: center;
    margin: 0 auto;
}

/* CTA */
.cta-section {
    background: linear-gradient(90deg, #e6005a 60%, #ffd200 100%);
    border-radius: 32px;
    box-shadow: 0 2px 16px rgba(230,0,90,0.09);
    margin: 96px auto 64px auto;
    max-width: 900px;
    padding: 56px 32px 48px 32px;
    position: relative;
    overflow: visible;
    text-align: center;
}
.cta-section::after {
    content: '';
    position: absolute;
    right: -60px;
    top: -60px;
    width: 180px;
    height: 180px;
    background: radial-gradient(circle at 40% 40%, #ffd200cc 60%, #e6005a00 100%);
    border-radius: 50%;
    z-index: 0;
    pointer-events: none;
    opacity: 0.5;
}
.cta-section h2, .cta-btn { position: relative; z-index: 1; }
.cta-section h2 {
    color: #fff;
    font-size: 1.8rem !important;
    margin-bottom: 28px;
    letter-spacing: 1px;
    text-shadow: 0 2px 12px #222;
    animation: fadeInUp 1.2s;
    font-weight: bold;
}
.cta-btn {
    font-size: 1.25rem;
    padding: 18px 44px;
    border-radius: 32px;
    font-weight: bold;
    letter-spacing: 1px;
    box-shadow: 0 4px 18px rgba(230,0,90,0.13);
    cursor: pointer;
    border: none;
    background: #fff;
    color: #e6005a;
    transition: background 0.2s, color 0.2s, transform 0.2s;
    animation: fadeInUp 1.5s;
    margin-top: 20px;
}
.cta-btn:hover {
    background: #ffd200;
    color: #e6005a;
    transform: scale(1.06);
}

/* Partners */
.partners-section {
    margin: 64px auto 32px auto;
    text-align: center;
    overflow: hidden;
    position: relative;
}

/* Partners Carousel */
.partners-carousel {
    width: 100%;
    overflow: hidden;
    position: relative;
    margin-top: 24px;
    padding: 20px 0;
}

.partners-track {
    display: flex;
    animation: scroll 30s linear infinite;
    width: calc(25 * 300px); /* 25 logos * 300px */
    align-items: center;
}

.partner-logo {
    background: transparent;
    border-radius: 0;
    box-shadow: none;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0;
    transition: transform 0.2s;
    flex-shrink: 0;
    width: 300px;
    height: 120px;
}

.partner-logo img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    display: block;
    filter: grayscale(100%);
    transition: filter 0.3s;
}

.partner-logo:hover img {
    filter: none;
}

@keyframes scroll {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(calc(-25 * 300px / 2)); /* Move half the total width */
    }
}

@media (max-width: 900px) {
    .partner-logo {
        width: 200px;
        height: 80px;
    }
    .partners-track {
        width: calc(25 * 200px);
    }
}

@media (max-width: 600px) {
  .partner-logo {
    width: 120px;
    height: 48px;
  }
  .partners-track {
    width: calc(25 * 120px);
  }
}

/* Pause animation on hover */
.partners-carousel:hover .partners-track {
    animation-play-state: paused;
}

/* Advantages */
.advantages-section {
    margin: 64px auto 32px auto;
    text-align: center;
}
.advantages-cards {
    display: flex;
    justify-content: center;
    gap: 32px;
    flex-wrap: wrap;
    margin-top: 24px;
}
.adv-card {
    background: #fff;
    border-radius: 18px;
    box-shadow: 0 2px 16px rgba(0,0,0,0.07);
    padding: 32px 24px 24px 24px;
    min-width: 220px;
    max-width: 260px;
    text-align: center;
    transition: box-shadow 0.2s, transform 0.2s;
    border: 2px solid #ffd20022;
}
.adv-card:hover {
    box-shadow: 0 8px 32px rgba(230,0,90,0.13);
    border-color: #e6005a;
    transform: translateY(-8px) scale(1.04);
}
.adv-icon {
    font-size: 2.1rem;
    color: #e6005a;
    margin-bottom: 12px;
    display: block;
}
.advantages-cards h3 {
    color: #00a2e8;
    font-size: 1.15rem;
    margin-bottom: 10px;
}

/* Services */
.services-section {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 0;
    margin: 0;
}
.services-cards {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 32px;
}
.service-card {
    background: linear-gradient(135deg, #fff 60%, #f8f8ff 100%);
    border-radius: 28px;
    box-shadow: 0 4px 32px #ff008a11;
    border: 2px solid #fff;
    padding: 36px 32px 32px 32px;
    flex: 1 1 240px;
    max-width: 320px;
    min-width: 220px;
    transition: box-shadow 0.18s, transform 0.18s, border 0.18s;
    text-align: left;
    align-items: flex-start;
}
.service-card:hover {
    box-shadow: 0 8px 40px #ff008a22, 0 2px 12px #ffd20022;
    border: 2px solid #ffd200;
    transform: translateY(-8px) scale(1.04);
    z-index: 2;
}
.service-icon {
    font-size: 2.6rem;
    margin-bottom: 18px;
}
.service-card h3 {
    font-size: 1.18rem;
    font-weight: 700;
    margin-bottom: 10px;
    color: #e6005a;
    text-align: left;
}
.service-card p {
    font-size: 1.01rem;
    color: #444;
    text-align: left;
}

/* Çözümlerimiz */
.solutions-section {
    background: #fff;
    padding: 64px 0 32px 0;
    margin: 0 auto;
    overflow-x: hidden;
}
.solutions-section .section-title {
    color: #222;
    font-size: 2.4rem;
    margin-bottom: 10px;
}
.solutions-section .section-desc {
    color: #444;
    font-size: 1.1rem;
    margin-bottom: 36px;
    text-align: center;
}
.solutions-cards {
    display: flex;
    flex-wrap: wrap;
    gap: 32px;
    justify-content: center;
    align-items: stretch;
    max-width: 1200px;
    margin: 0 auto;
    overflow: visible;
    padding: 0;
}
.solution-card {
    flex: 1 1 220px;
    min-width: 220px;
    max-width: 270px;
    background: #fff;
    border: 1.5px solid #eee;
    border-radius: 16px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.04);
    padding: 32px 20px 28px 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    transition: box-shadow 0.15s, border-color 0.15s;
    position: relative;
    color: #222;
}
.solution-card:hover {
    box-shadow: 0 6px 18px rgba(230,0,90,0.18);
    border-color: #e6005a;
}
.gradient-pink, .gradient-blue, .gradient-yellow {
    background: #fff !important;
    color: #222 !important;
}
.solution-icon {
    font-size: 2.1rem;
    margin-bottom: 18px;
    display: block;
    color: #e6005a;
}
.solution-card h3 {
    font-size: 1.18rem;
    font-weight: bold;
    margin-bottom: 12px;
    letter-spacing: 0.5px;
    color: #222;
}
.solution-card p {
    font-size: 1.01rem;
    margin-bottom: 22px;
    color: #444;
}
.solution-btn {
    display: inline-block;
    padding: 9px 26px;
    border-radius: 24px;
    background: #fff;
    color: #e6005a;
    font-weight: bold;
    font-size: 1rem;
    border: 1.5px solid #e6005a;
    box-shadow: none;
    transition: background 0.15s, color 0.15s, border-color 0.15s;
    text-decoration: none;
    margin-top: auto;
}
.solution-btn:hover {
    background: #e6005a;
    color: #fff;
    border-color: #e6005a;
}
@media (max-width: 900px) {
    .solutions-cards {
        flex-direction: column;
        gap: 18px;
        align-items: center;
    }
    .solution-card {
        max-width: 95vw;
        min-width: 0;
    }
}

/* Footer */
footer {
    background: #222;
    color: #fff;
    text-align: center;
    padding: 40px 0 18px 0;
    font-size: 1.05rem;
    margin-top: 64px;
    letter-spacing: 0.5px;
    box-shadow: none;
}
footer::after, footer::before {
    display: none !important;
}
.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 18px;
}
.footer-logo {
    height: 60px;
    max-height: 60px;
    display: block;
    margin: 0 auto 18px auto;
}
.footer-links {
    display: flex;
    gap: 18px;
    flex-wrap: wrap;
    justify-content: center;
}
.footer-links a {
    color: #fff;
    font-weight: 500;
    transition: color 0.2s;
}
.footer-links a:hover {
    color: #ffd200;
}
.footer-contact {
    color: #fff;
    font-size: 1rem;
}
.footer-social {
    margin: 12px 0 0 0;
    display: flex;
    justify-content: center;
    gap: 18px;
}
.footer-social a {
    color: #ffd200;
    font-size: 1.4rem;
    transition: color 0.2s;
}
.footer-social a:hover {
    color: #e6005a;
}

/* Animasyonlar */
@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(40px); }
    to { opacity: 1; transform: translateY(0); }
}
@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

/* Responsive */
@media (max-width: 1024px) {
    .navbar { 
        padding: 10px 12px; 
        min-height: 56px;
    }
    .logo-img { height: 36px; }
    .navbar ul { gap: 12px; }
    body { padding-top: 56px; }
    main { padding: 0 4px 24px 4px; }
    .section-title { font-size: 1.3rem; margin: 32px 0 12px 0; }
    .home-sections { flex-direction: column; align-items: center; gap: 24px; }
    .home-card { max-width: 95vw; margin: 0; }
    .corporate-section { flex-direction: column; }
    .corporate-card { max-width: 98vw; padding: 24px 8px; }
    .cta-section { margin: 48px 8px 32px 8px; padding: 32px 8px 28px 8px; border-radius: 18px; }
    .cta-section h2 { font-size: 1.1rem; }
    .cta-btn { font-size: 1rem; padding: 12px 18px; }
    footer { font-size: 0.95rem; padding: 18px 0 10px 0; }
    .advantages-cards, .services-cards { flex-direction: column; align-items: center; gap: 18px; }
    .adv-card, .service-card { min-width: 70vw; max-width: 95vw; }
    
    /* Partners Carousel Mobile */
    .partners-carousel {
        margin-top: 16px;
        padding: 16px 0;
    }
    
    .partners-track {
        animation-duration: 20s;
    }
    
    .partner-logo {
        min-width: 300px;
        max-width: 300px;
        height: 140px;
        padding: 28px 20px;
        margin: 0;
    }
    .footer-content { padding: 0 8px; }
    .partners-track {
        width: calc(25 * 300px);
    }
    
    /* Navbar Mobile Improvements */
    .navbar ul {
        font-size: 0.9rem;
    }
    
    /* Mobile Menu */
    .mobile-menu-toggle {
        display: none !important;
    }
    
    .nav-menu {
        display: flex;
    }
    
    /* Container adjustments */
    .container {
        padding: 0 12px;
    }
    
    /* Footer improvements */
    .footer-links {
        flex-wrap: wrap;
        gap: 16px;
        justify-content: center;
    }
    
    .footer-links a {
        font-size: 0.9rem;
    }
    
    /* Map info improvements */
    .map-info {
        grid-template-columns: 1fr;
        gap: 16px;
    }
    
    .map-info-item {
        padding: 20px;
    }
    
    /* Form improvements */
    .form-container-new {
        flex-direction: column;
        gap: 32px;
    }
    
    .form-left, .form-right {
        width: 100%;
    }
    
    /* Social links improvements */
    .social-links-grid {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        gap: 16px;
    }
    
    /* FAQ improvements */
    .faq-container-new {
        gap: 12px;
    }
    
    .faq-question-new {
        padding: 16px;
    }
    
    .faq-question-new h3 {
        font-size: 1rem;
    }
}

/* Tablet Specific */
@media (max-width: 768px) {
    .navbar ul {
        font-size: 0.85rem;
        gap: 8px;
        display: none !important;
    }
    
    .logo-img {
        height: 32px;
    }
    
    .modern-banner-slider {
        min-height: 280px;
        max-height: 380px;
    }
    
    .modern-banner-title {
        font-size: 1.2rem;
    }
    
    .modern-banner-desc {
        font-size: 0.95rem;
    }
    
    .services-hero-title {
        font-size: 1.8rem;
    }
    
    .services-hero-desc {
        font-size: 1rem;
    }
    
    .services-hero-stats {
        gap: 40px;
    }
    
    .stat-number {
        font-size: 2.2rem;
    }
    
    .stat-label {
        font-size: 0.95rem;
    }
    
    .main-services-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }
    
    .main-service-card {
        padding: 24px 20px;
    }
    
    .process-steps {
        flex-direction: column;
        gap: 24px;
    }
    
    .process-step {
        max-width: 100%;
    }
    
    .why-cards {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .references-grid {
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
        gap: 16px;
    }
    
    .reference-card {
        padding: 16px 12px;
    }
    
    .reference-logo {
        height: 100px;
    }
    
    .about-story-content {
        flex-direction: column;
        gap: 32px;
    }
    
    .about-story-text {
        width: 100%;
    }
    
    .about-story-image {
        width: 100%;
        max-width: 400px;
        margin: 0 auto;
    }
    
    .mission-vision-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }
    
    .values-grid {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        gap: 20px;
    }
    
    .team-grid {
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
        gap: 20px;
    }
    
    .map-info {
        grid-template-columns: 1fr;
        gap: 16px;
    }
    
    .map-info-item {
        padding: 20px;
        flex-direction: column;
        text-align: center;
        gap: 12px;
    }
    
    .map-icon {
        font-size: 2rem;
    }
    
    .map-details h3 {
        font-size: 1.1rem;
    }
    
    .map-details p {
        font-size: 0.9rem;
    }
    
    .quick-contact-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }
    
    .quick-contact-item {
        padding: 20px;
        flex-direction: column;
        text-align: center;
        gap: 12px;
    }
    
    .quick-icon {
        font-size: 2rem;
    }
    
    .quick-content h3 {
        font-size: 1.1rem;
    }
    
    .quick-content p {
        font-size: 0.9rem;
    }
    
    .form-container-new {
        flex-direction: column;
        gap: 24px;
    }
    
    .form-left, .form-right {
        width: 100%;
    }
    
    .form-header h2 {
        font-size: 1.4rem;
    }
    
    .form-header p {
        font-size: 0.95rem;
    }
    
    .form-group-new input,
    .form-group-new textarea {
        font-size: 0.95rem;
        padding: 12px 16px;
    }
    
    .submit-btn-new {
        font-size: 0.95rem;
        padding: 12px 24px;
    }
    
    .icon-container {
        width: 80px;
        height: 80px;
    }
    
    .form-icon {
        width: 50px;
        height: 50px;
    }
    
    .icon-text h3 {
        font-size: 1.2rem;
    }
    
    .icon-text p {
        font-size: 0.9rem;
    }
    
    .social-links-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }
    
    .social-link {
        padding: 20px;
        flex-direction: column;
        text-align: center;
        gap: 12px;
    }
    
    .social-icon-new {
        font-size: 2rem;
    }
    
    .social-info h3 {
        font-size: 1.1rem;
    }
    
    .social-info p {
        font-size: 0.9rem;
    }
    
    .faq-container-new {
        gap: 12px;
    }
    
    .faq-question-new {
        padding: 16px;
    }
    
    .faq-question-new h3 {
        font-size: 0.95rem;
    }
    
    .faq-answer-new p {
        font-size: 0.9rem;
    }
    
    .final-cta h2 {
        font-size: 1.4rem;
    }
    
    .final-cta p {
        font-size: 0.95rem;
    }
    
    .cta-buttons {
        flex-direction: column;
        gap: 12px;
        align-items: center;
    }
    
    .cta-btn-primary,
    .cta-btn-secondary {
        width: 100%;
        max-width: 280px;
        font-size: 0.95rem;
        padding: 12px 24px;
    }
}

/* Mobile Specific */
@media (max-width: 600px) {
    .gg-sol-cards { 
        gap: 12px; 
        padding: 0 12px;
    }
    .gg-sol-card { 
        flex: 0 0 240px;
        min-width: 240px;
        padding: 24px 20px 20px 20px;
    }
    .gg-sol-icon {
        font-size: 2.2rem;
        margin-bottom: 16px;
    }
    .gg-sol-card h3 {
        font-size: 1.1rem;
        margin-bottom: 8px;
    }
    .gg-sol-card p {
        font-size: 0.95rem;
    }
    .navbar {
        padding: 8px 10px;
        min-height: 52px;
    }
    
    .logo-img {
        height: 28px;
    }
    
    .navbar ul {
        font-size: 0.8rem;
        gap: 6px;
    }
    
    body {
        padding-top: 52px;
    }
    
    main {
        padding: 0 2px 16px 2px;
    }
    
    .container {
        padding: 0 8px;
    }
    
    .section-title {
        font-size: 1.2rem;
        margin: 24px 0 8px 0;
    }
    
    .section-desc {
        font-size: 0.9rem;
    }
    
    .modern-banner-slider {
        min-height: 240px;
        max-height: 320px;
        border-radius: 0;
    }
    
    .modern-banner-title {
        font-size: 1.1rem;
        margin-bottom: 8px;
    }
    
    .modern-banner-desc {
        font-size: 0.9rem;
        margin-bottom: 16px;
    }
    
    .modern-banner-btn {
        font-size: 0.9rem;
        padding: 10px 18px;
    }
    
    .modern-banner-arrow {
        width: 32px;
        height: 32px;
        font-size: 1.1rem;
    }
    
    .modern-banner-arrow.prev {
        left: 4px;
    }
    
    .modern-banner-arrow.next {
        right: 4px;
    }
    
    .services-hero {
        padding: 40px 16px;
    }
    
    .services-hero-title {
        font-size: 1.6rem;
        margin-bottom: 12px;
    }
    
    .services-hero-desc {
        font-size: 0.95rem;
        margin-bottom: 24px;
    }
    
    .services-hero-stats {
        gap: 24px;
        flex-wrap: wrap;
    }
    
    .stat-item {
        text-align: center;
    }
    
    .stat-number {
        font-size: 1.8rem;
    }
    
    .stat-label {
        font-size: 0.85rem;
    }
    
    .main-services-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }
    
    .main-service-card {
        padding: 20px 16px;
    }
    
    .service-icon-large {
        font-size: 2.5rem;
        margin-bottom: 12px;
    }
    
    .main-service-card h3 {
        font-size: 1.1rem;
        margin-bottom: 8px;
    }
    
    .main-service-card p {
        font-size: 0.9rem;
    }
    
    .service-features {
        margin-top: 12px;
    }
    
    .service-features li {
        font-size: 0.85rem;
        margin-bottom: 4px;
    }
    
    .service-btn {
        font-size: 0.9rem;
        padding: 10px 20px;
        margin-top: 12px;
    }
    
    .process-steps {
        flex-direction: column;
        gap: 16px;
    }
    
    .process-step {
        padding: 20px 16px;
    }
    
    .step-number {
        width: 40px;
        height: 40px;
        font-size: 1.2rem;
    }
    
    .process-step h3 {
        font-size: 1.1rem;
    }
    
    .process-step p {
        font-size: 0.9rem;
    }
    
    .why-cards {
        grid-template-columns: 1fr;
        gap: 16px;
    }
    
    .why-card {
        padding: 20px 16px;
    }
    
    .why-icon {
        font-size: 2rem;
        margin-bottom: 12px;
    }
    
    .why-card h3 {
        font-size: 1.1rem;
    }
    
    .why-card p {
        font-size: 0.9rem;
    }
    
    .services-cta {
        padding: 40px 16px;
        margin: 40px 8px;
        border-radius: 16px;
    }
    
    .services-cta h2 {
        font-size: 1.3rem;
        margin-bottom: 12px;
    }
    
    .services-cta p {
        font-size: 0.9rem;
        margin-bottom: 20px;
    }
    
    .services-cta .cta-btn {
        font-size: 0.9rem;
        padding: 12px 24px;
    }
    
    .services-cta .cta-buttons {
        flex-direction: column;
        gap: 12px;
        align-items: center;
    }
    
    .services-cta .cta-buttons .cta-btn {
        width: 100%;
        max-width: 250px;
    }
    
    .references-grid {
        grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
        gap: 12px;
    }
    
    .reference-card {
        padding: 12px 8px;
        min-height: 120px;
    }
    
    .reference-logo {
        height: 80px;
        padding: 2px;
    }
    
    .reference-card h3 {
        font-size: 0.8rem;
    }
    
    .about-story {
        padding: 40px 16px;
    }
    
    .about-story-content {
        flex-direction: column;
        gap: 24px;
    }
    
    .about-story-text {
        width: 100%;
    }
    
    .about-story-text .section-title {
        font-size: 1.3rem;
        margin-bottom: 12px;
    }
    
    .about-story-text .section-desc {
        font-size: 0.9rem;
        margin-bottom: 12px;
    }
    
    .about-story-image {
        width: 100%;
        max-width: 300px;
        margin: 0 auto;
    }
    
    .story-image-placeholder {
        height: 200px;
    }
    
    .story-icon {
        font-size: 3rem;
    }
    
    .mission-vision-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .mission-card,
    .vision-card {
        padding: 20px 16px;
    }
    
    .mission-icon,
    .vision-icon {
        font-size: 2.5rem;
        margin-bottom: 12px;
    }
    
    .mission-card h3,
    .vision-card h3 {
        font-size: 1.2rem;
        margin-bottom: 8px;
    }
    
    .mission-card p,
    .vision-card p {
        font-size: 0.9rem;
        margin-bottom: 12px;
    }
    
    .mission-points li {
        font-size: 0.85rem;
        margin-bottom: 6px;
    }
    
    .values-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }
    
    .value-card {
        padding: 20px 16px;
    }
    
    .value-icon {
        font-size: 2.5rem;
        margin-bottom: 12px;
    }
    
    .value-card h3 {
        font-size: 1.1rem;
    }
    
    .value-card p {
        font-size: 0.9rem;
    }
    
    .team-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .team-member {
        padding: 20px 16px;
    }
    
    .member-avatar {
        width: 80px;
        height: 80px;
        margin-bottom: 12px;
    }
    
    .team-member h3 {
        font-size: 1.1rem;
    }
    
    .member-role {
        font-size: 0.9rem;
    }
    
    .team-member p {
        font-size: 0.85rem;
    }
    
    .about-cta {
        padding: 40px 16px;
        margin: 40px 8px;
        border-radius: 16px;
    }
    
    .about-cta h2 {
        font-size: 1.3rem;
        margin-bottom: 12px;
    }
    
    .about-cta p {
        font-size: 0.9rem;
        margin-bottom: 20px;
    }
    
    .about-cta .cta-btn {
        font-size: 0.9rem;
        padding: 12px 24px;
    }
    
    .map-section {
        padding: 40px 16px;
    }
    
    .map-header h1 {
        font-size: 1.6rem;
        margin-bottom: 12px;
    }
    
    .map-header p {
        font-size: 0.9rem;
        margin-bottom: 24px;
    }
    
    .map-wrapper iframe {
        height: 300px;
        border-radius: 12px;
    }
    
    .map-info {
        grid-template-columns: 1fr;
        gap: 12px;
        margin-top: 24px;
    }
    
    .map-info-item {
        padding: 16px;
        flex-direction: column;
        text-align: center;
        gap: 8px;
    }
    
    .map-icon {
        font-size: 1.8rem;
    }
    
    .map-details h3 {
        font-size: 1rem;
        margin-bottom: 4px;
    }
    
    .map-details p {
        font-size: 0.85rem;
    }
    
    .quick-contact {
        padding: 40px 16px;
    }
    
    .quick-contact-grid {
        grid-template-columns: 1fr;
        gap: 12px;
    }
    
    .quick-contact-item {
        padding: 16px;
        flex-direction: column;
        text-align: center;
        gap: 8px;
    }
    
    .quick-icon {
        font-size: 1.8rem;
    }
    
    .quick-content h3 {
        font-size: 1rem;
    }
    
    .quick-content p {
        font-size: 0.85rem;
    }
    
    .contact-form-section-new {
        padding: 40px 16px;
    }
    
    .form-container-new {
        flex-direction: column;
        gap: 20px;
    }
    
    .form-left, .form-right {
        width: 100%;
    }
    
    .form-header h2 {
        font-size: 1.3rem;
        margin-bottom: 8px;
    }
    
    .form-header p {
        font-size: 0.9rem;
        margin-bottom: 20px;
    }
    
    .form-group-new {
        margin-bottom: 16px;
    }
    
    .form-group-new label {
        font-size: 0.9rem;
        margin-bottom: 6px;
    }
    
    .form-group-new input,
    .form-group-new textarea {
        font-size: 0.9rem;
        padding: 10px 12px;
        border-radius: 8px;
    }
    
    .submit-btn-new {
        font-size: 0.9rem;
        padding: 10px 20px;
        width: 100%;
    }
    
    .icon-container {
        width: 60px;
        height: 60px;
        margin-bottom: 12px;
    }
    
    .form-icon {
        width: 40px;
        height: 40px;
    }
    
    .icon-text h3 {
        font-size: 1.1rem;
        margin-bottom: 8px;
    }
    
    .icon-text p {
        font-size: 0.85rem;
    }
    
    .social-links {
        padding: 40px 16px;
    }
    
    .social-links h2 {
        font-size: 1.3rem;
        margin-bottom: 12px;
    }
    
    .social-links-grid {
        grid-template-columns: 1fr;
        gap: 12px;
    }
    
    .social-link {
        padding: 16px;
        flex-direction: column;
        text-align: center;
        gap: 8px;
    }
    
    .social-icon-new {
        font-size: 1.8rem;
    }
    
    .social-info h3 {
        font-size: 1rem;
    }
    
    .social-info p {
        font-size: 0.85rem;
    }
    
    .contact-faq-new {
        padding: 40px 16px;
    }
    
    .contact-faq-new h2 {
        font-size: 1.3rem;
        margin-bottom: 20px;
    }
    
    .faq-container-new {
        gap: 8px;
    }
    
    .faq-question-new {
        padding: 12px;
    }
    
    .faq-question-new h3 {
        font-size: 0.9rem;
    }
    
    .faq-answer-new {
        padding: 0 12px 12px 12px;
    }
    
    .faq-answer-new p {
        font-size: 0.85rem;
    }
    
    .final-cta {
        padding: 40px 16px;
        margin: 40px 8px;
        border-radius: 16px;
    }
    
    .final-cta h2 {
        font-size: 1.3rem;
        margin-bottom: 12px;
    }
    
    .final-cta p {
        font-size: 0.9rem;
        margin-bottom: 20px;
    }
    
    .cta-buttons {
        flex-direction: column;
        gap: 10px;
        align-items: center;
    }
    
    .cta-btn-primary,
    .cta-btn-secondary {
        width: 100%;
        max-width: 250px;
        font-size: 0.9rem;
        padding: 10px 20px;
    }
    
    .footer {
        padding: 20px 0 8px 0;
    }
    
    .footer-logo {
        height: 32px;
        margin-bottom: 12px;
    }
    
    .footer-content {
        padding: 0 8px;
    }
    
    .footer-links {
        flex-wrap: wrap;
        gap: 12px;
        justify-content: center;
        margin-bottom: 12px;
    }
    
    .footer-links a {
        font-size: 0.8rem;
    }
    
    .footer-contact {
        font-size: 0.8rem;
        margin-bottom: 8px;
    }
    
    .footer p {
        font-size: 0.75rem;
    }
    
    /* Kreatif services grid mobile */
    .kreatif-services-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }
    
    .kreatif-service-card {
        padding: 20px 16px;
    }
    
    .kreatif-service-icon {
        font-size: 2.2rem;
        margin-bottom: 12px;
    }
    
    .kreatif-service-card h3 {
        font-size: 1.1rem;
        margin-bottom: 8px;
    }
    
    .kreatif-service-card p {
        font-size: 0.9rem;
    }
    
    /* CTA buttons mobile */
    .kreatif-cta-btn, .dijital-cta-btn {
        font-size: 0.9rem;
        padding: 10px 20px;
        min-width: 160px;
        min-height: 40px;
    }
    
    /* Brands page mobile */
    .brands-hero h1 {
        font-size: 1.6rem;
    }
    
    .brands-hero p {
        font-size: 0.9rem;
    }
    
    .brands-intro {
        padding: 24px 16px;
        margin: 24px 8px;
    }
    
    .brands-intro h2 {
        font-size: 1.4rem;
        margin-bottom: 12px;
    }
    
    .brands-grid {
        grid-template-columns: 1fr;
        gap: 16px;
        margin: 24px 8px;
    }
    
    .brand-hero-image {
        height: 120px;
        font-size: 2.5rem;
    }
    
    .brand-content {
        padding: 20px 16px;
    }
    
    .brand-content h3 {
        font-size: 1.1rem;
        margin-bottom: 8px;
    }
    
    .brand-content p {
        font-size: 0.9rem;
    }
    
    .brands-cta {
        padding: 24px 16px;
        margin: 24px 8px;
        border-radius: 16px;
    }
    
    .brands-cta h2 {
        font-size: 1.3rem;
        margin-bottom: 12px;
    }
    
    .brands-cta p {
        font-size: 0.9rem;
        margin-bottom: 16px;
    }
    
    .brands-cta .cta-btn {
        font-size: 0.9rem;
        padding: 10px 20px;
    }
} 
.custom-wave-bg, .custom-wave-bg svg { display: none !important; } 
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 16px;
    width: 100%;
}
.slider-section, .services-section, .advantages-section, .partners-section, .cta-section {
    width: 100%;
    box-sizing: border-box;
} 

/* Modern Banner Slider */
.modern-banner-slider {
    position: relative;
    width: 100vw;
    min-height: 540px;
    max-height: 800px;
    overflow: hidden;
    border-radius: 0;
    margin: 0;
    left: 50%;
    transform: translateX(-50%);
    box-shadow: 0 8px 32px #0002;
    background: #000;
}
.modern-banner-slide {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background-size: cover;
    background-position: center;
    opacity: 0;
    transition: opacity 0.7s cubic-bezier(.4,0,.2,1);
    z-index: 1;
    display: flex;
    align-items: center;
    justify-content: center;
}
.modern-banner-slide.active {
    opacity: 1;
    z-index: 2;
    pointer-events: auto;
}
.modern-banner-overlay {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background: rgba(0, 0, 0, 0.4) !important;
    z-index: 2;
    pointer-events: none;
}
.modern-banner-content {
    position: relative;
    z-index: 5;
    text-align: center;
    color: #fff !important;
    opacity: 1 !important;
    filter: none !important;
    max-width: 700px;
    margin: 0 auto;
    padding: 32px 16px;
    pointer-events: auto;
}
/* .modern-banner-content::before ve eski gradient/blur animasyonları kaldırıldı */
.modern-banner-content > * {
    position: relative;
    z-index: 1;
}
.modern-banner-title {
    font-size: 3.2rem;
    font-weight: 900;
    color: #fff !important;
    opacity: 1 !important;
    filter: none !important;
    text-shadow: none !important;
    animation: none !important;
    margin-bottom: 18px;
}
.modern-banner-desc {
    font-size: 1.35rem;
    font-weight: 600;
    color: #fff !important;
    opacity: 1 !important;
    filter: none !important;
    text-shadow: none !important;
    animation: none !important;
    margin-bottom: 48px;
}
.modern-banner-btn {
    background: #ff008a;
    color: #fff;
    font-weight: 800;
    font-size: 1.18rem;
    border: none;
    border-radius: 32px;
    padding: 18px 44px;
    box-shadow: 0 4px 20px rgba(255, 0, 138, 0.3);
    cursor: pointer;
    text-decoration: none;
    transition: all 0.3s ease;
    margin-top: 8px;
    display: inline-block;
    position: relative;
    overflow: hidden;
    z-index: 10;
    pointer-events: auto;
}
.modern-banner-btn:hover {
    background: #ffd200;
    color: #ff008a;
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(255, 0, 138, 0.4);
}
.modern-banner-btn:active {
    transform: translateY(-1px);
    box-shadow: 0 4px 20px rgba(255, 0, 138, 0.3);
}
.modern-banner-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: #fff8;
    color: #ff008a;
    border: none;
    border-radius: 50%;
    width: 44px; height: 44px;
    font-size: 2rem;
    cursor: pointer;
    z-index: 10;
    transition: background 0.18s, color 0.18s;
    box-shadow: 0 2px 8px #0002;
}
.modern-banner-arrow.prev { left: 32px; }
.modern-banner-arrow.next { right: 32px; }
.modern-banner-arrow:hover {
    background: #ff008a;
    color: #fff;
}


@media (max-width: 1024px) {
    .modern-banner-slider { min-height: 320px; max-height: 420px; border-radius: 0 0 18px 18px; }
    .modern-banner-title { font-size: 1.3rem; }
    .modern-banner-desc { font-size: 1rem; }
    .modern-banner-btn { font-size: 1rem; padding: 12px 22px; }
    .modern-banner-arrow { width: 36px; height: 36px; font-size: 1.3rem; }
    .modern-banner-arrow.prev { left: 8px; }
    .modern-banner-arrow.next { right: 8px; }
    
    /* Banner Background Mobile Styles */
    .banner-bg-modern::before {
        width: 120px;
        height: 120px;
    }
    
    .banner-bg-modern::after {
        width: 180px;
        height: 180px;
    }
} 
.bg-animated-wave {
  position: fixed;
  left: 0; right: 0; bottom: 0;
  width: 100vw;
    height: 220px;
  z-index: 0;
  pointer-events: none;
  overflow: hidden;
    animation: waveMove 24s linear infinite alternate;
}
.bg-animated-wave svg {
    width: 100vw;
    height: 220px;
    display: block;
}
@keyframes waveMove {
    0% { transform: translateX(0); }
    100% { transform: translateX(-120px); }
}
.bg-animated-blob { display: none !important; } 
.bg-blobs-animated {
    position: fixed;
    z-index: 0;
    top: 0; left: 0;
    width: 100vw;
    height: 100vh;
    pointer-events: none;
    overflow: hidden;
}
.blob {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.22;
    mix-blend-mode: multiply;
    animation-duration: 24s;
    animation-iteration-count: infinite;
    animation-timing-function: ease-in-out;
}
.blob1 {
    background: #ff008a;
    width: 520px; height: 520px;
    top: -120px; left: -120px;
    animation-name: blobMove1;
}
.blob2 {
    background: #00e6ff;
    width: 420px; height: 420px;
    top: 60px; right: -100px;
    animation-name: blobMove2;
}
.blob3 {
    background: #ffd200;
    width: 380px; height: 380px;
    bottom: -100px; left: 40vw;
    animation-name: blobMove3;
}
@keyframes blobMove1 {
    0% { transform: scale(1) translate(0,0); }
    50% { transform: scale(1.18) translate(80px, 60px); }
    100% { transform: scale(1) translate(0,0); }
}
@keyframes blobMove2 {
    0% { transform: scale(1) translate(0,0); }
    50% { transform: scale(1.12) translate(-60px, 40px); }
    100% { transform: scale(1) translate(0,0); }
}
@keyframes blobMove3 {
    0% { transform: scale(1) translate(0,0); }
    50% { transform: scale(1.15) translate(40px, -60px); }
    100% { transform: scale(1) translate(0,0); }
}
.bg-animated-wave, .bg-animated-blob { display: none !important; } 
.bg-animated-lines {
    position: fixed;
    z-index: 0;
    top: 0; left: 0;
    width: 100vw;
    height: 100vh;
    pointer-events: none;
    overflow: hidden;
    animation: linesMove 40s linear infinite alternate;
}
.bg-animated-lines svg {
    width: 100vw;
    height: 100vh;
    display: block;
}
@keyframes linesMove {
    0% { transform: translateX(0); }
    100% { transform: translateX(-120px); }
}
.bg-blobs-animated, .blob { display: none !important; } 
.bg-animated-dots {
    position: fixed;
    z-index: 0;
    top: 0; left: 0;
    width: 100vw;
    height: 100vh;
    pointer-events: none;
    overflow: hidden;
}
.dots-grid {
    width: 100vw;
    height: 100vh;
    display: grid;
    grid-template-columns: repeat(24, 1fr);
    grid-template-rows: repeat(14, 1fr);
    gap: 0;
}
.dots-grid::before { content: ''; display: none; }
.dots-grid span {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: #e6e6e6;
    opacity: 0.13;
    animation: dotFade 3.5s infinite alternate, dotMove 18s linear infinite alternate;
}
@keyframes dotMove {
    0% { transform: translate(0,0); }
    25% { transform: translate(10px, 8px); }
    50% { transform: translate(-8px, 12px); }
    75% { transform: translate(6px, -10px); }
    100% { transform: translate(0,0); }
}
.dots-grid span:nth-child(3n) { animation-delay: 0.5s, 0s; }
.dots-grid span:nth-child(4n) { animation-delay: 1.2s, 2s; }
.dots-grid span:nth-child(5n) { animation-delay: 2s, 4s; }
@keyframes dotFade {
    0% { opacity: 0.10; }
    50% { opacity: 0.22; }
    100% { opacity: 0.10; }
}
.bg-animated-lines, .bg-animated-wave, .bg-animated-blob, .bg-blobs-animated, .blob { display: none !important; } 
.bg-animated-ring {
    position: fixed;
    z-index: 0;
    top: 50%;
    left: 50%;
    width: 900px;
    height: 900px;
    transform: translate(-50%,-50%);
    pointer-events: none;
    animation: ringRotate 60s linear infinite;
    opacity: 1;
}
.bg-animated-ring svg {
    width: 900px;
    height: 900px;
    display: block;
}
@keyframes ringRotate {
    0% { transform: translate(-50%,-50%) rotate(0deg); }
    100% { transform: translate(-50%,-50%) rotate(360deg); }
}
.bg-animated-dots, .dots-grid, .bg-animated-lines, .bg-animated-wave, .bg-animated-blob, .bg-blobs-animated, .blob { display: none !important; } 
.bg-animated-wire {
    position: fixed;
    left: 0; right: 0; bottom: 0;
    width: 100vw;
    height: 600px;
    z-index: -1;
    pointer-events: none;
    overflow: hidden;
    animation: wireMove 32s linear infinite alternate;
}
.bg-animated-wire svg {
    width: 100vw;
    height: 600px;
    display: block;
}
@keyframes wireMove {
    0% { transform: translateY(0); }
    100% { transform: translateY(-60px); }
}
.bg-animated-ring, .bg-animated-dots, .dots-grid, .bg-animated-lines, .bg-animated-wave, .bg-animated-blob, .bg-blobs-animated, .blob { display: none !important; } 
#preloader {
    position: fixed;
    z-index: 9999;
    top: 0; left: 0;
    width: 100vw;
    height: 100vh;
    background: linear-gradient(135deg, #fff 0%, #f8f8ff 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: opacity 0.6s;
}
#preloader img {
    width: 140px;
    height: auto;
    animation: preloaderPop 1.2s cubic-bezier(.68,-0.55,.27,1.55) infinite alternate;
    display: block;
    filter: drop-shadow(0 4px 12px rgba(255, 0, 138, 0.2));
}
@keyframes preloaderPop {
    0% { transform: scale(0.8); opacity: 0.7; }
    60% { transform: scale(1.12); opacity: 1; }
    100% { transform: scale(1); opacity: 0.85; }
}
body.loaded #preloader {
    opacity: 0;
    pointer-events: none;
} 
.modern-hero {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 40px;
    background: none;
    color: #222;
    padding: 64px 0 48px 0;
}
.hero-left {
    flex: 1 1 480px;
    max-width: 700px;
}
.hero-title {
    font-size: 3.2rem;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 18px;
    color: #222;
}
.hero-underline {
    margin-bottom: 18px;
}
.hero-desc {
    font-size: 1.15rem;
    color: #222;
    font-weight: 400;
    margin-bottom: 32px;
}
.hero-btn {
    display: inline-block;
    background: #ff008a;
    color: #fff;
    font-weight: 600;
    font-size: 1.18rem;
    padding: 16px 44px;
    border-radius: 32px;
    text-decoration: none;
    margin-top: 10px;
    box-shadow: 0 4px 18px #ff008a22;
    transition: background 0.18s, color 0.18s;
}
.hero-btn:hover {
    background: #ffd200;
    color: #222;
}
.hero-right {
    flex: 1 1 400px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.hero-image-card {
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    position: relative;
    background: transparent;
    border-radius: 18px;
    box-shadow: 0 1px 6px #0001;
    border: none;
    padding: 24px 24px 48px 24px;
    min-width: 340px;
    max-width: 380px;
}
.hero-badges {
    display: flex;
    flex-direction: column;
    min-width: 170px;
    align-items: flex-end;
    margin-right: 18px;
    gap: 12px;
}
.hero-badge {
    margin: 0 0 12px 0;
    position: static;
}
.hero-img {
    margin: 0;
}
.hero-social {
    width: 100%;
    display: flex;
    justify-content: center;
    margin-top: 18px;
}
.hero-illustration {
    width: 120px;
    height: 120px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #ff008a22 0%, #ffd20022 100%);
    border-radius: 50%;
    margin: 0 18px;
    font-size: 4.2rem;
    color: #222;
    box-shadow: 0 2px 12px #ffd20022;
}
@media (max-width: 1024px) {
  .hero-image-card { 
    display: none !important;
  }
  .hero-left {
    text-align: center !important;
    width: 100% !important;
    max-width: 600px !important;
    margin: 0 auto !important;
    padding: 0 20px !important;
  }
  .modern-hero {
    flex-direction: column !important;
    align-items: center !important;
    justify-content: center !important;
    min-height: 60vh !important;
  }
  .hero-badges { flex-direction: row; min-width: 0; margin-right: 0; gap: 8px; margin-bottom: 8px; }
} 
.gg-advantages {
    background: none;
    padding: 24px 0 16px 0;
    text-align: center;
}
.gg-adv-title {
    font-size: 2.6rem;
    font-weight: 700;
    color: #222;
    margin-bottom: 20px;
}
.gg-adv-title span {
    color: #ff008a;
    font-weight: 800;
}
.gg-adv-cards {
    display: flex;
    gap: 20px;
    justify-content: center;
    align-items: stretch;
    max-width: 1200px;
    margin: 0 auto;
}
.gg-adv-card {
    background: linear-gradient(135deg, #fff 60%, #f8f8ff 100%);
    border-radius: 28px;
    box-shadow: 0 4px 32px #a259ff11;
    padding: 24px 20px 20px 20px;
    flex: 1 1 320px;
    min-width: 280px;
    max-width: 370px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    text-align: left;
    transition: box-shadow 0.18s, transform 0.18s;
}
.gg-adv-card:hover {
    box-shadow: 0 8px 40px #ff008a22, 0 2px 12px #ffd20022;
    transform: translateY(-6px) scale(1.03);
}
.gg-adv-icon {
    font-size: 2.6rem;
    margin-bottom: 18px;
}
.gg-adv-content h3 {
    font-size: 1.18rem;
    font-weight: 700;
    margin-bottom: 10px;
    color: #222;
}
.gg-adv-content p {
    font-size: 1.01rem;
    color: #444;
}
@media (max-width: 1024px) {
    .gg-adv-cards { flex-direction: column; gap: 12px; align-items: center; }
    .gg-adv-card { max-width: 95vw; min-width: 0; }
    .gg-adv-title { font-size: 1.3rem; }
} 
.services-carousel-wrapper {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    overflow: hidden;
}
.services-carousel {
    display: flex;
    flex-wrap: nowrap;
    overflow-x: auto;
    scroll-behavior: smooth;
    gap: 24px;
    padding: 0;
    width: 100vw;
    box-sizing: border-box;
    margin: 0 auto;
    max-width: 100vw;
}
.service-card:first-child {
    margin-left: 0 !important;
}
/* .services-scrollbar ve .services-scrollbar-bar ile ilgili kod kaldırıldı */
.services-carousel::-webkit-scrollbar {
    display: none;
}
@media (max-width: 1024px) {
    .service-card {
        min-width: 85vw;
        max-width: 85vw;
        flex: 0 0 85vw;
    }
    .services-carousel {
        padding: 0;
    }
    .service-card:first-child {
        margin-left: 0 !important;
    }
} 
.gg-solutions {
    background: transparent;
    color: #222;
    padding: 32px 0 32px 0;
    text-align: center;
    overflow: hidden;
}
.gg-sol-title {
    font-size: 2.8rem;
    font-weight: 700;
    color: #222;
    margin-bottom: 12px;
}
.gg-sol-title span {
    color: #ff008a;
    font-weight: 800;
}
.gg-sol-desc {
    color: #222;
    font-size: 1.1rem;
    margin-bottom: 38px;
}
.gg-sol-cards {
    display: flex;
    gap: 20px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    justify-content: center;
    align-items: stretch;
}




.gg-sol-card {
    background: #fff;
    border-radius: 28px;
    box-shadow: none;
    padding: 32px 28px 28px 28px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    text-align: left;
    transition: box-shadow 0.18s, transform 0.18s, border 0.18s;
    border: 2px solid rgba(0,0,0,0.07);
    color: #222;
    position: relative;
    flex: 1;
    min-width: 0;
}
.gg-sol-card:hover {
    box-shadow: 0 8px 40px #00e6ff22, 0 2px 12px #ffd20022;
    border: 2px solid #00e6ff;
    transform: translateY(-8px) scale(1.02);
    z-index: 2;
}
.gg-sol-icon {
    font-size: 2.4rem;
    margin-bottom: 16px;
}
.gg-sol-card h3 {
    font-size: 1.15rem;
    font-weight: 700;
    margin-bottom: 8px;
    color: #ffd200;
    text-align: left;
}
.gg-sol-card p {
    font-size: 0.98rem;
    color: #222;
    text-align: left;
    line-height: 1.4;
}
.gg-sol-btn {
    margin-top: 18px;
    background: #ff008a;
    color: #fff;
    border-radius: 24px;
    padding: 10px 28px;
    font-weight: 600;
    font-size: 1rem;
    text-decoration: none;
    transition: background 0.18s, color 0.18s, border-color 0.15s;
    text-decoration: none;
    margin-top: auto;
}
.solution-btn:hover {
    background: #e6005a;
    color: #fff;
    border-color: #e6005a;
}
@media (max-width: 1024px) {
    .gg-sol-cards { 
        flex-direction: column; 
        gap: 20px; 
        padding: 0 16px;
    }
    .gg-sol-card { 
        padding: 28px 24px 24px 24px;
    }
    .gg-sol-title { font-size: 1.3rem; }
} 
.hero-title, .modern-banner-title, .banner-slogan {
  font-size: 1.85rem !important;
}
.highlight, .vurgulu {
  font-size: 1.15rem !important;
}
.faq-section {
    background: transparent;
    padding: 32px 0 32px 0;
    text-align: center;
}
.faq-title {
    font-size: 2.5rem;
    font-weight: 800;
    color: #222;
    margin-bottom: 10px;
}
.faq-title span {
    color: #ff008a;
}
.faq-desc {
    color: #222;
    font-size: 1.1rem;
    margin-bottom: 38px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}
.faq-list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
    justify-content: start;
    max-width: 1400px;
    margin: 0 auto;
    justify-items: start;
}
.faq-item {
    background: #fff;
    border-radius: 18px;
    box-shadow: 0 2px 16px #0001;
    border: 2px solid rgba(0,0,0,0.07);
    min-width: 340px;
    max-width: 600px;
    text-align: left;
    transition: border 0.18s, box-shadow 0.18s;
    margin-bottom: 0;
    position: relative;
    height: fit-content;
}
.faq-item.active, .faq-item:hover {
    border: 2px solid #ff008a;
    box-shadow: 0 4px 32px #ff008a11;
    z-index: 2;
}
.faq-question {
    width: 100%;
    background: none;
    border: none;
    outline: none;
    font-size: 1.25rem;
    font-weight: 600;
    color: #222;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 28px 32px;
    border-radius: 18px;
    cursor: pointer;
    transition: background 0.18s;
    text-align: left;
}
.faq-toggle {
    font-size: 1.7rem;
    color: #ff008a;
    margin-left: 18px;
    transition: transform 0.3s;
}
.faq-item.active .faq-toggle {
    transform: rotate(180deg);
}
.faq-answer {
    max-height: 0;
    overflow: hidden;
    padding: 0 32px;
    color: #222;
    font-size: 1.08rem;
    transition: max-height 0.3s, padding 0.3s;
    text-align: left;
}
.faq-item.active .faq-answer {
    max-height: 300px;
    padding: 18px 32px 28px 32px;
}
@media (max-width: 1024px) {
    .faq-list { 
        grid-template-columns: 1fr;
        gap: 16px;
    }
    .faq-item { min-width: 0; max-width: 98vw; }
    .faq-question { font-size: 1.05rem; padding: 20px 16px; }
    .faq-answer { font-size: 0.98rem; padding: 0 16px; }
    .faq-item.active .faq-answer { padding: 12px 16px 20px 16px; }
    .faq-title { font-size: 1.3rem; }
} 
@keyframes bannerFadeIn {
    0% { opacity: 0; transform: translateY(40px) scale(0.98); }
    100% { opacity: 1; transform: translateY(0) scale(1); }
}
.modern-banner-content .modern-banner-title,
.modern-banner-content .modern-banner-desc {
    opacity: 0;
    transform: translateY(40px) scale(0.98);
    transition: none;
}
.modern-banner-content.show .modern-banner-title {
    animation: bannerFadeIn 0.9s cubic-bezier(.68,-0.55,.27,1.55) 0.1s both;
}
.modern-banner-content.show .modern-banner-desc {
    animation: bannerFadeIn 1.1s cubic-bezier(.68,-0.55,.27,1.55) 0.3s both;
} 
@keyframes heroFadeIn {
    0% { opacity: 0; transform: translateY(-40px); }
    100% { opacity: 1; transform: translateY(0); }
}
.modern-hero .hero-animate {
    opacity: 0;
    transform: translateY(-40px);
    transition: none;
}
.modern-hero.animate .hero-animate {
    animation: heroFadeIn 0.9s cubic-bezier(.68,-0.55,.27,1.55) both;
    opacity: 1;
    transform: none;
} 
@keyframes advFadeLeft {
    0% { opacity: 0; transform: translateX(-60px); }
    100% { opacity: 1; transform: translateX(0); }
}
@keyframes advFadeRight {
    0% { opacity: 0; transform: translateX(60px); }
    100% { opacity: 1; transform: translateX(0); }
}
@keyframes advFadeUp {
    0% { opacity: 0; transform: translateY(40px); }
    100% { opacity: 1; transform: translateY(0); }
}
.advantages-section .adv-animate {
    opacity: 0;
    transition: none;
}
.advantages-section.animate .adv-animate-left {
    animation: advFadeLeft 0.9s cubic-bezier(.68,-0.55,.27,1.55) both;
}
.advantages-section.animate .adv-animate-right {
    animation: advFadeRight 0.9s cubic-bezier(.68,-0.55,.27,1.55) both;
}
.advantages-section.animate .adv-animate-up {
    animation: advFadeUp 0.9s cubic-bezier(.68,-0.55,.27,1.55) both;
} 
.gg-advantages .adv-animate {
    opacity: 0;
    transition: none;
}
.gg-advantages.animate .adv-animate-left {
    animation: advFadeLeft 0.9s cubic-bezier(.68,-0.55,.27,1.55) both;
    opacity: 1;
    transform: none;
}
.gg-advantages.animate .adv-animate-right {
    animation: advFadeRight 0.9s cubic-bezier(.68,-0.55,.27,1.55) both;
    opacity: 1;
    transform: none;
}
.gg-advantages.animate .adv-animate-up {
    animation: advFadeUp 0.9s cubic-bezier(.68,-0.55,.27,1.55) both;
    opacity: 1;
    transform: none;
} 
@keyframes solCardIn {
    0% { opacity: 0; transform: translateY(60px) scale(0.96); }
    100% { opacity: 1; transform: translateY(0) scale(1); }
}
.gg-sol-card {
    opacity: 0;
    transform: translateY(60px) scale(0.96);
    transition: none;
}
.gg-solutions.animate .gg-sol-card {
    animation: solCardIn 0.7s cubic-bezier(.68,-0.55,.27,1.55) forwards;
}
.gg-solutions.animate .gg-sol-card:nth-child(1) { animation-delay: 0.05s; }
.gg-solutions.animate .gg-sol-card:nth-child(2) { animation-delay: 0.18s; }
.gg-solutions.animate .gg-sol-card:nth-child(3) { animation-delay: 0.31s; }
.gg-solutions.animate .gg-sol-card:nth-child(4) { animation-delay: 0.44s; } 
.banner-svg-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
    pointer-events: none;
} 
.banner-bg-modern {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 95%;
    height: 95%;
    background: linear-gradient(120deg, #ff008acc 0%, #00a2e8cc 50%, #ff008acc 100%);
    border-radius: 32px;
    z-index: 0;
    pointer-events: none;
    box-shadow: 0 8px 48px 0 #0002;
    overflow: hidden;
    animation: bannerPulse 4s ease-in-out infinite;
}

.banner-bg-modern::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 200px;
    height: 200px;
    background: url('img/icon.png') no-repeat center center;
    background-size: contain;
    opacity: 0.25;
    animation: bannerIconFloat 6s ease-in-out infinite;
    z-index: 1;
}

.banner-bg-modern::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
    border-radius: 50%;
    animation: bannerGlow 4s ease-in-out infinite;
    z-index: 0;
} 

/* Hizmetlerimiz Sayfası Stilleri */

/* Services Hero Section */
.services-hero {
    background: linear-gradient(135deg, rgba(230, 0, 90, 0.9) 0%, rgba(0, 162, 232, 0.8) 100%);
    background-size: 400% 400%;
    padding: 80px 0 60px 0;
    text-align: center;
    color: #fff;
    margin-bottom: 60px;
    border-radius: 0 0 32px 32px;
    position: relative;
    overflow: hidden;
    animation: gradientShift 15s ease-in-out infinite;
}

.services-hero::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="50" cy="50" r="1" fill="white" opacity="0.1"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
    opacity: 0.3;
}

@keyframes gradientShift {
    0% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
    100% {
        background-position: 0% 50%;
    }
}

@keyframes gradientFlow {
    0% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
    100% {
        background-position: 0% 50%;
    }
}

/* Banner Background Animations */
@keyframes bannerPulse {
    0%, 100% {
        transform: translate(-50%, -50%) scale(1);
        box-shadow: 0 8px 48px 0 #0002;
    }
    50% {
        transform: translate(-50%, -50%) scale(1.05);
        box-shadow: 0 12px 64px 0 #0003;
    }
}

@keyframes bannerIconFloat {
    0%, 100% {
        transform: translate(-50%, -50%) scale(1) rotate(0deg);
        opacity: 0.25;
    }
    25% {
        transform: translate(-50%, -50%) scale(1.08) rotate(3deg);
        opacity: 0.35;
    }
    50% {
        transform: translate(-50%, -50%) scale(0.95) rotate(-2deg);
        opacity: 0.3;
    }
    75% {
        transform: translate(-50%, -50%) scale(1.03) rotate(1deg);
        opacity: 0.4;
    }
}

@keyframes bannerGlow {
    0%, 100% {
        opacity: 0.2;
        transform: translate(-50%, -50%) scale(1);
    }
    50% {
        opacity: 0.5;
        transform: translate(-50%, -50%) scale(1.15);
    }
}

@keyframes cardFadeInUp {
    0% {
        opacity: 0;
        transform: translateY(40px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

.services-hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    margin: 0 auto;
    padding: 0 20px;
}

.services-hero-title {
    font-size: 3.5rem;
    font-weight: 900;
    margin-bottom: 20px;
    text-shadow: 0 4px 20px rgba(0,0,0,0.2);
    animation: fadeInUp 1s ease-out forwards;
    opacity: 0;
    transform: translateY(30px);
}

.services-hero-desc {
    font-size: 1.3rem;
    margin-bottom: 40px;
    opacity: 0.95;
    font-weight: 500;
    animation: fadeInUp 1.2s ease-out 0.3s forwards;
    opacity: 0;
    transform: translateY(25px);
}

.services-hero-stats {
    display: flex;
    justify-content: center;
    gap: 60px;
    flex-wrap: wrap;
}

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

.stat-item:nth-child(1) .stat-number {
    animation-delay: 0.2s;
}

.stat-item:nth-child(2) .stat-number {
    animation-delay: 0.6s;
}

.stat-item:nth-child(3) .stat-number {
    animation-delay: 1s;
}

.stat-item:nth-child(1) .stat-label {
    animation-delay: 0.7s;
}

.stat-item:nth-child(2) .stat-label {
    animation-delay: 1.1s;
}

.stat-item:nth-child(3) .stat-label {
    animation-delay: 1.5s;
}

.stat-number {
    display: block;
    font-size: 2.5rem;
    font-weight: 900;
    margin-bottom: 8px;
    text-shadow: 0 2px 10px rgba(0,0,0,0.2);
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 1s ease-out forwards;
}

.stat-label {
    font-size: 1rem;
    opacity: 0.9;
    font-weight: 500;
    animation: fadeInUp 1.5s ease-out 0.5s forwards;
    opacity: 0;
    transform: translateY(15px);
}

/* Main Services Section */
.main-services {
    padding: 60px 0;
}

.main-services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 28px;
    margin-top: 40px;
}

.main-service-card {
    background: #fff;
    border-radius: 24px;
    padding: 40px 32px;
    box-shadow: 0 4px 24px rgba(0,0,0,0.08);
    border: 2px solid transparent;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    opacity: 0;
    transform: translateY(40px);
}

.main-service-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; height: 4px;
    background: linear-gradient(90deg, #e6005a, #00a2e8);
    background-size: 200% 100%;
    transform: scaleX(0);
    transition: transform 0.3s ease;
    animation: gradientFlow 6s ease-in-out infinite;
}

.main-service-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 40px rgba(255,0,138,0.15);
    border-color: #ff008a;
}

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

.service-icon-large {
    font-size: 3rem;
    margin-bottom: 20px;
    display: block;
}

.main-service-card h3 {
    font-size: 1.4rem;
    font-weight: 700;
    color: #222;
    margin-bottom: 16px;
}

.main-service-card p {
    color: #666;
    line-height: 1.6;
    margin-bottom: 24px;
}

.service-features {
    list-style: none;
    margin-bottom: 32px;
}

.service-features li {
    padding: 8px 0;
    color: #555;
    position: relative;
    padding-left: 24px;
}

.service-features li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #ff008a;
    font-weight: bold;
}

.service-btn {
    display: inline-block;
    background: linear-gradient(135deg, #e6005a, #00a2e8);
    background-size: 200% 200%;
    color: #fff;
    padding: 12px 28px;
    border-radius: 24px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 4px 16px rgba(230,0,90,0.3);
    animation: gradientShift 8s ease-in-out infinite;
}

.service-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(255,0,138,0.4);
}

/* Process Section */
.process-section {
    background: linear-gradient(135deg, #f8f9ff 0%, #fff 100%);
    padding: 80px 0;
    margin: 60px 0;
    position: relative;
}

.process-section::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: #fff;
    pointer-events: none;
    z-index: 0;
}

.process-section .section-title,
.process-section .section-desc {
    position: relative;
    z-index: 1;
}

.process-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-top: 50px;
    position: relative;
    z-index: 1;
}

.process-step {
    text-align: center;
    padding: 40px 20px;
    background: #fff;
    border-radius: 20px;
    box-shadow: 0 8px 32px rgba(0,0,0,0.08);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    border: 2px solid transparent;
    transform: translateY(0);
    z-index: 2;
    opacity: 0;
    transform: translateY(30px);
}

.process-step:hover {
    transform: translateY(-12px) scale(1.02);
    box-shadow: 0 20px 60px rgba(0,0,0,0.15);
    border-color: rgba(0,0,0,0.1);
    z-index: 20;
}

.process-step:hover {
    transform: translateY(-12px) scale(1.02);
    box-shadow: 0 20px 60px rgba(0,0,0,0.15), 0 8px 32px rgba(230,0,90,0.2);
    border-color: rgba(230,0,90,0.2);
}

.step-number {
    width: 60px;
    height: 60px;
    background: #e6005a;
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 900;
    margin: 0 auto 20px;
    box-shadow: 0 8px 24px rgba(0,0,0,0.15);
    transition: all 0.3s ease;
}

.process-step:hover .step-number {
    box-shadow: 0 12px 32px rgba(0,0,0,0.2);
    transform: scale(1.1);
}

.process-step h3 {
    font-size: 1.3rem;
    font-weight: 700;
    color: #222;
    margin-bottom: 16px;
}

.process-step p {
    color: #666;
    line-height: 1.6;
}

/* Why Choose Us Section */
.why-choose-us {
    padding: 60px 0;
}

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

.why-card {
    text-align: center;
    padding: 40px 24px;
    background: #fff;
    border-radius: 20px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.06);
    transition: all 0.3s ease;
    border: 2px solid transparent;
    opacity: 0;
    transform: translateY(35px);
}

.why-card:hover {
    transform: translateY(-5px);
    border-color: #ff008a;
    box-shadow: 0 8px 30px rgba(255,0,138,0.15);
}

.why-icon {
    font-size: 3rem;
    margin-bottom: 20px;
    display: block;
}

.why-card h3 {
    font-size: 1.3rem;
    font-weight: 700;
    color: #222;
    margin-bottom: 16px;
}

.why-card p {
    color: #666;
    line-height: 1.6;
}

/* Services CTA Section */
.services-cta {
    background: linear-gradient(90deg, #e6005a 60%, #ffd200 100%);
    border-radius: 32px;
    box-shadow: 0 2px 16px rgba(230,0,90,0.09);
    margin: 96px auto 64px auto;
    max-width: 900px;
    padding: 56px 32px 48px 32px;
    position: relative;
    overflow: visible;
    text-align: center;
}

.services-cta::after {
    content: '';
    position: absolute;
    right: -60px;
    top: -60px;
    width: 180px;
    height: 180px;
    background: radial-gradient(circle at 40% 40%, #ffd200cc 60%, #e6005a00 100%);
    border-radius: 50%;
    z-index: 0;
    pointer-events: none;
    opacity: 0.5;
}

.services-cta h2, .services-cta .cta-btn { position: relative; z-index: 1; }

.services-cta h2 {
    color: #fff;
    font-size: 2.2rem;
    margin-bottom: 28px;
    letter-spacing: 1px;
    text-shadow: 0 2px 12px #222;
    animation: fadeInUp 1.2s;
    font-weight: bold;
}

.services-cta p {
    color: #fff;
    font-size: 1.1rem;
    margin-bottom: 32px;
    opacity: 0.95;
    position: relative;
    z-index: 1;
}

.services-cta .cta-btn {
    font-size: 1.25rem;
    padding: 18px 44px;
    border-radius: 32px;
    font-weight: bold;
    letter-spacing: 1px;
    box-shadow: 0 4px 18px rgba(230,0,90,0.13);
    cursor: pointer;
    border: none;
    background: #fff;
    color: #e6005a;
    transition: background 0.2s, color 0.2s, transform 0.2s;
    animation: fadeInUp 1.5s;
    margin-top: 10px;
    text-decoration: none;
    display: inline-block;
}

.services-cta .cta-btn:hover {
    background: #ffd200;
    color: #e6005a;
    transform: scale(1.06);
}

.services-cta .cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    margin-top: 30px;
}

.services-cta .cta-buttons .cta-btn {
    min-width: 200px;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .services-hero-title {
        font-size: 2.5rem;
    }
    
    .services-hero-desc {
        font-size: 1.1rem;
    }
    
    .services-hero-stats {
        gap: 30px;
    }
    
    .stat-number {
        font-size: 2rem;
    }
    
    .main-services-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }
    
    .main-service-card {
        padding: 32px 24px;
    }
    
    .process-steps {
        grid-template-columns: 1fr;
        gap: 24px;
    }
    
    .why-cards {
        grid-template-columns: 1fr;
        gap: 24px;
    }
    
    .services-cta {
        padding: 60px 20px;
        margin: 40px 0;
    }
    
    .services-cta h2 {
        font-size: 2rem;
    }
    
    .services-cta p {
        font-size: 1.1rem;
    }
    
    .services-cta .cta-buttons {
        flex-direction: column;
        gap: 15px;
    }
    
    .services-cta .cta-buttons .cta-btn {
        min-width: 180px;
    }
}

@media (max-width: 600px) {
    .services-hero {
        padding: 60px 0 40px 0;
    }
    
    .services-hero-title {
        font-size: 2rem;
    }
    
    .services-hero-stats {
        flex-direction: column;
        gap: 20px;
    }
    
    .main-service-card {
        padding: 24px 20px;
    }
    
    .service-icon-large {
        font-size: 2.5rem;
    }
    
    .main-service-card h3 {
        font-size: 1.2rem;
    }
    
    .services-cta .cta-buttons {
        gap: 12px;
    }
    
    .services-cta .cta-buttons .cta-btn {
        min-width: 160px;
        font-size: 0.95rem;
        padding: 14px 20px;
    }
} 

/* Referanslarımız Sayfası Stilleri */

/* Reference Categories */
.reference-categories {
    padding: 60px 0;
    text-align: center;
}

.category-tabs {
    display: flex;
    justify-content: center;
    gap: 16px;
    margin-top: 40px;
    flex-wrap: wrap;
}

.category-tab {
    background: #fff;
    border: 2px solid #e6005a;
    color: #e6005a;
    padding: 12px 24px;
    border-radius: 24px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 1rem;
}

.category-tab:hover,
.category-tab.active {
    background: #e6005a;
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 4px 16px rgba(230,0,90,0.3);
}

/* References Grid */
.references-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 24px;
    margin: 60px 0 60px 0;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}

.reference-card {
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 2px 12px 0 rgba(0,0,0,0.06);
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 20px 16px 16px 16px;
    transition: transform 0.18s cubic-bezier(.4,2,.6,1), box-shadow 0.18s;
    opacity: 0;
    transform: scale(0.85);
    min-height: 160px;
}
.reference-card.animate {
  animation: cardPopIn 0.7s cubic-bezier(.4,2,.6,1) forwards;
}
@keyframes cardPopIn {
  0% {
    opacity: 0;
    transform: scale(0.85);
  }
  80% {
    opacity: 1;
    transform: scale(1.04);
  }
  100% {
    opacity: 1;
    transform: scale(1);
  }
}
.reference-card:hover {
  transform: scale(1.04);
  box-shadow: 0 6px 24px 0 rgba(0,0,0,0.10);
}
.reference-logo {
  width: 100%;
  height: 140px;
  object-fit: contain;
  border-radius: 8px;
  margin-bottom: 0;
  padding: 4px;
}
.reference-card h3 {
  display: none;
}
@keyframes simpleFadeInUp {
  to {
    opacity: 1;
    transform: none;
  }
}
@media (max-width: 600px) {
  .references-grid {
    gap: 18px;
  }
  .reference-card {
    padding: 16px 8px 12px 8px;
    min-height: 140px;
  }
  .reference-logo {
    height: 120px;
    padding: 3px;
  }
  .reference-card h3 {
    font-size: 1rem;
  }
  
  /* Partners Carousel Small Mobile */
  .partners-carousel {
    padding: 12px 0;
  }
  
  .partners-track {
    animation-duration: 15s;
  }
  
  .partner-logo {
    min-width: 140px;
    max-width: 140px;
    height: 70px;
    padding: 12px 16px;
    margin: 0 10px;
  }
}

.testimonials-section {
    background: #fff;
    padding: 80px 0;
    margin: 60px 0;
}

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

.testimonial-card {
    background: #fff;
    border-radius: 20px;
    padding: 32px;
    box-shadow: 0 8px 32px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
    opacity: 0;
    transform: translateY(30px);
}

.testimonial-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 16px 48px rgba(0,0,0,0.12);
}

.testimonial-content {
    margin-bottom: 24px;
}

.testimonial-content p {
    font-size: 1.1rem;
    color: #444;
    line-height: 1.6;
    font-style: italic;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 16px;
}

.author-avatar {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #e6005a, #00a2e8);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: #fff;
}

.author-info h4 {
    font-size: 1.1rem;
    font-weight: 700;
    color: #222;
    margin-bottom: 4px;
}

.author-info span {
    font-size: 0.9rem;
    color: #666;
}

/* References CTA Section */
.references-cta {
    background: linear-gradient(90deg, #e6005a 60%, #ffd200 100%);
    border-radius: 32px;
    box-shadow: 0 2px 16px rgba(230,0,90,0.09);
    margin: 96px auto 64px auto;
    max-width: 900px;
    padding: 56px 32px 48px 32px;
    position: relative;
    overflow: visible;
    text-align: center;
}

.references-cta::after {
    content: '';
    position: absolute;
    right: -60px;
    top: -60px;
    width: 180px;
    height: 180px;
    background: radial-gradient(circle at 40% 40%, #ffd200cc 60%, #e6005a00 100%);
    border-radius: 50%;
    z-index: 0;
    pointer-events: none;
    opacity: 0.5;
}

.references-cta h2, .references-cta .cta-btn { position: relative; z-index: 1; }

.references-cta h2 {
    color: #fff;
    font-size: 2.2rem;
    margin-bottom: 28px;
    letter-spacing: 1px;
    text-shadow: 0 2px 12px #222;
    animation: fadeInUp 1.2s;
    font-weight: bold;
}

.references-cta p {
    color: #fff;
    font-size: 1.1rem;
    margin-bottom: 32px;
    opacity: 0.95;
    position: relative;
    z-index: 1;
}

.references-cta .cta-btn {
    font-size: 1.25rem;
    padding: 18px 44px;
    border-radius: 32px;
    font-weight: bold;
    letter-spacing: 1px;
    box-shadow: 0 4px 18px rgba(230,0,90,0.13);
    cursor: pointer;
    border: none;
    background: #fff;
    color: #e6005a;
    transition: background 0.2s, color 0.2s, transform 0.2s;
    animation: fadeInUp 1.5s;
    margin-top: 10px;
    text-decoration: none;
    display: inline-block;
}

.references-cta .cta-btn:hover {
    background: #ffd200;
    color: #e6005a;
    transform: scale(1.06);
}

/* Responsive Design */
@media (max-width: 1024px) {
    .references-hero-title {
        font-size: 2.5rem;
    }
    
    .references-hero-desc {
        font-size: 1.1rem;
    }
    
    .references-hero-stats {
        gap: 30px;
    }
    
    .ref-stat-number {
        font-size: 2rem;
    }
    
    .references-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 16px;
        max-width: 100%;
        margin: 40px 16px;
    }
    
    .reference-card {
        padding: 12px 8px 8px 8px;
    }
    
    .testimonials-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }
    
    .category-tabs {
        gap: 12px;
    }
    
    .category-tab {
        padding: 10px 20px;
        font-size: 0.9rem;
    }
    
    .references-cta {
        padding: 60px 20px;
        margin: 40px 0;
    }
    
    .references-cta h2 {
        font-size: 2rem;
    }
    
    .references-cta p {
        font-size: 1.1rem;
    }
}

@media (max-width: 600px) {
    .references-hero {
        padding: 60px 0 40px 0;
    }
    
    .references-hero-title {
        font-size: 2rem;
    }
    
    .references-hero-stats {
        flex-direction: column;
        gap: 20px;
    }
    
    .references-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
        margin: 30px 12px;
    }
    
    .reference-card {
        padding: 8px 6px 6px 6px;
    }
    
    .reference-logo {
        height: 80px;
    }
    
    .testimonial-card {
        padding: 24px 20px;
    }
} 

/* Hakkımızda Sayfası Stilleri */

/* About Story Section */
.about-story {
    padding: 80px 0;
    background: #fff;
}

.about-story-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.about-story-text {
    padding-right: 40px;
}

.about-story-text .section-title {
    margin-bottom: 24px;
    color: #222;
}

.about-story-text .section-desc {
    margin-bottom: 20px;
    line-height: 1.7;
    color: #666;
}

.about-story-image {
    display: flex;
    justify-content: center;
    align-items: center;
}

.story-image-placeholder {
    width: 350px;
    height: 350px;
    background: linear-gradient(135deg, rgba(230,0,90,0.1) 0%, rgba(0,162,232,0.1) 100%);
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    border: 3px solid rgba(230,0,90,0.2);
    position: relative;
    overflow: hidden;
}

.story-image-placeholder::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: 
        radial-gradient(circle at 20% 20%, rgba(230,0,90,0.2) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(0,162,232,0.2) 0%, transparent 50%),
        radial-gradient(circle at 40% 60%, rgba(230,0,90,0.15) 0%, transparent 50%),
        radial-gradient(circle at 60% 40%, rgba(0,162,232,0.15) 0%, transparent 50%);
    animation: fluidMove 8s ease-in-out infinite;
}

.story-image-placeholder::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        conic-gradient(from 0deg, transparent 0deg, rgba(230,0,90,0.1) 90deg, transparent 180deg, rgba(0,162,232,0.1) 270deg, transparent 360deg);
    animation: fluidRotate 12s linear infinite;
    border-radius: 50%;
}

.story-logo {
    width: 220px;
    height: auto;
    position: relative;
    z-index: 4;
    filter: drop-shadow(0 12px 32px rgba(230,0,90,0.4));
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border-radius: 20px;
    padding: 20px;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    border: 2px solid rgba(230, 0, 90, 0.2);
}

.story-image-placeholder:hover .story-logo {
    transform: scale(1.1) rotate(2deg);
    filter: drop-shadow(0 20px 40px rgba(230,0,90,0.6));
    background: rgba(255, 255, 255, 0.95);
    border-color: rgba(230, 0, 90, 0.4);
    box-shadow: 0 8px 32px rgba(230, 0, 90, 0.2);
}

.story-image-placeholder:hover::before {
    animation: fluidMove 4s ease-in-out infinite;
}

.story-image-placeholder:hover::after {
    animation: fluidRotate 6s linear infinite;
}



/* Mission Vision Section */
.mission-vision {
    padding: 80px 0;
    background: linear-gradient(135deg, #f8f9ff 0%, #fff 100%);
}

.mission-vision-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.mission-card,
.vision-card {
    background: #fff;
    border-radius: 24px;
    padding: 40px;
    box-shadow: 0 8px 32px rgba(0,0,0,0.08);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border: 2px solid transparent;
    opacity: 0;
    transform: translateY(40px);
    position: relative;
    overflow: hidden;
}

.mission-card::before,
.vision-card::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: conic-gradient(
        from 0deg,
        transparent 0deg,
        rgba(230, 0, 90, 0.3) 30deg,
        rgba(0, 162, 232, 0.3) 60deg,
        rgba(230, 0, 90, 0.3) 90deg,
        rgba(0, 162, 232, 0.3) 120deg,
        rgba(230, 0, 90, 0.3) 150deg,
        rgba(0, 162, 232, 0.3) 180deg,
        rgba(230, 0, 90, 0.3) 210deg,
        rgba(0, 162, 232, 0.3) 240deg,
        rgba(230, 0, 90, 0.3) 270deg,
        rgba(0, 162, 232, 0.3) 300deg,
        transparent 330deg,
        transparent 360deg
    );
    animation: rotateLight 6s linear infinite;
    z-index: 0;
}

.mission-card::after,
.vision-card::after {
    content: '';
    position: absolute;
    inset: 2px;
    background: #fff;
    border-radius: 22px;
    z-index: 1;
}

.mission-card:hover,
.vision-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 60px rgba(0,0,0,0.15), 0 0 30px rgba(230,0,90,0.3);
    border-color: rgba(230,0,90,0.4);
}

.mission-card:hover::before,
.vision-card:hover::before {
    animation: rotateLight 3s linear infinite;
    background: conic-gradient(
        from 0deg,
        transparent 0deg,
        rgba(230, 0, 90, 0.5) 30deg,
        rgba(0, 162, 232, 0.5) 60deg,
        rgba(230, 0, 90, 0.5) 90deg,
        rgba(0, 162, 232, 0.5) 120deg,
        rgba(230, 0, 90, 0.5) 150deg,
        rgba(0, 162, 232, 0.5) 180deg,
        rgba(230, 0, 90, 0.5) 210deg,
        rgba(0, 162, 232, 0.5) 240deg,
        rgba(230, 0, 90, 0.5) 270deg,
        rgba(0, 162, 232, 0.5) 300deg,
        transparent 330deg,
        transparent 360deg
    );
}

.mission-icon,
.vision-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #e6005a, #00a2e8);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    margin-bottom: 24px;
    color: #fff;
    position: relative;
    z-index: 3;
}

.mission-card h3,
.vision-card h3 {
    font-size: 1.8rem;
    font-weight: 700;
    color: #222;
    margin-bottom: 16px;
    position: relative;
    z-index: 3;
}

.mission-card p,
.vision-card p {
    color: #666;
    line-height: 1.6;
    margin-bottom: 24px;
    position: relative;
    z-index: 3;
}

.mission-points,
.vision-points {
    list-style: none;
    padding: 0;
}

.mission-points li,
.vision-points li {
    padding: 8px 0;
    color: #666;
    position: relative;
    padding-left: 24px;
    z-index: 3;
}

.mission-points li::before,
.vision-points li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #e6005a;
    font-weight: bold;
    font-size: 1.1rem;
}



/* Values Section */
.values-section {
    padding: 80px 0;
    background: #fff;
    text-align: center;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 32px;
    margin-top: 50px;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
    padding: 0 20px;
}

.value-card {
    background: #fff;
    border-radius: 20px;
    padding: 32px;
    box-shadow: 0 8px 32px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
    border: 2px solid transparent;
    opacity: 0;
    transform: translateY(30px);
}

.value-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 16px 48px rgba(0,0,0,0.12);
    border-color: rgba(230,0,90,0.2);
}

.value-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, rgba(230,0,90,0.1), rgba(0,162,232,0.1));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    margin: 0 auto 20px;
    border: 2px solid rgba(230,0,90,0.2);
}

.value-card h3 {
    font-size: 1.3rem;
    font-weight: 700;
    color: #222;
    margin-bottom: 16px;
}

.value-card p {
    color: #666;
    line-height: 1.6;
}

/* Team Section */
.team-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #f8f9ff 0%, #fff 100%);
    text-align: center;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 32px;
    margin-top: 50px;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
    padding: 0 20px;
}

.team-member {
    background: #fff;
    border-radius: 20px;
    padding: 32px;
    box-shadow: 0 8px 32px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
    opacity: 0;
    transform: translateY(30px);
}

.team-member:hover {
    transform: translateY(-8px);
    box-shadow: 0 16px 48px rgba(0,0,0,0.12);
}

.member-avatar {
    width: 100px;
    height: 100px;
    background: linear-gradient(135deg, #e6005a, #00a2e8);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 2.5rem;
    color: #fff;
}

.team-member h3 {
    font-size: 1.3rem;
    font-weight: 700;
    color: #222;
    margin-bottom: 8px;
}

.member-role {
    display: block;
    color: #e6005a;
    font-weight: 600;
    margin-bottom: 16px;
    font-size: 0.9rem;
}

.team-member p {
    color: #666;
    line-height: 1.6;
    font-size: 0.95rem;
}

/* About CTA Section */
.about-cta {
    background: linear-gradient(90deg, #e6005a 60%, #ffd200 100%);
    border-radius: 32px;
    box-shadow: 0 2px 16px rgba(230,0,90,0.09);
    margin: 96px auto 64px auto;
    max-width: 900px;
    padding: 56px 32px 48px 32px;
    position: relative;
    overflow: visible;
    text-align: center;
}

.about-cta::after {
    content: '';
    position: absolute;
    right: -60px;
    top: -60px;
    width: 180px;
    height: 180px;
    background: radial-gradient(circle at 40% 40%, #ffd200cc 60%, #e6005a00 100%);
    border-radius: 50%;
    z-index: 0;
    pointer-events: none;
    opacity: 0.5;
}

.about-cta h2, .about-cta .cta-btn { position: relative; z-index: 1; }

.about-cta h2 {
    color: #fff;
    font-size: 2.2rem;
    margin-bottom: 28px;
    letter-spacing: 1px;
    text-shadow: 0 2px 12px #222;
    animation: fadeInUp 1.2s;
    font-weight: bold;
}

.about-cta p {
    color: #fff;
    font-size: 1.1rem;
    margin-bottom: 32px;
    opacity: 0.95;
    position: relative;
    z-index: 1;
}

.about-cta .cta-btn {
    font-size: 1.25rem;
    padding: 18px 44px;
    border-radius: 32px;
    font-weight: bold;
    letter-spacing: 1px;
    box-shadow: 0 4px 18px rgba(230,0,90,0.13);
    cursor: pointer;
    border: none;
    background: #fff;
    color: #e6005a;
    transition: background 0.2s, color 0.2s, transform 0.2s;
    animation: fadeInUp 1.5s;
    margin-top: 10px;
    text-decoration: none;
    display: inline-block;
}

.about-cta .cta-btn:hover {
    background: #ffd200;
    color: #e6005a;
    transform: scale(1.06);
}

/* Responsive Design */
@media (max-width: 1024px) {
    .about-story-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .about-story-text {
        padding-right: 0;
    }
    
    .story-image-placeholder {
        width: 250px;
        height: 250px;
    }
    
    .mission-vision-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .values-grid {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        gap: 24px;
    }
    
    .team-grid {
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
        gap: 24px;
    }
    
    .about-cta {
        padding: 60px 20px;
        margin: 40px 0;
    }
    
    .about-cta h2 {
        font-size: 2rem;
    }
    
    .about-cta p {
        font-size: 1.1rem;
    }
}

@media (max-width: 600px) {
    .about-story {
        padding: 60px 0;
    }
    
    .story-image-placeholder {
        width: 200px;
        height: 200px;
    }
    
    .story-icon {
        font-size: 3rem;
    }
    
    .mission-card,
    .vision-card {
        padding: 30px 24px;
    }
    
    .mission-icon,
    .vision-icon {
        width: 60px;
        height: 60px;
        font-size: 2rem;
    }
    
    .value-card {
        padding: 24px 20px;
    }
    
    .value-icon {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
    }
    
    .team-member {
        padding: 24px 20px;
    }
    
    .member-avatar {
        width: 80px;
        height: 80px;
        font-size: 2rem;
    }
}

@keyframes rotateLight {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
    }
}

@keyframes fluidMove {
    0%, 100% {
        transform: translate(0, 0) scale(1);
    }
    25% {
        transform: translate(10px, -10px) scale(1.1);
    }
    50% {
        transform: translate(-5px, 15px) scale(0.9);
    }
    75% {
        transform: translate(15px, 5px) scale(1.05);
    }
}

@keyframes fluidRotate {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
    }
}

/* New Contact Page Styles */
.map-section {
    padding: 80px 0;
    background: #fff;
}

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

.map-header {
    text-align: center;
    margin-bottom: 50px;
}

.map-header h1 {
    font-size: 3rem;
    font-weight: 900;
    color: #333;
    margin-bottom: 16px;
}

.map-header p {
    font-size: 1.2rem;
    color: #666;
    line-height: 1.6;
    max-width: 600px;
    margin: 0 auto;
}

.map-wrapper {
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    margin-bottom: 40px;
}

.map-wrapper iframe {
    display: block;
    width: 100%;
    height: 450px;
    border: none;
}

.map-info {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 24px;
    margin-top: 40px;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}

.map-info-item {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    padding: 30px;
    background: linear-gradient(135deg, rgba(230, 0, 90, 0.05), rgba(0, 162, 232, 0.05));
    border-radius: 16px;
    border: 2px solid transparent;
    transition: all 0.3s ease;
}

.map-info-item:hover {
    border-color: rgba(230, 0, 90, 0.2);
    box-shadow: 0 8px 32px rgba(230, 0, 90, 0.1);
    transform: translateY(-3px);
}

.map-info-link {
    text-decoration: none;
    color: inherit;
    cursor: pointer;
    position: relative;
}

.map-info-link:hover {
    text-decoration: none;
    color: inherit;
}

.map-arrow {
    margin-left: auto;
    font-size: 1.5rem;
    color: #ff008a;
    transition: transform 0.3s ease;
    flex-shrink: 0;
}

.map-info-link:hover .map-arrow {
    transform: translateX(5px);
}

.map-icon {
    font-size: 2.5rem;
    flex-shrink: 0;
}

.map-details h3 {
    font-size: 1.3rem;
    font-weight: 700;
    color: #333;
    margin-bottom: 8px;
}

.map-details p {
    font-size: 1rem;
    color: #666;
    line-height: 1.6;
    margin: 0;
}

.contact-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="50" cy="50" r="1" fill="white" opacity="0.1"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
    opacity: 0.3;
}



.quick-contact {
    padding: 60px 0;
    background: #fff;
}

.quick-contact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.quick-contact-item {
    display: flex;
    align-items: center;
    padding: 30px;
    background: #f8f9ff;
    border-radius: 16px;
    text-decoration: none;
    color: inherit;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.quick-contact-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 16px 48px rgba(0, 0, 0, 0.1);
    border-color: #ff008a;
}

.quick-icon {
    font-size: 2.5rem;
    margin-right: 20px;
}

.quick-content h3 {
    font-size: 1.2rem;
    font-weight: 700;
    color: #333;
    margin-bottom: 4px;
}

.quick-content p {
    font-size: 1rem;
    color: #666;
    margin: 0;
}

.quick-arrow {
    margin-left: auto;
    font-size: 1.5rem;
    color: #ff008a;
    transition: transform 0.3s ease;
}

.quick-contact-item:hover .quick-arrow {
    transform: translateX(5px);
}

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

.form-container-new {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.form-left {
    background: #fff;
    padding: 50px;
    border-radius: 20px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.08);
}

.form-right {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 40px;
}

.form-header {
    text-align: center;
    margin-bottom: 50px;
}

.form-header h2 {
    font-size: 2.5rem;
    font-weight: 900;
    color: #333;
    margin-bottom: 16px;
}

.form-header p {
    font-size: 1.2rem;
    color: #666;
    line-height: 1.6;
}

.contact-form-new {
    background: #fff;
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.08);
}

.form-group-new {
    margin-bottom: 24px;
}

.form-group-new label {
    display: block;
    font-size: 1rem;
    font-weight: 600;
    color: #333;
    margin-bottom: 8px;
}

.form-group-new input,
.form-group-new textarea {
    width: 100%;
    padding: 16px 20px;
    border: 2px solid #e1e5e9;
    border-radius: 12px;
    font-size: 1rem;
    transition: all 0.3s ease;
    background: #fff;
    box-sizing: border-box;
}

.form-group-new input:focus,
.form-group-new textarea:focus {
    outline: none;
    border-color: #ff008a;
    box-shadow: 0 0 0 4px rgba(230, 0, 90, 0.1);
}

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

.submit-btn-new {
    width: 100%;
    background: #00a2e8;
    color: #fff;
    border: none;
    padding: 18px 32px;
    border-radius: 12px;
    font-size: 1.1rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
}

.submit-btn-new:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 32px rgba(0, 162, 232, 0.4);
}

.icon-container {
    position: relative;
    width: 280px;
    height: 280px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(230, 0, 90, 0.1), rgba(0, 162, 232, 0.1));
    border-radius: 50%;
    animation: iconPulse 3s ease-in-out infinite;
    box-shadow: 0 0 20px rgba(230, 0, 90, 0.2);
}

.form-icon {
    width: 160px;
    height: 160px;
    z-index: 2;
    position: relative;
    filter: drop-shadow(0 8px 24px rgba(230, 0, 90, 0.3));
}

.icon-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 160px;
    height: 160px;
    background: radial-gradient(circle, rgba(230, 0, 90, 0.2) 0%, transparent 70%);
    border-radius: 50%;
    animation: iconGlow 3s ease-in-out infinite;
}



.icon-text h3 {
    font-size: 1.8rem;
    font-weight: 700;
    color: #333;
    margin-bottom: 12px;
}

.icon-text p {
    font-size: 1.1rem;
    color: #666;
    line-height: 1.6;
    max-width: 300px;
}



@keyframes iconPulse {
    0%, 100% {
        transform: scale(1);
        box-shadow: 0 0 20px rgba(230, 0, 90, 0.3);
    }
    50% {
        transform: scale(1.05);
        box-shadow: 0 0 40px rgba(230, 0, 90, 0.6);
    }
}

@keyframes iconFloat {
    0%, 100% {
        transform: translateY(0px) rotate(0deg);
    }
    50% {
        transform: translateY(-10px) rotate(5deg);
    }
}

@keyframes iconGlow {
    0%, 100% {
        opacity: 0.3;
        transform: translate(-50%, -50%) scale(1);
        filter: brightness(1);
    }
    50% {
        opacity: 0.8;
        transform: translate(-50%, -50%) scale(1.1);
        filter: brightness(1.3);
    }
}



.social-links {
    padding: 80px 0;
    background: #fff;
    text-align: center;
}

.social-links h2 {
    font-size: 2.5rem;
    font-weight: 900;
    color: #333;
    margin-bottom: 50px;
}

.social-links-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 20px;
}

.social-link {
    background: #f8f9ff;
    padding: 30px;
    border-radius: 16px;
    text-decoration: none;
    color: inherit;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.social-link:hover {
    transform: translateY(-5px);
    box-shadow: 0 16px 48px rgba(0, 0, 0, 0.1);
}

.social-link.instagram:hover {
    border-color: #e4405f;
}

.social-link.twitter:hover {
    border-color: #1da1f2;
}

.social-link.linkedin:hover {
    border-color: #0077b5;
}

.social-link.youtube:hover {
    border-color: #ff0000;
}

.social-link-content {
    display: flex;
    align-items: center;
    gap: 20px;
}

.social-icon-new {
    font-size: 2.5rem;
}

.social-info h3 {
    font-size: 1.2rem;
    font-weight: 700;
    color: #333;
    margin-bottom: 4px;
    text-align: left;
}

.social-info p {
    font-size: 1rem;
    color: #666;
    margin: 0;
    text-align: left;
}

.contact-faq-new {
    padding: 80px 0;
    background: linear-gradient(135deg, rgba(230, 0, 90, 0.05), rgba(0, 162, 232, 0.05));
}

.contact-faq-new h2 {
    font-size: 2.5rem;
    font-weight: 900;
    color: #333;
    text-align: center;
    margin-bottom: 50px;
}

.faq-container-new {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 20px;
}

.faq-item-new {
    background: #fff;
    border-radius: 16px;
    margin-bottom: 20px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.05);
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item-new:hover {
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
}

.faq-question-new {
    padding: 30px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: space-between;
    transition: all 0.3s ease;
}

.faq-question-new:hover {
    background: #f8f9ff;
}

.faq-question-new h3 {
    font-size: 1.2rem;
    font-weight: 700;
    color: #333;
    margin: 0;
}

.faq-toggle-new {
    font-size: 1.5rem;
    font-weight: 700;
    color: #ff008a;
    transition: transform 0.3s ease;
}

.faq-item-new.active .faq-toggle-new {
    transform: rotate(45deg);
}

.faq-answer-new {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.faq-item-new.active .faq-answer-new {
    max-height: 200px;
}

.faq-answer-new p {
    padding: 0 30px 30px 30px;
    margin: 0;
    font-size: 1rem;
    color: #666;
    line-height: 1.6;
}

.final-cta {
    padding: 80px 0;
    background: linear-gradient(135deg, #ff008a, #00a2e8);
    text-align: center;
    color: #fff;
    position: relative;
    overflow: hidden;
}

.final-cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="50" cy="50" r="1" fill="white" opacity="0.1"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
    opacity: 0.3;
}

.final-cta-content {
    position: relative;
    z-index: 1;
    max-width: 800px;
    margin: 0 auto;
    padding: 0 20px;
}

.final-cta h2 {
    font-size: 3rem;
    font-weight: 900;
    margin-bottom: 20px;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
}

.final-cta p {
    font-size: 1.3rem;
    margin-bottom: 40px;
    opacity: 0.95;
}

.cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.cta-btn-primary,
.cta-btn-secondary {
    padding: 18px 40px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.2rem;
    transition: all 0.3s ease;
    display: inline-block;
}

.cta-btn-primary {
    background: rgba(255, 255, 255, 0.9);
    color: #ff008a;
    backdrop-filter: blur(10px);
}

.cta-btn-secondary {
    background: transparent;
    color: #fff;
    border: 2px solid rgba(255, 255, 255, 0.3);
}

.cta-btn-primary:hover,
.cta-btn-secondary:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.2);
}

.cta-btn-primary:hover {
    background: #fff;
}

.cta-btn-secondary:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.5);
}

.contact-info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.contact-card {
    background: #fff;
    padding: 40px 30px;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.contact-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 16px 48px rgba(230, 0, 90, 0.15);
    border-color: rgba(230, 0, 90, 0.2);
}

.contact-icon {
    font-size: 3rem;
    margin-bottom: 20px;
    display: block;
}

.contact-card h3 {
    font-size: 1.4rem;
    font-weight: 700;
    color: #333;
    margin-bottom: 12px;
}

.contact-card p {
    font-size: 1.1rem;
    color: #666;
    margin-bottom: 20px;
}

.contact-link {
    display: inline-block;
    background: linear-gradient(135deg, #ff008a, #00a2e8);
    color: #fff;
    padding: 12px 24px;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

.contact-link:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(230, 0, 90, 0.3);
}

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

.contact-form-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    align-items: center;
}

.contact-form-content h2 {
    font-size: 2.5rem;
    font-weight: 900;
    color: #333;
    margin-bottom: 16px;
}

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

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

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

.contact-form input,
.contact-form textarea {
    padding: 16px 20px;
    border: 2px solid #e1e5e9;
    border-radius: 12px;
    font-size: 1rem;
    transition: all 0.3s ease;
    background: #fff;
}

.contact-form input:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: #ff008a;
    box-shadow: 0 0 0 4px rgba(230, 0, 90, 0.1);
}

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

.contact-submit-btn {
    background: linear-gradient(135deg, #ff008a, #00a2e8);
    color: #fff;
    border: none;
    padding: 18px 32px;
    border-radius: 12px;
    font-size: 1.1rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
}

.contact-submit-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 32px rgba(230, 0, 90, 0.3);
}

.contact-form-image {
    display: flex;
    justify-content: center;
    align-items: center;
}

.contact-image-placeholder {
    position: relative;
    width: 300px;
    height: 300px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(230, 0, 90, 0.1), rgba(0, 162, 232, 0.1));
    border-radius: 50%;
    animation: contactPulse 4s ease-in-out infinite;
}

.contact-icon-large {
    width: 120px;
    height: 120px;
    z-index: 2;
    position: relative;
    filter: drop-shadow(0 8px 24px rgba(230, 0, 90, 0.3));
}

.contact-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 200px;
    height: 200px;
    background: radial-gradient(circle, rgba(230, 0, 90, 0.2) 0%, transparent 70%);
    border-radius: 50%;
    animation: contactGlow 3s ease-in-out infinite;
}

@keyframes contactPulse {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
}

@keyframes contactGlow {
    0%, 100% {
        opacity: 0.3;
        transform: translate(-50%, -50%) scale(1);
    }
    50% {
        opacity: 0.6;
        transform: translate(-50%, -50%) scale(1.1);
    }
}

.social-media-section {
    padding: 80px 0;
    background: linear-gradient(135deg, rgba(230, 0, 90, 0.05), rgba(0, 162, 232, 0.05));
    text-align: center;
}

.social-media-section h2 {
    font-size: 2.5rem;
    font-weight: 900;
    color: #333;
    margin-bottom: 16px;
}

.social-media-section p {
    font-size: 1.2rem;
    color: #666;
    margin-bottom: 50px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.social-media-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 20px;
}

.social-card {
    background: #fff;
    padding: 40px 30px;
    border-radius: 20px;
    text-decoration: none;
    color: inherit;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.social-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 16px 48px rgba(0, 0, 0, 0.15);
}

.social-card.instagram:hover {
    border-color: #e4405f;
}

.social-card.twitter:hover {
    border-color: #1da1f2;
}

.social-card.linkedin:hover {
    border-color: #0077b5;
}

.social-card.youtube:hover {
    border-color: #ff0000;
}

.social-icon {
    font-size: 3rem;
    margin-bottom: 20px;
    display: block;
}

.social-card h3 {
    font-size: 1.4rem;
    font-weight: 700;
    color: #333;
    margin-bottom: 12px;
}

.social-card p {
    font-size: 1.1rem;
    color: #666;
    margin: 0;
}

.contact-faq {
    padding: 80px 0;
    background: #fff;
}

.contact-faq h2 {
    font-size: 2.5rem;
    font-weight: 900;
    color: #333;
    text-align: center;
    margin-bottom: 50px;
}

.contact-cta {
    padding: 80px 0;
    background: linear-gradient(135deg, rgba(230, 0, 90, 0.9), rgba(0, 162, 232, 0.8));
    text-align: center;
    color: #fff;
    position: relative;
    overflow: hidden;
}

.contact-cta::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="50" cy="50" r="1" fill="white" opacity="0.1"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
    opacity: 0.3;
}

.contact-cta-content {
    position: relative;
    z-index: 1;
    max-width: 800px;
    margin: 0 auto;
    padding: 0 20px;
}

.contact-cta h2 {
    font-size: 3rem;
    font-weight: 900;
    margin-bottom: 20px;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
}

.contact-cta p {
    font-size: 1.3rem;
    margin-bottom: 40px;
    opacity: 0.95;
}

.contact-cta .cta-btn {
    background: rgba(255, 255, 255, 0.9);
    color: #ff008a;
    padding: 18px 40px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.2rem;
    transition: all 0.3s ease;
    display: inline-block;
    backdrop-filter: blur(10px);
}

.contact-cta .cta-btn:hover {
    background: #fff;
    transform: translateY(-3px);
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.2);
}

/* New Contact Page Responsive */
@media (max-width: 1024px) {
    .map-section {
        padding: 60px 0;
    }
    
    .map-header h1 {
        font-size: 2.5rem;
    }
    
    .map-header p {
        font-size: 1.1rem;
    }
    
    .map-wrapper iframe {
        height: 400px;
    }
    
    .map-info {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .map-info-item {
        padding: 24px;
    }
    
    .map-icon {
        font-size: 2rem;
    }
    
    .quick-contact-grid {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        gap: 16px;
        padding: 0 16px;
    }
    
    .quick-contact-item {
        padding: 24px;
    }
    
    .quick-icon {
        font-size: 2rem;
        margin-right: 16px;
    }
    
    .form-container-new {
        grid-template-columns: 1fr;
        gap: 50px;
        padding: 0 16px;
    }
    
    .form-left {
        padding: 40px;
    }
    
    .form-header h2 {
        font-size: 2rem;
    }
    
    .form-header p {
        font-size: 1.1rem;
    }
    
    .contact-form-new {
        padding: 30px;
    }
    
    .icon-container {
        width: 240px;
        height: 240px;
        animation: iconPulse 3s ease-in-out infinite;
    }
    
    .form-icon {
        width: 140px;
        height: 140px;
    }
    
    .icon-text h3 {
        font-size: 1.6rem;
    }
    
    .icon-text p {
        font-size: 1rem;
    }
    
    .social-links-grid {
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
        gap: 16px;
        padding: 0 16px;
    }
    
    .social-link {
        padding: 24px;
    }
    
    .social-link-content {
        gap: 16px;
    }
    
    .social-icon-new {
        font-size: 2rem;
    }
    
    .faq-container-new {
        padding: 0 16px;
    }
    
    .faq-question-new {
        padding: 24px;
    }
    
    .faq-question-new h3 {
        font-size: 1.1rem;
    }
    
    .faq-answer-new p {
        padding: 0 24px 24px 24px;
    }
    
    .final-cta h2 {
        font-size: 2.5rem;
    }
    
    .final-cta p {
        font-size: 1.1rem;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .cta-btn-primary,
    .cta-btn-secondary {
        width: 100%;
        max-width: 300px;
    }
}

@media (max-width: 600px) {
    .map-section {
        padding: 40px 0;
    }
    
    .map-header h1 {
        font-size: 2rem;
    }
    
    .map-header p {
        font-size: 1rem;
    }
    
    .map-wrapper iframe {
        height: 300px;
    }
    
    .map-info-item {
        padding: 20px;
        gap: 16px;
    }
    
    .map-icon {
        font-size: 1.8rem;
    }
    
    .map-details h3 {
        font-size: 1.1rem;
    }
    
    .map-details p {
        font-size: 0.95rem;
    }
    
    .quick-contact {
        padding: 40px 0;
    }
    
    .quick-contact-grid {
        grid-template-columns: 1fr;
        gap: 12px;
    }
    
    .quick-contact-item {
        padding: 20px;
    }
    
    .quick-icon {
        font-size: 1.8rem;
        margin-right: 12px;
    }
    
    .quick-content h3 {
        font-size: 1.1rem;
    }
    
    .contact-form-section-new {
        padding: 60px 0;
    }
    
    .form-container-new {
        gap: 30px;
    }
    
    .form-left {
        padding: 30px;
    }
    
    .form-header h2 {
        font-size: 1.8rem;
    }
    
    .form-header p {
        font-size: 1rem;
    }
    
    .contact-form-new {
        padding: 24px;
    }
    
    .icon-container {
        width: 200px;
        height: 200px;
        animation: iconPulse 3s ease-in-out infinite;
    }
    
    .form-icon {
        width: 120px;
        height: 120px;
    }
    
    .icon-text h3 {
        font-size: 1.4rem;
    }
    
    .icon-text p {
        font-size: 0.95rem;
    }
    
    .form-group-new input,
    .form-group-new textarea {
        padding: 14px 16px;
    }
    
    .submit-btn-new {
        padding: 16px 24px;
        font-size: 1rem;
    }
    
    .social-links {
        padding: 60px 0;
    }
    
    .social-links h2 {
        font-size: 2rem;
    }
    
    .social-links-grid {
        grid-template-columns: 1fr;
        gap: 12px;
    }
    
    .social-link {
        padding: 20px;
    }
    
    .social-link-content {
        gap: 12px;
    }
    
    .social-icon-new {
        font-size: 1.8rem;
    }
    
    .social-info h3 {
        font-size: 1.1rem;
    }
    
    .contact-faq-new {
        padding: 60px 0;
    }
    
    .contact-faq-new h2 {
        font-size: 2rem;
    }
    
    .faq-question-new {
        padding: 20px;
    }
    
    .faq-question-new h3 {
        font-size: 1rem;
    }
    
    .faq-answer-new p {
        padding: 0 20px 20px 20px;
        font-size: 0.95rem;
    }
    
    .final-cta {
        padding: 60px 0;
    }
    
    .final-cta h2 {
        font-size: 2rem;
    }
    
    .final-cta p {
        font-size: 1rem;
    }
}

/* Show specific reference images fully (not cropped) */
.reference-card img.reference-logo[src*="ref1.png"],
.reference-card img.reference-logo[src*="ref6.png"],
.reference-card img.reference-logo[src*="ref15.png"],
.reference-card img.reference-logo[src*="ref16.png"],
.reference-card img.reference-logo[src*="ref19.png"],
.reference-card img.reference-logo[src*="ref24.png"] {
  object-fit: contain !important;
  background: #fff;
  border-radius: 12px;
  width: 100%;
  height: 160px;
}

/* Navbar Dropdown Styles */
.navbar-dropdown {
  position: relative;
  transition: all 0.3s ease;
}

.navbar-dropdown:hover {
  transform: translateY(-2px);
}

.navbar-dropdown::after {
  content: '';
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
  height: 30px;
  background: transparent;
  z-index: 9998;
}
.navbar-dropdown > a {
  cursor: pointer;
  position: relative;
  z-index: 10001;
}
.dropdown-menu {
  display: none !important;
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 220px;
  background: #fff;
  box-shadow: 0 8px 32px rgba(0,0,0,0.13);
  border-radius: 16px;
  z-index: 9999;
  padding: 12px 0;
  margin-top: 10px;
  flex-direction: column;
  gap: 2px;
  border: 1.5px solid #f2f2f2;
  pointer-events: auto;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}




.dropdown-menu li {
  width: 100%;
  padding: 0 8px;
  margin: 0;
}
.dropdown-menu a {
  display: block;
  width: 100%;
  padding: 8px 20px;
  color: #222;
  background: none;
  border-radius: 10px;
  font-size: 1.08rem;
  font-weight: 600;
  font-family: 'Segoe UI', Arial, sans-serif;
  letter-spacing: 0.2px;
  transition: background 0.18s, color 0.18s, box-shadow 0.18s, transform 0.18s;
  white-space: nowrap;
  box-shadow: none;
  margin: 0;
}
.dropdown-menu a:hover, .dropdown-menu a:focus {
  background: linear-gradient(90deg, #ff008a11 0%, #ffd20022 100%);
  color: #e6005a;
  box-shadow: 0 2px 12px #ffd20022;
  transform: translateX(4px) scale(1.04);
}

.navbar-dropdown:hover > .dropdown-menu,
.navbar-dropdown:focus-within > .dropdown-menu,
.dropdown-menu:hover {
  display: flex !important;
  opacity: 1 !important;
  visibility: visible !important;
}



.navbar-dropdown:hover > a {
  pointer-events: auto;
}

h1 {
  font-size: 1.6rem;
}
h2, .section-title {
  font-size: 2.5rem !important;
}
.services-hero h1, .kreatif-hero-title {
  font-size: 2.2rem !important;
}

.faq-question, .faq-title, .faq-section h3, .faq-section h2 {
  font-size: 1.08rem !important;
}

.section-title, .faq-title, .custom-section-title {
  font-size: 2.5rem !important;
}

.custom-section-title {
  font-size: 2.5rem !important;
  font-weight: bold;
  color: #222;
  text-align: center;
  margin-bottom: 12px;
}

.faq-title.custom-section-title, h2.custom-section-title {
  font-size: 2.5rem !important;
}

.kreatif-services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  margin: 0 auto 64px auto;
  max-width: 1100px;
  padding: 0 16px;
}

@media (max-width: 1024px) {
  .kreatif-services-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .kreatif-services-grid > .kreatif-service-card:nth-child(4) {
    grid-column-start: auto;
  }
}

@media (max-width: 600px) {
  .kreatif-services-grid {
    grid-template-columns: 1fr;
  }
  .kreatif-services-grid > .kreatif-service-card {
    grid-column: auto !important;
  }
}

.kreatif-cta-btn, .dijital-cta-btn {
  display: inline-block;
  padding: 14px 32px;
  border-radius: 28px;
  background: linear-gradient(90deg, #ff008a 0%, #8b5cf6 50%, #3b82f6 100%);
  color: #fff !important;
  font-weight: bold;
  font-size: 1.1rem;
  box-shadow: 0 4px 18px rgba(230,0,90,0.13);
  letter-spacing: 1px;
  text-decoration: none;
  transition: all 0.3s ease;
  border: none;
  position: relative;
  overflow: hidden;
  text-align: center;
  line-height: 1.2;
  min-width: 180px;
}
.kreatif-cta-btn:hover, .dijital-cta-btn:hover {
  background: linear-gradient(90deg, #ff008a 0%, #8b5cf6 50%, #3b82f6 100%);
  color: #fff !important;
  font-weight: bold;
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(230,0,90,0.25);
}

.kreatif-cta-btn {
  display: inline-block;
  min-width: 180px;
  min-height: 48px;
  padding: 14px 32px;
  border-radius: 28px;
  background: linear-gradient(90deg, #ff008a 0%, #8b5cf6 50%, #3b82f6 100%);
  color: #fff !important;
  font-weight: bold;
  font-size: 1.1rem;
  box-shadow: 0 4px 18px rgba(230,0,90,0.13);
  letter-spacing: 1px;
  text-decoration: none;
  transition: all 0.3s ease;
  border: none;
  position: relative;
  overflow: hidden;
  text-align: center;
  line-height: 1.2;
}
.kreatif-cta-btn:hover {
  background: linear-gradient(90deg, #ff008a 0%, #8b5cf6 50%, #3b82f6 100%);
  color: #fff !important;
  font-weight: bold;
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(230,0,90,0.25);
}

@media (max-width: 1024px) {
  /* Desktop menüyü gizle */
  .navbar > ul {
    display: none !important;
  }
  
  /* Mobile Menu */
  .mobile-menu-toggle {
    display: flex !important;
  }
  
  .nav-menu {
    display: flex !important;
    position: fixed !important;
    top: 0 !important;
    left: -100% !important;
    width: 100% !important;
    height: 100vh !important;
    background: rgba(255, 255, 255, 0.98) !important;
    backdrop-filter: blur(10px) !important;
    flex-direction: column !important;
    justify-content: flex-start !important;
    align-items: center !important;
    gap: 20px !important;
    transition: left 0.3s ease !important;
    z-index: 999999 !important;
    overflow-y: auto !important;
    padding: 80px 20px 20px 20px !important;
    list-style: none !important;
    visibility: visible !important;
  }
  

  
  .nav-menu.active {
    left: 0 !important;
    visibility: visible !important;
    opacity: 1 !important;
    display: flex !important;
  }
  
  .nav-menu li {
    opacity: 0 !important;
    transform: translateY(20px) !important;
    transition: all 0.3s ease !important;
    list-style: none !important;
    margin: 0 !important;
    padding: 0 !important;
    visibility: hidden !important;
    position: relative !important;
    z-index: 1 !important;
  }
  
  .nav-menu.active li {
    opacity: 1 !important;
    transform: translateY(0) !important;
    visibility: visible !important;
    display: block !important;
    position: relative !important;
    z-index: 1 !important;
  }
  
  .nav-menu.active li:nth-child(1) { transition-delay: 0.1s; }
  .nav-menu.active li:nth-child(2) { transition-delay: 0.2s; }
  .nav-menu.active li:nth-child(3) { transition-delay: 0.3s; }
  .nav-menu.active li:nth-child(4) { transition-delay: 0.4s; }
  .nav-menu.active li:nth-child(5) { transition-delay: 0.5s; }
  .nav-menu.active li:nth-child(6) { transition-delay: 0.6s; }
  
  .nav-menu a {
    font-size: 1.2rem !important;
    padding: 12px 24px !important;
    border-radius: 8px !important;
    display: block !important;
    text-align: center !important;
    color: #333 !important;
    text-decoration: none !important;
    background: none !important;
    border: none !important;
    min-width: auto !important;
    width: auto !important;
    box-sizing: border-box !important;
    position: relative !important;
    z-index: 2 !important;
    visibility: visible !important;
    opacity: 1 !important;
  }
  
  .navbar-dropdown {
    position: static;
    z-index: 999999 !important;
  }
  
  /* Mobile'da hover'ı devre dışı bırak */
  @media (max-width: 1024px) {
    .navbar-dropdown:hover > .dropdown-menu {
      display: none !important;
    }
    
    /* Mobile'da tüm hover efektlerini devre dışı bırak */
    .navbar-dropdown:hover > .dropdown-menu,
    .navbar-dropdown:focus-within > .dropdown-menu,
    .dropdown-menu:hover {
      display: none !important;
      opacity: 0 !important;
      visibility: hidden !important;
    }
    
    /* Mobile'da sadece .open class'ı ile dropdown açılsın */
    .navbar-dropdown .dropdown-menu.open {
      display: flex !important;
      opacity: 1 !important;
      visibility: visible !important;
    }
  }
  .navbar-dropdown .dropdown-menu {
    display: none;
    position: static;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(15px);
    box-shadow: 0 8px 32px rgba(0,0,0,0.12);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 16px;
    margin: 12px 0;
    padding: 12px 0;
    z-index: 999999 !important;
    max-height: 80vh;
    overflow-y: auto;
    min-width: 200px;
    scrollbar-width: thin;
    scrollbar-color: rgba(230, 0, 90, 0.3) transparent;
  }
  
  .navbar-dropdown .dropdown-menu::-webkit-scrollbar {
    width: 6px;
  }
  
  .navbar-dropdown .dropdown-menu::-webkit-scrollbar-track {
    background: transparent;
    border-radius: 3px;
  }
  
  .navbar-dropdown .dropdown-menu::-webkit-scrollbar-thumb {
    background: linear-gradient(135deg, rgba(230, 0, 90, 0.3), rgba(0, 162, 232, 0.3));
    border-radius: 3px;
  }
  
  .navbar-dropdown .dropdown-menu::-webkit-scrollbar-thumb:hover {
    background: linear-gradient(135deg, rgba(230, 0, 90, 0.5), rgba(0, 162, 232, 0.5));
  }
  

  .navbar-dropdown .dropdown-menu.open {
    display: flex !important;
    flex-direction: column !important;
    animation: slideDown 0.3s ease;
    z-index: 999999 !important;
  }
  
  .navbar-dropdown .dropdown-menu.open::before {
    content: "Hizmetlerimiz";
    display: block;
    font-size: 1.2rem;
    font-weight: 600;
    color: #e6005a;
    text-align: center;
    padding: 8px 16px 6px 16px;
    margin-bottom: 6px;
    border-bottom: 2px solid rgba(230, 0, 90, 0.1);
    background: linear-gradient(135deg, rgba(230, 0, 90, 0.05), rgba(0, 162, 232, 0.05));
  }
  
  /* Dropdown açıkken diğer menü öğelerini gizle */
  .nav-menu .navbar-dropdown.open ~ li {
    display: none !important;
    opacity: 0 !important;
    visibility: hidden !important;
  }
  
  .nav-menu .navbar-dropdown.open {
    order: -1 !important;
    z-index: 999999 !important;
  }
  
  .nav-menu .navbar-dropdown.open .dropdown-menu {
    z-index: 999999 !important;
  }
  
  @keyframes slideDown {
    from {
      opacity: 0;
      transform: translateY(-10px);
    }
    to {
      opacity: 1;
      transform: translateY(0);
    }
  }
  .navbar-dropdown .dropdown-menu li {
    margin: 0;
    padding: 0;
    position: relative;
    z-index: 999999 !important;
  }
  .navbar-dropdown .dropdown-menu a {
    font-size: 1.1rem;
    padding: 10px 20px;
    color: #333;
    background: transparent;
    border-radius: 8px;
    display: block;
    text-align: center;
    transition: all 0.3s ease;
    white-space: nowrap;
    position: relative;
    z-index: 999999 !important;
    margin: 1px 8px;
    font-weight: 500;
  }
  
  .navbar-dropdown .dropdown-menu a:hover {
    background: linear-gradient(135deg, rgba(230, 0, 90, 0.1), rgba(0, 162, 232, 0.1));
    color: #e6005a;
    transform: translateX(4px);
    box-shadow: 0 4px 12px rgba(230, 0, 90, 0.15);
  }
  .nav-menu {
    display: flex;
    flex-direction: column;
  }
  .nav-menu li {
    position: relative;
    z-index: 1;
  }
}