:root {
    --primary-color: #6b46c1;
    --secondary-color: #ff9800;
    --text-dark: #2d3748;
    --text-light: #718096;
    --bg-light: #f7fafc;
    --white: #ffffff;
    --shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 10px 25px rgba(0, 0, 0, 0.15);
    --transition: all 0.3s ease;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    color: var(--text-dark);
    line-height: 1.6;
    overflow-x: hidden;
}

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

/* Header Styles */
.header {
    background: var(--white);
    box-shadow: var(--shadow);
    position: sticky;
    top: 0;
    z-index: 1000;
    transition: var(--transition);
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 0;
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-direction: column;
}

.logo i {
    font-size: 2.5rem;
    color: var(--primary-color);
}

.logo span {
    font-size: 1.5rem;
    font-weight: bold;
    color: var(--primary-color);
}
.logo a {
  text-decoration: none;
}
.tagline {
    font-size: 0.9rem;
    color: var(--text-light);
    font-style: italic;
}

.nav-list {
    display: flex;
    list-style: none;
    gap: 30px;
    align-items: center;
}

.nav-link {
    text-decoration: none;
    color: var(--text-dark);
    font-weight: 500;
    transition: var(--transition);
    padding: 8px 15px;
    border-radius: 5px;
}

textarea[name="mesaj"] {
width: 100%;
  padding: 18px 20px 18px 20px;
  border: 2px solid #e2e8f0;
  border-radius: 12px;
  font-size: 1rem;
  outline: none;
  transition: var(--transition);
  background: #f8fafc;
}

.nav-link:hover,
.nav-link.active {
    color: var(--primary-color);
    background: rgba(107, 70, 193, 0.1);
}

.btn-outline {
    border: 2px solid var(--primary-color);
    color: var(--primary-color) !important;
    background: transparent;
}

.btn-outline:hover {
    background: var(--primary-color);
    color: var(--white) !important;
}

.mobile-menu-toggle {
    display: none;
    font-size: 1.5rem;
    cursor: pointer;
    color: var(--primary-color);
}

/* Hero Slider Styles */
.hero-slider {
    position: relative;
    height: 910px;
    overflow: hidden;
}

.slider-container {
    position: relative;
    height: 100%;
}

.slide {
    position: absolute;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 1s ease-in-out;
    background-size: cover;
    background-position: center;
}

.slide:nth-child(1) {
    background-image: url('https://images.unsplash.com/photo-1516733725897-1aa73b87c8e8?w=1600');
}

.slide:nth-child(2) {
    background-image: url('https://images.unsplash.com/photo-1581579438747-1dc8d17bbce4?w=1600');
}

.slide:nth-child(3) {
    background-image: url('https://images.unsplash.com/photo-1503454537195-1dcabb73ffb9?w=1600');
}

.slide.active {
    opacity: 1;
}

.slide-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(107, 70, 193, 0.8), rgba(255, 152, 0, 0.6));
}

.slide-content {
    position: relative;
    height: 100%;
    display: flex;
    align-items: center;
    z-index: 2;
}

.slide-text {
    color: var(--white);
    max-width: 650px;
}

.slide-text h1 {
    font-size: 3rem;
    margin-bottom: 20px;
    animation: fadeInUp 1s ease;
}

.slide-text p {
    font-size: 1.3rem;
    margin-bottom: 30px;
    animation: fadeInUp 1s ease 0.2s both;
}

.slide-buttons {
    display: flex;
    gap: 20px;
    animation: fadeInUp 1s ease 0.4s both;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.btn {
    padding: 15px 30px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: var(--transition);
    display: inline-block;
    border: none;
    cursor: pointer;
    font-size: 1rem;
}

.btn-primary {
    background: var(--secondary-color);
    color: var(--white);
}

.btn-primary:hover {
    background: #e68900;
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.btn-secondary {
    background: var(--white);
    color: var(--primary-color);
}

.btn-secondary:hover {
    background: var(--bg-light);
    transform: translateY(-2px);
}

.slider-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.9);
    color: var(--primary-color);
    border: none;
    padding: 15px 20px;
    font-size: 1.5rem;
    cursor: pointer;
    transition: var(--transition);
    z-index: 10;
    border-radius: 5px;
}

.slider-btn:hover {
    background: var(--white);
    transform: translateY(-50%) scale(1.1);
}

.prev-btn {
    left: 20px;
}

.next-btn {
    right: 20px;
}

.slider-dots {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
    z-index: 10;
}

.slider-dots .dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.5);
    cursor: pointer;
    transition: var(--transition);
}

.slider-dots .dot.active {
    background: var(--white);
    width: 40px;
    border-radius: 10px;
}

/* Section Styles */
section {
    padding: 30px 0;
}

.section-title {
    text-align: center;
    font-size: 2.5rem;
    color: var(--text-dark);
    margin-bottom: 20px;
}

.section-subtitle {
    text-align: center;
    font-size: 1.2rem;
    color: var(--text-light);
    margin-bottom: 50px;
}

/* Ajans Hizmeti Styles */
.ajans-hizmeti {
    background: var(--bg-light);
}

.ajans-content {
    display: block;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    margin-top: 50px;
}

.nasil-calisir h3 {
    font-size: 2rem;
    color: var(--text-dark);
    margin-bottom: 40px;
}

.steps {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.step {
    background: var(--white);
    padding: 30px;
    border-radius: 15px;
    box-shadow: var(--shadow);
    position: relative;
    transition: var(--transition);
}

.step:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.step-number {
    position: absolute;
    top: -15px;
    left: 30px;
    background: var(--primary-color);
    color: var(--white);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 1.2rem;
}

.step-icon {
    font-size: 3rem;
    color: var(--primary-color);
    margin-bottom: 15px;
    display: flex;
    justify-content: center;
}

.step h4 {
    font-size: 1.3rem;
    color: var(--text-dark);
    margin-bottom: 10px;
    text-align: center;
}

.step p {
    color: var(--text-light);
    text-align: center;
}

.step-arrow {
    text-align: center;
    color: var(--primary-color);
    font-size: 2rem;
    margin: 10px 0;
}

.ajans-info {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.info-box {
    background: var(--white);
    padding: 30px;
    border-radius: 15px;
    box-shadow: var(--shadow);
}

.info-box h3 {
    font-size: 1.8rem;
    color: var(--text-dark);
    margin-bottom: 20px;
}

.info-box p {
    color: var(--text-light);
    line-height: 1.8;
}

.features-list {
    list-style: none;
}

.features-list li {
    color: var(--text-light);
    padding: 10px 0;
    display: flex;
    gap: 15px;
    align-items: start;
}

.features-list i {
    color: var(--secondary-color);
    font-size: 1.2rem;
    margin-top: 3px;
}

.contact-form-box {
    background: var(--primary-color);
}

.contact-form-box h3,
.contact-form-box p {
    color: var(--white);
}

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

.contact-form input {
    padding: 15px;
    border: none;
    border-radius: 8px;
    font-size: 1rem;
    outline: none;
    border-bottom: 3px solid transparent;
    transition: var(--transition);
}

.contact-form input:focus {
    border-bottom-color: var(--secondary-color);
}

.contact-form button {
    width: 100%;
}

/* Kime İhtiyacınız Var Styles */
.bakici-kategorileri {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.kategori-card {
    background: var(--white);
    border-radius: 15px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
    cursor: pointer;
}

.kategori-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
}

.kategori-image {
    height: 200px;
    overflow: hidden;
}

.kategori-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.kategori-card:hover .kategori-image img {
    transform: scale(1.1);
}

.kategori-card h3 {
    padding: 20px;
    text-align: center;
    color: var(--primary-color);
    font-size: 1.2rem;
}

/* Blog Styles */
.blog {
    background: var(--bg-light);
}

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

.blog-card {
    background: var(--white);
    border-radius: 15px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.blog-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
}

.blog-image {
    position: relative;
    height: 250px;
    overflow: hidden;
}

.blog-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.blog-card:hover .blog-image img {
    transform: scale(1.1);
}

.blog-date {
    position: absolute;
    top: 20px;
    left: 20px;
    background: var(--primary-color);
    color: var(--white);
    padding: 10px 15px;
    border-radius: 10px;
    text-align: center;
    display: flex;
    flex-direction: column;
}

.blog-date .day {
    font-size: 1.5rem;
    font-weight: bold;
}

.blog-date .month {
    font-size: 0.9rem;
}

.blog-content {
    padding: 25px;
}

.blog-category {
    display: inline-block;
    background: rgba(107, 70, 193, 0.1);
    color: var(--primary-color);
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 0.9rem;
    margin-bottom: 15px;
}

.blog-content h3 {
    color: var(--text-dark);
    margin-bottom: 15px;
    font-size: 1.3rem;
    line-height: 1.4;
}

.blog-content p {
    color: var(--text-light);
    margin-bottom: 20px;
    line-height: 1.8;
}

.blog-link {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: var(--transition);
}

.blog-link:hover {
    gap: 15px;
}

.blog-pagination {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 40px;
}

.pagination-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    border: 2px solid var(--primary-color);
    background: transparent;
    cursor: pointer;
    transition: var(--transition);
}

.pagination-dot.active {
    background: var(--primary-color);
    width: 40px;
    border-radius: 10px;
}

/* İletişim Styles */
.iletisim {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    padding: 100px 0;
    position: relative;
    overflow: hidden;
}

.iletisim::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg width="100" height="100" xmlns="http://www.w3.org/2000/svg"><circle cx="50" cy="50" r="2" fill="rgba(255,255,255,0.1)"/></svg>');
    opacity: 0.3;
}

.iletisim-wrapper {
    background: var(--white);
    border-radius: 25px;
    padding: 0;
    display: grid;
    grid-template-columns: 1fr 1fr;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    position: relative;
    z-index: 1;
}

.iletisim-content {
    background: linear-gradient(135deg, var(--primary-color) 0%, #8b5cf6 100%);
    padding: 60px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.iletisim-content::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255,255,255,0.1) 0%, transparent 70%);
    animation: pulse 8s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
        opacity: 0.5;
    }
    50% {
        transform: scale(1.1);
        opacity: 0.8;
    }
}

.iletisim-icon {
    width: 80px;
    height: 80px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 30px;
    position: relative;
    z-index: 1;
}

.iletisim-icon i {
    font-size: 2.5rem;
    color: var(--white);
}

.iletisim-text {
    position: relative;
    z-index: 1;
}

.iletisim-text h2 {
    font-size: 2.5rem;
    color: var(--white);
    margin-bottom: 15px;
    line-height: 1.2;
}

.iletisim-text p {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 30px;
}

.iletisim-features {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 15px;
    color: var(--white);
}

.feature-item i {
    font-size: 1.3rem;
    color: var(--secondary-color);
    flex-shrink: 0;
}

.feature-item span {
    font-size: 1rem;
    font-weight: 500;
}

.iletisim-form-container {
    padding: 60px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    background: var(--white);
}

.iletisim-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.form-group {
    position: relative;
    display: flex;
    align-items: center;
}

.form-group i {
    position: absolute;
    left: 20px;
    color: var(--text-light);
    font-size: 1.1rem;
    transition: var(--transition);
}

.form-group input {
    width: 100%;
    padding: 18px 20px 18px 55px;
    border: 2px solid #e2e8f0;
    border-radius: 12px;
    font-size: 1rem;
    outline: none;
    transition: var(--transition);
    background: #f8fafc;
}

.form-group input:focus {
    border-color: var(--primary-color);
    background: var(--white);
    box-shadow: 0 0 0 4px rgba(107, 70, 193, 0.1);
}

.form-group input:focus + i,
.form-group:focus-within i {
    color: var(--primary-color);
}

.btn-contact {
    background: linear-gradient(135deg, var(--secondary-color) 0%, #f57c00 100%);
    color: var(--white);
    padding: 18px 30px;
    border: none;
    border-radius: 12px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    transition: var(--transition);
    margin-top: 10px;
    box-shadow: 0 4px 15px rgba(255, 152, 0, 0.3);
}

.btn-contact:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 152, 0, 0.4);
}

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

.btn-contact i {
    transition: var(--transition);
}

.btn-contact:hover i {
    transform: translateX(5px);
}

.form-note {
    margin-top: 20px;
    padding: 15px;
    background: #f0fdf4;
    border-left: 4px solid #10b981;
    border-radius: 8px;
    color: #065f46;
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    gap: 10px;
    line-height: 1.6;
}

.form-note i {
    color: #10b981;
    font-size: 1.1rem;
    flex-shrink: 0;
}

/* Modal Styles */
.modal {
    display: none;
    position: fixed;
    z-index: 2000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7);
    overflow: auto;
}

.modal-content {
    background-color: var(--white);
    margin: 5% auto;
    padding: 0;
    border-radius: 15px;
    max-width: 800px;
    box-shadow: var(--shadow-lg);
    animation: slideDown 0.3s ease;
}

@keyframes slideDown {
    from {
        transform: translateY(-50px);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

.modal-header {
    background: var(--primary-color);
    color: var(--white);
    padding: 30px;
    border-radius: 15px 15px 0 0;
}

.modal-header h2 {
    font-size: 2rem;
}

.modal-body {
    padding: 30px;
    max-height: 60vh;
    overflow-y: auto;
}

.modal-body h3 {
    color: var(--text-dark);
    margin: 20px 0 15px;
}

.modal-body h4 {
    color: var(--primary-color);
    margin: 15px 0 10px;
}

.modal-body p {
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 15px;
}

.close {
    color: var(--white);
    float: right;
    font-size: 2rem;
    font-weight: bold;
    cursor: pointer;
    transition: var(--transition);
}

.close:hover {
    transform: scale(1.1);
}

/* Footer Styles */
.footer {
    background: var(--text-dark);
    color: var(--white);
    padding: 60px 0 20px;
}

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

.footer-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 15px;
}

.footer-logo i {
    font-size: 2rem;
    color: var(--secondary-color);
}

.footer-logo span {
    font-size: 1.3rem;
    font-weight: bold;
}

.footer-section h4 {
    color: var(--secondary-color);
    margin-bottom: 20px;
    font-size: 1.2rem;
}

.footer-section ul {
    list-style: none;
}

.footer-section li {
    margin-bottom: 10px;
}

.footer-section a {
    color: #cbd5e0;
    text-decoration: none;
    transition: var(--transition);
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

.footer-section a:hover {
    color: var(--secondary-color);
    padding-left: 5px;
}

.social-links {
    display: flex;
    gap: 15px;
    margin-top: 20px;
}

.social-links a {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}

.social-links a:hover {
    background: var(--secondary-color);
    transform: translateY(-3px);
}

.contact-info i {
    color: var(--secondary-color);
    font-size: 1.1rem;
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: #cbd5e0;
}

/* Responsive Styles */
@media (max-width: 968px) {
    .nav {
        display: none;
    }

    .mobile-menu-toggle {
        display: block;
    }

    .slide-text h1 {
        font-size: 2rem;
    }

    .slide-text p {
        font-size: 1rem;
    }

    .ajans-content {
        grid-template-columns: 1fr;
    }

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

    .iletisim-content {
        padding: 40px;
    }

    .iletisim-text h2 {
        font-size: 2rem;
    }

    .iletisim-form-container {
        padding: 40px;
    }

    .slider-btn {
        padding: 10px 15px;
        font-size: 1.2rem;
    }
}

@media (max-width: 640px) {
    .section-title {
        font-size: 1.8rem;
    }

    .hero-slider {
        height: 910px;
    }

    .slide-text h1 {
        font-size: 1.5rem;
    }

    .slide-buttons {
        flex-direction: column;
        gap: 10px;
    }

    .btn {
        padding: 12px 25px;
        font-size: 0.9rem;
    }

    .bakici-kategorileri,
    .blog-grid {
        grid-template-columns: 1fr;
    }

    .modal-content {
        margin: 10% 10px;
    }

    .footer-content {
        grid-template-columns: 1fr;
    }

    .iletisim {
        padding: 60px 0;
    }

    .iletisim-content {
        padding: 30px 20px;
    }

    .iletisim-text h2 {
        font-size: 1.6rem;
    }

    .iletisim-text p {
        font-size: 1rem;
    }

    .iletisim-icon {
        width: 60px;
        height: 60px;
    }

    .iletisim-icon i {
        font-size: 2rem;
    }

    .iletisim-form-container {
        padding: 30px 20px;
    }

    .feature-item {
        font-size: 0.9rem;
    }

    .feature-item i {
        font-size: 1.1rem;
    }
}

/* Scroll Animations */
.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}




/* Slider Form Stilleri */
.slide-form {
    display: flex;
    gap: 15px;
    align-items: center;
    margin-top: 30px;
    max-width: 900px;
}

.form-input {
    flex: 1;
    padding: 15px 20px;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    color: #fff;
    font-size: 16px;
    font-family: 'Poppins', sans-serif;
    transition: all 0.3s ease;
}

.form-input::placeholder {
    color: rgba(255, 255, 255, 0.7);
}

.form-input:focus {
    outline: none;
    border-color: rgba(255, 255, 255, 0.6);
    background: rgba(255, 255, 255, 0.15);
    box-shadow: 0 0 15px rgba(255, 255, 255, 0.2);
}

.btn-send {
    padding: 15px 40px;
    background: linear-gradient(135deg, #25D366, #128C7E);
    color: white;
    border: none;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
    font-family: 'Poppins', sans-serif;
    cursor: pointer;
    transition: all 0.3s ease;
    white-space: nowrap;
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.3);
}

.btn-send:hover {
    background: linear-gradient(135deg, #128C7E, #075E54);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.4);
}

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

/* Responsive Design */
@media (max-width: 768px) {
    .slide-form {
        flex-direction: column;
        gap: 10px;
		
    }
    
    .form-input, .btn-send {
        width: 100%;
    }
}





        .main-container {
            display: flex;
            align-items: center;
            gap: 50px;
            flex-wrap: wrap;
            justify-content: center;
            padding: 20px;
        }

        /* Daire İçinde El */
        .hand-circle {
            position: relative;
            width: 70px;
            height: 70px;
            background: linear-gradient(135deg, #ffffff, #f0f0f0);
            border-radius: 50%;
            display: flex;
            justify-content: center;
            align-items: center;
            box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3),
                        inset 0 -10px 30px rgba(0, 0, 0, 0.1);
            animation: circleFloat 3s ease-in-out infinite;
            overflow: hidden;
        }

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

        /* Daire Kenar Animasyonu */
        .hand-circle::before {
            content: '';
            position: absolute;
            width: 100%;
            height: 100%;
            border-radius: 50%;
            border: 5px solid transparent;
            border-top-color: #667eea;
            border-right-color: #667eea;
            animation: rotateBorder 3s linear infinite;
        }

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

        /* El ve Telefon */
        .hand-phone-wrapper {
            position: relative;
            z-index: 2;
            animation: waveHand 2s ease-in-out infinite;
        }

        @keyframes waveHand {
            0%, 100% {
                transform: rotate(-15deg);
            }
            50% {
                transform: rotate(15deg);
            }
        }

        .hand-icon {
            font-size: 40px;
            filter: drop-shadow(0 5px 15px rgba(0, 0, 0, 0.3));
            display: block;
            animation: wiggle 1s ease-in-out infinite;
        }

        @keyframes wiggle {
            0%, 100% {
                transform: translateX(0);
            }
            25% {
                transform: translateX(-5px);
            }
            75% {
                transform: translateX(5px);
            }
        }

        .phone-in-hand {
            position: absolute;
            font-size: 20px;
            top: 10px;
            right: -10px;
            animation: phoneRing 1s ease-in-out infinite;
            filter: drop-shadow(0 3px 8px rgba(0, 0, 0, 0.3));
        }

        @keyframes phoneRing {
            0%, 100% {
                transform: rotate(0deg);
            }
            25% {
                transform: rotate(-15deg);
            }
            75% {
                transform: rotate(15deg);
            }
        }

        /* Pulse Halkalar */
        .pulse-ring {
            position: absolute;
            width: 100%;
            height: 100%;
            border-radius: 50%;
            border: 3px solid rgba(102, 126, 234, 0.6);
            animation: pulse 2s ease-out infinite;
        }

        .pulse-ring:nth-child(2) {
            animation-delay: 0.5s;
        }

        .pulse-ring:nth-child(3) {
            animation-delay: 1s;
        }

        @keyframes pulse {
            0% {
                transform: scale(1);
                opacity: 1;
            }
            100% {
                transform: scale(1.4);
                opacity: 0;
            }
        }

        /* Telefon Bilgi Kutusu */
        .phone-info {

            text-align: center;
            animation: slideIn 1s ease-out;
            position: relative;
            overflow: hidden;
        }

        @keyframes slideIn {
            from {
                opacity: 0;
                transform: translateX(50px);
            }
            to {
                opacity: 1;
                transform: translateX(0);
            }
        }

        .phone-info::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
            animation: shine 3s infinite;
        }

        @keyframes shine {
            0% {
                left: -100%;
            }
            50%, 100% {
                left: 100%;
            }
        }

        .phone-title {
            font-size: 28px;
            color: #333;
            margin-bottom: 10px;
            font-weight: 700;
        }

        .phone-subtitle {
            font-size: 16px;
            color: #666;
            margin-bottom: 25px;
        }

        .phone-number {
            font-size: 38px;
            color: #fdfdfd;
            font-weight: bold;
            letter-spacing: 2px;
            margin-bottom: 25px;
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 15px;
        }

        .phone-icon-svg {
            width: 35px;
            height: 35px;
            fill: #25D366;
            animation: ringIcon 2s ease-in-out infinite;
        }

        @keyframes ringIcon {
            0%, 100% {
                transform: rotate(0deg);
            }
            10%, 30% {
                transform: rotate(-20deg);
            }
            20%, 40% {
                transform: rotate(20deg);
            }
        }

        .call-button {
            background: linear-gradient(135deg, #25D366, #128C7E);
            color: white;
            padding: 18px 45px;
            border: none;
            border-radius: 50px;
            font-size: 18px;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s ease;
            box-shadow: 0 10px 30px rgba(37, 211, 102, 0.3);
            display: inline-flex;
            align-items: center;
            gap: 12px;
            position: relative;
            z-index: 1;
        }

        .call-button:hover {
            transform: translateY(-3px) scale(1.05);
            box-shadow: 0 15px 40px rgba(37, 211, 102, 0.5);
        }

        .call-button:active {
            transform: translateY(0) scale(0.98);
        }

        .whatsapp-icon {
            width: 24px;
            height: 24px;
            fill: white;
        }

        /* Ok İşareti */
        .arrow {
            font-size: 40px;
            color: #fff;
            animation: bounceArrow 1.5s ease-in-out infinite;
            filter: drop-shadow(0 5px 15px rgba(0, 0, 0, 0.3));
			margin-top: -20px;
        }

        @keyframes bounceArrow {
            0%, 100% {
                transform: translateX(0);
            }
            50% {
                transform: translateX(20px);
            }
        }

        /* Responsive */
        @media (max-width: 768px) {
            .main-container {
                flex-direction: column;
                gap: 30px;
				margin-top: -150px;
            }

			.hand-circle {
			width: 70px;
				height: 70px;
				margin-top: 100px;
            }

            .hand-icon {
                font-size: 35px;
            }

            .phone-in-hand {
                font-size: 20px;
            }



            .phone-number {
                font-size: 28px;
                flex-direction: column;
                gap: 10px;
            }

            .arrow {
                transform: rotate(90deg);
            }
        }

        /* Yıldızlar */
        .stars {
            position: absolute;
            width: 100%;
            height: 100%;
            pointer-events: none;
        }

        .star {
            position: absolute;
            font-size: 20px;
            animation: starTwinkle 2s ease-in-out infinite;
            opacity: 0;
        }

        .star:nth-child(1) {
            top: 20%;
            left: 10%;
            animation-delay: 0s;
        }

        .star:nth-child(2) {
            top: 10%;
            right: 20%;
            animation-delay: 0.7s;
        }

        .star:nth-child(3) {
            bottom: 20%;
            left: 15%;
            animation-delay: 1.4s;
        }

        @keyframes starTwinkle {
            0%, 100% {
                opacity: 0;
                transform: scale(0) rotate(0deg);
            }
            50% {
                opacity: 1;
                transform: scale(1.2) rotate(180deg);
            }
        }
		
		
		
		
		
		
		
		
		
		
        .categories {
            display: flex;
            justify-content: space-around;
            align-items: center;
            height: 100%;
            padding: 20px;
        }

        .category {
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 15px;
            cursor: pointer;
            transition: transform 0.3s ease;
        }

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

        .icon-wrapper {
            width: 100px;
            height: 100px;
            background: rgba(255, 255, 255, 0.95);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            position: relative;
            box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
            animation: float 3s ease-in-out infinite;
        }

        .category:nth-child(1) .icon-wrapper {
            animation-delay: 0s;
        }

        .category:nth-child(2) .icon-wrapper {
            animation-delay: 0.5s;
        }

        .category:nth-child(3) .icon-wrapper {
            animation-delay: 1s;
        }

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

        /* Bebek Bakıcısı İkonu */
        .baby-sitter {
            width: 60px;
            height: 60px;
            position: relative;
        }

        .baby-head {
            width: 30px;
            height: 30px;
            background: #ffdbac;
            border-radius: 50%;
            position: absolute;
            top: 5px;
            left: 15px;
            animation: nod 2s ease-in-out infinite;
        }

        .baby-body {
            width: 35px;
            height: 25px;
            background: #ff9ecd;
            border-radius: 15px 15px 5px 5px;
            position: absolute;
            top: 32px;
            left: 12px;
        }

        .baby-arm {
            width: 15px;
            height: 8px;
            background: #ffdbac;
            border-radius: 5px;
            position: absolute;
            top: 35px;
        }

        .baby-arm.left {
            left: 5px;
            animation: wave-left 1.5s ease-in-out infinite;
        }

        .baby-arm.right {
            right: 5px;
            animation: wave-right 1.5s ease-in-out infinite;
        }

        @keyframes nod {
            0%, 100% { transform: rotate(0deg); }
            25% { transform: rotate(-5deg); }
            75% { transform: rotate(5deg); }
        }

        @keyframes wave-left {
            0%, 100% { transform: rotate(0deg); }
            50% { transform: rotate(-30deg); }
        }

        @keyframes wave-right {
            0%, 100% { transform: rotate(0deg); }
            50% { transform: rotate(30deg); }
        }

        /* Bebek İkonu */
        .baby {
            width: 60px;
            height: 60px;
            position: relative;
        }

        .baby-face {
            width: 35px;
            height: 35px;
            background: #ffd4a3;
            border-radius: 50%;
            position: absolute;
            top: 8px;
            left: 12px;
            animation: bounce 1.5s ease-in-out infinite;
        }

        .baby-eye {
            width: 5px;
            height: 5px;
            background: #333;
            border-radius: 50%;
            position: absolute;
            top: 12px;
            animation: blink 3s infinite;
        }

        .baby-eye.left { left: 10px; }
        .baby-eye.right { right: 10px; }

        .baby-smile {
            width: 15px;
            height: 8px;
            border: 2px solid #ff6b9d;
            border-top: none;
            border-radius: 0 0 15px 15px;
            position: absolute;
            bottom: 8px;
            left: 50%;
            transform: translateX(-50%);
        }

        .baby-bottle {
            width: 12px;
            height: 18px;
            background: rgba(255, 255, 255, 0.8);
            border-radius: 3px;
            position: absolute;
            bottom: 5px;
            right: -5px;
            animation: shake 1s ease-in-out infinite;
        }

        .bottle-top {
            width: 8px;
            height: 5px;
            background: #ff9ecd;
            border-radius: 2px;
            position: absolute;
            top: -5px;
            left: 2px;
        }

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

        @keyframes blink {
            0%, 90%, 100% { height: 5px; }
            95% { height: 1px; }
        }

        @keyframes shake {
            0%, 100% { transform: rotate(0deg); }
            25% { transform: rotate(-10deg); }
            75% { transform: rotate(10deg); }
        }

        /* Yaşlı Bakıcısı İkonu */
        .elderly-care {
            width: 60px;
            height: 60px;
            position: relative;
        }

        .elderly-head {
            width: 28px;
            height: 28px;
            background: #ffd4a3;
            border-radius: 50%;
            position: absolute;
            top: 8px;
            left: 16px;
        }

        .elderly-hair {
            width: 32px;
            height: 15px;
            background: #d3d3d3;
            border-radius: 15px 15px 0 0;
            position: absolute;
            top: 5px;
            left: 14px;
        }

        .elderly-body {
            width: 38px;
            height: 28px;
            background: #87ceeb;
            border-radius: 15px 15px 5px 5px;
            position: absolute;
            top: 32px;
            left: 11px;
        }

        .cane {
            width: 3px;
            height: 35px;
            background: #8b4513;
            position: absolute;
            top: 25px;
            right: 5px;
            transform-origin: top;
            animation: cane-swing 2s ease-in-out infinite;
        }

        .cane-handle {
            width: 10px;
            height: 10px;
            border: 3px solid #8b4513;
            border-radius: 50% 50% 0 0;
            border-bottom: none;
            position: absolute;
            top: -8px;
            left: -7px;
        }

        .heart {
            width: 15px;
            height: 15px;
            position: absolute;
            top: 15px;
            left: -10px;
            animation: heartbeat 1.5s ease-in-out infinite;
        }

        .heart::before,
        .heart::after {
            content: "";
            width: 8px;
            height: 12px;
            background: #ff6b9d;
            border-radius: 8px 8px 0 0;
            position: absolute;
        }

        .heart::before {
            left: 0;
            transform: rotate(-45deg);
            transform-origin: bottom right;
        }

        .heart::after {
            right: 0;
            transform: rotate(45deg);
            transform-origin: bottom left;
        }

        @keyframes cane-swing {
            0%, 100% { transform: rotate(0deg); }
            50% { transform: rotate(10deg); }
        }

        @keyframes heartbeat {
            0%, 100% { transform: scale(1); }
            25% { transform: scale(1.2); }
            50% { transform: scale(1); }
        }

        .category-label {
            color: white;
            font-size: 16px;
            font-weight: 600;
            text-align: center;
            text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
            animation: fade-in 1s ease-in-out;
        }

        @keyframes fade-in {
            from {
                opacity: 0;
                transform: translateY(10px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        /* Parlama efekti */
        .icon-wrapper::before {
            content: '';
            position: absolute;
            top: 10%;
            left: 10%;
            width: 40%;
            height: 40%;
            background: radial-gradient(circle, rgba(255,255,255,0.8) 0%, transparent 70%);
            border-radius: 50%;
            animation: shine 3s ease-in-out infinite;
        }

        @keyframes shine {
            0%, 100% { opacity: 0.3; }
            50% { opacity: 0.8; }
        }

        /* Arka plan dekoratif elementler */
        .bg-circle {
            position: absolute;
            border-radius: 50%;
            background: rgba(255, 255, 255, 0.1);
            animation: float-circle 6s ease-in-out infinite;
        }

        .bg-circle:nth-child(1) {
            width: 80px;
            height: 80px;
            top: 10%;
            left: 5%;
            animation-delay: 0s;
        }

        .bg-circle:nth-child(2) {
            width: 60px;
            height: 60px;
            top: 60%;
            right: 8%;
            animation-delay: 2s;
        }

        .bg-circle:nth-child(3) {
            width: 100px;
            height: 100px;
            bottom: 10%;
            left: 50%;
            animation-delay: 4s;
        }

        @keyframes float-circle {
            0%, 100% {
                transform: translate(0, 0) scale(1);
                opacity: 0.3;
            }
            50% {
                transform: translate(20px, -20px) scale(1.1);
                opacity: 0.5;
            }
        }		
		
		
		
		
		
		
        .badge {
            padding: 5px 5px;
            border-radius: 20px;
            font-size: 14px;
            font-weight: 600;
            display: inline-flex;
            align-items: center;
            gap: 8px;
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
            cursor: pointer;
            transition: all 0.3s ease;
            position: relative;
            overflow: hidden;
        }

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

        .badge:hover::before {
            left: 100%;
        }

        .badge:hover {
            transform: translateY(-2px);
            box-shadow: 0 6px 16px rgba(0, 0, 0, 0.2);
        }

        /* Ücretli Badge */
        .badge-paid {
            background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
            color: white;
			float: right;
			margin-top: -110px;
        }

        .badge-paid .icon {
            width: 18px;
            height: 18px;
            position: relative;
        }

        .coin {
            width: 18px;
            height: 18px;
            background: #ffd700;
            border-radius: 50%;
            position: relative;
            animation: rotate-coin 2s ease-in-out infinite;
            box-shadow: inset -2px -2px 4px rgba(0,0,0,0.2), 
                        inset 2px 2px 4px rgba(255,255,255,0.3);
        }

        .coin::before {
            content: '₺';
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            font-size: 12px;
            font-weight: bold;
            color: #b8860b;
        }

        @keyframes rotate-coin {
            0%, 100% {
                transform: rotateY(0deg);
            }
            50% {
                transform: rotateY(180deg);
            }
        }

        /* Ücretsiz Badge */
        .badge-free {
            background: linear-gradient(135deg, #11998e 0%, #38ef7d 100%);
            color: white;
			float: right;
			margin-top: -110px;
			}

        .badge-free .icon {
            width: 18px;
            height: 18px;
            position: relative;
        }

        .checkmark {
            width: 20px;
            height: 20px;
            border: 2px solid white;
            border-radius: 50%;
            position: relative;
            animation: pulse 2s ease-in-out infinite;
        }

        .checkmark::after {
            content: '';
            position: absolute;
            left: 5px;
            top: 2px;
            width: 5px;
            height: 10px;
            border: solid white;
            border-width: 0 2px 2px 0;
            transform: rotate(45deg);
        }

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

        /* Alternatif Stil 1 */
        .badge-paid-alt1 {
            background: #7d57d6;
            color: white;
        }

        .badge-free-alt1 {
            background: #10b981;
            color: white;
        }

        /* Alternatif Stil 2 */
        .badge-paid-alt2 {
            background: white;
            color: #7d57d6;
            border: 2px solid #7d57d6;
        }

        .badge-free-alt2 {
            background: white;
            color: #10b981;
            border: 2px solid #10b981;
        }

        /* Alternatif Stil 3 - Minimal */
        .badge-paid-alt3 {
            background: rgba(125, 87, 214, 0.1);
            color: #7d57d6;
            border: 1px solid rgba(125, 87, 214, 0.3);
        }

        .badge-free-alt3 {
            background: rgba(16, 185, 129, 0.1);
            color: #10b981;
            border: 1px solid rgba(16, 185, 129, 0.3);
        }

        .demo-container {
            display: flex;
            flex-direction: column;
            gap: 40px;
            align-items: center;
        }

        .badge-group {
            display: flex;
            gap: 20px;
            flex-wrap: wrap;
            justify-content: center;
        }

        .group-title {
            font-size: 18px;
            font-weight: 600;
            color: #333;
            margin-bottom: 15px;
            text-align: center;
        }

        .section {
            background: white;
            padding: 30px;
            border-radius: 15px;
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
        }		
		
		
		
       .bilgi-container {
            max-width: 1200px;
            margin: 0 auto;
            background: linear-gradient(to right, #00bcd4 50px, #e0f7fa 50px);
            border-radius: 4px;
            box-shadow: 0 2px 8px rgba(0,0,0,0.1);
            overflow: hidden;
            display: flex;
            min-height: 100px;
        }

        .icon-section {
            background-color: #00bcd4;
            width: 50px;
            display: flex;
            align-items: center;
            justify-content: center;
            flex-shrink: 0;
        }

        .info-icon {
            width: 28px;
            height: 28px;
            background-color: white;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 20px;
            font-weight: bold;
            color: #00bcd4;
        }

        .content-section {
            background-color: #e0f7fa;
            flex: 1;
            padding: 20px 25px;
        }

        .bilgi-baslik {
            font-size: 16px;
            font-weight: 600;
            color: #00796b;
            margin-bottom: 12px;
            letter-spacing: 0.3px;
        }

        .bilgi-detay {
            font-size: 13px;
            color: #424242;
            line-height: 1.6;
        }

        .bilgi-detay strong {
            color: #212121;
            font-weight: 600;
        }

        .bilgi-detay a {
            color: #0066cc;
            text-decoration: none;
            font-weight: 500;
        }

        .bilgi-detay a:hover {
            text-decoration: underline;
        }

        /* Responsive tasarım */
        @media (max-width: 768px) {
            .bilgi-container {
                background: linear-gradient(to right, #00bcd4 40px, #e0f7fa 40px);
            }

            .icon-section {
                width: 40px;
            }

            .info-icon {
                width: 24px;
                height: 24px;
                font-size: 16px;
            }

            .content-section {
                padding: 15px 20px;
            }

            .bilgi-baslik {
                font-size: 15px;
            }

            .bilgi-detay {
                font-size: 12px;
            }
        }		
		
.kategori-card.fade-in.visible a {
  text-decoration: none;
}		