 /* Hero Section Styles - İyileştirilmiş */
        .hero-section {
            display: grid;
            grid-template-columns: 1fr 1fr;
            align-items: center;
            gap: clamp(1.5rem, 4vw, 3rem);
            padding: clamp(2rem, 4vw, 4rem) clamp(1rem, 3vw, 2rem);
            background: linear-gradient(135deg, #fafbfc 0%, #fff5f5 50%, #fff0f0 100%);
            min-height: auto;
            position: relative;
            overflow: hidden;
        }

        .hero-section::before {
            content: '';
            position: absolute;
            top: -50%;
            right: -10%;
            width: 600px;
            height: 600px;
            background: radial-gradient(circle, rgba(197, 142, 142, 0.1) 0%, transparent 70%);
            border-radius: 50%;
            z-index: 0;
        }

        .hero-section::after {
            content: '';
            position: absolute;
            bottom: -20%;
            left: -5%;
            width: 500px;
            height: 500px;
            background: radial-gradient(circle, rgba(255, 107, 107, 0.08) 0%, transparent 70%);
            border-radius: 50%;
            z-index: 0;
        }

        .hero-content {
            position: relative;
            z-index: 2;
            display: flex;
            flex-direction: column;
            gap: clamp(1.2rem, 2.5vw, 1.8rem);
            padding: clamp(1.2rem, 3vw, 1.8rem) clamp(1.2rem, 3vw, 1.8rem);
            background: linear-gradient(135deg, rgba(255, 255, 255, 0.95) 0%, rgba(249, 245, 243, 0.95) 100%);
            border-radius: 1.5rem;
            box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
            border: 2px solid rgba(255, 107, 107, 0.15);
            backdrop-filter: blur(10px);
            width: 100%;
            min-width: 0;
        }

        .hero-title {
            font-size: clamp(1.8rem, 3.5vw, 3rem);
            margin: 0;
            font-weight: 900;
            line-height: 1.15;
            letter-spacing: -0.02em;
            background: linear-gradient(135deg, #FF6B6B 0%, #c58e8e 50%, #FF6B6B 100%);
            background-size: 200% 200%;
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            animation: gradientShift 4s ease-in-out infinite;
            text-shadow: 0 0 40px rgba(255, 107, 107, 0.3);
            filter: drop-shadow(0 0 20px rgba(255, 107, 107, 0.2));
            word-wrap: break-word;
            overflow-wrap: break-word;
        }

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

        .hero-question h2 {
            font-size: clamp(1rem, 1.8vw, 1.4rem);
            color: rgba(44, 24, 16, 0.85);
            margin: 0;
            line-height: 1.5;
            word-wrap: break-word;
            overflow-wrap: break-word;
            font-weight: 600;
            letter-spacing: -0.01em;
        }

        .expertise-slider {
            display: flex;
            flex-direction: column;
            gap: 1rem;
            margin: 1.5rem 0;
        }

        .expertise-item {
            background: linear-gradient(135deg, #fff 0%, #f9f5f3 100%);
            padding: 1.8rem;
            border-radius: 1.2rem;
            border-left: 4px solid #FF6B6B;
            box-shadow: 0 4px 16px rgba(197, 142, 142, 0.08);
            position: relative;
            transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
            cursor: pointer;
            display: block;
            width: 100%;
            overflow: hidden;
        }

        .expertise-item::before {
            content: '';
            position: absolute;
            top: 0;
            right: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(197, 142, 142, 0.08), transparent);
            transition: right 0.6s cubic-bezier(0.4, 0, 0.2, 1);
        }

        .expertise-item::after {
            content: '';
            position: absolute;
            left: 0;
            top: 0;
            width: 4px;
            height: 0;
            background: linear-gradient(180deg, #FF6B6B 0%, #c58e8e 100%);
            transition: height 0.6s cubic-bezier(0.4, 0, 0.2, 1);
            z-index: 2;
        }

        .expertise-item:hover {
            transform: translateX(8px) translateY(-4px);
            border-left-color: #c58e8e;
            box-shadow: 0 12px 40px rgba(255, 107, 107, 0.2), 0 0 20px rgba(255, 107, 107, 0.1);
            background: linear-gradient(135deg, #fff 0%, #fff6f4 100%);
        }

        .expertise-item:hover::after {
            height: 100%;
        }

        .expertise-item:hover::before {
            right: 100%;
        }

        .expertise-item.active {
            background: linear-gradient(135deg, #fffbe6 0%, #fff 100%);
            border-left-color: #c58e8e;
            box-shadow: 0 12px 40px rgba(197, 142, 142, 0.2);
        }

        .expertise-item h3 {
            color: #FF6B6B;
            font-size: clamp(1rem, 1.5vw, 1.2rem);
            margin: 0 0 0.6rem 0;
            font-weight: 700;
            letter-spacing: 0.3px;
        }

        .expertise-item p {
            color: rgba(44, 24, 16, 0.75);
            line-height: 1.6;
            font-size: 0.95rem;
            font-weight: 500;
            margin: 0;
        }

        .consultation-info {
            background: linear-gradient(135deg, rgba(255, 107, 107, 0.08) 0%, rgba(197, 142, 142, 0.08) 100%);
            border: 2px solid rgba(197, 142, 142, 0.2);
            border-radius: 1.5rem;
            padding: 2rem;
            margin: 1.5rem 0 0 0;
            text-align: center;
        }

        .consultation-info p {
            margin: 0 0 1rem 0;
            color: #2c1810;
            font-size: 0.95rem;
            line-height: 1.6;
            font-weight: 500;
        }

        .consultation-info p:last-child {
            margin-bottom: 0;
        }

        .action-text {
            color: #FF6B6B;
            font-weight: 800;
            font-size: 1.05rem;
            letter-spacing: 0.3px;
        }

        .hero-buttons {
            display: flex;
            gap: clamp(0.8rem, 2vw, 1.2rem);
            flex-wrap: wrap;
            margin-top: clamp(0.8rem, 2vw, 1.2rem);
            width: 100%;
        }

        .hero-button {
            text-decoration: none;
            border: none;
            cursor: pointer;
            font-weight: 700;
            padding: clamp(0.8rem, 1.5vw, 1rem) clamp(1.2rem, 2vw, 1.8rem);
            border-radius: 1rem;
            font-size: clamp(0.85rem, 1.5vw, 0.95rem);
            transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
            display: inline-flex;
            align-items: center;
            justify-content: center;
            gap: clamp(0.5rem, 1vw, 0.6rem);
            letter-spacing: 0.2px;
            position: relative;
            overflow: hidden;
            flex: 1 1 auto;
            min-width: 140px;
        }

        .hero-button::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: rgba(255, 255, 255, 0.2);
            transition: left 0.5s ease;
            z-index: 1;
        }

        .hero-button:hover::before {
            left: 100%;
        }

        .hero-button.primary {
            background: linear-gradient(135deg, #FF6B6B 0%, #c58e8e 100%);
            color: white;
            box-shadow: 0 8px 24px rgba(255, 107, 107, 0.3), 0 0 20px rgba(255, 107, 107, 0.2);
            animation: buttonPulse 2s ease-in-out infinite;
        }

        .hero-button.primary:hover {
            transform: translateY(-4px) scale(1.05);
            box-shadow: 0 16px 48px rgba(255, 107, 107, 0.5), 0 0 30px rgba(255, 107, 107, 0.4);
            filter: brightness(1.1);
            animation: none;
        }

        .hero-button.primary:active {
            transform: translateY(-1px) scale(0.98);
        }

        @keyframes buttonPulse {
            0%, 100% {
                box-shadow: 0 8px 24px rgba(255, 107, 107, 0.3), 0 0 20px rgba(255, 107, 107, 0.2);
            }
            50% {
                box-shadow: 0 8px 24px rgba(255, 107, 107, 0.5), 0 0 30px rgba(255, 107, 107, 0.3);
            }
        }

        .hero-button.secondary {
            background: white;
            color: #FF6B6B;
            border: 2.5px solid #FF6B6B;
            box-shadow: 0 4px 16px rgba(255, 107, 107, 0.15), inset 0 0 0 1px rgba(255, 107, 107, 0.1);
            font-weight: 800;
        }

        .hero-button.secondary:hover {
            background: linear-gradient(135deg, #fff5f5 0%, #fff 100%);
            transform: translateY(-4px) scale(1.05);
            box-shadow: 0 12px 32px rgba(255, 107, 107, 0.3), inset 0 0 0 2px #FF6B6B;
            color: #c58e8e;
            border-color: #c58e8e;
        }

        .hero-button.secondary:active {
            transform: translateY(-1px) scale(0.98);
        }

        .featured-image {
            position: relative;
            z-index: 2;
            display: flex;
            flex-direction: column;
            justify-content: flex-start;
            align-items: center;
            gap: clamp(1.5rem, 3vw, 2.5rem);
            padding-top: clamp(1rem, 2vw, 1.5rem);
            width: 100%;
            min-width: 0;
        }

        .main-image {
            width: 100%;
            max-width: 100%;
            height: auto;
            border-radius: 2rem;
            box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15), 0 0 40px rgba(255, 107, 107, 0.15);
            border: 4px solid white;
            transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
            object-fit: cover;
            position: relative;
            animation: imageGlow 3s ease-in-out infinite;
        }

        .main-image:hover {
            transform: translateY(-12px) scale(1.03);
            box-shadow: 0 40px 100px rgba(0, 0, 0, 0.2), 0 0 60px rgba(255, 107, 107, 0.3);
            border-color: #FF6B6B;
            animation: none;
        }

        @keyframes imageGlow {
            0%, 100% {
                box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15), 0 0 40px rgba(255, 107, 107, 0.15);
            }
            50% {
                box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15), 0 0 60px rgba(255, 107, 107, 0.25);
            }
        }

        .customer-cards {
            display: flex;
            flex-wrap: wrap;
            justify-content: center;
            gap: clamp(0.8rem, 1.5vw, 1.2rem);
            width: 100%;
            padding: clamp(1rem, 2vw, 1.5rem) 0;
            border-top: 2px solid #f0f0f0;
            margin-top: clamp(0.8rem, 1.5vw, 1rem);
        }

        .mini-card {
            background: linear-gradient(135deg, #fff 0%, #f9f5f3 100%);
            border: 1px solid rgba(255, 107, 107, 0.2);
            border-radius: 1.2rem;
            padding: clamp(0.8rem, 1.5vw, 1.2rem) !important;
            min-width: 130px;
            max-width: 160px;
            transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
            box-shadow: 0 8px 24px rgba(197, 142, 142, 0.08), 0 0 0 0 rgba(255, 107, 107, 0.1);
            position: relative;
            overflow: hidden;
        }

        .mini-card::before {
            content: '';
            position: absolute;
            top: -50%;
            left: -50%;
            width: 200%;
            height: 200%;
            background: radial-gradient(circle, rgba(255, 107, 107, 0.1) 0%, transparent 70%);
            opacity: 0;
            transition: opacity 0.4s ease;
        }

        .mini-card:hover {
            transform: translateY(-10px) scale(1.05);
            box-shadow: 0 16px 48px rgba(255, 107, 107, 0.25), 0 0 30px rgba(255, 107, 107, 0.2);
            border-color: rgba(255, 107, 107, 0.5);
            background: linear-gradient(135deg, #fff 0%, #fff6f4 100%);
        }

        .mini-card:hover::before {
            opacity: 1;
        }

        .mini-card i {
            color: #FF6B6B;
            margin-bottom: 0.8rem;
            transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
            display: inline-block;
            animation: iconBounce 2s ease-in-out infinite;
            position: relative;
            z-index: 1;
        }

        .mini-card:hover i {
            animation: iconBounceActive 0.6s ease-in-out;
            transform: scale(1.2) rotate(10deg);
        }

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

        @keyframes iconBounceActive {
            0%, 100% { transform: scale(1.2) rotate(10deg); }
            50% { transform: scale(1.3) rotate(-10deg); }
        }

        .mini-card .fw-bold {
            font-size: 1.1rem;
            color: #14274E;
            margin-bottom: 0.3rem;
            font-weight: 900;
            position: relative;
            z-index: 1;
        }

        .mini-card .small {
            color: #999;
            font-size: 0.85rem;
            position: relative;
            z-index: 1;
        }

        @media (max-width: 1024px) {
            .hero-section {
                grid-template-columns: 1fr;
                gap: 3rem;
                padding: 4rem 2rem;
                min-height: auto;
            }

            .hero-section::before,
            .hero-section::after {
                display: none;
            }

            .hero-content {
                padding: 2rem;
            }

            .featured-image {
                order: -1;
                gap: 2.5rem;
            }

            .main-image {
                max-width: 400px;
            }

            .expertise-slider {
                gap: 1rem;
                margin: 1.5rem 0;
            }

            .expertise-item {
                padding: 1.5rem;
                border-radius: 1.1rem;
            }

            .expertise-item h3 {
                font-size: 1.05rem;
            }

            .expertise-item p {
                font-size: 0.9rem;
            }

            .consultation-info {
                padding: 1.8rem;
                margin: 1.5rem 0 0 0;
                border-radius: 1.3rem;
            }

            .consultation-info p {
                font-size: 0.93rem;
            }

            .customer-cards {
                gap: 1.2rem;
                padding: 1.5rem 0;
            }

            .mini-card {
                min-width: 150px;
                max-width: 180px;
                padding: 1.3rem !important;
            }
        }

        @media (max-width: 768px) {
            .hero-section {
                grid-template-columns: 1fr;
                gap: 2rem;
                padding: 2.5rem 1.5rem;
            }

            .hero-content {
                padding: 1.8rem;
                gap: 1.5rem;
            }

            .hero-title {
                font-size: clamp(1.8rem, 4vw, 2.4rem);
            }

            .hero-question h2 {
                font-size: clamp(1.05rem, 2.8vw, 1.4rem);
                margin-bottom: 1.2rem;
            }

            .expertise-slider {
                display: grid;
                grid-template-columns: 1fr;
                gap: 0.8rem;
                margin: 1.2rem 0;
            }

            .expertise-item {
                padding: 1.3rem;
                border-radius: 0.95rem;
                border-left: 3px solid #FF6B6B;
            }

            .expertise-item h3 {
                font-size: 0.95rem;
                margin-bottom: 0.4rem;
            }

            .expertise-item p {
                font-size: 0.85rem;
                line-height: 1.5;
            }

            .consultation-info {
                padding: 1.3rem;
                margin: 1.2rem 0 0 0;
                border-radius: 1.1rem;
            }

            .consultation-info p {
                font-size: 0.88rem;
                margin-bottom: 0.7rem;
            }

            .hero-buttons {
                display: grid;
                grid-template-columns: 1fr;
                gap: 0.9rem;
                margin-top: 1.2rem;
            }

            .hero-button {
                padding: 0.95rem 2rem;
                font-size: 0.9rem;
                width: 100%;
                justify-content: center;
            }

            .main-image {
                max-width: 100%;
                border-radius: 1.8rem;
            }

            .featured-image {
                gap: 2rem;
                padding-top: 1.2rem;
            }

            .customer-cards {
                gap: 0.9rem;
                padding: 1.2rem 0;
                justify-content: center;
            }

            .mini-card {
                min-width: 135px;
                max-width: 155px;
                padding: 1.1rem !important;
                font-size: 0.85rem;
            }

            .mini-card i {
                font-size: 2rem;
            }
        }

        @media (max-width: 768px) {
            .hero-section {
                grid-template-columns: 1fr;
                gap: 2rem;
                padding: 2.5rem 1.5rem;
            }

            .hero-content {
                padding: clamp(1rem, 2.5vw, 1.5rem);
                gap: clamp(1rem, 2vw, 1.5rem);
            }

            .hero-title {
                font-size: clamp(1.5rem, 3vw, 2.5rem);
            }

            .hero-question h2 {
                font-size: clamp(0.95rem, 1.8vw, 1.2rem);
            }

            .featured-image {
                gap: 2rem;
                padding-top: 1.2rem;
            }

            .customer-cards {
                gap: 0.9rem;
                padding: 1.2rem 0;
                justify-content: center;
            }

            .mini-card {
                min-width: 135px;
                max-width: 155px;
                padding: 1.1rem !important;
                font-size: 0.85rem;
            }

            .mini-card i {
                font-size: 2rem;
            }
        }

        @media (max-width: 480px) {
            .hero-section {
                grid-template-columns: 1fr;
                gap: 1.5rem;
                padding: 1.5rem 1rem;
            }

            .hero-content {
                padding: 1.5rem;
                gap: 1.2rem;
                border-radius: 1.5rem;
            }

            .hero-title {
                font-size: clamp(1.4rem, 3.5vw, 2rem);
            }

            .hero-question h2 {
                font-size: clamp(0.95rem, 2vw, 1.2rem);
                margin-bottom: 1rem;
            }

            .expertise-slider {
                display: grid;
                grid-template-columns: 1fr;
                gap: 0.6rem;
                margin: 0.8rem 0;
            }

            .expertise-item {
                padding: 1rem;
                border-radius: 0.8rem;
                border-left: 3px solid #FF6B6B;
            }

            .expertise-item h3 {
                font-size: 0.9rem;
                margin-bottom: 0.3rem;
            }

            .expertise-item p {
                font-size: 0.8rem;
                line-height: 1.4;
            }

            .consultation-info {
                padding: 1rem;
                margin: 0.8rem 0 0 0;
                border-radius: 0.95rem;
                border: 1.5px solid rgba(197, 142, 142, 0.2);
            }

            .consultation-info p {
                font-size: 0.82rem;
                margin-bottom: 0.6rem;
            }

            .hero-buttons {
                display: grid;
                grid-template-columns: 1fr;
                gap: 0.7rem;
                margin-top: 0.8rem;
            }

            .hero-button {
                padding: 0.9rem 1.5rem;
                font-size: 0.85rem;
                width: 100%;
                justify-content: center;
            }

            .main-image {
                max-width: 100%;
                border-radius: 1.5rem;
                max-height: 300px;
            }

            .featured-image {
                gap: 1.5rem;
                padding-top: 0.8rem;
            }

            .customer-cards {
                gap: 0.7rem;
                padding: 0.8rem 0;
                justify-content: center;
            }

            .mini-card {
                min-width: 120px;
                max-width: 135px;
                padding: 0.95rem !important;
                font-size: 0.8rem;
            }

            .mini-card i {
                font-size: 1.6rem;
            }
        }

        /* Blog Grid Styles - İyileştirilmiş */
        .blog-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 2rem;
            padding: 2.5rem 0;
            max-width: 1400px;
            margin: 0 auto;
        }

        .blog-card {
            background: linear-gradient(135deg, #fff 0%, #f9f5f3 100%);
            border-radius: 1.8rem;
            padding: 2rem;
            transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
            position: relative;
            overflow: hidden;
            box-shadow: 0 8px 24px rgba(197, 142, 142, 0.12);
            border: 2px solid rgba(255, 107, 107, 0.15);
            cursor: pointer;
            display: flex;
            flex-direction: column;
            height: 100%;
        }

        .blog-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(255, 107, 107, 0.1), transparent);
            transition: left 0.6s cubic-bezier(0.4, 0, 0.2, 1);
            z-index: 1;
        }

        .blog-card:hover {
            transform: translateY(-10px) scale(1.02);
            box-shadow: 0 16px 48px rgba(255, 107, 107, 0.2), 0 0 30px rgba(255, 107, 107, 0.1);
            border-color: rgba(255, 107, 107, 0.4);
            background: linear-gradient(135deg, #fff 0%, #fff6f4 100%);
        }

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

        .blog-image {
            width: 80px;
            height: 80px;
            background: linear-gradient(135deg, #FF6B6B 0%, #c58e8e 100%);
            border-radius: 1.2rem;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 1.5rem;
            transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
            box-shadow: 0 8px 20px rgba(255, 107, 107, 0.3);
            position: relative;
            z-index: 2;
        }

        .blog-card:hover .blog-image {
            transform: scale(1.15) rotate(-8deg);
            box-shadow: 0 12px 30px rgba(255, 107, 107, 0.4);
        }

        .blog-image i {
            font-size: 2rem;
            color: white;
            transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        }

        .blog-card:hover .blog-image i {
            transform: scale(1.1) rotate(10deg);
        }

        .blog-content {
            position: relative;
            z-index: 2;
            flex: 1;
            display: flex;
            flex-direction: column;
        }

        .blog-tag {
            display: inline-block;
            padding: 0.6rem 1.2rem;
            background: linear-gradient(135deg, rgba(255, 107, 107, 0.15) 0%, rgba(197, 142, 142, 0.1) 100%);
            color: #FF6B6B;
            border: 1px solid rgba(255, 107, 107, 0.2);
            border-radius: 25px;
            font-size: 0.8rem;
            margin-bottom: 1rem;
            transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
            font-weight: 700;
            letter-spacing: 0.3px;
            width: fit-content;
        }

        .blog-card:hover .blog-tag {
            background: linear-gradient(135deg, rgba(255, 107, 107, 0.25) 0%, rgba(197, 142, 142, 0.15) 100%);
            border-color: rgba(255, 107, 107, 0.4);
            transform: translateX(6px);
        }

        .blog-content h3 {
            color: #2c1810;
            font-size: 1.3rem;
            margin-bottom: 0.8rem;
            line-height: 1.4;
            transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
            font-weight: 800;
            letter-spacing: -0.01em;
        }

        .blog-card:hover .blog-content h3 {
            color: #FF6B6B;
        }

        .blog-content p {
            color: rgba(44, 24, 16, 0.75);
            line-height: 1.7;
            margin-bottom: 0;
            transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
            font-size: 0.95rem;
            flex: 1;
        }

        .blog-card:hover .blog-content p {
            color: rgba(44, 24, 16, 0.9);
        }

        @media (max-width: 768px) {
            .blog-grid {
                gap: 1.2rem;
                grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            }

            .blog-card {
                padding: 1.2rem;
                border-radius: 12px;
            }

            .blog-image {
                width: 50px;
                height: 50px;
                margin-bottom: 0.8rem;
            }

            .blog-image i {
                font-size: 1.3rem;
            }

            .blog-tag {
                font-size: 0.75rem;
                padding: 0.3rem 0.8rem;
                margin-bottom: 0.6rem;
            }

            .blog-content h3 {
                font-size: 1rem;
                margin-bottom: 0.6rem;
            }

            .blog-content p {
                font-size: 0.85rem;
            }
        }

        @media (max-width: 480px) {
            .blog-grid {
                gap: 1rem;
                grid-template-columns: 1fr;
            }

            .blog-card {
                padding: 1rem;
                border-radius: 10px;
            }

            .blog-image {
                width: 45px;
                height: 45px;
                margin-bottom: 0.7rem;
            }

            .blog-image i {
                font-size: 1.2rem;
            }

            .blog-tag {
                font-size: 0.7rem;
                padding: 0.25rem 0.7rem;
                margin-bottom: 0.5rem;
            }

            .blog-content h3 {
                font-size: 0.95rem;
                margin-bottom: 0.5rem;
            }

            .blog-content p {
                font-size: 0.8rem;
            }
        }

        /* Blog Modal Styles */
        .expertise-modal-meta {
            display: flex;
            gap: 2rem;
            padding: 1rem 2rem;
            background: rgba(197, 142, 142, 0.05);
            border-radius: 10px;
            margin: 1rem 0;
        }

        .expertise-modal-meta span {
            display: flex;
            align-items: center;
            gap: 0.5rem;
            color: #666;
            font-size: 0.9rem;
        }

        .expertise-modal-meta i {
            color: #c58e8e;
        }

        @media (max-width: 768px) {
    .step-number {
        margin-right: 0;
        margin-bottom: 1rem;
        color: #000000;
    }
}
         .step-number {
            border-radius: 50%;
            background: rgb(197, 142, 142);
            color: rgb(0, 0, 0);
            width: 30px;
            height: 30px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-weight: bold;
            box-shadow: 0 4px 10px rgba(197, 142, 142, 0.3);
            margin: 0 auto 1rem auto;
            border: none;
        }
        @keyframes float {
            0% { transform: translateY(0); }
            50% { transform: translateY(-10px); }
            100% { transform: translateY(0); }
        }

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

        @keyframes shimmer {
            0% { background-position: -200% 0; }
            100% { background-position: 200% 0; }
        }

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

        @keyframes fadeIn {
            from { opacity: 0; }
            to { opacity: 1; }
        }

        /* Problems Container Unique Styles */
        .problems-container {
            padding: 0;
            margin: 0;
            width: 100%;
            position: relative;
            overflow: hidden;
            background: linear-gradient(135deg, #fff6f6 0%, #fff 100%);
        }

        /* Eski grid'i tamamen gizle */
        .problems-container #problems-grid {
            display: none !important;
            visibility: hidden !important;
            position: absolute !important;
            left: -9999px !important;
            width: 0 !important;
            height: 0 !important;
            overflow: hidden !important;
        }

        .problems-container #problems-grid .problem-card {
            display: none !important;
            visibility: hidden !important;
        }
        
        .problems-container .problems-section {
            padding: 6rem 2rem;
            position: relative;
            background-image: 
                radial-gradient(circle at 20% 20%, rgba(197, 142, 142, 0.03) 0%, transparent 50%),
                radial-gradient(circle at 80% 80%, rgba(197, 142, 142, 0.03) 0%, transparent 50%);
        }

        @media (max-width: 768px) {
            .problems-container .problems-section {
                padding: 4rem 1.5rem;
            }
        }

        @media (max-width: 480px) {
            .problems-container .problems-section {
                padding: 3rem 1rem;
            }
        }

        /* Tekrar eden .expertise-modal-meta tanımı silindi ve tek bir tanım kullanılıyor */

        .modal-section {
            padding: 2rem 0;
            border-bottom: 1px solid rgba(197, 142, 142, 0.1);
        }

        .modal-section:last-child {
            border-bottom: none;
        }

        .modal-section h4 {
            color: #2c1810;
            font-size: 1.4rem;
            margin-bottom: 1.5rem;
            font-weight: 600;
        }

        .modal-section h5 {
            color: #a06b6b;
            font-size: 1.2rem;
            margin: 1.5rem 0 1rem;
            font-weight: 600;
        }

        .modal-section p {
            color: #444;
            line-height: 1.8;
            margin-bottom: 1.5rem;
            font-size: 1.05rem;
        }

        .modal-section ul, 
        .modal-section ol {
            padding-left: 1.5rem;
            margin-bottom: 1.5rem;
        }

        .modal-section li {
            color: #555;
            line-height: 1.8;
            margin-bottom: 0.8rem;
            position: relative;
        }

        .modal-section ul li::before {
            content: '•';
            position: absolute;
            left: -1.2rem;
            color: #c58e8e;
            font-size: 1.2rem;
        }

        .generation-list {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 2rem;
            margin: 2rem 0;
        }

        .generation-item {
            background: rgba(197, 142, 142, 0.05);
            padding: 1.5rem;
            border-radius: 15px;
            border: 1px solid rgba(197, 142, 142, 0.1);
        }

        @media (max-width: 768px) {
            .expertise-modal-meta {
                flex-direction: column;
                gap: 1rem;
            }

            .modal-section {
                padding: 1.5rem 0;
            }

            .modal-section h4 {
                font-size: 1.2rem;
            }

            .modal-section h5 {
                font-size: 1.1rem;
            }

            .generation-list {
                grid-template-columns: 1fr;
                gap: 1rem;
            }
        }

        /* Tekrar eden .blog-card .expertise-icon stillerini silindi ve yukarıdaki tanımını kullanıyoruz */

        .problems-container .problems-section::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23FFC0CB' fill-opacity='0.1'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
            opacity: 0.5;
            pointer-events: none;
        }

        .problems-container .section-title {
            text-align: center;
            margin-bottom: 5rem;
            color: #2c1810;
            font-weight: 800;
            font-size: clamp(2.2rem, 4vw, 3.2rem);
            position: relative;
            letter-spacing: -0.02em;
            padding: 0 1rem;
        }

        .problems-container .section-title::before {
            content: attr(data-text);
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            font-size: clamp(4rem, 8vw, 6rem);
            color: rgba(197, 142, 142, 0.05);
            white-space: nowrap;
            font-weight: 900;
            z-index: -1;
        }

        .problems-container .section-title::after {
            content: '';
            position: absolute;
            bottom: -15px;
            left: 50%;
            transform: translateX(-50%);
            width: 120px;
            height: 2px;
            background: linear-gradient(to right, 
                transparent,
                #c58e8e,
                #c58e8e,
                transparent
            );
        }

        .problems-container .title-icon {
            font-size: 2.4rem;
            margin-right: 1rem;
            vertical-align: middle;
            display: inline-block;
            color: #c58e8e;
            opacity: 0.9;
        }

        .problems-container .problems-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
            gap: 3rem;
            padding: 0 2rem;
            max-width: 1400px;
            margin: 0 auto;
            perspective: 1000px;
        }

        /* Problems Slider Styles */
        .problems-slider-wrapper {
            display: flex;
            align-items: center;
            gap: 2rem;
            margin-top: 4rem;
            padding: 0 2rem;
            max-width: 100%;
            margin-left: auto;
            margin-right: auto;
            position: relative;
            justify-content: center;
        }

        .problems-slider-container {
            flex: 1;
            overflow: hidden;
            border-radius: 20px;
            max-width: 1200px;
            width: 100%;
        }

        .problems-slider-track {
            display: flex;
            gap: 3rem;
            transition: transform 0.5s ease-out;
            width: 100%;
        }

        .problems-slider-item {
            flex: 0 0 calc(33.333% - 2rem);
            min-width: 0;
            width: auto;
        }

        @media (max-width: 1200px) {
            .problems-slider-wrapper {
                gap: 1rem;
                padding: 0 1.5rem;
            }
            
            .problems-slider-item {
                flex: 0 0 calc(50% - 1.5rem);
            }
        }

        @media (max-width: 768px) {
            .problems-slider-wrapper {
                gap: 1rem;
                padding: 0 1rem;
            }
            
            .problems-slider-item {
                flex: 0 0 calc(100% - 1rem);
            }
            
            .problems-slider-container {
                max-width: 100%;
            }
        }

        @media (max-width: 480px) {
            .problems-slider-wrapper {
                gap: 0.5rem;
                padding: 0 0.5rem;
                margin-top: 2rem;
            }
            
            .problems-slider-item {
                flex: 0 0 100%;
            }
            
            .problems-container .section-title {
                margin-bottom: 2rem;
                font-size: clamp(1.4rem, 4vw, 2.2rem);
            }
        }

        .problems-container .problem-card {
            background: linear-gradient(135deg, #fff 0%, #f9f5f3 100%);
            border-radius: 1.8rem;
            padding: 2.5rem;
            transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
            position: relative;
            overflow: hidden;
            box-shadow: 
                0 8px 24px rgba(197, 142, 142, 0.12),
                0 0 20px rgba(197, 142, 142, 0.06);
            border: 2px solid rgba(255, 107, 107, 0.15);
            display: flex;
            flex-direction: column;
            height: 100%;
            cursor: pointer;
        }

        .problems-container .problem-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(255, 107, 107, 0.1), transparent);
            transition: left 0.6s cubic-bezier(0.4, 0, 0.2, 1);
            z-index: 1;
        }

        .problems-container .problem-card::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 0;
            height: 4px;
            background: linear-gradient(90deg, #FF6B6B 0%, #c58e8e 100%);
            transition: width 0.6s cubic-bezier(0.4, 0, 0.2, 1);
            z-index: 2;
        }

        .problems-container .problem-card:hover {
            transform: translateY(-12px) scale(1.02);
            box-shadow: 
                0 16px 48px rgba(255, 107, 107, 0.2),
                0 0 30px rgba(255, 107, 107, 0.1);
            border-color: rgba(255, 107, 107, 0.4);
            background: linear-gradient(135deg, #fff 0%, #fff6f4 100%);
        }

        .problems-container .problem-card:hover::before {
            left: 100%;
        }

        .problems-container .problem-card:hover::after {
            width: 100%;
        }

        @media (max-width: 768px) {
            .problems-container .problem-card {
                padding: 2rem 1.5rem;
            }
        }

        @media (max-width: 480px) {
            .problems-container .problem-card {
                padding: 1.5rem 1rem;
            }
        }

        .problems-container .problem-icon {
            position: relative;
            font-size: 2rem;
            margin-bottom: 2.5rem;
            width: 80px;
            height: 80px;
            display: flex;
            align-items: center;
            justify-content: center;
            border-radius: 24px;
            background: rgba(197, 142, 142, 0.08);
            color: #c58e8e;
            transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
        }

        .problems-container .problem-icon::after {
            content: '';
            position: absolute;
            inset: -3px;
            border: 2px solid rgba(197, 142, 142, 0.15);
            border-radius: inherit;
            opacity: 0;
            transform: scale(0.9);
            transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        }

        .problems-container .problem-card:hover .problem-icon {
            transform: translateY(-5px);
            background: rgba(197, 142, 142, 0.12);
        }

        .problems-container .problem-card:hover .problem-icon::after {
            opacity: 1;
            transform: scale(1);
        }

        .problems-container .problem-title {
            color: #2c1810;
            font-size: 1.6rem;
            margin-bottom: 1.2rem;
            font-weight: 700;
            line-height: 1.4;
            letter-spacing: -0.01em;
            position: relative;
            transition: transform 0.3s ease;
        }

        .problems-container .problem-description {
            color: rgba(44, 24, 16, 0.75);
            line-height: 1.8;
            margin-bottom: 2.2rem;
            font-size: 1.05rem;
            position: relative;
            transition: transform 0.3s ease;
        }

        .problems-container .problem-card:hover .problem-title,
        .problems-container .problem-card:hover .problem-description {
            transform: translateZ(5px);
        }

        .problems-container .problem-link {
            display: inline-flex;
            align-items: center;
            gap: 12px;
            padding: 1rem 2rem;
            background: transparent;
            position: relative;
            border: none;
            color: #c58e8e;
            text-decoration: none;
            font-weight: 600;
            font-size: 1rem;
            transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
            letter-spacing: 0.3px;
            z-index: 1;
        }

        .problems-container .problem-link::before {
            content: '';
            position: absolute;
            inset: 0;
            background: rgba(197, 142, 142, 0.1);
            border-radius: 12px;
            z-index: -1;
            transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        }

        .problems-container .problem-link::after {
            content: '';
            position: absolute;
            inset: 0;
            border: 2px solid rgba(197, 142, 142, 0.3);
            border-radius: 12px;
            transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        }

        .problems-container .problem-link:hover {
            color: #fff;
            transform: translateY(-2px) translateZ(5px);
        }

        .problems-container .problem-link:hover::before {
            background: #c58e8e;
        }

        .problems-container .problem-link:hover::after {
            border-color: transparent;
        }

        .problems-container .problem-link i {
            transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        }

        .problems-container .problem-link:hover i {
            transform: translateX(4px);
        }

        .problems-container .problem-link i {
            transition: transform 0.3s ease;
        }

        .problems-container .problem-link:hover i {
            transform: translateX(3px);
        }

        /* Problems Modal Styles */
        .problems-container .modal-content {
            border-radius: 24px;
            border: none;
            background: #fff;
            box-shadow: 
                0 25px 50px rgba(44, 24, 16, 0.15),
                0 0 0 1px rgba(197, 142, 142, 0.05);
            overflow: hidden;
        }

        .problems-container .modal-header {
            background: #fff;
            padding: 2.5rem 3rem;
            border: none;
            position: relative;
            background-image: linear-gradient(
                135deg,
                rgba(197, 142, 142, 0.08) 0%,
                rgba(197, 142, 142, 0.03) 100%
            );
        }

        .problems-container .modal-header::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            right: 0;
            height: 1px;
            background: linear-gradient(
                to right,
                transparent,
                rgba(197, 142, 142, 0.2),
                transparent
            );
        }

        .problems-container .modal-title {
            color: #2c1810;
            font-size: 2rem;
            font-weight: 700;
            margin: 0;
            letter-spacing: -0.02em;
            position: relative;
            display: inline-block;
        }

        .problems-container .modal-title::after {
            content: '';
            position: absolute;
            bottom: -8px;
            left: 0;
            width: 40%;
            height: 3px;
            background: linear-gradient(
                to right,
                #c58e8e,
                rgba(197, 142, 142, 0.3)
            );
            border-radius: 2px;
        }

        .problems-container .modal-body {
            padding: 3rem;
            background: #fff;
        }

        .problems-container .problem-description,
        .problems-container .solution-section,
        .problems-container .expected-results {
            background: #fff;
            padding: 2.5rem;
            border-radius: 16px;
            margin-bottom: 2.5rem;
            border: 1px solid rgba(197, 142, 142, 0.1);
            box-shadow: 
                0 5px 20px rgba(44, 24, 16, 0.03),
                0 1px 3px rgba(44, 24, 16, 0.02);
            position: relative;
            overflow: hidden;
        }

        .problems-container .problem-description::before,
        .problems-container .solution-section::before,
        .problems-container .expected-results::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 4px;
            background: linear-gradient(
                to right,
                rgba(197, 142, 142, 0.3),
                rgba(197, 142, 142, 0.1)
            );
        }

        .problems-container .modal-body h6 {
            color: #2c1810;
            font-weight: 700;
            margin-bottom: 1.2rem;
            display: flex;
            align-items: center;
            gap: 0.8rem;
            font-size: 1.2rem;
            letter-spacing: -0.01em;
        }

        .problems-container .modal-body ul {
            list-style: none;
            padding-left: 0;
            margin: 0;
        }

        .problems-container .modal-body ul li {
            position: relative;
            padding: 0.8rem 0 0.8rem 2rem;
            color: rgba(44, 24, 16, 0.75);
            transition: all 0.3s ease;
        }

        .problems-container .modal-body ul li::before {
            content: '•';
            position: absolute;
            left: 0;
            color: #c58e8e;
            font-size: 1.4rem;
            line-height: 1;
            transition: all 0.3s ease;
            top: 50%;
            transform: translateY(-50%);
        }

        .problems-container .modal-body ul li:hover {
            color: #2c1810;
            transform: translateX(3px);
        }

        .problems-container .modal-body ul li:hover::before {
            color: #c58e8e;
            transform: translateY(-50%) scale(1.2);
        }

        .problems-container .profile-image {
            width: 100%;
            height: 200px;
            object-fit: cover;
            border-radius: 15px;
            margin-bottom: 1.5rem;
            box-shadow: 0 5px 15px rgba(255, 105, 180, 0.15);
        }

        @keyframes gentle-pulse {
            0% { transform: scale(1); }
            50% { transform: scale(1.05); }
            100% { transform: scale(1); }
        }

        @media (max-width: 768px) {
            .problems-container .problems-grid {
                grid-template-columns: 1fr;
                gap: 1.5rem;
                padding: 0 1rem;
            }

            .problems-container .section-title {
                font-size: 2rem;
                padding: 0 1rem;
            }

            .problems-container .problem-card {
                padding: 1.5rem;
            }
        }

        /* Hero Section Yeni Stilleri */
.hero-section {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 6rem 4rem;
    margin: 0;
    background: #1a1a1a;
    position: relative;
    overflow: hidden;
    animation: fadeIn 1s ease-out;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 20% 30%, rgba(51, 51, 51, 0.8) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(51, 51, 51, 0.8) 0%, transparent 50%);
    z-index: 1;
}

.hero-image-slider {
    position: relative;
    width: 450px;
    height: 600px;
    overflow: hidden;
    border-radius: 30px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.hero-image-slider img {
    position: absolute;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0;
    transition: opacity 1s ease-in-out;
}

.hero-image-slider img.active {
    opacity: 1;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('images/pattern.png') repeat;
    opacity: 0.03;
    z-index: 1;
}

.hero-content {
    flex: 1.2;
    padding-right: 6rem;
    position: relative;
    z-index: 2;
    animation: slideIn 1s ease-out;
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.hero-header {
    margin-bottom: 2rem;
    position: relative;
}

.hero-title {
    font-size: clamp(2.5rem, 5vw, 4.5rem);
    line-height: 1.2;
    margin-bottom: 1rem;
    color: #fff;
    font-weight: 800;
    letter-spacing: -0.02em;
    animation: fadeIn 1.2s ease-out;
    position: relative;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.hero-title span {
    color: #666;
}

.bio-section {
    background: linear-gradient(135deg, #fff6f6 0%, #fff 100%);
    position: relative;
    overflow: visible;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: clamp(2rem, 5vw, 4rem) clamp(1rem, 3vw, 2rem);
    z-index: 1;
    min-height: auto;
}

.bio-section::before {
    content: "Emine Çayır Kimdir?";
    position: absolute;
    font-size: clamp(3rem, 8vw, 6rem);
    font-weight: 800;
    color: rgba(197, 142, 142, 0.08);
    width: 100%;
    text-align: center;
    z-index: 1;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    letter-spacing: -0.02em;
}

.bio-container {
    max-width: 100%;
    width: 100%;
    margin: 0 auto;
    position: relative;
    z-index: 2;
    opacity: 0;
    transform: translateY(30px);
    animation: bioReveal 1s ease-out forwards;
    animation-play-state: paused;
}

.bio-container.visible {
    animation-play-state: running;
}

.bio-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: clamp(2rem, 4vw, 4rem);
    align-items: flex-start;
    width: 100%;
}

.bio-content {
    padding: clamp(1.2rem, 3vw, 2rem);
    background: rgba(255, 255, 255, 0.95);
    border-radius: 1.5rem;
    box-shadow: 0 16px 40px rgba(197, 142, 142, 0.12);
    backdrop-filter: blur(10px);
    border: 1.5px solid rgba(197, 142, 142, 0.1);
    opacity: 0;
    transform: translateX(-50px);
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    overflow: visible;
    width: 100%;
    min-width: 0;
}

.bio-content.visible {
    animation: slideIn 0.8s ease-out forwards;
}

.bio-content:hover {
    box-shadow: 0 24px 56px rgba(197, 142, 142, 0.16);
    border-color: rgba(197, 142, 142, 0.2);
}

.bio-title {
    font-size: clamp(1.8rem, 3.5vw, 2.8rem);
    margin-bottom: clamp(1.2rem, 3vw, 1.8rem);
    font-weight: 900;
    position: relative;
    padding-bottom: clamp(0.8rem, 1.5vw, 1rem);
    letter-spacing: -0.02em;
    background: linear-gradient(135deg, #2c1810 0%, #FF6B6B 50%, #2c1810 100%);
    background-size: 200% 200%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: titleGradient 4s ease-in-out infinite;
    word-wrap: break-word;
    overflow-wrap: break-word;
    hyphens: auto;
}

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

.bio-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 4px;
    background: linear-gradient(90deg, #FF6B6B 0%, #c58e8e 100%);
    border-radius: 2px;
    animation: titleUnderline 0.8s ease-out forwards;
}

@keyframes titleUnderline {
    from { width: 0; }
    to { width: 150px; }
}

.bio-text {
    font-size: clamp(0.9rem, 1.6vw, 1rem);
    line-height: 1.75;
    color: rgba(44, 24, 16, 0.8);
    margin-bottom: clamp(1rem, 2vw, 1.5rem);
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 1s ease-out forwards;
    animation-delay: 0.3s;
    animation-play-state: paused;
    word-wrap: break-word;
    overflow-wrap: break-word;
    hyphens: auto;
    width: 100%;
}

.bio-text.visible {
    animation-play-state: running;
}

.bio-highlights {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: clamp(1.2rem, 2.5vw, 1.8rem);
    margin-top: clamp(1.5rem, 3vw, 2.5rem);
}

.bio-highlight-item {
    text-align: center;
    padding: clamp(1rem, 2.5vw, 1.5rem);
    background: linear-gradient(135deg, #fff 0%, #f9f5f3 100%);
    border-radius: 1.2rem;
    box-shadow: 0 8px 24px rgba(197, 142, 142, 0.1), 0 0 20px rgba(197, 142, 142, 0.08);
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 0.6s ease-out forwards;
    animation-play-state: paused;
    border: 2px solid rgba(255, 107, 107, 0.15);
    position: relative;
    overflow: hidden;
    cursor: pointer;
}

.bio-highlight-item::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 107, 107, 0.1) 0%, transparent 70%);
    opacity: 0;
    transition: opacity 0.5s ease;
}

.bio-highlight-item::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 3px;
    background: linear-gradient(90deg, #FF6B6B 0%, #c58e8e 100%);
    transition: width 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.bio-highlight-item.visible {
    animation-play-state: running;
}

.bio-highlight-item:hover {
    transform: translateY(-12px) scale(1.05);
    box-shadow: 0 20px 50px rgba(255, 107, 107, 0.2), 0 0 30px rgba(255, 107, 107, 0.15);
    border-color: rgba(255, 107, 107, 0.4);
    background: linear-gradient(135deg, #fff 0%, #fff6f4 100%);
}

.bio-highlight-item:hover::before {
    opacity: 1;
}

.bio-highlight-item:hover::after {
    width: 100%;
}

.highlight-icon {
    font-size: 3rem;
    background: linear-gradient(135deg, #FF6B6B 0%, #c58e8e 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 1.2rem;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    display: inline-block;
    animation: iconPulse 2.5s ease-in-out infinite;
    position: relative;
}

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

.bio-highlight-item:hover .highlight-icon {
    animation: iconBounce 0.6s ease-in-out;
    transform: scale(1.3) rotate(15deg);
}

@keyframes iconBounce {
    0%, 100% { transform: scale(1.3) rotate(15deg); }
    50% { transform: scale(1.4) rotate(-15deg); }
}

.highlight-title {
    font-size: 1.15rem;
    font-weight: 800;
    color: #2c1810;
    margin-bottom: 0.6rem;
    letter-spacing: -0.01em;
}

.highlight-text {
    font-size: 0.9rem;
    color: rgba(44, 24, 16, 0.75);
    line-height: 1.6;
}

.bio-image {
    position: relative;
    z-index: 2;
    width: 100%;
    max-width: 100%;
    height: auto;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 2rem;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15), 0 0 40px rgba(255, 107, 107, 0.15);
    border: 4px solid white;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    animation: imageGlow 3s ease-in-out infinite;
    min-width: 0;
}

.bio-image img {
    width: 100%;
    height: 100%;
    display: block;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    object-fit: cover;
}

.bio-image:hover {
    transform: translateY(-12px) scale(1.03);
    box-shadow: 0 40px 100px rgba(0, 0, 0, 0.2), 0 0 60px rgba(255, 107, 107, 0.3);
    border-color: #FF6B6B;
    animation: none;
}

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

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

@keyframes slideInContent {
    from {
        transform: translateX(-100%);
    }
    to {
        transform: translateX(0);
    }
}

        @media (max-width: 1024px) {
            .hero-section {
                padding: 2.5rem 2.5rem;
                gap: 1.5rem;
            }

            .hero-content {
                max-width: 60%;
            }

            .featured-image {
                max-width: 40%;
            }

            .expertise-slider {
                gap: 0.7rem;
            }

            .expertise-item {
                padding: 1.3rem 1.3rem;
            }

            .expertise-item h3 {
                font-size: 1.1rem;
            }

            .bio-section {
                padding: 3rem 2rem;
                min-height: auto;
            }

            .bio-grid {
                grid-template-columns: 1fr;
                gap: 2.5rem;
            }

            .bio-content {
                padding: 2rem;
                max-width: 100%;
            }

            .bio-title {
                font-size: clamp(1.6rem, 3vw, 2.4rem);
                margin-bottom: 1.2rem;
            }

            .bio-text {
                font-size: 0.98rem;
                margin-bottom: 1.5rem;
            }

            .bio-highlights {
                grid-template-columns: repeat(2, 1fr);
                gap: 1.2rem;
            }

            .bio-image {
                max-width: 350px;
            }

            .expertise-item p {
                font-size: 0.9rem;
            }
        }

@media (max-width: 992px) {
    .bio-grid {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }

    .bio-section {
        padding: 2.5rem 1.5rem;
    }

    .bio-content {
        padding: 1.8rem;
    }

    .bio-title {
        font-size: clamp(1.5rem, 2.8vw, 2.2rem);
    }

    .bio-highlights {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .bio-section {
        padding: 1.5rem 1.2rem;
    }
    
    .bio-container {
        opacity: 1 !important;
        transform: translateY(0) !important;
        width: 100%;
    }

    .bio-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        width: 100%;
    }
    
    .bio-content {
        padding: 1.2rem;
        background: rgba(255, 255, 255, 0.98);
        width: 100%;
        min-width: 0;
    }
    
    .bio-title {
        font-size: clamp(1.3rem, 3vw, 1.8rem);
        margin-bottom: 0.8rem;
        padding-bottom: 0.6rem;
        word-wrap: break-word;
        overflow-wrap: break-word;
    }

    .bio-title::after {
        width: 60px;
    }
    
    .bio-text {
        font-size: clamp(0.85rem, 1.5vw, 0.95rem);
        line-height: 1.6;
        margin-bottom: 1rem;
        word-wrap: break-word;
        overflow-wrap: break-word;
    }
    
    .bio-highlights {
        grid-template-columns: repeat(2, 1fr);
        gap: 0.8rem;
        margin-top: 1rem;
    }
    
    .bio-highlight-item {
        padding: 0.9rem;
        border-radius: 0.95rem;
        transform: none !important;
    }

    .bio-highlight-item:hover {
        transform: translateY(-4px) scale(1.02) !important;
    }
    
    .highlight-icon {
        font-size: 1.6rem;
        margin-bottom: 0.5rem;
    }

    .highlight-title {
        font-size: 0.85rem;
        margin-bottom: 0.2rem;
        font-weight: 700;
    }

    .highlight-text {
        font-size: 0.7rem;
        line-height: 1.3;
    }

    .bio-image {
        width: 100%;
        max-width: 100%;
        border-radius: 1.5rem;
        max-height: 300px;
    }
}

@media (max-width: 480px) {
    .bio-section {
        padding: 1.5rem 1rem;
        min-height: auto;
    }
    
    .bio-container {
        opacity: 1 !important;
        transform: translateY(0) !important;
    }

    .bio-grid {
        grid-template-columns: 1fr;
        gap: 1.2rem;
    }
    
    .bio-content {
        padding: 1rem;
        max-width: 100%;
        border-radius: 1.2rem;
    }
    
    .bio-title {
        font-size: clamp(1.2rem, 2.8vw, 1.5rem);
        margin-bottom: 0.8rem;
        padding-bottom: 0.5rem;
        word-wrap: break-word;
        overflow-wrap: break-word;
        font-weight: 800;
    }

    .bio-title::after {
        width: 50px;
        height: 2px;
    }
    
    .bio-text {
        font-size: clamp(0.85rem, 1.5vw, 0.95rem);
        line-height: 1.55;
        margin-bottom: 1rem;
        word-wrap: break-word;
        overflow-wrap: break-word;
    }
    
    .bio-highlights {
        grid-template-columns: 1fr;
        gap: 0.8rem;
        margin-top: 0.8rem;
    }
    
    .bio-highlight-item {
        padding: 0.9rem;
        border-radius: 0.95rem;
        transform: none !important;
    }

    .bio-highlight-item:hover {
        transform: translateY(-4px) scale(1.01) !important;
    }
    
    .highlight-icon {
        font-size: 1.5rem;
        margin-bottom: 0.5rem;
    }

    .highlight-title {
        font-size: 0.85rem;
        font-weight: 700;
        margin-bottom: 0.2rem;
    }

    .highlight-text {
        font-size: 0.7rem;
        line-height: 1.3;
    }

    .bio-image {
        max-width: 100%;
        border-radius: 1.2rem;
        max-height: 250px;
    }
}

.qualification-badges {
    display: flex;
    gap: 2rem;
    margin-bottom: 2rem;
    flex-wrap: wrap;
}

.badge {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    padding: 0.8rem 1.5rem;
    background: #fff;
    border-radius: 50px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.badge:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(197, 142, 142, 0.15);
}

.badge i {
    color: #c58e8e;
    font-size: 1.2rem;
}

.badge span {
    color: #2c1810;
    font-weight: 500;
}

.hero-subtitle {
    font-size: clamp(1.2rem, 2vw, 1.8rem);
    color: #666;
    margin-bottom: 3rem;
    line-height: 1.6;
    max-width: 600px;
    animation: fadeIn 1.4s ease-out;
}

/* Featured Image Styles */
.featured-image {
    flex: 1;
    position: relative;
    z-index: 2;
}

.main-image {
    width: 100%;
    max-width: 600px;
    border-radius: 30px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
    transition: all 0.5s ease;
    border: 5px solid rgba(255, 255, 255, 0.3);
    animation: fadeIn 1.8s ease-out;
}

.main-image:hover {
    transform: scale(1.02) translateY(-10px) rotate(1deg);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.3);
}

.hero-stats {
    display: flex;
    gap: 3rem;
    margin-top: 3rem;
    animation: slideUp 1s ease-out;
}

.stat-item {
    text-align: center;
    padding: 2rem;
    background: #fff;
    border-radius: 20px;
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.stat-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(197, 142, 142, 0.15);
}

.stat-number {
    font-size: 3rem;
    font-weight: 700;
    color: #c58e8e;
    margin-bottom: 0.5rem;
}

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

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

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

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

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

        @media (max-width: 1200px) {
            .hero-section {
                padding: 4rem 2rem;
            }
            
            .hero-content {
                padding-right: 2rem;
            }

            .hero-stats {
                gap: 2rem;
            }
        }

@media (max-width: 992px) {
    .hero-section {
        padding: 3rem 2rem;
    }

    .hero-content {
        padding-right: 1rem;
    }

    .hero-title {
        font-size: clamp(2rem, 4vw, 3.5rem);
    }

    .hero-subtitle {
        font-size: clamp(1rem, 1.8vw, 1.4rem);
    }

    .hero-stats {
        flex-wrap: wrap;
        justify-content: center;
    }

    .stat-item {
        flex: 0 1 calc(50% - 1rem);
    }
}

/* Journey Section Styles - İyileştirilmiş */
.journey-section {
    padding: 6rem 2rem;
    background: linear-gradient(135deg, #fff6f6 0%, #fff 100%);
    position: relative;
    overflow: hidden;
}

.journey-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 1rem;
    position: relative;
}

.journey-title {
    text-align: center;
    margin-bottom: 4rem;
    position: relative;
}

.journey-title h2 {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 800;
    color: #2c1810;
    margin: 0;
    position: relative;
    z-index: 2;
    letter-spacing: -0.02em;
}

.journey-title::after {
    content: '';
    position: absolute;
    bottom: -12px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 3px;
    background: linear-gradient(to right, transparent, #c58e8e, #c58e8e, transparent);
    border-radius: 2px;
}

.journey-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2.5rem;
    position: relative;
}

.journey-item {
    position: relative;
    background: linear-gradient(135deg, #fff 0%, #f9f5f3 100%);
    border-radius: 1.8rem;
    padding: 2.5rem;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 8px 28px rgba(197, 142, 142, 0.1), 0 0 20px rgba(197, 142, 142, 0.06);
    border: 2px solid rgba(255, 107, 107, 0.15);
    overflow: hidden;
    cursor: pointer;
}

.journey-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    right: auto;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, transparent, #FF6B6B, transparent);
    transition: left 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.journey-item::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 3px;
    background: linear-gradient(90deg, #FF6B6B, #c58e8e);
    transition: width 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.journey-item:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 20px 50px rgba(255, 107, 107, 0.2), 0 0 30px rgba(255, 107, 107, 0.1);
    border-color: rgba(255, 107, 107, 0.4);
    background: linear-gradient(135deg, #fff 0%, #fff6f4 100%);
}

.journey-item:hover::before {
    left: 100%;
}

.journey-item:hover::after {
    width: 100%;
}

.journey-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, #FF6B6B 0%, #c58e8e 100%);
    border-radius: 1.2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    color: white;
    font-size: 1.8rem;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 8px 20px rgba(255, 107, 107, 0.3);
    animation: iconFloat 2.5s ease-in-out infinite;
    position: relative;
    z-index: 2;
}

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

.journey-item:hover .journey-icon {
    animation: none;
    transform: scale(1.2) rotate(-5deg);
    box-shadow: 0 12px 30px rgba(255, 107, 107, 0.4);
}

.journey-step {
    font-size: 0.8rem;
    font-weight: 700;
    color: #c58e8e;
    text-transform: uppercase;
    letter-spacing: 1.6px;
    margin-bottom: 1rem;
    display: block;
    opacity: 0.9;
}

.journey-title-text {
    font-size: 1.4rem;
    font-weight: 700;
    color: #2c1810;
    margin-bottom: 1rem;
    line-height: 1.35;
    letter-spacing: -0.01em;
}

.journey-description {
    color: rgba(44, 24, 16, 0.7);
    margin-bottom: 0;
    line-height: 1.7;
    font-size: 0.95rem;
}

.journey-connect {
    position: absolute;
    top: 50%;
    left: calc(33.33% - 1.5rem);
    right: calc(33.33% - 1.5rem);
    height: 2px;
    background: linear-gradient(to right, #c58e8e20, #c58e8e40, #c58e8e20);
    z-index: 0;
}

.journey-dots {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 14px;
    height: 14px;
    background: #c58e8e;
    border-radius: 50%;
    z-index: 1;
    box-shadow: 0 0 0 3px rgba(197, 142, 142, 0.1);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.journey-dots.left {
    left: calc(33.33% - 7px);
}

.journey-dots.center {
    left: 50%;
    transform: translate(-50%, -50%);
}

.journey-dots.right {
    right: calc(33.33% - 7px);
}

.journey-badge {
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    background: rgba(197, 142, 142, 0.1);
    color: #c58e8e;
    padding: 0.4rem 0.9rem;
    border-radius: 16px;
    font-size: 0.8rem;
    font-weight: 700;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    letter-spacing: 0.3px;
    border: 1px solid rgba(197, 142, 142, 0.15);
}

.journey-item:hover .journey-badge {
    background: #c58e8e;
    color: #fff;
    transform: scale(1.1);
    border-color: #c58e8e;
}

/* Testimonials Section Styles - İyileştirilmiş */
.testimonials-section {
    padding: 6rem 2rem;
    background: linear-gradient(135deg, #fff5f5 0%, #fff 100%);
    position: relative;
    overflow: hidden;
}

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

.testimonials-header {
    text-align: center;
    margin-bottom: 4.5rem;
    position: relative;
}

.testimonials-header h2 {
    font-size: clamp(2rem, 4vw, 2.8rem);
    color: #2c1810;
    margin-bottom: 1.2rem;
    font-weight: 800;
    letter-spacing: -0.02em;
}

.testimonials-header h2::after {
    content: '';
    display: block;
    width: 80px;
    height: 3px;
    background: linear-gradient(to right, transparent, #c58e8e, #c58e8e, transparent);
    margin: 1rem auto 0;
    border-radius: 2px;
}

.testimonials-header p {
    font-size: 1.05rem;
    color: rgba(44, 24, 16, 0.7);
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(310px, 1fr));
    gap: 2.5rem;
}

.testimonial-card {
    background: #fff;
    border-radius: 16px;
    padding: 2.5rem;
    box-shadow: 0 8px 28px rgba(197, 142, 142, 0.08);
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    border: 1.5px solid rgba(197, 142, 142, 0.1);
    overflow: hidden;
}

.testimonial-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, transparent, #c58e8e, transparent);
    transition: left 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.testimonial-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 16px 40px rgba(197, 142, 142, 0.15);
    border-color: rgba(197, 142, 142, 0.25);
}

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

.testimonial-header {
    display: flex;
    align-items: center;
    gap: 1.2rem;
    margin-bottom: 1.8rem;
    position: relative;
    z-index: 2;
}

.testimonial-avatar {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: linear-gradient(135deg, #c58e8e 0%, #ffb6b6 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.6rem;
    color: white;
    flex-shrink: 0;
    box-shadow: 0 4px 12px rgba(197, 142, 142, 0.2);
    border: 2px solid rgba(255, 255, 255, 0.8);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.testimonial-card:hover .testimonial-avatar {
    transform: scale(1.1);
    box-shadow: 0 8px 20px rgba(197, 142, 142, 0.3);
}

.testimonial-info h3 {
    color: #2c1810;
    margin: 0;
    font-weight: 700;
    font-size: 1.1rem;
    letter-spacing: -0.01em;
}

.testimonial-info p {
    color: #c58e8e;
    margin: 0.4rem 0 0 0;
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.testimonial-rating {
    color: #FFD700;
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
    letter-spacing: 2px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.testimonial-card:hover .testimonial-rating {
    transform: scale(1.1);
}

.testimonial-text {
    color: rgba(44, 24, 16, 0.75);
    line-height: 1.8;
    font-size: 0.95rem;
    font-style: italic;
    position: relative;
    z-index: 2;
}

.testimonial-quote-mark {
    font-size: 3rem;
    color: #c58e8e;
    opacity: 0.15;
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    z-index: 1;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.testimonial-card:hover .testimonial-quote-mark {
    opacity: 0.25;
    transform: scale(1.1);
}

/* Needs Analysis Testi */
.needs-analysis-section {
    padding: 9rem 2rem 6rem;
    background: linear-gradient(135deg, rgba(197, 142, 142, 0.08) 0%, #fff 45%, rgba(44, 24, 16, 0.03) 100%);
}

.needs-analysis-shell {
    max-width: 1280px;
}

.needs-analysis-header {
    text-align: center;
    margin-bottom: 2.5rem;
}

.analysis-kicker {
    display: inline-block;
    padding: 0.45rem 0.9rem;
    border-radius: 999px;
    background: rgba(197, 142, 142, 0.12);
    color: #8f5d5d;
    font-size: 0.82rem;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    margin-bottom: 1rem;
}

.needs-analysis-header .section-title {
    margin-bottom: 0.9rem;
}

.needs-analysis-header p {
    max-width: 720px;
    margin: 0 auto;
    color: rgba(44, 24, 16, 0.72);
    line-height: 1.7;
}

.needs-analysis-grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(360px, 1fr);
    gap: clamp(0.9rem, 1.8vw, 1.35rem);
    align-items: start;
}

.analysis-quiz-card,
.analysis-result-card {
    background: rgba(255, 255, 255, 0.88);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(197, 142, 142, 0.16);
    border-radius: 24px;
    box-shadow: 0 18px 50px rgba(44, 24, 16, 0.08);
}

.analysis-quiz-card {
    padding: 1.2rem;
}

.analysis-question + .analysis-question {
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 1px solid rgba(197, 142, 142, 0.12);
}

.analysis-question h3 {
    font-size: 0.98rem;
    color: #2c1810;
    margin-bottom: 0.75rem;
    font-weight: 700;
    line-height: 1.4;
}

.analysis-step {
    width: 1.8rem;
    height: 1.8rem;
    border-radius: 50%;
    background: linear-gradient(135deg, #c58e8e, #e8bcbc);
    color: #fff;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-size: 0.88rem;
    margin-bottom: 0.65rem;
}

.analysis-options {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.6rem;
}

.analysis-option {
    border: 1px solid rgba(197, 142, 142, 0.2);
    background: #fff;
    color: #2c1810;
    border-radius: 16px;
    padding: 0.8rem 0.9rem;
    text-align: left;
    font-weight: 600;
    font-size: 0.92rem;
    line-height: 1.35;
    transition: transform 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease, background 0.25s ease;
}

.analysis-option:hover {
    transform: translateY(-2px);
    border-color: rgba(197, 142, 142, 0.45);
    box-shadow: 0 10px 25px rgba(197, 142, 142, 0.12);
}

.analysis-option.is-selected {
    background: linear-gradient(135deg, #c58e8e, #dfaaaa);
    color: #fff;
    border-color: transparent;
}

.analysis-actions {
    display: flex;
    gap: 0.8rem;
    margin-top: 1.4rem;
    flex-wrap: wrap;
}

.analysis-submit,
.analysis-reset,
.analysis-cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 999px;
    padding: 0.95rem 1.35rem;
    font-weight: 700;
    text-decoration: none;
    transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease;
}

.analysis-submit {
    border: none;
    color: #fff;
    background: linear-gradient(135deg, #2c1810, #c58e8e);
    box-shadow: 0 14px 30px rgba(44, 24, 16, 0.18);
}

.analysis-reset {
    border: 1px solid rgba(197, 142, 142, 0.3);
    background: #fff;
    color: #8f5d5d;
}

.analysis-submit:hover,
.analysis-reset:hover,
.analysis-cta:hover {
    transform: translateY(-2px);
}

.analysis-result-card {
    padding: 1.35rem;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    gap: 0.25rem;
    position: relative;
    overflow: hidden;
    min-width: 0;
}

.analysis-result-card::before {
    content: '';
    position: absolute;
    inset: auto -30% -35% auto;
    width: 16rem;
    height: 16rem;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(197, 142, 142, 0.22) 0%, rgba(197, 142, 142, 0) 70%);
}

.analysis-result-badge {
    display: inline-flex;
    align-self: flex-start;
    margin-bottom: 1rem;
    padding: 0.45rem 0.8rem;
    border-radius: 999px;
    background: rgba(44, 24, 16, 0.06);
    color: #8f5d5d;
    font-size: 0.8rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

.analysis-result-card h3 {
    color: #2c1810;
    font-size: clamp(1.1rem, 1.7vw, 1.55rem);
    margin-bottom: 0.6rem;
    font-weight: 800;
    position: relative;
    z-index: 1;
    line-height: 1.15;
    text-wrap: balance;
}

.analysis-result-card p {
    color: rgba(44, 24, 16, 0.75);
    line-height: 1.6;
    margin-bottom: 0.85rem;
    position: relative;
    z-index: 1;
    overflow-wrap: anywhere;
}

.analysis-status {
    display: inline-flex;
    align-self: flex-start;
    max-width: 100%;
    padding: 0.48rem 0.75rem;
    border-radius: 999px;
    background: rgba(197, 142, 142, 0.12);
    color: #7a4f4f;
    font-size: 0.84rem;
    font-weight: 800;
    line-height: 1.35;
    margin: 0.1rem 0 0.35rem;
    overflow-wrap: anywhere;
}

.analysis-result-list {
    margin: 0 0 1rem 1.1rem;
    padding: 0;
    color: rgba(44, 24, 16, 0.72);
    line-height: 1.65;
    position: relative;
    z-index: 1;
    overflow-wrap: anywhere;
}

.analysis-result-list li + li {
    margin-top: 0.3rem;
}

.analysis-cta {
    color: #fff;
    background: linear-gradient(135deg, #c58e8e, #e0a9a9);
    box-shadow: 0 14px 30px rgba(197, 142, 142, 0.22);
    width: fit-content;
    position: relative;
    z-index: 1;
}

@media (min-width: 993px) {
    .analysis-result-card {
        position: sticky;
        top: 104px;
    }
}

@media (max-width: 992px) {
    .needs-analysis-grid {
        grid-template-columns: 1fr;
    }

    .analysis-result-card {
        position: relative;
        top: auto;
    }
}

@media (max-width: 768px) {
    .needs-analysis-section {
        padding: 4.5rem 1.2rem;
    }

    .analysis-options {
        grid-template-columns: 1fr;
    }

    .analysis-actions {
        flex-direction: column;
    }

    .analysis-submit,
    .analysis-reset,
    .analysis-cta {
        width: 100%;
    }
}

@media (max-width: 768px) {
    .testimonials-section {
        padding: 4rem 1.5rem;
    }

    .testimonials-header h2 {
        font-size: 2rem;
    }
    
    .testimonials-header p {
        font-size: 1rem;
    }

    .testimonials-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .testimonial-card {
        padding: 2rem;
    }
    
    .testimonial-avatar {
        width: 52px;
        height: 52px;
    }
    
    .testimonial-info h3 {
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .testimonials-section {
        padding: 3rem 1rem;
    }

    .testimonials-header h2 {
        font-size: 1.6rem;
        margin-bottom: 1rem;
    }
    
    .testimonials-header p {
        font-size: 0.95rem;
    }

    .testimonials-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .testimonial-card {
        padding: 1.5rem;
    }
    
    .testimonial-header {
        gap: 1rem;
    }
    
    .testimonial-avatar {
        width: 48px;
        height: 48px;
        font-size: 1.2rem;
    }
    
    .testimonial-info h3 {
        font-size: 0.95rem;
    }
    
    .testimonial-info p {
        font-size: 0.8rem;
    }
    
    .testimonial-text {
        font-size: 0.9rem;
        line-height: 1.6;
    }
}

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

    .journey-connect, .journey-dots {
        display: none;
    }
}

@media (max-width: 768px) {
    .journey-section {
        padding: 4rem 1.5rem;
    }
    
    .journey-title h2 {
        font-size: 2rem;
    }
    
    .journey-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .journey-item {
        padding: 2rem;
    }
    
    .journey-icon {
        width: 52px;
        height: 52px;
        font-size: 1.5rem;
    }
    
    .journey-title-text {
        font-size: 1.2rem;
    }
    
    .journey-description {
        font-size: 0.9rem;
    }
    
    .journey-badge {
        top: 1.2rem;
        right: 1.2rem;
        font-size: 0.75rem;
    }
}

@media (max-width: 480px) {
    .journey-section {
        padding: 3rem 1rem;
    }
    
    .journey-title {
        margin-bottom: 3rem;
    }
    
    .journey-title h2 {
        font-size: 1.6rem;
    }
    
    .journey-title::after {
        width: 60px;
        height: 2px;
    }

    .journey-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .journey-item {
        padding: 1.5rem;
    }
    
    .journey-icon {
        width: 48px;
        height: 48px;
        font-size: 1.3rem;
        margin-bottom: 1rem;
    }
    
    .journey-step {
        font-size: 0.75rem;
    }
    
    .journey-title-text {
        font-size: 1.1rem;
        margin-bottom: 0.8rem;
    }
    
    .journey-description {
        font-size: 0.85rem;
        line-height: 1.6;
    }
    
    .journey-badge {
        top: 1rem;
        right: 1rem;
        font-size: 0.7rem;
        padding: 0.3rem 0.7rem;
    }
}

@media (max-width: 768px) {
    .hero-section {
        flex-direction: column;
        text-align: center;
        padding: 4rem 1.5rem;
        gap: 3rem;
    }

    .hero-content {
        padding-right: 0;
        order: 2;
    }

    .featured-image {
        order: 1;
    }

    .hero-buttons {
        flex-direction: column;
        gap: 1rem;
        max-width: 300px;
        margin: 2rem auto;
    }

    .hero-button {
        width: 100%;
        justify-content: center;
    }

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

    .qualification-badges {
        justify-content: center;
    }

    .badge {
        width: 100%;
        justify-content: center;
    }

    .main-image {
        max-width: 300px;
        margin: 0 auto;
    }
}

@media (max-width: 480px) {
    .hero-stats {
        grid-template-columns: 1fr;
    }

    .qualification-badges {
        flex-direction: column;
    }

    .badge {
        padding: 0.6rem 1rem;
        font-size: 0.9rem;
    }
}

@media (max-width: 480px) {
    .hero-section {
        padding: 3rem 1rem;
    }

    .hero-title {
        font-size: clamp(1.8rem, 3vw, 2.5rem);
    }

    .hero-subtitle {
        font-size: 1rem;
    }

    .main-image {
        max-width: 250px;
    }
}

        .offcanvas-header::before
 {
    content: '';
    position: absolute;
    left: 20px;
    width: 50px;
    height: 50px;
    background-image: url(images/favicon-96x96.png);
    background-size: 100%;
    background-position: center;
    background-repeat: no-repeat;
}
        body, html {
            margin: 0;
            padding: 0;
            height: 100%;
            width: 100%;
            overflow-x: hidden;
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif, 'Noto Color Emoji';
            margin: 0;
        }

        .wrapper {
            flex: 1;
            display: flex;
            flex-direction: column;
            min-height: 100vh;
        }

        .content {
            flex: 1;
            padding-top: 80px;
            padding-left: 0;
            padding-right: 0;
            background-color: rgb(197, 142, 142);
            width: 100%;
        }

        .image-container {
            display: flex;
            justify-content: space-between;
            flex-wrap: wrap;
            gap: 1rem;
            margin-bottom: 2rem;
            padding: 0 1rem;
        }

        .image-container img {
            flex: 1;
            min-width: 200px;
            max-width: calc(33.33% - 0.7rem);
            height: auto;
            border-radius: 12px;
            border: 2px solid white;
            transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
            box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
        }

        .image-container img:hover {
            transform: scale(1.05);
            box-shadow: 0 12px 32px rgba(0, 0, 0, 0.25);
        }

        @media (max-width: 768px) {
            .image-container {
                gap: 0.8rem;
                padding: 0 1rem;
            }

            .image-container img {
                max-width: calc(50% - 0.4rem);
            }
        }

        @media (max-width: 480px) {
            .image-container {
                gap: 0.5rem;
                padding: 0 0.5rem;
                margin-bottom: 1.5rem;
            }

            .image-container img {
                max-width: 100%;
            }
        }

        .footer-container {
            background: linear-gradient(135deg, rgba(44, 24, 16, 0.95), rgba(44, 24, 16, 0.98));
            color: white;
            padding: clamp(2rem, 5vw, 4rem) clamp(1rem, 3vw, 2rem);
            margin-top: clamp(2rem, 4vw, 3rem);
            border-top: 2px solid rgba(197, 142, 142, 0.2);
            position: relative;
        }

        .footer-container::before {
            content: '';
            position: absolute;
            top: 0;
            right: 0;
            width: 300px;
            height: 300px;
            background: radial-gradient(circle, rgba(255, 107, 107, 0.05) 0%, transparent 70%);
            border-radius: 50%;
            pointer-events: none;
        }

        .navbar {
            background: linear-gradient(135deg, rgba(44, 24, 16, 0.95), rgba(44, 24, 16, 0.98)) !important;
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
            padding: 1rem 0;
            position: fixed;
            width: 100%;
            top: 0;
            z-index: 1000;
        }

        .navbar-brand {
            font-size: clamp(1.3rem, 3vw, 2rem);
            font-weight: 800;
            color: #fff !important;
            letter-spacing: -0.01em;
            transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
        }

        .navbar-brand:hover {
            color: #FF6B6B !important;
            text-shadow: 0 0 10px rgba(255, 107, 107, 0.3);
        }

        .navbar-nav .nav-item {
            margin: 0 0.5rem;
        }

        .navbar-nav .nav-link {
            font-size: clamp(0.95rem, 2vw, 1.1rem);
            font-weight: 600;
            padding: 0.8rem 1.2rem;
            transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
            color: rgba(255, 255, 255, 0.85) !important;
            border-radius: 8px;
            position: relative;
            overflow: hidden;
        }

        .navbar-nav .nav-link::before {
            content: '';
            position: absolute;
            bottom: 0;
            left: 50%;
            width: 0;
            height: 3px;
            background: linear-gradient(90deg, #FF6B6B 0%, #c58e8e 100%);
            transform: translateX(-50%);
            transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
            box-shadow: 0 0 0 rgba(255, 107, 107, 0.5);
        }

        .navbar-nav .nav-link::after {
            content: '';
            position: absolute;
            inset: -5px;
            border-radius: 0.5rem;
            background: linear-gradient(135deg, rgba(255, 107, 107, 0), rgba(255, 107, 107, 0));
            transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
            z-index: -1;
        }

        .navbar-nav .nav-link:hover {
            background: rgba(255, 107, 107, 0.15);
            color: #FF6B6B !important;
            transform: translateY(-2px) scale(1.08);
            text-shadow: 0 0 8px rgba(255, 107, 107, 0.3);
        }

        .navbar-nav .nav-link:hover::before {
            width: 100%;
            box-shadow: 0 2px 12px rgba(255, 107, 107, 0.4);
        }

        .navbar-nav .nav-link:hover::after {
            background: linear-gradient(135deg, rgba(255, 107, 107, 0.15), rgba(197, 142, 142, 0.1));
        }

        .navbar-toggler {
            border: 2px solid rgba(255, 255, 255, 0.3) !important;
            padding: 0.5rem !important;
            border-radius: 8px;
            transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
        }

        .navbar-toggler:hover {
            background: rgba(197, 142, 142, 0.15) !important;
            border-color: #c58e8e !important;
        }

        .navbar-toggler:focus {
            box-shadow: none !important;
        }

        .offcanvas-header {
            background: linear-gradient(135deg, rgba(197, 142, 142, 0.12), rgba(197, 142, 142, 0.06));
            padding: 1.5rem;
            border-bottom: 1px solid rgba(197, 142, 142, 0.15);
            position: relative;
        }

        .offcanvas-header::after {
            content: '';
            position: absolute;
            bottom: -3px;
            left: 0;
            right: 0;
            height: 3px;
            background: linear-gradient(90deg, transparent, #FF6B6B, #c58e8e, transparent);
            animation: headerGlow 2s ease-in-out infinite;
        }

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

        .offcanvas-title {
            color: white !important;
            font-size: 1.6rem;
            font-weight: 700;
            letter-spacing: -0.01em;
            margin-left: 0;
        }

        .btn-close-white {
            position: relative;
            width: 35px !important;
            height: 35px !important;
            opacity: 1 !important;
            padding: 0 !important;
            background: rgba(255, 255, 255, 0.1) !important;
            margin: 0 !important;
            border-radius: 50%;
            transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
        }

        .btn-close-white:hover {
            background: rgba(255, 255, 255, 0.2) !important;
            transform: rotate(90deg);
        }

        .offcanvas-body {
            padding: 1.5rem;
        }

        .offcanvas-body .nav-link {
            color: rgba(255, 255, 255, 0.85) !important;
            font-size: 1.1rem !important;
            padding: 1rem 1.5rem !important;
            margin: 0.8rem 0;
            border-radius: 12px;
            transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
            font-weight: 500;
        }

        .offcanvas-body .nav-link:hover {
            background: rgba(197, 142, 142, 0.15) !important;
            transform: translateX(8px);
            color: #c58e8e !important;
        }


        /* Sosyal Medya İkonları */
        .social-links {
            display: flex;
            justify-content: center;
            position: absolute;
            left: 50%;
            top: 50%;
            transform: translate(-50%, -50%);
            
        }

        .social-links img {
            width: clamp(30px, 5vw, 40px); /* Minimum 30px, ekran genişliğine göre %5, maksimum 40px */
            height: clamp(30px, 5vw, 40px);
            border-radius: 8px;
            transition: transform 0.3s ease, width 0.3s ease, height 0.3s ease;
            border: 2px solid white;  
            border-radius: 50%;
            padding: 2px;
            margin: 2px;
        }

        .social-links img:hover {
            transform: scale(1.2);
        }

        /* Responsive Ayarlar */
        @media (max-width: 1024px) {
            .navbar-brand {
                font-size: 1.5rem;
            }

            .navbar-nav .nav-link {
                font-size: 1rem;
                padding: 0.7rem 1rem;
            }
        }

        @media (max-width: 768px) {
            .navbar-brand {
                font-size: 1.3rem;
            }

            .navbar-nav .nav-link {
                font-size: 0.95rem;
                padding: 0.6rem 0.8rem;
            }

            .offcanvas-title {
                font-size: 1.4rem;
            }

            .offcanvas-body .nav-link {
                font-size: 1rem !important;
                padding: 0.9rem 1.2rem !important;
            }
        }

        @media (max-width: 576px) {
            .navbar-brand {
                font-size: 1.1rem;
            }

            .offcanvas-end {
                width: 280px !important;
            }

            .offcanvas-title {
                font-size: 1.2rem;
            }

            .offcanvas-body .nav-link {
                font-size: 0.95rem !important;
                padding: 0.8rem 1rem !important;
            }
        }
        .whatsapp-navbar-button {
            background-color: transparent !important;
            border: none;
            padding: 0.5rem 1rem;
            margin: 0;
            border-radius: 0;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
        }

        .whatsapp-navbar-button:hover {
            opacity: 0.8;
        }

        .probio{
            margin-top: 20px;
            background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px); /* Cam efekti */
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0px 6px 20px rgba(0, 0, 0, 0.3); /* Daha belirgin gölge */
      }
      .insfix{
        margin-left: 10px;
      }

.whatsapp-direct-button {
    width: 100px !important;
    height: 40px !important;
    padding: 0 !important;
    margin: 0 auto !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    border-radius: 15px !important;
    background: linear-gradient(45deg, #25d366, #128C7E) !important;
    transition: all 0.3s ease !important;
}

.whatsapp-direct-button img {
    width: 40px !important;
    height: 30px !important;
    object-fit: contain;
    filter: none;
}

.social-icon:hover,
.whatsapp-direct-button:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
}

.footer-copyright {
    text-align: center;
    margin-top: 30px;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

@media (max-width: 768px) {
    .footer-contact {
        grid-template-columns: 1fr;
    }

    .footer-map {
        height: 250px;
    }
}

.location-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(5px);
    z-index: 1000;
    opacity: 0;
    transition: opacity 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.location-modal.show {
    opacity: 1;
}

.location-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(0.95);
    width: 90%;
    max-width: 800px;
    background: #fff;
    padding: 2.5rem;
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(197, 142, 142, 0.2);
    border: 1.5px solid rgba(197, 142, 142, 0.1);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.location-modal.show .location-content {
    transform: translate(-50%, -50%) scale(1);
}

.close-location {
    position: absolute;
    right: 1.5rem;
    top: 1.5rem;
    font-size: 28px;
    cursor: pointer;
    color: #c58e8e;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: rgba(197, 142, 142, 0.08);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.close-location:hover {
    background: rgba(197, 142, 142, 0.15);
    transform: rotate(90deg);
}

.offcanvas.offcanvas-end {
    background: linear-gradient(135deg, rgba(44, 24, 16, 0.95), rgba(44, 24, 16, 0.98));
    backdrop-filter: blur(10px);
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: -10px 0 40px rgba(0, 0, 0, 0.3);
    border-left: 2px solid rgba(197, 142, 142, 0.15);
}

/* Hamburger menü güncellemeleri */
.navbar-toggler {
    border: 2px solid rgba(255, 255, 255, 0.3);
    padding: 8px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border-radius: 8px;
}

.navbar-toggler:hover {
    background: rgba(255, 255, 255, 0.15);
    border-color: rgba(255, 255, 255, 0.5);
}

.navbar-toggler-icon {
    width: 1.5em;
    height: 1.5em;
}

/* Yeni konum butonu stilleri */
.footer-location {
    text-align: center;
    margin: 15px 0;
}

.directions-btn {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.15), rgba(255, 255, 255, 0.05));
    color: white;
    border: 1.5px solid rgba(255, 255, 255, 0.2);
    padding: 12px 24px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    font-weight: 600;
    cursor: pointer;
}

.directions-btn:hover {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.25), rgba(255, 255, 255, 0.1));
    border-color: rgba(255, 255, 255, 0.4);
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(197, 142, 142, 0.2);
}

.directions-btn img {
    width: 20px;
    height: 20px;
}

.navbar-toggler {
    border: none !important;
    padding: 0.5rem !important;
}

.navbar-toggler:focus {
    box-shadow: none !important;
}

.offcanvas {
    background: linear-gradient(135deg, rgba(44, 24, 16, 0.95), rgba(44, 24, 16, 0.98)) !important;
    border-left: 2px solid rgba(197, 142, 142, 0.15) !important;
}

/* Çarpı işareti için özel stil */
.btn-close-white {
    position: relative;
    width: 35px !important;
    height: 35px !important;
    opacity: 1 !important;
    background: rgba(255, 255, 255, 0.1) !important;
    border-radius: 50%;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1) !important;
}

.btn-close-white:hover {
    background: rgba(255, 255, 255, 0.2) !important;
    transform: rotate(90deg);
}

/* Offcanvas Stilleri */
.offcanvas-end {
    width: 85vw !important;
    max-width: 350px !important;
    background: linear-gradient(135deg, rgba(44, 24, 16, 0.95), rgba(44, 24, 16, 0.98)) !important;
    box-shadow: -10px 0 40px rgba(0, 0, 0, 0.3);
    backdrop-filter: blur(10px);
    border-left: 2px solid rgba(197, 142, 142, 0.15);
}

@media (max-width: 576px) {
    .offcanvas-end {
        width: 90vw !important;
        max-width: 300px !important;
    }
}

@media (max-width: 360px) {
    .offcanvas-end {
        width: 95vw !important;
        max-width: 280px !important;
    }
}

.offcanvas-header {
    background: linear-gradient(135deg, rgba(197, 142, 142, 0.12), rgba(197, 142, 142, 0.06));
    padding: 2rem 1.5rem;
    position: relative;
    border-bottom: 1px solid rgba(197, 142, 142, 0.1);
}

.offcanvas-title {
    color: white;
    font-size: clamp(1.2rem, 3vw, 1.8rem);
    font-weight: 700;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.3);
    margin-left: 0;
    letter-spacing: -0.01em;
}

.offcanvas-body {
    padding: 1.5rem;
    background: linear-gradient(180deg, rgba(44, 24, 16, 0.95) 0%, rgba(44, 24, 16, 0.98) 100%);
}

.offcanvas-body .nav-link {
    color: rgba(255, 255, 255, 0.85) !important;
    font-size: 1.1rem !important;
    padding: 1.2rem 1.5rem !important;
    margin: 0.8rem 0;
    border-radius: 12px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    font-weight: 500;
    letter-spacing: 0.3px;
    background: rgba(255, 255, 255, 0.08);
}

.offcanvas-body .nav-link:hover {
    background: rgba(255, 255, 255, 0.15) !important;
    transform: translateX(10px) scale(1.02);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
}

/* Footer Stilleri - İyileştirilmiş */
.footer-container {
    background: linear-gradient(135deg, rgba(44, 24, 16, 0.95), rgba(44, 24, 16, 0.98));
    color: white;
    padding: 5rem 2rem 3rem;
    border-top: 1px solid rgba(197, 142, 142, 0.2);
}

.footer-contact {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
}

.footer-map {
    height: 320px;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 12px 32px rgba(197, 142, 142, 0.15);
    border: 1.5px solid rgba(197, 142, 142, 0.1);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.footer-map:hover {
    box-shadow: 0 20px 48px rgba(197, 142, 142, 0.2);
}

.footer-map iframe {
    width: 100%;
    height: 100%;
    border: none;
}

.footer-info {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.footer-whatsapp {
    background: linear-gradient(135deg, rgba(197, 142, 142, 0.12), rgba(197, 142, 142, 0.06));
    padding: 2rem;
    border-radius: 16px;
    border: 1.5px solid rgba(197, 142, 142, 0.15);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.footer-whatsapp:hover {
    background: linear-gradient(135deg, rgba(197, 142, 142, 0.15), rgba(197, 142, 142, 0.08));
    border-color: rgba(197, 142, 142, 0.25);
    transform: translateY(-4px);
    box-shadow: 0 12px 32px rgba(197, 142, 142, 0.15);
}

.footer-whatsapp h3 {
    color: #FFD700;
    margin-bottom: 1.2rem;
    text-align: center;
    font-weight: 700;
    font-size: 1.3rem;
    letter-spacing: -0.01em;
}

.footer-social {
    background: linear-gradient(135deg, rgba(197, 142, 142, 0.12), rgba(197, 142, 142, 0.06));
    padding: 2rem;
    border-radius: 16px;
    border: 1.5px solid rgba(197, 142, 142, 0.15);
    text-align: center;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.footer-social:hover {
    background: linear-gradient(135deg, rgba(197, 142, 142, 0.15), rgba(197, 142, 142, 0.08));
    border-color: rgba(197, 142, 142, 0.25);
}

.footer-social h3 {
    color: #FFD700;
    margin-bottom: 1.5rem;
    font-weight: 700;
    font-size: 1.3rem;
    letter-spacing: -0.01em;
}

.social-icons {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.social-icon {
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    background: linear-gradient(135deg, #f09433, #bc1888);
    width: 50px;
    height: 50px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.social-icon.facebook {
    background: linear-gradient(135deg, #3b5998, #1e3c72);
}

.social-icon:hover {
    transform: translateY(-6px) scale(1.1);
    box-shadow: 0 12px 28px rgba(0, 0, 0, 0.3);
}

.social-icon img {
    width: 28px;
    height: 28px;
    object-fit: contain;
}

/* Sosyal Medya Offcanvas */
.social-links-offcanvas {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    padding: 1.5rem 0;
    border-top: 1px solid rgba(255, 255, 255, 0.15);
    flex-wrap: wrap;
}

.social-links-offcanvas .social-icon {
    width: 44px;
    height: 44px;
}

.social-links-offcanvas .social-icon img {
    width: 24px;
    height: 24px;
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.social-links-offcanvas .social-icon:hover img {
    transform: scale(1.3) rotate(-5deg);
}

/* Footer Responsive */
@media (max-width: 768px) {
    .footer-container {
        padding: 4rem 1.5rem 2rem;
    }

    .footer-contact {
        grid-template-columns: 1fr;
        gap: 2rem;
        padding: 0;
    }

    .footer-map {
        height: 250px;
    }

    .footer-info {
        gap: 1.5rem;
    }

    .footer-whatsapp,
    .footer-social {
        padding: 1.5rem;
    }

    .footer-whatsapp h3,
    .footer-social h3 {
        font-size: 1.1rem;
        margin-bottom: 1rem;
    }

    .social-icons {
        gap: 1rem;
    }

    .social-icon {
        width: 44px;
        height: 44px;
    }

    .social-icon img {
        width: 24px;
        height: 24px;
    }
}

@media (max-width: 480px) {
    .footer-container {
        padding: 3rem 1rem 1.5rem;
    }

    .footer-contact {
        gap: 1.5rem;
    }

    .footer-map {
        height: 200px;
        border-radius: 12px;
    }

    .footer-whatsapp,
    .footer-social {
        padding: 1.2rem;
        border-radius: 12px;
    }

    .footer-whatsapp h3,
    .footer-social h3 {
        font-size: 1rem;
        margin-bottom: 0.8rem;
    }

    .social-icons {
        gap: 0.8rem;
    }

    .social-icon {
        width: 40px;
        height: 40px;
    }

    .social-icon img {
        width: 20px;
        height: 20px;
    }
}
.modal-body .form-label {
    color: #2c1810;
    font-weight: 700;
    font-size: 1rem;
    margin-bottom: 0.8rem;
    letter-spacing: -0.01em;
}

.h5 {
    font-size: 1.4rem;
    color: #2c1810;
    font-weight: 700;
}

/* Modal Stilleri - İyileştirilmiş */
.modal-content {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.98), rgba(255, 250, 250, 0.98));
    backdrop-filter: blur(10px);
    border: 1.5px solid rgba(197, 142, 142, 0.2);
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(197, 142, 142, 0.25);
}

.modal-header {
    border-bottom: 1.5px solid rgba(197, 142, 142, 0.15);
    padding: 2rem;
    background: linear-gradient(135deg, rgba(197, 142, 142, 0.08), rgba(197, 142, 142, 0.04));
}

.modal-header .modal-title {
    font-weight: 700;
    color: #2c1810;
    font-size: 1.4rem;
    letter-spacing: -0.01em;
}

.modal-body {
    padding: 2.5rem;
}

/* Modal Form Input Styles */
.form-control {
    border: 1.5px solid rgba(197, 142, 142, 0.2) !important;
    border-radius: 12px;
    padding: 0.9rem 1.2rem;
    background: rgba(255, 255, 255, 0.95) !important;
    color: #2c1810 !important;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    font-size: 0.95rem;
}

.form-control:focus {
    border-color: #c58e8e !important;
    box-shadow: 0 0 0 3px rgba(197, 142, 142, 0.1) !important;
    background: white !important;
    transform: translateY(-2px);
}

.form-control::placeholder {
    color: rgba(44, 24, 16, 0.5);
}

.form-select {
    border: 1.5px solid rgba(197, 142, 142, 0.2) !important;
    border-radius: 12px;
    padding: 0.9rem 1.2rem;
    background: rgba(255, 255, 255, 0.95) !important;
    color: #2c1810 !important;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.form-select:focus {
    border-color: #c58e8e !important;
    box-shadow: 0 0 0 3px rgba(197, 142, 142, 0.1) !important;
}

/* Çarpı İşareti Stilleri - İyileştirilmiş */
.btn-close-white {
    position: relative;
    width: 40px !important;
    height: 40px !important;
    opacity: 1 !important;
    padding: 0 !important;
    background: rgba(197, 142, 142, 0.1) !important;
    margin: 0 !important;
    border-radius: 50%;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

        .btn-close-white::before,
        .btn-close-white::after {
            content: '';
            position: absolute;
            width: 20px;
            height: 2px;
            background-color: white;
            top: 50%;
            left: 50%;
            border-radius: 1px;
        }

        .btn-close-white::before {
            transform: translate(-50%, -50%) rotate(45deg);
        }

        .btn-close-white::after {
            transform: translate(-50%, -50%) rotate(-45deg);
        }

        .btn-close-white:hover {
            transform: rotate(90deg);
            opacity: 0.8 !important;
        }

        /* Responsive Ayarlar */
        @media (max-width: 992px) {
            .footer-contact {
                grid-template-columns: 1fr;
            }
        }

  .contact-buttons .social-icon,
  .social-icons .social-icon {
    width: 70px !important;
    height: 35px !important;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 !important;
    border-radius: 12px !important;
  }

  .contact-buttons .social-icon img,
  .social-icons .social-icon img {
    width: 60px !important;
   
    max-height: 40px !important;
    object-fit: contain;
  }

  .contact-buttons .social-icon.randevu img{
    font-size: 15px !important;
    line-height: 1 !important;
    padding: 0 !important;
    text-align: center;
    
  }

        @media (max-width: 768px) {
            .offcanvas-title {
                font-size: 1.5rem;
                margin-left: 40px;
            }

            .offcanvas-body .nav-link {
                font-size: 1.1rem !important;
                padding: 1rem !important;
            }

           
        
        }

        @media (max-width: 576px) {
            .footer-map {
                height: 250px;
            }

            

            .offcanvas-end {
                width: 260px !important;
            }
           
            

        }

        .contact-info {
            margin-bottom: 20px;
            text-align: center;
        }

        .contact-info p {
            color: #fff;
            font-size: 1rem;
            line-height: 1.6;
            margin-bottom: 15px;
        }

        /* İletişim Butonları Stilleri */
        .contact-buttons {
            display: flex;
            justify-content: center;
            gap: 20px;
            margin-top: 15px;
        } .contact-buttons .social-icon {
            width: 100px;
            height: 40px;
            border: none;
            cursor: pointer;
            transition: all 0.3s ease;
            border-radius: 15px;
        }

        .contact-buttons .social-icon.whatsapp {
            background: linear-gradient(45deg, #25d366, #128C7E);
        }

        .contact-buttons .social-icon.randevu {
    width: 70px !important;  /* diğer ikonla aynı */
    height: 35px !important;  /* diğer ikonla aynı */
    font-size: 20px !important;
    line-height: 1 !important;
    padding: 0 !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    border-radius: 15px !important;
    background: linear-gradient(45deg, #6c757d, #495057) !important;
    color: white !important;
    text-decoration: none !important;
}

        .contact-buttons .social-icon:hover {
            transform: translateY(-5px);
            box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
        }

        .contact-buttons .social-icon img {
            width: 40px;
            height: 30px;
            object-fit: contain;
            filter: none;
        }

        .expertise-grid, .approach-grid, .services-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: clamp(1rem, 2vw, 1.5rem);
            margin-top: clamp(1.5rem, 3vw, 2rem);
        }

        .expertise-item, .approach-item, .service-item {
            padding: clamp(1.2rem, 2.5vw, 1.8rem);
            border-radius: 0.8rem;
            background: rgba(255, 255, 255, 0.1);
            backdrop-filter: blur(5px);
            transition: transform 0.3s ease, box-shadow 0.3s ease;
            overflow: hidden;
        }

        .expertise-item:hover, .approach-item:hover, .service-item:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
        }

        .expertise-item header, .approach-item h4, .service-item h4 {
            font-size: clamp(1.1rem, 2vw, 1.4rem);
            margin-bottom: 1rem;
            font-weight: 600;
        }

        @media (max-width: 1024px) {
            .expertise-grid, .approach-grid, .services-grid {
                grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
                gap: 1.2rem;
                margin-top: 1.5rem;
            }

            .expertise-item, .approach-item, .service-item {
                padding: 1.2rem;
            }
        }

        @media (max-width: 768px) {
            .expertise-grid, .approach-grid, .services-grid {
                grid-template-columns: repeat(2, 1fr);
                gap: 1rem;
                margin-top: 1.2rem;
            }

            .expertise-item, .approach-item, .service-item {
                padding: 1rem;
            }

            .expertise-item header, .approach-item h4, .service-item h4 {
                font-size: 1rem;
                margin-bottom: 0.8rem;
            }
        }

        @media (max-width: 480px) {
            .expertise-grid, .approach-grid, .services-grid {
                grid-template-columns: 1fr;
                gap: 0.8rem;
                margin-top: 1rem;
            }

            .expertise-item, .approach-item, .service-item {
                padding: 0.9rem;
            }

            .expertise-item header, .approach-item h4, .service-item h4 {
                font-size: 0.95rem;
                margin-bottom: 0.6rem;
            }
        }

        .timeline {
            display: grid;
            gap: 20px;
            margin-top: 20px;
        }

        .timeline-item {
            padding: 20px;
            border-radius: 10px;
            background: rgba(255, 255, 255, 0.1);
            backdrop-filter: blur(5px);
            position: relative;
        }

        .timeline-item::before {
            content: '';
            position: absolute;
            left: -20px;
            top: 50%;
            width: 10px;
            height: 10px;
            border-radius: 50%;
            background: #fff;
        }

        .section-title {
            font-size: clamp(1.8rem, 5vw, 2.8rem);
            text-align: center;
            margin-bottom: 2rem;
            font-weight: 900;
            background: linear-gradient(135deg, #2c1810 0%, #FF6B6B 50%, #2c1810 100%);
            background-size: 200% 200%;
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            animation: titleGradientFlow 4s ease-in-out infinite;
            position: relative;
            padding-bottom: 1rem;
            letter-spacing: -0.02em;
        }

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

        .section-title::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 50%;
            transform: translateX(-50%);
            width: 0;
            height: 4px;
            background: linear-gradient(90deg, #FF6B6B 0%, #c58e8e 100%);
            border-radius: 2px;
            animation: titleUnderlineFlow 0.8s ease-out forwards;
        }

        @keyframes titleUnderlineFlow {
            from { width: 0; }
            to { width: 200px; }
        }

        .section-title .title-icon {
            display: inline-block;
            margin-right: 0.8rem;
            animation: iconWave 1.2s ease-in-out infinite;
        }

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

        .section-subtitle {
            font-size: clamp(0.95rem, 3vw, 1.15rem);
            text-align: center;
            color: rgba(44, 24, 16, 0.8);
            margin-bottom: 3rem;
            font-weight: 600;
            max-width: 800px;
            margin-left: auto;
            margin-right: auto;
            line-height: 1.8;
            letter-spacing: 0.3px;
        }

        .intro-text {
            font-size: 1.2rem;
            text-align: center;
            max-width: 800px;
            margin: 0 auto 40px;
            line-height: 1.6;
        }

        section {
            margin-bottom: 60px;
            padding: 20px;
            width: 100%;
            overflow-x: hidden;
        }

        .big-header {
            text-align: center;
            margin-bottom: 30px;
            font-size: 2rem;
            font-weight: 600;
        }

        @media (max-width: 768px) {
            .expertise-grid, .approach-grid, .services-grid {
                grid-template-columns: 1fr;
            }
            
            .section-title {
                font-size: 1.8rem;
                margin-bottom: 0.8rem;
            }

            .section-subtitle {
                font-size: 0.95rem;
                margin-bottom: 1.5rem;
            }
            
            .intro-text {
                font-size: 1.1rem;
            }
        }

        @media (max-width: 480px) {
            .section-title {
                font-size: 1.4rem;
                margin-bottom: 0.6rem;
            }

            .section-subtitle {
                font-size: 0.85rem;
                margin-bottom: 1.2rem;
            }
        }

        .hero-section {
            min-height: 80vh;
            display: flex;
            align-items: center;
            justify-content: space-between;
            padding: 2rem;
            margin-bottom: 4rem;
            background: rgba(255, 255, 255, 0.1);
            backdrop-filter: blur(10px);
            border-radius: 20px;
        }

        .hero-content {
            flex: 1;
            padding-right: 4rem;
        }

        .hero-title {
            font-size: 3.5rem;
            margin-bottom: 2rem;
            line-height: 1.2;
            font-weight: 700;
        }

        .hero-subtitle {
            font-size: 1.8rem;
            margin-bottom: 2rem;
            opacity: 0.9;
        }

        .featured-image {
            flex: 1;
        }

        .main-image {
            width: 100%;
            max-width: 500px;
            border-radius: 20px;
            box-shadow: 0 20px 40px rgba(0,0,0,0.2);
            transition: transform 0.5s ease;
        }

        .main-image:hover {
            transform: scale(1.02) translateY(-10px);
        }

        .bio-section {
            padding: 4rem 2rem;
            margin: 2rem 0;
            background: rgba(255, 255, 255, 0.1);
            backdrop-filter: blur(10px);
            border-radius: 20px;
        }

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

        .bio-content h2 {
            font-size: 2.5rem;
            margin-bottom: 2rem;
            font-weight: 700;
        }

        .bio-text {
            font-size: 1.2rem;
            line-height: 1.8;
            margin-bottom: 3rem;
        }

        .experience-highlights {
            display: flex;
            justify-content: space-around;
            gap: 2rem;
            margin-top: 3rem;
        }

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

        .highlight-number {
            display: block;
            font-size: 3rem;
            font-weight: bold;
            margin-bottom: 1rem;
        }

        .highlight-text {
            font-size: 1.2rem;
        }

        .services-section {
            padding: 4rem 2rem;
        }

        .services-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 2rem;
            margin-top: 3rem;
        }

        .service-card {
            background: #ffffff;
            border-radius: 15px;
            padding: 2.5rem 2rem;
            transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
            box-shadow: 0 10px 20px rgba(0, 0, 0, 0.05);
            position: relative;
            overflow: hidden;
            border: 1px solid rgba(0, 0, 0, 0.05);
            height: 100%;
            display: flex;
            flex-direction: column;
            justify-content: space-between;
        }

        .service-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
            background: rgba(255, 255, 255, 0.15);
            border-color: rgba(255, 255, 255, 0.3);
        }

        .service-card .service-icon {
            font-size: 3.5rem;
            margin-bottom: 1.5rem;
            text-shadow: 0 2px 10px rgba(0,0,0,0.1);
        }

        .service-card h3 {
            font-size: 1.6rem;
            margin-bottom: 1rem;
            color: #333;
            font-weight: 600;
        }

        .service-link {
            margin-top: auto;
            padding: 0.8rem 1.5rem;
            background: rgba(0, 0, 0, 0.1);
            border-radius: 10px;
            transition: all 0.3s ease;
            text-decoration: none;
            color: inherit;
        }

        .service-link:hover {
            background: rgba(0, 0, 0, 0.2);
            transform: translateY(-2px);
        }

        /* FAQ Styles */
        .faq-section {
            padding: 3rem 2rem;
            background: transparent;
            margin: 2rem auto;
            max-width: 950px;
        }

        .faq-section h2 {
            font-size: clamp(1.8rem, 4vw, 2.5rem);
            margin-bottom: 2.5rem;
            text-align: center;
            color: #c58e8e;
            font-weight: 700;
        }

        .faq-list {
            margin-top: 1.5rem;
        }

        .faq-category {
            margin-bottom: 2.5rem;
            background: rgba(255, 255, 255, 0.6);
            padding: 1.5rem;
            border-radius: 15px;
            box-shadow: 0 4px 12px rgba(197, 142, 142, 0.05);
            border-left: 4px solid #c58e8e;
        }

        .faq-category h3 {
            color: #c58e8e;
            font-size: 1.1rem;
            margin: 0 0 1.2rem 0;
            display: flex;
            align-items: center;
            gap: 0.7rem;
            font-weight: 600;
        }

        .faq-category h3 i {
            font-size: 1.2rem;
            opacity: 0.85;
        }

        .faq-item {
            background: linear-gradient(135deg, #fff 0%, #f9f5f3 100%);
            border-radius: 1.2rem;
            margin-bottom: 1rem;
            overflow: hidden;
            box-shadow: 0 4px 16px rgba(197, 142, 142, 0.1);
            transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
            border: 2px solid rgba(255, 107, 107, 0.15);
            cursor: pointer;
            position: relative;
        }

        .faq-item::before {
            content: '';
            position: absolute;
            left: 0;
            top: 0;
            width: 4px;
            height: 0;
            background: linear-gradient(180deg, #FF6B6B 0%, #c58e8e 100%);
            transition: height 0.4s cubic-bezier(0.4, 0, 0.2, 1);
            z-index: 1;
        }

        .faq-item:hover {
            box-shadow: 0 12px 32px rgba(255, 107, 107, 0.15);
            border-color: rgba(255, 107, 107, 0.3);
            background: linear-gradient(135deg, #fff 0%, #fff6f4 100%);
            transform: translateY(-4px);
        }

        .faq-item.active {
            box-shadow: 0 12px 32px rgba(255, 107, 107, 0.2);
            border-color: rgba(255, 107, 107, 0.4);
        }

        .faq-item.active::before {
            height: 100%;
        }

        .faq-question {
            padding: 1.5rem;
            cursor: pointer;
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 1rem;
            transition: all 0.4s ease;
            position: relative;
            z-index: 2;
        }

        .faq-question:hover {
            background: transparent;
        }

        .faq-question h3 {
            margin: 0;
            font-size: 1rem;
            font-weight: 800;
            color: #2c1810;
            flex: 1;
            line-height: 1.5;
            letter-spacing: -0.01em;
        }

        .faq-toggle {
            background: linear-gradient(135deg, #FF6B6B 0%, #c58e8e 100%);
            border: none;
            padding: 0.6rem;
            font-size: 1.2rem;
            color: white;
            cursor: pointer;
            transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
            width: 36px;
            height: 36px;
            display: flex;
            align-items: center;
            justify-content: center;
            flex-shrink: 0;
            border-radius: 50%;
            box-shadow: 0 4px 12px rgba(255, 107, 107, 0.3);
        }

        .faq-item:hover .faq-toggle {
            transform: scale(1.1);
            box-shadow: 0 6px 16px rgba(255, 107, 107, 0.4);
        }

        .faq-item.active .faq-toggle {
            transform: rotate(180deg) scale(1.15);
            box-shadow: 0 8px 20px rgba(255, 107, 107, 0.4);
        }

        .faq-answer {
            max-height: 0;
            overflow: hidden;
            transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
            background: rgba(255, 255, 255, 0.6);
            opacity: 0;
            position: relative;
            z-index: 2;
        }

        .faq-item.active .faq-answer {
            max-height: 1000px;
            opacity: 1;
            padding: 1.5rem;
            border-top: 2px solid rgba(255, 107, 107, 0.2);
        }

        .faq-answer p {
            margin: 0;
            color: rgba(44, 24, 16, 0.8);
            line-height: 1.8;
            font-size: 0.95rem;
            letter-spacing: 0.3px;
        }

        @media (max-width: 768px) {
            .faq-section {
                padding: 2rem 1.2rem;
                max-width: 100%;
            }

            .faq-category {
                padding: 1.2rem;
                margin-bottom: 1.5rem;
            }

            .faq-category h3 {
                font-size: 1rem;
                margin-bottom: 1rem;
            }

            .faq-question {
                padding: 0.9rem 1rem;
            }

            .faq-question h3 {
                font-size: 0.9rem;
            }

            .faq-toggle {
                width: 18px;
                height: 18px;
                font-size: 0.9rem;
            }

            .faq-item.active .faq-answer {
                padding: 0.7rem 1rem;
            }

            .faq-answer p {
                font-size: 0.85rem;
            }
        }

        @media (max-width: 480px) {
            .faq-section {
                padding: 1.5rem 1rem;
            }

            .faq-section h2 {
                font-size: 1.6rem;
                margin-bottom: 1.5rem;
            }

            .faq-category {
                padding: 1rem;
                margin-bottom: 1rem;
                border-left-width: 3px;
            }

            .faq-category h3 {
                font-size: 0.9rem;
                margin-bottom: 0.8rem;
                gap: 0.5rem;
            }

            .faq-category h3 i {
                font-size: 1rem;
            }

            .faq-item {
                margin-bottom: 0.6rem;
                border-radius: 8px;
            }

            .faq-question {
                padding: 0.8rem 0.9rem;
                gap: 0.6rem;
            }

            .faq-question h3 {
                font-size: 0.85rem;
            }

            .faq-toggle {
                width: 16px;
                height: 16px;
                font-size: 0.85rem;
            }

            .faq-item.active .faq-answer {
                padding: 0.6rem 0.9rem;
            }

            .faq-answer p {
                font-size: 0.8rem;
            }
        }

        .cta-section {
            text-align: center;
            padding: 4rem 2rem;
            margin: 2rem 0;
            background: rgba(255, 255, 255, 0.1);
            backdrop-filter: blur(10px);
            border-radius: 20px;
        }

        .cta-section h2 {
            font-size: 2.5rem;
            margin-bottom: 1rem;
        }

        .cta-buttons {
            display: flex;
            justify-content: center;
            gap: 2rem;
            margin-top: 2rem;
        }

        .cta-button {
            padding: 1rem 2rem;
            font-size: 1.2rem;
            border: none;
            border-radius: 10px;
            cursor: pointer;
            transition: transform 0.3s ease;
            background: rgba(255, 255, 255, 0.2);
            backdrop-filter: blur(5px);
        }

        .cta-button:hover {
            transform: translateY(-5px);
        }

        .cta-button.whatsapp {
            background: linear-gradient(45deg, #25d366, #128C7E);
            color: white;
        }

        @media (max-width: 768px) {
            .hero-section {
                flex-direction: column;
                text-align: center;
                padding: 1rem;
            }

            .hero-content {
                padding-right: 0;
                padding-left: 0;
                margin-bottom: 2rem;
            }

            .hero-title {
                font-size: 1.5rem;
            }

            .experience-highlights {
                flex-direction: column;
            }

            .cta-buttons {
                flex-direction: column;
                align-items: center;
            }
        }

        .profiles-section {
            padding: 4rem 2rem;
        }

        .profile-cards {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 2rem;
            margin-top: 3rem;
        }

        .profile-card {
            padding: 2rem;
            background: rgba(255, 255, 255, 0.1);
            backdrop-filter: blur(10px);
            border-radius: 20px;
            transition: all 0.3s ease;
            text-align: center;
        }

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

        .card-icon {
            font-size: 3rem;
            margin-bottom: 1.5rem;
        }

        .journey-illustration {
            position: relative;
            width: 100%;
            padding: 6rem 0;
            background: linear-gradient(135deg, #fff6f6 0%, #fff 100%);
            overflow: hidden;
        }

        .journey-illustration::before {
            content: '';
            position: absolute;
            inset: 0;
            background-image: linear-gradient(120deg, rgba(197, 142, 142, 0.03) 0%, transparent 50%);
            z-index: 1;
        }

        .journey-illustration .timeline {
            position: relative;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 2rem;
        }

        .journey-illustration .journey-content {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 2rem;
            position: relative;
            z-index: 2;
        }

        .journey-illustration .journey-steps {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
            gap: 2.5rem;
            margin-top: 4rem;
        }

        .journey-illustration .timeline-item {
            display: flex;
            justify-content: flex-end;
            padding-left: 30px;
            position: relative;
            margin-bottom: 4rem;
            width: 50%;
        }

        .journey-illustration .timeline-item:nth-child(even) {
            align-self: flex-end;
            justify-content: flex-start;
            padding-left: 0;
            padding-right: 30px;
            margin-left: auto;
        }

        .journey-illustration .step-card {
            background: #fff;
            padding: 3rem 2.5rem;
            border-radius: 15px;
            position: relative;
            transition: all 0.4s ease;
            box-shadow: 0 10px 30px rgba(197, 142, 142, 0.07);
            display: flex;
            flex-direction: column;
            height: 100%;
            border: 1px solid rgba(197, 142, 142, 0.1);
        }

        .journey-illustration .step-number {
            position: absolute;
            top: -25px;
            left: 2.5rem;
            width: 50px;
            height: 50px;
            background: #fff;
            border: 2px solid rgba(197, 142, 142, 0.2);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.3rem;
            font-weight: 700;
            color: #2c1810;
            transition: all 0.4s ease;
        }

        .journey-illustration .timeline-item:nth-child(even) .timeline-content::before {
            left: -40px;
            right: auto;
        }

        .journey-illustration .process-step:hover {
            transform: translateX(10px);
            background: rgba(74, 44, 36, 0.7);
        }

        .journey-illustration .step-content {
            flex-grow: 1;
            margin-top: 1rem;
        }

        .journey-illustration .step-title {
            color: #2c1810;
            font-size: 1.5rem;
            font-weight: 700;
            margin-bottom: 1rem;
            position: relative;
            padding-bottom: 1rem;
            line-height: 1.4;
        }

        .journey-illustration .step-title::after {
            content: '';
            position: absolute;
            left: 0;
            bottom: 0;
            width: 50px;
            height: 2px;
            background: rgba(197, 142, 142, 0.3);
            transition: all 0.4s ease;
        }

        .journey-illustration .step-description {
            color: rgba(44, 24, 16, 0.75);
            font-size: 1.05rem;
            line-height: 1.7;
            margin-bottom: 1.5rem;
        }

        .journey-illustration .step-icon {
            color: rgba(197, 142, 142, 0.7);
            font-size: 2.5rem;
            margin-bottom: 1.5rem;
            transition: all 0.4s ease;
        }

        .journey-illustration .step-arrow {
            position: absolute;
            right: 2rem;
            color: #c58e8e;
            font-size: 1.5rem;
            opacity: 0;
            transform: translateX(-10px);
            transition: all 0.3s ease;
        }

        .journey-illustration .process-step:hover .step-arrow {
            opacity: 1;
            transform: translateX(0);
        }

        .journey-illustration .timeline-item {
            position: relative;
            margin-bottom: 6rem;
            width: 50%;
            padding-right: 50px;
        }

        .journey-illustration .timeline-item:nth-child(even) {
            margin-left: 50%;
            padding-right: 0;
            padding-left: 50px;
        }

        .journey-illustration .timeline-item:nth-child(even) .timeline-content::before {
            right: auto;
            left: -44px;
        }

        .journey-illustration .timeline-icon {
            position: absolute;
            top: -15px;
            right: 15px;
            width: 30px;
            height: 30px;
            background: rgba(197, 142, 142, 0.1);
            border: 1px solid #c58e8e;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: #c58e8e;
            font-size: 1rem;
            transition: all 0.4s ease;
        }

        .journey-illustration .timeline-content:hover .timeline-icon {
            transform: rotate(180deg);
            background: #c58e8e;
            color: #2c1810;
        }

        @media (max-width: 768px) {
            .journey-illustration {
                padding: 3rem 1rem;
            }

            .journey-illustration .process-steps {
                padding: 1rem;
                gap: 1rem;
            }

            .journey-illustration .process-step {
                padding: 1.5rem;
                gap: 1rem;
            }

            .journey-illustration .step-number {
                width: 45px;
                height: 45px;
                font-size: 1.2rem;
            }

            .journey-illustration .step-title {
                font-size: 1.2rem;
            }

            .journey-illustration .step-description {
                font-size: 0.95rem;
            }

            .journey-illustration .step-arrow {
                display: none;
            }
        }

        .journey-illustration .process-step {
            opacity: 0;
            animation: slideIn 0.5s ease forwards;
        }

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

        .journey-illustration .process-step:nth-child(1) { animation-delay: 0.1s; }
        .journey-illustration .process-step:nth-child(2) { animation-delay: 0.3s; }
        .journey-illustration .process-step:nth-child(3) { animation-delay: 0.5s; }

        .journey-section {
            padding: 4rem 2rem;
        }

        /* Uzmanlık Alanları Animasyonları */
        @keyframes float {
            0% { transform: translateY(0); }
            50% { transform: translateY(-10px); }
            100% { transform: translateY(0); }
        }

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

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

        /* Uzmanlık Alanları Bölümü */
        .expertise-section {
            padding: clamp(2rem, 5vw, 6rem) clamp(1rem, 3vw, 2rem);
            background: #fff;
            position: relative;
            overflow: hidden;
        }

        @media (max-width: 1024px) {
            .expertise-section {
                padding: 3rem 1.5rem;
            }
        }

        @media (max-width: 768px) {
            .expertise-section {
                padding: 2rem 1.5rem;
            }
        }

        @media (max-width: 480px) {
            .expertise-section {
                padding: 1.5rem 1rem;
            }
        }

        .expertise-section::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: 
                linear-gradient(120deg, #fff6f6 0%, transparent 40%),
                linear-gradient(-120deg, #fff6f6 0%, transparent 40%);
            pointer-events: none;
        }

        .expertise-section::after {
            content: '';
            position: absolute;
            width: 100%;
            height: 100%;
            top: 0;
            left: 0;
            background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23c58e8e' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E") repeat;
            opacity: 0.5;
            pointer-events: none;
        }

        .expertise-container {
            max-width: 1400px;
            margin: 0 auto;
            padding: 0 clamp(1rem, 2vw, 2rem);
            position: relative;
            z-index: 1;
        }

        .expertise-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
            gap: clamp(1.2rem, 2.5vw, 2rem);
            margin-top: 2rem;
            position: relative;
            max-width: 100%;
            width: 100%;
        }

        /* Expertise Slider Styles */
        .expertise-slider-wrapper {
            display: flex;
            align-items: center;
            gap: 2rem;
            margin-top: 4rem;
            position: relative;
            padding: 0 2rem;
            max-width: 100%;
            margin-left: auto;
            margin-right: auto;
            justify-content: center;
        }

        .expertise-slider-container {
            flex: 1;
            overflow: hidden;
            border-radius: 20px;
            max-width: 1200px;
            width: 100%;
        }

        .expertise-slider-track {
            display: flex;
            gap: 3rem;
            transition: transform 0.5s ease-out;
            width: 100%;
        }

        .expertise-slider-item {
            flex: 0 0 calc(33.333% - 2rem);
            min-width: 0;
            width: auto;
        }

        .slider-button {
            background: linear-gradient(135deg, #c58e8e, #a67c7c);
            border: none;
            color: white;
            width: 50px;
            height: 50px;
            border-radius: 50%;
            cursor: pointer;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.5rem;
            transition: all 0.3s ease;
            flex-shrink: 0;
            box-shadow: 0 5px 15px rgba(197, 142, 142, 0.3);
        }

        .slider-button:hover {
            transform: scale(1.1);
            box-shadow: 0 8px 20px rgba(197, 142, 142, 0.4);
        }

        .slider-button:disabled {
            opacity: 0.5;
            cursor: not-allowed;
        }

        @media (max-width: 1200px) {
            .expertise-slider-wrapper {
                gap: 1rem;
                padding: 0 1.5rem;
            }
            
            .expertise-slider-item {
                flex: 0 0 calc(50% - 1.5rem);
            }
        }

        @media (max-width: 768px) {
            .expertise-slider-wrapper {
                gap: 1rem;
                padding: 0 1rem;
            }
            
            .expertise-slider-item {
                flex: 0 0 calc(100% - 1rem);
            }

            .slider-button {
                width: 40px;
                height: 40px;
                font-size: 1.2rem;
            }
            
            .expertise-slider-container {
                max-width: 100%;
            }
        }

        @media (max-width: 480px) {
            .expertise-slider-wrapper {
                gap: 0.5rem;
                padding: 0 0.5rem;
                margin-top: 2rem;
            }
            
            .expertise-slider-item {
                flex: 0 0 100%;
            }
            
            .slider-button {
                width: 36px;
                height: 36px;
                font-size: 1rem;
            }
            
            .expertise-section {
                padding: 2rem 1rem;
            }
            
            .section-title {
                font-size: 1.5rem;
                margin-bottom: 2rem;
                line-height: 1.4;
            }
        }

        .expertise-card {
            background: rgba(255, 255, 255, 0.7);
            backdrop-filter: blur(10px);
            -webkit-backdrop-filter: blur(10px);
            border-radius: 30px;
            padding: 3.5rem;
            box-shadow: 
                0 15px 35px rgba(44, 24, 16, 0.03),
                0 5px 15px rgba(0, 0, 0, 0.02);
            transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
            position: relative;
            overflow: hidden;
            display: flex;
            flex-direction: column;
            border: 1px solid rgba(197, 142, 142, 0.1);
            animation: slideUp 0.6s backwards;
            height: 100%;
        }

        .expertise-card:nth-child(1) { animation-delay: 0.1s; }
        .expertise-card:nth-child(2) { animation-delay: 0.2s; }
        .expertise-card:nth-child(3) { animation-delay: 0.3s; }
        .expertise-card:nth-child(4) { animation-delay: 0.4s; }
        .expertise-card:nth-child(5) { animation-delay: 0.5s; }
        .expertise-card:nth-child(6) { animation-delay: 0.6s; }

        .expertise-card::before {
            content: '';
            position: absolute;
            inset: 0;
            border-radius: 24px;
            padding: 2px;
            background: linear-gradient(135deg, #c58e8e 0%, transparent 50%);
            -webkit-mask: 
                linear-gradient(#fff 0 0) content-box, 
                linear-gradient(#fff 0 0);
            mask: 
                linear-gradient(#fff 0 0) content-box, 
                linear-gradient(#fff 0 0);
            -webkit-mask-composite: xor;
            mask-composite: exclude;
            opacity: 0;
            transition: opacity 0.4s ease;
        }

        .expertise-card:hover {
            transform: translateY(-10px);
            box-shadow: 
                0 25px 50px rgba(44, 24, 16, 0.1),
                0 10px 20px rgba(0, 0, 0, 0.03);
            background: rgba(255, 255, 255, 0.9);
            border-color: rgba(197, 142, 142, 0.2);
        }

        .expertise-card:hover::before {
            opacity: 1;
            transform: scale(1.05);
        }

        @media (max-width: 768px) {
            .expertise-card {
                padding: 2.5rem 2rem;
            }
        }

        @media (max-width: 480px) {
            .expertise-card {
                padding: 1.8rem 1.5rem;
            }
        }

        .expertise-icon {
            width: 90px;
            height: 90px;
            background: linear-gradient(135deg, rgba(197, 142, 142, 0.2) 0%, rgba(197, 142, 142, 0.1) 100%);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 2.5rem;
            font-size: 2.2rem;
            color: #c58e8e;
            transition: all 0.5s ease;
            position: relative;
            animation: float 4s ease-in-out infinite;
            box-shadow: 
                0 10px 20px rgba(197, 142, 142, 0.1),
                inset 0 -5px 10px rgba(255, 255, 255, 0.5);
        }

        .expertise-icon::after {
            content: '';
            position: absolute;
            inset: -3px;
            border: 2px solid rgba(197, 142, 142, 0.15);
            border-radius: inherit;
            opacity: 0;
            transform: scale(0.9);
            transition: all 0.4s ease;
        }

        .expertise-card:hover .expertise-icon {
            background: rgba(197, 142, 142, 0.15);
            transform: translateY(-5px) scale(1.1);
            animation: none;
        }

        .expertise-card:hover .expertise-icon::after {
            opacity: 1;
            transform: scale(1);
        }

        .expertise-badge {
            position: absolute;
            top: 2rem;
            right: 2rem;
            background: rgba(197, 142, 142, 0.1);
            color: #c58e8e;
            padding: 0.6rem 1.2rem;
            border-radius: 20px;
            font-size: 0.9rem;
            font-weight: 600;
            transition: all 0.3s ease;
            transform-origin: right;
        }

        .expertise-card:hover .expertise-badge {
            background: #c58e8e;
            color: #fff;
            transform: scale(1.05);
        }

        .expertise-card-title {
            font-size: 1.6rem;
            color: #2c1810;
            margin-bottom: 1.2rem;
            font-weight: 700;
            line-height: 1.4;
            position: relative;
            transition: all 0.3s ease;
        }

        .expertise-card:hover .expertise-card-title {
            transform: translateX(5px);
            color: #c58e8e;
        }

        .expertise-card-text {
            color: rgba(44, 24, 16, 0.75);
            margin-bottom: 2rem;
            line-height: 1.8;
            font-size: 1.05rem;
        }

        .expertise-features {
            list-style: none;
            padding: 0;
            margin: 0 0 2rem 0;
            display: flex;
            flex-direction: column;
            gap: 1rem;
        }

        .expertise-feature {
            display: flex;
            align-items: center;
            gap: 1.2rem;
            color: rgba(44, 24, 16, 0.75);
            font-size: 1.05rem;
            transition: all 0.4s ease;
            cursor: pointer;
            padding: 0.8rem 1.2rem;
            border-radius: 12px;
            background: transparent;
            margin: 0 -1.2rem;
        }

        .expertise-feature i {
            color: #c58e8e;
            font-size: 1.3rem;
            transition: all 0.4s ease;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            width: 32px;
            height: 32px;
            background: rgba(197, 142, 142, 0.1);
            border-radius: 8px;
        }

        .expertise-feature:hover {
            transform: translateX(5px);
            color: #2c1810;
            background: rgba(197, 142, 142, 0.05);
        }

        .expertise-feature:hover i {
            transform: scale(1.1);
            color: #c58e8e;
            background: rgba(197, 142, 142, 0.2);
            box-shadow: 0 5px 15px rgba(197, 142, 142, 0.15);
        }

        .expertise-link {
            margin-top: auto;
            padding-top: clamp(1rem, 2vw, 1.5rem);
            width: 100%;
        }

        .expertise-button {
            display: flex;
            align-items: center;
            justify-content: center;
            gap: clamp(0.5rem, 1vw, 0.8rem);
            padding: clamp(0.8rem, 1.5vw, 1rem) clamp(1.2rem, 2vw, 1.8rem);
            background: linear-gradient(135deg, rgba(197, 142, 142, 0.1) 0%, rgba(197, 142, 142, 0.05) 100%);
            border: none;
            color: #c58e8e;
            font-weight: 600;
            font-size: clamp(0.9rem, 1.5vw, 1rem);
            text-decoration: none;
            position: relative;
            transition: all 0.5s ease;
            border-radius: 100px;
            letter-spacing: 0.3px;
            cursor: pointer;
            width: 100%;
            max-width: 100%;
            min-width: 0;
            flex-wrap: wrap;
            line-height: 1.4;
        }

        .expertise-button::before {
            content: '';
            position: absolute;
            inset: -2px;
            background: linear-gradient(135deg, #c58e8e 0%, rgba(197, 142, 142, 0.5) 100%);
            border-radius: 100px;
            z-index: -1;
            opacity: 0;
            transition: all 0.5s ease;
        }

        .expertise-button::after {
            content: '';
            position: absolute;
            inset: 0;
            border: 2px solid rgba(197, 142, 142, 0.3);
            border-radius: 12px;
            transition: all 0.4s ease;
        }

        .expertise-button:hover {
            color: #fff;
            transform: translateY(-3px);
            box-shadow: 0 10px 20px rgba(197, 142, 142, 0.2);
            background: transparent;
        }

        .expertise-button:hover::before {
            opacity: 1;
        }

        .expertise-button:hover::after {
            opacity: 0;
        }

        .expertise-button:hover i {
            transform: translateX(10px) scale(1.2);
            filter: brightness(200%);
        }

        .expertise-button i {
            transition: all 0.5s ease;
            font-size: 1.1rem;
            transform-origin: center;
        }

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

        /* Modal Styles */
        .expertise-modal {
            display: none;
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(44, 24, 16, 0.3);
            backdrop-filter: blur(8px);
            -webkit-backdrop-filter: blur(8px);
            z-index: 1000;
            opacity: 0;
            transition: opacity 0.3s ease;
        }

        .expertise-modal.show {
            display: flex;
            align-items: center;
            justify-content: center;
            animation: modalFadeIn 0.4s forwards;
        }

        @keyframes modalFadeIn {
            from {
                opacity: 0;
                transform: scale(0.95);
            }
            to {
                opacity: 1;
                transform: scale(1);
            }
        }

        .expertise-modal-content {
            background: #fff;
            border-radius: 24px;
            width: 90%;
            max-width: 800px;
            max-height: 90vh;
            overflow-y: auto;
            position: relative;
            box-shadow: 0 25px 50px rgba(44, 24, 16, 0.15);
            opacity: 0;
            transform: translateY(20px);
        }

        .expertise-modal.show .expertise-modal-content {
            animation: modalContentSlide 0.5s 0.1s forwards;
        }

        @keyframes modalContentSlide {
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        .expertise-modal-header {
            padding: 2.5rem 3rem;
            border-bottom: 1px solid rgba(197, 142, 142, 0.1);
            display: flex;
            align-items: center;
            gap: 1.5rem;
            background: linear-gradient(135deg, rgba(197, 142, 142, 0.1) 0%, rgba(197, 142, 142, 0.05) 100%);
        }

        .modal-icon {
            font-size: 2.5rem;
            color: #c58e8e;
            background: rgba(197, 142, 142, 0.1);
            width: 60px;
            height: 60px;
            display: flex;
            align-items: center;
            justify-content: center;
            border-radius: 16px;
        }

        .expertise-modal-header h3 {
            font-size: 2rem;
            color: #2c1810;
            margin: 0;
            flex-grow: 1;
        }

        .modal-close {
            background: transparent;
            border: none;
            color: #2c1810;
            font-size: 1.5rem;
            cursor: pointer;
            padding: 0.5rem;
            transition: all 0.3s ease;
            width: 40px;
            height: 40px;
            border-radius: 12px;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .modal-close:hover {
            background: rgba(197, 142, 142, 0.1);
            color: #c58e8e;
            transform: rotate(90deg);
        }

        .expertise-modal-body {
            padding: 3rem;
        }

        .modal-section {
            margin-bottom: 3rem;
        }

        .modal-section h4 {
            font-size: 1.4rem;
            color: #2c1810;
            margin-bottom: 1.5rem;
            display: flex;
            align-items: center;
            gap: 1rem;
        }

        .modal-section p {
            color: rgba(44, 24, 16, 0.75);
            line-height: 1.8;
            font-size: 1.05rem;
            margin-bottom: 1.5rem;
        }

        .modal-section ul {
            list-style: none;
            padding: 0;
            margin: 0;
            display: flex;
            flex-direction: column;
            gap: 1.5rem;
        }

        .modal-section ul li {
            display: flex;
            gap: 1rem;
            align-items: flex-start;
            padding: 1.5rem;
            background: rgba(197, 142, 142, 0.05);
            border-radius: 16px;
            transition: all 0.3s ease;
        }

        .modal-section ul li:hover {
            background: rgba(197, 142, 142, 0.08);
            transform: translateX(5px);
        }

        .modal-section ul li i {
            color: #c58e8e;
            font-size: 1.2rem;
            flex-shrink: 0;
            margin-top: 0.2rem;
        }

        .modal-section ul li strong {
            display: block;
            color: #2c1810;
            margin-bottom: 0.5rem;
            font-size: 1.1rem;
        }

        .modal-section ul li p {
            margin: 0;
            color: rgba(44, 24, 16, 0.75);
        }

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

        .process-step {
            text-align: center;
            padding: 2rem;
            background: rgba(197, 142, 142, 0.05);
            border-radius: 20px;
            transition: all 0.3s ease;
        }

        .process-step:hover {
            background: rgba(197, 142, 142, 0.08);
            transform: translateY(-5px);
        }

     

        .process-step h5 {
            color: #2c1810;
            margin-bottom: 1rem;
            font-size: 1.2rem;
        }

        .process-step p {
            color: rgba(44, 24, 16, 0.75);
            font-size: 0.95rem;
            margin: 0;
        }

        .modal-cta {
            text-align: center;
            margin-top: 3rem;
        }

        .modal-button {
            display: inline-flex;
            align-items: center;
            gap: 1rem;
            padding: 1.2rem 3rem;
            background: #c58e8e;
            color: #fff;
            border-radius: 100px;
            text-decoration: none;
            font-weight: 600;
            font-size: 1.1rem;
            transition: all 0.3s ease;
            box-shadow: 0 10px 20px rgba(197, 142, 142, 0.2);
        }

        .modal-button:hover {
            transform: translateY(-3px);
            box-shadow: 0 15px 30px rgba(197, 142, 142, 0.3);
            background: #b67e7e;
        }

        .modal-button i {
            font-size: 1.2rem;
        }

        @media (max-width: 768px) {
            .expertise-grid {
                grid-template-columns: 1fr;
                gap: 2rem;
            }

            .expertise-section {
                padding: 4rem 0;
            }

            .expertise-card {
                padding: 2rem;
            }

            .expertise-modal-header {
                padding: 2rem;
            }

            .expertise-modal-body {
                padding: 2rem;
            }

            .process-steps {
                grid-template-columns: 1fr;
            }
        }

        @media (max-width: 480px) {
            .expertise-grid {
                grid-template-columns: 1fr;
                gap: clamp(1rem, 2vw, 1.5rem);
            }

            .expertise-card {
                padding: clamp(1.2rem, 2vw, 1.5rem);
            }

            .expertise-button {
                padding: clamp(0.7rem, 1.2vw, 0.85rem) clamp(1rem, 1.8vw, 1.5rem);
                font-size: clamp(0.8rem, 1.2vw, 0.9rem);
                gap: clamp(0.4rem, 0.8vw, 0.6rem);
            }

            .expertise-card-title {
                font-size: clamp(1.2rem, 2.5vw, 1.4rem);
                margin-bottom: clamp(0.8rem, 1.5vw, 1rem);
            }

            .expertise-card-text {
                font-size: clamp(0.85rem, 1.3vw, 0.95rem);
                margin-bottom: clamp(1.2rem, 2vw, 1.5rem);
            }

            .expertise-icon {
                width: clamp(70px, 12vw, 80px);
                height: clamp(70px, 12vw, 80px);
                margin-bottom: clamp(1.5rem, 2.5vw, 2rem);
                font-size: clamp(1.5rem, 3vw, 1.8rem);
            }

            .expertise-feature {
                font-size: clamp(0.85rem, 1.2vw, 0.95rem);
                gap: clamp(0.8rem, 1.5vw, 1rem);
                padding: clamp(0.6rem, 1vw, 0.8rem) clamp(1rem, 1.5vw, 1.2rem);
                margin: 0 -1rem;
            }

            .expertise-feature i {
                width: clamp(28px, 5vw, 30px);
                height: clamp(28px, 5vw, 30px);
                font-size: clamp(1rem, 2vw, 1.1rem);
            }
        }

        .expertise-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
    position: relative;
    z-index: 1;
}

.expertise-header {
    text-align: center;
    margin-bottom: 6rem;
    position: relative;
}

.expertise-title {
    font-size: clamp(2.2rem, 4vw, 3.2rem);
    color: #2c1810;
    margin-bottom: 1.5rem;
    font-weight: 800;
    position: relative;
    display: inline-block;
}

.expertise-title::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 120px;
    height: 2px;
    background: linear-gradient(to right, transparent, #c58e8e, #c58e8e, transparent);
}

.expertise-subtitle {
    font-size: 1.2rem;
    color: rgba(44, 24, 16, 0.75);
    max-width: 700px;
    margin: 2rem auto 0;
    line-height: 1.8;
}

.expertise-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 3rem;
    margin-top: 4rem;
}

.expertise-card {
    background: #fff;
    border-radius: 24px;
    padding: 3rem;
    box-shadow: 
        0 10px 30px rgba(44, 24, 16, 0.03),
        0 1px 3px rgba(44, 24, 16, 0.05);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.expertise-card::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 24px;
    padding: 2px;
    background: linear-gradient(135deg, #c58e8e 0%, transparent 50%);
    -webkit-mask: 
        linear-gradient(#fff 0 0) content-box, 
        linear-gradient(#fff 0 0);
    mask: 
        linear-gradient(#fff 0 0) content-box, 
        linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.expertise-card:hover {
    transform: translateY(-8px);
}

.expertise-card:hover::before {
    opacity: 1;
}

.expertise-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: linear-gradient(90deg, #c58e8e, #8e5757);
}

.expertise-icon {
    width: 70px;
    height: 70px;
    background: rgba(197, 142, 142, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
}

.expertise-icon i {
    font-size: 2rem;
    color: #c58e8e;
}

.expertise-card-title {
    font-size: 1.4rem;
    color: #2c1810;
    margin-bottom: 1rem;
    font-weight: 700;
}

.expertise-card-text {
    color: #666;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

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

.expertise-feature {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    margin-bottom: 0.8rem;
}

.expertise-feature i {
    color: #c58e8e;
    font-size: 0.9rem;
}

.expertise-cta {
    text-align: center;
    margin-top: 5rem;
}

@media (max-width: 768px) {
    .expertise-section {
        padding: 4rem 0;
    }
    
    .expertise-grid {
        gap: 1.5rem;
    }
    
    .expertise-card {
        padding: 2rem;
    }
}

        .journey-map {
            display: grid;
            gap: 2rem;
            margin-top: 3rem;
            max-width: 800px;
            margin-left: auto;
            margin-right: auto;
        }

        .journey-step {
            display: flex;
            align-items: center;
            padding: 2rem;
            background: rgba(255, 255, 255, 0.1);
            backdrop-filter: blur(10px);
            border-radius: 20px;
            transition: all 0.3s ease;
            position: relative;
        }

        .journey-step:hover {
            transform: translateX(10px);
            background: rgba(255, 255, 255, 0.2);
        }

        .step-number {
            font-size: 2rem;
            font-weight: bold;
            margin-right: 2rem;
            width: 50px;
            height: 50px;
            display: flex;
            align-items: center;
            justify-content: center;
            border-radius: 50%;
            background: rgba(255, 255, 255, 0.2);
        }

        .daily-tip {
            padding: 4rem 2rem;
        }

        .tip-card {
            max-width: 800px;
            margin: 0 auto;
            padding: 2rem;
            background: rgba(255, 255, 255, 0.1);
            backdrop-filter: blur(10px);
            border-radius: 20px;
            text-align: center;
            transition: all 0.3s ease;
        }

        .tip-card:hover {
            transform: translateY(-5px);
            background: rgba(255, 255, 255, 0.2);
        }

        .why-me-section {
            padding: 4rem 2rem;
        }

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

        .feature-item {
            padding: 2rem;
            background: rgba(255, 255, 255, 0.1);
            backdrop-filter: blur(10px);
            border-radius: 20px;
            text-align: center;
            transition: all 0.3s ease;
        }

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

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

        .scroll-button {
            display: inline-block;
            padding: 1rem 2rem;
            background: rgba(255, 255, 255, 0.2);
            backdrop-filter: blur(5px);
            border-radius: 10px;
            color: inherit;
            text-decoration: none;
            font-size: 1.2rem;
            transition: all 0.3s ease;
        }

        .scroll-button:hover {
            transform: translateY(-5px);
            background: rgba(255, 255, 255, 0.3);
        }

        .pulse-button {
            margin-top: 2rem;
            animation: pulse 2s infinite;
        }

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

        @media (max-width: 768px) {
            .profile-cards, .features-grid {
                grid-template-columns: 1fr;
            }

            .journey-step {
                flex-direction: column;
                text-align: center;
            }

            .step-number {
                margin-right: 0;
                margin-bottom: 1rem;
            }
        }

        /* Yeni Modal Stilleri */
        .fullscreen-welcome {
            min-height: 100vh;
            background: linear-gradient(145deg, rgba(197, 142, 142, 0.95), rgba(142, 87, 87, 0.95));
            backdrop-filter: blur(10px);
        }

        .fullscreen-welcome .modal-content {
            background: transparent;
            border: none;
            height: 100vh;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
        }

        .fullscreen-welcome img {
            width: 200px !important;
            height: 200px !important;
            border-radius: 50%;
            margin-bottom: 2rem;
            border: 4px solid white;
            box-shadow: 0 8px 32px rgba(0,0,0,0.2);
        }

        /* Problem Modal Stilleri */
        .modal-dialog {
            max-width: 600px;
        }

        .modal-content {
            background: rgba(219, 213, 213, 0.442);
            backdrop-filter: blur(10px);
            border-radius: 20px;
            box-shadow: 0 8px 32px rgba(0,0,0,0.2);
        }

        .modal-header {
            background: linear-gradient(145deg, rgb(197, 142, 142), rgb(142, 87, 87));
            color: white;
            border-radius: 20px 20px 0 0;
            padding: 1.8rem;
        }

        .modal-title {
            font-size: 1.8rem;
            font-weight: 600;
            margin-left: 10px;
        }

        .problem-description {
            margin-bottom: 2rem;
            padding-bottom: 1rem;
            border-bottom: 1px solid rgba(0,0,0,0.1);
        }

        .solution-section {
            background: rgba(197, 142, 142, 0.1);
            padding: 2rem;
            border-radius: 15px;
            margin-top: 2rem;
            box-shadow: 0 4px 15px rgba(0,0,0,0.05);
        }

        .expected-results {
            background: rgba(84, 70, 70, 0.262);
            padding: 1.5rem;
            border-radius: 15px;
            margin-top: 2rem;
            border: 1px solid rgba(197, 142, 142, 0.2);
        }

        .profile-image {
            width: 150px;
            height: 150px;
            border-radius: 50%;
            margin: 0 auto 2rem;
            display: block;
            border: 4px solid rgba(255,255,255,0.8);
            box-shadow: 0 8px 25px rgba(0,0,0,0.1);
        }

        .section-icon {
            font-size: 2rem;
            margin-bottom: 1rem;
            color: rgb(197, 142, 142);
        }

        /* Hoşgeldiniz Modal Stilleri */
.fullscreen-welcome {
    background: linear-gradient(135deg, rgba(197, 142, 142, 0.95) 0%, rgba(142, 87, 87, 0.98) 100%) !important;
    backdrop-filter: blur(10px);
}

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

.welcome-logo {
    width: 180px;
    height: 180px;
    border-radius: 50%;
    margin: 0 auto 2rem;
    border: 4px solid rgba(255, 255, 255, 0.8);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    animation: floatAnimation 3s ease-in-out infinite;
}

.welcome-title {
    font-size: 2.5rem;
    font-weight: 600;
    color: #fff;
    margin-bottom: 1.5rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.2);
}

.welcome-subtitle {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 2rem;
    line-height: 1.6;
}

.welcome-button {
    padding: 1rem 2.5rem;
    font-size: 1.1rem;
    color: rgb(197, 142, 142);
    background: rgba(255, 255, 255, 0.95);
    border: none;
    border-radius: 50px;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.welcome-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
    background: #fff;
}

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

/* Responsive Ayarlar */
@media (max-width: 768px) {
    .welcome-content {
        padding: 1.5rem;
    }
    
    .welcome-logo {
        width: 150px;
        height: 150px;
    }
    
    .welcome-title {
        font-size: 2rem;
    }
    
    .welcome-subtitle {
        font-size: 1rem;
    }
}
    /* filepath: c:\Users\Lenovo\Desktop\Yeni klasör\ailedan-man-emine-main\index.html */
    /* problems-grid responsive iyileştirmesi ve reveal animasyonu */
    .problems-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
        gap: 1.5rem;
        padding: 0 1rem 2rem 1rem;
    }
    .problem-card {
        opacity: 0;
        transform: translateY(18px) scale(0.995);
        transition: opacity 450ms ease, transform 450ms ease, box-shadow 300ms ease;
    }
    .problem-card.visible {
        opacity: 1;
        transform: translateY(0) scale(1);
        box-shadow: 0 12px 30px rgba(44,24,16,0.06);
    }
    .problem-card:focus-within,
    .problem-card:hover {
        transform: translateY(-6px) scale(1.01);
        box-shadow: 0 18px 40px rgba(44,24,16,0.09);
    }
    .problem-link {
        display: inline-flex;
        align-items: center;
        gap: 8px;
        margin-top: 1rem;
        text-decoration: none;
        color: #c58e8e;
        font-weight: 600;
    }
    /* mevcut .problem-card / .problems-grid stillerine ek olarak */
    .problem-card.hidden-by-js {
        display: none !important;
    }

    .load-more-problems {
        display: inline-flex;
        align-items: center;
        gap: 10px;
        padding: 0.8rem 1.4rem;
        border-radius: 10px;
        border: 2px solid rgba(197,142,142,0.2);
        background: #fff;
        color: #2c1810;
        cursor: pointer;
        transition: all 0.25s ease;
        font-weight: 700;
    }
    .load-more-problems:hover {
        transform: translateY(-4px);
        box-shadow: 0 8px 20px rgba(0,0,0,0.08);
    }
    @media (max-width: 576px) {
        .problems-grid { gap: 1rem; }
    }

        .expertise-item {
            opacity: 0;
            transform: scale(0.97);
            
            left: 0;
            top: 0;
            width: 100%;
            display: none;
            z-index: 1;
        }
        .expertise-item.active {
            opacity: 1;
            display: block;
            z-index: 2;
            box-shadow: 0 16px 40px rgba(197,142,142,0.18);
            border: 2.5px solid #c58e8e;
            transform: scale(1.04) translateY(-6px);
            transition: opacity 0.5s, transform 0.5s;
        }
        .expertise-slider-controls .expertise-dot {
            width: 14px;
            height: 14px;
            border: 2px solid #c58e8e;
            background: #fff;
            opacity: 0.5;
            transition: background 0.3s, opacity 0.3s;
            padding: 0;
        }
        .expertise-slider-controls .expertise-dot.active {
            background: #c58e8e;
            opacity: 1;
        }

/* Offcanvas Logo Stili */
.offcanvas-logo {
    width: 50px;
    height: 50px;
    object-fit: contain;
    border-radius: 8px;
}

.offcanvas-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1rem 1.5rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}
